Skip to content

Commit

Permalink
localised text
Browse files Browse the repository at this point in the history
  • Loading branch information
JPMoresmau committed Mar 1, 2012
1 parent b0ab681 commit 2d7d0b8
Show file tree
Hide file tree
Showing 2 changed files with 28 additions and 0 deletions.
@@ -0,0 +1,24 @@
/**
* Copyright (c) 2012 by JP Moresmau
* This code is made available under the terms of the Eclipse Public License,
* version 1.0 (EPL). See http://www.eclipse.org/legal/epl-v10.html
*/
package net.sf.eclipsefp.haskell.hlint.util;

import org.eclipse.osgi.util.NLS;

/**
* @author JP Moresmau
*
*/
public class HLintText extends NLS {
public static String error_run;
public static String suggestion_found;
public static String suggestion_post;

private static final String BUNDLE_NAME = HLintText.class.getPackage().getName() + ".hlint"; //$NON-NLS-1$

static {
NLS.initializeMessages(BUNDLE_NAME, HLintText.class);
}
}
@@ -0,0 +1,4 @@
error_run=Error running hlint

suggestion_found=Found:
suggestion_post=Why not:

0 comments on commit 2d7d0b8

Please sign in to comment.