source: josm/trunk/src/org/openstreetmap/josm/actions/audio/AudioFasterAction.java@ 3754

Last change on this file since 3754 was 3754, checked in by stoecker, 13 years ago

some cleanups in help page marking

  • Property svn:eol-style set to native
File size: 740 bytes
Line 
1// License: GPL. Copyright 2007 by Immanuel Scholz and others
2package org.openstreetmap.josm.actions.audio;
3
4import static org.openstreetmap.josm.gui.help.HelpUtil.ht;
5import static org.openstreetmap.josm.tools.I18n.tr;
6import static org.openstreetmap.josm.tools.I18n.trc;
7
8import java.awt.event.KeyEvent;
9
10import org.openstreetmap.josm.tools.Shortcut;
11
12public class AudioFasterAction extends AudioFastSlowAction {
13
14 public AudioFasterAction() {
15 super(trc("audio", "Faster"), "audio-faster", trc("audio", "Faster Forward"),
16 Shortcut.registerShortcut("audio:faster", tr("Audio: {0}", trc("audio", "Faster")), KeyEvent.VK_F9, Shortcut.GROUP_DIRECT), true);
17 this.putValue("help", ht("/Action/AudioFaster"));
18 }
19}
Note: See TracBrowser for help on using the repository browser.