mirror of
https://github.com/archlinuxarm/PKGBUILDs.git
synced 2024-11-28 22:57:37 +00:00
61 lines
3.1 KiB
C
61 lines
3.1 KiB
C
/*
|
|
* credits.h --- Workrave credits
|
|
*
|
|
* Copyright (C) 2007 Rob Caelers <robc@krandor.org>
|
|
* 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 <stdlib.h>
|
|
|
|
const char *workrave_copyright =
|
|
"Copyright 2001-2007 Rob Caelers & Raymond Penners";
|
|
|
|
const char *workrave_authors[] = {
|
|
"Rob Caelers <robc@krandor.org>",
|
|
"Raymond Penners <raymond@dotsphinx.com>",
|
|
NULL
|
|
};
|
|
|
|
const char *workrave_translators =
|
|
/* bg */ "Иван Димов <idimov@users.sourceforge.net>\n"
|
|
/* ca */ "Jordi Mallach <jordi@sindominio.net>\n"
|
|
/* cs */ "Juraj Kubelka <Juraj.Kubelka@email.cz>\n"
|
|
/* de */ "Johannes Rohr <j.rohr@comlink.apc.org>\n"
|
|
/* dk */ "Christian Vejlbo <christian@vejlbo.dk>\n"
|
|
/* el */ "Prokopis Prokopidis <prokopidis@gmail.com>\n"
|
|
/* eo */ "Eric lesh <eclesh@pacbell.net>\n"
|
|
/* es */ "Pablo Rodriguez <ousia@gmx.net>\n"
|
|
/* fr 1 */ "Thomas Basset <thomas.basset@netcourrier.com>\n"
|
|
/* fr 2 */ "Benjamin Siband <translations@wordinfrench.com>\n"
|
|
/* he */ "Haggai Eran <he3@bezeqint.net>\n"
|
|
/* hu-1 */ "ORY Mate <orymate@gmail.com>\n"
|
|
/* hu-2 */ "Gabor Kelemen <kelemeng@gnome.hu>\n"
|
|
/* it */ "Eraldo Girardi <eraldster@katamail.com>\n"
|
|
/* ja */ "Masanobu Yokota <masanobu.yokota@nifty.com>\n"
|
|
/* lt */ "Artūras Šlajus <x11@h2o.sky.lt>\n"
|
|
/* nl */ "Raymond Penners <raymond@dotsphinx.com>\n"
|
|
/* no */ "Morten Lunde <morten.lunde@broadpark.no>\n"
|
|
/* pl */ "Mikolaj Machowski <mikmach@wp.pl>\n"
|
|
/* pt_BR -1 */ "Claudio Ferreira Filho <filhocf@yahoo.com.br>\n"
|
|
/* ru */ "Sergey Kirkinsky <ksa@pfr.altai.ru>\n"
|
|
/* sk */ "Peter Tuharsky <Peter.Tuharsky@banskabystrica.sk>\n"
|
|
/* sl */ "Vanja Cvelbar <cvelbar@gmail.com>\n"
|
|
/* sv */ "Daniel Nylander <info@danielnylander.se>\n"
|
|
/* tr */ "Enver ALTIN <ealtin@parkyeri.com>\n"
|
|
/* zh_CN */ "Tao WEI <weitao1979@gmail.com>\n"
|
|
/* zh_TW */ "Rex Tsai <chihchun@linux.org.tw>\n";
|
|
|
|
#endif /* CREDITS_H */
|