This is an automated email from the ASF dual-hosted git repository.
thiagoelg pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/incubator-kie-tools.git
The following commit(s) were added to refs/heads/main by this push:
new 2364a9a5afb NO-ISSUE: Added i18n folder to `i18n-common-dictionary` to
make path as consistent as other packages (#3323)
2364a9a5afb is described below
commit 2364a9a5afb241fc0e1ec14c60b50ffa89909233
Author: Kusuma04-dev <[email protected]>
AuthorDate: Wed Oct 29 02:02:52 2025 +0530
NO-ISSUE: Added i18n folder to `i18n-common-dictionary` to make path as
consistent as other packages (#3323)
Co-authored-by: Kusuma <[email protected]>
---
packages/i18n-common-dictionary/src/{ => i18n}/locales/de.ts | 4 ++--
packages/i18n-common-dictionary/src/{ => i18n}/locales/en.ts | 4 ++--
packages/i18n-common-dictionary/src/{ => i18n}/locales/index.ts | 0
packages/i18n-common-dictionary/src/index.ts | 2 +-
4 files changed, 5 insertions(+), 5 deletions(-)
diff --git a/packages/i18n-common-dictionary/src/locales/de.ts
b/packages/i18n-common-dictionary/src/i18n/locales/de.ts
similarity index 96%
rename from packages/i18n-common-dictionary/src/locales/de.ts
rename to packages/i18n-common-dictionary/src/i18n/locales/de.ts
index fe87c34a18c..12cc67b1618 100644
--- a/packages/i18n-common-dictionary/src/locales/de.ts
+++ b/packages/i18n-common-dictionary/src/i18n/locales/de.ts
@@ -18,8 +18,8 @@
*/
import { TranslatedDictionary } from "@kie-tools-core/i18n/dist/core";
-import { CommonI18n } from "../CommonI18n";
-import { names } from "../names";
+import { CommonI18n } from "../../CommonI18n";
+import { names } from "../../names";
export const de: TranslatedDictionary<CommonI18n> = {
names,
diff --git a/packages/i18n-common-dictionary/src/locales/en.ts
b/packages/i18n-common-dictionary/src/i18n/locales/en.ts
similarity index 97%
rename from packages/i18n-common-dictionary/src/locales/en.ts
rename to packages/i18n-common-dictionary/src/i18n/locales/en.ts
index cc6f3650675..4b759b9744e 100644
--- a/packages/i18n-common-dictionary/src/locales/en.ts
+++ b/packages/i18n-common-dictionary/src/i18n/locales/en.ts
@@ -17,8 +17,8 @@
* under the License.
*/
-import { CommonI18n } from "../CommonI18n";
-import { names } from "../names";
+import { CommonI18n } from "../../CommonI18n";
+import { names } from "../../names";
export const en: CommonI18n = {
names,
diff --git a/packages/i18n-common-dictionary/src/locales/index.ts
b/packages/i18n-common-dictionary/src/i18n/locales/index.ts
similarity index 100%
rename from packages/i18n-common-dictionary/src/locales/index.ts
rename to packages/i18n-common-dictionary/src/i18n/locales/index.ts
diff --git a/packages/i18n-common-dictionary/src/index.ts
b/packages/i18n-common-dictionary/src/index.ts
index 76b527e5a0d..6227def9549 100644
--- a/packages/i18n-common-dictionary/src/index.ts
+++ b/packages/i18n-common-dictionary/src/index.ts
@@ -18,4 +18,4 @@
*/
export * from "./CommonI18n";
-export * from "./locales";
+export * from "./i18n/locales";
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]