en-US.json 2.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475
  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 @solana/kit"
  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. "invalidVersion": "Invalid $tool version: $version.",
  54. "operationCancelled": "Operation cancelled.",
  55. "rustVersionIncompatibleWithSolana": "Solana version $solanaVersion requires at least Rust $minimumRustVersion installed, found Rust $rustVersion.",
  56. "solanaCliNotFound": "Command `$command` unavailable. Please install the Solana CLI.",
  57. "solanaKeygenFailed": "Failed to generate program keypair."
  58. },
  59. "defaultToggleOptions": {
  60. "active": "Yes",
  61. "inactive": "No"
  62. },
  63. "instructions": {
  64. "select": "[↑/↓]: Select / [enter]: Submit answer",
  65. "multiselect": "[↑/↓]: Select / [space]: Toggle selection / [a]: Toggle all / [enter]: Submit answer"
  66. },
  67. "infos": {
  68. "detectAnchorVersion": "Detect Anchor version",
  69. "detectRustVersion": "Detect Rust version",
  70. "detectSolanaVersion": "Detect Solana version",
  71. "generateKeypair": "Generate program keypair",
  72. "scaffold": "Scaffold project in $targetDirectory",
  73. "done": "Done. Now run:"
  74. }
  75. }