2005-12-06 [paul] 1.9.100cvs69
[claws.git] / src / plugins / demo / demo.c
index 114eb00d645c5a78b455305e7703925443ec6d28..24b9338679ba2d9c12cdf8555ceb6b39a81fecde 100644 (file)
  *
  * You should have received a copy of the GNU General Public License
  * along with this program; if not, write to the Free Software
- * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
+ * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
  */
 
-#include "intl.h"
+ #include <glib.h>
+#include <glib/gi18n.h>
+
+
 #include "version.h"
 #include "sylpheed.h"
 #include "plugin.h"
@@ -39,7 +42,7 @@ static guint hook_id;
 gint plugin_init(gchar **error)
 {
        if ((sylpheed_get_version() > VERSION_NUMERIC)) {
-               *error = g_strdup("Your sylpheed version is newer then the version the plugin was built with");
+               *error = g_strdup("Your sylpheed version is newer than the version the plugin was built with");
                return -1;
        }
 
@@ -73,7 +76,7 @@ const gchar *plugin_name(void)
 
 const gchar *plugin_desc(void)
 {
-       return _("This Plugin is only a demo of how to write plugins for Sylpheed. "
+       return _("This Plugin is only a demo of how to write plugins for Sylpheed-Claws. "
                 "It installs a hook for new log output and writes it to stdout."
                 "\n\n"
                 "It is not really useful");