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

Last change on this file since 3753 was 2857, checked in by mjulius, 14 years ago

fixed some more message contexts

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