/* * credits.h --- Workrave credits * * Copyright (C) 2007 Rob Caelers * All rights reserved. * * 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, or (at your option) * any later version. * * 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. */ #ifndef CREDITS_H #define CREDITS_H #include const char *workrave_copyright = "Copyright 2001-2007 Rob Caelers & Raymond Penners"; const char *workrave_authors[] = { "Rob Caelers ", "Raymond Penners ", NULL }; const char *workrave_translators = /* bg */ "Иван Димов \n" /* ca */ "Jordi Mallach \n" /* cs */ "Juraj Kubelka \n" /* de */ "Johannes Rohr \n" /* dk */ "Christian Vejlbo \n" /* el */ "Prokopis Prokopidis \n" /* eo */ "Eric lesh \n" /* es */ "Pablo Rodriguez \n" /* fr 1 */ "Thomas Basset \n" /* fr 2 */ "Benjamin Siband \n" /* he */ "Haggai Eran \n" /* hu-1 */ "ORY Mate \n" /* hu-2 */ "Gabor Kelemen \n" /* it */ "Eraldo Girardi \n" /* ja */ "Masanobu Yokota \n" /* lt */ "Artūras Šlajus \n" /* nl */ "Raymond Penners \n" /* no */ "Morten Lunde \n" /* pl */ "Mikolaj Machowski \n" /* pt_BR -1 */ "Claudio Ferreira Filho \n" /* ru */ "Sergey Kirkinsky \n" /* sk */ "Peter Tuharsky \n" /* sl */ "Vanja Cvelbar \n" /* sv */ "Daniel Nylander \n" /* tr */ "Enver ALTIN \n" /* zh_CN */ "Tao WEI \n" /* zh_TW */ "Rex Tsai \n"; #endif /* CREDITS_H */