lang_en.lua 3.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172
  1. --en lang messages
  2. local messages={
  3. args_at_least_one="Enter at least one argument!",
  4. args_invalid="Invalid parameter!",
  5. handler_not_found="No handler found!",
  6. wrong_usage="Invalid usage!",
  7. usage="Usage: ",
  8. help="Help",
  9. talimat_not_found="Talimat not found!",
  10. package_name_format_not_valid="Invalid package name format!",
  11. package_not_installed="%s is not installed.",
  12. package_installed="%s is installed.",
  13. package_installation_failed="Failed to install: %s",
  14. package_uninstalled="Packet uninstalled: %s",
  15. package_not_found="Package not found: %s",
  16. package_not_found_inrepo="Package %s is not found in repos.",
  17. package_download_error="Download error: %s",
  18. package_downloaded="%s downloaded.",
  19. package_archive_check_ok="Archive check:\tTM",
  20. package_redownloading="Downloading %s again...",
  21. package_dependency_dl_error="An error occurred when downloading dependencies of %s!",
  22. package_already_installed="Package is already installed.",
  23. package_already_installed_and_uptodate="Package is already installed and up-to-date: %s",
  24. redownloading="Downloading %s again...",
  25. server_connection_refused="Server refused to connect!: %s",
  26. paketvt_not_found="paket.vt is not found in server.",
  27. package_server_not_defined="Package server not defined!",
  28. unknown_error="Unknown error: %s",
  29. empty_log="Empty log!",
  30. package_incache="%s is in cache.",
  31. package_shasum_error="Package shasum error: %s",
  32. confirm_package_uninstallation="Do you want to remove %s ?(y/n)",
  33. confirm_files_removing="Do you want to remove the files (e/h)? ",
  34. confirm_dir_removing_msg= "There changes under some directories!",
  35. confirm_dir_removing_info= "Change information is written to %s file.",
  36. confirm_dir_removing_cont= "Do you want to continue? [y/n]",
  37. package_uninstallation_failed="Package uninstallation failed: %s",
  38. package_db_out_of_order="Package database is out of order!",
  39. talimat_name_format_not_valid="Talimat name format is not valid!",
  40. git_repo_subdir_not_found="Git repository subdirectory not found!",
  41. valid_format="Valid format: %s",
  42. shlib_control_pass="Shared library control passed.",
  43. shlib_not_exits="Shared library not exists!:",
  44. invalid_package_content="Invalid package content! ",
  45. ld_update_pass="Ldconfig update passed! ",
  46. --file_already_exists="Файл уже существует: %s !",
  47. file_already_exists="File exists: %s !",
  48. file_not_found="File not found: %s !",
  49. hash_not_match="Hash values don't match: %s !",
  50. need_root="Root privileges needed, run with sudo!!!",
  51. init_is_ok="MPS initialized!",
  52. default_configs_loaded="MPS is set to default!",
  53. initfs_is_ok="Milis base file system is initialized!",
  54. relaunch_mps="Please re-launch mps!",
  55. --status
  56. not_installed="not installed",
  57. installed="installed",
  58. -- usage
  59. usage_mps="\nmps [options] command args\n",
  60. usage_updating_repos="Update talimatname and mps repositories",
  61. usage_configure="Set mps to default settings",
  62. -- comment
  63. comment_mps_download="Download package into the cache directory",
  64. comment_mps_install="Install a package either with its name or with a file",
  65. comment_mps_update_self="Update the MPS",
  66. comment_mps_info="Shows package information.",
  67. comment_mps_rev_dep="Shows the reverse dependencies of the package.",
  68. }
  69. return messages