diff options
author | Pavel Perminov <packpaul@mail.ru> | 2012-09-26 19:02:53 +0000 |
---|---|---|
committer | Pavel Perminov <packpaul@mail.ru> | 2012-09-26 19:02:53 +0000 |
commit | a0f6fd68a56068a20e7186e2dd2d7daccfbce4aa (patch) | |
tree | c729df922348c49431db745e0d694f228e53e4dc /plugins/Chess4Net/MI/GlobalsLocalUnit.pas | |
parent | d9cd01de6dd3458ad806fdbe1d29108eda55b3e4 (diff) |
Chess4Net_MI 2010.0 release (106 rev. truncated adjusted copy)
git-svn-id: http://svn.miranda-ng.org/main/trunk@1666 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c
Diffstat (limited to 'plugins/Chess4Net/MI/GlobalsLocalUnit.pas')
-rw-r--r-- | plugins/Chess4Net/MI/GlobalsLocalUnit.pas | 31 |
1 files changed, 31 insertions, 0 deletions
diff --git a/plugins/Chess4Net/MI/GlobalsLocalUnit.pas b/plugins/Chess4Net/MI/GlobalsLocalUnit.pas new file mode 100644 index 0000000000..3e1c6018ff --- /dev/null +++ b/plugins/Chess4Net/MI/GlobalsLocalUnit.pas @@ -0,0 +1,31 @@ +unit GlobalsLocalUnit;
+
+// Модуль для глобальных переменных и констант версии для Миранды
+
+interface
+
+uses
+ Graphics;
+
+const
+ CHESS4NET = 'Chess4Net';
+ CHESS4NET_VERSION = 201000; // 2010.0
+ CHESS4NET_TITLE = 'Chess4Net 2010.0 (http://chess4net.ru)';
+ MSG_INVITATION = 'Wellcome to Chess4Net. If you don''t have it, please download it from http://chess4net.ru';
+ PROMPT_HEAD = 'Ch4N';
+ MSG_DATA_SEPARATOR = '&&';
+
+ PLUGIN_NAME = CHESS4NET;
+ PLUGIN_VERSION = CHESS4NET_VERSION;
+ PLUGIN_PLAYING_VIA = 'Plugin for playing chess via Miranda';
+ PLUGIN_INFO_NAME = 'Chess4Net 2010.0.1';
+ PLUGIN_URL = 'http://chess4net.ru';
+ PLUGIN_EMAIL = 'packpaul@mail.ru';
+
+var
+ Chess4NetPath: string;
+ Chess4NetIcon, pluginIcon: TIcon;
+
+implementation
+
+end.
|