[tuxdroid-svn] r4941 - software_suite_v3/smart-core/smart-dev/plugin-toolkit/python/skeleton/trunk/
Status: Beta
Brought to you by:
ks156
|
From: remi <c2m...@c2...> - 2009-06-29 18:35:30
|
Author: remi
Date: 2009-06-29 20:35:24 +0200 (Mon, 29 Jun 2009)
New Revision: 4941
Added:
software_suite_v3/smart-core/smart-dev/plugin-toolkit/python/skeleton/trunk/resources/en.po
software_suite_v3/smart-core/smart-dev/plugin-toolkit/python/skeleton/trunk/resources/fr.po
Modified:
software_suite_v3/smart-core/smart-dev/plugin-toolkit/python/skeleton/trunk/resources/plugin.pot
software_suite_v3/smart-core/smart-dev/plugin-toolkit/python/skeleton/trunk/resources/plugin.xml
Log:
* added a parameter for an alert as example. See last commit.
* added fr and en po files
Added: software_suite_v3/smart-core/smart-dev/plugin-toolkit/python/skeleton/trunk/resources/en.po
===================================================================
--- software_suite_v3/smart-core/smart-dev/plugin-toolkit/python/skeleton/trunk/resources/en.po (rev 0)
+++ software_suite_v3/smart-core/smart-dev/plugin-toolkit/python/skeleton/trunk/resources/en.po 2009-06-29 18:35:24 UTC (rev 4941)
@@ -0,0 +1,44 @@
+msgid "Python plugin skeleton"
+msgstr "Python plugin skeleton"
+
+msgid "Python skeleton."
+msgstr "Python skeleton."
+
+msgid "This is a skeleton to build a python plugin."
+msgstr "This is a skeleton to build a python plugin."
+
+msgid "Simple string parameter"
+msgstr "Simple string parameter"
+
+msgid "Simple integer parameter"
+msgstr "Simple integer parameter"
+
+msgid "Simple boolean parameter"
+msgstr "Simple boolean parameter"
+
+msgid "Simple enumerated parameter"
+msgstr "Simple enumerated parameter"
+
+msgid "Linux only parameter"
+msgstr "Linux only parameter"
+
+msgid "Only for Linux"
+msgstr "Only for Linux"
+
+msgid "Windows only parameter"
+msgstr "Windows only parameter"
+
+msgid "Only for Windows"
+msgstr "Only for Windows"
+
+msgid "Example of parameter for a task"
+msgstr "An alert parameter"
+
+msgid "Simple run command"
+msgstr "Simple run command"
+
+msgid "Daemon run command"
+msgstr "Daemon run command"
+
+msgid "Simple check command"
+msgstr "Simple check command"
Added: software_suite_v3/smart-core/smart-dev/plugin-toolkit/python/skeleton/trunk/resources/fr.po
===================================================================
--- software_suite_v3/smart-core/smart-dev/plugin-toolkit/python/skeleton/trunk/resources/fr.po (rev 0)
+++ software_suite_v3/smart-core/smart-dev/plugin-toolkit/python/skeleton/trunk/resources/fr.po 2009-06-29 18:35:24 UTC (rev 4941)
@@ -0,0 +1,44 @@
+msgid "Python plugin skeleton"
+msgstr "Python plugin skeleton"
+
+msgid "Python skeleton."
+msgstr "Python skeleton."
+
+msgid "This is a skeleton to build a python plugin."
+msgstr "Ceci est un skeleton pour construire un plugin python."
+
+msgid "Simple string parameter"
+msgstr "Simple paramètre string"
+
+msgid "Simple integer parameter"
+msgstr "Simple paramètre integer"
+
+msgid "Simple boolean parameter"
+msgstr "Simple paramètre boolean"
+
+msgid "Simple enumerated parameter"
+msgstr "Simple paramètre enumerated"
+
+msgid "Linux only parameter"
+msgstr "Paramètre Linux"
+
+msgid "Only for Linux"
+msgstr "Seulement pour Linux"
+
+msgid "Windows only parameter"
+msgstr "Paramètre Windows"
+
+msgid "Only for Windows"
+msgstr "Seulement pour Windows"
+
+msgid "Example of parameter for a task"
+msgstr "Un paramètre pour alerte"
+
+msgid "Simple run command"
+msgstr "Commande run simple"
+
+msgid "Daemon run command"
+msgstr "Commande daemon simple"
+
+msgid "Simple check command"
+msgstr "Commande check simple"
Modified: software_suite_v3/smart-core/smart-dev/plugin-toolkit/python/skeleton/trunk/resources/plugin.pot
===================================================================
--- software_suite_v3/smart-core/smart-dev/plugin-toolkit/python/skeleton/trunk/resources/plugin.pot 2009-06-29 18:25:10 UTC (rev 4940)
+++ software_suite_v3/smart-core/smart-dev/plugin-toolkit/python/skeleton/trunk/resources/plugin.pot 2009-06-29 18:35:24 UTC (rev 4941)
@@ -31,6 +31,9 @@
msgid "Only for Windows"
msgstr ""
+msgid "Example of parameter for a task"
+msgstr ""
+
msgid "Simple run command"
msgstr ""
Modified: software_suite_v3/smart-core/smart-dev/plugin-toolkit/python/skeleton/trunk/resources/plugin.xml
===================================================================
--- software_suite_v3/smart-core/smart-dev/plugin-toolkit/python/skeleton/trunk/resources/plugin.xml 2009-06-29 18:25:10 UTC (rev 4940)
+++ software_suite_v3/smart-core/smart-dev/plugin-toolkit/python/skeleton/trunk/resources/plugin.xml 2009-06-29 18:35:24 UTC (rev 4941)
@@ -50,6 +50,13 @@
type="string"
defaultValue="Only for Windows"
platform="windows"/>
+ <parameter
+ name="myCheckerParam"
+ description="Example of parameter for a task"
+ type="string"
+ defaultValue="This is a test"
+ platform="all"
+ task="My checker" />
</parameters>
<commands>
<command
|