diff --git a/res/jinja/text/output.help.commands.jinja b/res/jinja/text/output.help.commands.jinja new file mode 100644 index 0000000..6471a57 --- /dev/null +++ b/res/jinja/text/output.help.commands.jinja @@ -0,0 +1,4 @@ +{{ strings.msg.help.cmds.header }}: +{% for item in owo.misc.cmds %} + {% if item.argNames.short[0] %} + \ No newline at end of file diff --git a/res/jinja/text/output.help.full.jinja b/res/jinja/text/output.help.full.jinja new file mode 100644 index 0000000..7725630 --- /dev/null +++ b/res/jinja/text/output.help.full.jinja @@ -0,0 +1,3 @@ +{% include 'output.help.usage.jinja' %} + +{% include 'output.help.commands.jinja' %} \ No newline at end of file diff --git a/res/jinja/text/output.help.usage.jinja b/res/jinja/text/output.help.usage.jinja new file mode 100644 index 0000000..7f1210f --- /dev/null +++ b/res/jinja/text/output.help.usage.jinja @@ -0,0 +1 @@ +{{ strings.msg.help.usage.start }}: {{ owo.cliName }} [ options ] [ file | url ] \ No newline at end of file diff --git a/res/yaml/defaults/config.yaml b/res/yaml/defaults/config.yaml new file mode 100644 index 0000000..4be93ce --- /dev/null +++ b/res/yaml/defaults/config.yaml @@ -0,0 +1,2 @@ +output: + - logLevel: DEBUG' \ No newline at end of file diff --git a/res/yaml/locale/en_US/locales.yaml b/res/yaml/locale/en_US/locales.yaml new file mode 100644 index 0000000..a7a58f4 --- /dev/null +++ b/res/yaml/locale/en_US/locales.yaml @@ -0,0 +1,3 @@ +lang: + en: "English" + \ No newline at end of file diff --git a/res/yaml/locale/en_US/msg.yaml b/res/yaml/locale/en_US/msg.yaml new file mode 100644 index 0000000..2f040e1 --- /dev/null +++ b/res/yaml/locale/en_US/msg.yaml @@ -0,0 +1,6 @@ +help: + usage: + start: "usage" + cmds: + header: "COMMANDS" + \ No newline at end of file