home *** CD-ROM | disk | FTP | other *** search
/ Chip 2007 January, February, March & April / Chip-Cover-CD-2007-02.iso / boot / i386 / root / usr / share / YaST2 / modules / Message.ycp < prev    next >
Text File  |  2006-11-29  |  7KB  |  256 lines

  1. /**
  2.  * File:    modules/Message.ycp
  3.  * Package:    yast2
  4.  * Summary:    Often used messages
  5.  * Authors:    Lukas Ocilka <locilka@suse.cz>
  6.  * Copyright:   Copyright 2004, Novell, Inc.  All rights reserved.
  7.  * Flags:    Stable
  8.  *
  9.  * $Id: Message.ycp 31242 2006-06-01 12:59:16Z locilka $
  10.  *
  11.  * Often used messages, for example error messages
  12.  */
  13.  
  14. {
  15.  
  16. module "Message";
  17. textdomain "base";
  18.  
  19. /**
  20.  * Cannot continue without required packages installed
  21.  * @return string Cannot continue without required packages installed
  22.  */
  23. global define string CannotContinueWithoutPackagesInstalled () {
  24.   /* TRANSLATORS: Popup message */
  25.   return _("YaST cannot continue the configuration
  26. without installing the required packages.");
  27. }
  28.  
  29. /**
  30.  * Cannot start 'service_name' service
  31.  * @param string service_name
  32.  * @return string Cannot start 'service_name' service
  33.  */
  34. global define string CannotStartService (string service_name) {
  35.   /* TRANSLATORS: Popup message, %1 is a service name like "smbd" */
  36.   return sformat(_("Cannot start '%1' service"), service_name);
  37. }
  38.  
  39. /**
  40.  * Cannot restart 'service_name' service
  41.  * @param string service_name
  42.  * @return string Cannot restart 'service_name' service
  43.  */
  44. global define string CannotRestartService (string service_name) {
  45.   /* TRANSLATORS: Popup message, %1 is a service name like "smbd" */
  46.   return sformat(_("Cannot restart '%1' service"), service_name);
  47. }
  48.  
  49. /**
  50.  * Cannot stop 'service_name' service
  51.  * @param string service_name
  52.  * @return string Cannot stop 'service_name' service
  53.  */
  54. global define string CannotStopService (string service_name) {
  55.   /* TRANSLATORS: Popup message, %1 is a service name like "smbd" */
  56.   return sformat(_("Cannot stop '%1' service"), service_name);
  57. }
  58.  
  59. /**
  60.  * Cannot write settings to 'destination'
  61.  * @param string destination
  62.  * @return string Cannot write settings to 'destination'
  63.  */
  64. global define string CannotWriteSettingsTo (string destination) {
  65.   /* TRANSLATORS: Popup message, %1 is file or service name like "/tmp/out" or "LDAP" */
  66.   return sformat(_("Cannot write settings to '%1'"), destination);
  67. }
  68.  
  69. /**
  70.  * Cannot write settings to 'destination'\n\nReason: reason
  71.  * @param string destination
  72.  * @param string reason
  73.  * @return string Cannot write settings to 'destination'\n\nReason: reason
  74.  */
  75. global define string CannotWriteSettingsToBecause (string destination, string reason) {
  76.   /* TRANSLATORS: Popup message, %1 is file or service name like "/tmp/out" or "LDAP", %2 is the reason of error */
  77.   return sformat(_("Cannot write settings to '%1'.
  78.  
  79. Reason: %2"), destination, reason);
  80. }
  81.  
  82. /**
  83.  * Error writing file 'file'
  84.  * @param string file
  85.  * @return string Error writing file 'file'
  86.  */
  87. global define string ErrorWritingFile (string file) {
  88.   /* TRANSLATORS: Popup message, %1 is a file name like "/tmp/out" */
  89.   return sformat(_("Error writing file '%1'"), file);
  90. }
  91.  
  92. /**
  93.  * Error writing file 'file'\n\nReason: reason
  94.  * @param string file
  95.  * @param string reason
  96.  * @return string Error writing file 'file'\n\nReason: reason
  97.  */
  98. global define string ErrorWritingFileBecause (string file, string reason) {
  99.   /* TRANSLATORS: Popup message, %1 is a file name like "/tmp/out", %2 is the reason of error */
  100.   return sformat(_("Error writing file '%1'.
  101.  
  102. Reason: %2"), file, reason);
  103. }
  104.  
  105. /**
  106.  * Cannot open file 'file'
  107.  * @param string file
  108.  * @return string Cannot open file 'file'
  109.  */
  110. global define string CannotOpenFile (string file) {
  111.   /* TRANSLATORS: Popup message, %1 is the name of file like "/tmp/in"  */
  112.   return sformat(_("Cannot open file '%1'"), file);
  113. }
  114.  
  115. /**
  116.  * Cannot open file 'file'\n\nReason: reason
  117.  * @param string file
  118.  * @param string reason
  119.  * @return string Cannot open file 'file'\n\nReason: reason
  120.  */
  121. global define string CannotOpenFileBecause (string file, string reason) {
  122.   /* TRANSLATORS: Popup message, %1 is the name of file like "/tmp/in", %2 is the reason of error */
  123.   return sformat(_("Cannot open file '%1'.
  124.  
  125. Reason: %2"), file, reason);
  126. }
  127.  
  128. /**
  129.  * Finished
  130.  * @return string Finished
  131.  */
  132. global define string Finished () {
  133.   /* TRANSLATORS: Progress stage text */
  134.   return _("Finished");
  135. }
  136.  
  137. /**
  138.  * Check the environment
  139.  * @return string Check the environment
  140.  */
  141. global define string CheckEnvironment () {
  142.   /* TRANSLATORS: Progress stage text */
  143.   return _("Check the environment");
  144. }
  145.  
  146. /**
  147.  * UnknownError\n\nReason: reason
  148.  * @param string reason
  149.  * @return string UnknownError\n\nReason: reason
  150.  */
  151. global define string UnknownError (string reason) {
  152.   /* TRANSLATORS: Popup message, %1 is the description of error */
  153.   return sformat(_("Unknown Error.
  154.  
  155. Description: %1"), reason);
  156. }
  157.  
  158. /**
  159.  * Required text item
  160.  * @return This item is required to be filled in
  161.  */
  162. global define string RequiredItem () {
  163.   /* TRANSLATORS: Popup message */
  164.   return _("This item must be completed.");
  165. }
  166.  
  167. /**
  168.  * Question: Directory does not exist. Create it?
  169.  * @return string The directory '%1' does not exist.\nCreate it?
  170.  */
  171. global define string DirectoryDoesNotExistCreate (string directory) {
  172.   /* TRANSLATORS: Popup question */
  173.   return sformat(_("The directory '%1' does not exist.
  174. Create it?"), directory);
  175. }
  176.  
  177. /**
  178.  * Domain has changed, you have to reboot now for domain
  179.  * to take effect
  180.  * @return The domain has changed.\nYou must reboot for the changes to take effect.
  181.  */
  182. global define string DomainHasChangedMustReboot () {
  183.   /* TRANSLATORS: Popup message */
  184.   return _("The domain has changed.
  185. You must reboot for the changes to take effect.");
  186. }
  187.  
  188. /**
  189.  * Push Button / CheckBox for not to disturb with this message again
  190.  * @return string Do Not Show This Message &Again
  191.  */
  192. global define string DoNotShowMessageAgain () {
  193.   /* TRANSLATORS: CheckBox / Button */
  194.   return _("Do Not Show This Message &Again");
  195. }
  196.  
  197. /**
  198.  * Cannot ajust 'service_name' service
  199.  * @param string service_name
  200.  * @return string Cannot adjust 'service_name' service
  201.  */
  202. global define string CannotAdjustService (string service_name) {
  203.   /* TRANSLATORS: Popup message, %1 is a service name like "smbd" */
  204.   return sformat(_("Cannot adjust '%1' service."), service_name);
  205. }
  206.  
  207. /**
  208.  * When some parameter is missing
  209.  * @param string parameter
  210.  * @return string Missing parameter '%1'.
  211.  */
  212. global define string MissingParameter (string parameter) {
  213.   /* TRANSLATORS: Popup message, %1 is a missing-parameter name */
  214.   return sformat(_("Missing parameter '%1'."), parameter);
  215. }
  216.  
  217. /**
  218.  * When is is not able to create directory
  219.  * @param string directory
  220.  * @return string Unable to create directory '%1'.
  221.  */
  222. global define string UnableToCreateDirectory (string directory) {
  223.   /* TRANSLATORS: Popup message, %1 is a directory name */
  224.   return sformat(_("Cannot create directory '%1'."), directory);
  225. }
  226.  
  227. /**
  228.  * When is is not able to read current settings
  229.  * @return string Cannot read current settings.
  230.  */
  231. global define string CannotReadCurrentSettings () {
  232.   /* TRANSLATORS: Popup message */
  233.   return _("Cannot read current settings.");
  234. }
  235.  
  236. /**
  237.  * Running SuSEConfig failed
  238.  * @return string SuSEconfig script failed.
  239.  */
  240. global define string SuSEConfigFailed () {
  241.   /* TRANSLATORS: Popup message */
  242.   return _("SuSEconfig script failed.");
  243. }
  244.  
  245. /**
  246.  * Installing packages failed
  247.  * @return string Failed to install required packages.
  248.  */
  249. global define string FailedToInstallPackages () {
  250.   /* TRANSLATORS: Popup message */
  251.   return _("Failed to install required packages.");
  252. }
  253.  
  254. /* EOF */
  255. }
  256.