#include "lang.h"

/**
 * Copyright (C) 2001-2006 Tino Reichardt
 *
 * This program is free software; you can redistribute it and/or modify
 * it under the terms of the GNU General Public License Version 2, as
 * published by the Free Software Foundation.
 *
 * This program is distributed in the hope that it will be useful,
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 * GNU General Public License for more details.
 *
 * 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., 675 Mass Ave, Cambridge, MA 02139, USA.
 */

char *lang_en[] = {
/* HEADLINES */
/* 0 */ "status:",
/* 1 */ "method:",
/* 2 */ "repeat:",
/* 3 */ "cdinfo:",
/* 4 */ "volume:",
/* 5 */ "track:",
/* 6 */ "playlist:",
/* 7 */ "whole cd:",
/* 8 */ "tracklist:",

/* REPEATING */
/* 0 */ "off",
/* 1 */ "track",
/* 2 */ "full list",

/* DISC STATUS */
/* 0 */  "no disc",
/* 1 */  "please insert a cd",
/* 2 */  "reading cd",
/* 3 */  "disc okay",

/* AUDIO STATUS */
/* 0 */  "playing",
/* 1 */  "paused",
/* 2 */  "completed",
/* 3 */  "error",
/* 4 */  "no status",

/* EXTRA STATUS  */
/* 0 */  "opening cdrom",
/* 1 */  "reading cdrom",
/* 2 */  "closing cdrom",

/* METHOD */
/* 0 */  "normal",
/* 1 */  "playlist",
/* 3 */  "intro",
/* 4 */  "shuffle",

/* ERRORS */
/* 0 */ "couldn't lstat() cdrom device",
/* 1 */ "$CDROM isn't a valid device file",
/* 2 */ "couldn't open cd device",
/* 3 */ "terminal should be at least 65x20!",

/* TRACK DATABASE */
/* 0 */ "resolving ",
/* 1 */ "couldn't resolve ",
/* 2 */ "connecting to ",
/* 3 */ "couldn't connect to ",
/* 4 */ "the cddb server doesn't allow posting",

/* MSG_ABORT and MSG_CONTINUE */
/* 0 */ "[ ] press space continue ...",
/* 1 */ " ",
/* 2 */ "[q] abort ...",
/* 3 */ "q",

/* MSG_READ_xxx */
/* 0 */ "where do you want to get the information from?",
/* 1 */ "[t] cd text from current cdrom",
/* 2 */ "[l] local cddb file",
/* 3 */ "[w] workman database",
/* 4 */ "[c] remote cddb file via cddbp",
/* 5 */ "[h] remote cddb file via http",
/* 6 */ "tlwch", /* these are the keys, which should be pressed! */

/* MSG_EDIT_xxx */
/* 0 */ "which database do you want to edit?",
/* 1 */ "[l] local cddb file",
/* 2 */ "[w] workman database",
/* 3 */ "lw", /* these are the keys, which should be pressed! */

/* MSG_SAVE_xxx */
/* 0 */ "where should the data be saved / submitted?",
/* 1 */ "[l] save to local cddb file",
/* 2 */ "[c] submit to remote cddb server",
/* 3 */ "[h] submit to remote http server",
/* 4 */ "[e] remote cddb file via email",
/* 5 */ "lche", /* these are the keys, which should be pressed! */

/* MSG_CATEGORYxx */
/*  0 */ "In what category should we submit?",
/*  1 */ "[0] blues",
/*  2 */ "[1] classical",
/*  3 */ "[2] country",
/*  4 */ "[3] data",
/*  5 */ "[4] folk",
/*  6 */ "[5] jazz",
/*  7 */ "[6] misc",
/*  8 */ "[7] newage",
/*  9 */ "[8] reggae",
/* 10 */ "[9] rock",
/* 11 */ "[a] soundtrack",
/* 12 */ "0123456789a", /* these are the keys, which should be pressed! */

/* MSG_SUBMITMODExx */
/*  0 */ "Soll nur ein Testsubmit oder richtig ... ?",
/*  1 */ "[0] test",
/*  2 */ "[1] richtig",
/*  3 */ "01" /* these are the keys, which should be pressed! */

};

