diff options
author | Bill Allombert <ballombe@debian.org> | 2011-11-16 12:33:27 +0100 |
---|---|---|
committer | Igor Pashev <pashev.igor@gmail.com> | 2013-03-05 16:39:28 +0000 |
commit | dd7279795c97aa356727d366a2149c9bc838b496 (patch) | |
tree | a87d19d2e5220f5b38aec3b5b036235a59f971c9 /examples/translate_menus | |
download | menu-debian/2.1.46.tar.gz |
Imported Debian version 2.1.46debian/2.1.46
Diffstat (limited to 'examples/translate_menus')
-rw-r--r-- | examples/translate_menus | 99 |
1 files changed, 99 insertions, 0 deletions
diff --git a/examples/translate_menus b/examples/translate_menus new file mode 100644 index 0000000..58400a7 --- /dev/null +++ b/examples/translate_menus @@ -0,0 +1,99 @@ +#There's: +# translate: only translate for exact matches (RE "^$match\$" +# subtranslate: translate for matches of RE "^$match" +# substitute: substitute substrings: sed -s "/^$match/$repl/". +# this only works for "substitute x->x", and +# will give interesting results for " substitute x->y". +# +# Language translators: DO NOT USE THIS FILE! (see note on top of this file) +# +# Implement transitory menu layout for menu migration. +# +# Applications [was:Apps] +# Amateur Radio [was:Hamradio] +# Data Management [was:Databases] +# Network [was:Net] +# Science +# Science/Electronics [was:Technical] +# Science/Mathematics [was:Math] +# System +# System/Administration [was:Admin] +# System/Language Environment [was:Language-Environment] +# Terminal Emulators [was:XShells] +# Games +# Action [was:Arcade] +# Blocks [was:Tetris-like] +# Screen +# Saving [was:Save] +# Locking [was:Lock] +# Window Managers [was:WindowManagers] +# FVWM Modules [was:WindowManagers/Modules] + +# Applications + +translate section->section + Apps/Hamradio "Apps/Amateur Radio" +endtranslate + +translate section->section + Apps/Databases "Apps/Data Management" +endtranslate + +translate section->section + Apps/Net Apps/Network +endtranslate + +translate section->section + Apps/Math Apps/Science/Mathematics +endtranslate + +translate section->section + Apps/Technical Apps/Science/Electronics +endtranslate + +translate section->section + Apps/System/Admin Apps/System/Administration +endtranslate + +translate section->section + Apps/System/Language-Environment "Apps/System/Language Environment" +endtranslate + +translate section->section + XShells "Apps/Terminal Emulators" +endtranslate + +# Games + +translate section->section + Games/Arcade Games/Action +endtranslate + +translate section->section + Games/Tetris-like Games/Blocks +endtranslate + +# Screen + +translate section->section + Screen/Lock Screen/Locking +endtranslate + +translate section->section + Screen/Save Screen/Saving +endtranslate + +# Toplevels + +substitute section->section + Apps/ Applications/ +endtranslate + +translate section->section + WindowManagers/Modules "FVWM Modules" +endtranslate + +translate section->section + WindowManagers "Window Managers" +endtranslate + |