Skip to content

Commit

Permalink
Markdown: Fix I18N setup
Browse files Browse the repository at this point in the history
  • Loading branch information
b4n committed Feb 25, 2013
1 parent 3d8b39c commit c76a22d
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 4 deletions.
1 change: 1 addition & 0 deletions markdown/src/conf.c
Expand Up @@ -21,6 +21,7 @@
*
*/

#include "config.h"
#include <string.h>
#include <gtk/gtk.h>
#include <geanyplugin.h>
Expand Down
10 changes: 6 additions & 4 deletions markdown/src/plugin.c
Expand Up @@ -19,6 +19,7 @@
* MA 02110-1301, USA.
*/

#include "config.h"
#include <geanyplugin.h>
#include "viewer.h"
#include "conf.h"
Expand All @@ -29,10 +30,11 @@ GeanyFunctions *geany_functions;

PLUGIN_VERSION_CHECK(211)

PLUGIN_SET_INFO("Markdown",
_("Real-time Markdown preview"),
"0.01",
"Matthew Brush <mbrush@codebrainz.ca>")
PLUGIN_SET_TRANSLATABLE_INFO(LOCALEDIR, GETTEXT_PACKAGE,
"Markdown",
_("Real-time Markdown preview"),
"0.01",
"Matthew Brush <mbrush@codebrainz.ca>")

/* Should be defined by build system, this is just a fallback */
#ifndef MARKDOWN_DATA_DIR
Expand Down

0 comments on commit c76a22d

Please sign in to comment.