self.form.destroy()
self.title.config(text='FamilySearch to GEDCOM')
self.btn_valid.config(state='disabled')
- self.info(_('Download starting individuals...'))
+ self.info(_('Downloading starting individuals...'))
self.info_tree = True
self.tree.add_indis(todo)
todo = set(todo)
if not todo:
break
done |= todo
- self.info(_('Download ') + str(i + 1) + _('th generation of ancestors...'))
+ self.info(_('Downloading %s. of generations of ancestors...') % (i + 1))
todo = self.tree.add_parents(todo) - done
todo = set(self.tree.indi.keys())
if not todo:
break
done |= todo
- self.info(_('Download ') + str(i + 1) + _('th generation of descendants...'))
+ self.info(_('Downloading %s. of generations of descendants...') % (i + 1))
todo = self.tree.add_children(todo) - done
if self.options.spouses.get():
- self.info(_('Download spouses and marriage information...'))
+ self.info(_('Downloading spouses and marriage information...'))
todo = set(self.tree.indi.keys())
self.tree.add_spouses(todo)
ordi = self.options.ordinances.get()
await future
loop = asyncio.get_event_loop()
- self.info(_('Download notes') + (((',' if cont else _(' and')) + _(' ordinances')) if ordi else '') + (_(' and contributors') if cont else '') + '...')
+ self.info(_('Downloading notes') + (((',' if cont else _(' and')) + _(' ordinances')) if ordi else '') + (_(' and contributors') if cont else '') + '...')
loop.run_until_complete(download_stuff(loop))
self.tree.reset_num()
# add list of starting individuals to the family tree
todo = args.i if args.i else [fs.get_userid()]
- print(_('Download starting individuals...'))
+ print(_('Downloading starting individuals...'))
tree.add_indis(todo)
# download ancestors
if not todo:
break
done |= todo
- print(_('Download ') + str(i + 1) + _('th generation of ancestors...'))
+ print(_('Downloading %s. of generations of ancestors...') % (i + 1))
todo = tree.add_parents(todo) - done
# download descendants
if not todo:
break
done |= todo
- print(_('Download ') + str(i + 1) + _('th generation of descendants...'))
+ print(_('Downloading %s. of generations of descendants...') % (i + 1))
todo = tree.add_children(todo) - done
# download spouses
if args.m:
- print(_('Download spouses and marriage information...'))
+ print(_('Downloading spouses and marriage information...'))
todo = set(tree.indi.keys())
tree.add_spouses(todo)
await future
loop = asyncio.get_event_loop()
- print(_('Download notes') + (((',' if args.r else _(' and')) + _(' ordinances')) if args.c else '') + (_(' and contributors') if args.r else '') + '...')
+ print(_('Downloading notes') + (((',' if args.r else _(' and')) + _(' ordinances')) if args.c else '') + (_(' and contributors') if args.r else '') + '...')
loop.run_until_complete(download_stuff(loop))
# compute number for family relationships and print GEDCOM file
'ru': 'Название племени',
'zh': '部落名字'
},
- 'Download starting individuals...': {
+ 'Downloading starting individuals...': {
'fr': 'Téléchargement des personnes de départ...',
},
- 'th generation of ancestors...': {
- 'fr': 'e génération d\'ancêtres...',
+ 'Downloading %s. of generations of descendants...': {
+ 'fr': 'Téléchargement de %s génération(s) de descendants...',
},
- 'th generation of descendants...': {
- 'fr': 'e génération de descendants...',
- },
- 'Download spouses and marriage information...': {
+ 'Downloading spouses and marriage information...': {
'fr': 'Téléchargement des conjoints et des informations de mariage...',
},
- 'Download notes': {
+ 'Downloading notes': {
'fr': 'Téléchargement des notes',
},
' and': {
'Options': {
'fr': 'Options',
},
- 'Download': {
- 'fr': 'Télécharger',
+ 'Downloading %s. of generations of ancestors...': {
+ 'fr': "Téléchargement de %s génération(s) d'ancêtres...",
},
'Save': {
'fr': 'Sauvegarder',