summaryrefslogtreecommitdiff
path: root/src/i18n.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/i18n.h')
-rw-r--r--src/i18n.h56
1 files changed, 0 insertions, 56 deletions
diff --git a/src/i18n.h b/src/i18n.h
deleted file mode 100644
index 2b18bbc..0000000
--- a/src/i18n.h
+++ /dev/null
@@ -1,56 +0,0 @@
-#ifndef I18N_H
-#define I18N_H
-
-#include "config.h"
-#include "catalog.h"
-
-#include <stdio.h>
-
-
-enum MSGCATALOG_ID {
- MSG_USAGE_FIRST = 1,
- MSG_USAGE_1,
- MSG_USAGE_2,
- MSG_USAGE_LAST,
- MSG_HELP_FIRST,
- MSG_HELP_1,
- MSG_HELP_2,
- MSG_HELP_3,
- MSG_HELP_4,
- MSG_HELP_5,
- MSG_HELP_6,
- MSG_HELP_7,
- MSG_HELP_8,
- MSG_HELP_9,
- MSG_HELP_10,
- MSG_HELP_11,
- MSG_HELP_12,
- MSG_HELP_13,
- MSG_HELP_14,
- MSG_HELP_15,
- MSG_HELP_16,
- MSG_HELP_17,
- MSG_HELP_18,
- MSG_HELP_19,
- MSG_HELP_20,
- MSG_HELP_21,
- MSG_HELP_22,
- MSG_HELP_23,
- MSG_HELP_24,
- MSG_HELP_25,
- MSG_HELP_26,
- MSG_HELP_27,
- MSG_HELP_28,
- MSG_HELP_LAST,
- MSG_VERSION,
- MSG_ERR_NAPI_MISSING_ERRSTR,
-};
-
-
-extern const char *const
-MSGS[];
-
-#define _(msg_id) s(MSGS, msg_id)
-
-
-#endif