77 lines
1.9 KiB
C
77 lines
1.9 KiB
C
/*
|
|
* Copyright (C) 2009, 2010 by Nicole Faerber <nicole.faerber@dpin.de>
|
|
*
|
|
* This program is free software; you can redistribute it and/or
|
|
* modify it under the terms of the GNU General Public License
|
|
* as published by the Free Software Foundation; either version
|
|
* 2 of the License, or (at your option) any later version.
|
|
*
|
|
*/
|
|
|
|
const char *PTY_text[] = {
|
|
"No programme type or undefined",
|
|
"News",
|
|
"Current Affairs",
|
|
"Information",
|
|
"Sport",
|
|
"Education",
|
|
"Drama",
|
|
"Culture",
|
|
"Science",
|
|
"Varied",
|
|
"Pop Music",
|
|
"Rock Music",
|
|
"Easy Listening Music",
|
|
"Light classical",
|
|
"Serious classical",
|
|
"Other Music",
|
|
"Weather",
|
|
"Finance",
|
|
"Children's programmes",
|
|
"Social Affairs",
|
|
"Religion",
|
|
"Phone In",
|
|
"Travel",
|
|
"Leisure",
|
|
"Jazz Music",
|
|
"Country Music",
|
|
"National Music",
|
|
"Oldies Music",
|
|
"Folk Music",
|
|
"Documentary",
|
|
"Alarm Test",
|
|
"Alarm"
|
|
};
|
|
|
|
const char *ECC_text[] = {
|
|
/* 0 1 2 3 4 5 6 7 8 9 A B C D E F */
|
|
/*E0*/ "DE", "DZ", "AD", "IL", "IT", "BE", "RU", "PS","AL", "AT", "HU", "MT", "DE", "" , "EG", "",
|
|
/*E1*/ "GR", "CY", "SM", "CH", "JO", "FI", "LU", "BG","DK", "GI", "IQ", "GB", "LY", "RO", "FR", "",
|
|
/*E2*/ "MA", "CZ", "PL", "VA", "SK", "SY", "TN", "" ,"LI", "IS", "MC", "LT", "YU", "ES", "NO", "",
|
|
/*E3*/ "" , "IE", "TR", "MK", "" , "" , "" , "NL","LV", "LB", "" , "HR", "" , "SE", "BY", "",
|
|
/*E4*/ "MD", "EE", "" , "" , "" , "UA", "" , "PT","SI", "" , "" , "" , "" , "" , "BA", "",
|
|
};
|
|
|
|
const char *ptype_stext[] = {
|
|
"L", "I", "N", "S", "R1", "R2", "R3", "R4", "R5", "R6","R7", "R8", "R9", "R10", "R11", "R12"
|
|
};
|
|
|
|
const char *ptype_ltext[] = {
|
|
"Local",
|
|
"International",
|
|
"National",
|
|
"Supra-regional",
|
|
"Regional 1",
|
|
"Regional 2",
|
|
"Regional 3",
|
|
"Regional 4",
|
|
"Regional 5",
|
|
"Regional 6",
|
|
"Regional 7",
|
|
"Regional 8",
|
|
"Regional 9",
|
|
"Regional 10",
|
|
"Regional 11",
|
|
"Regional 12"
|
|
};
|
|
|