@succsoft/succapp 5.0.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +195 -0
- package/README.md +10 -0
- package/dist/cli/l10n/bundle.l10n.json +984 -0
- package/dist/cli/l10n/bundle.l10n.zh-cn.json +984 -0
- package/dist/cli/succapp.js +102 -0
- package/package.json +23 -0
- package/resources/contents.properties +211 -0
- package/resources/workspace-templates/succapp-workspace/.agents/README.md +40 -0
- package/resources/workspace-templates/succapp-workspace/.agents/plans/.gitignore +2 -0
- package/resources/workspace-templates/succapp-workspace/.agents/reports/.gitignore +2 -0
- package/resources/workspace-templates/succapp-workspace/.agents/reviews/.gitignore +2 -0
- package/resources/workspace-templates/succapp-workspace/.agents/rules/workspace-rules.md +110 -0
- package/resources/workspace-templates/succapp-workspace/.agents/skills/succbi-frontend-development/SKILL.md +76 -0
- package/resources/workspace-templates/succapp-workspace/.github/copilot-instructions.md +3 -0
- package/resources/workspace-templates/succapp-workspace/.succapp/tsconfig.action.json +42 -0
- package/resources/workspace-templates/succapp-workspace/.succapp/tsconfig.browser.json +51 -0
- package/resources/workspace-templates/succapp-workspace/.vscode/settings.recommended.jsonc +37 -0
- package/resources/workspace-templates/succapp-workspace/.vscode/settings.typescript-support.jsonc +8 -0
- package/resources/workspace-templates/succapp-workspace/AGENTS.md +50 -0
- package/resources/workspace-templates/succapp-workspace/CLAUDE.md +1 -0
- package/resources/workspace-templates/succapp-workspace/agent-workspace-template.jsonc +18 -0
- package/resources/workspace-templates/succapp-workspace/tsconfig.json +12 -0
|
@@ -0,0 +1,984 @@
|
|
|
1
|
+
{
|
|
2
|
+
"common.err.unexpected": "Unexpected error.",
|
|
3
|
+
"err.workspace.required": "Please open a workspace before using SuccApp commands.",
|
|
4
|
+
"err.workspace.activeFileRequired": "Open a file before {actionName}.",
|
|
5
|
+
"err.base.cancel": "Cancelled.",
|
|
6
|
+
"err.net.connectionFailed": "Cannot connect to server: {url}{causeMessage}",
|
|
7
|
+
"err.net.connectionFailed.desc": "Check the server address and network connection, then retry or log in again.",
|
|
8
|
+
"err.login.notlogin": "Authentication failed, please log in again",
|
|
9
|
+
"err.sync.conflict": "Remote version has changed: {remotePath}",
|
|
10
|
+
"err.sync.conflict.desc": "Please pull or diff before pushing. Reason: {reason}",
|
|
11
|
+
"err.sync.projectUnavailable": "Cannot {actionName} unavailable remote project(s): {paths}",
|
|
12
|
+
"err.sync.projectUnavailable.desc": "Check the server, user, project permissions, and project name before retrying.",
|
|
13
|
+
"err.sync.projectNotFound": "Workspace project does not exist: {projectNames}",
|
|
14
|
+
"err.sync.projectRootRenameUnsupported": "Cannot {actionName} renamed remote project(s): {paths}",
|
|
15
|
+
"err.sync.projectRootRenameUnsupported.desc": "Applying a project rename is not supported yet. Re-clone the renamed project or rename it locally to match.",
|
|
16
|
+
"err.sync.pathOutOfScope": "This file is not within the sync scope: {remotePath}",
|
|
17
|
+
"err.extension.sysdataNotCloned": "Cannot create an extension because the sysdata project is not cloned in this workspace.",
|
|
18
|
+
"err.extension.sysdataNotCloned.desc": "Clone the sysdata project, then retry.",
|
|
19
|
+
"err.extension.templateUnavailable": "The connected server has not provided any extension template.",
|
|
20
|
+
"err.extension.rootUnresolved": "Cannot resolve extension root from input.",
|
|
21
|
+
"err.extension.rootUnresolved.desc": "Provide an extensionName or a path inside an extension.",
|
|
22
|
+
"err.extension.rootNotFound": "Extension directory does not exist: {extensionRoot}",
|
|
23
|
+
"err.workspace.problem": "Workspace sync problem detected.",
|
|
24
|
+
"err.workspace.problem.desc": "Run workspace check or repair before retrying operations that require a complete local baseline.",
|
|
25
|
+
"err.net.invalidUrl": "Invalid URL: {url}",
|
|
26
|
+
"err.meta.invalidPath": "Invalid metadata path",
|
|
27
|
+
"err.meta.invalidPath.desc": "Use a valid absolute metadata path and try again.",
|
|
28
|
+
"err.file.notFound": "Path does not exist: {path}",
|
|
29
|
+
"err.file.notDirectory": "Path is not a directory: {path}",
|
|
30
|
+
"err.workspace.sameServerUrl": "New server URL must be different from the current URL.",
|
|
31
|
+
"err.workspace.serverAlreadyExists": "Server already exists: {duplicatedServer}",
|
|
32
|
+
"err.lock.busy": "Cannot {attemptedCommand}: workspace scope {conflictScope} is held by another process.",
|
|
33
|
+
"err.lock.busy.desc": "Stop the running process and retry; locks left by crashed processes are cleaned up automatically on the next attempt.",
|
|
34
|
+
"err.lock.compromised": "Workspace lock was taken over by another process; the current {attemptedCommand} has been aborted.",
|
|
35
|
+
"err.lock.compromised.desc": "Run status to verify consistency before retrying.",
|
|
36
|
+
"err.workspace.activeConnectionRequired": "Cannot {actionName} without an active server connection.",
|
|
37
|
+
"err.base.operationFailed": "Operation failed",
|
|
38
|
+
"err.base.operationFailed.desc": "The operation could not be completed. Check the error details or contact the administrator.",
|
|
39
|
+
"err.net.invalidResponse": "Invalid remote response format",
|
|
40
|
+
"err.net.invalidResponse.desc": "The remote response does not match the current protocol requirements. Check the service version or contact the administrator.",
|
|
41
|
+
"err.net.invalidResponse.dbTableDescribeEmpty.hint": "Check whether data source {dataSource} and table {tableName} exist.",
|
|
42
|
+
"err.db.tableNotFound": "Database table does not exist: {tableName}",
|
|
43
|
+
"err.cli.unknownCommand": "Unknown command: {commandName}",
|
|
44
|
+
"err.cli.unknownCommand.hint": "Run {helpCommand} to view available commands.",
|
|
45
|
+
"err.cli.invalidInvocation": "Found {count} usage issue(s).",
|
|
46
|
+
"err.cli.invalidInvocation.hint": "Fix the listed usage issues and retry.",
|
|
47
|
+
"err.cli.unknownOption": "Unknown option: {option}",
|
|
48
|
+
"err.cli.missingOptionValue": "Option requires a value: {option}",
|
|
49
|
+
"err.cli.unexpectedOptionValue": "Option does not take a value: {option}",
|
|
50
|
+
"err.cli.missingArgument": "Missing required argument: {argument}.",
|
|
51
|
+
"err.cli.missingArgument.hint": "Usage: {usage}.",
|
|
52
|
+
"err.cli.tooManyArguments": "Too many arguments for {command}.",
|
|
53
|
+
"err.cli.tooManyArguments.hint": "This command accepts at most {max} positional argument(s).",
|
|
54
|
+
"err.cli.missingInput": "Missing required input: {input}.",
|
|
55
|
+
"err.cli.missingInput.hint": "Provide the required input and retry.",
|
|
56
|
+
"err.cli.missingInput.hintWithSources": "Provide {sources} and retry.",
|
|
57
|
+
"err.cli.conflictingInputs": "Conflicting inputs: {inputs}.",
|
|
58
|
+
"err.cli.conflictingInputs.hint": "Use only one of these inputs and retry.",
|
|
59
|
+
"err.cli.invalidUrl": "Invalid URL for {input}: {value}.",
|
|
60
|
+
"err.cli.invalidUrl.hint": "Provide a full http:// or https:// URL.",
|
|
61
|
+
"err.cli.invalidPositiveInteger": "{input} must be a positive integer: {value}.",
|
|
62
|
+
"err.cli.invalidNonNegativeInteger": "{input} must be a non-negative integer: {value}.",
|
|
63
|
+
"err.cli.invalidNonNegativeIntegerRange": "{input} must be a non-negative integer no greater than {max}: {value}.",
|
|
64
|
+
"err.cli.invalidChoice": "Invalid value for {input}: {value}.",
|
|
65
|
+
"err.cli.invalidChoice.hint": "Expected one of: {allowedValues}.",
|
|
66
|
+
"err.cli.invalidKeyValue": "Invalid key=value for {input}: {value}.",
|
|
67
|
+
"err.cli.invalidKeyValue.hint": "Use key=value.",
|
|
68
|
+
"err.cli.invalidNonEmptyKeyValue": "Invalid key=value for {input}: {value}.",
|
|
69
|
+
"err.cli.invalidNonEmptyKeyValue.hint": "Use key=value and keep key non-empty.",
|
|
70
|
+
"err.cli.invalidJson": "Invalid JSON for {input}: {source}.",
|
|
71
|
+
"err.cli.invalidJsonObject": "{input} must be a JSON object: {source}.",
|
|
72
|
+
"err.cli.invalidReadableFile": "Input file is not readable: {source}.",
|
|
73
|
+
"err.cli.invalidRegularFile": "Input path is not a regular file: {source}.",
|
|
74
|
+
"err.cli.invalidWorkspace": "Not a SuccApp workspace: {source}.",
|
|
75
|
+
"err.cli.invalidWorkspace.hint": "Run succapp workspace init first, or use -C <workspace> to choose an existing workspace.",
|
|
76
|
+
"err.cli.invalidWorkspaceConfigJson": "Workspace config is corrupted: {source}.",
|
|
77
|
+
"err.cli.unconfiguredServer": "Server is not configured in the current workspace: {value}.",
|
|
78
|
+
"err.cli.serverMismatch": "Server does not match the active workspace server: {value}.",
|
|
79
|
+
"err.cli.serverMismatch.hint": "Expected active server: {expected}.",
|
|
80
|
+
"err.cli.unsupportedAuthFlow": "Authentication flow is not implemented yet: {authType}.",
|
|
81
|
+
"err.cli.unsupportedAuthFlow.hint": "Use succapp auth login --pat <url> and enter the PAT when prompted. Piped stdin is still supported for scripts.",
|
|
82
|
+
"err.cli.invalidExtensionName": "Invalid extension name: {value}.",
|
|
83
|
+
"err.cli.invalidExtensionName.hint": "Use <companyName>-<extensionPoint>-<shortName>.",
|
|
84
|
+
"err.cli.unknownExtensionTemplate": "Extension template is not available: {value}.",
|
|
85
|
+
"err.cli.confirmationRequired": "This operation requires confirmation.",
|
|
86
|
+
"err.cli.confirmationRequired.hint": "Pass {flag} after confirming the impact.",
|
|
87
|
+
"err.cli.confirmationRequired.dbSourceDelete": "Deleting this data source requires confirmation.",
|
|
88
|
+
"err.cli.confirmationRequired.dbSourceDelete.hint": "Confirm the data source can be deleted, then pass {flag}.",
|
|
89
|
+
"err.cli.confirmationRequired.dbQueryWriteSql": "db query only runs read-only SQL. Use db exec for SQL that may change data or schema.",
|
|
90
|
+
"err.cli.confirmationRequired.dbQueryWriteSql.hint": "Review the SQL impact, then run succapp db exec with {flag}.",
|
|
91
|
+
"err.cli.confirmationRequired.dbSqlMutation": "This SQL may change data or schema and requires confirmation.",
|
|
92
|
+
"err.cli.confirmationRequired.dbSqlMutation.hint": "Review the SQL impact, then pass {flag} to execute it.",
|
|
93
|
+
"err.cli.confirmationRequired.outputOverwrite": "The output file already exists and would be overwritten.",
|
|
94
|
+
"err.cli.confirmationRequired.outputOverwrite.desc": "Output file: {path}",
|
|
95
|
+
"err.cli.confirmationRequired.outputOverwrite.hint": "Confirm that overwriting this file is expected, then pass {flag}.",
|
|
96
|
+
"err.cli.confirmationRequired.cloneOverwrite": "Cloning would overwrite existing local workspace project(s): {projectNames}.",
|
|
97
|
+
"err.cli.confirmationRequired.cloneOverwrite.hint": "Confirm the local project can be overwritten, then pass {flag}.",
|
|
98
|
+
"err.cli.confirmationRequired.projRemove": "Removing local workspace project(s) requires confirmation: {projectNames}.",
|
|
99
|
+
"err.cli.confirmationRequired.projRemove.hint": "Confirm the local project files and mirror baselines can be removed, then pass {flag}.",
|
|
100
|
+
"err.db.nonReadOnlySql": "db query only runs read-only SQL. Use db exec for SQL that may change data or schema.",
|
|
101
|
+
"err.db.nonReadOnlySql.hint": "Review the SQL impact, then run succapp db exec with {flag}.",
|
|
102
|
+
"err.net.httpStatusUnexpected": "Unexpected HTTP response status",
|
|
103
|
+
"err.net.httpStatusUnexpected.desc": "The remote service returned an HTTP status that the caller cannot classify. Check the error details or contact the administrator.",
|
|
104
|
+
"workspace.compat.connectedServerAppears": "The connected server appears older than this workspace's recorded baseline. You may have connected to the wrong server.",
|
|
105
|
+
"workspace.compat.serverVersion": "Server version: {0} < {1}",
|
|
106
|
+
"workspace.repair.baseline.invisible": "current login cannot see matching project on current server: {0}",
|
|
107
|
+
"workspace.repair.baseline.mirrorMissing": "workspace project mirror baseline is still missing after fetch: {0}",
|
|
108
|
+
"workspace.repair.baseline.missing": "workspace project is missing local mirror baseline: {0}",
|
|
109
|
+
"workspace.repair.check.notImpl": "workspace repair check is not implemented: {0}",
|
|
110
|
+
"workspace.server.serverMirrorExists": "Server mirror already exists: {0}",
|
|
111
|
+
"workspace.server.serverNotConfigured": "Server is not configured for this workspace: {0}",
|
|
112
|
+
"workspace.validation.json.invalidJson": "Invalid JSON: {0}.",
|
|
113
|
+
"workspace.validation.json.jsonFileEmpty": "JSON file is empty.",
|
|
114
|
+
"cli.cmd.common.desc": "Common commands.",
|
|
115
|
+
"cli.cmd.common.summary": "common commands",
|
|
116
|
+
"cli.cmd.common.title": "Common",
|
|
117
|
+
"cli.cmd.root.summary": "SuccApp command line interface.",
|
|
118
|
+
"cli.host.localeFallback": "Locale {0} is not available; using default messages.",
|
|
119
|
+
"cli.opt.help": "Show this help.",
|
|
120
|
+
"cli.opt.json": "Write newline-delimited JSON output.",
|
|
121
|
+
"cli.opt.locale": "Use the given locale for CLI messages.",
|
|
122
|
+
"cli.opt.lockTimeout": "Wait for a workspace lock before failing.",
|
|
123
|
+
"cli.opt.logLevel": "Set log level: trace, debug, info, warn, or error.",
|
|
124
|
+
"cli.opt.quiet": "Suppress progress and informational output.",
|
|
125
|
+
"cli.opt.server": "Select a server for commands that support it.",
|
|
126
|
+
"cli.opt.verbose": "Enable debug logging.",
|
|
127
|
+
"cli.opt.version": "Show version information.",
|
|
128
|
+
"cli.opt.workspace": "Run as if SuccApp was started in the given workspace.",
|
|
129
|
+
"cli.cmd.auth.title": "Auth",
|
|
130
|
+
"cli.cmd.auth.summary": "login, logout, and inspect stored server auth",
|
|
131
|
+
"cli.cmd.auth.desc": "Login, logout, and inspect stored server auth.",
|
|
132
|
+
"cli.cmd.auth.noStoredAuth": "No stored auth for {0}",
|
|
133
|
+
"cli.cmd.auth.storedAuth": "Stored auth for {0}: {1}",
|
|
134
|
+
"cli.cmd.auth.storedAuthNoCred": "Stored auth for {0}: no credential methods",
|
|
135
|
+
"cli.cmd.auth.login.summary": "Login to a server.",
|
|
136
|
+
"cli.cmd.auth.login.desc": "Login to a SuccBI server with OAuth2 or PAT and save local auth state.",
|
|
137
|
+
"cli.cmd.auth.login.oauth": "Use OAuth2 login. This is the default.",
|
|
138
|
+
"cli.cmd.auth.login.pat": "Use Personal Access Token login. Interactive terminals prompt for the token; piped input is read from stdin.",
|
|
139
|
+
"cli.cmd.auth.login.patPrompt": "Personal Access Token: ",
|
|
140
|
+
"cli.cmd.auth.login.loggedIn": "Logged in to {0}",
|
|
141
|
+
"cli.cmd.auth.logout.summary": "Remove stored auth.",
|
|
142
|
+
"cli.cmd.auth.logout.desc": "Remove stored authentication information from the local auth settings.",
|
|
143
|
+
"cli.cmd.auth.logout.all": "Remove stored auth for all servers.",
|
|
144
|
+
"cli.cmd.auth.logout.removedAllAuth": "Removed stored auth for all servers: {0}",
|
|
145
|
+
"cli.cmd.auth.logout.removedAuth": "Removed stored auth for {0}",
|
|
146
|
+
"cli.cmd.auth.logout.serverUrlTogether": "Do not pass a server URL together with --all.",
|
|
147
|
+
"cli.cmd.auth.logout.storedAuth": "No stored auth for {0}",
|
|
148
|
+
"cli.cmd.auth.status.summary": "Show stored auth status.",
|
|
149
|
+
"cli.cmd.auth.status.desc": "Show local stored authentication information for a server.",
|
|
150
|
+
"cli.cmd.db.title": "Database",
|
|
151
|
+
"cli.cmd.db.summary": "inspect and operate server databases and data sources",
|
|
152
|
+
"cli.cmd.db.desc": "Inspect and operate server databases and data sources.",
|
|
153
|
+
"cli.cmd.db.dataSource": "Data source",
|
|
154
|
+
"cli.cmd.db.defaultSchema": "Default schema",
|
|
155
|
+
"cli.cmd.db.dryImport": "Dry run import",
|
|
156
|
+
"cli.cmd.db.dsConfigMust": "Datasource config must be a JSON object: {0}",
|
|
157
|
+
"cli.cmd.db.imported": "Imported",
|
|
158
|
+
"cli.cmd.db.invalidJsonDs": "Invalid JSON in datasource config: {0}",
|
|
159
|
+
"cli.cmd.db.missingDsConfig": "Missing datasource config. Pass --config=<json-file> or --config=-.",
|
|
160
|
+
"cli.cmd.db.missingExportTarget": "Missing export target. Pass <table>, --query, or --query-file.",
|
|
161
|
+
"cli.cmd.db.missingInputFile": "Missing import input. Pass --input=<csv-file> or --input=-.",
|
|
162
|
+
"cli.cmd.db.missingInputPipe": "Missing import input. Pass --input=<csv-file> or pipe CSV with --input=-.",
|
|
163
|
+
"cli.cmd.db.missingSql": "Missing SQL. Pass <sql> or --file=<sql-file>.",
|
|
164
|
+
"cli.cmd.db.mustAppendTruncate": "--{0} must be one of append, truncate, replace.",
|
|
165
|
+
"cli.cmd.db.mustNonNegative": "--{0} must be a non-negative integer.",
|
|
166
|
+
"cli.cmd.db.mustPositiveInteger": "--{0} must be a positive integer.",
|
|
167
|
+
"cli.cmd.db.nullable": "Nullable",
|
|
168
|
+
"cli.cmd.db.pk": "PK",
|
|
169
|
+
"cli.cmd.db.queryOrQueryFileConflict": "Pass export query either as --query or --query-file, not both.",
|
|
170
|
+
"cli.cmd.db.readonly": "Readonly",
|
|
171
|
+
"cli.cmd.db.rowsModeDry": "{0} {1} rows into {2}{3} (mode: {4}, dry-run: {5})",
|
|
172
|
+
"cli.cmd.db.skipped": ", skipped {0}",
|
|
173
|
+
"cli.cmd.db.sqlExecutedSuccess": "SQL executed successfully.",
|
|
174
|
+
"cli.cmd.db.sqlOrFileConflict": "Pass SQL either as <sql> or --file, not both.",
|
|
175
|
+
"cli.cmd.db.sqlUpdateCount": "SQL update count: {0}",
|
|
176
|
+
"cli.cmd.db.tableOrQueryConflict": "Pass either <table> or --query/--query-file, not both.",
|
|
177
|
+
"cli.cmd.db.source.title": "Database source",
|
|
178
|
+
"cli.cmd.db.source.summary": "inspect and manage database sources",
|
|
179
|
+
"cli.cmd.db.source.desc": "Inspect and manage database sources.",
|
|
180
|
+
"cli.cmd.db.source.list.summary": "List visible data sources.",
|
|
181
|
+
"cli.cmd.db.source.list.desc": "List data sources visible to the active SuccApp server session.",
|
|
182
|
+
"cli.cmd.db.source.show.summary": "Show a datasource configuration.",
|
|
183
|
+
"cli.cmd.db.source.show.desc": "Show a datasource configuration.",
|
|
184
|
+
"cli.cmd.db.source.test.summary": "Test a datasource connection.",
|
|
185
|
+
"cli.cmd.db.source.test.desc": "Test a datasource connection from a JSON configuration.",
|
|
186
|
+
"cli.cmd.db.source.test.config": "Read datasource configuration JSON from a file, or use - for stdin.",
|
|
187
|
+
"cli.cmd.db.source.test.testOk": "Datasource connection succeeded: {0}",
|
|
188
|
+
"cli.cmd.db.source.create.summary": "Create a datasource.",
|
|
189
|
+
"cli.cmd.db.source.create.desc": "Create a datasource from a JSON configuration.",
|
|
190
|
+
"cli.cmd.db.source.create.config": "Read datasource configuration JSON from a file, or use - for stdin.",
|
|
191
|
+
"cli.cmd.db.source.create.test": "Test the connection before saving.",
|
|
192
|
+
"cli.cmd.db.source.create.created": "Created data source: {0}",
|
|
193
|
+
"cli.cmd.db.source.update.summary": "Update a datasource.",
|
|
194
|
+
"cli.cmd.db.source.update.desc": "Update a datasource from a JSON configuration.",
|
|
195
|
+
"cli.cmd.db.source.update.config": "Read datasource configuration JSON from a file, or use - for stdin.",
|
|
196
|
+
"cli.cmd.db.source.update.test": "Test the connection before saving.",
|
|
197
|
+
"cli.cmd.db.source.update.updated": "Updated data source: {0}",
|
|
198
|
+
"cli.cmd.db.source.remove.summary": "Delete a datasource.",
|
|
199
|
+
"cli.cmd.db.source.remove.desc": "Delete a datasource after explicit confirmation.",
|
|
200
|
+
"cli.cmd.db.source.remove.force": "Confirm datasource deletion.",
|
|
201
|
+
"cli.cmd.db.source.remove.dbSourceRemove": "Deleting a data source requires --force.",
|
|
202
|
+
"cli.cmd.db.source.remove.deleted": "Deleted data source: {0}",
|
|
203
|
+
"cli.cmd.db.schema.title": "Database schema",
|
|
204
|
+
"cli.cmd.db.schema.summary": "inspect database schemas",
|
|
205
|
+
"cli.cmd.db.schema.desc": "Inspect database schemas.",
|
|
206
|
+
"cli.cmd.db.schema.list.summary": "List schemas for a data source.",
|
|
207
|
+
"cli.cmd.db.schema.list.desc": "List schemas for a data source.",
|
|
208
|
+
"cli.cmd.db.schema.list.catalog": "Catalog",
|
|
209
|
+
"cli.cmd.db.table.title": "Database table",
|
|
210
|
+
"cli.cmd.db.table.summary": "inspect database tables",
|
|
211
|
+
"cli.cmd.db.table.desc": "Inspect database tables.",
|
|
212
|
+
"cli.cmd.db.table.list.summary": "List tables for a data source.",
|
|
213
|
+
"cli.cmd.db.table.list.desc": "List tables for a data source.",
|
|
214
|
+
"cli.cmd.db.table.list.tableNameContains": "Filter tables by name. Supports * and ? wildcards.",
|
|
215
|
+
"cli.cmd.db.table.describe.summary": "Describe a database table.",
|
|
216
|
+
"cli.cmd.db.table.describe.desc": "Describe columns and metadata for a database table.",
|
|
217
|
+
"cli.cmd.db.table.describe.schema": "Schema name.",
|
|
218
|
+
"cli.cmd.db.query.summary": "Execute a read-only SQL query.",
|
|
219
|
+
"cli.cmd.db.query.desc": "Execute SQL through Dev Tool v2. SuccApp CLI only allows read-only queries.",
|
|
220
|
+
"cli.cmd.db.query.file": "Read SQL from a file.",
|
|
221
|
+
"cli.cmd.db.query.schema": "SQL execution schema.",
|
|
222
|
+
"cli.cmd.db.query.timeout": "SQL timeout in seconds. Defaults to 30.",
|
|
223
|
+
"cli.cmd.db.query.maxRows": "Maximum returned row count.",
|
|
224
|
+
"cli.cmd.db.query.nonReadOnlySql": "db query only allows read-only SQL. Use db exec for write or schema changes; add --force only after confirming the impact.",
|
|
225
|
+
"cli.cmd.db.query.sqlOrFileConflict": "Pass SQL either as <sql> or --file, not both.",
|
|
226
|
+
"cli.cmd.db.exec.summary": "Execute any SQL.",
|
|
227
|
+
"cli.cmd.db.exec.desc": "Execute SQL through Dev Tool v2. Write or schema changes require explicit confirmation.",
|
|
228
|
+
"cli.cmd.db.exec.file": "Read SQL from a file.",
|
|
229
|
+
"cli.cmd.db.exec.schema": "SQL execution schema.",
|
|
230
|
+
"cli.cmd.db.exec.timeout": "SQL timeout in seconds. Defaults to 30.",
|
|
231
|
+
"cli.cmd.db.exec.maxRows": "Limit returned rows for result sets.",
|
|
232
|
+
"cli.cmd.db.exec.force": "Confirm SQL marked dangerous by safety analysis.",
|
|
233
|
+
"cli.cmd.db.exec.dangerousSql": "Dangerous SQL was blocked. Review the impact before rerunning with --force.{0}",
|
|
234
|
+
"cli.cmd.db.exec.forceRequired": "Execution stopped. Add --force only after confirming the SQL impact.",
|
|
235
|
+
"cli.cmd.db.exec.fullTableData": "full-table data mutation",
|
|
236
|
+
"cli.cmd.db.exec.schemaMutation": "schema mutation",
|
|
237
|
+
"cli.cmd.db.import.summary": "Import CSV data into a table.",
|
|
238
|
+
"cli.cmd.db.import.desc": "Import CSV data into a database table.",
|
|
239
|
+
"cli.cmd.db.import.input": "Read table data CSV from a file, or use - for stdin.",
|
|
240
|
+
"cli.cmd.db.import.mode": "Import mode. Defaults to append; truncate and replace must be passed explicitly.",
|
|
241
|
+
"cli.cmd.db.import.dryRun": "Validate import without writing rows.",
|
|
242
|
+
"cli.cmd.db.import.schema": "Table schema.",
|
|
243
|
+
"cli.cmd.db.import.timeout": "SQL timeout in seconds. Defaults to 30.",
|
|
244
|
+
"cli.cmd.db.export.summary": "Export table data or a query result as CSV.",
|
|
245
|
+
"cli.cmd.db.export.desc": "Export table data or a query result as CSV.",
|
|
246
|
+
"cli.cmd.db.export.query": "Export a query result instead of table data.",
|
|
247
|
+
"cli.cmd.db.export.queryFile": "Read export query SQL from a file.",
|
|
248
|
+
"cli.cmd.db.export.schema": "Table schema or SQL execution schema.",
|
|
249
|
+
"cli.cmd.db.export.timeout": "SQL timeout in seconds. Defaults to 30.",
|
|
250
|
+
"cli.cmd.db.export.output": "Write CSV output to a local file.",
|
|
251
|
+
"cli.cmd.db.export.force": "Overwrite the output file if it already exists.",
|
|
252
|
+
"cli.cmd.db.export.exportedData": "Exported data to {0}",
|
|
253
|
+
"cli.cmd.server.title": "Server",
|
|
254
|
+
"cli.cmd.server.summary": "inspect and operate a SuccBI server",
|
|
255
|
+
"cli.cmd.server.desc": "Inspect and operate a SuccBI server.",
|
|
256
|
+
"cli.cmd.server.serverNotConfigured": "Server is not configured for this workspace: {0}",
|
|
257
|
+
"cli.cmd.server.serverReachable": "Server reachable: {0}",
|
|
258
|
+
"cli.cmd.server.ping.summary": "Check server reachability.",
|
|
259
|
+
"cli.cmd.server.ping.desc": "Check whether the SuccApp Dev Tool v2 ping endpoint is reachable.",
|
|
260
|
+
"cli.cmd.server.info.summary": "Show server information.",
|
|
261
|
+
"cli.cmd.server.info.desc": "Show server information and Dev Tool capabilities.",
|
|
262
|
+
"cli.cmd.server.cache.title": "Server cache",
|
|
263
|
+
"cli.cmd.server.cache.summary": "manage server cache",
|
|
264
|
+
"cli.cmd.server.cache.desc": "Manage server cache.",
|
|
265
|
+
"cli.cmd.server.cache.refresh.summary": "Refresh server cache.",
|
|
266
|
+
"cli.cmd.server.cache.refresh.desc": "Refresh server-side Dev Tool metadata cache.",
|
|
267
|
+
"cli.cmd.server.cache.refresh.refreshed": "Server cache refreshed: {0}",
|
|
268
|
+
"cli.cmd.server.proj.title": "Server project",
|
|
269
|
+
"cli.cmd.server.proj.summary": "inspect server projects",
|
|
270
|
+
"cli.cmd.server.proj.desc": "Inspect server projects.",
|
|
271
|
+
"cli.cmd.server.proj.list.summary": "List server projects.",
|
|
272
|
+
"cli.cmd.server.proj.list.desc": "List projects visible on a server.",
|
|
273
|
+
"cli.cmd.server.proj.create.summary": "Create a server project.",
|
|
274
|
+
"cli.cmd.server.proj.create.desc": "Create a metadata project on a server.",
|
|
275
|
+
"cli.cmd.server.proj.create.description": "Set the project description.",
|
|
276
|
+
"cli.cmd.server.proj.create.created": "Created server project: {0}",
|
|
277
|
+
"cli.cmd.server.file.title": "Server file",
|
|
278
|
+
"cli.cmd.server.file.summary": "inspect and operate server metadata files",
|
|
279
|
+
"cli.cmd.server.file.desc": "Inspect and operate server metadata files.",
|
|
280
|
+
"cli.cmd.server.file.badValue": "Invalid value for {0}: {1}",
|
|
281
|
+
"cli.cmd.server.file.expectedRevRequired": "{0} requires --expected-revision=<n> unless --force is used.",
|
|
282
|
+
"cli.cmd.server.file.file": "file",
|
|
283
|
+
"cli.cmd.server.file.fileOrStdinConflict": "Use either --file or --stdin, not both.",
|
|
284
|
+
"cli.cmd.server.file.files": "No files.",
|
|
285
|
+
"cli.cmd.server.file.folder": "folder",
|
|
286
|
+
"cli.cmd.server.file.id": "ID",
|
|
287
|
+
"cli.cmd.server.file.inputPathRegular": "Input path is not a regular file: {0}",
|
|
288
|
+
"cli.cmd.server.file.missingContentSource": "Missing content source. Use --file=<local-file> or --stdin.",
|
|
289
|
+
"cli.cmd.server.file.missingServerFile": "Missing server file path.",
|
|
290
|
+
"cli.cmd.server.file.modifyTime": "Modify time",
|
|
291
|
+
"cli.cmd.server.file.name": "Name",
|
|
292
|
+
"cli.cmd.server.file.revForceConflict": "{0} accepts either --expected-revision or --force, not both.",
|
|
293
|
+
"cli.cmd.server.file.size": "Size",
|
|
294
|
+
"cli.cmd.server.file.success": "{0} succeeded: {1}",
|
|
295
|
+
"cli.cmd.server.file.unknownServerFile": "Unknown server file error.",
|
|
296
|
+
"cli.cmd.server.file.list.summary": "List server files.",
|
|
297
|
+
"cli.cmd.server.file.list.desc": "List direct children of a server metadata directory.",
|
|
298
|
+
"cli.cmd.server.file.info.summary": "Show server file information.",
|
|
299
|
+
"cli.cmd.server.file.info.desc": "Show server-side metadata for a file or directory.",
|
|
300
|
+
"cli.cmd.server.file.show.summary": "Show server file content.",
|
|
301
|
+
"cli.cmd.server.file.show.desc": "Write server file content to stdout.",
|
|
302
|
+
"cli.cmd.server.file.show.revision": "Read a server file revision.",
|
|
303
|
+
"cli.cmd.server.file.show.upgradeContent": "Return upgraded metadata JSON content when supported.",
|
|
304
|
+
"cli.cmd.server.file.download.summary": "Download server file content.",
|
|
305
|
+
"cli.cmd.server.file.download.desc": "Download server file content to a local file.",
|
|
306
|
+
"cli.cmd.server.file.download.revision": "Download a server file revision.",
|
|
307
|
+
"cli.cmd.server.file.download.upgradeContent": "Download upgraded metadata JSON content when supported.",
|
|
308
|
+
"cli.cmd.server.file.download.output": "Write content to a local file.",
|
|
309
|
+
"cli.cmd.server.file.download.force": "Overwrite the local output file if it exists.",
|
|
310
|
+
"cli.cmd.server.file.download.downloaded": "Downloaded {0} to {1}",
|
|
311
|
+
"cli.cmd.server.file.open.summary": "Open the server file page.",
|
|
312
|
+
"cli.cmd.server.file.open.desc": "Open the server view or edit page for a server file path.",
|
|
313
|
+
"cli.cmd.server.file.open.edit": "Open the server edit page.",
|
|
314
|
+
"cli.cmd.server.file.open.openedEdit": "Opened server edit page: {0}",
|
|
315
|
+
"cli.cmd.server.file.open.openedView": "Opened server view page: {0}",
|
|
316
|
+
"cli.cmd.server.file.history.summary": "Show server file history.",
|
|
317
|
+
"cli.cmd.server.file.history.desc": "Show server-side file history for a server file path.",
|
|
318
|
+
"cli.cmd.server.file.history.limit": "Limit the number of history records.",
|
|
319
|
+
"cli.cmd.server.file.create.summary": "Create a server file.",
|
|
320
|
+
"cli.cmd.server.file.create.desc": "Create a server file and fail if it already exists.",
|
|
321
|
+
"cli.cmd.server.file.create.file": "Read content from a local file.",
|
|
322
|
+
"cli.cmd.server.file.create.stdin": "Read content from stdin.",
|
|
323
|
+
"cli.cmd.server.file.update.summary": "Update a server file.",
|
|
324
|
+
"cli.cmd.server.file.update.desc": "Update an existing server file with revision protection by default.",
|
|
325
|
+
"cli.cmd.server.file.update.file": "Read content from a local file.",
|
|
326
|
+
"cli.cmd.server.file.update.stdin": "Read content from stdin.",
|
|
327
|
+
"cli.cmd.server.file.update.expectedRevision": "Only update when the server revision still matches.",
|
|
328
|
+
"cli.cmd.server.file.update.force": "Overwrite the current server content without revision protection.",
|
|
329
|
+
"cli.cmd.server.file.remove.summary": "Delete a server file.",
|
|
330
|
+
"cli.cmd.server.file.remove.desc": "Delete an existing server file with revision protection by default.",
|
|
331
|
+
"cli.cmd.server.file.remove.expectedRevision": "Only delete when the server revision still matches.",
|
|
332
|
+
"cli.cmd.server.file.remove.force": "Delete the current server file without revision protection.",
|
|
333
|
+
"cli.cmd.server.ext.title": "Server extension",
|
|
334
|
+
"cli.cmd.server.ext.summary": "inspect server extension assets",
|
|
335
|
+
"cli.cmd.server.ext.desc": "Inspect server extension assets.",
|
|
336
|
+
"cli.cmd.server.ext.template.title": "Server extension template",
|
|
337
|
+
"cli.cmd.server.ext.template.summary": "inspect server extension templates",
|
|
338
|
+
"cli.cmd.server.ext.template.desc": "Inspect server extension templates.",
|
|
339
|
+
"cli.cmd.server.ext.template.list.summary": "List extension templates.",
|
|
340
|
+
"cli.cmd.server.ext.template.list.desc": "List extension templates available on a server.",
|
|
341
|
+
"cli.cmd.server.ext.template.list.extensionPoint": "Only list templates for the given extension point.",
|
|
342
|
+
"cli.cmd.server.script.title": "Server script",
|
|
343
|
+
"cli.cmd.server.script.summary": "execute and check server scripts",
|
|
344
|
+
"cli.cmd.server.script.desc": "Execute and check server scripts.",
|
|
345
|
+
"cli.cmd.server.script.done": "Script command completed.",
|
|
346
|
+
"cli.cmd.server.script.invalidJsonInput": "Invalid JSON input file: {0}",
|
|
347
|
+
"cli.cmd.server.script.exec.summary": "Execute a local script on the server.",
|
|
348
|
+
"cli.cmd.server.script.exec.desc": "Read a local script file and execute it through Dev Tool v2 when the server supports this capability.",
|
|
349
|
+
"cli.cmd.server.script.exec.input": "Read script input from a file.",
|
|
350
|
+
"cli.cmd.server.script.exec.param": "Pass a script parameter. Repeatable.",
|
|
351
|
+
"cli.cmd.server.script.check.summary": "Check a local script on the server.",
|
|
352
|
+
"cli.cmd.server.script.check.desc": "Read a local script file and compile it through Dev Tool v2 when the server supports this capability.",
|
|
353
|
+
"cli.cmd.workspace.title": "Workspace",
|
|
354
|
+
"cli.cmd.workspace.summary": "work with a local SuccApp workspace",
|
|
355
|
+
"cli.cmd.workspace.desc": "Work with a local SuccApp workspace.",
|
|
356
|
+
"cli.cmd.workspace.init.summary": "Initialize a SuccApp workspace.",
|
|
357
|
+
"cli.cmd.workspace.init.desc": "Initialize .succapp/config.json in the target workspace directory.",
|
|
358
|
+
"cli.cmd.workspace.init.server": "Initialize the workspace with this active server.",
|
|
359
|
+
"cli.cmd.workspace.init.setup": "Apply recommended workspace support files after initialization.",
|
|
360
|
+
"cli.cmd.workspace.init.active": "Active server: {0}",
|
|
361
|
+
"cli.cmd.workspace.init.alreadyActive": "Workspace is already initialized with active server: {0}. Use workspace remote add or workspace remote use to change servers.",
|
|
362
|
+
"cli.cmd.workspace.init.configBad": "Workspace config is corrupted: {0}",
|
|
363
|
+
"cli.cmd.workspace.init.initWorkspace": "Initialized workspace: {0}",
|
|
364
|
+
"cli.cmd.workspace.init.supportFiles": "Workspace support files applied.",
|
|
365
|
+
"cli.cmd.workspace.init.workspaceInit": "Workspace already initialized: {0}",
|
|
366
|
+
"cli.cmd.workspace.setup.summary": "Apply recommended workspace support files.",
|
|
367
|
+
"cli.cmd.workspace.setup.desc": "Apply SuccApp recommended settings, TypeScript support, JSON Schema support, and agent files.",
|
|
368
|
+
"cli.cmd.workspace.setup.dryRun": "Preview the setup plan without changing files.",
|
|
369
|
+
"cli.cmd.workspace.setup.clean": "Workspace setup: no changes needed.",
|
|
370
|
+
"cli.cmd.workspace.setup.dry": "Workspace setup dry run: {0} pending, {1} up to date, {2} skipped.",
|
|
371
|
+
"cli.cmd.workspace.setup.updated": "Workspace setup: {0} item(s) updated, {1} confirmation request(s).",
|
|
372
|
+
"cli.cmd.workspace.check.summary": "Check workspace consistency.",
|
|
373
|
+
"cli.cmd.workspace.check.desc": "Check workspace structure and sync state without changing files.",
|
|
374
|
+
"cli.cmd.workspace.check.only": "Run only the named workspace check.",
|
|
375
|
+
"cli.cmd.workspace.status.summary": "Show workspace sync status.",
|
|
376
|
+
"cli.cmd.workspace.status.desc": "Show workspace sync status.",
|
|
377
|
+
"cli.cmd.workspace.status.forceRefresh": "Recheck server changes instead of using cached status.",
|
|
378
|
+
"cli.cmd.workspace.status.localOnly": "Show only local workspace changes; do not check the server.",
|
|
379
|
+
"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.",
|
|
380
|
+
"cli.cmd.workspace.upgrade.summary": "Plan workspace structure migrations.",
|
|
381
|
+
"cli.cmd.workspace.upgrade.desc": "Plan SuccApp workspace structure migrations. The current implementation has no migrations.",
|
|
382
|
+
"cli.cmd.workspace.upgrade.targetVersion": "Plan migration to the target workspace structure version.",
|
|
383
|
+
"cli.cmd.workspace.upgrade.dryRun": "Preview the migration plan without changing files.",
|
|
384
|
+
"cli.cmd.workspace.upgrade.actions": "Workspace upgrade: {0} action(s). current={1}, target={2}.",
|
|
385
|
+
"cli.cmd.workspace.upgrade.noActions": "Workspace upgrade: no actions. current={0}, target={1}.",
|
|
386
|
+
"cli.cmd.workspace.pull.summary": "Pull server changes into the workspace.",
|
|
387
|
+
"cli.cmd.workspace.pull.desc": "Apply changes from the active server into the current workspace.",
|
|
388
|
+
"cli.cmd.workspace.pull.force": "Allow server changes to overwrite local changes.",
|
|
389
|
+
"cli.cmd.workspace.pull.conflicts": "Conflicts: {0}",
|
|
390
|
+
"cli.cmd.workspace.pull.oldMeta": "Old metadata files: {0}",
|
|
391
|
+
"cli.cmd.workspace.pull.pullResultUpdated": "Pull result: {0} updated, {1} deleted, {2} conflict(s)",
|
|
392
|
+
"cli.cmd.workspace.pull.upDate": "Already up to date",
|
|
393
|
+
"cli.cmd.workspace.push.summary": "Push workspace changes to the server.",
|
|
394
|
+
"cli.cmd.workspace.push.desc": "Submit local workspace changes to the active server.",
|
|
395
|
+
"cli.cmd.workspace.push.force": "Allow local changes to overwrite remote changes.",
|
|
396
|
+
"cli.cmd.workspace.push.failed": "Failed files: {0}",
|
|
397
|
+
"cli.cmd.workspace.push.kind": "Kind",
|
|
398
|
+
"cli.cmd.workspace.push.metaVersions": "Metadata version suggestions: {0} older, {1} newer",
|
|
399
|
+
"cli.cmd.workspace.push.noLocalChanges": "No local changes to push",
|
|
400
|
+
"cli.cmd.workspace.push.pushBlockedRemote": "Push blocked: {0} remote change(s).",
|
|
401
|
+
"cli.cmd.workspace.push.pushedFiles": "Pushed files: {0}",
|
|
402
|
+
"cli.cmd.workspace.push.pushResultPushed": "Push result: {0} pushed, {1} rejected, {2} failed",
|
|
403
|
+
"cli.cmd.workspace.push.targetVersion": "Target version",
|
|
404
|
+
"cli.cmd.workspace.push.version": "Current version",
|
|
405
|
+
"cli.cmd.workspace.repair.summary": "Repair workspace consistency issues.",
|
|
406
|
+
"cli.cmd.workspace.repair.desc": "Repair workspace structure and sync state issues that can be fixed automatically.",
|
|
407
|
+
"cli.cmd.workspace.repair.only": "Repair only issues from the named workspace check.",
|
|
408
|
+
"cli.cmd.workspace.repair.dryRun": "Preview the repair plan without changing files.",
|
|
409
|
+
"cli.cmd.workspace.repair.badCheck": "Invalid workspace check id: {0}",
|
|
410
|
+
"cli.cmd.workspace.repair.check": "Check",
|
|
411
|
+
"cli.cmd.workspace.repair.checkClean": "Workspace check: no problems found.",
|
|
412
|
+
"cli.cmd.workspace.repair.checkIssue": "Workspace check: {0} issue(s), {1} repairable.",
|
|
413
|
+
"cli.cmd.workspace.repair.clean": "Workspace repair: no changes needed.",
|
|
414
|
+
"cli.cmd.workspace.repair.dryRunClean": "Workspace repair dry run: no changes needed.",
|
|
415
|
+
"cli.cmd.workspace.repair.dryRunIssues": "Workspace repair dry run: {0} issue(s), {1} repairable, {2} unrepairable.",
|
|
416
|
+
"cli.cmd.workspace.repair.remotePaths": "Remote paths",
|
|
417
|
+
"cli.cmd.workspace.repair.repairable": "Repairable",
|
|
418
|
+
"cli.cmd.workspace.repair.repaired": "Workspace repair: {0} repaired, {1} unresolved.",
|
|
419
|
+
"cli.cmd.workspace.repair.repairedIssues": "Repaired issues:",
|
|
420
|
+
"cli.cmd.workspace.repair.strategy": "Strategy",
|
|
421
|
+
"cli.cmd.workspace.repair.unresolved": "Unresolved issues:",
|
|
422
|
+
"cli.cmd.workspace.proj.title": "Workspace project",
|
|
423
|
+
"cli.cmd.workspace.proj.summary": "manage workspace projects",
|
|
424
|
+
"cli.cmd.workspace.proj.desc": "Manage workspace projects.",
|
|
425
|
+
"cli.cmd.workspace.proj.list.summary": "List workspace projects.",
|
|
426
|
+
"cli.cmd.workspace.proj.list.desc": "List workspace projects.",
|
|
427
|
+
"cli.cmd.workspace.proj.clone.summary": "Clone server projects into the workspace.",
|
|
428
|
+
"cli.cmd.workspace.proj.clone.desc": "Clone projects from the active server into the current workspace.",
|
|
429
|
+
"cli.cmd.workspace.proj.clone.force": "Allow clone to overwrite existing local workspace projects.",
|
|
430
|
+
"cli.cmd.workspace.proj.clone.cloned": "Cloned projects: {0}",
|
|
431
|
+
"cli.cmd.workspace.proj.clone.oldMeta": "Old metadata files: {0}",
|
|
432
|
+
"cli.cmd.workspace.proj.clone.upgradeCommand": "Upgrade command: {0}",
|
|
433
|
+
"cli.cmd.workspace.proj.remove.summary": "Remove workspace projects.",
|
|
434
|
+
"cli.cmd.workspace.proj.remove.desc": "Remove local workspace projects and mirror baselines without deleting server projects.",
|
|
435
|
+
"cli.cmd.workspace.proj.remove.force": "Confirm removal of local project files and mirror baselines.",
|
|
436
|
+
"cli.cmd.workspace.proj.remove.removed": "Removed workspace projects: {0}",
|
|
437
|
+
"cli.cmd.workspace.remote.title": "Workspace remote",
|
|
438
|
+
"cli.cmd.workspace.remote.summary": "manage workspace remotes",
|
|
439
|
+
"cli.cmd.workspace.remote.desc": "Manage workspace remotes.",
|
|
440
|
+
"cli.cmd.workspace.remote.list.summary": "List configured servers.",
|
|
441
|
+
"cli.cmd.workspace.remote.list.desc": "List configured servers for the current workspace.",
|
|
442
|
+
"cli.cmd.workspace.remote.add.summary": "Add a server and make it active.",
|
|
443
|
+
"cli.cmd.workspace.remote.add.desc": "Add a server to the current SuccApp workspace and make it the active server.",
|
|
444
|
+
"cli.cmd.workspace.remote.add.active": "Active server: {0}",
|
|
445
|
+
"cli.cmd.workspace.remote.use.summary": "Switch the active server.",
|
|
446
|
+
"cli.cmd.workspace.remote.use.desc": "Switch the active server for the current workspace.",
|
|
447
|
+
"cli.cmd.workspace.remote.use.active": "Active server: {0}",
|
|
448
|
+
"cli.cmd.workspace.remote.setUrl.summary": "Change a configured server URL.",
|
|
449
|
+
"cli.cmd.workspace.remote.setUrl.desc": "Change a configured server URL and migrate the local mirror key.",
|
|
450
|
+
"cli.cmd.workspace.remote.setUrl.changed": "Server URL changed: {0} -> {1}",
|
|
451
|
+
"cli.cmd.workspace.remote.remove.summary": "Remove a configured server.",
|
|
452
|
+
"cli.cmd.workspace.remote.remove.desc": "Remove a server from the current workspace configuration.",
|
|
453
|
+
"cli.cmd.workspace.remote.remove.active": "Server removed: {0}\nActive server: {1}",
|
|
454
|
+
"cli.cmd.workspace.remote.remove.removed": "Server removed: {0}",
|
|
455
|
+
"cli.cmd.workspace.file.title": "Workspace file",
|
|
456
|
+
"cli.cmd.workspace.file.summary": "inspect workspace files",
|
|
457
|
+
"cli.cmd.workspace.file.desc": "Inspect workspace files.",
|
|
458
|
+
"cli.cmd.workspace.file.resolve.summary": "Resolve a workspace file path.",
|
|
459
|
+
"cli.cmd.workspace.file.resolve.desc": "Resolve local, remote, and browser URLs for a workspace file.",
|
|
460
|
+
"cli.cmd.workspace.file.resolve.url": "Only print the view or edit URL in human mode.",
|
|
461
|
+
"cli.cmd.workspace.file.resolve.badUrl": "Invalid value for --url: {0}",
|
|
462
|
+
"cli.cmd.workspace.file.resolve.editUrl": "Edit URL: {0}",
|
|
463
|
+
"cli.cmd.workspace.file.resolve.localPath": "Local path: {0}",
|
|
464
|
+
"cli.cmd.workspace.file.resolve.path": "Path: {0}",
|
|
465
|
+
"cli.cmd.workspace.file.resolve.remote": "Remote path: {0}",
|
|
466
|
+
"cli.cmd.workspace.file.resolve.viewUrl": "View URL: {0}",
|
|
467
|
+
"cli.cmd.workspace.file.open.summary": "Open the server file page.",
|
|
468
|
+
"cli.cmd.workspace.file.open.desc": "Open the server view or edit page for a workspace file.",
|
|
469
|
+
"cli.cmd.workspace.file.open.edit": "Open the server edit page.",
|
|
470
|
+
"cli.cmd.workspace.file.open.openedEdit": "Opened server edit page: {0}",
|
|
471
|
+
"cli.cmd.workspace.file.open.openedView": "Opened server view page: {0}",
|
|
472
|
+
"cli.cmd.workspace.file.show.summary": "Show file content.",
|
|
473
|
+
"cli.cmd.workspace.file.show.desc": "Show file content.",
|
|
474
|
+
"cli.cmd.workspace.file.show.source": "Read from mirror or server.",
|
|
475
|
+
"cli.cmd.workspace.file.show.revision": "Read a server revision.",
|
|
476
|
+
"cli.cmd.workspace.file.show.badRev": "Invalid value for --revision: {0}",
|
|
477
|
+
"cli.cmd.workspace.file.show.badSource": "Invalid value for --source: {0}",
|
|
478
|
+
"cli.cmd.workspace.file.show.revSource": "--revision is only supported with --source=server.",
|
|
479
|
+
"cli.cmd.workspace.file.diff.summary": "Show workspace diff against server.",
|
|
480
|
+
"cli.cmd.workspace.file.diff.desc": "Show workspace diff against server.",
|
|
481
|
+
"cli.cmd.workspace.file.diff.source": "Compare against server content.",
|
|
482
|
+
"cli.cmd.workspace.file.diff.badSource": "Invalid value for --source: {0}",
|
|
483
|
+
"cli.cmd.workspace.file.history.summary": "Show server file history.",
|
|
484
|
+
"cli.cmd.workspace.file.history.desc": "Show server-side file history for a workspace file.",
|
|
485
|
+
"cli.cmd.workspace.file.history.limit": "Limit the number of history records.",
|
|
486
|
+
"cli.cmd.workspace.file.upgrade.summary": "Upgrade old SuccApp metadata files.",
|
|
487
|
+
"cli.cmd.workspace.file.upgrade.desc": "Check or upgrade old SuccApp metadata files in local workspace projects. If no path is given, all local projects are processed.",
|
|
488
|
+
"cli.cmd.workspace.file.upgrade.check": "Check upgrade candidates without changing files.",
|
|
489
|
+
"cli.cmd.workspace.file.upgrade.cands": "Upgrade candidates: {0}",
|
|
490
|
+
"cli.cmd.workspace.file.upgrade.checkRes": "Metadata upgrade check: {0} checked, {1} candidate(s), {2} skipped, {3} failed",
|
|
491
|
+
"cli.cmd.workspace.file.upgrade.failed": "Failed files: {0}",
|
|
492
|
+
"cli.cmd.workspace.file.upgrade.itemFailed": "[{0}/{1}] failed {2}: {3}",
|
|
493
|
+
"cli.cmd.workspace.file.upgrade.itemSkipped": "[{0}/{1}] skipped {2}: {3}",
|
|
494
|
+
"cli.cmd.workspace.file.upgrade.itemUpgraded": "[{0}/{1}] upgraded {2}",
|
|
495
|
+
"cli.cmd.workspace.file.upgrade.noCands": "No metadata files need upgrade.",
|
|
496
|
+
"cli.cmd.workspace.file.upgrade.reason": "Reason",
|
|
497
|
+
"cli.cmd.workspace.file.upgrade.result": "Metadata upgrade result: {0} checked, {1} changed, {2} skipped, {3} failed",
|
|
498
|
+
"cli.cmd.workspace.file.upgrade.upgradeStart": "Upgrading metadata files...",
|
|
499
|
+
"cli.cmd.workspace.file.upgrade.upgraded": "Upgraded files: {0}",
|
|
500
|
+
"cli.cmd.workspace.lock.title": "Workspace lock",
|
|
501
|
+
"cli.cmd.workspace.lock.summary": "inspect workspace locks",
|
|
502
|
+
"cli.cmd.workspace.lock.desc": "Inspect workspace locks.",
|
|
503
|
+
"cli.cmd.workspace.lock.badScope": "Invalid workspace lock scope: {0}",
|
|
504
|
+
"cli.cmd.workspace.lock.list.summary": "List locked workspace scopes.",
|
|
505
|
+
"cli.cmd.workspace.lock.list.desc": "List scopes currently locked in the SuccApp workspace.",
|
|
506
|
+
"cli.cmd.workspace.lock.list.scope": "Scope",
|
|
507
|
+
"cli.cmd.workspace.lock.status.summary": "Show workspace lock holders.",
|
|
508
|
+
"cli.cmd.workspace.lock.status.desc": "Workspace lock status",
|
|
509
|
+
"cli.cmd.workspace.lock.status.heartbeat": "Last heartbeat",
|
|
510
|
+
"cli.cmd.workspace.lock.status.pid": "PID",
|
|
511
|
+
"cli.cmd.workspace.lock.status.scope": "Scope",
|
|
512
|
+
"cli.cmd.workspace.lock.wait.summary": "Wait until workspace locks are free.",
|
|
513
|
+
"cli.cmd.workspace.lock.wait.desc": "Wait until the requested workspace lock scopes are free.",
|
|
514
|
+
"cli.cmd.workspace.lock.wait.timeout": "Stop waiting after the given number of seconds.",
|
|
515
|
+
"cli.cmd.workspace.lock.wait.badTimeout": "Invalid value for --timeout: {0}",
|
|
516
|
+
"cli.cmd.workspace.lock.wait.locksBusy": "Workspace locks still busy after {0}s: {1}",
|
|
517
|
+
"cli.cmd.workspace.lock.wait.locksFree": "Workspace locks are free: {0}",
|
|
518
|
+
"cli.cmd.workspace.backup.title": "Workspace backup",
|
|
519
|
+
"cli.cmd.workspace.backup.summary": "inspect and clear workspace backups",
|
|
520
|
+
"cli.cmd.workspace.backup.desc": "Inspect and clear workspace backups.",
|
|
521
|
+
"cli.cmd.workspace.backup.backupPath": "Backup path",
|
|
522
|
+
"cli.cmd.workspace.backup.cleared": "Merge backup clear: {0} cleared, {1} remaining.",
|
|
523
|
+
"cli.cmd.workspace.backup.size": "Size",
|
|
524
|
+
"cli.cmd.workspace.backup.list.summary": "List saved merge backups.",
|
|
525
|
+
"cli.cmd.workspace.backup.list.desc": "List local versions saved before pull conflict handling.",
|
|
526
|
+
"cli.cmd.workspace.backup.clear.summary": "Clear saved merge backups.",
|
|
527
|
+
"cli.cmd.workspace.backup.clear.desc": "Clear local versions saved before pull conflict handling.",
|
|
528
|
+
"cli.cmd.workspace.ext.title": "Workspace extension",
|
|
529
|
+
"cli.cmd.workspace.ext.summary": "create and publish workspace extensions",
|
|
530
|
+
"cli.cmd.workspace.ext.desc": "Create and publish workspace extensions.",
|
|
531
|
+
"cli.cmd.workspace.ext.dirNamedSame": "A directory named the same already exists under sysdata/extensions/.",
|
|
532
|
+
"cli.cmd.workspace.ext.extNameMust": "Extension name must follow the pattern {0}.",
|
|
533
|
+
"cli.cmd.workspace.ext.extNameRequired": "Extension name is required.",
|
|
534
|
+
"cli.cmd.workspace.ext.invalidExtName": "Invalid extension name.",
|
|
535
|
+
"cli.cmd.workspace.ext.middleSegmentMust": "The middle segment must equal \"{0}\" (current: \"{1}\").",
|
|
536
|
+
"cli.cmd.workspace.ext.list.summary": "List local extensions.",
|
|
537
|
+
"cli.cmd.workspace.ext.list.desc": "List local extensions under the workspace sysdata project.",
|
|
538
|
+
"cli.cmd.workspace.ext.create.summary": "Create a local extension.",
|
|
539
|
+
"cli.cmd.workspace.ext.create.desc": "Create a local extension directory from a server template.",
|
|
540
|
+
"cli.cmd.workspace.ext.create.extTemplate": "Extension template not found: {0}/{1}",
|
|
541
|
+
"cli.cmd.workspace.ext.push.summary": "Push a local extension.",
|
|
542
|
+
"cli.cmd.workspace.ext.push.desc": "Push a local extension directory to the active server.",
|
|
543
|
+
"cli.cmd.workspace.ext.push.path": "Resolve the extension from a local path under sysdata/extensions.",
|
|
544
|
+
"cli.cmd.workspace.ext.push.force": "Allow local extension files to overwrite remote changes.",
|
|
545
|
+
"cli.cmd.workspace.ext.push.needNamePath": "Pass an extension name or --path=<path>.",
|
|
546
|
+
"cli.cmd.workspace.ext.push.onlyOne": "Use either <name> or --path=<path>, not both.",
|
|
547
|
+
"cli.out.common.active": "Active",
|
|
548
|
+
"cli.out.common.api": "Dev Tool API",
|
|
549
|
+
"cli.out.common.baseline": "Baseline",
|
|
550
|
+
"cli.out.common.capabilities": "Capabilities",
|
|
551
|
+
"cli.out.common.changes": "No changes.",
|
|
552
|
+
"cli.out.common.changesLocalRemote": "Changes: {0} (local {1}, remote {2}, conflicts {3})",
|
|
553
|
+
"cli.out.common.id": "ID",
|
|
554
|
+
"cli.out.common.noServers": "No servers configured.",
|
|
555
|
+
"cli.out.common.product": "Product",
|
|
556
|
+
"cli.out.common.server": "Server",
|
|
557
|
+
"cli.out.common.targetVersion": "Target version",
|
|
558
|
+
"cli.out.common.version": "Current version",
|
|
559
|
+
"cli.out.common.workspace": "Workspace",
|
|
560
|
+
"cli.out.db.exists": "Output file already exists: {0}. Use --force to overwrite.",
|
|
561
|
+
"cli.out.header.action": "Action",
|
|
562
|
+
"cli.out.header.column": "Column",
|
|
563
|
+
"cli.out.header.command": "Command",
|
|
564
|
+
"cli.out.header.comment": "Comment",
|
|
565
|
+
"cli.out.header.default": "Default",
|
|
566
|
+
"cli.out.header.description": "Description",
|
|
567
|
+
"cli.out.header.error": "Error",
|
|
568
|
+
"cli.out.header.extension": "Extension",
|
|
569
|
+
"cli.out.header.extra": "Extra",
|
|
570
|
+
"cli.out.header.field": "Field",
|
|
571
|
+
"cli.out.header.key": "Key",
|
|
572
|
+
"cli.out.header.message": "Message",
|
|
573
|
+
"cli.out.header.modified": "Modified",
|
|
574
|
+
"cli.out.header.modifier": "Modifier",
|
|
575
|
+
"cli.out.header.null": "Null",
|
|
576
|
+
"cli.out.header.path": "Path",
|
|
577
|
+
"cli.out.header.project": "Project",
|
|
578
|
+
"cli.out.header.remote": "Remote path",
|
|
579
|
+
"cli.out.header.revision": "Revision",
|
|
580
|
+
"cli.out.header.schema": "Schema",
|
|
581
|
+
"cli.out.header.source": "Source",
|
|
582
|
+
"cli.out.header.started": "Started",
|
|
583
|
+
"cli.out.header.status": "Status",
|
|
584
|
+
"cli.out.header.table": "Table",
|
|
585
|
+
"cli.out.header.type": "Type",
|
|
586
|
+
"cli.out.header.value": "Value",
|
|
587
|
+
"cli.out.header.version": "Version",
|
|
588
|
+
"cli.out.help.commandHelpRead": "Run 'succapp {0} <command> --help' to read about a specific command.",
|
|
589
|
+
"cli.out.help.commandHelpSee": "Run 'succapp <command> --help' to see command help.",
|
|
590
|
+
"cli.out.help.commands": "Commands",
|
|
591
|
+
"cli.out.help.examples": "examples:",
|
|
592
|
+
"cli.out.help.options": "options:",
|
|
593
|
+
"cli.out.help.usageHeader": "usage:",
|
|
594
|
+
"cli.out.help.usageLine": "usage: succapp {command} {usageArgs}",
|
|
595
|
+
"cli.out.human.error": "error: {0}",
|
|
596
|
+
"cli.out.human.hint": "hint: {0}",
|
|
597
|
+
"cli.out.human.info": "info: {0}",
|
|
598
|
+
"cli.out.human.seeLogs": "See logs: {0}",
|
|
599
|
+
"cli.out.human.warning": "warning: {0}",
|
|
600
|
+
"cli.out.server.file.download.exists": "Output file already exists: {0}. Use --force to overwrite.",
|
|
601
|
+
"cli.out.server.file.exists": "Output file already exists: {0}. Use --force to overwrite.",
|
|
602
|
+
"cli.out.server.file.needOutput": "Missing required option: --output=<local-file>.",
|
|
603
|
+
"cli.out.task.progressMessagePercent": "{0}: {1}%",
|
|
604
|
+
"cli.out.task.progressMessageText": "{0}: {1}",
|
|
605
|
+
"cli.out.task.progressPercent": "Progress: {0}%",
|
|
606
|
+
"cli.out.task.progressText": "Progress: {0}",
|
|
607
|
+
"cli.out.value.busy": "busy",
|
|
608
|
+
"cli.out.value.deleted": "deleted",
|
|
609
|
+
"cli.out.value.free": "free",
|
|
610
|
+
"cli.out.value.newer": "newer",
|
|
611
|
+
"cli.out.value.no": "no",
|
|
612
|
+
"cli.out.value.none": "none",
|
|
613
|
+
"cli.out.value.older": "older",
|
|
614
|
+
"cli.out.value.unknown": "UNKNOWN",
|
|
615
|
+
"cli.out.value.updated": "updated",
|
|
616
|
+
"cli.out.value.yes": "yes",
|
|
617
|
+
"cli.out.workspace.ext.createdExt": "Created extension {0}: {1}",
|
|
618
|
+
"cli.out.workspace.ext.ext": "No extensions found under {0}.",
|
|
619
|
+
"cli.out.workspace.ext.extPoint": "Extension point",
|
|
620
|
+
"cli.out.workspace.ext.extTemplates": "No extension templates found.",
|
|
621
|
+
"cli.out.workspace.ext.failed": "Failed files: {0}",
|
|
622
|
+
"cli.out.workspace.ext.kind": "Kind",
|
|
623
|
+
"cli.out.workspace.ext.metaVersions": "Metadata version suggestions: {0}",
|
|
624
|
+
"cli.out.workspace.ext.noLocalChanges": "No local changes to push for extension {0}.",
|
|
625
|
+
"cli.out.workspace.ext.pushBlockedRemote": "Push blocked: {0} remote change(s).",
|
|
626
|
+
"cli.out.workspace.ext.pushedFiles": "Pushed files: {0}",
|
|
627
|
+
"cli.out.workspace.ext.pushExtPushed": "Push extension {0}: {1} pushed, {2} rejected, {3} failed",
|
|
628
|
+
"cli.out.workspace.ext.targetVersion": "Target version",
|
|
629
|
+
"cli.out.workspace.ext.template": "Template",
|
|
630
|
+
"cli.out.workspace.ext.version": "Current version",
|
|
631
|
+
"cli.out.workspace.file.hist.empty": "No server history records",
|
|
632
|
+
"cli.out.workspace.file.history.badLimit": "Invalid value for --limit: {0}",
|
|
633
|
+
"cli.err.context.exampleCommandServer": "succapp --server=<url> {commandName}",
|
|
634
|
+
"cli.err.context.exampleCommandUrl": "succapp {commandName} <url>",
|
|
635
|
+
"cli.err.context.exampleEnvUrl": "{envName}=<url> succapp {commandName}",
|
|
636
|
+
"cli.err.context.exampleServerOpt": "pass --server=<url>",
|
|
637
|
+
"cli.err.context.exampleUrl": "pass <url>",
|
|
638
|
+
"cli.err.context.text": "set {envName}",
|
|
639
|
+
"cli.err.context.workspaceRemoteAdd": "succapp workspace remote add <url>",
|
|
640
|
+
"cli.input.accessKeyId": "access key id",
|
|
641
|
+
"cli.input.accessKeySecret": "access key secret",
|
|
642
|
+
"cli.input.activeServer": "active server",
|
|
643
|
+
"cli.input.contentSource": "content source",
|
|
644
|
+
"cli.input.credentialType": "credential type",
|
|
645
|
+
"cli.input.dataSourceConfig": "data source config",
|
|
646
|
+
"cli.input.exportTarget": "export target",
|
|
647
|
+
"cli.input.extensionName": "extension name",
|
|
648
|
+
"cli.input.extensionNameOrPath": "extension name or path",
|
|
649
|
+
"cli.input.extensionTemplate": "extension template",
|
|
650
|
+
"cli.input.inputFile": "input file",
|
|
651
|
+
"cli.input.lockScope": "lock scope",
|
|
652
|
+
"cli.input.outputFile": "output file",
|
|
653
|
+
"cli.input.password": "password",
|
|
654
|
+
"cli.input.projectName": "project name",
|
|
655
|
+
"cli.input.server": "server",
|
|
656
|
+
"cli.input.serverFilePath": "server file path",
|
|
657
|
+
"cli.input.sql": "SQL",
|
|
658
|
+
"cli.input.token": "token",
|
|
659
|
+
"cli.input.user": "user",
|
|
660
|
+
"cli.input.value": "value",
|
|
661
|
+
"cli.input.workspace": "workspace",
|
|
662
|
+
"cli.input.workspaceConfig": "workspace config",
|
|
663
|
+
"cli.input.revisionOrForce": "revision or --force",
|
|
664
|
+
"vs.cmd.config.apply.applied": "SuccApp workspace configuration applied.",
|
|
665
|
+
"vs.cmd.config.apply.succAppExisting": "SuccApp found existing TypeScript diagnostics files. Update them with the recommended config?",
|
|
666
|
+
"vs.cmd.config.apply.update": "Update",
|
|
667
|
+
"vs.cmd.config.apply.upToDate": "SuccApp workspace configuration is already up to date.",
|
|
668
|
+
"vs.cmd.misc.copyMeta.fileHaveMeta": "This file does not have a metadata ID.",
|
|
669
|
+
"vs.cmd.misc.history.changeHaveRemote": "This change does not have a remote file history.",
|
|
670
|
+
"vs.cmd.misc.history.fileHaveRemote": "This file does not have a remote metadata record.",
|
|
671
|
+
"vs.cmd.misc.history.folderServerHistory": "Folder server history diff is not supported.",
|
|
672
|
+
"vs.cmd.misc.openSource.changeHaveRemote": "This change does not have a remote file to open.",
|
|
673
|
+
"vs.cmd.misc.openSource.connectedServer": "Not connected to a server",
|
|
674
|
+
"vs.cmd.misc.openSource.fileHaveRemote": "This file does not have a remote metadata record.",
|
|
675
|
+
"vs.cmd.misc.remoteFile.changeHaveRemote": "This change does not have a remote file to open.",
|
|
676
|
+
"vs.cmd.misc.remoteFile.connectedServer": "Not connected to a server",
|
|
677
|
+
"vs.cmd.misc.remoteFile.fileHaveRemote": "This file does not have a remote metadata record.",
|
|
678
|
+
"vs.common.cannotAddingSucc": "Cannot {0} before adding a SuccBI server.",
|
|
679
|
+
"vs.common.connectContinue": "Connect to {0} to continue {1}.",
|
|
680
|
+
"vs.common.createFolder": "Create Folder",
|
|
681
|
+
"vs.common.createOrSelect": "Create or select a SuccApp workspace folder",
|
|
682
|
+
"vs.common.openFolder": "Open Folder",
|
|
683
|
+
"vs.common.saveModFile": "Save modified file(s) before {0}.",
|
|
684
|
+
"vs.common.selectSuccApp": "Select a SuccApp workspace folder",
|
|
685
|
+
"vs.common.serverNotConfigured": "Server is not configured for this workspace: {0}",
|
|
686
|
+
"vs.common.showLogs": "Show Logs",
|
|
687
|
+
"vs.common.succAppNeeds": "SuccApp needs a local workspace to save server configuration and cloned projects.",
|
|
688
|
+
"vs.cmd.server.add.cloneProjects": "Clone Projects",
|
|
689
|
+
"vs.cmd.server.add.enterSuccBi": "Enter SuccBI server URL",
|
|
690
|
+
"vs.cmd.server.add.invalidUrl": "Please enter a valid URL",
|
|
691
|
+
"vs.cmd.server.add.serverExists": "Server already exists",
|
|
692
|
+
"vs.cmd.server.add.succAppAdd": "SuccApp: Add Server",
|
|
693
|
+
"vs.cmd.server.changeUrl.action": "Change Server URL",
|
|
694
|
+
"vs.cmd.server.changeUrl.enterNewSucc": "Enter new SuccBI server URL",
|
|
695
|
+
"vs.cmd.server.changeUrl.invalidUrl": "Please enter a valid URL",
|
|
696
|
+
"vs.cmd.server.changeUrl.newServerUrl": "New server URL must be different from the current URL.",
|
|
697
|
+
"vs.cmd.server.changeUrl.noServers": "No servers configured. Please add one first.",
|
|
698
|
+
"vs.cmd.server.changeUrl.prompt": "Change server URL {0}?",
|
|
699
|
+
"vs.cmd.server.changeUrl.serverExists": "Server already exists",
|
|
700
|
+
"vs.cmd.server.changeUrl.serverUrlChanged": "Server URL changed: {0}",
|
|
701
|
+
"vs.cmd.server.changeUrl.succAppWill": "SuccApp will only update the server configuration and move the local mirror under .succapp/remote. Workspace project files and remote server projects will not be changed. You can change it back later if needed.",
|
|
702
|
+
"vs.cmd.server.connected": "Connected to {0}",
|
|
703
|
+
"vs.cmd.server.disconnect.disconnected": "Already disconnected",
|
|
704
|
+
"vs.cmd.server.disconnect.done": "Disconnected from server",
|
|
705
|
+
"vs.cmd.server.relogin.noServers": "No servers configured. Please add one first.",
|
|
706
|
+
"vs.cmd.server.remove.noServers": "No servers configured. Please add one first.",
|
|
707
|
+
"vs.cmd.server.remove.remove": "Remove",
|
|
708
|
+
"vs.cmd.server.remove.removed": "Server removed: {0}",
|
|
709
|
+
"vs.cmd.server.remove.removeServer": "Remove server {0}?",
|
|
710
|
+
"vs.cmd.server.remove.removesServerConfig": "This only removes the server configuration from this workspace. Remote server projects will not be deleted.",
|
|
711
|
+
"vs.cmd.server.switch.connectContinue": "Connect to {0} to continue {1}.",
|
|
712
|
+
"vs.cmd.server.switch.noServers": "No servers configured. Please add one first.",
|
|
713
|
+
"vs.cmd.server.switch.selectServer": "Select Server",
|
|
714
|
+
"vs.cmd.server.switch.switchServer": "switch server",
|
|
715
|
+
"vs.cmd.sync.autoPush.enable": "Enable",
|
|
716
|
+
"vs.cmd.sync.autoPush.enableAutoPush": "Enable auto push?\nAfter this is enabled, saving tracked files will automatically push changes to the server.",
|
|
717
|
+
"vs.cmd.sync.clone.clone": "Clone",
|
|
718
|
+
"vs.cmd.sync.clone.cloned": "cloned",
|
|
719
|
+
"vs.cmd.sync.clone.cloneProject": "Clone project {0}?",
|
|
720
|
+
"vs.cmd.sync.clone.cloningProjectS": "Cloning {0} project(s)...",
|
|
721
|
+
"vs.cmd.sync.clone.complete": "Clone complete: {0} project(s).",
|
|
722
|
+
"vs.cmd.sync.clone.completeOldMeta": "Clone complete: {0} project(s), {1} old metadata file(s). Upgrade before editing.",
|
|
723
|
+
"vs.cmd.sync.clone.noWorkspace": "Target workspace does not exist: {0}",
|
|
724
|
+
"vs.cmd.sync.clone.overwriteAndClone": "Overwrite and Clone",
|
|
725
|
+
"vs.cmd.sync.clone.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}",
|
|
726
|
+
"vs.cmd.sync.clone.overwriteLocalProject": "Overwrite local project(s) from server?",
|
|
727
|
+
"vs.cmd.sync.clone.projectsServer": "No projects on the server",
|
|
728
|
+
"vs.cmd.sync.clone.projectWillCloned": "Project {0} will be cloned into this workspace.",
|
|
729
|
+
"vs.cmd.sync.clone.selectProject": "Select project",
|
|
730
|
+
"vs.cmd.sync.clone.selectProjectClone": "Select a project to clone",
|
|
731
|
+
"vs.cmd.sync.clone.showLogs": "Show Logs",
|
|
732
|
+
"vs.cmd.sync.clone.upgrade": "Upgrade",
|
|
733
|
+
"vs.cmd.sync.clone.workspaceRootRequired": "workspaceRoot is required when serverUrl is specified.",
|
|
734
|
+
"vs.cmd.sync.diff.baselineEmpty": "{0} (Baseline ↔ Empty)",
|
|
735
|
+
"vs.cmd.sync.diff.baselineLocal": "{0} (Baseline ↔ Local)",
|
|
736
|
+
"vs.cmd.sync.diff.baselineRemote": "{0} (Baseline ↔ Remote)",
|
|
737
|
+
"vs.cmd.sync.diff.metaBaselineLocal": "{0} (Metadata: Baseline ↔ Local)",
|
|
738
|
+
"vs.cmd.sync.diff.metaBaselineRemote": "{0} (Metadata: Baseline ↔ Remote)",
|
|
739
|
+
"vs.cmd.sync.discard.allPrompt": "Discard all local changes?",
|
|
740
|
+
"vs.cmd.sync.discard.discardLocalChange": "Discard {0} Local Change(s)",
|
|
741
|
+
"vs.cmd.sync.discard.moreFiles": "... and {0} more file(s)",
|
|
742
|
+
"vs.cmd.sync.discard.overwriteFiles": "This will overwrite or delete local files:\n{0}",
|
|
743
|
+
"vs.cmd.sync.discard.overwriteWorkspaces": "This will overwrite or delete local files in these workspace(s):\n{0}",
|
|
744
|
+
"vs.cmd.sync.discard.progress": "Discarding changes...",
|
|
745
|
+
"vs.cmd.sync.discard.prompt": "Discard local changes?",
|
|
746
|
+
"vs.cmd.sync.discard.selectFiles": "Select one or more files from the Changes view.",
|
|
747
|
+
"vs.cmd.sync.pull.changePulled": "This change was not pulled.",
|
|
748
|
+
"vs.cmd.sync.pull.mayOverwriteLocal": "This may overwrite local changes:\n{0}",
|
|
749
|
+
"vs.cmd.sync.pull.moreFiles": "... and {0} more file(s)",
|
|
750
|
+
"vs.cmd.sync.pull.progress": "Pulling...",
|
|
751
|
+
"vs.cmd.sync.pull.pullServerVersion": "Pull server version for selected file(s)?",
|
|
752
|
+
"vs.cmd.sync.pull.selectFiles": "Select one or more files from the Changes view.",
|
|
753
|
+
"vs.cmd.sync.push.addedRemotely": "was added remotely",
|
|
754
|
+
"vs.cmd.sync.push.at": "at {0}",
|
|
755
|
+
"vs.cmd.sync.push.blocked": "Push blocked by remote change(s)",
|
|
756
|
+
"vs.cmd.sync.push.blockedCount": "Push blocked: {0} remote change(s).",
|
|
757
|
+
"vs.cmd.sync.push.by": "by {0}",
|
|
758
|
+
"vs.cmd.sync.push.byAt": "by {0} at {1}",
|
|
759
|
+
"vs.cmd.sync.push.content": "(content)",
|
|
760
|
+
"vs.cmd.sync.push.contentAndMeta": "(content and metadata)",
|
|
761
|
+
"vs.cmd.sync.push.deletedRemotely": "was deleted remotely",
|
|
762
|
+
"vs.cmd.sync.push.meta": "(metadata)",
|
|
763
|
+
"vs.cmd.sync.push.mixedMetaVersions": "{0} pushed metadata file(s) use older content versions; {1} use newer versions than this server.",
|
|
764
|
+
"vs.cmd.sync.push.modRemotely": "was modified remotely",
|
|
765
|
+
"vs.cmd.sync.push.moreFiles": "... and {0} more file(s)",
|
|
766
|
+
"vs.cmd.sync.push.moreRemote": "... and {0} more remote change(s)",
|
|
767
|
+
"vs.cmd.sync.push.newMetaVersions": "{0} pushed metadata file(s) use newer content versions than this server. Verify compatibility.",
|
|
768
|
+
"vs.cmd.sync.push.noLocalChanges": "No local changes to push",
|
|
769
|
+
"vs.cmd.sync.push.oldMetaVersions": "{0} pushed metadata file(s) use older content versions. Upgrade is recommended.",
|
|
770
|
+
"vs.cmd.sync.push.progress": "Pushing...",
|
|
771
|
+
"vs.cmd.sync.push.pushedBlockedFailed": "{0} pushed, {1} blocked, {2} failed",
|
|
772
|
+
"vs.cmd.sync.push.pushFileS": "Push {0} file(s) to the server?",
|
|
773
|
+
"vs.cmd.sync.push.renamedOrMoved": "was renamed or moved remotely",
|
|
774
|
+
"vs.cmd.sync.push.selectFiles": "Select one or more files from the Changes view.",
|
|
775
|
+
"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.",
|
|
776
|
+
"vs.cmd.sync.push.showLogs": "Show Logs",
|
|
777
|
+
"vs.cmd.sync.push.successPushedFile": "Successfully pushed {0} file(s)",
|
|
778
|
+
"vs.cmd.sync.refresh.progress": "Refreshing changes...",
|
|
779
|
+
"vs.cmd.sync.removeProject.confirm": "Remove local project(s)?",
|
|
780
|
+
"vs.cmd.sync.removeProject.empty": "No local projects to remove",
|
|
781
|
+
"vs.cmd.sync.removeProject.localProjectS": "{0} local project(s) removed",
|
|
782
|
+
"vs.cmd.sync.removeProject.progress": "Removing {0} local project(s)...",
|
|
783
|
+
"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}",
|
|
784
|
+
"vs.cmd.sync.removeProject.select": "Select local project to remove",
|
|
785
|
+
"vs.cmd.sync.removeProject.selectProject": "Select project",
|
|
786
|
+
"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.",
|
|
787
|
+
"vs.cmd.sync.repair.checking": "Checking workspace",
|
|
788
|
+
"vs.cmd.sync.repair.complete": "Workspace repair complete: {0} issue(s) repaired.",
|
|
789
|
+
"vs.cmd.sync.repair.completeClean": "Workspace repair complete: no changes needed.",
|
|
790
|
+
"vs.cmd.sync.repair.fetched": "Workspace repair fetched from the current server, but local baselines are still missing. See logs for details.",
|
|
791
|
+
"vs.cmd.sync.repair.finished": "Workspace repair finished: {0} repaired, {1} unresolved. See logs for details.",
|
|
792
|
+
"vs.cmd.sync.repair.ifServerConnected": "If the server is not connected, connect or re-login first, then repair again.",
|
|
793
|
+
"vs.cmd.sync.repair.moreFiles": "...and {0} more issue(s).",
|
|
794
|
+
"vs.cmd.sync.repair.progress": "Repairing workspace",
|
|
795
|
+
"vs.cmd.sync.repair.repairRefreshesLocal": "Current repair only refreshes local mirror baselines and does not overwrite workspace files.",
|
|
796
|
+
"vs.cmd.sync.repair.repairWorkspace": "Repair Workspace",
|
|
797
|
+
"vs.cmd.sync.repair.repairWorkspaceIssue": "Repair {0} workspace issue(s)?",
|
|
798
|
+
"vs.cmd.sync.repair.showLogs": "Show Logs",
|
|
799
|
+
"vs.cmd.sync.repair.workspaceFsckComplete": "Workspace fsck complete: no problems found.",
|
|
800
|
+
"vs.cmd.sync.repair.workspaceFsckIssue": "Workspace fsck found {0} issue(s). See logs for details.",
|
|
801
|
+
"vs.cmd.sync.resetProject.confirm": "Reset local project from server?",
|
|
802
|
+
"vs.cmd.sync.resetProject.empty": "No local projects to reset",
|
|
803
|
+
"vs.cmd.sync.resetProject.noWorkspace": "Target workspace does not exist: {0}",
|
|
804
|
+
"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}",
|
|
805
|
+
"vs.cmd.sync.resetProject.progress": "Resetting {0} project(s)...",
|
|
806
|
+
"vs.cmd.sync.resetProject.resetProject": "Reset Project",
|
|
807
|
+
"vs.cmd.sync.upgradeMeta.action": "Upgrade metadata",
|
|
808
|
+
"vs.cmd.sync.upgradeMeta.done": "Metadata upgraded in the local workspace. Remote server data was not changed.",
|
|
809
|
+
"vs.cmd.sync.upgradeMeta.empty": "No upgradeable metadata files found.",
|
|
810
|
+
"vs.cmd.sync.upgradeMeta.failed": "Metadata upgrade failed: {0}",
|
|
811
|
+
"vs.cmd.sync.upgradeMeta.failedResult": "Metadata upgrade finished: {0} changed, {1} failed, {2} checked.",
|
|
812
|
+
"vs.cmd.sync.upgradeMeta.fileMetaVersion": "File metadata version is newer than the current server version.",
|
|
813
|
+
"vs.cmd.sync.upgradeMeta.localOnly": "This upgrade only modifies files in your local workspace. It does not change data on the remote server.",
|
|
814
|
+
"vs.cmd.sync.upgradeMeta.metaTypeSupport": "This metadata type does not support content upgrade.",
|
|
815
|
+
"vs.cmd.sync.upgradeMeta.metaUpDate": "Metadata is already up to date.",
|
|
816
|
+
"vs.cmd.sync.upgradeMeta.noFile": "No active file to upgrade.",
|
|
817
|
+
"vs.cmd.sync.upgradeMeta.result": "Metadata upgrade finished: {0} changed, {1} checked.",
|
|
818
|
+
"vs.cmd.sync.upgradeMeta.scan": "Scan metadata files",
|
|
819
|
+
"vs.cmd.sync.upgradeMeta.upgrade": "Upgrade",
|
|
820
|
+
"vs.cmd.sync.upgradeMeta.upgradeMetaFile": "Upgrade {0} metadata file(s) under this folder?",
|
|
821
|
+
"vs.cmd.ext.create.cannotCreateExt": "Cannot create an extension because the sysdata project is not cloned in this workspace.",
|
|
822
|
+
"vs.cmd.ext.create.createdExt": "Created extension {0}.",
|
|
823
|
+
"vs.cmd.ext.create.creatingExt": "Creating extension {0}",
|
|
824
|
+
"vs.cmd.ext.create.dirNamedSame": "A directory named the same already exists under sysdata/extensions/.",
|
|
825
|
+
"vs.cmd.ext.create.enterNewExt": "Enter the New Extension Name",
|
|
826
|
+
"vs.cmd.ext.create.extNameMust": "Extension name must follow the pattern {0}.",
|
|
827
|
+
"vs.cmd.ext.create.extNameRequired": "Extension name is required.",
|
|
828
|
+
"vs.cmd.ext.create.invalidExtName": "Invalid extension name.",
|
|
829
|
+
"vs.cmd.ext.create.middleSegmentMust": "The middle segment must equal \"{0}\" (current: \"{1}\").",
|
|
830
|
+
"vs.cmd.ext.create.patternMiddleSegment": "Use the {0}-{1}-{2} pattern. The middle segment must equal \"{3}\".",
|
|
831
|
+
"vs.cmd.ext.create.pickExtPoint": "Pick the extension point this template targets",
|
|
832
|
+
"vs.cmd.ext.create.pickTemplateScaffold": "Pick a template to scaffold the new extension",
|
|
833
|
+
"vs.cmd.ext.create.selectExtPoint": "Select Extension Point",
|
|
834
|
+
"vs.cmd.ext.create.selectTemplate": "Select Template for {0}",
|
|
835
|
+
"vs.cmd.ext.create.templateS": "{0} template(s)",
|
|
836
|
+
"vs.cmd.ext.push.ext": "No extensions found under {0}.",
|
|
837
|
+
"vs.cmd.ext.push.pickExtDir": "Pick the extension directory to push to the server",
|
|
838
|
+
"vs.cmd.ext.push.pushExtComplete": "Push extension complete: {0} pushed.",
|
|
839
|
+
"vs.cmd.ext.push.pushExtFinished": "Push extension finished with issues: {0} pushed, {1} rejected, {2} failed.",
|
|
840
|
+
"vs.cmd.ext.push.pushingExt": "Pushing extension {0}",
|
|
841
|
+
"vs.cmd.ext.push.selectExtPush": "Select Extension to Push",
|
|
842
|
+
"vs.view.changes.backup": "No backup found for {0}",
|
|
843
|
+
"vs.view.changes.localAdded": "Local added",
|
|
844
|
+
"vs.view.changes.localChanges": "Local Changes",
|
|
845
|
+
"vs.view.changes.localDeleted": "Local deleted",
|
|
846
|
+
"vs.view.changes.localMetaChanged": "Local metadata changed",
|
|
847
|
+
"vs.view.changes.localMod": "Local modified",
|
|
848
|
+
"vs.view.changes.localRemote": "{0} local, {1} remote",
|
|
849
|
+
"vs.view.changes.localRenamedOr": "Local renamed or moved",
|
|
850
|
+
"vs.view.changes.localUnsyncedChanges": "Local: unsynced changes exist",
|
|
851
|
+
"vs.view.changes.metaId": "Metadata ID: {0}",
|
|
852
|
+
"vs.view.changes.mod": "Modified at: {0}",
|
|
853
|
+
"vs.view.changes.modifier": "Modifier: {0}",
|
|
854
|
+
"vs.view.changes.openFile": "Open File",
|
|
855
|
+
"vs.view.changes.path": "Path: {0}",
|
|
856
|
+
"vs.view.changes.previousPath": "Previous path: {0}",
|
|
857
|
+
"vs.view.changes.refreshingChanges": "Refreshing changes...",
|
|
858
|
+
"vs.view.changes.remoteAdded": "Remote added",
|
|
859
|
+
"vs.view.changes.remoteChanges": "Remote Changes",
|
|
860
|
+
"vs.view.changes.remoteDeleted": "Remote deleted",
|
|
861
|
+
"vs.view.changes.remoteMetaChanged": "Remote metadata changed",
|
|
862
|
+
"vs.view.changes.remoteMod": "Remote modified",
|
|
863
|
+
"vs.view.changes.remoteRenamedOr": "Remote renamed or moved",
|
|
864
|
+
"vs.view.changes.remoteUnpulledChanges": "Remote: unpulled changes exist",
|
|
865
|
+
"vs.view.changes.restoreLocal": "Restore Local Version",
|
|
866
|
+
"vs.view.changes.restorePrompt": "Restore local version?",
|
|
867
|
+
"vs.view.changes.serverLoginList": "Current server login cannot confirm this project. It may be the wrong server, wrong user, missing permissions, a same-name project with a different ID, a renamed project, or a deleted project.",
|
|
868
|
+
"vs.view.changes.willOverwriteWorkspace": "This will overwrite the current workspace file with the backed up local version:\n{0}",
|
|
869
|
+
"vs.view.decor.unavailable": "Remote project unavailable",
|
|
870
|
+
"vs.view.decorations.added": "Added",
|
|
871
|
+
"vs.view.decorations.changes": "Changes",
|
|
872
|
+
"vs.view.decorations.cloned": "cloned",
|
|
873
|
+
"vs.view.decorations.conflict": "Conflict",
|
|
874
|
+
"vs.view.decorations.connected": "connected",
|
|
875
|
+
"vs.view.decorations.deleted": "Deleted",
|
|
876
|
+
"vs.view.decorations.metaChanged": "Metadata changed",
|
|
877
|
+
"vs.view.decorations.mod": "Modified",
|
|
878
|
+
"vs.view.decorations.renamed": "Renamed",
|
|
879
|
+
"vs.view.history.empty": "No server history records",
|
|
880
|
+
"vs.view.history.fileSelected": "No file selected",
|
|
881
|
+
"vs.view.history.path": "Path: {0}",
|
|
882
|
+
"vs.view.history.previousServerVersion": "No previous server version to compare.",
|
|
883
|
+
"vs.view.history.remoteFileExist": "Remote file does not exist",
|
|
884
|
+
"vs.view.history.rev": "Revision: {0}",
|
|
885
|
+
"vs.view.history.revLower": "revision {0}",
|
|
886
|
+
"vs.view.history.showServerHistory": "Use Show Server History on a file",
|
|
887
|
+
"vs.view.history.text": "{0}: {1} -> {2}",
|
|
888
|
+
"vs.view.history.unknownRev": "unknown revision",
|
|
889
|
+
"vs.view.history.unknownTime": "(unknown time)",
|
|
890
|
+
"vs.view.history.workspaceCompare": "{0}: {1} -> Workspace",
|
|
891
|
+
"vs.view.history.workspaceNotFound": "Workspace not found: {0}",
|
|
892
|
+
"vs.view.servers.addServerCreate": "Use Add Server to create one",
|
|
893
|
+
"vs.view.servers.cloned": "cloned",
|
|
894
|
+
"vs.view.servers.connectBrowseServer": "Connect to browse this server",
|
|
895
|
+
"vs.view.servers.connected": "connected",
|
|
896
|
+
"vs.view.servers.connectServer": "Connect Server",
|
|
897
|
+
"vs.view.servers.disconnected": "disconnected",
|
|
898
|
+
"vs.view.servers.failedLoadProjects": "Failed to load projects",
|
|
899
|
+
"vs.view.servers.failedLoadRemote": "Failed to load remote files",
|
|
900
|
+
"vs.view.servers.noServers": "No servers configured",
|
|
901
|
+
"vs.view.servers.openServerSource": "Open Server Source",
|
|
902
|
+
"vs.ui.activation.succAppActivation": "SuccApp activation failed: {0}",
|
|
903
|
+
"vs.ui.error.retry": "Retry",
|
|
904
|
+
"vs.ui.error.showLogs": "Show Logs",
|
|
905
|
+
"vs.ui.error.unknownErrorOccurred": "An unknown error occurred",
|
|
906
|
+
"vs.ui.login.login": "Login to {0}",
|
|
907
|
+
"vs.ui.login.pat": "Personal Access Token",
|
|
908
|
+
"vs.ui.login.patRequired": "Enter a Personal Access Token.",
|
|
909
|
+
"vs.ui.remote.remoteServerFiles": "Remote server files are read-only in the Servers view. Use sync commands to edit local workspace files.",
|
|
910
|
+
"vs.ui.status.clickReconnectOr": "Click to reconnect or switch servers",
|
|
911
|
+
"vs.ui.status.clickSwitchServers": "Click to switch servers",
|
|
912
|
+
"vs.ui.status.initializingSuccBi": "Initializing SuccBI connection state",
|
|
913
|
+
"vs.ui.status.succBiDisconnected": "SuccBI: Disconnected",
|
|
914
|
+
"vs.ui.status.succBiInitializing": "SuccBI: Initializing",
|
|
915
|
+
"vs.ui.status.switchServer": "Switch Server",
|
|
916
|
+
"vs.ui.vfs.remoteServerConnected": "Remote server is not connected: {0}.",
|
|
917
|
+
"vs.ui.vfs.remoteServerFiles": "Remote server files are read-only: {0}. Clone the project and sync local changes instead.",
|
|
918
|
+
"vs.ui.vfs.serverProvideAtomic": "The server does not provide an atomic rename API. Renaming via mount mode is not supported.",
|
|
919
|
+
"vs.ui.vfs.serverProvideCreate": "The server does not provide a create directory API. Please create directories in the designer or sync mode.",
|
|
920
|
+
"vs.ui.vfs.serverProvideVersioned": "The server does not provide a versioned delete API. Please delete files in sync mode.",
|
|
921
|
+
"vs.ui.vfs.workspaceBaselineAvailable": "No workspace baseline is available for {0}/{1}.",
|
|
922
|
+
"vs.ui.vfs.workspaceConfigRemote": "No workspace is configured for remote server {0}.",
|
|
923
|
+
"vs.ui.workspaceProblem.baseline": "SuccApp detected an incomplete local sync baseline. Some changes may be hidden or inaccurate.",
|
|
924
|
+
"vs.ui.workspaceProblem.missingBaseline": "SuccApp detected a missing local sync baseline. Some changes may be hidden or inaccurate.",
|
|
925
|
+
"vs.ui.workspaceProblem.showLogs": "Show Logs",
|
|
926
|
+
"vs.ui.workspaceProblem.staleBaseline": "SuccApp detected a stale local sync baseline. See logs for details before changing the workspace.",
|
|
927
|
+
"vs.ui.workspaceProblem.syncProblem": "SuccApp detected a workspace sync problem. See logs for details.",
|
|
928
|
+
"vs.cmd.title.addServer": "Add Server",
|
|
929
|
+
"vs.cmd.title.switchServer": "Switch Server",
|
|
930
|
+
"vs.cmd.title.relogin": "Re-login",
|
|
931
|
+
"vs.cmd.title.disconnectServer": "Disconnect Server",
|
|
932
|
+
"vs.cmd.title.removeServer": "Remove Server",
|
|
933
|
+
"vs.cmd.title.changeServerUrl": "Change Server URL",
|
|
934
|
+
"vs.cmd.title.openServerConfig": "Open Server Config",
|
|
935
|
+
"vs.cmd.title.cloneProject": "Clone Project",
|
|
936
|
+
"vs.cmd.title.removeProject": "Remove Local Project",
|
|
937
|
+
"vs.cmd.title.pullChanges": "Pull Changes",
|
|
938
|
+
"vs.cmd.title.pushChanges": "Push Changes",
|
|
939
|
+
"vs.cmd.title.pushCurrentFile": "Push Current File",
|
|
940
|
+
"vs.cmd.title.meta.upgradeFile": "Upgrade Metadata File",
|
|
941
|
+
"vs.cmd.title.refreshSyncStatus": "Rescan Sync Changes",
|
|
942
|
+
"vs.cmd.title.workspace.fsck": "Workspace Fsck",
|
|
943
|
+
"vs.cmd.title.workspace.repair": "Workspace Repair",
|
|
944
|
+
"vs.cmd.title.enableAutoPush": "Enable Auto Push",
|
|
945
|
+
"vs.cmd.title.disableAutoPush": "Disable Auto Push",
|
|
946
|
+
"vs.cmd.title.diffWithRemote": "Compare with Server",
|
|
947
|
+
"vs.cmd.title.configureSyncIgnore": "Configure Sync Ignore Rules",
|
|
948
|
+
"vs.cmd.title.applyWorkspaceConfiguration": "Apply Workspace Configuration",
|
|
949
|
+
"vs.cmd.title.showLogs": "Show Logs",
|
|
950
|
+
"vs.cmd.title.createExtension": "Create Extension from Template",
|
|
951
|
+
"vs.cmd.title.pushExtension": "Push Extension to Server",
|
|
952
|
+
"vs.cmd.title.pushFile": "Push to Server",
|
|
953
|
+
"vs.cmd.title.pullFile": "Pull from Server",
|
|
954
|
+
"vs.cmd.title.discardChanges": "Discard Local Changes",
|
|
955
|
+
"vs.cmd.title.copyMetaPath": "Copy Metadata Path",
|
|
956
|
+
"vs.cmd.title.copyMetaId": "Copy Metadata ID",
|
|
957
|
+
"vs.cmd.title.openRemoteView": "Open Server Page",
|
|
958
|
+
"vs.cmd.title.openRemoteEdit": "Open Server Edit Page",
|
|
959
|
+
"vs.cmd.title.views.refreshServers": "Refresh Servers",
|
|
960
|
+
"vs.cmd.title.views.refreshChanges": "Refresh Changes",
|
|
961
|
+
"vs.cmd.title.views.pushChanges": "Push Changes",
|
|
962
|
+
"vs.cmd.title.views.pullChanges": "Pull Changes",
|
|
963
|
+
"vs.cmd.title.views.discardChanges": "Discard Local Changes",
|
|
964
|
+
"vs.cmd.title.views.toggleChangesViewMode": "Toggle Tree/List View",
|
|
965
|
+
"vs.cmd.title.views.connectServer": "Connect Server",
|
|
966
|
+
"vs.cmd.title.views.removeServer": "Remove Server",
|
|
967
|
+
"vs.cmd.title.views.changeServerUrl": "Change Server URL",
|
|
968
|
+
"vs.cmd.title.views.cloneProject": "Clone Project",
|
|
969
|
+
"vs.cmd.title.views.openRemoteFile": "Open Server Source",
|
|
970
|
+
"vs.cmd.title.views.loadFileHistory": "Load File History",
|
|
971
|
+
"vs.cmd.title.views.refreshFileHistory": "Refresh File History",
|
|
972
|
+
"vs.cmd.title.views.compareHistoryWithPrevious": "Compare with Previous Version",
|
|
973
|
+
"vs.cmd.title.views.compareHistoryWithWorkspace": "Compare with Workspace",
|
|
974
|
+
"vs.cmd.title.views.diffChange": "Open File",
|
|
975
|
+
"vs.cmd.title.views.pushChange": "Push to Server",
|
|
976
|
+
"vs.cmd.title.views.pullChange": "Pull from Server",
|
|
977
|
+
"vs.cmd.title.views.discardChange": "Discard Local Changes",
|
|
978
|
+
"vs.cmd.title.views.mergeChange": "Merge Changes",
|
|
979
|
+
"vs.cmd.title.views.acceptRemoteChange": "Use Server Version",
|
|
980
|
+
"vs.cmd.title.views.restoreLocalChange": "Restore Local Version",
|
|
981
|
+
"vs.cmd.title.openServerSource": "Open Server Source",
|
|
982
|
+
"vs.cmd.title.showServerHistory": "Show Server History",
|
|
983
|
+
"vs.cmd.title.views.resetProjectFromServer": "Reset Local Project from Server"
|
|
984
|
+
}
|