Recognize csh, not yet supported though

This commit is contained in:
crschnick 2023-06-14 04:27:55 +00:00
parent 67654f3005
commit 0f6616195a
2 changed files with 3 additions and 0 deletions

View file

@ -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

View file

@ -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");
}