diff --git a/packages/cli-repl/src/constants.ts b/packages/cli-repl/src/constants.ts index 186c4437ea..77c33716d0 100644 --- a/packages/cli-repl/src/constants.ts +++ b/packages/cli-repl/src/constants.ts @@ -22,6 +22,8 @@ export const USAGE = ` --host [arg] ${i18n.__('cli-repl.args.host')} --port [arg] ${i18n.__('cli-repl.args.port')} --version ${i18n.__('cli-repl.args.version')} + --verbose ${i18n.__('cli-repl.args.verbose')} + --quiet ${i18n.__('cli-repl.args.quiet')} --shell ${i18n.__('cli-repl.args.shell')} --nodb ${i18n.__('cli-repl.args.nodb')} --norc ${i18n.__('cli-repl.args.norc')} diff --git a/packages/i18n/src/locales/en_US.ts b/packages/i18n/src/locales/en_US.ts index 2c59e57b16..5c8b234099 100644 --- a/packages/i18n/src/locales/en_US.ts +++ b/packages/i18n/src/locales/en_US.ts @@ -15,6 +15,8 @@ const translations: Catalog = { host: 'Server to connect to', port: 'Port to connect to', version: 'Show version information', + verbose: 'Increase the verbosity of the output of the shell', + quiet: 'Silence output from the shell during the connection process', shell: 'Run the shell after executing files', nodb: "Don't connect to mongod on startup - no 'db address' [arg] expected", norc: "Will not run the '.mongoshrc.js' file on start up",