# frozen_string_literal: true # Copyright (C) 2004-2006 Laurent Sansonetti # Copyright (C) 2008 Joseph Method # Copyright (C) 2015 Matijs van Zuijlen # # Alexandria 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. # # Alexandria 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 Alexandria; see the file COPYING. If not, # write to the Free Software Foundation, Inc., 51 Franklin Street, # Fifth Floor, Boston, MA 02110-1301 USA. module Alexandria TITLE = "Alexandria" TEXTDOMAIN = "alexandria" extend GetText bindtextdomain(Alexandria::TEXTDOMAIN, charset: "UTF-8") DESCRIPTION = _("A program to help you manage your book collection.") COPYRIGHT = "Copyright (C) 2004-2006 Laurent Sansonetti\n" \ "Copyright (C) 2007-2010,2014,2015 Alexandria Contributors" AUTHORS = [ "Alexander McCormmach ", "Aymeric Nys ", "Cathal Mc Ginley ", "Claudio Belotti ", "Constantine Evans ", "Dafydd Harries ", "Javier Fernandez-Sanguino Pena ", "Joseph Method ", "Kevin Schultz ", "Laurent Sansonetti ", "Marco Costantini ", "Mathieu Leduc-Hamel ", "Matijs van Zuijlen ", "Owain Evans ", "Pascal Terjan ", "Rene Samselnig ", "Robby Stephenson ", "Sun Ning ", "Takayuki Kusano ", "Timothy Malone ", "Zachary P. Landau " ].freeze DOCUMENTERS = [ "Cathal Mc Ginley ", "Liam Davison " ].freeze TRANSLATORS = [ "Adrián Chaves Fernández (gl)", "Cathal Mc Ginley (ga)", "CHIKAMA Masaki (ja)", "Dafydd Harries (cy)", "Damjan Dimitrioski (mk)", "Giacomo Margarito (it)", "Jack Myrseh (nb)", "Joachim Breitner (de)", "José Ling (zh_TW)", "Lennart Karssen (nl)", "Lígia Moreira (fr, pt, pt_BR)", "Martin Karlsson (sv)", "Michael Kotsarinis (el)", "Miguel Ángel García (es)", "Peter Kováč (sk)", "Petr Vanek (cs)", "Piotr Drąg (pl)", "Serhij Dubyk (uk)" ].freeze ARTISTS = [ "Andreas Nilsson ", "Stefanie Dijoux " ].freeze BUGREPORT_URL = "http://www.github.com/mvz/alexandria-book-collection-manager/issues" WEBSITE_URL = "http://www.github.com/mvz/alexandria-book-collection-manager" end