diff --git a/app/src/main/resources/io/xpipe/app/resources/lang/translations_en.properties b/app/src/main/resources/io/xpipe/app/resources/lang/translations_en.properties index d3df9a2b..cbda6e4c 100644 --- a/app/src/main/resources/io/xpipe/app/resources/lang/translations_en.properties +++ b/app/src/main/resources/io/xpipe/app/resources/lang/translations_en.properties @@ -22,6 +22,7 @@ enterLockPassword=Enter lock password repeatPassword=Repeat password askpassAlertTitle=Askpass nullPointer=Null Pointer +unsupportedOperation=Unsupported operation: $MSG$ moveAlertTitle=Confirm move moveAlertHeader=Do you want to move the ($COUNT$) selected elements into $TARGET$? deleteAlertTitle=Confirm deletion diff --git a/core/src/main/java/io/xpipe/core/process/ShellDialects.java b/core/src/main/java/io/xpipe/core/process/ShellDialects.java index 84185b07..6698f6ed 100644 --- a/core/src/main/java/io/xpipe/core/process/ShellDialects.java +++ b/core/src/main/java/io/xpipe/core/process/ShellDialects.java @@ -16,6 +16,7 @@ public class ShellDialects { public static ShellDialect DASH; public static ShellDialect BASH; public static ShellDialect ZSH; + public static ShellDialect CSH; public static class Loader implements ModuleLayerLoader { @@ -31,6 +32,7 @@ public class ShellDialects { DASH = byName("dash"); BASH = byName("bash"); ZSH = byName("zsh"); + CSH = byName("csh"); SH = byName("sh"); }