@uipath/solutionpackager-tool-core 0.0.26
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 +308 -0
- package/dist/filesystem/file-system.d.ts +1 -0
- package/dist/filesystem/file-system.js +0 -0
- package/dist/filesystem/index.d.ts +5 -0
- package/dist/filesystem/index.js +3 -0
- package/dist/filesystem/path.d.ts +53 -0
- package/dist/filesystem/path.js +47 -0
- package/dist/filesystem/temporary-storage-service.d.ts +31 -0
- package/dist/filesystem/temporary-storage-service.js +46 -0
- package/dist/filesystem/zip-service.d.ts +25 -0
- package/dist/filesystem/zip-service.js +41 -0
- package/dist/i18n/i18n-manager.d.ts +128 -0
- package/dist/i18n/i18n-manager.js +104 -0
- package/dist/i18n/index.d.ts +15 -0
- package/dist/i18n/index.js +34 -0
- package/dist/i18n/locales/de.d.ts +37 -0
- package/dist/i18n/locales/de.js +38 -0
- package/dist/i18n/locales/en.d.ts +43 -0
- package/dist/i18n/locales/en.js +38 -0
- package/dist/i18n/locales/es-MX.d.ts +37 -0
- package/dist/i18n/locales/es-MX.js +38 -0
- package/dist/i18n/locales/es.d.ts +37 -0
- package/dist/i18n/locales/es.js +38 -0
- package/dist/i18n/locales/fr.d.ts +37 -0
- package/dist/i18n/locales/fr.js +38 -0
- package/dist/i18n/locales/ja.d.ts +37 -0
- package/dist/i18n/locales/ja.js +38 -0
- package/dist/i18n/locales/ko.d.ts +37 -0
- package/dist/i18n/locales/ko.js +38 -0
- package/dist/i18n/locales/pt-BR.d.ts +37 -0
- package/dist/i18n/locales/pt-BR.js +38 -0
- package/dist/i18n/locales/pt.d.ts +37 -0
- package/dist/i18n/locales/pt.js +38 -0
- package/dist/i18n/locales/ro.d.ts +37 -0
- package/dist/i18n/locales/ro.js +38 -0
- package/dist/i18n/locales/ru.d.ts +37 -0
- package/dist/i18n/locales/ru.js +38 -0
- package/dist/i18n/locales/tr.d.ts +37 -0
- package/dist/i18n/locales/tr.js +38 -0
- package/dist/i18n/locales/zh-CN.d.ts +37 -0
- package/dist/i18n/locales/zh-CN.js +38 -0
- package/dist/i18n/locales/zh-TW.d.ts +37 -0
- package/dist/i18n/locales/zh-TW.js +38 -0
- package/dist/i18n/locales/zu.d.ts +37 -0
- package/dist/i18n/locales/zu.js +38 -0
- package/dist/i18n/translation-service.d.ts +61 -0
- package/dist/i18n/translation-service.js +29 -0
- package/dist/i18n/types.d.ts +61 -0
- package/dist/i18n/types.js +20 -0
- package/dist/index.d.ts +5 -0
- package/dist/index.js +5 -0
- package/dist/models/build-configuration.d.ts +7 -0
- package/dist/models/build-configuration.js +6 -0
- package/dist/models/connection-info.d.ts +26 -0
- package/dist/models/connection-info.js +9 -0
- package/dist/models/index.d.ts +18 -0
- package/dist/models/index.js +8 -0
- package/dist/models/log-message.d.ts +28 -0
- package/dist/models/log-message.js +48 -0
- package/dist/models/nuget-constants.d.ts +34 -0
- package/dist/models/nuget-constants.js +10 -0
- package/dist/models/nuget-feed-model.d.ts +25 -0
- package/dist/models/nuget-feed-model.js +0 -0
- package/dist/models/nuget-package-info.d.ts +63 -0
- package/dist/models/nuget-package-info.js +0 -0
- package/dist/models/package-info.d.ts +29 -0
- package/dist/models/package-info.js +0 -0
- package/dist/models/project-options.d.ts +126 -0
- package/dist/models/project-options.js +7 -0
- package/dist/models/project-type.d.ts +21 -0
- package/dist/models/project-type.js +16 -0
- package/dist/models/solution-options.d.ts +72 -0
- package/dist/models/solution-options.js +0 -0
- package/dist/models/target-frameworks.d.ts +7 -0
- package/dist/models/target-frameworks.js +6 -0
- package/dist/models/tool-error-code.d.ts +18 -0
- package/dist/models/tool-error-code.js +7 -0
- package/dist/models/tool-result.d.ts +31 -0
- package/dist/models/tool-result.js +21 -0
- package/dist/models/uipath-project.d.ts +26 -0
- package/dist/models/uipath-project.js +0 -0
- package/dist/models/uipath-solution.d.ts +14 -0
- package/dist/models/uipath-solution.js +0 -0
- package/dist/package-descriptor/entry-points-file-model.d.ts +26 -0
- package/dist/package-descriptor/entry-points-file-model.js +0 -0
- package/dist/package-descriptor/index.d.ts +5 -0
- package/dist/package-descriptor/index.js +1 -0
- package/dist/package-descriptor/operate-file-model.d.ts +38 -0
- package/dist/package-descriptor/operate-file-model.js +0 -0
- package/dist/package-descriptor/package-descriptor-file-model.d.ts +12 -0
- package/dist/package-descriptor/package-descriptor-file-model.js +0 -0
- package/dist/package-descriptor/project-bindings-file-model.d.ts +82 -0
- package/dist/package-descriptor/project-bindings-file-model.js +7 -0
- package/dist/services/index.d.ts +10 -0
- package/dist/services/index.js +4 -0
- package/dist/services/nuget-packager.d.ts +39 -0
- package/dist/services/nuget-packager.js +105 -0
- package/dist/services/project-operation-context.d.ts +37 -0
- package/dist/services/project-operation-context.js +0 -0
- package/dist/services/project-tool-factory.d.ts +21 -0
- package/dist/services/project-tool-factory.js +0 -0
- package/dist/services/project-tool.d.ts +32 -0
- package/dist/services/project-tool.js +27 -0
- package/dist/services/solution-tool-factory.d.ts +14 -0
- package/dist/services/solution-tool-factory.js +0 -0
- package/dist/services/solution-tool.d.ts +32 -0
- package/dist/services/solution-tool.js +27 -0
- package/dist/services/tool-logger.d.ts +44 -0
- package/dist/services/tool-logger.js +0 -0
- package/dist/services/tools-factory-repository.d.ts +84 -0
- package/dist/services/tools-factory-repository.js +34 -0
- package/package.json +45 -0
|
@@ -0,0 +1,37 @@
|
|
|
1
|
+
export declare const ja: {
|
|
2
|
+
toolCore: {
|
|
3
|
+
errors: {
|
|
4
|
+
internal: string;
|
|
5
|
+
fileNotFound: string;
|
|
6
|
+
fileReadFailed: string;
|
|
7
|
+
fileWriteFailed: string;
|
|
8
|
+
directoryNotFound: string;
|
|
9
|
+
invalidPath: string;
|
|
10
|
+
operationCanceled: string;
|
|
11
|
+
invalidParameter: string;
|
|
12
|
+
};
|
|
13
|
+
progress: {
|
|
14
|
+
copying: string;
|
|
15
|
+
building: string;
|
|
16
|
+
packaging: string;
|
|
17
|
+
validating: string;
|
|
18
|
+
analyzing: string;
|
|
19
|
+
restoring: string;
|
|
20
|
+
};
|
|
21
|
+
validation: {
|
|
22
|
+
requiredField: string;
|
|
23
|
+
invalidValue: string;
|
|
24
|
+
pathNotFound: string;
|
|
25
|
+
fileRequired: string;
|
|
26
|
+
directoryRequired: string;
|
|
27
|
+
};
|
|
28
|
+
info: {
|
|
29
|
+
operationComplete: string;
|
|
30
|
+
filesProcessed: {
|
|
31
|
+
zero: string;
|
|
32
|
+
one: string;
|
|
33
|
+
other: string;
|
|
34
|
+
};
|
|
35
|
+
};
|
|
36
|
+
};
|
|
37
|
+
};
|
|
@@ -0,0 +1,38 @@
|
|
|
1
|
+
const ja = {
|
|
2
|
+
toolCore: {
|
|
3
|
+
errors: {
|
|
4
|
+
internal: "Internal error: {message}",
|
|
5
|
+
fileNotFound: "File not found: {path}",
|
|
6
|
+
fileReadFailed: "Failed to read file: {path}",
|
|
7
|
+
fileWriteFailed: "Failed to write file: {path}",
|
|
8
|
+
directoryNotFound: "Directory not found: {path}",
|
|
9
|
+
invalidPath: "{path} is not a valid path",
|
|
10
|
+
operationCanceled: "Operation was canceled",
|
|
11
|
+
invalidParameter: "Invalid parameter: {parameter}"
|
|
12
|
+
},
|
|
13
|
+
progress: {
|
|
14
|
+
copying: "Copying files...",
|
|
15
|
+
building: "Building project...",
|
|
16
|
+
packaging: "Creating package...",
|
|
17
|
+
validating: "Validating...",
|
|
18
|
+
analyzing: "Analyzing...",
|
|
19
|
+
restoring: "Restoring dependencies..."
|
|
20
|
+
},
|
|
21
|
+
validation: {
|
|
22
|
+
requiredField: "{field} is required",
|
|
23
|
+
invalidValue: "Invalid value for {field}",
|
|
24
|
+
pathNotFound: "Path not found: {path}",
|
|
25
|
+
fileRequired: "File is required: {path}",
|
|
26
|
+
directoryRequired: "Directory is required: {path}"
|
|
27
|
+
},
|
|
28
|
+
info: {
|
|
29
|
+
operationComplete: "Operation completed successfully",
|
|
30
|
+
filesProcessed: {
|
|
31
|
+
zero: "No files processed",
|
|
32
|
+
one: "{count} file processed",
|
|
33
|
+
other: "{count} files processed"
|
|
34
|
+
}
|
|
35
|
+
}
|
|
36
|
+
}
|
|
37
|
+
};
|
|
38
|
+
export { ja };
|
|
@@ -0,0 +1,37 @@
|
|
|
1
|
+
export declare const ko: {
|
|
2
|
+
toolCore: {
|
|
3
|
+
errors: {
|
|
4
|
+
internal: string;
|
|
5
|
+
fileNotFound: string;
|
|
6
|
+
fileReadFailed: string;
|
|
7
|
+
fileWriteFailed: string;
|
|
8
|
+
directoryNotFound: string;
|
|
9
|
+
invalidPath: string;
|
|
10
|
+
operationCanceled: string;
|
|
11
|
+
invalidParameter: string;
|
|
12
|
+
};
|
|
13
|
+
progress: {
|
|
14
|
+
copying: string;
|
|
15
|
+
building: string;
|
|
16
|
+
packaging: string;
|
|
17
|
+
validating: string;
|
|
18
|
+
analyzing: string;
|
|
19
|
+
restoring: string;
|
|
20
|
+
};
|
|
21
|
+
validation: {
|
|
22
|
+
requiredField: string;
|
|
23
|
+
invalidValue: string;
|
|
24
|
+
pathNotFound: string;
|
|
25
|
+
fileRequired: string;
|
|
26
|
+
directoryRequired: string;
|
|
27
|
+
};
|
|
28
|
+
info: {
|
|
29
|
+
operationComplete: string;
|
|
30
|
+
filesProcessed: {
|
|
31
|
+
zero: string;
|
|
32
|
+
one: string;
|
|
33
|
+
other: string;
|
|
34
|
+
};
|
|
35
|
+
};
|
|
36
|
+
};
|
|
37
|
+
};
|
|
@@ -0,0 +1,38 @@
|
|
|
1
|
+
const ko = {
|
|
2
|
+
toolCore: {
|
|
3
|
+
errors: {
|
|
4
|
+
internal: "Internal error: {message}",
|
|
5
|
+
fileNotFound: "File not found: {path}",
|
|
6
|
+
fileReadFailed: "Failed to read file: {path}",
|
|
7
|
+
fileWriteFailed: "Failed to write file: {path}",
|
|
8
|
+
directoryNotFound: "Directory not found: {path}",
|
|
9
|
+
invalidPath: "{path} is not a valid path",
|
|
10
|
+
operationCanceled: "Operation was canceled",
|
|
11
|
+
invalidParameter: "Invalid parameter: {parameter}"
|
|
12
|
+
},
|
|
13
|
+
progress: {
|
|
14
|
+
copying: "Copying files...",
|
|
15
|
+
building: "Building project...",
|
|
16
|
+
packaging: "Creating package...",
|
|
17
|
+
validating: "Validating...",
|
|
18
|
+
analyzing: "Analyzing...",
|
|
19
|
+
restoring: "Restoring dependencies..."
|
|
20
|
+
},
|
|
21
|
+
validation: {
|
|
22
|
+
requiredField: "{field} is required",
|
|
23
|
+
invalidValue: "Invalid value for {field}",
|
|
24
|
+
pathNotFound: "Path not found: {path}",
|
|
25
|
+
fileRequired: "File is required: {path}",
|
|
26
|
+
directoryRequired: "Directory is required: {path}"
|
|
27
|
+
},
|
|
28
|
+
info: {
|
|
29
|
+
operationComplete: "Operation completed successfully",
|
|
30
|
+
filesProcessed: {
|
|
31
|
+
zero: "No files processed",
|
|
32
|
+
one: "{count} file processed",
|
|
33
|
+
other: "{count} files processed"
|
|
34
|
+
}
|
|
35
|
+
}
|
|
36
|
+
}
|
|
37
|
+
};
|
|
38
|
+
export { ko };
|
|
@@ -0,0 +1,37 @@
|
|
|
1
|
+
export declare const pt_BR: {
|
|
2
|
+
toolCore: {
|
|
3
|
+
errors: {
|
|
4
|
+
internal: string;
|
|
5
|
+
fileNotFound: string;
|
|
6
|
+
fileReadFailed: string;
|
|
7
|
+
fileWriteFailed: string;
|
|
8
|
+
directoryNotFound: string;
|
|
9
|
+
invalidPath: string;
|
|
10
|
+
operationCanceled: string;
|
|
11
|
+
invalidParameter: string;
|
|
12
|
+
};
|
|
13
|
+
progress: {
|
|
14
|
+
copying: string;
|
|
15
|
+
building: string;
|
|
16
|
+
packaging: string;
|
|
17
|
+
validating: string;
|
|
18
|
+
analyzing: string;
|
|
19
|
+
restoring: string;
|
|
20
|
+
};
|
|
21
|
+
validation: {
|
|
22
|
+
requiredField: string;
|
|
23
|
+
invalidValue: string;
|
|
24
|
+
pathNotFound: string;
|
|
25
|
+
fileRequired: string;
|
|
26
|
+
directoryRequired: string;
|
|
27
|
+
};
|
|
28
|
+
info: {
|
|
29
|
+
operationComplete: string;
|
|
30
|
+
filesProcessed: {
|
|
31
|
+
zero: string;
|
|
32
|
+
one: string;
|
|
33
|
+
other: string;
|
|
34
|
+
};
|
|
35
|
+
};
|
|
36
|
+
};
|
|
37
|
+
};
|
|
@@ -0,0 +1,38 @@
|
|
|
1
|
+
const pt_BR = {
|
|
2
|
+
toolCore: {
|
|
3
|
+
errors: {
|
|
4
|
+
internal: "Internal error: {message}",
|
|
5
|
+
fileNotFound: "File not found: {path}",
|
|
6
|
+
fileReadFailed: "Failed to read file: {path}",
|
|
7
|
+
fileWriteFailed: "Failed to write file: {path}",
|
|
8
|
+
directoryNotFound: "Directory not found: {path}",
|
|
9
|
+
invalidPath: "{path} is not a valid path",
|
|
10
|
+
operationCanceled: "Operation was canceled",
|
|
11
|
+
invalidParameter: "Invalid parameter: {parameter}"
|
|
12
|
+
},
|
|
13
|
+
progress: {
|
|
14
|
+
copying: "Copying files...",
|
|
15
|
+
building: "Building project...",
|
|
16
|
+
packaging: "Creating package...",
|
|
17
|
+
validating: "Validating...",
|
|
18
|
+
analyzing: "Analyzing...",
|
|
19
|
+
restoring: "Restoring dependencies..."
|
|
20
|
+
},
|
|
21
|
+
validation: {
|
|
22
|
+
requiredField: "{field} is required",
|
|
23
|
+
invalidValue: "Invalid value for {field}",
|
|
24
|
+
pathNotFound: "Path not found: {path}",
|
|
25
|
+
fileRequired: "File is required: {path}",
|
|
26
|
+
directoryRequired: "Directory is required: {path}"
|
|
27
|
+
},
|
|
28
|
+
info: {
|
|
29
|
+
operationComplete: "Operation completed successfully",
|
|
30
|
+
filesProcessed: {
|
|
31
|
+
zero: "No files processed",
|
|
32
|
+
one: "{count} file processed",
|
|
33
|
+
other: "{count} files processed"
|
|
34
|
+
}
|
|
35
|
+
}
|
|
36
|
+
}
|
|
37
|
+
};
|
|
38
|
+
export { pt_BR };
|
|
@@ -0,0 +1,37 @@
|
|
|
1
|
+
export declare const pt: {
|
|
2
|
+
toolCore: {
|
|
3
|
+
errors: {
|
|
4
|
+
internal: string;
|
|
5
|
+
fileNotFound: string;
|
|
6
|
+
fileReadFailed: string;
|
|
7
|
+
fileWriteFailed: string;
|
|
8
|
+
directoryNotFound: string;
|
|
9
|
+
invalidPath: string;
|
|
10
|
+
operationCanceled: string;
|
|
11
|
+
invalidParameter: string;
|
|
12
|
+
};
|
|
13
|
+
progress: {
|
|
14
|
+
copying: string;
|
|
15
|
+
building: string;
|
|
16
|
+
packaging: string;
|
|
17
|
+
validating: string;
|
|
18
|
+
analyzing: string;
|
|
19
|
+
restoring: string;
|
|
20
|
+
};
|
|
21
|
+
validation: {
|
|
22
|
+
requiredField: string;
|
|
23
|
+
invalidValue: string;
|
|
24
|
+
pathNotFound: string;
|
|
25
|
+
fileRequired: string;
|
|
26
|
+
directoryRequired: string;
|
|
27
|
+
};
|
|
28
|
+
info: {
|
|
29
|
+
operationComplete: string;
|
|
30
|
+
filesProcessed: {
|
|
31
|
+
zero: string;
|
|
32
|
+
one: string;
|
|
33
|
+
other: string;
|
|
34
|
+
};
|
|
35
|
+
};
|
|
36
|
+
};
|
|
37
|
+
};
|
|
@@ -0,0 +1,38 @@
|
|
|
1
|
+
const pt = {
|
|
2
|
+
toolCore: {
|
|
3
|
+
errors: {
|
|
4
|
+
internal: "Internal error: {message}",
|
|
5
|
+
fileNotFound: "File not found: {path}",
|
|
6
|
+
fileReadFailed: "Failed to read file: {path}",
|
|
7
|
+
fileWriteFailed: "Failed to write file: {path}",
|
|
8
|
+
directoryNotFound: "Directory not found: {path}",
|
|
9
|
+
invalidPath: "{path} is not a valid path",
|
|
10
|
+
operationCanceled: "Operation was canceled",
|
|
11
|
+
invalidParameter: "Invalid parameter: {parameter}"
|
|
12
|
+
},
|
|
13
|
+
progress: {
|
|
14
|
+
copying: "Copying files...",
|
|
15
|
+
building: "Building project...",
|
|
16
|
+
packaging: "Creating package...",
|
|
17
|
+
validating: "Validating...",
|
|
18
|
+
analyzing: "Analyzing...",
|
|
19
|
+
restoring: "Restoring dependencies..."
|
|
20
|
+
},
|
|
21
|
+
validation: {
|
|
22
|
+
requiredField: "{field} is required",
|
|
23
|
+
invalidValue: "Invalid value for {field}",
|
|
24
|
+
pathNotFound: "Path not found: {path}",
|
|
25
|
+
fileRequired: "File is required: {path}",
|
|
26
|
+
directoryRequired: "Directory is required: {path}"
|
|
27
|
+
},
|
|
28
|
+
info: {
|
|
29
|
+
operationComplete: "Operation completed successfully",
|
|
30
|
+
filesProcessed: {
|
|
31
|
+
zero: "No files processed",
|
|
32
|
+
one: "{count} file processed",
|
|
33
|
+
other: "{count} files processed"
|
|
34
|
+
}
|
|
35
|
+
}
|
|
36
|
+
}
|
|
37
|
+
};
|
|
38
|
+
export { pt };
|
|
@@ -0,0 +1,37 @@
|
|
|
1
|
+
export declare const ro: {
|
|
2
|
+
toolCore: {
|
|
3
|
+
errors: {
|
|
4
|
+
internal: string;
|
|
5
|
+
fileNotFound: string;
|
|
6
|
+
fileReadFailed: string;
|
|
7
|
+
fileWriteFailed: string;
|
|
8
|
+
directoryNotFound: string;
|
|
9
|
+
invalidPath: string;
|
|
10
|
+
operationCanceled: string;
|
|
11
|
+
invalidParameter: string;
|
|
12
|
+
};
|
|
13
|
+
progress: {
|
|
14
|
+
copying: string;
|
|
15
|
+
building: string;
|
|
16
|
+
packaging: string;
|
|
17
|
+
validating: string;
|
|
18
|
+
analyzing: string;
|
|
19
|
+
restoring: string;
|
|
20
|
+
};
|
|
21
|
+
validation: {
|
|
22
|
+
requiredField: string;
|
|
23
|
+
invalidValue: string;
|
|
24
|
+
pathNotFound: string;
|
|
25
|
+
fileRequired: string;
|
|
26
|
+
directoryRequired: string;
|
|
27
|
+
};
|
|
28
|
+
info: {
|
|
29
|
+
operationComplete: string;
|
|
30
|
+
filesProcessed: {
|
|
31
|
+
zero: string;
|
|
32
|
+
one: string;
|
|
33
|
+
other: string;
|
|
34
|
+
};
|
|
35
|
+
};
|
|
36
|
+
};
|
|
37
|
+
};
|
|
@@ -0,0 +1,38 @@
|
|
|
1
|
+
const ro = {
|
|
2
|
+
toolCore: {
|
|
3
|
+
errors: {
|
|
4
|
+
internal: "Internal error: {message}",
|
|
5
|
+
fileNotFound: "File not found: {path}",
|
|
6
|
+
fileReadFailed: "Failed to read file: {path}",
|
|
7
|
+
fileWriteFailed: "Failed to write file: {path}",
|
|
8
|
+
directoryNotFound: "Directory not found: {path}",
|
|
9
|
+
invalidPath: "{path} is not a valid path",
|
|
10
|
+
operationCanceled: "Operation was canceled",
|
|
11
|
+
invalidParameter: "Invalid parameter: {parameter}"
|
|
12
|
+
},
|
|
13
|
+
progress: {
|
|
14
|
+
copying: "Copying files...",
|
|
15
|
+
building: "Building project...",
|
|
16
|
+
packaging: "Creating package...",
|
|
17
|
+
validating: "Validating...",
|
|
18
|
+
analyzing: "Analyzing...",
|
|
19
|
+
restoring: "Restoring dependencies..."
|
|
20
|
+
},
|
|
21
|
+
validation: {
|
|
22
|
+
requiredField: "{field} is required",
|
|
23
|
+
invalidValue: "Invalid value for {field}",
|
|
24
|
+
pathNotFound: "Path not found: {path}",
|
|
25
|
+
fileRequired: "File is required: {path}",
|
|
26
|
+
directoryRequired: "Directory is required: {path}"
|
|
27
|
+
},
|
|
28
|
+
info: {
|
|
29
|
+
operationComplete: "Operation completed successfully",
|
|
30
|
+
filesProcessed: {
|
|
31
|
+
zero: "No files processed",
|
|
32
|
+
one: "{count} file processed",
|
|
33
|
+
other: "{count} files processed"
|
|
34
|
+
}
|
|
35
|
+
}
|
|
36
|
+
}
|
|
37
|
+
};
|
|
38
|
+
export { ro };
|
|
@@ -0,0 +1,37 @@
|
|
|
1
|
+
export declare const ru: {
|
|
2
|
+
toolCore: {
|
|
3
|
+
errors: {
|
|
4
|
+
internal: string;
|
|
5
|
+
fileNotFound: string;
|
|
6
|
+
fileReadFailed: string;
|
|
7
|
+
fileWriteFailed: string;
|
|
8
|
+
directoryNotFound: string;
|
|
9
|
+
invalidPath: string;
|
|
10
|
+
operationCanceled: string;
|
|
11
|
+
invalidParameter: string;
|
|
12
|
+
};
|
|
13
|
+
progress: {
|
|
14
|
+
copying: string;
|
|
15
|
+
building: string;
|
|
16
|
+
packaging: string;
|
|
17
|
+
validating: string;
|
|
18
|
+
analyzing: string;
|
|
19
|
+
restoring: string;
|
|
20
|
+
};
|
|
21
|
+
validation: {
|
|
22
|
+
requiredField: string;
|
|
23
|
+
invalidValue: string;
|
|
24
|
+
pathNotFound: string;
|
|
25
|
+
fileRequired: string;
|
|
26
|
+
directoryRequired: string;
|
|
27
|
+
};
|
|
28
|
+
info: {
|
|
29
|
+
operationComplete: string;
|
|
30
|
+
filesProcessed: {
|
|
31
|
+
zero: string;
|
|
32
|
+
one: string;
|
|
33
|
+
other: string;
|
|
34
|
+
};
|
|
35
|
+
};
|
|
36
|
+
};
|
|
37
|
+
};
|
|
@@ -0,0 +1,38 @@
|
|
|
1
|
+
const ru = {
|
|
2
|
+
toolCore: {
|
|
3
|
+
errors: {
|
|
4
|
+
internal: "Internal error: {message}",
|
|
5
|
+
fileNotFound: "File not found: {path}",
|
|
6
|
+
fileReadFailed: "Failed to read file: {path}",
|
|
7
|
+
fileWriteFailed: "Failed to write file: {path}",
|
|
8
|
+
directoryNotFound: "Directory not found: {path}",
|
|
9
|
+
invalidPath: "{path} is not a valid path",
|
|
10
|
+
operationCanceled: "Operation was canceled",
|
|
11
|
+
invalidParameter: "Invalid parameter: {parameter}"
|
|
12
|
+
},
|
|
13
|
+
progress: {
|
|
14
|
+
copying: "Copying files...",
|
|
15
|
+
building: "Building project...",
|
|
16
|
+
packaging: "Creating package...",
|
|
17
|
+
validating: "Validating...",
|
|
18
|
+
analyzing: "Analyzing...",
|
|
19
|
+
restoring: "Restoring dependencies..."
|
|
20
|
+
},
|
|
21
|
+
validation: {
|
|
22
|
+
requiredField: "{field} is required",
|
|
23
|
+
invalidValue: "Invalid value for {field}",
|
|
24
|
+
pathNotFound: "Path not found: {path}",
|
|
25
|
+
fileRequired: "File is required: {path}",
|
|
26
|
+
directoryRequired: "Directory is required: {path}"
|
|
27
|
+
},
|
|
28
|
+
info: {
|
|
29
|
+
operationComplete: "Operation completed successfully",
|
|
30
|
+
filesProcessed: {
|
|
31
|
+
zero: "No files processed",
|
|
32
|
+
one: "{count} file processed",
|
|
33
|
+
other: "{count} files processed"
|
|
34
|
+
}
|
|
35
|
+
}
|
|
36
|
+
}
|
|
37
|
+
};
|
|
38
|
+
export { ru };
|
|
@@ -0,0 +1,37 @@
|
|
|
1
|
+
export declare const tr: {
|
|
2
|
+
toolCore: {
|
|
3
|
+
errors: {
|
|
4
|
+
internal: string;
|
|
5
|
+
fileNotFound: string;
|
|
6
|
+
fileReadFailed: string;
|
|
7
|
+
fileWriteFailed: string;
|
|
8
|
+
directoryNotFound: string;
|
|
9
|
+
invalidPath: string;
|
|
10
|
+
operationCanceled: string;
|
|
11
|
+
invalidParameter: string;
|
|
12
|
+
};
|
|
13
|
+
progress: {
|
|
14
|
+
copying: string;
|
|
15
|
+
building: string;
|
|
16
|
+
packaging: string;
|
|
17
|
+
validating: string;
|
|
18
|
+
analyzing: string;
|
|
19
|
+
restoring: string;
|
|
20
|
+
};
|
|
21
|
+
validation: {
|
|
22
|
+
requiredField: string;
|
|
23
|
+
invalidValue: string;
|
|
24
|
+
pathNotFound: string;
|
|
25
|
+
fileRequired: string;
|
|
26
|
+
directoryRequired: string;
|
|
27
|
+
};
|
|
28
|
+
info: {
|
|
29
|
+
operationComplete: string;
|
|
30
|
+
filesProcessed: {
|
|
31
|
+
zero: string;
|
|
32
|
+
one: string;
|
|
33
|
+
other: string;
|
|
34
|
+
};
|
|
35
|
+
};
|
|
36
|
+
};
|
|
37
|
+
};
|
|
@@ -0,0 +1,38 @@
|
|
|
1
|
+
const tr = {
|
|
2
|
+
toolCore: {
|
|
3
|
+
errors: {
|
|
4
|
+
internal: "Internal error: {message}",
|
|
5
|
+
fileNotFound: "File not found: {path}",
|
|
6
|
+
fileReadFailed: "Failed to read file: {path}",
|
|
7
|
+
fileWriteFailed: "Failed to write file: {path}",
|
|
8
|
+
directoryNotFound: "Directory not found: {path}",
|
|
9
|
+
invalidPath: "{path} is not a valid path",
|
|
10
|
+
operationCanceled: "Operation was canceled",
|
|
11
|
+
invalidParameter: "Invalid parameter: {parameter}"
|
|
12
|
+
},
|
|
13
|
+
progress: {
|
|
14
|
+
copying: "Copying files...",
|
|
15
|
+
building: "Building project...",
|
|
16
|
+
packaging: "Creating package...",
|
|
17
|
+
validating: "Validating...",
|
|
18
|
+
analyzing: "Analyzing...",
|
|
19
|
+
restoring: "Restoring dependencies..."
|
|
20
|
+
},
|
|
21
|
+
validation: {
|
|
22
|
+
requiredField: "{field} is required",
|
|
23
|
+
invalidValue: "Invalid value for {field}",
|
|
24
|
+
pathNotFound: "Path not found: {path}",
|
|
25
|
+
fileRequired: "File is required: {path}",
|
|
26
|
+
directoryRequired: "Directory is required: {path}"
|
|
27
|
+
},
|
|
28
|
+
info: {
|
|
29
|
+
operationComplete: "Operation completed successfully",
|
|
30
|
+
filesProcessed: {
|
|
31
|
+
zero: "No files processed",
|
|
32
|
+
one: "{count} file processed",
|
|
33
|
+
other: "{count} files processed"
|
|
34
|
+
}
|
|
35
|
+
}
|
|
36
|
+
}
|
|
37
|
+
};
|
|
38
|
+
export { tr };
|
|
@@ -0,0 +1,37 @@
|
|
|
1
|
+
export declare const zh_CN: {
|
|
2
|
+
toolCore: {
|
|
3
|
+
errors: {
|
|
4
|
+
internal: string;
|
|
5
|
+
fileNotFound: string;
|
|
6
|
+
fileReadFailed: string;
|
|
7
|
+
fileWriteFailed: string;
|
|
8
|
+
directoryNotFound: string;
|
|
9
|
+
invalidPath: string;
|
|
10
|
+
operationCanceled: string;
|
|
11
|
+
invalidParameter: string;
|
|
12
|
+
};
|
|
13
|
+
progress: {
|
|
14
|
+
copying: string;
|
|
15
|
+
building: string;
|
|
16
|
+
packaging: string;
|
|
17
|
+
validating: string;
|
|
18
|
+
analyzing: string;
|
|
19
|
+
restoring: string;
|
|
20
|
+
};
|
|
21
|
+
validation: {
|
|
22
|
+
requiredField: string;
|
|
23
|
+
invalidValue: string;
|
|
24
|
+
pathNotFound: string;
|
|
25
|
+
fileRequired: string;
|
|
26
|
+
directoryRequired: string;
|
|
27
|
+
};
|
|
28
|
+
info: {
|
|
29
|
+
operationComplete: string;
|
|
30
|
+
filesProcessed: {
|
|
31
|
+
zero: string;
|
|
32
|
+
one: string;
|
|
33
|
+
other: string;
|
|
34
|
+
};
|
|
35
|
+
};
|
|
36
|
+
};
|
|
37
|
+
};
|
|
@@ -0,0 +1,38 @@
|
|
|
1
|
+
const zh_CN = {
|
|
2
|
+
toolCore: {
|
|
3
|
+
errors: {
|
|
4
|
+
internal: "Internal error: {message}",
|
|
5
|
+
fileNotFound: "File not found: {path}",
|
|
6
|
+
fileReadFailed: "Failed to read file: {path}",
|
|
7
|
+
fileWriteFailed: "Failed to write file: {path}",
|
|
8
|
+
directoryNotFound: "Directory not found: {path}",
|
|
9
|
+
invalidPath: "{path} is not a valid path",
|
|
10
|
+
operationCanceled: "Operation was canceled",
|
|
11
|
+
invalidParameter: "Invalid parameter: {parameter}"
|
|
12
|
+
},
|
|
13
|
+
progress: {
|
|
14
|
+
copying: "Copying files...",
|
|
15
|
+
building: "Building project...",
|
|
16
|
+
packaging: "Creating package...",
|
|
17
|
+
validating: "Validating...",
|
|
18
|
+
analyzing: "Analyzing...",
|
|
19
|
+
restoring: "Restoring dependencies..."
|
|
20
|
+
},
|
|
21
|
+
validation: {
|
|
22
|
+
requiredField: "{field} is required",
|
|
23
|
+
invalidValue: "Invalid value for {field}",
|
|
24
|
+
pathNotFound: "Path not found: {path}",
|
|
25
|
+
fileRequired: "File is required: {path}",
|
|
26
|
+
directoryRequired: "Directory is required: {path}"
|
|
27
|
+
},
|
|
28
|
+
info: {
|
|
29
|
+
operationComplete: "Operation completed successfully",
|
|
30
|
+
filesProcessed: {
|
|
31
|
+
zero: "No files processed",
|
|
32
|
+
one: "{count} file processed",
|
|
33
|
+
other: "{count} files processed"
|
|
34
|
+
}
|
|
35
|
+
}
|
|
36
|
+
}
|
|
37
|
+
};
|
|
38
|
+
export { zh_CN };
|
|
@@ -0,0 +1,37 @@
|
|
|
1
|
+
export declare const zh_TW: {
|
|
2
|
+
toolCore: {
|
|
3
|
+
errors: {
|
|
4
|
+
internal: string;
|
|
5
|
+
fileNotFound: string;
|
|
6
|
+
fileReadFailed: string;
|
|
7
|
+
fileWriteFailed: string;
|
|
8
|
+
directoryNotFound: string;
|
|
9
|
+
invalidPath: string;
|
|
10
|
+
operationCanceled: string;
|
|
11
|
+
invalidParameter: string;
|
|
12
|
+
};
|
|
13
|
+
progress: {
|
|
14
|
+
copying: string;
|
|
15
|
+
building: string;
|
|
16
|
+
packaging: string;
|
|
17
|
+
validating: string;
|
|
18
|
+
analyzing: string;
|
|
19
|
+
restoring: string;
|
|
20
|
+
};
|
|
21
|
+
validation: {
|
|
22
|
+
requiredField: string;
|
|
23
|
+
invalidValue: string;
|
|
24
|
+
pathNotFound: string;
|
|
25
|
+
fileRequired: string;
|
|
26
|
+
directoryRequired: string;
|
|
27
|
+
};
|
|
28
|
+
info: {
|
|
29
|
+
operationComplete: string;
|
|
30
|
+
filesProcessed: {
|
|
31
|
+
zero: string;
|
|
32
|
+
one: string;
|
|
33
|
+
other: string;
|
|
34
|
+
};
|
|
35
|
+
};
|
|
36
|
+
};
|
|
37
|
+
};
|