lang_en.lua 3.3 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374
  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_not_found_inpkvt="Package %s not found in package db! Update package database.",
  18. package_download_error="Download error: %s",
  19. package_downloaded="%s downloaded.",
  20. package_archive_check_ok="Archive check:\tOK",
  21. package_archive_extract_ok="Archive extract:\tOK",
  22. package_redownloading="Downloading %s again...",
  23. package_dependency_dl_error="An error occurred when downloading dependencies of %s!",
  24. package_already_installed="Package is already installed.",
  25. package_already_installed_and_uptodate="Package is already installed and up-to-date: %s",
  26. redownloading="Downloading %s again...",
  27. server_connection_refused="Server refused to connect!: %s",
  28. paketvt_not_found="paket.vt is not found in server.",
  29. package_server_not_defined="Package server not defined!",
  30. unknown_error="Unknown error: %s",
  31. empty_log="Empty log!",
  32. package_incache="%s is in cache.",
  33. package_shasum_error="Package shasum error: %s",
  34. confirm_package_uninstallation="Do you want to remove %s ?(y/n)",
  35. confirm_files_removing="Do you want to remove the files (e/h)? ",
  36. confirm_dir_removing_msg= "There changes under some directories!",
  37. confirm_dir_removing_info= "Change information is written to %s file.",
  38. confirm_dir_removing_cont= "Do you want to continue? [y/n]",
  39. package_uninstallation_failed="Package uninstallation failed: %s",
  40. package_db_out_of_order="Package database is out of order!",
  41. talimat_name_format_not_valid="Talimat name format is not valid!",
  42. git_repo_subdir_not_found="Git repository subdirectory not found!",
  43. valid_format="Valid format: %s",
  44. shlib_control_pass="Shared library control passed.",
  45. shlib_not_exits="Shared library not exists!:",
  46. invalid_package_content="Invalid package content! ",
  47. ld_update_pass="Ldconfig update passed! ",
  48. --file_already_exists="Файл уже существует: %s !",
  49. file_already_exists="File exists: %s !",
  50. file_not_found="File not found: %s !",
  51. hash_not_match="Hash values don't match: %s !",
  52. need_root="Root privileges needed, run with sudo!!!",
  53. init_is_ok="MPS initialized!",
  54. default_configs_loaded="MPS is set to default!",
  55. initfs_is_ok="Milis base file system is initialized!",
  56. relaunch_mps="Please re-launch mps!",
  57. --status
  58. not_installed="not installed",
  59. installed="installed",
  60. -- usage
  61. usage_mps="\nmps [options] command args\n",
  62. usage_updating_repos="Update talimatname and mps repositories",
  63. usage_configure="Set mps to default settings",
  64. -- comment
  65. comment_mps_download="Download package into the cache directory",
  66. comment_mps_install="Install a package either with its name or with a file",
  67. comment_mps_update_self="Update the MPS",
  68. comment_mps_info="Shows package information.",
  69. comment_mps_rev_dep="Shows the reverse dependencies of the package.",
  70. }
  71. return messages