Sha256: 8bd9145eaa8d9c06830b9e7e3659ba44f6da7e1475b3622348bc53b38b4aee22
Contents?: true
Size: 969 Bytes
Versions: 49
Compression:
Stored size: 969 Bytes
Contents
# frozen_string_literal: true module Node module Messages MESSAGES = { node: { help: <<~HELP, Suite of commands for developing Node.js apps. See {{command:%1$s app node <command> --help}} for usage of each command. Usage: {{command:%1$s app node [ %2$s ]}} HELP error: { generic: "Error", }, forms: { create: { error: { invalid_app_name: "App name cannot contain 'Shopify'", invalid_app_type: "Invalid app type %s", }, app_name: "App name", app_type: { select: "What type of app are you building?", select_public: "Public: An app built for a wide merchant audience.", select_custom: "Custom: An app custom built for a single client.", selected: "App type {{green:%s}}", }, }, }, }, }.freeze end end
Version data entries
49 entries across 49 versions & 1 rubygems