en-US.json 2.2 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273
  1. {
  2. "programName": {
  3. "message": "Program name:"
  4. },
  5. "shouldOverride": {
  6. "dirForPrompts": {
  7. "current": "Current directory",
  8. "target": "Target directory"
  9. },
  10. "message": "is not empty. Remove existing files and continue?"
  11. },
  12. "organizationName": {
  13. "message": "Organization name:"
  14. },
  15. "programCrateName": {
  16. "message": "Program crate name:"
  17. },
  18. "programFramework": {
  19. "message": "Program framework:",
  20. "selectOptions": {
  21. "shank": {
  22. "title": "Shank",
  23. "desc": "Vanilla Solana program with Shank macros to generate IDLs"
  24. },
  25. "anchor": {
  26. "title": "Anchor",
  27. "desc": "Use Anchor for program development"
  28. }
  29. }
  30. },
  31. "clients": {
  32. "message": "Generated clients:",
  33. "selectOptions": {
  34. "js": {
  35. "title": "JavaScript Client",
  36. "desc": "A TypeScript library compatible with the new web3.js"
  37. },
  38. "rust": {
  39. "title": "Rust Client",
  40. "desc": "A Rust crate allowing consumers to interact with the program"
  41. }
  42. }
  43. },
  44. "jsClientPackageName": {
  45. "message": "JavaScript client package name:"
  46. },
  47. "rustClientCrateName": {
  48. "message": "Rust client crate name:"
  49. },
  50. "errors": {
  51. "anchorCliNotFound": "Command `$command` unavailable. Please install the Anchor CLI.",
  52. "cannotOverrideDirectory": "Cannot override target directory \"$targetDirectory\". Run with option --force to override.",
  53. "invalidSolanaVersion": "Invalid Solana version: $version.",
  54. "operationCancelled": "Operation cancelled",
  55. "solanaCliNotFound": "Command `$command` unavailable. Please install the Solana CLI.",
  56. "solanaKeygenFailed": "Failed to generate program keypair"
  57. },
  58. "defaultToggleOptions": {
  59. "active": "Yes",
  60. "inactive": "No"
  61. },
  62. "instructions": {
  63. "select": "[↑/↓]: Select / [enter]: Submit answer",
  64. "multiselect": "[↑/↓]: Select / [space]: Toggle selection / [a]: Toggle all / [enter]: Submit answer"
  65. },
  66. "infos": {
  67. "detectAnchorVersion": "Detect Anchor version",
  68. "detectSolanaVersion": "Detect Solana version",
  69. "generateKeypair": "Generate program keypair",
  70. "scaffold": "Scaffold project in $targetDirectory",
  71. "done": "Done. Now run:"
  72. }
  73. }