001 // License: GPL. Copyright 2007 by Immanuel Scholz and others
002 package org.openstreetmap.josm.actions.audio;
003
004 import static org.openstreetmap.josm.gui.help.HelpUtil.ht;
005 import static org.openstreetmap.josm.tools.I18n.tr;
006 import static org.openstreetmap.josm.tools.I18n.trc;
007
008 import java.awt.event.KeyEvent;
009
010 import org.openstreetmap.josm.tools.Shortcut;
011
012 public class AudioFasterAction extends AudioFastSlowAction {
013
014 public AudioFasterAction() {
015 super(trc("audio", "Faster"), "audio-faster", trc("audio", "Faster Forward"),
016 Shortcut.registerShortcut("audio:faster", tr("Audio: {0}", trc("audio", "Faster")), KeyEvent.VK_F9, Shortcut.DIRECT), true);
017 this.putValue("help", ht("/Action/AudioFaster"));
018 }
019 }