@uipath/packager-tool-workflowcompiler-browser 0.0.29

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.
@@ -0,0 +1,7 @@
1
+ /**
2
+ * i18n module for tool-workflowcompiler-browser package.
3
+ * Registers tool-workflowcompiler-browser-specific translations.
4
+ */
5
+ import { en } from "./locales/en.js";
6
+ export type { TranslationKeys } from "./locales/en.js";
7
+ export { en };
@@ -0,0 +1,40 @@
1
+ /**
2
+ * English translations for tool-workflowcompiler-browser package.
3
+ * These translations are registered alongside core translations via I18nManager.
4
+ */
5
+ export declare const en: {
6
+ readonly toolWorkflowCompilerBrowser: {
7
+ readonly info: {
8
+ readonly startingRemotePackAgent: "Starting remote pack agent for {count} project(s): {paths}";
9
+ readonly connectingToHub: "Connecting to SignalR hub: {url}";
10
+ readonly remoteAgentStartedExecution: "Remote agent started execution";
11
+ readonly downloadingArchive: "Downloading pack result archive from bucket {bucketId}";
12
+ readonly extractingArchive: "Extracting archive ({size} bytes) to {path}";
13
+ readonly distributingPackages: "Distributing packages for {count} project(s)";
14
+ readonly cleaningUpTempDir: "Cleaning up temporary directory {path}";
15
+ readonly deletingBucket: "Deleting temporary storage bucket {bucketId}";
16
+ readonly copyingFiles: "Copying {count} file(s) for project {designId} to {path}";
17
+ };
18
+ readonly errors: {
19
+ readonly missingConnectionInfo: "Missing connection info (cloudUrl, accessToken, or folderId)";
20
+ readonly signalRConnectionFailed: "Failed to connect to SignalR hub";
21
+ readonly hubConnectionFailed: "Failed to connect to SignalR hub at {url}: {message}";
22
+ readonly packSucceededNoBucket: "Pack succeeded but no BucketId was returned";
23
+ readonly packAgentFailed: "Pack agent failed with status {status} (code {errorCode})";
24
+ readonly noResultForProject: "No result for project";
25
+ readonly beginSessionFailed: "BeginSession failed ({status}): {errorText}";
26
+ readonly hubConnectionClosed: "Hub connection closed unexpectedly";
27
+ readonly packAgentDisconnected: "Pack agent disconnected unexpectedly";
28
+ readonly deleteBucketFailed: "Unable to delete temporary storage bucket on Orchestrator: {statusText}";
29
+ readonly cleanupBucketFailed: "Unable to cleanup remote bucket {bucketId}: {message}";
30
+ readonly getBucketUriFailed: "Failed to get bucket read URI ({status}): {errorText}";
31
+ readonly downloadArchiveFailed: "Failed to download archive from bucket ({status}): {statusText}";
32
+ readonly noMatchingProject: "No matching project found for path: {projectPath}";
33
+ readonly noOutputForProject: "No output found for project {designId}";
34
+ readonly distributePackagesFailed: "Failed to distribute packages for {designId}: {message}";
35
+ readonly sessionTimeout: "Session timed out waiting for projects: received {received} of {expected} expected projects";
36
+ };
37
+ };
38
+ };
39
+ /** @public */
40
+ export type TranslationKeys = typeof en;
@@ -0,0 +1 @@
1
+ import "./i18n/index.js";