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

« back to all changes in this revision

Viewing changes to src/Filters/Rules/Event/_HasSourceCount.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-2009  Brian G. Matherly
 
6
# Copyright (C) 2009  Benny Malengier
 
7
#
 
8
# This program is free software; you can redistribute it and/or modify
 
9
# it under the terms of the GNU General Public License as published by
 
10
# the Free Software Foundation; either version 2 of the License, or
 
11
# (at your option) any later version.
 
12
#
 
13
# This program is distributed in the hope that it will be useful,
 
14
# but WITHOUT ANY WARRANTY; without even the implied warranty of
 
15
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 
16
# GNU General Public License for more details.
 
17
#
 
18
# You should have received a copy of the GNU General Public License
 
19
# along with this program; if not, write to the Free Software
 
20
# Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
 
21
#
 
22
 
 
23
# $Id: _HasSourceCount.py 18548 2011-12-04 17:09:17Z kulath $
 
24
 
 
25
#-------------------------------------------------------------------------
 
26
#
 
27
# Standard Python modules
 
28
#
 
29
#-------------------------------------------------------------------------
 
30
from gen.ggettext import gettext as _
 
31
 
 
32
#-------------------------------------------------------------------------
 
33
#
 
34
# GRAMPS modules
 
35
#
 
36
#-------------------------------------------------------------------------
 
37
from Filters.Rules._HasSourceCountBase import HasSourceCountBase
 
38
 
 
39
#-------------------------------------------------------------------------
 
40
# "People having sources"
 
41
#-------------------------------------------------------------------------
 
42
class HasSourceCount(HasSourceCountBase):
 
43
    """Events with sources"""
 
44
 
 
45
    name        = _('Events with <count> sources')
 
46
    description = _("Matches events with a certain number of sources connected to it")