Automatically set parent family in individual, when adding child to the family.
[familia.git] / src / about.h
1 #ifndef _ABOUT_H
2 #define _ABOUT_H
3
4 #include <gtk/gtk.h>
5 #include "../config.h"
6 #include "i18n.h"
7
8 #define AUTHOR          "Rafał Długołęcki"
9 #define YEARS           "2011-2013"
10 #define COPYRIGHT       "Copyright (C) " YEARS " " AUTHOR ". All rights reserved"
11
12 #define LICENSE_SHORT   "This is free software: you are free to change and " \
13                         "redistribute it.\n" \
14                         "There is NO WARRANTY, to the extent permitted by law."
15
16 #define LICENSE_TYPE    GTK_LICENSE_GPL_2_0
17 #define LICENSE_TEXT    ""
18 #define WEBSITE         PACKAGE_URL
19 #define WEBSITE_LABEL   _("Website")
20 #define LOGO_NAME       _("Logo name")
21 /* #define LOGO*/
22 #define TRANSLATORS     _("translator-credits")
23
24
25 static const gchar *authors[] = {
26         "Rafał Długołęcki",
27         NULL
28 };
29
30 static const gchar *artists[] = {
31         "Rafał Długołęcki",
32         NULL
33 };
34
35 static const gchar *documenters[] = {
36         "Rafał Długołęcki",
37         NULL
38 };
39
40 #endif /* _ABOUT_H */
41