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

  1. /**************
  2. FILE          : XMessages.ycp
  3. ***************
  4. PROJECT       : YaST2 - Yet another Setup Tool
  5.               :
  6. AUTHOR        : Marcus Sch├ñfer <ms@suse.de>
  7.               :
  8. BELONGS TO    : YaST2 - X11 integration part using SaX2/libsax
  9.               :
  10. DESCRIPTION   : YaST module: Provide global message descriptions
  11.               : used in all modules concering the X11 configuration
  12.               : the translation will be mapped to an internal key
  13.               :
  14. STATUS        : Development
  15. **************/
  16. /*! \brief YaST2 - X11 configuration interface
  17. *
  18. * File:        XMessages.ycp
  19. * Package:     X11 Configuration
  20. * Summary:     Main Module started if yast2 x11 is called
  21. * Authors:     Marcus Schaefer <ms@suse.de>
  22. */
  23. { // begin
  24. module "XMessages";
  25.  
  26. textdomain "x11";
  27. //=============================================
  28. // popup with message already showed
  29. //---------------------------------------------
  30. global boolean popupDone = false;
  31.  
  32. //=============================================
  33. // some packages required are missing
  34. //---------------------------------------------
  35. global string pacsMissing = _("
  36. The following packages are missing:
  37. %1
  38. Install them now?
  39. ");
  40.  
  41. //=============================================
  42. // help text for commandline mode
  43. //---------------------------------------------
  44. global string helpCMD = _("
  45. X11 configuration module.
  46. ");
  47.  
  48. //=============================================
  49. // color key
  50. //---------------------------------------------
  51. global string colors = _("Colors");
  52.  
  53. //=============================================
  54. // graphics card
  55. //---------------------------------------------
  56. global string graphicsCard = _("Graphics card: ");
  57.  
  58. //=============================================
  59. // monitor
  60. //---------------------------------------------
  61. global string monitor = _("Monitor: ");
  62.  
  63. //=============================================
  64. // colorDepth
  65. //---------------------------------------------
  66. global string colorDepth = _("Colordepth: ");
  67.  
  68. //=============================================
  69. // deactivated
  70. //---------------------------------------------
  71. global string deactivated = _("Deactivated");
  72.  
  73. //=============================================
  74. // activated
  75. //---------------------------------------------
  76. global string activated = _("Activated");
  77.  
  78. //=============================================
  79. // 3D acceleration
  80. //---------------------------------------------
  81. global string acceleration = _("3D Acceleration: ");
  82.  
  83. //=============================================
  84. // External VGA on NoteBooks
  85. //---------------------------------------------
  86. global string externalvga = _("Dual Head Mode: ");
  87.  
  88. //=============================================
  89. // selectColorDepth
  90. //---------------------------------------------
  91. global string selectColorDepth = _("Select color depth:");
  92.  
  93. //=============================================
  94. // selectResolution
  95. //---------------------------------------------
  96. global string selectResolution = _("Select resolution:");
  97.  
  98. //=============================================
  99. // selectMonitor
  100. //---------------------------------------------
  101. global string selectMonitor = _("Select Monitor Vendor and Model:");
  102.  
  103. //=============================================
  104. // selectLink
  105. //---------------------------------------------
  106. global string selectLink = _("Click the underlined setting to change.");
  107.  
  108. //=============================================
  109. // Scale unit for display traversal
  110. //---------------------------------------------
  111. global string Inches = _("Inches");
  112.  
  113. //=============================================
  114. // Scale unit for display aspect
  115. //---------------------------------------------
  116. global string Aspect = _("Aspect");
  117.  
  118. //=============================================
  119. // selectDisplaySize
  120. //---------------------------------------------
  121. global string selectDisplayTraversal = _("Traversal") + " [ " + Inches + " ]:";
  122. global string selectDisplayRatio = _("Aspect Ratio:");
  123.  
  124. //=============================================
  125. // proposal menu and title text
  126. //---------------------------------------------
  127. global string proposalTitle     = _("Graphics Cards");
  128. global string proposalMenuTitle = _("&Graphics Cards");
  129.  
  130. //=============================================
  131. // selectTest
  132. //---------------------------------------------
  133. global string testConfig = _("Test the Configuration");
  134.  
  135. //=============================================
  136. // Unconfigured
  137. //---------------------------------------------
  138. global string unconfigured = _("Unconfigured");
  139.  
  140. //=============================================
  141. // warnNoteBook
  142. //---------------------------------------------
  143. global string warnNoteBook = _("\nDual head mode is not supported with this laptop.\n");
  144.  
  145. } // end
  146.