8352 Change lesser than to less than

This commit is contained in:
Sam Manzi 2015-07-19 11:38:07 +10:00 committed by Nick Hall
parent 8e0e07240f
commit d19bed4b42
51 changed files with 60 additions and 60 deletions

View File

@ -49,7 +49,7 @@ class HasGalleryBase(Rule):
def prepare(self, db): def prepare(self, db):
# things we want to do just once, not for every handle # things we want to do just once, not for every handle
if self.list[1] == 'lesser than': if self.list[1] == 'less than':
self.count_type = 0 self.count_type = 0
elif self.list[1] == 'greater than': elif self.list[1] == 'greater than':
self.count_type = 2 self.count_type = 2
@ -60,7 +60,7 @@ class HasGalleryBase(Rule):
def apply(self, db, obj): def apply(self, db, obj):
count = len( obj.get_media_list()) count = len( obj.get_media_list())
if self.count_type == 0: # "lesser than" if self.count_type == 0: # "less than"
return count < self.userSelectedCount return count < self.userSelectedCount
elif self.count_type == 2: # "greater than" elif self.count_type == 2: # "greater than"
return count > self.userSelectedCount return count > self.userSelectedCount

View File

@ -52,7 +52,7 @@ class HasLDSBase(Rule):
def prepare(self, db): def prepare(self, db):
# things we want to do just once, not for every handle # things we want to do just once, not for every handle
if self.list[1] == 'lesser than': if self.list[1] == 'less than':
self.count_type = 0 self.count_type = 0
elif self.list[1] == 'greater than': elif self.list[1] == 'greater than':
self.count_type = 2 self.count_type = 2
@ -63,7 +63,7 @@ class HasLDSBase(Rule):
def apply(self, db, obj): def apply(self, db, obj):
count = len( obj.get_lds_ord_list()) count = len( obj.get_lds_ord_list())
if self.count_type == 0: # "lesser than" if self.count_type == 0: # "less than"
return count < self.userSelectedCount return count < self.userSelectedCount
elif self.count_type == 2: # "greater than" elif self.count_type == 2: # "greater than"
return count > self.userSelectedCount return count > self.userSelectedCount

View File

@ -58,7 +58,7 @@ class HasNoteBase(Rule):
def prepare(self, db): def prepare(self, db):
# things we want to do just once, not for every handle # things we want to do just once, not for every handle
if self.list[1] == 'lesser than': if self.list[1] == 'less than':
self.count_type = 0 self.count_type = 0
elif self.list[1] == 'greater than': elif self.list[1] == 'greater than':
self.count_type = 2 self.count_type = 2
@ -70,7 +70,7 @@ class HasNoteBase(Rule):
def apply(self, db, obj): def apply(self, db, obj):
count = len( obj.get_note_list()) count = len( obj.get_note_list())
if self.count_type == 0: # "lesser than" if self.count_type == 0: # "less than"
return count < self.userSelectedCount return count < self.userSelectedCount
elif self.count_type == 2: # "greater than" elif self.count_type == 2: # "greater than"
return count > self.userSelectedCount return count > self.userSelectedCount

View File

@ -47,7 +47,7 @@ class HasReferenceCountBase(Rule):
def prepare(self, db): def prepare(self, db):
# things we want to do just once, not for every handle # things we want to do just once, not for every handle
if self.list[0] == 'lesser than': if self.list[0] == 'less than':
self.count_type = 0 self.count_type = 0
elif self.list[0] == 'greater than': elif self.list[0] == 'greater than':
self.count_type = 2 self.count_type = 2
@ -63,7 +63,7 @@ class HasReferenceCountBase(Rule):
for item in db.find_backlink_handles(handle): for item in db.find_backlink_handles(handle):
count += 1 count += 1
if self.count_type == 0: # "lesser than" if self.count_type == 0: # "less than"
return count < self.userSelectedCount return count < self.userSelectedCount
elif self.count_type == 2: # "greater than" elif self.count_type == 2: # "greater than"
return count > self.userSelectedCount return count > self.userSelectedCount

View File

@ -50,7 +50,7 @@ class HasSourceCountBase(Rule):
def prepare(self, db): def prepare(self, db):
# things we want to do just once, not for every handle # things we want to do just once, not for every handle
if self.list[1] == 'lesser than': if self.list[1] == 'less than':
self.count_type = 0 self.count_type = 0
elif self.list[1] == 'greater than': elif self.list[1] == 'greater than':
self.count_type = 2 self.count_type = 2
@ -61,7 +61,7 @@ class HasSourceCountBase(Rule):
def apply(self, db, obj): def apply(self, db, obj):
count = len(obj.get_citation_list()) count = len(obj.get_citation_list())
if self.count_type == 0: # "lesser than" if self.count_type == 0: # "less than"
return count < self.userSelectedCount return count < self.userSelectedCount
elif self.count_type == 2: # "greater than" elif self.count_type == 2: # "greater than"
return count > self.userSelectedCount return count > self.userSelectedCount

View File

@ -53,7 +53,7 @@ class HasAddress(Rule):
def prepare(self, db): def prepare(self, db):
# things we want to do just once, not for every handle # things we want to do just once, not for every handle
if self.list[1] == 'lesser than': if self.list[1] == 'less than':
self.count_type = 0 self.count_type = 0
elif self.list[1] == 'greater than': elif self.list[1] == 'greater than':
self.count_type = 2 self.count_type = 2
@ -64,7 +64,7 @@ class HasAddress(Rule):
def apply(self, db, person): def apply(self, db, person):
count = len( person.get_address_list()) count = len( person.get_address_list())
if self.count_type == 0: # "lesser than" if self.count_type == 0: # "less than"
return count < self.userSelectedCount return count < self.userSelectedCount
elif self.count_type == 2: # "greater than" elif self.count_type == 2: # "greater than"
return count > self.userSelectedCount return count > self.userSelectedCount

View File

@ -52,7 +52,7 @@ class HasAssociation(Rule):
def prepare(self, db): def prepare(self, db):
# things we want to do just once, not for every handle # things we want to do just once, not for every handle
if self.list[1] == 'lesser than': if self.list[1] == 'less than':
self.count_type = 0 self.count_type = 0
elif self.list[1] == 'greater than': elif self.list[1] == 'greater than':
self.count_type = 2 self.count_type = 2
@ -63,7 +63,7 @@ class HasAssociation(Rule):
def apply(self, db, person): def apply(self, db, person):
count = len(person.get_person_ref_list()) count = len(person.get_person_ref_list())
if self.count_type == 0: # "lesser than" if self.count_type == 0: # "less than"
return count < self.selected_count return count < self.selected_count
elif self.count_type == 2: # "greater than" elif self.count_type == 2: # "greater than"
return count > self.selected_count return count > self.selected_count

View File

@ -50,7 +50,7 @@ class HasRepository(Rule):
def prepare(self, db): def prepare(self, db):
# things we want to do just once, not for every handle # things we want to do just once, not for every handle
if self.list[1] == 'lesser than': if self.list[1] == 'less than':
self.count_type = 0 self.count_type = 0
elif self.list[1] == 'greater than': elif self.list[1] == 'greater than':
self.count_type = 2 self.count_type = 2
@ -61,7 +61,7 @@ class HasRepository(Rule):
def apply(self, db, obj): def apply(self, db, obj):
count = len(obj.get_reporef_list()) count = len(obj.get_reporef_list())
if self.count_type == 0: # "lesser than" if self.count_type == 0: # "less than"
return count < self.userSelectedCount return count < self.userSelectedCount
elif self.count_type == 2: # "greater than" elif self.count_type == 2: # "greater than"
return count > self.userSelectedCount return count > self.userSelectedCount

View File

@ -243,8 +243,8 @@ class MyLesserEqualGreater(Gtk.ComboBox):
cell = Gtk.CellRendererText() cell = Gtk.CellRendererText()
self.pack_start(cell, True) self.pack_start(cell, True)
self.add_attribute(cell, 'text', 0) self.add_attribute(cell, 'text', 0)
self.clist = ['lesser than', 'equal to', 'greater than'] self.clist = ['less than', 'equal to', 'greater than']
self.clist_trans = [_('lesser than'), _('equal to'), _('greater than')] self.clist_trans = [_('less than'), _('equal to'), _('greater than')]
for name in self.clist_trans: for name in self.clist_trans:
store.append(row=[name]) store.append(row=[name])
self.set_active(default) self.set_active(default)

View File

@ -12564,7 +12564,7 @@ msgstr "أكبر من"
# شك # شك
#: ../gramps/gui/editors/filtereditor.py:247 #: ../gramps/gui/editors/filtereditor.py:247
msgid "lesser than" msgid "less than"
msgstr "أقل من" msgstr "أقل من"
#: ../gramps/gui/editors/filtereditor.py:285 #: ../gramps/gui/editors/filtereditor.py:285

View File

@ -12888,7 +12888,7 @@ msgid "greater than"
msgstr "повече от" msgstr "повече от"
#: ../gramps/gui/editors/filtereditor.py:247 #: ../gramps/gui/editors/filtereditor.py:247
msgid "lesser than" msgid "less than"
msgstr "по-малко от" msgstr "по-малко от"
#: ../gramps/gui/editors/filtereditor.py:285 #: ../gramps/gui/editors/filtereditor.py:285

View File

@ -12583,7 +12583,7 @@ msgid "greater than"
msgstr "" msgstr ""
#: ../gramps/gui/editors/filtereditor.py:247 #: ../gramps/gui/editors/filtereditor.py:247
msgid "lesser than" msgid "less than"
msgstr "" msgstr ""
#: ../gramps/gui/editors/filtereditor.py:285 #: ../gramps/gui/editors/filtereditor.py:285

View File

@ -12970,7 +12970,7 @@ msgid "greater than"
msgstr "més gran que" msgstr "més gran que"
#: ../gramps/gui/editors/filtereditor.py:247 #: ../gramps/gui/editors/filtereditor.py:247
msgid "lesser than" msgid "less than"
msgstr "menor que" msgstr "menor que"
#: ../gramps/gui/editors/filtereditor.py:285 #: ../gramps/gui/editors/filtereditor.py:285

View File

@ -12671,7 +12671,7 @@ msgid "greater than"
msgstr "větší než" msgstr "větší než"
#: ../gramps/gui/editors/filtereditor.py:247 #: ../gramps/gui/editors/filtereditor.py:247
msgid "lesser than" msgid "less than"
msgstr "menší než" msgstr "menší než"
#: ../gramps/gui/editors/filtereditor.py:285 #: ../gramps/gui/editors/filtereditor.py:285

View File

@ -12813,7 +12813,7 @@ msgid "greater than"
msgstr "større end" msgstr "større end"
#: ../gramps/gui/editors/filtereditor.py:247 #: ../gramps/gui/editors/filtereditor.py:247
msgid "lesser than" msgid "less than"
msgstr "mindre end" msgstr "mindre end"
#: ../gramps/gui/editors/filtereditor.py:285 #: ../gramps/gui/editors/filtereditor.py:285

View File

@ -12946,7 +12946,7 @@ msgid "greater than"
msgstr "größer als" msgstr "größer als"
#: ../gramps/gui/editors/filtereditor.py:247 #: ../gramps/gui/editors/filtereditor.py:247
msgid "lesser than" msgid "less than"
msgstr "kleiner als" msgstr "kleiner als"
#: ../gramps/gui/editors/filtereditor.py:285 #: ../gramps/gui/editors/filtereditor.py:285

View File

@ -13086,7 +13086,7 @@ msgid "greater than"
msgstr "μεγαλύτερο από" msgstr "μεγαλύτερο από"
#: ../gramps/gui/editors/filtereditor.py:247 #: ../gramps/gui/editors/filtereditor.py:247
msgid "lesser than" msgid "less than"
msgstr "λιγότερο από" msgstr "λιγότερο από"
#: ../gramps/gui/editors/filtereditor.py:285 #: ../gramps/gui/editors/filtereditor.py:285

View File

@ -11821,7 +11821,7 @@ msgid "greater than"
msgstr "" msgstr ""
#: ../gramps/gui/editors/filtereditor.py:247 #: ../gramps/gui/editors/filtereditor.py:247
msgid "lesser than" msgid "less than"
msgstr "" msgstr ""
#: ../gramps/gui/editors/filtereditor.py:285 #: ../gramps/gui/editors/filtereditor.py:285

View File

@ -12722,7 +12722,7 @@ msgid "greater than"
msgstr "pli granda ol" msgstr "pli granda ol"
#: ../gramps/gui/editors/filtereditor.py:247 #: ../gramps/gui/editors/filtereditor.py:247
msgid "lesser than" msgid "less than"
msgstr "malpli ol" msgstr "malpli ol"
#: ../gramps/gui/editors/filtereditor.py:285 #: ../gramps/gui/editors/filtereditor.py:285

View File

@ -13039,7 +13039,7 @@ msgid "greater than"
msgstr "mayor que" msgstr "mayor que"
#: ../gramps/gui/editors/filtereditor.py:247 #: ../gramps/gui/editors/filtereditor.py:247
msgid "lesser than" msgid "less than"
msgstr "menor que" msgstr "menor que"
#: ../gramps/gui/editors/filtereditor.py:285 #: ../gramps/gui/editors/filtereditor.py:285

View File

@ -10223,7 +10223,7 @@ msgid "greater than"
msgstr "enemmän kuin" msgstr "enemmän kuin"
#: ../gramps/gui/editors/filtereditor.py:247 #: ../gramps/gui/editors/filtereditor.py:247
msgid "lesser than" msgid "less than"
msgstr "vähemmän kuin" msgstr "vähemmän kuin"
#: ../gramps/gui/editors/filtereditor.py:285 #: ../gramps/gui/editors/filtereditor.py:285

View File

@ -12521,7 +12521,7 @@ msgid "greater than"
msgstr "plus de" msgstr "plus de"
#: ../gramps/gui/editors/filtereditor.py:247 #: ../gramps/gui/editors/filtereditor.py:247
msgid "lesser than" msgid "less than"
msgstr "moins de" msgstr "moins de"
#: ../gramps/gui/editors/filtereditor.py:285 #: ../gramps/gui/editors/filtereditor.py:285

View File

@ -11916,7 +11916,7 @@ msgid "greater than"
msgstr "" msgstr ""
#: ../gramps/gui/editors/filtereditor.py:247 #: ../gramps/gui/editors/filtereditor.py:247
msgid "lesser than" msgid "less than"
msgstr "" msgstr ""
#: ../gramps/gui/editors/filtereditor.py:285 #: ../gramps/gui/editors/filtereditor.py:285

View File

@ -12091,7 +12091,7 @@ msgid "greater than"
msgstr "יותר מ" msgstr "יותר מ"
#: ../gramps/gui/editors/filtereditor.py:247 #: ../gramps/gui/editors/filtereditor.py:247
msgid "lesser than" msgid "less than"
msgstr "פחות מ" msgstr "פחות מ"
#: ../gramps/gui/editors/filtereditor.py:285 #: ../gramps/gui/editors/filtereditor.py:285

View File

@ -12471,7 +12471,7 @@ msgid "greater than"
msgstr "veće od" msgstr "veće od"
#: ../gramps/gui/editors/filtereditor.py:247 #: ../gramps/gui/editors/filtereditor.py:247
msgid "lesser than" msgid "less than"
msgstr "manje od" msgstr "manje od"
#: ../gramps/gui/editors/filtereditor.py:285 #: ../gramps/gui/editors/filtereditor.py:285

View File

@ -12757,7 +12757,7 @@ msgid "greater than"
msgstr "nagyobb mint" msgstr "nagyobb mint"
#: ../gramps/gui/editors/filtereditor.py:247 #: ../gramps/gui/editors/filtereditor.py:247
msgid "lesser than" msgid "less than"
msgstr "kevesebb mint" msgstr "kevesebb mint"
#: ../gramps/gui/editors/filtereditor.py:285 #: ../gramps/gui/editors/filtereditor.py:285

View File

@ -11995,7 +11995,7 @@ msgid "greater than"
msgstr "stærra en" msgstr "stærra en"
#: ../gramps/gui/editors/filtereditor.py:247 #: ../gramps/gui/editors/filtereditor.py:247
msgid "lesser than" msgid "less than"
msgstr "minna en" msgstr "minna en"
#: ../gramps/gui/editors/filtereditor.py:285 #: ../gramps/gui/editors/filtereditor.py:285

View File

@ -12687,7 +12687,7 @@ msgid "greater than"
msgstr "maggiore di" msgstr "maggiore di"
#: ../gramps/gui/editors/filtereditor.py:247 #: ../gramps/gui/editors/filtereditor.py:247
msgid "lesser than" msgid "less than"
msgstr "minore di" msgstr "minore di"
#: ../gramps/gui/editors/filtereditor.py:285 #: ../gramps/gui/editors/filtereditor.py:285

View File

@ -12246,7 +12246,7 @@ msgid "greater than"
msgstr "より多い" msgstr "より多い"
#: ../gramps/gui/editors/filtereditor.py:247 #: ../gramps/gui/editors/filtereditor.py:247
msgid "lesser than" msgid "less than"
msgstr "より少ない" msgstr "より少ない"
#: ../gramps/gui/editors/filtereditor.py:285 #: ../gramps/gui/editors/filtereditor.py:285

View File

@ -12772,7 +12772,7 @@ msgid "greater than"
msgstr "daugiau kaip" msgstr "daugiau kaip"
#: ../gramps/gui/editors/filtereditor.py:247 #: ../gramps/gui/editors/filtereditor.py:247
msgid "lesser than" msgid "less than"
msgstr "mažiau kaip" msgstr "mažiau kaip"
#: ../gramps/gui/editors/filtereditor.py:285 #: ../gramps/gui/editors/filtereditor.py:285

View File

@ -13124,7 +13124,7 @@ msgid "greater than"
msgstr "" msgstr ""
#: ../gramps/gui/editors/filtereditor.py:247 #: ../gramps/gui/editors/filtereditor.py:247
msgid "lesser than" msgid "less than"
msgstr "" msgstr ""
#: ../gramps/gui/editors/filtereditor.py:285 #: ../gramps/gui/editors/filtereditor.py:285

View File

@ -12786,7 +12786,7 @@ msgid "greater than"
msgstr "større enn" msgstr "større enn"
#: ../gramps/gui/editors/filtereditor.py:247 #: ../gramps/gui/editors/filtereditor.py:247
msgid "lesser than" msgid "less than"
msgstr "mindre enn" msgstr "mindre enn"
#: ../gramps/gui/editors/filtereditor.py:285 #: ../gramps/gui/editors/filtereditor.py:285

View File

@ -11596,7 +11596,7 @@ msgid "greater than"
msgstr "groter dan" msgstr "groter dan"
#: ../gramps/gui/editors/filtereditor.py:247 #: ../gramps/gui/editors/filtereditor.py:247
msgid "lesser than" msgid "less than"
msgstr "minder dan" msgstr "minder dan"
#: ../gramps/gui/editors/filtereditor.py:285 #: ../gramps/gui/editors/filtereditor.py:285

View File

@ -12797,7 +12797,7 @@ msgid "greater than"
msgstr "større enn" msgstr "større enn"
#: ../gramps/gui/editors/filtereditor.py:247 #: ../gramps/gui/editors/filtereditor.py:247
msgid "lesser than" msgid "less than"
msgstr "mindre enn" msgstr "mindre enn"
#: ../gramps/gui/editors/filtereditor.py:285 #: ../gramps/gui/editors/filtereditor.py:285

View File

@ -12837,7 +12837,7 @@ msgid "greater than"
msgstr "większy niż" msgstr "większy niż"
#: ../gramps/gui/editors/filtereditor.py:247 #: ../gramps/gui/editors/filtereditor.py:247
msgid "lesser than" msgid "less than"
msgstr "mniejszy niż" msgstr "mniejszy niż"
#: ../gramps/gui/editors/filtereditor.py:285 #: ../gramps/gui/editors/filtereditor.py:285

View File

@ -12935,7 +12935,7 @@ msgid "greater than"
msgstr "maior que" msgstr "maior que"
#: ../gramps/gui/editors/filtereditor.py:247 #: ../gramps/gui/editors/filtereditor.py:247
msgid "lesser than" msgid "less than"
msgstr "menor que" msgstr "menor que"
#: ../gramps/gui/editors/filtereditor.py:285 #: ../gramps/gui/editors/filtereditor.py:285

View File

@ -12857,7 +12857,7 @@ msgid "greater than"
msgstr "maior que" msgstr "maior que"
#: ../gramps/gui/editors/filtereditor.py:247 #: ../gramps/gui/editors/filtereditor.py:247
msgid "lesser than" msgid "less than"
msgstr "menor que" msgstr "menor que"
#: ../gramps/gui/editors/filtereditor.py:285 #: ../gramps/gui/editors/filtereditor.py:285

View File

@ -12974,7 +12974,7 @@ msgid "greater than"
msgstr "" msgstr ""
#: ../gramps/gui/editors/filtereditor.py:247 #: ../gramps/gui/editors/filtereditor.py:247
msgid "lesser than" msgid "less than"
msgstr "" msgstr ""
#: ../gramps/gui/editors/filtereditor.py:285 #: ../gramps/gui/editors/filtereditor.py:285

View File

@ -12768,7 +12768,7 @@ msgid "greater than"
msgstr "больше чем" msgstr "больше чем"
#: ../gramps/gui/editors/filtereditor.py:247 #: ../gramps/gui/editors/filtereditor.py:247
msgid "lesser than" msgid "less than"
msgstr "меньше чем" msgstr "меньше чем"
#: ../gramps/gui/editors/filtereditor.py:285 #: ../gramps/gui/editors/filtereditor.py:285

View File

@ -12592,7 +12592,7 @@ msgid "greater than"
msgstr "viac ako" msgstr "viac ako"
#: ../gramps/gui/editors/filtereditor.py:247 #: ../gramps/gui/editors/filtereditor.py:247
msgid "lesser than" msgid "less than"
msgstr "menej ako" msgstr "menej ako"
#: ../gramps/gui/editors/filtereditor.py:285 #: ../gramps/gui/editors/filtereditor.py:285

View File

@ -11546,7 +11546,7 @@ msgid "greater than"
msgstr "več kot" msgstr "več kot"
#: ../gramps/gui/editors/filtereditor.py:247 #: ../gramps/gui/editors/filtereditor.py:247
msgid "lesser than" msgid "less than"
msgstr "manj kot" msgstr "manj kot"
#: ../gramps/gui/editors/filtereditor.py:285 #: ../gramps/gui/editors/filtereditor.py:285

View File

@ -12995,7 +12995,7 @@ msgid "greater than"
msgstr "më shumë se" msgstr "më shumë se"
#: ../gramps/gui/editors/filtereditor.py:247 #: ../gramps/gui/editors/filtereditor.py:247
msgid "lesser than" msgid "less than"
msgstr "më pak se" msgstr "më pak se"
#: ../gramps/gui/editors/filtereditor.py:285 #: ../gramps/gui/editors/filtereditor.py:285

View File

@ -12672,7 +12672,7 @@ msgid "greater than"
msgstr "веће од" msgstr "веће од"
#: ../gramps/gui/editors/filtereditor.py:247 #: ../gramps/gui/editors/filtereditor.py:247
msgid "lesser than" msgid "less than"
msgstr "мање од" msgstr "мање од"
#: ../gramps/gui/editors/filtereditor.py:285 #: ../gramps/gui/editors/filtereditor.py:285

View File

@ -11801,7 +11801,7 @@ msgid "greater than"
msgstr "" msgstr ""
#: ../gramps/gui/editors/filtereditor.py:247 #: ../gramps/gui/editors/filtereditor.py:247
msgid "lesser than" msgid "less than"
msgstr "" msgstr ""
#: ../gramps/gui/editors/filtereditor.py:285 #: ../gramps/gui/editors/filtereditor.py:285

View File

@ -12755,7 +12755,7 @@ msgid "greater than"
msgstr "större än" msgstr "större än"
#: ../gramps/gui/editors/filtereditor.py:247 #: ../gramps/gui/editors/filtereditor.py:247
msgid "lesser than" msgid "less than"
msgstr "mindre än" msgstr "mindre än"
#: ../gramps/gui/editors/filtereditor.py:285 #: ../gramps/gui/editors/filtereditor.py:285

View File

@ -11836,7 +11836,7 @@ msgid "greater than"
msgstr "" msgstr ""
#: ../gramps/gui/editors/filtereditor.py:247 #: ../gramps/gui/editors/filtereditor.py:247
msgid "lesser than" msgid "less than"
msgstr "" msgstr ""
#: ../gramps/gui/editors/filtereditor.py:285 #: ../gramps/gui/editors/filtereditor.py:285

View File

@ -12686,7 +12686,7 @@ msgid "greater than"
msgstr "більше, ніж" msgstr "більше, ніж"
#: ../gramps/gui/editors/filtereditor.py:247 #: ../gramps/gui/editors/filtereditor.py:247
msgid "lesser than" msgid "less than"
msgstr "менше, ніж" msgstr "менше, ніж"
#: ../gramps/gui/editors/filtereditor.py:285 #: ../gramps/gui/editors/filtereditor.py:285

View File

@ -12680,7 +12680,7 @@ msgid "greater than"
msgstr "Lớn hơn " msgstr "Lớn hơn "
#: ../gramps/gui/editors/filtereditor.py:247 #: ../gramps/gui/editors/filtereditor.py:247
msgid "lesser than" msgid "less than"
msgstr "Ít hơn " msgstr "Ít hơn "
#: ../gramps/gui/editors/filtereditor.py:285 #: ../gramps/gui/editors/filtereditor.py:285

View File

@ -12512,7 +12512,7 @@ msgid "greater than"
msgstr "大于" msgstr "大于"
#: ../gramps/gui/editors/filtereditor.py:247 #: ../gramps/gui/editors/filtereditor.py:247
msgid "lesser than" msgid "less than"
msgstr "小于" msgstr "小于"
#: ../gramps/gui/editors/filtereditor.py:285 #: ../gramps/gui/editors/filtereditor.py:285

View File

@ -12513,7 +12513,7 @@ msgid "greater than"
msgstr "大於" msgstr "大於"
#: ../gramps/gui/editors/filtereditor.py:247 #: ../gramps/gui/editors/filtereditor.py:247
msgid "lesser than" msgid "less than"
msgstr "小於" msgstr "小於"
#: ../gramps/gui/editors/filtereditor.py:285 #: ../gramps/gui/editors/filtereditor.py:285

View File

@ -12513,7 +12513,7 @@ msgid "greater than"
msgstr "大於" msgstr "大於"
#: ../gramps/gui/editors/filtereditor.py:247 #: ../gramps/gui/editors/filtereditor.py:247
msgid "lesser than" msgid "less than"
msgstr "小於" msgstr "小於"
#: ../gramps/gui/editors/filtereditor.py:285 #: ../gramps/gui/editors/filtereditor.py:285