Advertisement
Guest User

translate_menus

a guest
May 31st, 2012
49
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.27 KB | None | 0 0
  1. #There's:
  2. # translate: only translate for exact matches (RE "^$match\$"
  3. # subtranslate: translate for matches of RE "^$match"
  4. # substitute: substitute substrings: sed -s "/^$match/$repl/".
  5. # this only works for "substitute x->x", and
  6. # will give interesting results for " substitute x->y".
  7. #
  8. # Language translators: DO NOT USE THIS FILE! (see note on top of this file)
  9. #
  10. # Implement transitory menu layout for menu migration.
  11. #
  12. # Applications [was:Apps]
  13. # Amateur Radio [was:Hamradio]
  14. # Data Management [was:Databases]
  15. # Network [was:Net]
  16. # Science
  17. # Science/Electronics [was:Technical]
  18. # Science/Mathematics [was:Math]
  19. # System
  20. # System/Administration [was:Admin]
  21. # System/Language Environment [was:Language-Environment]
  22. # Terminal Emulators [was:XShells]
  23. # Games
  24. # Action [was:Arcade]
  25. # Blocks [was:Tetris-like]
  26. # Screen
  27. # Saving [was:Save]
  28. # Locking [was:Lock]
  29. # Window Managers [was:WindowManagers]
  30. # FVWM Modules [was:WindowManagers/Modules]
  31.  
  32. # Applications
  33.  
  34. translate section->section
  35. Apps/Hamradio "Apps/Amateur Radio"
  36. endtranslate
  37.  
  38. translate section->section
  39. Apps/Databases "Apps/Data Management"
  40. endtranslate
  41.  
  42. translate section->section
  43. Apps/Net Apps/Network
  44. endtranslate
  45.  
  46. translate section->section
  47. Apps/Math Apps/Science/Mathematics
  48. endtranslate
  49.  
  50. translate section->section
  51. Apps/Technical Apps/Science/Electronics
  52. endtranslate
  53.  
  54. translate section->section
  55. Apps/System/Admin Apps/System/Administration
  56. endtranslate
  57.  
  58. translate section->section
  59. Apps/System/Language-Environment "Apps/System/Language Environment"
  60. endtranslate
  61.  
  62. translate section->section
  63. XShells "Apps/Terminal Emulators"
  64. endtranslate
  65.  
  66. # Games
  67.  
  68. translate section->section
  69. Games/Arcade Games/Action
  70. endtranslate
  71.  
  72. translate section->section
  73. Games/Tetris-like Games/Blocks
  74. endtranslate
  75.  
  76. # Screen
  77.  
  78. translate section->section
  79. Screen/Lock Screen/Locking
  80. endtranslate
  81.  
  82. translate section->section
  83. Screen/Save Screen/Saving
  84. endtranslate
  85.  
  86. # Toplevels
  87.  
  88. substitute section->section
  89. Apps/ Applications/
  90. endtranslate
  91.  
  92. translate section->section
  93. WindowManagers/Modules "FVWM Modules"
  94. endtranslate
  95.  
  96. translate section->section
  97. WindowManagers "Window Managers"
  98. endtranslate
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement