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 / Label.ycp < prev    next >
Text File  |  2006-11-29  |  7KB  |  407 lines

  1. /**
  2.  * File:    modules/Label.ycp
  3.  * Package:    yast2
  4.  * Summary:    Often used messages and button labels
  5.  * Authors:    Gabriele Strattner <gs@suse.de>
  6.  *        Stefan Hundhammer <sh@suse.de>
  7.  *        Arvin Schnell <arvin@suse.de>
  8.  * Flags:    Stable
  9.  *
  10.  * $Id: Label.ycp 31242 2006-06-01 12:59:16Z locilka $
  11.  *
  12.  * See also <a href="../README.popups">README.popups</a>
  13.  */
  14.  
  15. {
  16.  
  17. module "Label";
  18. textdomain "base";
  19.  
  20. /**
  21.  * Add Button
  22.  */
  23. global define string AddButton() {
  24.   /* Button label */
  25.   return _("&Add");
  26. }
  27.  
  28. /**
  29.  * Cancel Button
  30.  */
  31. global define string CancelButton() {
  32.   /* Button label */
  33.   return _("&Cancel");
  34. }
  35.  
  36. /**
  37.  * Continue Button
  38.  */
  39. global define string ContinueButton() {
  40.   /* Button label */
  41.   return _("C&ontinue");
  42. }
  43.  
  44. /**
  45.  * Yes Button
  46.  */
  47. global define string YesButton() {
  48.   /* Button label */
  49.   return _("&Yes");
  50. }
  51.  
  52. /**
  53.  * No Button
  54.  */
  55. global define string NoButton() {
  56.   /* Button label */
  57.   return _("&No");
  58. }
  59.  
  60. /**
  61.  * Finish Button
  62.  */
  63. global define string FinishButton() {
  64.   /* Button label */
  65.   return _("&Finish");
  66. }
  67.  
  68. /**
  69.  * Edit Button
  70.  */
  71. global define string EditButton() {
  72.   /* Button label */
  73.   return _("Ed&it");
  74. }
  75.  
  76. /**
  77.  * OK Button
  78.  */
  79. global define string OKButton() {
  80.   /* Button label */
  81.   return _("&OK");
  82. }
  83.  
  84. /**
  85.  * Abort Button
  86.  */
  87. global define string AbortButton() {
  88.     /* Button label */
  89.     return _("Abo&rt");
  90. }
  91.  
  92. /**
  93.  * Abort Installation Button
  94.  */
  95. global define string AbortInstallationButton () {
  96.     /* Button label */
  97.     return _("Abo&rt Installation");
  98. }
  99.  
  100. /**
  101.  * Ignore Button
  102.  */
  103. global define string IgnoreButton() {
  104.   /* Button label */
  105.   return _("&Ignore");
  106. }
  107.  
  108. /**
  109.  * Next Button
  110.  */
  111. global define string NextButton() {
  112.   /* Button label */
  113.   return _("&Next");
  114. }
  115.  
  116. /**
  117.  * New Button
  118.  */
  119. global define string NewButton() {
  120.   /* Button label */
  121.   return _("Ne&w");
  122. }
  123.  
  124. /**
  125.  * Delete Button
  126.  */
  127. global define string DeleteButton() {
  128.   /* Button label */
  129.   return _("Dele&te");
  130. }
  131.  
  132. /**
  133.  * Back Button
  134.  */
  135. global define string BackButton() {
  136.   /* Button label */
  137.   return _("&Back");
  138. }
  139.  
  140. /**
  141.  * Accept Button
  142.  */
  143. global define string AcceptButton() {
  144.   /* Button label */
  145.   return _("&Accept");
  146. }
  147.  
  148. /**
  149.  * Do Not Accept Button
  150.  */
  151. global define string DoNotAcceptButton() {
  152.   /* Button label */
  153.   return _("&Do Not Accept");
  154. }
  155.  
  156. /**
  157.  * Quit Button
  158.  */
  159. global define string QuitButton() {
  160.   /* Button label */
  161.   return _("&Quit");
  162. }
  163.  
  164. /**
  165.  * Retry Button
  166.  */
  167. global define string RetryButton() {
  168.   /* Button label */
  169.   return _("Retr&y");
  170. }
  171.  
  172. /**
  173.  * Replace Button
  174.  */
  175. global define string ReplaceButton() {
  176.   /* Button label */
  177.   return _("&Replace");
  178. }
  179.  
  180. /**
  181.  * Up Button
  182.  */
  183. global define string UpButton() {
  184.   /* Button label */
  185.   return _("&Up");
  186. }
  187.  
  188. /**
  189.  * Down Button
  190.  */
  191. global define string DownButton() {
  192.   /* Button label */
  193.   return _("Do&wn");
  194. }
  195.  
  196. /**
  197.  * Select Button
  198.  */
  199. global define string SelectButton() {
  200.   /* Button label */
  201.   return _("Sele&ct");
  202. }
  203.  
  204. /**
  205.  * Remove Button
  206.  */
  207. global define string RemoveButton() {
  208.   /* Button label */
  209.   return _("Remo&ve");
  210. }
  211.  
  212. /**
  213.  * Refresh Button
  214.  */
  215. global define string RefreshButton() {
  216.   /* Button label */
  217.   return _("&Refresh");
  218. }
  219.  
  220. /**
  221.  * Help Button
  222.  */
  223. global define string HelpButton() {
  224.   /* Button label */
  225.   return _("&Help");
  226. }
  227.  
  228. /**
  229.  * Install Button
  230.  */
  231. global define string InstallButton() {
  232.   /* Button label */
  233.   return _("&Install");
  234. }
  235.  
  236. /**
  237.  * Don't Install Button
  238.  */
  239. global define string DontInstallButton() {
  240.   /* Button label */
  241.   return _("&Do Not Install");
  242. }
  243.  
  244. /**
  245.  * Download Button
  246.  */
  247. global define string DownloadButton() {
  248.   /* Button label */
  249.   return _("&Download");
  250. }
  251.  
  252. /**
  253.  * Save Button
  254.  */
  255. global define string SaveButton() {
  256.   /* Button label */
  257.   return _("&Save");
  258. }
  259.  
  260. /**
  261.  * Stop Button
  262.  */
  263. global define string StopButton() {
  264.   /* Button label */
  265.   return _("&Stop");
  266. }
  267.  
  268. /**
  269.  * Close Button
  270.  */
  271. global define string CloseButton() {
  272.   /* Button label */
  273.   return _("C&lose");
  274. }
  275.  
  276. /**
  277.  * Browse Button
  278.  */
  279. global define string BrowseButton() {
  280.   /* Button label */
  281.   return _("Bro&wse...");
  282. }
  283.  
  284. /**
  285.  * Create Button
  286.  */
  287. global define string CreateButton() {
  288.   /* Button label */
  289.   return _("Crea&te");
  290. }
  291.  
  292. /**
  293.  * Warning Message
  294.  */
  295. global define string WarningMsg() {
  296.   // this string is usually used as headline of a popup
  297.   return _("Warning");
  298. }
  299.  
  300. /**
  301.  * Error Message
  302.  */
  303. global define string ErrorMsg() {
  304.   // this string is usually used as headline of a popup
  305.   return _("Error");
  306. }
  307.  
  308. /**
  309.  * Please wait Message
  310.  */
  311. global define string PleaseWaitMsg() {
  312.   // this string is usually used as headline of a popup
  313.   return _("Please wait...");
  314. }
  315.  
  316. /**
  317.  * Default function key map
  318.  */
  319. global define map<string, integer> DefaultFunctionKeyMap() {
  320.     map<string, integer> fkeys = $[];
  321.  
  322.     // A map only accepts constants as keys, so we have to add() each
  323.     // item. It will always be a term since it has to go through the
  324.     // translator.
  325.  
  326.     fkeys = add( fkeys, HelpButton()        , 1 );
  327.     fkeys = add( fkeys, AddButton()        , 3 );
  328.     fkeys = add( fkeys, EditButton()        , 4 );
  329.     fkeys = add( fkeys, DeleteButton()        , 5 );
  330.     fkeys = add( fkeys, BackButton()        , 8 );
  331.  
  332.     // Negative Answers: [F9]
  333.     fkeys = add( fkeys, CancelButton()        , 9 );
  334.     fkeys = add( fkeys, NoButton()        , 9 );
  335.     fkeys = add( fkeys, DoNotAcceptButton()    , 9 );
  336.     fkeys = add( fkeys, DontInstallButton()    , 9 );
  337.     fkeys = add( fkeys, QuitButton()        , 9 );
  338.  
  339.     // Positive Answers: [F10]
  340.     fkeys = add( fkeys, OKButton()        , 10 );
  341.     fkeys = add( fkeys, AcceptButton()        , 10 );
  342.     fkeys = add( fkeys, YesButton()        , 10 );
  343.     fkeys = add( fkeys, CloseButton()        , 10 );
  344.     fkeys = add( fkeys, ContinueButton()    , 10 );
  345.     fkeys = add( fkeys, FinishButton()        , 10 );
  346.     fkeys = add( fkeys, InstallButton()        , 10 );
  347.     fkeys = add( fkeys, NextButton()        , 10 );
  348.     fkeys = add( fkeys, SaveButton()        , 10 );
  349.  
  350.     return fkeys;
  351. }
  352.  
  353. /* LABEL -- MESSAGES FOR ANOTHER WIDGETS */
  354.  
  355. /* TextEntry */
  356.  
  357. /**
  358.  * File Name TextEntry
  359.  */
  360. global define string FileName() {
  361.   /* TextEntry Label */
  362.   return _("&Filename");
  363. }
  364.  
  365. /**
  366.  * Password TextEntry
  367.  */
  368. global define string Password() {
  369.   /* TextEntry Label */
  370.   return _("&Password");
  371. }
  372.  
  373. /**
  374.  * Confirm Password TextEntry
  375.  */
  376. global define string ConfirmPassword() {
  377.   /* TextEntry Label */
  378.   return _("C&onfirm Password");
  379. }
  380.  
  381. /**
  382.  * Port TextEntry
  383.  */
  384. global define string Port() {
  385.   /* TextEntry Label */
  386.   return _("&Port");
  387. }
  388.  
  389. /**
  390.  * Host Name TextEntry
  391.  */
  392. global define string HostName() {
  393.   /* TextEntry Label */
  394.   return _("&Hostname");
  395. }
  396.  
  397. /**
  398.  * Options TextEntry
  399.  */
  400. global define string Options() {
  401.   /* TextEntry Label */
  402.   return _("&Options");
  403. }
  404.  
  405. /* EOF */
  406. }
  407.