@succsoft/succapp 5.0.1 → 5.0.2
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/README.md +10 -9
- package/dist/cli/l10n/bundle.l10n.json +198 -100
- package/dist/cli/l10n/bundle.l10n.zh-cn.json +199 -101
- package/dist/cli/succapp.js +84 -75
- package/package.json +1 -5
- package/resources/workspace-templates/succapp-workspace/.agents/README.md +10 -31
- package/resources/workspace-templates/succapp-workspace/AGENTS.md +6 -7
|
@@ -6,6 +6,17 @@
|
|
|
6
6
|
"err.net.connectionFailed": "Cannot connect to server: {url}{causeMessage}",
|
|
7
7
|
"err.net.connectionFailed.desc": "Check the server address and network connection, then retry or log in again.",
|
|
8
8
|
"err.login.notlogin": "Authentication failed, please log in again",
|
|
9
|
+
"err.oauth2.tokenExpired": "OAuth2 access token expired.",
|
|
10
|
+
"err.login.oauthTimeout": "OAuth2 authorization timed out.",
|
|
11
|
+
"err.login.oauthTimeout.desc": "Restart login, complete authorization in the browser, or use PAT login in environments without a browser.",
|
|
12
|
+
"err.login.oauthStateMismatch": "OAuth2 authorization state does not match.",
|
|
13
|
+
"err.login.oauthStateMismatch.desc": "Restart login and complete authorization from the newly opened browser page.",
|
|
14
|
+
"err.login.oauthInvalidCallback": "Invalid OAuth2 authorization callback.",
|
|
15
|
+
"err.login.oauthInvalidCallback.desc": "Restart login and complete authorization in the browser.",
|
|
16
|
+
"err.login.oauthLoopbackFailed": "Cannot start local OAuth2 callback server.",
|
|
17
|
+
"err.login.oauthLoopbackFailed.desc": "Check whether local loopback access is blocked, then retry or use PAT login.",
|
|
18
|
+
"err.login.oauthTokenInvalid": "Invalid OAuth2 token response.",
|
|
19
|
+
"err.login.oauthTokenInvalid.desc": "Check the server version and OAuth2 configuration, then retry.",
|
|
9
20
|
"err.sync.conflict": "Remote version has changed: {remotePath}",
|
|
10
21
|
"err.sync.conflict.desc": "Please pull or diff before pushing. Reason: {reason}",
|
|
11
22
|
"err.sync.projectUnavailable": "Cannot {actionName} unavailable remote project(s): {paths}",
|
|
@@ -21,7 +32,7 @@
|
|
|
21
32
|
"err.extension.rootUnresolved.desc": "Provide an extensionName or a path inside an extension.",
|
|
22
33
|
"err.extension.rootNotFound": "Extension directory does not exist: {extensionRoot}",
|
|
23
34
|
"err.workspace.problem": "Workspace sync problem detected.",
|
|
24
|
-
"err.workspace.problem.desc": "Run workspace
|
|
35
|
+
"err.workspace.problem.desc": "Run 'succapp workspace repair --dry-run' or 'succapp workspace repair' before retrying operations that require a complete local sync baseline.",
|
|
25
36
|
"err.net.invalidUrl": "Invalid URL: {url}",
|
|
26
37
|
"err.meta.invalidPath": "Invalid metadata path",
|
|
27
38
|
"err.meta.invalidPath.desc": "Use a valid absolute metadata path and try again.",
|
|
@@ -32,10 +43,29 @@
|
|
|
32
43
|
"err.file.notDirectory": "Path is not a directory: {path}",
|
|
33
44
|
"err.workspace.sameServerUrl": "New server URL must be different from the current URL.",
|
|
34
45
|
"err.workspace.serverAlreadyExists": "Server already exists: {duplicatedServer}",
|
|
46
|
+
"err.workspace.issue.E201": "workspace config is missing",
|
|
47
|
+
"err.workspace.issue.E202": "workspace config is not valid JSON",
|
|
48
|
+
"err.workspace.issue.E203": "workspace config is missing the requested server",
|
|
49
|
+
"err.workspace.issue.E204": "workspace active server does not match the requested server",
|
|
50
|
+
"err.workspace.issue.E205": "active server is required for this workspace maintenance task",
|
|
51
|
+
"err.workspace.issue.E206": "workspace maintenance task is not implemented",
|
|
52
|
+
"err.workspace.issue.E301": "local sync baseline resource type does not match .meta",
|
|
53
|
+
"err.workspace.issue.E302": "local sync baseline records a resource that is missing on disk",
|
|
54
|
+
"err.workspace.issue.E303": "local sync baseline .meta is missing",
|
|
55
|
+
"err.workspace.issue.E304": "local sync baseline .meta is unreadable",
|
|
56
|
+
"err.workspace.issue.E305": "workspace project is missing local sync baseline",
|
|
57
|
+
"err.workspace.issue.E306": "local sync baseline is still incomplete after fetch",
|
|
58
|
+
"err.workspace.issue.E307": "current login cannot see matching project on current server",
|
|
59
|
+
"err.workspace.issue.E401": "recommended workspace settings are missing",
|
|
60
|
+
"err.workspace.issue.E402": "SuccApp .gitignore rules are missing",
|
|
61
|
+
"err.workspace.issue.E403": "AI agent workspace files are missing",
|
|
62
|
+
"err.workspace.issue.E404": "TypeScript support files are missing",
|
|
63
|
+
"err.workspace.issue.E405": "JSON Schema support files are missing",
|
|
64
|
+
"err.workspace.issue.E406": "frontend development skill files are missing",
|
|
35
65
|
"err.lock.busy": "Cannot {attemptedCommand}: workspace scope {conflictScope} is held by another process.",
|
|
36
66
|
"err.lock.busy.desc": "Stop the running process and retry; locks left by crashed processes are cleaned up automatically on the next attempt.",
|
|
37
67
|
"err.lock.compromised": "Workspace lock was taken over by another process; the current {attemptedCommand} has been aborted.",
|
|
38
|
-
"err.lock.compromised.desc": "Run status to verify consistency before retrying.",
|
|
68
|
+
"err.lock.compromised.desc": "Run 'succapp workspace status' to verify consistency before retrying.",
|
|
39
69
|
"err.workspace.activeConnectionRequired": "Cannot {actionName} without an active server connection.",
|
|
40
70
|
"err.base.operationFailed": "Operation failed",
|
|
41
71
|
"err.base.operationFailed.desc": "The operation could not be completed. Check the error details or contact the administrator.",
|
|
@@ -44,7 +74,8 @@
|
|
|
44
74
|
"err.net.invalidResponse.dbTableDescribeEmpty.hint": "Check whether data source {dataSource} and table {tableName} exist.",
|
|
45
75
|
"err.db.tableNotFound": "Database table does not exist: {tableName}",
|
|
46
76
|
"err.cli.unknownCommand": "Unknown command: {commandName}",
|
|
47
|
-
"err.cli.unknownCommand.hint": "Run {helpCommand} to view available commands.",
|
|
77
|
+
"err.cli.unknownCommand.hint": "Run '{helpCommand}' to view available commands.",
|
|
78
|
+
"err.cli.unknownCommand.suggestion.hint": "Did you mean:{commands}",
|
|
48
79
|
"err.cli.invalidInvocation": "Found {count} usage issue(s).",
|
|
49
80
|
"err.cli.invalidInvocation.hint": "Fix the listed usage issues and retry.",
|
|
50
81
|
"err.cli.unknownOption": "Unknown option: {option}",
|
|
@@ -75,13 +106,13 @@
|
|
|
75
106
|
"err.cli.invalidReadableFile": "Input file is not readable: {source}.",
|
|
76
107
|
"err.cli.invalidRegularFile": "Input path is not a regular file: {source}.",
|
|
77
108
|
"err.cli.invalidWorkspace": "Not a SuccApp workspace: {source}.",
|
|
78
|
-
"err.cli.invalidWorkspace.hint": "Run succapp workspace init first, or use -C <workspace> to choose an existing workspace.",
|
|
109
|
+
"err.cli.invalidWorkspace.hint": "Run 'succapp workspace init --server <url>' first, or use '-C <workspace>' to choose an existing workspace.",
|
|
79
110
|
"err.cli.invalidWorkspaceConfigJson": "Workspace config is corrupted: {source}.",
|
|
80
111
|
"err.cli.unconfiguredServer": "Server is not configured in the current workspace: {value}.",
|
|
81
112
|
"err.cli.serverMismatch": "Server does not match the active workspace server: {value}.",
|
|
82
113
|
"err.cli.serverMismatch.hint": "Expected active server: {expected}.",
|
|
83
114
|
"err.cli.unsupportedAuthFlow": "Authentication flow is not implemented yet: {authType}.",
|
|
84
|
-
"err.cli.unsupportedAuthFlow.hint": "Use succapp auth login --pat <url> and enter the PAT when prompted. Piped stdin is still supported for scripts.",
|
|
115
|
+
"err.cli.unsupportedAuthFlow.hint": "Use 'succapp auth login --pat <url>' and enter the PAT when prompted. Piped stdin is still supported for scripts.",
|
|
85
116
|
"err.cli.invalidExtensionName": "Invalid extension name: {value}.",
|
|
86
117
|
"err.cli.invalidExtensionName.hint": "Use <companyName>-<extensionPoint>-<shortName>.",
|
|
87
118
|
"err.cli.unknownExtensionTemplate": "Extension template is not available: {value}.",
|
|
@@ -90,7 +121,7 @@
|
|
|
90
121
|
"err.cli.confirmationRequired.dbSourceDelete": "Deleting this data source requires confirmation.",
|
|
91
122
|
"err.cli.confirmationRequired.dbSourceDelete.hint": "Confirm the data source can be deleted, then pass {flag}.",
|
|
92
123
|
"err.cli.confirmationRequired.dbQueryWriteSql": "db query only runs read-only SQL. Use db exec for SQL that may change data or schema.",
|
|
93
|
-
"err.cli.confirmationRequired.dbQueryWriteSql.hint": "Review the SQL impact, then run succapp db exec
|
|
124
|
+
"err.cli.confirmationRequired.dbQueryWriteSql.hint": "Review the SQL impact, then run 'succapp db exec {flag}'.",
|
|
94
125
|
"err.cli.confirmationRequired.dbSqlMutation": "This SQL may change data or schema and requires confirmation.",
|
|
95
126
|
"err.cli.confirmationRequired.dbSqlMutation.hint": "Review the SQL impact, then pass {flag} to execute it.",
|
|
96
127
|
"err.cli.confirmationRequired.outputOverwrite": "The output file already exists and would be overwritten.",
|
|
@@ -100,18 +131,67 @@
|
|
|
100
131
|
"err.cli.confirmationRequired.cloneOverwrite.hint": "Confirm the local project can be overwritten, then pass {flag}.",
|
|
101
132
|
"err.cli.confirmationRequired.projRemove": "Removing local workspace project(s) requires confirmation: {projectNames}.",
|
|
102
133
|
"err.cli.confirmationRequired.projRemove.hint": "Confirm the local project files and mirror baselines can be removed, then pass {flag}.",
|
|
134
|
+
"err.cli.confirmationRequired.discardAll": "Discarding all workspace changes requires confirmation.",
|
|
135
|
+
"err.cli.confirmationRequired.discardAll.hint": "Confirm all local workspace changes can be discarded, then pass {flag}.",
|
|
103
136
|
"err.db.nonReadOnlySql": "db query only runs read-only SQL. Use db exec for SQL that may change data or schema.",
|
|
104
|
-
"err.db.nonReadOnlySql.hint": "Review the SQL impact, then run succapp db exec
|
|
137
|
+
"err.db.nonReadOnlySql.hint": "Review the SQL impact, then run 'succapp db exec {flag}'.",
|
|
105
138
|
"err.net.httpStatusUnexpected": "Unexpected HTTP response status",
|
|
106
139
|
"err.net.httpStatusUnexpected.desc": "The remote service returned an HTTP status that the caller cannot classify. Check the error details or contact the administrator.",
|
|
107
140
|
"workspace.compat.connectedServerAppears": "The connected server appears older than this workspace's recorded baseline. You may have connected to the wrong server.",
|
|
108
141
|
"workspace.compat.serverVersion": "Server version: {0} < {1}",
|
|
142
|
+
"workspace.extension.progress.create.done": "Created extension {0}.",
|
|
143
|
+
"workspace.extension.progress.create.running": "Creating extension {0}",
|
|
144
|
+
"workspace.extension.progress.templates": "Loading extension templates",
|
|
145
|
+
"workspace.maintenance.progress.checkingAll": "Checking workspace",
|
|
146
|
+
"workspace.maintenance.progress.blocked": "Blocked {0}.",
|
|
147
|
+
"workspace.maintenance.progress.checked": "Checked {0}.",
|
|
148
|
+
"workspace.maintenance.progress.checking": "Checking {0} ({1}/{2})",
|
|
149
|
+
"workspace.maintenance.progress.failed": "Failed {0}.",
|
|
150
|
+
"workspace.maintenance.progress.skipped": "Skipped {0}: {1}.",
|
|
151
|
+
"workspace.maintenance.progress.skipReason": "skipped",
|
|
152
|
+
"workspace.maintenance.progress.updated": "Updated {0}.",
|
|
153
|
+
"workspace.maintenance.progress.updatingAll": "Updating workspace",
|
|
154
|
+
"workspace.maintenance.progress.upToDate": "{0} is up to date.",
|
|
155
|
+
"workspace.maint.task.frontendDevelopmentSkill": "frontend development skill",
|
|
156
|
+
"workspace.maint.task.jsonSchemaSupport": "JSON schema support",
|
|
157
|
+
"workspace.maint.task.syncBaseline": "sync baseline",
|
|
158
|
+
"workspace.maint.task.typescriptSupport": "TypeScript support",
|
|
159
|
+
"workspace.maint.task.workspaceAgentFiles": "workspace agent files",
|
|
160
|
+
"workspace.maint.task.workspaceConfig": "workspace config",
|
|
161
|
+
"workspace.maint.task.workspaceGitignore": "workspace gitignore",
|
|
162
|
+
"workspace.maint.task.workspaceSettings": "workspace VS Code settings",
|
|
109
163
|
"workspace.repair.baseline.invisible": "current login cannot see matching project on current server: {0}",
|
|
110
|
-
"workspace.repair.baseline.
|
|
111
|
-
"workspace.repair.baseline.
|
|
164
|
+
"workspace.repair.baseline.metaMissing": "local sync baseline .meta is missing: {0}",
|
|
165
|
+
"workspace.repair.baseline.metaUnreadable": "local sync baseline .meta is unreadable: {0}",
|
|
166
|
+
"workspace.repair.baseline.projectMissing": "workspace project is missing local sync baseline: {0}",
|
|
167
|
+
"workspace.repair.baseline.resourceMissing": "local sync baseline records a resource that is missing on disk: {0}",
|
|
168
|
+
"workspace.repair.baseline.stillBroken": "local sync baseline is still incomplete after fetch: {0}",
|
|
169
|
+
"workspace.repair.baseline.typeMismatch": "local sync baseline resource type does not match .meta: {0}",
|
|
112
170
|
"workspace.repair.check.notImpl": "workspace repair check is not implemented: {0}",
|
|
113
171
|
"workspace.server.serverMirrorExists": "Server mirror already exists: {0}",
|
|
114
172
|
"workspace.server.serverNotConfigured": "Server is not configured for this workspace: {0}",
|
|
173
|
+
"workspace.sync.progress.backupClear.running": "Clearing merge backups",
|
|
174
|
+
"workspace.sync.progress.backupList.running": "Listing merge backups",
|
|
175
|
+
"workspace.sync.progress.clone.done": "Cloned {0} project(s).",
|
|
176
|
+
"workspace.sync.progress.clone.running": "Cloning workspace projects",
|
|
177
|
+
"workspace.sync.progress.diff.running": "Comparing workspace files",
|
|
178
|
+
"workspace.sync.progress.history.running": "Loading file history",
|
|
179
|
+
"workspace.sync.progress.show.running": "Reading workspace file",
|
|
180
|
+
"workspace.sync.progress.pull.done": "Pulled remote changes: {0} updated, {1} deleted, {2} conflict(s).",
|
|
181
|
+
"workspace.sync.progress.pull.running": "Pulling remote changes",
|
|
182
|
+
"workspace.sync.progress.push.done": "Pushed local changes: {0} pushed, {1} rejected, {2} failed.",
|
|
183
|
+
"workspace.sync.progress.push.running": "Pushing local changes",
|
|
184
|
+
"workspace.sync.progress.push.stopped": "Push stopped before upload.",
|
|
185
|
+
"workspace.sync.progress.refresh.running": "Refreshing workspace changes",
|
|
186
|
+
"workspace.sync.progress.removeProject.done": "Removed {0} local project(s).",
|
|
187
|
+
"workspace.sync.progress.removeProject.running": "Removing local workspace projects",
|
|
188
|
+
"workspace.sync.progress.reset.done": "Discarded local changes: {0} restored, {1} deleted.",
|
|
189
|
+
"workspace.sync.progress.reset.running": "Discarding local changes",
|
|
190
|
+
"workspace.sync.progress.restore.running": "Restoring local backup",
|
|
191
|
+
"workspace.sync.progress.upgradeMeta.apply": "Upgrading metadata files",
|
|
192
|
+
"workspace.sync.progress.upgradeMeta.checked": "Checked {0} metadata file(s): {1} upgradeable.",
|
|
193
|
+
"workspace.sync.progress.upgradeMeta.done": "Upgraded metadata files: {0} changed, {1} failed, {2} checked.",
|
|
194
|
+
"workspace.sync.progress.upgradeMeta.scan": "Scanning metadata files",
|
|
115
195
|
"workspace.validation.json.invalidJson": "Invalid JSON: {0}.",
|
|
116
196
|
"workspace.validation.json.jsonFileEmpty": "JSON file is empty.",
|
|
117
197
|
"cli.cmd.common.desc": "Common commands.",
|
|
@@ -132,15 +212,17 @@
|
|
|
132
212
|
"cli.cmd.auth.title": "Auth",
|
|
133
213
|
"cli.cmd.auth.summary": "login, logout, and inspect stored server auth",
|
|
134
214
|
"cli.cmd.auth.desc": "Login, logout, and inspect stored server auth.",
|
|
135
|
-
"cli.cmd.auth.noStoredAuth": "No stored auth for {0}",
|
|
136
|
-
"cli.cmd.auth.storedAuth": "Stored auth for {0}: {1}",
|
|
137
|
-
"cli.cmd.auth.storedAuthNoCred": "Stored auth for {0}: no credential methods",
|
|
138
215
|
"cli.cmd.auth.login.summary": "Login to a server.",
|
|
139
216
|
"cli.cmd.auth.login.desc": "Login to a SuccBI server with OAuth2 or PAT and save local auth state.",
|
|
140
217
|
"cli.cmd.auth.login.oauth": "Use OAuth2 login. This is the default.",
|
|
141
218
|
"cli.cmd.auth.login.pat": "Use Personal Access Token login. Interactive terminals prompt for the token; piped input is read from stdin.",
|
|
142
219
|
"cli.cmd.auth.login.patPrompt": "Personal Access Token: ",
|
|
220
|
+
"cli.cmd.auth.login.openingBrowser": "Opening browser for OAuth2 authorization...",
|
|
221
|
+
"cli.cmd.auth.login.waitingForCallback": "Waiting for OAuth2 authorization...",
|
|
222
|
+
"cli.cmd.auth.login.exchangingToken": "Exchanging OAuth2 authorization code...",
|
|
223
|
+
"cli.cmd.auth.login.oauthManualUrl": "Open this URL in your browser to authorize SuccApp: {0}",
|
|
143
224
|
"cli.cmd.auth.login.loggedIn": "Logged in to {0}",
|
|
225
|
+
"cli.cmd.auth.login.loggedInAs": "Logged in to {0} as {1}",
|
|
144
226
|
"cli.cmd.auth.logout.summary": "Remove stored auth.",
|
|
145
227
|
"cli.cmd.auth.logout.desc": "Remove stored authentication information from the local auth settings.",
|
|
146
228
|
"cli.cmd.auth.logout.all": "Remove stored auth for all servers.",
|
|
@@ -150,6 +232,8 @@
|
|
|
150
232
|
"cli.cmd.auth.logout.storedAuth": "No stored auth for {0}",
|
|
151
233
|
"cli.cmd.auth.status.summary": "Show stored auth status.",
|
|
152
234
|
"cli.cmd.auth.status.desc": "Show local stored authentication information for a server.",
|
|
235
|
+
"cli.cmd.auth.status.noStoredOutput": "Server: {server}\nStored auth: {storedAuth}",
|
|
236
|
+
"cli.cmd.auth.status.output": "Server: {server}\nStored auth: {storedAuth}\nAuth type: {authType}\nUsername: {username}\nUser ID: {userId}\nToken: {token}\nRefresh token: {refreshToken}\nExpires at: {expiresAt}\nLast login at: {lastLoginAt}\nUpdated at: {updatedAt}",
|
|
153
237
|
"cli.cmd.db.title": "Database",
|
|
154
238
|
"cli.cmd.db.summary": "inspect and operate server databases and data sources",
|
|
155
239
|
"cli.cmd.db.desc": "Inspect and operate server databases and data sources.",
|
|
@@ -261,7 +345,7 @@
|
|
|
261
345
|
"cli.cmd.server.ping.summary": "Check server reachability.",
|
|
262
346
|
"cli.cmd.server.ping.desc": "Check whether the SuccApp Dev Tool v2 ping endpoint is reachable.",
|
|
263
347
|
"cli.cmd.server.info.summary": "Show server information.",
|
|
264
|
-
"cli.cmd.server.info.desc": "Show server information and
|
|
348
|
+
"cli.cmd.server.info.desc": "Show server information and metadata versions.",
|
|
265
349
|
"cli.cmd.server.cache.title": "Server cache",
|
|
266
350
|
"cli.cmd.server.cache.summary": "manage server cache",
|
|
267
351
|
"cli.cmd.server.cache.desc": "Manage server cache.",
|
|
@@ -353,33 +437,43 @@
|
|
|
353
437
|
"cli.cmd.server.script.exec.param": "Pass a script parameter. Repeatable.",
|
|
354
438
|
"cli.cmd.server.script.check.summary": "Check a local script on the server.",
|
|
355
439
|
"cli.cmd.server.script.check.desc": "Read a local script file and compile it through Dev Tool v2 when the server supports this capability.",
|
|
440
|
+
"cli.cmd.server.settings.title": "Server settings",
|
|
441
|
+
"cli.cmd.server.settings.summary": "get and set server settings",
|
|
442
|
+
"cli.cmd.server.settings.desc": "Get and set system, project, or app settings through Dev Tool v2.",
|
|
443
|
+
"cli.cmd.server.settings.target.system": "system",
|
|
444
|
+
"cli.cmd.server.settings.get.summary": "Get server settings.",
|
|
445
|
+
"cli.cmd.server.settings.get.desc": "Read system, project, or app settings. Omit <target> or pass system to read system settings.",
|
|
446
|
+
"cli.cmd.server.settings.get.key": "Only return the given top-level key. Repeatable.",
|
|
447
|
+
"cli.cmd.server.settings.get.header": "Settings of {0}:",
|
|
448
|
+
"cli.cmd.server.settings.set.summary": "Set server settings.",
|
|
449
|
+
"cli.cmd.server.settings.set.desc": "Merge incremental settings into system, project, or app settings. Provide at least one of --set, --file, --stdin or --unset.",
|
|
450
|
+
"cli.cmd.server.settings.set.set": "Inline incremental JSON. May set multiple top-level keys at once.",
|
|
451
|
+
"cli.cmd.server.settings.set.file": "Read incremental JSON from a local file.",
|
|
452
|
+
"cli.cmd.server.settings.set.stdin": "Read incremental JSON from stdin.",
|
|
453
|
+
"cli.cmd.server.settings.set.unset": "Delete the given top-level key. Repeatable.",
|
|
454
|
+
"cli.cmd.server.settings.set.key": "Only merge under the given top-level key.",
|
|
455
|
+
"cli.cmd.server.settings.set.expectedRevision": "Only set when the server settings revision still matches.",
|
|
456
|
+
"cli.cmd.server.settings.set.success": "Updated settings of {0}: {1}",
|
|
457
|
+
"cli.cmd.server.settings.set.noKeys": "(no keys)",
|
|
356
458
|
"cli.cmd.workspace.title": "Workspace",
|
|
357
459
|
"cli.cmd.workspace.summary": "work with a local SuccApp workspace",
|
|
358
460
|
"cli.cmd.workspace.desc": "Work with a local SuccApp workspace.",
|
|
359
461
|
"cli.cmd.workspace.init.summary": "Initialize a SuccApp workspace.",
|
|
360
|
-
"cli.cmd.workspace.init.desc": "Initialize .succapp/config.json
|
|
462
|
+
"cli.cmd.workspace.init.desc": "Initialize .succapp/config.json and recommended workspace support files.",
|
|
361
463
|
"cli.cmd.workspace.init.server": "Initialize the workspace with this active server.",
|
|
362
|
-
"cli.cmd.workspace.init.setup": "Apply recommended workspace support files after initialization.",
|
|
363
464
|
"cli.cmd.workspace.init.active": "Active server: {0}",
|
|
364
|
-
"cli.cmd.workspace.init.alreadyActive": "Workspace is already initialized with active server: {0}. Use workspace remote add or workspace remote use to change servers.",
|
|
465
|
+
"cli.cmd.workspace.init.alreadyActive": "Workspace is already initialized with active server: {0}. Use 'succapp workspace remote add <url>' or 'succapp workspace remote use <url>' to change servers.",
|
|
365
466
|
"cli.cmd.workspace.init.configBad": "Workspace config is corrupted: {0}",
|
|
366
467
|
"cli.cmd.workspace.init.initWorkspace": "Initialized workspace: {0}",
|
|
367
|
-
"cli.cmd.workspace.init.
|
|
468
|
+
"cli.cmd.workspace.init.nextConfigureServer": "Next: run 'succapp workspace init --server <url>' or 'succapp workspace remote add <url>'.",
|
|
469
|
+
"cli.cmd.workspace.init.noActiveServer": "No active server configured.",
|
|
470
|
+
"cli.cmd.workspace.init.supportFiles": "Workspace support files: {0} updated, {1} skipped.",
|
|
368
471
|
"cli.cmd.workspace.init.workspaceInit": "Workspace already initialized: {0}",
|
|
369
|
-
"cli.cmd.workspace.setup.summary": "Apply recommended workspace support files.",
|
|
370
|
-
"cli.cmd.workspace.setup.desc": "Apply SuccApp recommended settings, TypeScript support, JSON Schema support, and agent files.",
|
|
371
|
-
"cli.cmd.workspace.setup.dryRun": "Preview the setup plan without changing files.",
|
|
372
|
-
"cli.cmd.workspace.setup.clean": "Workspace setup: no changes needed.",
|
|
373
|
-
"cli.cmd.workspace.setup.dry": "Workspace setup dry run: {0} pending, {1} up to date, {2} skipped.",
|
|
374
|
-
"cli.cmd.workspace.setup.updated": "Workspace setup: {0} item(s) updated, {1} confirmation request(s).",
|
|
375
|
-
"cli.cmd.workspace.check.summary": "Check workspace consistency.",
|
|
376
|
-
"cli.cmd.workspace.check.desc": "Check workspace structure and sync state without changing files.",
|
|
377
|
-
"cli.cmd.workspace.check.only": "Run only the named workspace check.",
|
|
378
472
|
"cli.cmd.workspace.status.summary": "Show workspace sync status.",
|
|
379
473
|
"cli.cmd.workspace.status.desc": "Show workspace sync status.",
|
|
380
474
|
"cli.cmd.workspace.status.forceRefresh": "Recheck server changes instead of using cached status.",
|
|
381
475
|
"cli.cmd.workspace.status.localOnly": "Show only local workspace changes; do not check the server.",
|
|
382
|
-
"cli.cmd.workspace.status.remoteAuthRequired": "You are not logged in, so only local changes are shown. Run
|
|
476
|
+
"cli.cmd.workspace.status.remoteAuthRequired": "You are not logged in, so only local changes are shown. Run 'succapp auth login', then retry to include server changes.",
|
|
383
477
|
"cli.cmd.workspace.upgrade.summary": "Plan workspace structure migrations.",
|
|
384
478
|
"cli.cmd.workspace.upgrade.desc": "Plan SuccApp workspace structure migrations. The current implementation has no migrations.",
|
|
385
479
|
"cli.cmd.workspace.upgrade.targetVersion": "Plan migration to the target workspace structure version.",
|
|
@@ -405,17 +499,23 @@
|
|
|
405
499
|
"cli.cmd.workspace.push.pushResultPushed": "Push result: {0} pushed, {1} rejected, {2} failed",
|
|
406
500
|
"cli.cmd.workspace.push.targetVersion": "Target version",
|
|
407
501
|
"cli.cmd.workspace.push.version": "Current version",
|
|
408
|
-
"cli.cmd.workspace.
|
|
409
|
-
"cli.cmd.workspace.
|
|
410
|
-
"cli.cmd.workspace.
|
|
411
|
-
"cli.cmd.workspace.
|
|
412
|
-
"cli.cmd.workspace.
|
|
413
|
-
"cli.cmd.workspace.
|
|
414
|
-
"cli.cmd.workspace.
|
|
415
|
-
"cli.cmd.workspace.repair.
|
|
502
|
+
"cli.cmd.workspace.discard.summary": "Discard local workspace changes.",
|
|
503
|
+
"cli.cmd.workspace.discard.desc": "Restore workspace files from the local mirror baseline and discard local changes.",
|
|
504
|
+
"cli.cmd.workspace.discard.force": "Confirm discarding all workspace changes when no path is given.",
|
|
505
|
+
"cli.cmd.workspace.discard.deletedFiles": "Deleted files: {0}",
|
|
506
|
+
"cli.cmd.workspace.discard.noLocalChanges": "No local changes to discard",
|
|
507
|
+
"cli.cmd.workspace.discard.restoredFiles": "Restored files: {0}",
|
|
508
|
+
"cli.cmd.workspace.discard.result": "Discard result: {0} restored, {1} deleted",
|
|
509
|
+
"cli.cmd.workspace.repair.summary": "Check or repair workspace consistency issues.",
|
|
510
|
+
"cli.cmd.workspace.repair.desc": "Check or repair workspace structure and sync state issues that can be fixed automatically.",
|
|
511
|
+
"cli.cmd.workspace.repair.only": "Run only the named workspace repair check.",
|
|
512
|
+
"cli.cmd.workspace.repair.dryRun": "Preview repairable workspace issues without changing files.",
|
|
513
|
+
"cli.cmd.workspace.repair.badCheck": "Invalid workspace repair check: {0}",
|
|
514
|
+
"cli.cmd.workspace.repair.checkColumn": "Check",
|
|
515
|
+
"cli.cmd.workspace.repair.codeColumn": "Code",
|
|
516
|
+
"cli.cmd.workspace.repair.dryRunClean": "Workspace repair dry-run: no problems found.",
|
|
517
|
+
"cli.cmd.workspace.repair.dryRunIssue": "Workspace repair dry-run: {0} issue(s), {1} repairable, {2} unrepairable.",
|
|
416
518
|
"cli.cmd.workspace.repair.clean": "Workspace repair: no changes needed.",
|
|
417
|
-
"cli.cmd.workspace.repair.dryRunClean": "Workspace repair dry run: no changes needed.",
|
|
418
|
-
"cli.cmd.workspace.repair.dryRunIssues": "Workspace repair dry run: {0} issue(s), {1} repairable, {2} unrepairable.",
|
|
419
519
|
"cli.cmd.workspace.repair.remotePaths": "Remote paths",
|
|
420
520
|
"cli.cmd.workspace.repair.repairable": "Repairable",
|
|
421
521
|
"cli.cmd.workspace.repair.repaired": "Workspace repair: {0} repaired, {1} unresolved.",
|
|
@@ -430,9 +530,9 @@
|
|
|
430
530
|
"cli.cmd.workspace.proj.clone.summary": "Clone server projects into the workspace.",
|
|
431
531
|
"cli.cmd.workspace.proj.clone.desc": "Clone projects from the active server into the current workspace.",
|
|
432
532
|
"cli.cmd.workspace.proj.clone.force": "Allow clone to overwrite existing local workspace projects.",
|
|
533
|
+
"cli.cmd.workspace.proj.clone.configuredActive": "Active server configured: {0}",
|
|
433
534
|
"cli.cmd.workspace.proj.clone.cloned": "Cloned projects: {0}",
|
|
434
|
-
"cli.cmd.workspace.proj.clone.
|
|
435
|
-
"cli.cmd.workspace.proj.clone.upgradeCommand": "Upgrade command: {0}",
|
|
535
|
+
"cli.cmd.workspace.proj.clone.oldMetaNotice": "Note: {count} metadata file(s) use an older format.\nOptional: run '{command}' to modernize them.\nThis may update many files; run with `--dry-run` first to review the scope.\nSkip this if you only want to inspect the project.",
|
|
436
536
|
"cli.cmd.workspace.proj.remove.summary": "Remove workspace projects.",
|
|
437
537
|
"cli.cmd.workspace.proj.remove.desc": "Remove local workspace projects and mirror baselines without deleting server projects.",
|
|
438
538
|
"cli.cmd.workspace.proj.remove.force": "Confirm removal of local project files and mirror baselines.",
|
|
@@ -487,18 +587,14 @@
|
|
|
487
587
|
"cli.cmd.workspace.file.history.desc": "Show server-side file history for a workspace file.",
|
|
488
588
|
"cli.cmd.workspace.file.history.limit": "Limit the number of history records.",
|
|
489
589
|
"cli.cmd.workspace.file.upgrade.summary": "Upgrade old SuccApp metadata files.",
|
|
490
|
-
"cli.cmd.workspace.file.upgrade.desc": "
|
|
491
|
-
"cli.cmd.workspace.file.upgrade.
|
|
590
|
+
"cli.cmd.workspace.file.upgrade.desc": "Preview or upgrade old SuccApp metadata files in local workspace projects. If no path is given, all local projects are processed.",
|
|
591
|
+
"cli.cmd.workspace.file.upgrade.dryRun": "Preview upgrade candidates without changing files.",
|
|
492
592
|
"cli.cmd.workspace.file.upgrade.cands": "Upgrade candidates: {0}",
|
|
493
|
-
"cli.cmd.workspace.file.upgrade.
|
|
593
|
+
"cli.cmd.workspace.file.upgrade.dryRunRes": "Metadata upgrade dry-run: {0} checked, {1} candidate(s), {2} skipped, {3} failed",
|
|
494
594
|
"cli.cmd.workspace.file.upgrade.failed": "Failed files: {0}",
|
|
495
|
-
"cli.cmd.workspace.file.upgrade.itemFailed": "[{0}/{1}] failed {2}: {3}",
|
|
496
|
-
"cli.cmd.workspace.file.upgrade.itemSkipped": "[{0}/{1}] skipped {2}: {3}",
|
|
497
|
-
"cli.cmd.workspace.file.upgrade.itemUpgraded": "[{0}/{1}] upgraded {2}",
|
|
498
|
-
"cli.cmd.workspace.file.upgrade.noCands": "No metadata files need upgrade.",
|
|
499
595
|
"cli.cmd.workspace.file.upgrade.reason": "Reason",
|
|
500
596
|
"cli.cmd.workspace.file.upgrade.result": "Metadata upgrade result: {0} checked, {1} changed, {2} skipped, {3} failed",
|
|
501
|
-
"cli.cmd.workspace.file.upgrade.
|
|
597
|
+
"cli.cmd.workspace.file.upgrade.skipped": "Skipped files: {0}",
|
|
502
598
|
"cli.cmd.workspace.file.upgrade.upgraded": "Upgraded files: {0}",
|
|
503
599
|
"cli.cmd.workspace.lock.title": "Workspace lock",
|
|
504
600
|
"cli.cmd.workspace.lock.summary": "inspect workspace locks",
|
|
@@ -550,13 +646,17 @@
|
|
|
550
646
|
"cli.out.common.active": "Active",
|
|
551
647
|
"cli.out.common.api": "Dev Tool API",
|
|
552
648
|
"cli.out.common.baseline": "Baseline",
|
|
553
|
-
"cli.out.common.capabilities": "Capabilities",
|
|
554
649
|
"cli.out.common.changes": "No changes.",
|
|
555
650
|
"cli.out.common.changesLocalRemote": "Changes: {0} (local {1}, remote {2}, conflicts {3})",
|
|
556
651
|
"cli.out.common.id": "ID",
|
|
652
|
+
"cli.out.common.jvmInfo": "JVM properties",
|
|
653
|
+
"cli.out.common.metaVersions": "Metadata versions",
|
|
557
654
|
"cli.out.common.noServers": "No servers configured.",
|
|
558
655
|
"cli.out.common.product": "Product",
|
|
656
|
+
"cli.out.common.productInfo": "Product information",
|
|
559
657
|
"cli.out.common.server": "Server",
|
|
658
|
+
"cli.out.common.sysInspectInfo": "System diagnostics",
|
|
659
|
+
"cli.out.common.systemEnvirInfo": "Environment variables",
|
|
560
660
|
"cli.out.common.targetVersion": "Target version",
|
|
561
661
|
"cli.out.common.version": "Current version",
|
|
562
662
|
"cli.out.common.workspace": "Workspace",
|
|
@@ -572,7 +672,9 @@
|
|
|
572
672
|
"cli.out.header.extra": "Extra",
|
|
573
673
|
"cli.out.header.field": "Field",
|
|
574
674
|
"cli.out.header.key": "Key",
|
|
675
|
+
"cli.out.header.latestVersion": "Latest version",
|
|
575
676
|
"cli.out.header.message": "Message",
|
|
677
|
+
"cli.out.header.metaType": "Metadata type",
|
|
576
678
|
"cli.out.header.modified": "Modified",
|
|
577
679
|
"cli.out.header.modifier": "Modifier",
|
|
578
680
|
"cli.out.header.null": "Null",
|
|
@@ -586,6 +688,7 @@
|
|
|
586
688
|
"cli.out.header.status": "Status",
|
|
587
689
|
"cli.out.header.table": "Table",
|
|
588
690
|
"cli.out.header.type": "Type",
|
|
691
|
+
"cli.out.header.upgrade": "Upgradeable",
|
|
589
692
|
"cli.out.header.value": "Value",
|
|
590
693
|
"cli.out.header.version": "Version",
|
|
591
694
|
"cli.out.help.commandHelpRead": "Run 'succapp {0} <command> --help' to read about a specific command.",
|
|
@@ -640,11 +743,13 @@
|
|
|
640
743
|
"cli.err.context.exampleUrl": "pass <url>",
|
|
641
744
|
"cli.err.context.text": "set {envName}",
|
|
642
745
|
"cli.err.context.workspaceRemoteAdd": "succapp workspace remote add <url>",
|
|
746
|
+
"cli.err.context.sourceListPair": "{first} or {second}",
|
|
747
|
+
"cli.err.context.sourceListMany": "{head}, or {tail}",
|
|
748
|
+
"cli.err.context.sourceListSeparator": ", ",
|
|
643
749
|
"cli.input.accessKeyId": "access key id",
|
|
644
750
|
"cli.input.accessKeySecret": "access key secret",
|
|
645
751
|
"cli.input.activeServer": "active server",
|
|
646
752
|
"cli.input.contentSource": "content source",
|
|
647
|
-
"cli.input.credentialType": "credential type",
|
|
648
753
|
"cli.input.dataSourceConfig": "data source config",
|
|
649
754
|
"cli.input.exportTarget": "export target",
|
|
650
755
|
"cli.input.extensionName": "extension name",
|
|
@@ -657,6 +762,8 @@
|
|
|
657
762
|
"cli.input.projectName": "project name",
|
|
658
763
|
"cli.input.server": "server",
|
|
659
764
|
"cli.input.serverFilePath": "server file path",
|
|
765
|
+
"cli.input.settingsPatch": "settings patch",
|
|
766
|
+
"cli.input.settingsTarget": "settings target",
|
|
660
767
|
"cli.input.sql": "SQL",
|
|
661
768
|
"cli.input.token": "token",
|
|
662
769
|
"cli.input.user": "user",
|
|
@@ -664,10 +771,9 @@
|
|
|
664
771
|
"cli.input.workspace": "workspace",
|
|
665
772
|
"cli.input.workspaceConfig": "workspace config",
|
|
666
773
|
"cli.input.revisionOrForce": "revision or --force",
|
|
667
|
-
"vs.cmd.
|
|
668
|
-
"vs.cmd.
|
|
669
|
-
"vs.cmd.
|
|
670
|
-
"vs.cmd.config.apply.upToDate": "SuccApp workspace configuration is already up to date.",
|
|
774
|
+
"vs.cmd.workspace.init.done": "SuccApp workspace initialized. {0} item(s) updated.",
|
|
775
|
+
"vs.cmd.workspace.init.partial": "SuccApp workspace initialized with {0} item(s) updated and {1} item(s) skipped or blocked.",
|
|
776
|
+
"vs.cmd.workspace.init.upToDate": "SuccApp workspace is already initialized.",
|
|
671
777
|
"vs.cmd.misc.copyMeta.fileHaveMeta": "This file does not have a metadata ID.",
|
|
672
778
|
"vs.cmd.misc.history.changeHaveRemote": "This change does not have a remote file history.",
|
|
673
779
|
"vs.cmd.misc.history.fileHaveRemote": "This file does not have a remote metadata record.",
|
|
@@ -720,7 +826,6 @@
|
|
|
720
826
|
"vs.cmd.sync.clone.clone": "Clone",
|
|
721
827
|
"vs.cmd.sync.clone.cloned": "cloned",
|
|
722
828
|
"vs.cmd.sync.clone.cloneProject": "Clone project {0}?",
|
|
723
|
-
"vs.cmd.sync.clone.cloningProjectS": "Cloning {0} project(s)...",
|
|
724
829
|
"vs.cmd.sync.clone.complete": "Clone complete: {0} project(s).",
|
|
725
830
|
"vs.cmd.sync.clone.completeOldMeta": "Clone complete: {0} project(s), {1} old metadata file(s). Upgrade before editing.",
|
|
726
831
|
"vs.cmd.sync.clone.noWorkspace": "Target workspace does not exist: {0}",
|
|
@@ -744,13 +849,11 @@
|
|
|
744
849
|
"vs.cmd.sync.discard.moreFiles": "... and {0} more file(s)",
|
|
745
850
|
"vs.cmd.sync.discard.overwriteFiles": "This will overwrite or delete local files:\n{0}",
|
|
746
851
|
"vs.cmd.sync.discard.overwriteWorkspaces": "This will overwrite or delete local files in these workspace(s):\n{0}",
|
|
747
|
-
"vs.cmd.sync.discard.progress": "Discarding changes...",
|
|
748
852
|
"vs.cmd.sync.discard.prompt": "Discard local changes?",
|
|
749
853
|
"vs.cmd.sync.discard.selectFiles": "Select one or more files from the Changes view.",
|
|
750
854
|
"vs.cmd.sync.pull.changePulled": "This change was not pulled.",
|
|
751
855
|
"vs.cmd.sync.pull.mayOverwriteLocal": "This may overwrite local changes:\n{0}",
|
|
752
856
|
"vs.cmd.sync.pull.moreFiles": "... and {0} more file(s)",
|
|
753
|
-
"vs.cmd.sync.pull.progress": "Pulling...",
|
|
754
857
|
"vs.cmd.sync.pull.pullServerVersion": "Pull server version for selected file(s)?",
|
|
755
858
|
"vs.cmd.sync.pull.selectFiles": "Select one or more files from the Changes view.",
|
|
756
859
|
"vs.cmd.sync.push.addedRemotely": "was added remotely",
|
|
@@ -770,7 +873,6 @@
|
|
|
770
873
|
"vs.cmd.sync.push.newMetaVersions": "{0} pushed metadata file(s) use newer content versions than this server. Verify compatibility.",
|
|
771
874
|
"vs.cmd.sync.push.noLocalChanges": "No local changes to push",
|
|
772
875
|
"vs.cmd.sync.push.oldMetaVersions": "{0} pushed metadata file(s) use older content versions. Upgrade is recommended.",
|
|
773
|
-
"vs.cmd.sync.push.progress": "Pushing...",
|
|
774
876
|
"vs.cmd.sync.push.pushedBlockedFailed": "{0} pushed, {1} blocked, {2} failed",
|
|
775
877
|
"vs.cmd.sync.push.pushFileS": "Push {0} file(s) to the server?",
|
|
776
878
|
"vs.cmd.sync.push.renamedOrMoved": "was renamed or moved remotely",
|
|
@@ -778,36 +880,29 @@
|
|
|
778
880
|
"vs.cmd.sync.push.serverHasNewer": "The server has newer changes. Return to the Changes view or command palette to pull or compare before pushing again.",
|
|
779
881
|
"vs.cmd.sync.push.showLogs": "Show Logs",
|
|
780
882
|
"vs.cmd.sync.push.successPushedFile": "Successfully pushed {0} file(s)",
|
|
781
|
-
"vs.cmd.sync.refresh.progress": "Refreshing changes...",
|
|
782
883
|
"vs.cmd.sync.removeProject.confirm": "Remove local project(s)?",
|
|
783
884
|
"vs.cmd.sync.removeProject.empty": "No local projects to remove",
|
|
784
885
|
"vs.cmd.sync.removeProject.localProjectS": "{0} local project(s) removed",
|
|
785
|
-
"vs.cmd.sync.removeProject.progress": "Removing {0} local project(s)...",
|
|
786
886
|
"vs.cmd.sync.removeProject.projectSWill": "These project(s) will be removed from workspace and local mirror only. Remote server projects will not be deleted:\n{0}",
|
|
787
887
|
"vs.cmd.sync.removeProject.select": "Select local project to remove",
|
|
788
888
|
"vs.cmd.sync.removeProject.selectProject": "Select project",
|
|
789
889
|
"vs.cmd.sync.repair.cannotRepairWorkspace": "Cannot repair workspace before connecting to the server. Connect or re-login to the server, then run Repair Workspace again.",
|
|
790
|
-
"vs.cmd.sync.repair.checking": "Checking workspace",
|
|
791
890
|
"vs.cmd.sync.repair.complete": "Workspace repair complete: {0} issue(s) repaired.",
|
|
792
891
|
"vs.cmd.sync.repair.completeClean": "Workspace repair complete: no changes needed.",
|
|
793
|
-
"vs.cmd.sync.repair.fetched": "Workspace repair fetched from the current server, but local baselines are still
|
|
892
|
+
"vs.cmd.sync.repair.fetched": "Workspace repair fetched from the current server, but local sync baselines are still incomplete. See logs for details.",
|
|
794
893
|
"vs.cmd.sync.repair.finished": "Workspace repair finished: {0} repaired, {1} unresolved. See logs for details.",
|
|
795
894
|
"vs.cmd.sync.repair.ifServerConnected": "If the server is not connected, connect or re-login first, then repair again.",
|
|
796
895
|
"vs.cmd.sync.repair.moreFiles": "...and {0} more issue(s).",
|
|
797
|
-
"vs.cmd.sync.repair.
|
|
798
|
-
"vs.cmd.sync.repair.repairRefreshesLocal": "Current repair only refreshes local mirror baselines and does not overwrite workspace files.",
|
|
896
|
+
"vs.cmd.sync.repair.repairRefreshesLocal": "Current repair only refreshes local sync baselines and does not overwrite workspace files.",
|
|
799
897
|
"vs.cmd.sync.repair.repairWorkspace": "Repair Workspace",
|
|
800
898
|
"vs.cmd.sync.repair.repairWorkspaceIssue": "Repair {0} workspace issue(s)?",
|
|
801
899
|
"vs.cmd.sync.repair.showLogs": "Show Logs",
|
|
802
|
-
"vs.cmd.sync.repair.
|
|
803
|
-
"vs.cmd.sync.repair.workspaceFsckIssue": "Workspace fsck found {0} issue(s). See logs for details.",
|
|
900
|
+
"vs.cmd.sync.repair.workspaceCheckComplete": "Workspace repair check complete: no problems found.",
|
|
804
901
|
"vs.cmd.sync.resetProject.confirm": "Reset local project from server?",
|
|
805
902
|
"vs.cmd.sync.resetProject.empty": "No local projects to reset",
|
|
806
903
|
"vs.cmd.sync.resetProject.noWorkspace": "Target workspace does not exist: {0}",
|
|
807
904
|
"vs.cmd.sync.resetProject.overwriteDetail": "All local changes in these project(s) will be overwritten, and local files that do not exist on the server may be deleted:\n{0}",
|
|
808
|
-
"vs.cmd.sync.resetProject.progress": "Resetting {0} project(s)...",
|
|
809
905
|
"vs.cmd.sync.resetProject.resetProject": "Reset Project",
|
|
810
|
-
"vs.cmd.sync.upgradeMeta.action": "Upgrade metadata",
|
|
811
906
|
"vs.cmd.sync.upgradeMeta.done": "Metadata upgraded in the local workspace. Remote server data was not changed.",
|
|
812
907
|
"vs.cmd.sync.upgradeMeta.empty": "No upgradeable metadata files found.",
|
|
813
908
|
"vs.cmd.sync.upgradeMeta.failed": "Metadata upgrade failed: {0}",
|
|
@@ -818,12 +913,10 @@
|
|
|
818
913
|
"vs.cmd.sync.upgradeMeta.metaUpDate": "Metadata is already up to date.",
|
|
819
914
|
"vs.cmd.sync.upgradeMeta.noFile": "No active file to upgrade.",
|
|
820
915
|
"vs.cmd.sync.upgradeMeta.result": "Metadata upgrade finished: {0} changed, {1} checked.",
|
|
821
|
-
"vs.cmd.sync.upgradeMeta.scan": "Scan metadata files",
|
|
822
916
|
"vs.cmd.sync.upgradeMeta.upgrade": "Upgrade",
|
|
823
917
|
"vs.cmd.sync.upgradeMeta.upgradeMetaFile": "Upgrade {0} metadata file(s) under this folder?",
|
|
824
918
|
"vs.cmd.ext.create.cannotCreateExt": "Cannot create an extension because the sysdata project is not cloned in this workspace.",
|
|
825
919
|
"vs.cmd.ext.create.createdExt": "Created extension {0}.",
|
|
826
|
-
"vs.cmd.ext.create.creatingExt": "Creating extension {0}",
|
|
827
920
|
"vs.cmd.ext.create.dirNamedSame": "A directory named the same already exists under sysdata/extensions/.",
|
|
828
921
|
"vs.cmd.ext.create.enterNewExt": "Enter the New Extension Name",
|
|
829
922
|
"vs.cmd.ext.create.extNameMust": "Extension name must follow the pattern {0}.",
|
|
@@ -840,7 +933,6 @@
|
|
|
840
933
|
"vs.cmd.ext.push.pickExtDir": "Pick the extension directory to push to the server",
|
|
841
934
|
"vs.cmd.ext.push.pushExtComplete": "Push extension complete: {0} pushed.",
|
|
842
935
|
"vs.cmd.ext.push.pushExtFinished": "Push extension finished with issues: {0} pushed, {1} rejected, {2} failed.",
|
|
843
|
-
"vs.cmd.ext.push.pushingExt": "Pushing extension {0}",
|
|
844
936
|
"vs.cmd.ext.push.selectExtPush": "Select Extension to Push",
|
|
845
937
|
"vs.view.changes.backup": "No backup found for {0}",
|
|
846
938
|
"vs.view.changes.localAdded": "Local added",
|
|
@@ -857,7 +949,6 @@
|
|
|
857
949
|
"vs.view.changes.openFile": "Open File",
|
|
858
950
|
"vs.view.changes.path": "Path: {0}",
|
|
859
951
|
"vs.view.changes.previousPath": "Previous path: {0}",
|
|
860
|
-
"vs.view.changes.refreshingChanges": "Refreshing changes...",
|
|
861
952
|
"vs.view.changes.remoteAdded": "Remote added",
|
|
862
953
|
"vs.view.changes.remoteChanges": "Remote Changes",
|
|
863
954
|
"vs.view.changes.remoteDeleted": "Remote deleted",
|
|
@@ -907,7 +998,15 @@
|
|
|
907
998
|
"vs.ui.error.showLogs": "Show Logs",
|
|
908
999
|
"vs.ui.error.unknownErrorOccurred": "An unknown error occurred",
|
|
909
1000
|
"vs.ui.login.login": "Login to {0}",
|
|
1001
|
+
"vs.ui.login.method": "Choose a login method",
|
|
1002
|
+
"vs.ui.login.oauth": "OAuth2",
|
|
1003
|
+
"vs.ui.login.oauthDesc": "Open the browser and authorize SuccApp.",
|
|
1004
|
+
"vs.ui.login.openingBrowser": "Opening browser",
|
|
1005
|
+
"vs.ui.login.waitingForCallback": "Waiting for authorization",
|
|
1006
|
+
"vs.ui.login.exchangingToken": "Signing in",
|
|
1007
|
+
"vs.ui.login.oauthManualUrl": "Open this URL in your browser: {0}",
|
|
910
1008
|
"vs.ui.login.pat": "Personal Access Token",
|
|
1009
|
+
"vs.ui.login.patDesc": "Paste a PAT manually.",
|
|
911
1010
|
"vs.ui.login.patRequired": "Enter a Personal Access Token.",
|
|
912
1011
|
"vs.ui.remote.remoteServerFiles": "Remote server files are read-only in the Servers view. Use sync commands to edit local workspace files.",
|
|
913
1012
|
"vs.ui.status.clickReconnectOr": "Click to reconnect or switch servers",
|
|
@@ -929,59 +1028,58 @@
|
|
|
929
1028
|
"vs.ui.workspaceProblem.staleBaseline": "SuccApp detected a stale local sync baseline. See logs for details before changing the workspace.",
|
|
930
1029
|
"vs.ui.workspaceProblem.syncProblem": "SuccApp detected a workspace sync problem. See logs for details.",
|
|
931
1030
|
"vs.cmd.title.addServer": "Add Server",
|
|
932
|
-
"vs.cmd.title.
|
|
933
|
-
"vs.cmd.title.
|
|
1031
|
+
"vs.cmd.title.useServer": "Use Server",
|
|
1032
|
+
"vs.cmd.title.loginServer": "Login Server",
|
|
934
1033
|
"vs.cmd.title.disconnectServer": "Disconnect Server",
|
|
935
1034
|
"vs.cmd.title.removeServer": "Remove Server",
|
|
936
|
-
"vs.cmd.title.
|
|
1035
|
+
"vs.cmd.title.setServerUrl": "Set Server URL",
|
|
937
1036
|
"vs.cmd.title.openServerConfig": "Open Server Config",
|
|
938
1037
|
"vs.cmd.title.cloneProject": "Clone Project",
|
|
939
|
-
"vs.cmd.title.
|
|
1038
|
+
"vs.cmd.title.removeLocalProject": "Remove Local Project",
|
|
940
1039
|
"vs.cmd.title.pullChanges": "Pull Changes",
|
|
941
1040
|
"vs.cmd.title.pushChanges": "Push Changes",
|
|
942
1041
|
"vs.cmd.title.pushCurrentFile": "Push Current File",
|
|
943
|
-
"vs.cmd.title.
|
|
944
|
-
"vs.cmd.title.
|
|
945
|
-
"vs.cmd.title.
|
|
946
|
-
"vs.cmd.title.workspace.repair": "Workspace Repair",
|
|
1042
|
+
"vs.cmd.title.upgradeFile": "Upgrade File",
|
|
1043
|
+
"vs.cmd.title.refreshChanges": "Refresh Changes",
|
|
1044
|
+
"vs.cmd.title.repairWorkspace": "Repair Workspace",
|
|
947
1045
|
"vs.cmd.title.enableAutoPush": "Enable Auto Push",
|
|
948
1046
|
"vs.cmd.title.disableAutoPush": "Disable Auto Push",
|
|
949
|
-
"vs.cmd.title.
|
|
1047
|
+
"vs.cmd.title.compareFileWithServer": "Compare File with Server",
|
|
950
1048
|
"vs.cmd.title.configureSyncIgnore": "Configure Sync Ignore Rules",
|
|
951
|
-
"vs.cmd.title.
|
|
1049
|
+
"vs.cmd.title.initWorkspace": "Initialize Workspace",
|
|
952
1050
|
"vs.cmd.title.showLogs": "Show Logs",
|
|
953
1051
|
"vs.cmd.title.createExtension": "Create Extension from Template",
|
|
954
|
-
"vs.cmd.title.pushExtension": "Push Extension
|
|
955
|
-
"vs.cmd.title.pushFile": "Push
|
|
956
|
-
"vs.cmd.title.pullFile": "Pull
|
|
957
|
-
"vs.cmd.title.discardChanges": "Discard
|
|
958
|
-
"vs.cmd.title.copyMetaPath": "Copy
|
|
959
|
-
"vs.cmd.title.copyMetaId": "Copy
|
|
960
|
-
"vs.cmd.title.
|
|
961
|
-
"vs.cmd.title.
|
|
1052
|
+
"vs.cmd.title.pushExtension": "Push Extension",
|
|
1053
|
+
"vs.cmd.title.pushFile": "Push File",
|
|
1054
|
+
"vs.cmd.title.pullFile": "Pull File",
|
|
1055
|
+
"vs.cmd.title.discardChanges": "Discard Changes",
|
|
1056
|
+
"vs.cmd.title.copyMetaPath": "Copy Meta Path",
|
|
1057
|
+
"vs.cmd.title.copyMetaId": "Copy Meta ID",
|
|
1058
|
+
"vs.cmd.title.openServerViews": "Open Server Views",
|
|
1059
|
+
"vs.cmd.title.openServerEditPage": "Open Server Edit Page",
|
|
962
1060
|
"vs.cmd.title.views.refreshServers": "Refresh Servers",
|
|
963
1061
|
"vs.cmd.title.views.refreshChanges": "Refresh Changes",
|
|
964
1062
|
"vs.cmd.title.views.pushChanges": "Push Changes",
|
|
965
1063
|
"vs.cmd.title.views.pullChanges": "Pull Changes",
|
|
966
|
-
"vs.cmd.title.views.discardChanges": "Discard
|
|
1064
|
+
"vs.cmd.title.views.discardChanges": "Discard Changes",
|
|
967
1065
|
"vs.cmd.title.views.toggleChangesViewMode": "Toggle Tree/List View",
|
|
968
1066
|
"vs.cmd.title.views.connectServer": "Connect Server",
|
|
969
1067
|
"vs.cmd.title.views.removeServer": "Remove Server",
|
|
970
|
-
"vs.cmd.title.views.
|
|
1068
|
+
"vs.cmd.title.views.setServerUrl": "Set Server URL",
|
|
971
1069
|
"vs.cmd.title.views.cloneProject": "Clone Project",
|
|
972
|
-
"vs.cmd.title.views.
|
|
973
|
-
"vs.cmd.title.views.
|
|
974
|
-
"vs.cmd.title.views.
|
|
1070
|
+
"vs.cmd.title.views.openServerSource": "Open Server Source",
|
|
1071
|
+
"vs.cmd.title.views.loadServerFileHistory": "Load Server File History",
|
|
1072
|
+
"vs.cmd.title.views.refreshServerFileHistory": "Refresh Server File History",
|
|
975
1073
|
"vs.cmd.title.views.compareHistoryWithPrevious": "Compare with Previous Version",
|
|
976
1074
|
"vs.cmd.title.views.compareHistoryWithWorkspace": "Compare with Workspace",
|
|
977
|
-
"vs.cmd.title.views.
|
|
978
|
-
"vs.cmd.title.views.
|
|
979
|
-
"vs.cmd.title.views.
|
|
980
|
-
"vs.cmd.title.views.discardChange": "Discard
|
|
1075
|
+
"vs.cmd.title.views.compareFileWithServer": "Compare File with Server",
|
|
1076
|
+
"vs.cmd.title.views.pushFile": "Push File",
|
|
1077
|
+
"vs.cmd.title.views.pullFile": "Pull File",
|
|
1078
|
+
"vs.cmd.title.views.discardChange": "Discard Change",
|
|
981
1079
|
"vs.cmd.title.views.mergeChange": "Merge Changes",
|
|
982
|
-
"vs.cmd.title.views.
|
|
1080
|
+
"vs.cmd.title.views.acceptServerChange": "Use Server Version",
|
|
983
1081
|
"vs.cmd.title.views.restoreLocalChange": "Restore Local Version",
|
|
984
1082
|
"vs.cmd.title.openServerSource": "Open Server Source",
|
|
985
|
-
"vs.cmd.title.
|
|
1083
|
+
"vs.cmd.title.showServerFileHistory": "Show Server File History",
|
|
986
1084
|
"vs.cmd.title.views.resetProjectFromServer": "Reset Local Project from Server"
|
|
987
1085
|
}
|