• R/O
  • SSH
  • HTTPS

Commit

Frequently used words (click to add to your profile)

javac++androidlinuxc#windowsobjective-ccocoa誰得qtpythonphprubygameguibathyscaphec計画中(planning stage)翻訳omegatframeworktwitterdomtestvb.netdirectxゲームエンジンbtronarduinopreviewer

OmegaT の参考訳文数をビープ音で知らせるプラグインです。


Commit MetaInfo

Revision2 (tree)
Zeit2013-08-01 00:10:49
Autoryu-tang

Log Message

バージョン表示を追加

Ändern Zusammenfassung

Diff

--- trunk/src/org/omegat/plugin/matchesbeeper/VersionInfo.java (nonexistent)
+++ trunk/src/org/omegat/plugin/matchesbeeper/VersionInfo.java (revision 2)
@@ -0,0 +1,36 @@
1+/**************************************************************************
2+ MatchesNotifier - Notice you how many matches found.
3+
4+ Copyright (C) 2013 Yu Tang
5+ Home page: http://sourceforge.jp/users/yu-tang/
6+ Support center: http://sourceforge.jp/users/yu-tang/
7+
8+ This file is part of plugin for OmegaT.
9+ http://www.omegat.org/
10+
11+ License: GNU GPL version 3 or (at your option) any later version.
12+
13+ You should have received a copy of the GNU General Public License
14+ along with this program. If not, see <http://www.gnu.org/licenses/>.
15+ **************************************************************************/
16+
17+package org.omegat.plugin.matchesbeeper;
18+
19+import javax.swing.JOptionPane;
20+
21+/**
22+ *
23+ * @author Yu-Tang
24+ */
25+public class VersionInfo {
26+
27+ private static final String APP_NAME = "MatchesBeeper";
28+ private static final String APP_VERSION = "0.1";
29+ private static final String APP_BUILD = "20130801";
30+ private static final String APP_AUTHOR = "Yu-Tang";
31+
32+ public static void main(String[] args) {
33+ JOptionPane.showMessageDialog(null,
34+ APP_NAME + " ver." + APP_VERSION + "." + APP_BUILD + "\nby " + APP_AUTHOR);
35+ }
36+}