~ubuntu-branches/ubuntu/utopic/gramps/utopic

« back to all changes in this revision

Viewing changes to src/Filters/Rules/Person/_HasSource.py

  • Committer: Package Import Robot
  • Author(s): James A. Treacy
  • Date: 2012-05-22 17:18:36 UTC
  • mfrom: (39.1.4 sid)
  • Revision ID: package-import@ubuntu.com-20120522171836-35fi62lp4w7jnrd7
Tags: 3.4.0-1
* New upstream version
* Updated desktop file. Closes: #667472

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
#
2
 
# Gramps - a GTK+/GNOME based genealogy program
3
 
#
4
 
# Copyright (C) 2002-2007  Donald N. Allingham
5
 
# Copyright (C) 2007-2008  Brian G. Matherly
6
 
# Copyright (C) 2008  Jerome Rapinat
7
 
# Copyright (C) 2008  Benny Malengier
8
 
#
9
 
# This program is free software; you can redistribute it and/or modify
10
 
# it under the terms of the GNU General Public License as published by
11
 
# the Free Software Foundation; either version 2 of the License, or
12
 
# (at your option) any later version.
13
 
#
14
 
# This program is distributed in the hope that it will be useful,
15
 
# but WITHOUT ANY WARRANTY; without even the implied warranty of
16
 
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
17
 
# GNU General Public License for more details.
18
 
#
19
 
# You should have received a copy of the GNU General Public License
20
 
# along with this program; if not, write to the Free Software
21
 
# Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
22
 
#
23
 
 
24
 
# $Id: _HasSource.py 14906 2010-03-22 17:17:24Z romjerome $
25
 
 
26
 
#-------------------------------------------------------------------------
27
 
#
28
 
# Standard Python modules
29
 
#
30
 
#-------------------------------------------------------------------------
31
 
from gen.ggettext import gettext as _
32
 
 
33
 
#-------------------------------------------------------------------------
34
 
#
35
 
# GRAMPS modules
36
 
#
37
 
#-------------------------------------------------------------------------
38
 
from Filters.Rules._HasSourceBase import HasSourceBase
39
 
 
40
 
#-------------------------------------------------------------------------
41
 
# "People having sources"
42
 
#-------------------------------------------------------------------------
43
 
class HasSource(HasSourceBase):
44
 
    """People with sources"""
45
 
 
46
 
    name        = _('People with <count> sources')
47
 
    description = _("Matches people with a certain number of sources connected to it")