<?xml version="1.0"?>
<feed xmlns="http://www.w3.org/2005/Atom" xml:lang="en">
	<id>https://ftp.gramps-project.org/wiki/api.php?action=feedcontributions&amp;feedformat=atom&amp;user=Sten</id>
	<title>Gramps - User contributions [en]</title>
	<link rel="self" type="application/atom+xml" href="https://ftp.gramps-project.org/wiki/api.php?action=feedcontributions&amp;feedformat=atom&amp;user=Sten"/>
	<link rel="alternate" type="text/html" href="https://ftp.gramps-project.org/wiki/index.php/Special:Contributions/Sten"/>
	<updated>2026-07-13T09:42:21Z</updated>
	<subtitle>User contributions</subtitle>
	<generator>MediaWiki 1.31.3</generator>
	<entry>
		<id>https://ftp.gramps-project.org/wiki/index.php?title=Calendar_tools_holidays&amp;diff=80204</id>
		<title>Calendar tools holidays</title>
		<link rel="alternate" type="text/html" href="https://ftp.gramps-project.org/wiki/index.php?title=Calendar_tools_holidays&amp;diff=80204"/>
		<updated>2020-08-01T18:40:17Z</updated>

		<summary type="html">&lt;p&gt;Sten: /* Available Calendars */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;[[File:Calendar-GraphicalReports-Content-tab-Country for holidays-default-list-51.png|thumb|450px|right|Content tab showing &amp;quot;Country for holidays:&amp;quot; option showing &amp;quot;Country for holidays&amp;quot; default list]]&lt;br /&gt;
&lt;br /&gt;
Details on how to add custom holiday set or change the builtin holiday set appearing on the output of the [[#Calendar-based_reports|Calendar-based reports]] in Gramps.&lt;br /&gt;
&lt;br /&gt;
==Custom holiday set==&lt;br /&gt;
Gramps comes installed with a default &amp;lt;code&amp;gt;holidays.xml&amp;lt;/code&amp;gt; file and you can either add more holiday sets to it or  create your own custom &amp;lt;code&amp;gt;holidays.xml&amp;lt;/code&amp;gt;&lt;br /&gt;
&lt;br /&gt;
===Custom holidays.xml===&lt;br /&gt;
You can create a separate custom &amp;lt;code&amp;gt;holidays.xml&amp;lt;/code&amp;gt; file in your personal [[Gramps_{{Version manual}}_Wiki_Manual_-_User_Directory|User directory]] &amp;lt;code&amp;gt;.gramps/plugins/&amp;lt;/code&amp;gt; folder.&lt;br /&gt;
&lt;br /&gt;
====Adding your countries holidays====&lt;br /&gt;
Are your countries holidays missing or incomplete and you would like Gramps to have them by default?&lt;br /&gt;
&lt;br /&gt;
If you would like to add your [http://en.wikipedia.org/wiki/Holiday countries holidays] to the calendar, then you can add them to the file &amp;lt;code&amp;gt;holidays.xml.in&amp;lt;/code&amp;gt; located:&lt;br /&gt;
* Gramps 5 or newer: [https://github.com/gramps-project/gramps/blob/master/data/holidays.xml.in data/holidays.xml.in]  &lt;br /&gt;
&lt;br /&gt;
and then raise a feature request and submit your updated file or create a pull request on Github.&lt;br /&gt;
&lt;br /&gt;
====format of holidays.xml====&lt;br /&gt;
In the file &amp;lt;code&amp;gt;holidays.xml.in&amp;lt;/code&amp;gt;, you can add recurring annual events in a variety of ways. The format is generally:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
 &amp;lt;?xml version=&amp;quot;1.0&amp;quot; encoding=&amp;quot;UTF-8&amp;quot;?&amp;gt;&lt;br /&gt;
 &amp;lt;calendar&amp;gt;&lt;br /&gt;
   &amp;lt;country _name=COUNTRYNAME&amp;gt;&lt;br /&gt;
     &amp;lt;date name=NAME value=VALUE type=TYPE offset=OFFSET if=EXPRESSION /&amp;gt;&lt;br /&gt;
     ...&lt;br /&gt;
   &amp;lt;/country&amp;gt;&lt;br /&gt;
   &amp;lt;country _name=COUNTRYNAME&amp;gt;&lt;br /&gt;
     &amp;lt;date name=NAME value=VALUE type=TYPE offset=OFFSET if=EXPRESSION /&amp;gt;&lt;br /&gt;
     ...&lt;br /&gt;
   &amp;lt;/country&amp;gt;&lt;br /&gt;
   ...&lt;br /&gt;
 &amp;lt;/calendar&amp;gt;&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
 &lt;br /&gt;
where each of the capitalized words would be filled in with appropriate values, as shown in list of keywords.&lt;br /&gt;
&lt;br /&gt;
====Keywords====&lt;br /&gt;
The following is a list of keywords to be used when creating or expanding the holidays.xml file see:&lt;br /&gt;
* [https://github.com/gramps-project/gramps/blob/master/gramps/plugins/lib/libholiday.py /gramps/plugins/lib/libholiday.py].&lt;br /&gt;
&lt;br /&gt;
All but NAME and VALUE are optional.&lt;br /&gt;
&lt;br /&gt;
*'''COUNTRYNAME''' =&amp;gt; &amp;quot;United States&amp;quot;, &amp;quot;China&amp;quot;, etc. You don't have to make these countries, however. You can make these just a &amp;quot;holiday set&amp;quot; which could be &amp;quot;Christian&amp;quot;, &amp;quot;Muslim&amp;quot;, &amp;quot;Eastern European&amp;quot;, etc. These names can be selected from the {{man label|Country for holidays:}} list option when running calendar-related reports. You can use your own language for this name.&lt;br /&gt;
*'''NAME''' =&amp;gt; the text to appear on the calendar&lt;br /&gt;
*'''TYPE''' =&amp;gt; &amp;quot;secular&amp;quot;, &amp;quot;religious&amp;quot;, &amp;quot;personal&amp;quot;, &amp;quot;informational&amp;quot; (This isn't currently used in the calendar, but could be. Use these keywords, untranslated.)&lt;br /&gt;
*'''EXPRESSION''' =&amp;gt; a python expression that must be true for this to appear on the calendar. You can use y, m, and d variables (for year, month, and day, all integers). See VALUE for examples. &lt;br /&gt;
*'''VALUE''' =&amp;gt; &lt;br /&gt;
** &amp;quot;YEAR/MONTH/DAY&amp;quot;&lt;br /&gt;
*** &amp;quot;2012/12/25&amp;quot;&lt;br /&gt;
*** &amp;quot;*/12/25&amp;quot;&lt;br /&gt;
** &amp;quot;YEAR/MONCODE/DAY&amp;quot;&lt;br /&gt;
*** &amp;quot;2012/dec/25&amp;quot;&lt;br /&gt;
*** &amp;quot;*/dec/25&amp;quot;&lt;br /&gt;
** &amp;quot;YEAR/NUMBER/DAYCODE/MONCODE&amp;quot; (nth day of week in month, year)&lt;br /&gt;
*** &amp;quot;2012/1/mon/dec&amp;quot; (first monday in december, 2012)&lt;br /&gt;
*** &amp;quot;*/-1/tue/dec&amp;quot; (last tuesday in december, every year)&lt;br /&gt;
** &amp;quot;&amp;gt; EXPRESSION&amp;quot; (which evaluates to one of the previous two types of VALUES). Current useful expression values are:&lt;br /&gt;
*** &amp;quot;&amp;gt; easter(y)&amp;quot; (Easter for current year)&lt;br /&gt;
*** &amp;quot;&amp;gt; dst(y)[0]&amp;quot; (Daylight Saving Time, &amp;quot;us&amp;quot;, start)&lt;br /&gt;
*** &amp;quot;&amp;gt; dst(y)[1]&amp;quot; (Daylight Saving Time, &amp;quot;us&amp;quot;, end)&lt;br /&gt;
*** &amp;quot;&amp;gt; dst(y, &amp;quot;eu&amp;quot;)[0]&amp;quot; (Daylight Saving Time, &amp;quot;eu&amp;quot;, start)&lt;br /&gt;
*** &amp;quot;&amp;gt; dst(y, &amp;quot;eu&amp;quot;)[1]&amp;quot; (Daylight Saving Time, &amp;quot;eu&amp;quot;, end)&lt;br /&gt;
*** &amp;quot;&amp;gt; dow(y, m, d) == 1&amp;quot; (dow returns the iso weekday number, where Monday is 1 and Sunday is 7)&lt;br /&gt;
*'''YEAR''' =&amp;gt; &amp;quot;*&amp;quot; or an actual year. &amp;quot;*&amp;quot; means any year.&lt;br /&gt;
*'''MONTH''' =&amp;gt; &amp;quot;*&amp;quot; or actual month number. &amp;quot;*&amp;quot; means any month.&lt;br /&gt;
*'''DAY''' =&amp;gt; &amp;quot;*&amp;quot; or actual day number in month. &amp;quot;*&amp;quot; means any day.&lt;br /&gt;
*'''NUMBER''' =&amp;gt; number of weekday in month. For example, &amp;quot;every 3rd Tuesday in April&amp;quot; would be &amp;quot;*/3/tue/apr&amp;quot;. NUMBER can also be negative, which means it is counted from the end of the month. &amp;quot;last Tuesday in April 2007&amp;quot; could be &amp;quot;2007/-1/tue/4&amp;quot;&lt;br /&gt;
*'''DAYCODE''' =&amp;gt; &amp;quot;mon&amp;quot;, &amp;quot;tue&amp;quot;, &amp;quot;wed&amp;quot;, &amp;quot;thu&amp;quot;, &amp;quot;fri&amp;quot;, &amp;quot;sat&amp;quot;, or &amp;quot;sun&amp;quot;. Do not translate these words; use all lowercase.&lt;br /&gt;
*'''MONCODE''' =&amp;gt; &lt;br /&gt;
** MONTH&lt;br /&gt;
** 'jan', 'feb', 'mar', 'apr', 'may', 'jun', 'jul', 'aug', 'sep', 'oct', 'nov', or 'dec'. (not be translated; use all lowercase)&lt;br /&gt;
*'''OFFSET''' =&amp;gt; &lt;br /&gt;
** number (may be negative) that offsets the day determined by VALUE &lt;br /&gt;
** DAYCODE (may be negative), the next DAYCODE that is either the same as this day, or the next(+)/prev(-) one.&lt;br /&gt;
** &amp;quot;workday&amp;quot; or &amp;quot;weekend&amp;quot; (may be negative) - the next workday/weekend that is on this day, or the next/prev&lt;br /&gt;
&lt;br /&gt;
===Translations===&lt;br /&gt;
&lt;br /&gt;
Holiday entries are generally written for a specific country, and thus typically don't need to be written for more than one language. However, it might be appropriate to have your entries country name and holiday text be translated into the language that Gramps is running in. To make a country name or holiday name get translated, simply precede the name of the XML item with an underscore. For example:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
  ...&lt;br /&gt;
  &amp;lt;country _name=&amp;quot;Jewish Holidays&amp;quot;&amp;gt;&lt;br /&gt;
    &amp;lt;date _name=&amp;quot;Purim&amp;quot; value=&amp;quot;&amp;gt; passover(y)&amp;quot; offset=&amp;quot;-30&amp;quot;/&amp;gt;&lt;br /&gt;
    &amp;lt;date _name=&amp;quot;Passover&amp;quot; value=&amp;quot;&amp;gt; passover(y)&amp;quot; offset=&amp;quot;0&amp;quot;/&amp;gt;&lt;br /&gt;
    ...&lt;br /&gt;
  &amp;lt;/country&amp;gt;&lt;br /&gt;
  ...&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
In this example, &amp;quot;Jewish Holidays&amp;quot;, &amp;quot;Purim&amp;quot;, and &amp;quot;Passover&amp;quot; will be looked up in the Gramps gettext system for translations. If you would like to help add those translations, please see [[Translating Gramps]].&lt;br /&gt;
&lt;br /&gt;
===Example===&lt;br /&gt;
&lt;br /&gt;
The last set ( &amp;lt;country name=&amp;quot;Finland&amp;quot;&amp;gt;  ) will only load if your country is Finland. It says that Card Night is the last Thursday of every month, every year. Let's play!&lt;br /&gt;
&lt;br /&gt;
Filename: holidays.xml&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
 &amp;lt;?xml version=&amp;quot;1.0&amp;quot; encoding=&amp;quot;UTF-8&amp;quot;?&amp;gt;&lt;br /&gt;
 &amp;lt;calendar&amp;gt;&lt;br /&gt;
   &amp;lt;country name=&amp;quot;United States&amp;quot;&amp;gt;&lt;br /&gt;
     &amp;lt;date name=&amp;quot;Daylight Saving Time begins&amp;quot; value=&amp;quot;&amp;gt; dst(y)[0]&amp;quot; type=&amp;quot;informational&amp;quot; /&amp;gt;&lt;br /&gt;
     &amp;lt;date name=&amp;quot;Daylight Saving Time ends&amp;quot; value=&amp;quot;&amp;gt; dst(y)[1]&amp;quot; type=&amp;quot;informational&amp;quot; /&amp;gt;&lt;br /&gt;
     &amp;lt;date name=&amp;quot;New Year's Day&amp;quot; value=&amp;quot;*/1/1&amp;quot; type=&amp;quot;national&amp;quot; /&amp;gt;&lt;br /&gt;
     &amp;lt;date name=&amp;quot;Labor Day&amp;quot; value=&amp;quot;*/1/mon/sep&amp;quot; type=&amp;quot;national&amp;quot; /&amp;gt;&lt;br /&gt;
     &amp;lt;date name=&amp;quot;Thanksgiving&amp;quot; value=&amp;quot;*/4/thu/nov&amp;quot; type=&amp;quot;national&amp;quot; /&amp;gt;&lt;br /&gt;
     &amp;lt;date name=&amp;quot;Inauguration Day&amp;quot; value=&amp;quot;*/1/20&amp;quot; if=&amp;quot;(y - 1980) % 4 == 0&amp;quot;  type=&amp;quot;national&amp;quot; /&amp;gt;&lt;br /&gt;
     &amp;lt;date name=&amp;quot;Washington's Birthday&amp;quot; value=&amp;quot;*/3/mon/feb&amp;quot; type=&amp;quot;secular&amp;quot; /&amp;gt;&lt;br /&gt;
     &amp;lt;date name=&amp;quot;St. Patrick's Day&amp;quot; value=&amp;quot;*/3/17&amp;quot; type=&amp;quot;secular&amp;quot; /&amp;gt;&lt;br /&gt;
     &amp;lt;date name=&amp;quot;Assistants' Day&amp;quot; value=&amp;quot;*/-1/sat/apr&amp;quot; offset=&amp;quot;-3&amp;quot; type=&amp;quot;secular&amp;quot; /&amp;gt;&lt;br /&gt;
     &amp;lt;date name=&amp;quot;Arbor Day&amp;quot; value=&amp;quot;*/-1/fri/apr&amp;quot; type=&amp;quot;secular&amp;quot; /&amp;gt;&lt;br /&gt;
     &amp;lt;date name=&amp;quot;Mothers' Day&amp;quot; value=&amp;quot;*/2/sun/may&amp;quot; type=&amp;quot;secular&amp;quot; /&amp;gt;&lt;br /&gt;
     &amp;lt;date name=&amp;quot;Fathers' Day&amp;quot; value=&amp;quot;*/3/sun/jun&amp;quot; type=&amp;quot;secular&amp;quot; /&amp;gt;&lt;br /&gt;
     &amp;lt;date name=&amp;quot;ML Kings's Birthday&amp;quot; value=&amp;quot;*/3/mon/jan&amp;quot;  type=&amp;quot;secular&amp;quot; /&amp;gt;&lt;br /&gt;
     &amp;lt;date name=&amp;quot;Memorial Day&amp;quot; value=&amp;quot;*/-1/mon/may&amp;quot; type=&amp;quot;secular&amp;quot; /&amp;gt;&lt;br /&gt;
     &amp;lt;date name=&amp;quot;Easter&amp;quot; value=&amp;quot;&amp;gt; easter(y)&amp;quot; type=&amp;quot;religious&amp;quot; /&amp;gt;&lt;br /&gt;
     &amp;lt;date name=&amp;quot;Ash Wednesday&amp;quot; value=&amp;quot;&amp;gt; easter(y)&amp;quot; offset=&amp;quot;-46&amp;quot; type=&amp;quot;religious&amp;quot; /&amp;gt;&lt;br /&gt;
    &amp;lt;/country&amp;gt;&lt;br /&gt;
   &amp;lt;country name=&amp;quot;China&amp;quot;&amp;gt;&lt;br /&gt;
     &amp;lt;date name=&amp;quot;Chinese New Year&amp;quot; value=&amp;quot;2006/1/29&amp;quot; type=&amp;quot;national&amp;quot; /&amp;gt;&lt;br /&gt;
   &amp;lt;/country&amp;gt;&lt;br /&gt;
   &amp;lt;country name=&amp;quot;Finland&amp;quot;&amp;gt;&lt;br /&gt;
     &amp;lt;date name=&amp;quot;Card Night&amp;quot; value=&amp;quot;*/-1/thu/*&amp;quot; type=&amp;quot;personal&amp;quot; /&amp;gt;&lt;br /&gt;
   &amp;lt;/country&amp;gt;&lt;br /&gt;
 &amp;lt;/calendar&amp;gt;&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
==Calendar-based reports==&lt;br /&gt;
[[File:Calendar-GraphicalReports-Content-tab-50.png|thumb|450px|right|Content tab showing &amp;quot;Country for holidays:&amp;quot; option]]&lt;br /&gt;
&lt;br /&gt;
Gramps comes with the following Calendar-based reports:&lt;br /&gt;
* [[Gramps_{{Version manual}}_Wiki_Manual_-_Reports_-_part_4#Calendar|Calendar Report]]: (menu {{man menu|Reports-&amp;gt;Graphical Reports-&amp;gt;Calendar...}} )&lt;br /&gt;
* [[Gramps_{{Version manual}}_Wiki_Manual_-_Reports_-_part_6#Birthday_and_Anniversary_Report|Birthday and Anniversary Report]]: (menu {{man menu|Reports-&amp;gt;Text Reports-&amp;gt;Birthday and Anniversary Report...}} )&lt;br /&gt;
* And an output for the Web with [[Gramps_{{Version manual}}_Wiki_Manual_-_Reports_-_part_7#Web_Calendar|Web Calendar Report]]:(menu {{man menu|Reports-&amp;gt;Web Pages-&amp;gt;Web Calendar...}} )&lt;br /&gt;
&lt;br /&gt;
{{-}}&lt;br /&gt;
You can select which holidays to show by setting the {{man label|Country for holidays:}} option in either the {{man label|Content}} tab of the reports.&lt;br /&gt;
&lt;br /&gt;
[[File:Calendar-GraphicalReports-Content-tab-Country for holidays-default-list-51.png|thumb|450px|right|Content tab showing &amp;quot;Country for holidays:&amp;quot; option showing &amp;quot;Country for holidays&amp;quot; default list]]&lt;br /&gt;
{{-}}&lt;br /&gt;
&lt;br /&gt;
===Available Calendars===&lt;br /&gt;
&lt;br /&gt;
Countries:&lt;br /&gt;
*  Bulgaria / Canada / Chile / China / Croatia / Czech Republic / England / Finland / France / Germany / Japan / New Zealand / Russia / Serbia / Serbia (Latin) / Slovakia / Sweden / Ukraine / United States of America&lt;br /&gt;
Holidays&lt;br /&gt;
* Jewish Holidays&lt;br /&gt;
&lt;br /&gt;
==See also==&lt;br /&gt;
*[[Handler List]]&lt;br /&gt;
*[[Date Handler]]&lt;br /&gt;
&lt;br /&gt;
[[Category:Plugins]]&lt;br /&gt;
[[Category:Translators/Categories]]&lt;br /&gt;
[[Category:Developers/General]]&lt;br /&gt;
[[Category:Reports]]&lt;br /&gt;
[[Category:How do I...]]&lt;/div&gt;</summary>
		<author><name>Sten</name></author>
		
	</entry>
	<entry>
		<id>https://ftp.gramps-project.org/wiki/index.php?title=Features&amp;diff=80194</id>
		<title>Features</title>
		<link rel="alternate" type="text/html" href="https://ftp.gramps-project.org/wiki/index.php?title=Features&amp;diff=80194"/>
		<updated>2020-07-30T06:23:02Z</updated>

		<summary type="html">&lt;p&gt;Sten: /* Chec languages */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{man note|You may find Gramps downloads|On the following page [[Download]]}}&lt;br /&gt;
{{languages|Features}}&lt;br /&gt;
&amp;lt;!--Redirected from: https://gramps-project.org/features/ --&amp;gt;&lt;br /&gt;
&lt;br /&gt;
=Overview=&lt;br /&gt;
* Many different [[Gramps_{{Version manual}}_Wiki_Manual_-_Categories|Category views]] for navigating your family tree:&lt;br /&gt;
{| {{Prettytable}}&lt;br /&gt;
|- valign=&amp;quot;top&amp;quot; &lt;br /&gt;
|{{icon|gram}}'''Dashboard'''[[File:DashboardCategoryView-example-50.png|center|400px]] Displays different general purpose Gramplets, small widgets that can help in your genealogical research.&lt;br /&gt;
|{{icon|peop}}'''People'''[[File:People-tree-view-grouped-people-50.png|center|400px]] Displays the people in the family tree without their connections. This Category contains the PeopleListView and the Grouped PeopleTreeView. Filter the display using preset filters or a custom filter.&lt;br /&gt;
|- valign=&amp;quot;top&amp;quot; &lt;br /&gt;
|{{icon|rela}} '''Relationship'''[[File:Relationships-category-view-50.png|center|400px]] Display a family of parents, grandparents and children with the birth/death dates and relationships. Navigate to nearby relatives with a single click.&lt;br /&gt;
|{{icon|fami}} '''Families'''[[File:Families-category-list-view-50.png|center|400px]] List all families in a single view. Double-click on each to edit, add notes, and to see parents and children in each family.&lt;br /&gt;
|- valign=&amp;quot;top&amp;quot;&lt;br /&gt;
|{{icon|ance}}'''Charts - Pedigree'''[[File:ChartsCategory-pedigreeview1-horizontal-right-standard-5gen-default-50.png|center|400px]] Display the family in the traditional pedigree view. Hold the mouse over individuals to see more information about them and to move to more distant parts of the tree&lt;br /&gt;
|{{icon|ance}}'''Charts - Fan Chart'''[[File:ChartsCategory-fanchartview-fullcircle-9gen-default-50.png|center|400px]] Displays graphical trees for the selected person.&lt;br /&gt;
|- valign=&amp;quot;top&amp;quot;&lt;br /&gt;
|{{icon|ance}}'''Charts - Descendant Fan Chart'''[[File:ChartsCategory-desendantfan-fullcircle-9gen-default-50.png|center|400px]] Displays graphical trees for the selected person.&lt;br /&gt;
|{{icon|ance}}'''Charts - 2-Way Fan Chart'''[[File:ChartsCategory-2wayfan-fullcircle-ances4gen-descen4gen-default-50.png|center|400px]] Displays graphical trees for the selected person. 4 Generations of Ancestors (Top) / 4 Generations of Descendants (bottom) &lt;br /&gt;
|- valign=&amp;quot;top&amp;quot;&lt;br /&gt;
|{{icon|even}} '''Event'''[[File:EventsCategory-EventsListView-example-50.png|center|400px]] Displays the events in the family tree in a single view. Double-click on each to edit, add source, and to see which individuals reference the event.&lt;br /&gt;
|{{icon|plac}} '''Place'''[[File:PlacesCategory-PlaceListView-50.png|center|400px]] Displays the places in the family tree and sort the list by half a dozen headings such as City, County or State.&lt;br /&gt;
|- valign=&amp;quot;top&amp;quot;&lt;br /&gt;
|{{icon|geog}} '''Geography'''[[File:GeographyCategory-GeoPlacesView-AllKnownPlaces-openstreemap-example-50.png|center|400px]] Displays data of your family tree on a map.&lt;br /&gt;
|{{icon|sour34}} '''Source'''[[File:SourcesCategory-CitationTreeView-example-50.png|center|400px]] Displays the sources in the family tree in a single view. Double-click on each to edit, add notes, and to see which individuals reference the source.&lt;br /&gt;
|- valign=&amp;quot;top&amp;quot;&lt;br /&gt;
|{{icon|cite}} '''Citations'''[[File:CitationsCategory-CitationsListView-example-50.png|center|400px]] Displays the citations in the family tree.&lt;br /&gt;
|{{icon|repo}} '''Repository'''[[File:RepositoriesCategory-RepositoriesListView-example-50.png|center|400px]] List all source repositories in a single view. Double-click on each to edit, add notes, and to see which sources reference the repository.&lt;br /&gt;
|- valign=&amp;quot;top&amp;quot;&lt;br /&gt;
|{{icon|medi}} '''Media'''[[File:MediaCategory-MediaListView-example-50.png|center|400px]] List all forms of media referenced in the family tree. Can be graphic images, videos, sound clips, spreadsheets, documents, etc.&lt;br /&gt;
|{{icon|note}} '''Notes'''[[File:NotesCategory-NotesListView-example-50.png|center|400px]] Displays the notes in the family tree.&lt;br /&gt;
|- valign=&amp;quot;top&amp;quot;&lt;br /&gt;
|&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
==Features==&lt;br /&gt;
* Bookmark favorite individuals for quick access. (The number able to be marked is unlimited)&lt;br /&gt;
* Custom filters. In addition to the numerous preset filters, create any number of selections based on interesting facts about your family to use for reports and data exports.&lt;br /&gt;
* Link any media or filetype to your Gramps family tree. Choose between copying or linking the file to the database.&lt;br /&gt;
* Privacy options allow restriction of any information marked with this option or information about living individuals. Data marked with this option can be excluded in reports and data exports.&lt;br /&gt;
* Multiple calendars and date ranges are supported. You can convert between Gregorian, Julian, Hebrew, French republican, Persian and Islamic calendars from within Gramps via the Date selection window, and you can use fuzzy dates like about 1874, estimated 1905, ...&lt;br /&gt;
* View, edit, and save Image Exif Metadata for use with modern-day cameras, cell phones, and graphic programs...&lt;br /&gt;
&lt;br /&gt;
==Languages==&lt;br /&gt;
* Multiple languages and cultures support is mature.&lt;br /&gt;
** Translations exist for 43 languages + 1 Custom Language (See the [[Gramps translations]])&lt;br /&gt;
** Gramps has been designed so that new translations can easily be added with little development effort. If you are interested in participating please contact us.&lt;br /&gt;
** Relationship calculators available in four languages&lt;br /&gt;
** Full Unicode support. Characters for all languages are properly displayed.&lt;br /&gt;
&lt;br /&gt;
==Reports==&lt;br /&gt;
&lt;br /&gt;
[[Image:RelationshipChartDescendants.png|right|thumb|200px|An example descendant chart]]&lt;br /&gt;
&lt;br /&gt;
Generate brief or detailed reports for the ancestors or descendants of an individual.&lt;br /&gt;
&lt;br /&gt;
* Multiple styles of reports are currently available by default. Users can also create their own [[Gramps_{{Version manual}}_Wiki_Manual_-_Settings#Customize_report_output_formats|custom styles]].&lt;br /&gt;
* Eight output formats are supported by Gramps: PDF, OpenDocument, HTML, Rich Text Format (RTF), Latex, and plain text.&lt;br /&gt;
* Custom reports can be created by advanced users under the &amp;quot;plugin&amp;quot; system which allows the sharing of custom report styles between users.&lt;br /&gt;
* Book report allows the user to collect a variety of reports in a single document, which in turn is easier to distribute.&lt;br /&gt;
&lt;br /&gt;
Charts and Graphs - Create graphical Ancestor and Descendant charts in several formats.&lt;br /&gt;
&lt;br /&gt;
* Box and Fan charts are available, see eg [[Howto: Make a relationship chart | here]].&lt;br /&gt;
* Multiple formats are supported by Gramps for charts and graphs: OpenDocument Draw, PDF, PostScript, and SVG.&lt;br /&gt;
* Custom charts can be created by users. We hope to add more in the near future through the contributions of users and developers.&lt;br /&gt;
&lt;br /&gt;
Export to Web Pages -Select the entire database, family lines or selected individuals to a collection of web pages ready for upload to the World Wide Web.&lt;br /&gt;
&lt;br /&gt;
*[[Sample reports]]&lt;br /&gt;
{{-}}&lt;br /&gt;
&lt;br /&gt;
==Tools==&lt;br /&gt;
A rich set of tools includes operations such as checking database for errors and consistency, as well as the research and analysis tools such as event comparison, duplicate people finding, interactive descendant browser, and others.&lt;br /&gt;
&lt;br /&gt;
* Merge. Combine two separate people into one. Very useful combining two databases with overlapping people.&lt;br /&gt;
* Soundex generator. Generate the standard codes commonly used in genealogy to compare similar sounding names even though spelled differently.&lt;br /&gt;
&lt;br /&gt;
==File formats==&lt;br /&gt;
Import/Export support for several different formats.&lt;br /&gt;
&lt;br /&gt;
* GEDCOM import and export. Extensive support for the defacto industry standard GEDCOM version 5.5.1 so you can exchange Gramps information to and from users of most other genealogy programs.&lt;br /&gt;
* Gramps package import and export. A compressed file containing your family tree data and any other files used. Useful for backup or sharing with other Gramps users.&lt;br /&gt;
* Export to CD Burner. Export data and media directly to the GNOME file manager (Nautilus) for burning to CD.&lt;br /&gt;
* Web Family Tree export. Web Family Tree (WFT) allows you to display your family tree online with only a single file, instead of many html files the web page report generates. See [http://www.simonward.com/cgi-bin/page.pl?family/tree their homepage] for more information.&lt;br /&gt;
&lt;br /&gt;
==Community==&lt;br /&gt;
&lt;br /&gt;
* Active community involvement. Many current Gramps users contribute reports, suggestions, and feedback to the developers through the supported public mailing lists. The Gramps program has been available for over 14 years and has many features and capabilities.&lt;br /&gt;
* Active development effort. New versions already in testing use an advanced database design that guarantee very fast access to many thousands of entries in the database. Other new features are being designed and coordinated by several active developers. Many additional participants assist through the mailing lists. Group effort shapes and tests Gramps constantly improving functionality and usability.&lt;br /&gt;
* Portable. Gramps is written in a computer language called Python using GTK and GNOME libraries. While only well supported in certain Unix and Linux environments, these are multi-platform development libraries, meaning that Gramps can be ported to any platform the required libraries are ported to.&lt;br /&gt;
* Free Software/Open Source development model means Gramps can be extended by any programmer since all of the source code is freely available under its license.&lt;br /&gt;
* Gramps is freely distributed under the GPL!&lt;br /&gt;
&lt;br /&gt;
== Checklist ==&lt;br /&gt;
{| {{Prettytable}}&lt;br /&gt;
|-&lt;br /&gt;
!bgcolor=&amp;quot;#8DA7D6&amp;quot; style=&amp;quot;line-height:2.25em;&amp;quot;| Gramps&lt;br /&gt;
!bgcolor=&amp;quot;#8DA7D6&amp;quot; style=&amp;quot;line-height:2.25em;&amp;quot;| 5.0.x&lt;br /&gt;
!bgcolor=&amp;quot;#8DA7D6&amp;quot; style=&amp;quot;line-height:2.25em;&amp;quot;| 5.1.x&lt;br /&gt;
|-&lt;br /&gt;
|bgcolor=&amp;quot;lightgray&amp;quot;|Price&lt;br /&gt;
|style=&amp;quot;color:green;&amp;quot;|Free&lt;br /&gt;
|style=&amp;quot;color:green;&amp;quot;|Free&lt;br /&gt;
|-&lt;br /&gt;
|bgcolor=&amp;quot;lightgray&amp;quot;|Open Source &lt;br /&gt;
|style=&amp;quot;color:green;&amp;quot;|Yes&lt;br /&gt;
|style=&amp;quot;color:green;&amp;quot;|Yes&lt;br /&gt;
|-&lt;br /&gt;
!style=&amp;quot;color:blue;&amp;quot; colspan=&amp;quot;9&amp;quot;|Category Views&lt;br /&gt;
|-&lt;br /&gt;
|bgcolor=&amp;quot;lightgray&amp;quot;|Dashboard(was Gramplets)&lt;br /&gt;
|style=&amp;quot;color:green;&amp;quot;|Yes&lt;br /&gt;
|style=&amp;quot;color:green;&amp;quot;|Yes&lt;br /&gt;
|-&lt;br /&gt;
|-&lt;br /&gt;
|bgcolor=&amp;quot;lightgray&amp;quot;|People&lt;br /&gt;
|style=&amp;quot;color:green;&amp;quot;|Yes&lt;br /&gt;
|style=&amp;quot;color:green;&amp;quot;|Yes&lt;br /&gt;
|-&lt;br /&gt;
|bgcolor=&amp;quot;lightgray&amp;quot;|Families&lt;br /&gt;
|style=&amp;quot;color:green;&amp;quot;|Yes&lt;br /&gt;
|style=&amp;quot;color:green;&amp;quot;|Yes&lt;br /&gt;
|-&lt;br /&gt;
|bgcolor=&amp;quot;lightgray&amp;quot;|Relationships&lt;br /&gt;
|style=&amp;quot;color:green;&amp;quot;|Yes&lt;br /&gt;
|style=&amp;quot;color:green;&amp;quot;|Yes&lt;br /&gt;
|-&lt;br /&gt;
|bgcolor=&amp;quot;lightgray&amp;quot;|Charts&lt;br /&gt;
|style=&amp;quot;color:green;&amp;quot;|Yes (4 - Pedigree Chart / Ancestor Fan Chart / Descendant Fan / 2-Way Fan)&lt;br /&gt;
|style=&amp;quot;color:green;&amp;quot;|Yes (4 - Pedigree Chart / Ancestor Fan Chart / Descendant Fan / 2-Way Fan)&lt;br /&gt;
|-&lt;br /&gt;
|bgcolor=&amp;quot;lightgray&amp;quot;|Events&lt;br /&gt;
|style=&amp;quot;color:green;&amp;quot;|Yes&lt;br /&gt;
|style=&amp;quot;color:green;&amp;quot;|Yes&lt;br /&gt;
|-&lt;br /&gt;
|bgcolor=&amp;quot;lightgray&amp;quot;|Places&lt;br /&gt;
|style=&amp;quot;color:green;&amp;quot;|Yes&lt;br /&gt;
|style=&amp;quot;color:green;&amp;quot;|Yes&lt;br /&gt;
|-&lt;br /&gt;
|bgcolor=&amp;quot;lightgray&amp;quot;|Geography&lt;br /&gt;
|style=&amp;quot;color:green;&amp;quot;|Yes&lt;br /&gt;
|style=&amp;quot;color:green;&amp;quot;|Yes&lt;br /&gt;
|-&lt;br /&gt;
|bgcolor=&amp;quot;lightgray&amp;quot;|Sources&lt;br /&gt;
|style=&amp;quot;color:green;&amp;quot;|Yes&lt;br /&gt;
|style=&amp;quot;color:green;&amp;quot;|Yes&lt;br /&gt;
|-&lt;br /&gt;
|bgcolor=&amp;quot;lightgray&amp;quot;|Citations&lt;br /&gt;
|style=&amp;quot;color:green;&amp;quot;|Yes&lt;br /&gt;
|style=&amp;quot;color:green;&amp;quot;|Yes&lt;br /&gt;
|-&lt;br /&gt;
|bgcolor=&amp;quot;lightgray&amp;quot;|Repositories&lt;br /&gt;
|style=&amp;quot;color:green;&amp;quot;|Yes&lt;br /&gt;
|style=&amp;quot;color:green;&amp;quot;|Yes&lt;br /&gt;
|-&lt;br /&gt;
|bgcolor=&amp;quot;lightgray&amp;quot;|Media&lt;br /&gt;
|style=&amp;quot;color:green;&amp;quot;|Yes&lt;br /&gt;
|style=&amp;quot;color:green;&amp;quot;|Yes&lt;br /&gt;
|-&lt;br /&gt;
|bgcolor=&amp;quot;lightgray&amp;quot;|Notes&lt;br /&gt;
|style=&amp;quot;color:green;&amp;quot;|Yes&lt;br /&gt;
|style=&amp;quot;color:green;&amp;quot;|Yes&lt;br /&gt;
|-&lt;br /&gt;
!style=&amp;quot;color:blue;&amp;quot; colspan=&amp;quot;9&amp;quot;| Chart Types&lt;br /&gt;
|-&lt;br /&gt;
!style=&amp;quot;color:blue;&amp;quot; colspan=&amp;quot;9&amp;quot;| Reports&lt;br /&gt;
|-&lt;br /&gt;
|bgcolor=&amp;quot;lightgray&amp;quot;|Books&lt;br /&gt;
|style=&amp;quot;color:green;&amp;quot;|Yes&lt;br /&gt;
|style=&amp;quot;color:green;&amp;quot;|Yes&lt;br /&gt;
|-&lt;br /&gt;
|bgcolor=&amp;quot;lightgray&amp;quot;|Family Group Sheets&lt;br /&gt;
|style=&amp;quot;color:green;&amp;quot;|Yes&lt;br /&gt;
|style=&amp;quot;color:green;&amp;quot;|Yes&lt;br /&gt;
|-&lt;br /&gt;
|bgcolor=&amp;quot;lightgray&amp;quot;|Individual Summary&lt;br /&gt;
|style=&amp;quot;color:green;&amp;quot;|Yes&lt;br /&gt;
|style=&amp;quot;color:green;&amp;quot;|Yes&lt;br /&gt;
|-&lt;br /&gt;
|bgcolor=&amp;quot;lightgray&amp;quot;|Sosa Numbering (ascendants)&lt;br /&gt;
|style=&amp;quot;color:green;&amp;quot;|Yes&lt;br /&gt;
|style=&amp;quot;color:green;&amp;quot;|Yes&lt;br /&gt;
|-&lt;br /&gt;
|bgcolor=&amp;quot;lightgray&amp;quot;|Henry Numbering (descendants)&lt;br /&gt;
|style=&amp;quot;color:green;&amp;quot;|Yes&lt;br /&gt;
|style=&amp;quot;color:green;&amp;quot;|Yes&lt;br /&gt;
|-&lt;br /&gt;
|bgcolor=&amp;quot;lightgray&amp;quot;|Count numbering (descendants)&lt;br /&gt;
|style=&amp;quot;color:green;&amp;quot;|Yes&lt;br /&gt;
|style=&amp;quot;color:green;&amp;quot;|Yes&lt;br /&gt;
|-&lt;br /&gt;
|bgcolor=&amp;quot;lightgray&amp;quot;|Calendar&lt;br /&gt;
|style=&amp;quot;color:green;&amp;quot;|Yes&lt;br /&gt;
|style=&amp;quot;color:green;&amp;quot;|Yes&lt;br /&gt;
|-&lt;br /&gt;
!style=&amp;quot;color:blue;&amp;quot; colspan=&amp;quot;9&amp;quot;| Database&lt;br /&gt;
|-&lt;br /&gt;
|bgcolor=&amp;quot;lightgray&amp;quot;|Native Database&lt;br /&gt;
|style=&amp;quot;color:green;&amp;quot;|Yes ('''Berkeley DB'''(default)/ SQLite(Experimental)&lt;br /&gt;
|style=&amp;quot;color:green;&amp;quot;|Yes ('''SQLite'''(default)/Berkeley DB(Legacy))&lt;br /&gt;
|-&lt;br /&gt;
|bgcolor=&amp;quot;lightgray&amp;quot;| [[Gramps Performance|Size Limit]]&lt;br /&gt;
|style=&amp;quot;color:green;&amp;quot;|Yes (tested up to 250,000 people)&lt;br /&gt;
|style=&amp;quot;color:green;&amp;quot;|Yes (tested up to 1.4 Million people[https://www.reddit.com/r/gramps/comments/dzevcl/database_size_limit_for_gramps/fb6hdbj/])&lt;br /&gt;
|-&lt;br /&gt;
|bgcolor=&amp;quot;lightgray&amp;quot;| Open multiple Databases at once&lt;br /&gt;
|style=&amp;quot;color:red;&amp;quot;|No (works for viewing, not supported !!)&lt;br /&gt;
|style=&amp;quot;color:red;&amp;quot;|No (works for viewing, not supported !!)&lt;br /&gt;
|-&lt;br /&gt;
!style=&amp;quot;color:blue;&amp;quot; colspan=&amp;quot;9&amp;quot;| Multimedia&lt;br /&gt;
|-&lt;br /&gt;
|bgcolor=&amp;quot;lightgray&amp;quot;|Audio&lt;br /&gt;
|style=&amp;quot;color:green;&amp;quot;|Yes&lt;br /&gt;
|style=&amp;quot;color:green;&amp;quot;|Yes&lt;br /&gt;
|-&lt;br /&gt;
|bgcolor=&amp;quot;lightgray&amp;quot;|Video&lt;br /&gt;
|style=&amp;quot;color:green;&amp;quot;|Yes&lt;br /&gt;
|style=&amp;quot;color:green;&amp;quot;|Yes&lt;br /&gt;
|-&lt;br /&gt;
|bgcolor=&amp;quot;lightgray&amp;quot;|Images&lt;br /&gt;
|style=&amp;quot;color:green;&amp;quot;|Yes&lt;br /&gt;
|style=&amp;quot;color:green;&amp;quot;|Yes&lt;br /&gt;
|-&lt;br /&gt;
!style=&amp;quot;color:blue;&amp;quot; colspan=&amp;quot;9&amp;quot;| Remote&lt;br /&gt;
|-&lt;br /&gt;
|bgcolor=&amp;quot;lightgray&amp;quot;|Remote Access&lt;br /&gt;
|style=&amp;quot;color:green;&amp;quot;|Yes (linux, over X connection)&lt;br /&gt;
|style=&amp;quot;color:green;&amp;quot;|Yes (linux, over X connection)&lt;br /&gt;
|-&lt;br /&gt;
|bgcolor=&amp;quot;lightgray&amp;quot;|Collaboration&lt;br /&gt;
|style=&amp;quot;color:red;&amp;quot;|No&lt;br /&gt;
|style=&amp;quot;color:red;&amp;quot;|No&lt;br /&gt;
|-&lt;br /&gt;
!style=&amp;quot;color:blue;&amp;quot; colspan=&amp;quot;9&amp;quot;| International&lt;br /&gt;
|-&lt;br /&gt;
|bgcolor=&amp;quot;lightgray&amp;quot;|Unicode&lt;br /&gt;
|style=&amp;quot;color:green;&amp;quot;|Yes(40+)&lt;br /&gt;
|style=&amp;quot;color:green;&amp;quot;|Yes(43+1)&lt;br /&gt;
|-&lt;br /&gt;
|bgcolor=&amp;quot;lightgray&amp;quot;|[[Gramps_translations|Languages]]&lt;br /&gt;
|English(USA), English(UK), Arabic, Albanian, Brazilian Portuguese, Bulgarian, Catalan, Chinese, Croatian, Czech, Danish, Dutch, Esperanto, Finnish, French, German, Hebrew, Hungarian, Italian, Japanese, Lithuanian, Macedonian, Norwegian (Bokmål and Nynorsk), Polish, Russian, Slovak, Slovenian, Spanish, Swedish, Vietnamese.&lt;br /&gt;
|English(USA), Arabic, Bulgarian, Breton, Catalan, Czech, Danish, German, Greek, English (UK), Esperanto, Spanish, Finnish, French, Gaelic (Irish), Hebrew, Croatian, Hungarian, Icelandic, Italian, Japanese, Lithuanian, Macedonian, Norwegian (Bokmål), Dutch, Norwegian (Nynorsk), Polish, Portuguese (Brazil), Portuguese (Portugal), Romanian, Russian, Slovak, Slovenian, Albanian, Serbian, Serbian (Latin), Swedish, Tamil, Turkish, Ukrainian, Vietnamese, Chinese (Simplified), Chinese (Hong Kong), Chinese (Traditional).&lt;br /&gt;
|-&lt;br /&gt;
!style=&amp;quot;color:blue;&amp;quot; colspan=&amp;quot;9&amp;quot;| Compatibility&lt;br /&gt;
|-&lt;br /&gt;
|bgcolor=&amp;quot;lightgray&amp;quot;|[[GEDCOM|GEDCOM 5.5]]&lt;br /&gt;
|Import/Export&lt;br /&gt;
|Import/Export&lt;br /&gt;
|-&lt;br /&gt;
|bgcolor=&amp;quot;lightgray&amp;quot;|[[GEDCOM|GEDCOM 5.5.1]]&lt;br /&gt;
|Import/Export&lt;br /&gt;
|Import/Export&lt;br /&gt;
|-&lt;br /&gt;
|bgcolor=&amp;quot;lightgray&amp;quot;|HTML&lt;br /&gt;
|Export&lt;br /&gt;
|Export&lt;br /&gt;
|-&lt;br /&gt;
|bgcolor=&amp;quot;lightgray&amp;quot;|XML&lt;br /&gt;
|Gramps XML&lt;br /&gt;
|Gramps XML&lt;br /&gt;
|-&lt;br /&gt;
|bgcolor=&amp;quot;lightgray&amp;quot;|Backup&lt;br /&gt;
|On Menu&lt;br /&gt;
|On Menu&lt;br /&gt;
|-&lt;br /&gt;
!style=&amp;quot;color:blue;&amp;quot; colspan=&amp;quot;9&amp;quot;| Platform&lt;br /&gt;
|-&lt;br /&gt;
|bgcolor=&amp;quot;lightgray&amp;quot;|Linux&lt;br /&gt;
|style=&amp;quot;color:green;&amp;quot;|Yes (Officially Supported compile/install)&lt;br /&gt;
|style=&amp;quot;color:green;&amp;quot;|Yes (Officially Supported compile/install)&lt;br /&gt;
|-&lt;br /&gt;
|bgcolor=&amp;quot;lightgray&amp;quot;|Windows&lt;br /&gt;
|style=&amp;quot;color:green;&amp;quot;|Yes (Community Supported)&lt;br /&gt;
|style=&amp;quot;color:green;&amp;quot;|Yes (Community Supported)&lt;br /&gt;
|-&lt;br /&gt;
|bgcolor=&amp;quot;lightgray&amp;quot;|Mac&lt;br /&gt;
|style=&amp;quot;color:green;&amp;quot;|Yes (Community Supported)&lt;br /&gt;
|style=&amp;quot;color:green;&amp;quot;|Yes (Community Supported)&lt;br /&gt;
|-&lt;br /&gt;
|bgcolor=&amp;quot;lightgray&amp;quot;|BSD&lt;br /&gt;
|style=&amp;quot;color:green;&amp;quot;|Yes (user compile/install)&lt;br /&gt;
|style=&amp;quot;color:green;&amp;quot;|Yes (user compile/install)&lt;br /&gt;
|-&lt;br /&gt;
!style=&amp;quot;color:blue;&amp;quot; colspan=&amp;quot;9&amp;quot;| Additional Features&lt;br /&gt;
|-&lt;br /&gt;
|bgcolor=&amp;quot;lightgray&amp;quot;|Match/Merge&lt;br /&gt;
|style=&amp;quot;color:green;&amp;quot;|Yes (Limited)&lt;br /&gt;
|style=&amp;quot;color:green;&amp;quot;|Yes (Limited)&lt;br /&gt;
|-&lt;br /&gt;
|bgcolor=&amp;quot;lightgray&amp;quot;|Multiple relationships (adoptive-foster)&lt;br /&gt;
|style=&amp;quot;color:green;&amp;quot;|Yes&lt;br /&gt;
|style=&amp;quot;color:green;&amp;quot;|Yes&lt;br /&gt;
|-&lt;br /&gt;
|bgcolor=&amp;quot;lightgray&amp;quot;|Relationship calculator&lt;br /&gt;
|style=&amp;quot;color:green;&amp;quot;|Yes&lt;br /&gt;
|style=&amp;quot;color:green;&amp;quot;|Yes&lt;br /&gt;
|-&lt;br /&gt;
|bgcolor=&amp;quot;lightgray&amp;quot;|Soundex calculator&lt;br /&gt;
|style=&amp;quot;color:green;&amp;quot;|Yes&lt;br /&gt;
|style=&amp;quot;color:green;&amp;quot;|Yes&lt;br /&gt;
|-&lt;br /&gt;
|bgcolor=&amp;quot;lightgray&amp;quot;|Spell check in notes&lt;br /&gt;
|style=&amp;quot;color:green;&amp;quot;|Yes&lt;br /&gt;
|style=&amp;quot;color:green;&amp;quot;|Yes&lt;br /&gt;
|-&lt;br /&gt;
|bgcolor=&amp;quot;lightgray&amp;quot;|3rd party Addon/plugin infrastructure&lt;br /&gt;
|style=&amp;quot;color:green;&amp;quot;|Yes&lt;br /&gt;
|style=&amp;quot;color:green;&amp;quot;|Yes&lt;br /&gt;
|-&lt;br /&gt;
|bgcolor=&amp;quot;lightgray&amp;quot;|Check for Program Update&lt;br /&gt;
|style=&amp;quot;color:red;&amp;quot;|No (Only for addons)&lt;br /&gt;
|style=&amp;quot;color:red;&amp;quot;|No (Only for addons)&lt;br /&gt;
|-&lt;br /&gt;
|bgcolor=&amp;quot;lightgray&amp;quot;|User Manual&lt;br /&gt;
|style=&amp;quot;color:green;&amp;quot;|Yes ([[User_manual|online]])&lt;br /&gt;
|style=&amp;quot;color:green;&amp;quot;|Yes ([[User_manual|online]])&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
=See also=&lt;br /&gt;
* [[Previous releases of Gramps]]&lt;br /&gt;
&lt;br /&gt;
[[Category:Documentation]]&lt;br /&gt;
[[Category:screenshots| ]]&lt;/div&gt;</summary>
		<author><name>Sten</name></author>
		
	</entry>
	<entry>
		<id>https://ftp.gramps-project.org/wiki/index.php?title=Template_talk:Gramps_translations&amp;diff=80193</id>
		<title>Template talk:Gramps translations</title>
		<link rel="alternate" type="text/html" href="https://ftp.gramps-project.org/wiki/index.php?title=Template_talk:Gramps_translations&amp;diff=80193"/>
		<updated>2020-07-30T06:13:20Z</updated>

		<summary type="html">&lt;p&gt;Sten: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Good day,&lt;br /&gt;
&lt;br /&gt;
Say me please:&lt;br /&gt;
&lt;br /&gt;
1. en_AU 	English (Australian)&lt;br /&gt;
&lt;br /&gt;
it's real language in Gramps?&lt;br /&gt;
&lt;br /&gt;
I not see it in /po/ dirs.&lt;br /&gt;
&lt;br /&gt;
Can I delete this language from list?&lt;br /&gt;
&lt;br /&gt;
2. I can't run this:&lt;br /&gt;
&lt;br /&gt;
# check localisation percentage&lt;br /&gt;
for file in *.po; do echo -n &amp;quot;${file} &amp;quot;; ./check_po -s ${file} | grep &amp;quot;Localized at&amp;quot;; done&lt;br /&gt;
&lt;br /&gt;
But nice work this:&lt;br /&gt;
&lt;br /&gt;
# check localisation percentage&lt;br /&gt;
for file in *.po; do echo -n &amp;quot;${file} &amp;quot;; python3 ./check_po -s ${file} | grep &amp;quot;Localized at&amp;quot;; done&lt;br /&gt;
&lt;br /&gt;
or change &amp;quot;python&amp;quot; to &amp;quot;python3&amp;quot; in first row of check_po.&lt;br /&gt;
&lt;br /&gt;
What must be?&lt;br /&gt;
&lt;br /&gt;
And file 'check_po' must be have name 'check_po' or 'check_po.py'?&lt;/div&gt;</summary>
		<author><name>Sten</name></author>
		
	</entry>
	<entry>
		<id>https://ftp.gramps-project.org/wiki/index.php?title=Template_talk:Gramps_translations&amp;diff=80185</id>
		<title>Template talk:Gramps translations</title>
		<link rel="alternate" type="text/html" href="https://ftp.gramps-project.org/wiki/index.php?title=Template_talk:Gramps_translations&amp;diff=80185"/>
		<updated>2020-07-29T16:41:32Z</updated>

		<summary type="html">&lt;p&gt;Sten: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Good day,&lt;br /&gt;
Say me please:&lt;br /&gt;
&lt;br /&gt;
1. en_AU 	English (Australian)&lt;br /&gt;
&lt;br /&gt;
it's real language in Gramps?&lt;br /&gt;
&lt;br /&gt;
I not see it in /po/ dirs.&lt;br /&gt;
&lt;br /&gt;
Can I delete this language from list?&lt;br /&gt;
&lt;br /&gt;
2. I can't run this:&lt;br /&gt;
&lt;br /&gt;
# check localisation percentage&lt;br /&gt;
for file in *.po; do echo -n &amp;quot;${file} &amp;quot;; ./check_po -s ${file} | grep &amp;quot;Localized at&amp;quot;; done&lt;br /&gt;
&lt;br /&gt;
But nice work this:&lt;br /&gt;
&lt;br /&gt;
# check localisation percentage&lt;br /&gt;
for file in *.po; do echo -n &amp;quot;${file} &amp;quot;; python3 ./check_po -s ${file} | grep &amp;quot;Localized at&amp;quot;; done&lt;br /&gt;
&lt;br /&gt;
What must be?&lt;br /&gt;
&lt;br /&gt;
And file 'check_po' must be 'check_po' or 'check_po.py'?&lt;/div&gt;</summary>
		<author><name>Sten</name></author>
		
	</entry>
	<entry>
		<id>https://ftp.gramps-project.org/wiki/index.php?title=Template_talk:Gramps_translations&amp;diff=80184</id>
		<title>Template talk:Gramps translations</title>
		<link rel="alternate" type="text/html" href="https://ftp.gramps-project.org/wiki/index.php?title=Template_talk:Gramps_translations&amp;diff=80184"/>
		<updated>2020-07-29T16:40:28Z</updated>

		<summary type="html">&lt;p&gt;Sten: Questions about this page.&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Good day,&lt;br /&gt;
Say me please:&lt;br /&gt;
&lt;br /&gt;
1. en_AU 	English (Australian)&lt;br /&gt;
it's real language in Gramps?&lt;br /&gt;
I not see it in /po/ dirs.&lt;br /&gt;
Can I delete this language from list?&lt;br /&gt;
&lt;br /&gt;
2. I can't run this:&lt;br /&gt;
# check localisation percentage&lt;br /&gt;
for file in *.po; do echo -n &amp;quot;${file} &amp;quot;; ./check_po -s ${file} | grep &amp;quot;Localized at&amp;quot;; done&lt;br /&gt;
But nice work this:&lt;br /&gt;
# check localisation percentage&lt;br /&gt;
for file in *.po; do echo -n &amp;quot;${file} &amp;quot;; python3 ./check_po -s ${file} | grep &amp;quot;Localized at&amp;quot;; done&lt;br /&gt;
What must be?&lt;br /&gt;
And file 'check_po' must be 'check_po' or 'check_po.py'?&lt;/div&gt;</summary>
		<author><name>Sten</name></author>
		
	</entry>
	<entry>
		<id>https://ftp.gramps-project.org/wiki/index.php?title=Template:Gramps_translations&amp;diff=80183</id>
		<title>Template:Gramps translations</title>
		<link rel="alternate" type="text/html" href="https://ftp.gramps-project.org/wiki/index.php?title=Template:Gramps_translations&amp;diff=80183"/>
		<updated>2020-07-29T16:25:52Z</updated>

		<summary type="html">&lt;p&gt;Sten: /* INCOMPLETE_TRANSLATIONS */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&amp;lt;noinclude&amp;gt;A list of the languages in which Gramps has been translated, along with some additional information used during [[What_to_do_for_a_release|release cycles]] and contact information. &lt;br /&gt;
&lt;br /&gt;
===ALL_LINGUAS===&lt;br /&gt;
For enabling, a language code must be set in the ''ALL_LINGUAS'' section in the file:&lt;br /&gt;
* [https://github.com/gramps-project/gramps/blob/maintenance/gramps34/configure.in configure.in] in Gramps 3.x&lt;br /&gt;
* [{{Code Browser}}/tree/master/setup.py setup.py] in Gramps 4.x and greater&lt;br /&gt;
&lt;br /&gt;
[[Translating Gramps|Help translate Gramps to other languages]] or to improve existing translations.&lt;br /&gt;
&lt;br /&gt;
 # Go to the /po directory&lt;br /&gt;
 cd po&lt;br /&gt;
 &lt;br /&gt;
 # update with last template&lt;br /&gt;
 for file in *.po; do echo -n &amp;quot;${file} &amp;quot;; msgmerge --no-wrap ${file} gramps.pot -o ${file}; done&lt;br /&gt;
 &lt;br /&gt;
 # check localisation percentage&lt;br /&gt;
 for file in *.po; do echo -n &amp;quot;${file} &amp;quot;; ./check_po -s ${file} | grep &amp;quot;Localized at&amp;quot;; done&lt;br /&gt;
&lt;br /&gt;
====INCOMPLETE_TRANSLATIONS====&lt;br /&gt;
The minimum complete translation is 70% (if the translation is very close to that percentage also enable it, also keep ''en_GB'' as it is a special subtranslation of English)&lt;br /&gt;
&lt;br /&gt;
Add the locale code (if less than 70%) or remove the locale code (if greater than 70%)as required from the following ''INCOMPLETE_TRANSLATIONS'' section in the file:&lt;br /&gt;
* [https://github.com/gramps-project/gramps/blob/master/gramps/gen/utils/grampslocale.py#L119 gramps/gen/utils/grampslocale.py] in Gramps 4.x and greater&lt;br /&gt;
  INCOMPLETE_TRANSLATIONS = ('ar', 'bg', 'he', 'ja', 'sq', 'ta', 'tr')&lt;br /&gt;
&lt;br /&gt;
&amp;lt;/noinclude&amp;gt;{| class=&amp;quot;wikitable sortable&amp;quot;&lt;br /&gt;
! &amp;lt;!-- No --&amp;gt; Number&lt;br /&gt;
! &amp;lt;!-- ISO-639-1 --&amp;gt; [http://en.wikipedia.org/wiki/List_of_ISO_639-1_codes Code]&lt;br /&gt;
! &amp;lt;!-- Language  --&amp;gt; Language&lt;br /&gt;
! &amp;lt;!-- Translator   --&amp;gt; Translator &lt;br /&gt;
! Coverage&amp;lt;br&amp;gt;gramps50; 5.0.2&amp;lt;br&amp;gt;2019-08-27&lt;br /&gt;
! Coverage&amp;lt;br&amp;gt;gramps51; 5.1.2&amp;lt;br&amp;gt;2020-07-29&lt;br /&gt;
! Coverage&amp;lt;br&amp;gt;master&amp;lt;br&amp;gt;&lt;br /&gt;
! &amp;lt;!-- Notes     --&amp;gt; Notes&lt;br /&gt;
|-&lt;br /&gt;
| &amp;lt;!-- No --&amp;gt; 1&lt;br /&gt;
| &amp;lt;!-- ISO-639-1 --&amp;gt; ar&lt;br /&gt;
| &amp;lt;!-- Language  --&amp;gt; Arabic&lt;br /&gt;
| &amp;lt;!-- Contact   --&amp;gt; '''[[Translating_Gramps|Translator Vacancy]]'''&lt;br /&gt;
|{{progress|54.7}}&lt;br /&gt;
|{{progress|52.5}}&lt;br /&gt;
|[{{Code Browser}}/tree/master/po/ar.po]&lt;br /&gt;
| &amp;lt;!-- Notes     --&amp;gt; see [http://sourceforge.net/mailarchive/message.php?msg_id=13026041 mailing-list], and {{bug|6819}}: date handler&lt;br /&gt;
|-&lt;br /&gt;
| &amp;lt;!-- No --&amp;gt; 2&lt;br /&gt;
| &amp;lt;!-- ISO-639-1 --&amp;gt; bg&lt;br /&gt;
| &amp;lt;!-- Language  --&amp;gt; Bulgarian&lt;br /&gt;
| &amp;lt;!-- Contact   --&amp;gt; '''[[Translating_Gramps|Translator Vacancy]]'''&lt;br /&gt;
|{{progress|56.9}}&lt;br /&gt;
|{{progress|54.6}}&lt;br /&gt;
|&lt;br /&gt;
| &amp;lt;!-- Notes     --&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
| &amp;lt;!-- No --&amp;gt; 3&lt;br /&gt;
| &amp;lt;!-- ISO-639-1 --&amp;gt; br&lt;br /&gt;
| &amp;lt;!-- Language  --&amp;gt; Breton&lt;br /&gt;
| &amp;lt;!-- Contact   --&amp;gt; '''[[Translating_Gramps|Translator Vacancy]]'''&lt;br /&gt;
|{{progress|2.9}} (not enabled)&lt;br /&gt;
|{{progress|2.6}}&lt;br /&gt;
|[{{Code Browser}}/tree/master/po/br.po]&lt;br /&gt;
| &amp;lt;!-- Notes     --&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
| &amp;lt;!-- No --&amp;gt; 4&lt;br /&gt;
| &amp;lt;!-- ISO-639-1 --&amp;gt;  ca&lt;br /&gt;
| &amp;lt;!-- Language  --&amp;gt; Catalan&lt;br /&gt;
| &amp;lt;!-- Contact   --&amp;gt; Joan Creus&lt;br /&gt;
|{{progress|99.6}}&lt;br /&gt;
|{{progress|98.3}}&lt;br /&gt;
|&lt;br /&gt;
| &amp;lt;!-- Notes     --&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
| &amp;lt;!-- No --&amp;gt; 5&lt;br /&gt;
| &amp;lt;!-- ISO-639-1 --&amp;gt;  cs&lt;br /&gt;
| &amp;lt;!-- Language  --&amp;gt; Czech&lt;br /&gt;
| &amp;lt;!-- Contact   --&amp;gt; Zdeněk Hataš&lt;br /&gt;
|{{progress|100.0}}&lt;br /&gt;
|{{progress|98.6}}&lt;br /&gt;
|&lt;br /&gt;
| &amp;lt;!-- Notes     --&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
| &amp;lt;!-- No --&amp;gt; 6&lt;br /&gt;
| &amp;lt;!-- ISO-639-1 --&amp;gt; da&lt;br /&gt;
| &amp;lt;!-- Language  --&amp;gt; Danish&lt;br /&gt;
| &amp;lt;!-- Contact   --&amp;gt; Kaj Mikkelsen&lt;br /&gt;
|{{progress|100.0}}&lt;br /&gt;
|{{progress|99.9}}&lt;br /&gt;
|&lt;br /&gt;
| &amp;lt;!-- Notes     --&amp;gt; &lt;br /&gt;
|-&lt;br /&gt;
| &amp;lt;!-- No --&amp;gt; 7&lt;br /&gt;
| &amp;lt;!-- ISO-639-1 --&amp;gt; de&lt;br /&gt;
| &amp;lt;!-- Language  --&amp;gt; German&lt;br /&gt;
| &amp;lt;!-- Contact   --&amp;gt; [[User:Leonhaeuser|Mirko Leonhäuser]]&lt;br /&gt;
|{{progress|99.7}}&lt;br /&gt;
|{{progress|99.7}}&lt;br /&gt;
|&lt;br /&gt;
| &amp;lt;!-- Notes     --&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
| &amp;lt;!-- No --&amp;gt; 8&lt;br /&gt;
| &amp;lt;!-- ISO-639-1 --&amp;gt; el&lt;br /&gt;
| &amp;lt;!-- Language  --&amp;gt; Greek&lt;br /&gt;
| &amp;lt;!-- Contact   --&amp;gt; Zissis Papadopoulos&lt;br /&gt;
|{{progress|81.7}}&lt;br /&gt;
|{{progress|78.5}}&lt;br /&gt;
|&lt;br /&gt;
| &amp;lt;!-- Notes     --&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
! &amp;lt;!-- No --&amp;gt; 9&lt;br /&gt;
! &amp;lt;!-- ISO-639-1 --&amp;gt; en_US&lt;br /&gt;
! &amp;lt;!-- Language  --&amp;gt; [http://en.wikipedia.org/wiki/English_language English]&lt;br /&gt;
! &amp;lt;!-- Contact   --&amp;gt; N/A  ('''Default Language''')&lt;br /&gt;
!{{progress|100.0}}&lt;br /&gt;
!{{progress|100.0}}&lt;br /&gt;
!&lt;br /&gt;
! &amp;lt;!-- Notes     --&amp;gt;[http://gramps.1791082.n4.nabble.com/English-or-American-spelling-td4623552.html American English]&lt;br /&gt;
|-&lt;br /&gt;
| &amp;lt;!-- No --&amp;gt; 10&lt;br /&gt;
| &amp;lt;!-- ISO-639-1 --&amp;gt; en_GB&lt;br /&gt;
| &amp;lt;!-- Language  --&amp;gt; [http://en.wikipedia.org/wiki/British_English English (British)]&lt;br /&gt;
| &amp;lt;!-- Contact   --&amp;gt; [[User:Nick_H|Nick Hall]]&lt;br /&gt;
|{{progress|2.5}}&lt;br /&gt;
|{{progress|2.2}}&lt;br /&gt;
|&lt;br /&gt;
| &amp;lt;!-- Notes     --&amp;gt;[http://gramps.1791082.n4.nabble.com/English-or-American-spelling-td4623552.html#a4626565 English (British)][{{Code Browser}}/tree/master/po/en_GB.po en_GB.po]&lt;br /&gt;
variation ~ 5%&lt;br /&gt;
|-&lt;br /&gt;
| &amp;lt;!-- No --&amp;gt; 11&lt;br /&gt;
| &amp;lt;!-- ISO-639-1 --&amp;gt; en_AU&lt;br /&gt;
| &amp;lt;!-- Language  --&amp;gt; [http://en.wikipedia.org/wiki/Australian_English English (Australian)]&lt;br /&gt;
| &amp;lt;!-- Contact   --&amp;gt; '''[[Translating_Gramps|Translator Vacancy]]'''&lt;br /&gt;
|{{progress|0}}&lt;br /&gt;
|{{progress|0}}&lt;br /&gt;
|&lt;br /&gt;
| &amp;lt;!-- Notes     --&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
| &amp;lt;!-- No --&amp;gt; 12&lt;br /&gt;
| &amp;lt;!-- ISO-639-1 --&amp;gt; eo&lt;br /&gt;
| &amp;lt;!-- Language  --&amp;gt; Esperanto&lt;br /&gt;
| &amp;lt;!-- Contact   --&amp;gt; Pier Luigi Cinquantini&lt;br /&gt;
|{{progress|99.3}}&lt;br /&gt;
|{{progress|93.7}}&lt;br /&gt;
|&lt;br /&gt;
| &amp;lt;!-- Notes     --&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
| &amp;lt;!-- No --&amp;gt; 13&lt;br /&gt;
| &amp;lt;!-- ISO-639-1 --&amp;gt; es&lt;br /&gt;
| &amp;lt;!-- Language  --&amp;gt; Spanish&lt;br /&gt;
| &amp;lt;!-- Contact   --&amp;gt; '''[[Translating_Gramps|Translator Vacancy]]'''&lt;br /&gt;
|{{progress|82.6}}&lt;br /&gt;
|{{progress|79.5}}&lt;br /&gt;
|&lt;br /&gt;
| &amp;lt;!-- Notes     --&amp;gt;{{bug|4185}}, {{bug|6645}}:Kinship report (Relationships)&lt;br /&gt;
|-&lt;br /&gt;
| &amp;lt;!-- No --&amp;gt; 14&lt;br /&gt;
| &amp;lt;!-- ISO-639-1 --&amp;gt; fi&lt;br /&gt;
| &amp;lt;!-- Language  --&amp;gt; Finnish&lt;br /&gt;
| &amp;lt;!-- Contact   --&amp;gt; Matti Niemelä &lt;br /&gt;
|{{progress|100.0}}&lt;br /&gt;
|{{progress|99.9}}&lt;br /&gt;
|[{{Code Browser}}/tree/master/po/fi.po]&lt;br /&gt;
| &amp;lt;!-- Notes     --&amp;gt; {{bug|2356}}: genitive form for names, [[Translation_into_Finnish|Translation into Finnish]]&lt;br /&gt;
|-&lt;br /&gt;
| &amp;lt;!-- No --&amp;gt; 15&lt;br /&gt;
| &amp;lt;!-- ISO-639-1 --&amp;gt; fr&lt;br /&gt;
| &amp;lt;!-- Language  --&amp;gt; French&lt;br /&gt;
| &amp;lt;!-- Contact   --&amp;gt; '''[[Translating_Gramps|Translator Vacancy]]'''&lt;br /&gt;
|{{progress|98.3}}&lt;br /&gt;
|{{progress|97.9}}&lt;br /&gt;
|&lt;br /&gt;
| &amp;lt;!-- Notes     --&amp;gt; [[Translation_into_French|Translation into French]]&lt;br /&gt;
|-&lt;br /&gt;
| &amp;lt;!-- No --&amp;gt; 16&lt;br /&gt;
| &amp;lt;!-- ISO-639-1 --&amp;gt; ga&lt;br /&gt;
| &amp;lt;!-- Language  --&amp;gt; Irish&lt;br /&gt;
| &amp;lt;!-- Contact   --&amp;gt; '''[[Translating_Gramps|Translator Vacancy]]'''&lt;br /&gt;
|{{progress|0.3}} (not enabled)&lt;br /&gt;
|{{progress|0.07}} (not enabled)&lt;br /&gt;
| [{{Code Browser}}/tree/master/po/ga.po]&lt;br /&gt;
| &amp;lt;!-- Notes     --&amp;gt; [http://sourceforge.net/mailarchive/message.php?msg_id=26863727 mailing-list]&lt;br /&gt;
|-&lt;br /&gt;
| &amp;lt;!-- No --&amp;gt; 17&lt;br /&gt;
| &amp;lt;!-- ISO-639-1 --&amp;gt; he&lt;br /&gt;
| &amp;lt;!-- Language  --&amp;gt; Hebrew&lt;br /&gt;
| &amp;lt;!-- Contact   --&amp;gt; Avi Markovitz&lt;br /&gt;
|{{progress|42.4}}&lt;br /&gt;
|{{progress|99.97}}&lt;br /&gt;
|[{{Code Browser}}/tree/master/po/he.po]&lt;br /&gt;
| &amp;lt;!-- Notes     --&amp;gt; {{bug|2962}}&lt;br /&gt;
|-&lt;br /&gt;
| &amp;lt;!-- No --&amp;gt; 18&lt;br /&gt;
| &amp;lt;!-- ISO-639-1 --&amp;gt; hr&lt;br /&gt;
| &amp;lt;!-- Language  --&amp;gt; Croatian&lt;br /&gt;
| &amp;lt;!-- Contact   --&amp;gt; '''[[Translating_Gramps|Translator Vacancy]]'''&lt;br /&gt;
|{{progress|100.0}}&lt;br /&gt;
|{{progress|99.96}}&lt;br /&gt;
|&lt;br /&gt;
| &amp;lt;!-- Notes     --&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
| &amp;lt;!-- No --&amp;gt; 19&lt;br /&gt;
| &amp;lt;!-- ISO-639-1 --&amp;gt; hu&lt;br /&gt;
| &amp;lt;!-- Language  --&amp;gt; Hungarian&lt;br /&gt;
| &amp;lt;!-- Contact   --&amp;gt; Lajos Nemeséri&lt;br /&gt;
|{{progress|100.0}}&lt;br /&gt;
|{{progress|99.21}}&lt;br /&gt;
|&lt;br /&gt;
| &amp;lt;!-- Notes     --&amp;gt; {{bug|5505}}:[[Date_Handler]]&lt;br /&gt;
|-&lt;br /&gt;
| &amp;lt;!-- No --&amp;gt; 20&lt;br /&gt;
| &amp;lt;!-- ISO-639-1 --&amp;gt; is&lt;br /&gt;
| &amp;lt;!-- Language  --&amp;gt; Icelandic&lt;br /&gt;
| &amp;lt;!-- Contact   --&amp;gt; Sveinn í Felli&lt;br /&gt;
|{{progress|90.4}}&lt;br /&gt;
|{{progress|87.55}}&lt;br /&gt;
|&lt;br /&gt;
| &amp;lt;!-- Notes     --&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
| &amp;lt;!-- No --&amp;gt; 21&lt;br /&gt;
| &amp;lt;!-- ISO-639-1 --&amp;gt; it&lt;br /&gt;
| &amp;lt;!-- Language  --&amp;gt; Italian&lt;br /&gt;
| &amp;lt;!-- Contact   --&amp;gt; Luigi Toscano&lt;br /&gt;
|{{progress|95.0}}&lt;br /&gt;
|{{progress|91.2}}&lt;br /&gt;
|&lt;br /&gt;
| &amp;lt;!-- Notes     --&amp;gt;{{bug|4185}}:Kinship report (Relationships)&lt;br /&gt;
|-&lt;br /&gt;
| &amp;lt;!-- No --&amp;gt; 22&lt;br /&gt;
| &amp;lt;!-- ISO-639-1 --&amp;gt; ja&lt;br /&gt;
| &amp;lt;!-- Language  --&amp;gt; Japanese&lt;br /&gt;
| &amp;lt;!-- Contact   --&amp;gt; Keiichiro Yamamoto, Megumi Sakata&lt;br /&gt;
|{{progress|40.4}}&lt;br /&gt;
|{{progress|38.7}}&lt;br /&gt;
|[{{Code Browser}}/tree/master/po/ja.po]&lt;br /&gt;
| &amp;lt;!-- Notes     --&amp;gt; (''[https://raw.github.com/yanmar/gramps-translation-ja/master/po/ja.po github]'') / (Feature request:{{bug|3120}} support for Japanese Era calendar scheme)&lt;br /&gt;
|-&lt;br /&gt;
| &amp;lt;!-- No --&amp;gt; 23&lt;br /&gt;
| &amp;lt;!-- ISO-639-1 --&amp;gt; lt&lt;br /&gt;
| &amp;lt;!-- Language  --&amp;gt; Lithuanian&lt;br /&gt;
| &amp;lt;!-- Contact   --&amp;gt; '''[[Translating_Gramps|Translator Vacancy]]'''&lt;br /&gt;
|{{progress|98.3}}&lt;br /&gt;
|{{progress|94.4}}&lt;br /&gt;
|&lt;br /&gt;
| &amp;lt;!-- Notes     --&amp;gt;{{bug|4848}}&lt;br /&gt;
|-&lt;br /&gt;
| &amp;lt;!-- No --&amp;gt; 24&lt;br /&gt;
| &amp;lt;!-- ISO-639-1 --&amp;gt; mk&lt;br /&gt;
| &amp;lt;!-- Language  --&amp;gt; Macedonian&lt;br /&gt;
| &amp;lt;!-- Contact   --&amp;gt; '''[[Translating_Gramps|Translator Vacancy]]'''&lt;br /&gt;
|{{progress|24.9}} (not enabled)&lt;br /&gt;
|{{progress|23.8}} (not enabled)&lt;br /&gt;
|[{{Code Browser}}/tree/master/po/mk.po]&lt;br /&gt;
| &amp;lt;!-- Notes     --&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
| &amp;lt;!-- No --&amp;gt; 25&lt;br /&gt;
| &amp;lt;!-- ISO-639-1 --&amp;gt; nb&lt;br /&gt;
| &amp;lt;!-- Language  --&amp;gt; Norwegian Bokmål&lt;br /&gt;
| &amp;lt;!-- Contact   --&amp;gt; [[User:Espenbe|Espen Berg]]&lt;br /&gt;
|{{progress|99.0}}&lt;br /&gt;
|{{progress|94.96}}&lt;br /&gt;
|&lt;br /&gt;
| &amp;lt;!-- Notes     --&amp;gt; [https://github.com/gramps-project/gramps/blob/master/gramps/gen/datehandler/_datehandler.py see DateDisplay]&lt;br /&gt;
|-&lt;br /&gt;
| &amp;lt;!-- No --&amp;gt; 26&lt;br /&gt;
| &amp;lt;!-- ISO-639-1 --&amp;gt; nl&lt;br /&gt;
| &amp;lt;!-- Language  --&amp;gt; Dutch&lt;br /&gt;
| &amp;lt;!-- Contact   --&amp;gt; Jan Sparreboom&lt;br /&gt;
|{{progress|98.4}}&lt;br /&gt;
|{{progress|94.6}}&lt;br /&gt;
|&lt;br /&gt;
| &amp;lt;!-- Notes     --&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
| &amp;lt;!-- No --&amp;gt; 27&lt;br /&gt;
| &amp;lt;!-- ISO-639-1 --&amp;gt; nn&lt;br /&gt;
| &amp;lt;!-- Language  --&amp;gt; Norwegian Nynorsk&lt;br /&gt;
| &amp;lt;!-- Contact   --&amp;gt; Sigmund Lorentsen&lt;br /&gt;
|{{progress|87.8}}&lt;br /&gt;
|{{progress|94.3}}&lt;br /&gt;
|&lt;br /&gt;
| &amp;lt;!-- Notes     --&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
| &amp;lt;!-- No --&amp;gt; 28&lt;br /&gt;
| &amp;lt;!-- ISO-639-1 --&amp;gt; pl&lt;br /&gt;
| &amp;lt;!-- Language  --&amp;gt; Polish&lt;br /&gt;
| &amp;lt;!-- Contact   --&amp;gt; '''[[Translating_Gramps|Translator Vacancy]]'''&lt;br /&gt;
|{{progress|87.9}}&lt;br /&gt;
|{{progress|84.7}}&lt;br /&gt;
|&lt;br /&gt;
| &amp;lt;!-- Notes     --&amp;gt; &lt;br /&gt;
|-&lt;br /&gt;
| &amp;lt;!-- No --&amp;gt; 29&lt;br /&gt;
| &amp;lt;!-- ISO-639-1 --&amp;gt; pt_BR&lt;br /&gt;
| &amp;lt;!-- Language  --&amp;gt; Portuguese (Brazil)&lt;br /&gt;
| &amp;lt;!-- Contact   --&amp;gt; Paulo Henrique, Paiva de Moraes&lt;br /&gt;
|{{progress|98.2}}&lt;br /&gt;
|{{progress|98.16}}&lt;br /&gt;
|&lt;br /&gt;
| &amp;lt;!-- Notes     --&amp;gt;{{bug|4185}}:Kinship report (Relationships)&lt;br /&gt;
|-&lt;br /&gt;
| &amp;lt;!-- No --&amp;gt; 30&lt;br /&gt;
| &amp;lt;!-- ISO-639-1 --&amp;gt; pt_PT&lt;br /&gt;
| &amp;lt;!-- Language  --&amp;gt; Portuguese (Portugal)&lt;br /&gt;
| &amp;lt;!-- Contact   --&amp;gt; Pedro Albuquerque &lt;br /&gt;
|{{progress|99.7}}&lt;br /&gt;
|{{progress|95.56}}&lt;br /&gt;
|&lt;br /&gt;
| &amp;lt;!-- Notes     --&amp;gt;{{bug|4185}}: Kinship report (Relationships)&lt;br /&gt;
|-&lt;br /&gt;
| &amp;lt;!-- No --&amp;gt; 31&lt;br /&gt;
| &amp;lt;!-- ISO-639-1 --&amp;gt; ro&lt;br /&gt;
| &amp;lt;!-- Language  --&amp;gt; Romanian&lt;br /&gt;
| &amp;lt;!-- Contact   --&amp;gt; '''[[Translating_Gramps|Translator Vacancy]]'''&lt;br /&gt;
|{{progress|4.4}}&lt;br /&gt;
|{{progress|4.09}}&lt;br /&gt;
|[{{Code Browser}}/tree/master/po/ro.po]&lt;br /&gt;
| &amp;lt;!-- Notes     --&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
| &amp;lt;!-- No --&amp;gt; 32&lt;br /&gt;
| &amp;lt;!-- ISO-639-1 --&amp;gt; ru&lt;br /&gt;
| &amp;lt;!-- Language  --&amp;gt; Russian&lt;br /&gt;
| &amp;lt;!-- Contact   --&amp;gt; Ivan Komaritsyn&lt;br /&gt;
|{{progress|99.7}}&lt;br /&gt;
|{{progress|99.21}}&lt;br /&gt;
|&lt;br /&gt;
| &amp;lt;!-- Notes     --&amp;gt; [[Translation_into_Russian|Translation into Russian]]&lt;br /&gt;
|-&lt;br /&gt;
| &amp;lt;!-- No --&amp;gt; 33&lt;br /&gt;
| &amp;lt;!-- ISO-639-1 --&amp;gt; sk&lt;br /&gt;
| &amp;lt;!-- Language  --&amp;gt; Slovak&lt;br /&gt;
| &amp;lt;!-- Contact   --&amp;gt; '''[[Translating_Gramps|Translator Vacancy]]'''&lt;br /&gt;
|{{progress|90.9}}&lt;br /&gt;
|{{progress|87.42}}&lt;br /&gt;
|&lt;br /&gt;
| &amp;lt;!-- Notes     --&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
| &amp;lt;!-- No --&amp;gt; 34&lt;br /&gt;
| &amp;lt;!-- ISO-639-1 --&amp;gt; sl&lt;br /&gt;
| &amp;lt;!-- Language  --&amp;gt; Slovenian&lt;br /&gt;
| &amp;lt;!-- Contact   --&amp;gt; [[User:Beernarrd|Bernard Banko]]&lt;br /&gt;
|{{progress|100.0}}&lt;br /&gt;
|{{progress|96.01}}&lt;br /&gt;
|&lt;br /&gt;
| &amp;lt;!-- Notes     --&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
| &amp;lt;!-- No --&amp;gt; 35&lt;br /&gt;
| &amp;lt;!-- ISO-639-1 --&amp;gt; sq&lt;br /&gt;
| &amp;lt;!-- Language  --&amp;gt; Albanian&lt;br /&gt;
| &amp;lt;!-- Contact   --&amp;gt; '''[[Translating_Gramps|Translator Vacancy]]'''&lt;br /&gt;
|{{progress|39.4}}&lt;br /&gt;
|{{progress|37.8}}&lt;br /&gt;
|[{{Code Browser}}/tree/master/po/sq.po]&lt;br /&gt;
| &amp;lt;!-- Notes     --&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
| &amp;lt;!-- No --&amp;gt; 36&lt;br /&gt;
| &amp;lt;!-- ISO-639-1 --&amp;gt; sr&lt;br /&gt;
| &amp;lt;!-- Language  --&amp;gt; Serbian&lt;br /&gt;
| &amp;lt;!-- Contact   --&amp;gt; '''[[Translating_Gramps|Translator Vacancy]]'''&lt;br /&gt;
|{{progress|82.1}}&lt;br /&gt;
|{{progress|78.9}}&lt;br /&gt;
|[{{Code Browser}}/tree/master/po/sr.po]&lt;br /&gt;
| &amp;lt;!-- Notes     --&amp;gt; see {{bug|2375}}&lt;br /&gt;
|-&lt;br /&gt;
| &amp;lt;!-- No --&amp;gt; 37&lt;br /&gt;
| &amp;lt;!-- ISO-639-1 --&amp;gt; sr Latin&lt;br /&gt;
| &amp;lt;!-- Language  --&amp;gt; Serbian Latin&lt;br /&gt;
| &amp;lt;!-- Contact   --&amp;gt; '''[[Translating_Gramps|Translator Vacancy]]'''&lt;br /&gt;
|{{progress|2.7}}&lt;br /&gt;
|{{progress|2.3}}&lt;br /&gt;
|[{{Code Browser}}/tree/master/po/sr_Latn.po]&lt;br /&gt;
| &amp;lt;!-- Notes     --&amp;gt; see {{bug|2375}}&lt;br /&gt;
|-&lt;br /&gt;
| &amp;lt;!-- No --&amp;gt; 38&lt;br /&gt;
| &amp;lt;!-- ISO-639-1 --&amp;gt; sv&lt;br /&gt;
| &amp;lt;!-- Language  --&amp;gt; Swedish&lt;br /&gt;
| &amp;lt;!-- Contact   --&amp;gt; Pär Ekholm &lt;br /&gt;
|{{progress|100.0}}&lt;br /&gt;
|{{progress|100.0}}&lt;br /&gt;
|&lt;br /&gt;
| &amp;lt;!-- Notes     --&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
| &amp;lt;!-- No --&amp;gt; 39&lt;br /&gt;
| &amp;lt;!-- ISO-639-1 --&amp;gt; ta&lt;br /&gt;
| &amp;lt;!-- Language  --&amp;gt; Tamil&lt;br /&gt;
| &amp;lt;!-- Contact   --&amp;gt; '''[[Translating_Gramps|Translator Vacancy]]'''&lt;br /&gt;
|{{progress|6.4}}&lt;br /&gt;
|{{progress|6.0}}&lt;br /&gt;
|&lt;br /&gt;
| &amp;lt;!-- Notes     --&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
| &amp;lt;!-- No --&amp;gt; 40&lt;br /&gt;
| &amp;lt;!-- ISO-639-1 --&amp;gt; tr&lt;br /&gt;
| &amp;lt;!-- Language  --&amp;gt; Turkish&lt;br /&gt;
| &amp;lt;!-- Contact   --&amp;gt; '''[[Translating_Gramps|Translator Vacancy]]'''&lt;br /&gt;
|{{progress|27.5}}&lt;br /&gt;
|{{progress|26.2}}&lt;br /&gt;
|[{{Code Browser}}/tree/master/po/tr.po]&lt;br /&gt;
| &amp;lt;!-- Notes     --&amp;gt;{{bug|8148}}&lt;br /&gt;
|-&lt;br /&gt;
| &amp;lt;!-- No --&amp;gt; 41&lt;br /&gt;
| &amp;lt;!-- ISO-639-1 --&amp;gt; uk&lt;br /&gt;
| &amp;lt;!-- Language  --&amp;gt; Ukrainian&lt;br /&gt;
| &amp;lt;!-- Contact   --&amp;gt; [http://sourceforge.net/users/fedik/ Fedir Zinchuk]&lt;br /&gt;
|{{progress|97.3}}&lt;br /&gt;
|{{progress|98.15}}&lt;br /&gt;
|&lt;br /&gt;
| &amp;lt;!-- Notes     --&amp;gt; Relationships handler only available for 3.4 (need test on 4.0)&lt;br /&gt;
|-&lt;br /&gt;
| &amp;lt;!-- No --&amp;gt; 42&lt;br /&gt;
| &amp;lt;!-- ISO-639-1 --&amp;gt; vi&lt;br /&gt;
| &amp;lt;!-- Language  --&amp;gt; Vietnamese&lt;br /&gt;
| &amp;lt;!-- Contact   --&amp;gt; [[User:Detran|De Tran]]&lt;br /&gt;
|{{progress|98.5}}&lt;br /&gt;
|{{progress|95.7}}&lt;br /&gt;
|&lt;br /&gt;
| &amp;lt;!-- Notes     --&amp;gt; {{bug|4400}}: lunisolar calendar support ?&lt;br /&gt;
|-&lt;br /&gt;
| &amp;lt;!-- No --&amp;gt; 43&lt;br /&gt;
| &amp;lt;!-- ISO-639-1 --&amp;gt; zh_CN&lt;br /&gt;
| &amp;lt;!-- Language  --&amp;gt; Chinese (Simplified)&lt;br /&gt;
| &amp;lt;!-- Contact   --&amp;gt; '''[[Translating_Gramps|Translator Vacancy]]'''&lt;br /&gt;
|{{progress|70.5}}&lt;br /&gt;
|{{progress|73.81}}&lt;br /&gt;
|&lt;br /&gt;
| &amp;lt;!-- Notes     --&amp;gt;{{bug|4400}}: lunisolar calendar support ?&lt;br /&gt;
|-&lt;br /&gt;
| &amp;lt;!-- No --&amp;gt; 44&lt;br /&gt;
| &amp;lt;!-- ISO-639-1 --&amp;gt; zh_HK&lt;br /&gt;
| &amp;lt;!-- Language  --&amp;gt; Chinese (Hong Kong)&lt;br /&gt;
| &amp;lt;!-- Contact   --&amp;gt; '''[[Translating_Gramps|Translator Vacancy]]'''&lt;br /&gt;
|{{progress|70.5}}&lt;br /&gt;
|{{progress|67.7}}&lt;br /&gt;
|&lt;br /&gt;
| &amp;lt;!-- Notes     --&amp;gt;{{bug|4400}}: lunisolar calendar support ?&lt;br /&gt;
|-&lt;br /&gt;
| &amp;lt;!-- No --&amp;gt; 45&lt;br /&gt;
| &amp;lt;!-- ISO-639-1 --&amp;gt; zh_TW&lt;br /&gt;
| &amp;lt;!-- Language  --&amp;gt; Chinese (Traditional)&lt;br /&gt;
| &amp;lt;!-- Contact   --&amp;gt; '''[[Translating_Gramps|Translator Vacancy]]'''&lt;br /&gt;
|{{progress|70.5}}&lt;br /&gt;
|{{progress|67.7}}&lt;br /&gt;
|&lt;br /&gt;
| &amp;lt;!-- Notes     --&amp;gt;{{bug|4400}}: lunisolar calendar support ?&lt;br /&gt;
|} &lt;br /&gt;
{{-}}&lt;br /&gt;
{| class=&amp;quot;wikitable sortable&amp;quot;&lt;br /&gt;
! Custom&lt;br /&gt;
! Type&lt;br /&gt;
! &amp;lt;!-- Contact   --&amp;gt; Contact&lt;br /&gt;
! Coverage&amp;lt;br&amp;gt;Gramps 2.2.6&lt;br /&gt;
! Coverage&amp;lt;br&amp;gt;Gramps 3.1.3&lt;br /&gt;
! Coverage&amp;lt;br&amp;gt;(master)&lt;br /&gt;
! &amp;lt;!-- Notes     --&amp;gt; Notes&lt;br /&gt;
|-&lt;br /&gt;
| [http://gramps-project.org/wiki/index.php?title=Image:Animal.po.gz Animal Pedigree]&lt;br /&gt;
| [[Animal pedigree]]&lt;br /&gt;
| &amp;lt;!-- Contact   --&amp;gt; '''[[Translating_Gramps|Translator Vacancy]]'''&lt;br /&gt;
|{{progress|100}} [[File:Gramps_animal_2_2_6.po.gz]]&lt;br /&gt;
|{{progress|99}} [[File:Gramps_animal_3_1_3.po.gz]]&lt;br /&gt;
|{{progress|0}}&lt;br /&gt;
| &amp;lt;!-- Notes     --&amp;gt; English(US) sub-translation that makes using Gramps far more intuitive when dealing with animals.(Bug:{{bug|3346}})&lt;br /&gt;
|-&lt;br /&gt;
| Same gender&lt;br /&gt;
| Same gender/sex&lt;br /&gt;
| &amp;lt;!-- Contact   --&amp;gt; '''[[Translating_Gramps|Translator Vacancy]]'''&lt;br /&gt;
|align=&amp;quot;right&amp;quot;| -&lt;br /&gt;
|{{progress|100}}&lt;br /&gt;
|{{progress|0}}&lt;br /&gt;
| &amp;lt;!-- Notes     --&amp;gt; English(US) sub-translation that makes using Gramps far more intuitive when dealing with same gender family.(Bug:{{bug|3346}})&lt;br /&gt;
|} &lt;br /&gt;
{{-}}&lt;br /&gt;
&amp;lt;noinclude&amp;gt;&lt;br /&gt;
[[Category:Translators/Categories|T]][[Category:Developers/General|T]]&lt;br /&gt;
&amp;lt;/noinclude&amp;gt;&lt;/div&gt;</summary>
		<author><name>Sten</name></author>
		
	</entry>
	<entry>
		<id>https://ftp.gramps-project.org/wiki/index.php?title=Template:Gramps_translations&amp;diff=80182</id>
		<title>Template:Gramps translations</title>
		<link rel="alternate" type="text/html" href="https://ftp.gramps-project.org/wiki/index.php?title=Template:Gramps_translations&amp;diff=80182"/>
		<updated>2020-07-29T16:23:31Z</updated>

		<summary type="html">&lt;p&gt;Sten: /* Select en_US row */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&amp;lt;noinclude&amp;gt;A list of the languages in which Gramps has been translated, along with some additional information used during [[What_to_do_for_a_release|release cycles]] and contact information. &lt;br /&gt;
&lt;br /&gt;
===ALL_LINGUAS===&lt;br /&gt;
For enabling, a language code must be set in the ''ALL_LINGUAS'' section in the file:&lt;br /&gt;
* [https://github.com/gramps-project/gramps/blob/maintenance/gramps34/configure.in configure.in] in Gramps 3.x&lt;br /&gt;
* [{{Code Browser}}/tree/master/setup.py setup.py] in Gramps 4.x and greater&lt;br /&gt;
&lt;br /&gt;
[[Translating Gramps|Help translate Gramps to other languages]] or to improve existing translations.&lt;br /&gt;
&lt;br /&gt;
 # Go to the /po directory&lt;br /&gt;
 cd po&lt;br /&gt;
 &lt;br /&gt;
 # update with last template&lt;br /&gt;
 for file in *.po; do echo -n &amp;quot;${file} &amp;quot;; msgmerge --no-wrap ${file} gramps.pot -o ${file}; done&lt;br /&gt;
 &lt;br /&gt;
 # check localisation percentage&lt;br /&gt;
 for file in *.po; do echo -n &amp;quot;${file} &amp;quot;; ./check_po -s ${file} | grep &amp;quot;Localized at&amp;quot;; done&lt;br /&gt;
&lt;br /&gt;
====INCOMPLETE_TRANSLATIONS====&lt;br /&gt;
The minimum complete translation is 70% (if the translation is very close to that percentage also enable it, also keep ''en_GB'' as it is a special subtranslation of English)&lt;br /&gt;
&lt;br /&gt;
Add the locale code (if less than 70%) or remove the locale code (if greater than 70%)as required from the following ''INCOMPLETE_TRANSLATIONS'' section in the file:&lt;br /&gt;
* [https://github.com/gramps-project/gramps/blob/master/gramps/gen/utils/grampslocale.py#L119 gramps/gen/utils/grampslocale.py] in Gramps 4.x and greater&lt;br /&gt;
  INCOMPLETE_TRANSLATIONS = ('ar', 'bg', 'he', 'ja', 'sq', 'ta', 'tr')&lt;br /&gt;
&lt;br /&gt;
&amp;lt;/noinclude&amp;gt;{| class=&amp;quot;wikitable sortable&amp;quot;&lt;br /&gt;
! &amp;lt;!-- No --&amp;gt; Number&lt;br /&gt;
! &amp;lt;!-- ISO-639-1 --&amp;gt; [http://en.wikipedia.org/wiki/List_of_ISO_639-1_codes Code]&lt;br /&gt;
! &amp;lt;!-- Language  --&amp;gt; Language&lt;br /&gt;
! &amp;lt;!-- Translator   --&amp;gt; Translator &lt;br /&gt;
! Coverage&amp;lt;br&amp;gt;gramps50; 5.0.2&amp;lt;br&amp;gt;2019-08-27&lt;br /&gt;
! Coverage&amp;lt;br&amp;gt;gramps51; 5.1.2&amp;lt;br&amp;gt;2020-07-29&lt;br /&gt;
! Coverage&amp;lt;br&amp;gt;master&amp;lt;br&amp;gt;&lt;br /&gt;
! &amp;lt;!-- Notes     --&amp;gt; Notes&lt;br /&gt;
|-&lt;br /&gt;
| &amp;lt;!-- No --&amp;gt; 1&lt;br /&gt;
| &amp;lt;!-- ISO-639-1 --&amp;gt; ar&lt;br /&gt;
| &amp;lt;!-- Language  --&amp;gt; Arabic&lt;br /&gt;
| &amp;lt;!-- Contact   --&amp;gt; '''[[Translating_Gramps|Translator Vacancy]]'''&lt;br /&gt;
|{{progress|54.7}}&lt;br /&gt;
|{{progress|52.5}}&lt;br /&gt;
|[{{Code Browser}}/tree/master/po/ar.po]&lt;br /&gt;
| &amp;lt;!-- Notes     --&amp;gt; see [http://sourceforge.net/mailarchive/message.php?msg_id=13026041 mailing-list], and {{bug|6819}}: date handler&lt;br /&gt;
|-&lt;br /&gt;
| &amp;lt;!-- No --&amp;gt; 2&lt;br /&gt;
| &amp;lt;!-- ISO-639-1 --&amp;gt; bg&lt;br /&gt;
| &amp;lt;!-- Language  --&amp;gt; Bulgarian&lt;br /&gt;
| &amp;lt;!-- Contact   --&amp;gt; '''[[Translating_Gramps|Translator Vacancy]]'''&lt;br /&gt;
|{{progress|56.9}}&lt;br /&gt;
|{{progress|54.6}}&lt;br /&gt;
|&lt;br /&gt;
| &amp;lt;!-- Notes     --&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
| &amp;lt;!-- No --&amp;gt; 3&lt;br /&gt;
| &amp;lt;!-- ISO-639-1 --&amp;gt; br&lt;br /&gt;
| &amp;lt;!-- Language  --&amp;gt; Breton&lt;br /&gt;
| &amp;lt;!-- Contact   --&amp;gt; '''[[Translating_Gramps|Translator Vacancy]]'''&lt;br /&gt;
|{{progress|2.9}} (not enabled)&lt;br /&gt;
|{{progress|2.6}}&lt;br /&gt;
|[{{Code Browser}}/tree/master/po/br.po]&lt;br /&gt;
| &amp;lt;!-- Notes     --&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
| &amp;lt;!-- No --&amp;gt; 4&lt;br /&gt;
| &amp;lt;!-- ISO-639-1 --&amp;gt;  ca&lt;br /&gt;
| &amp;lt;!-- Language  --&amp;gt; Catalan&lt;br /&gt;
| &amp;lt;!-- Contact   --&amp;gt; Joan Creus&lt;br /&gt;
|{{progress|99.6}}&lt;br /&gt;
|{{progress|98.3}}&lt;br /&gt;
|&lt;br /&gt;
| &amp;lt;!-- Notes     --&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
| &amp;lt;!-- No --&amp;gt; 5&lt;br /&gt;
| &amp;lt;!-- ISO-639-1 --&amp;gt;  cs&lt;br /&gt;
| &amp;lt;!-- Language  --&amp;gt; Czech&lt;br /&gt;
| &amp;lt;!-- Contact   --&amp;gt; Zdeněk Hataš&lt;br /&gt;
|{{progress|100.0}}&lt;br /&gt;
|{{progress|98.6}}&lt;br /&gt;
| &amp;lt;!-- Notes     --&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
| &amp;lt;!-- No --&amp;gt; 6&lt;br /&gt;
| &amp;lt;!-- ISO-639-1 --&amp;gt; da&lt;br /&gt;
| &amp;lt;!-- Language  --&amp;gt; Danish&lt;br /&gt;
| &amp;lt;!-- Contact   --&amp;gt; Kaj Mikkelsen&lt;br /&gt;
|{{progress|100.0}}&lt;br /&gt;
|{{progress|99.9}}&lt;br /&gt;
|&lt;br /&gt;
| &amp;lt;!-- Notes     --&amp;gt; &lt;br /&gt;
|-&lt;br /&gt;
| &amp;lt;!-- No --&amp;gt; 7&lt;br /&gt;
| &amp;lt;!-- ISO-639-1 --&amp;gt; de&lt;br /&gt;
| &amp;lt;!-- Language  --&amp;gt; German&lt;br /&gt;
| &amp;lt;!-- Contact   --&amp;gt; [[User:Leonhaeuser|Mirko Leonhäuser]]&lt;br /&gt;
|{{progress|99.7}}&lt;br /&gt;
|{{progress|99.7}}&lt;br /&gt;
|&lt;br /&gt;
| &amp;lt;!-- Notes     --&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
| &amp;lt;!-- No --&amp;gt; 8&lt;br /&gt;
| &amp;lt;!-- ISO-639-1 --&amp;gt; el&lt;br /&gt;
| &amp;lt;!-- Language  --&amp;gt; Greek&lt;br /&gt;
| &amp;lt;!-- Contact   --&amp;gt; Zissis Papadopoulos&lt;br /&gt;
|{{progress|81.7}}&lt;br /&gt;
|{{progress|78.5}}&lt;br /&gt;
|&lt;br /&gt;
| &amp;lt;!-- Notes     --&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
! &amp;lt;!-- No --&amp;gt; 9&lt;br /&gt;
! &amp;lt;!-- ISO-639-1 --&amp;gt; en_US&lt;br /&gt;
! &amp;lt;!-- Language  --&amp;gt; [http://en.wikipedia.org/wiki/English_language English]&lt;br /&gt;
! &amp;lt;!-- Contact   --&amp;gt; N/A  ('''Default Language''')&lt;br /&gt;
!{{progress|100.0}}&lt;br /&gt;
!{{progress|100.0}}&lt;br /&gt;
!&lt;br /&gt;
! &amp;lt;!-- Notes     --&amp;gt;[http://gramps.1791082.n4.nabble.com/English-or-American-spelling-td4623552.html American English]&lt;br /&gt;
!-&lt;br /&gt;
| &amp;lt;!-- No --&amp;gt; 10&lt;br /&gt;
| &amp;lt;!-- ISO-639-1 --&amp;gt; en_GB&lt;br /&gt;
| &amp;lt;!-- Language  --&amp;gt; [http://en.wikipedia.org/wiki/British_English English (British)]&lt;br /&gt;
| &amp;lt;!-- Contact   --&amp;gt; [[User:Nick_H|Nick Hall]]&lt;br /&gt;
|{{progress|2.5}}&lt;br /&gt;
|{{progress|2.2}}&lt;br /&gt;
|&lt;br /&gt;
| &amp;lt;!-- Notes     --&amp;gt;[http://gramps.1791082.n4.nabble.com/English-or-American-spelling-td4623552.html#a4626565 English (British)][{{Code Browser}}/tree/master/po/en_GB.po en_GB.po]&lt;br /&gt;
variation ~ 5%&lt;br /&gt;
|-&lt;br /&gt;
| &amp;lt;!-- No --&amp;gt; 11&lt;br /&gt;
| &amp;lt;!-- ISO-639-1 --&amp;gt; en_AU&lt;br /&gt;
| &amp;lt;!-- Language  --&amp;gt; [http://en.wikipedia.org/wiki/Australian_English English (Australian)]&lt;br /&gt;
| &amp;lt;!-- Contact   --&amp;gt; '''[[Translating_Gramps|Translator Vacancy]]'''&lt;br /&gt;
|{{progress|0}}&lt;br /&gt;
|{{progress|0}}&lt;br /&gt;
|&lt;br /&gt;
| &amp;lt;!-- Notes     --&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
| &amp;lt;!-- No --&amp;gt; 12&lt;br /&gt;
| &amp;lt;!-- ISO-639-1 --&amp;gt; eo&lt;br /&gt;
| &amp;lt;!-- Language  --&amp;gt; Esperanto&lt;br /&gt;
| &amp;lt;!-- Contact   --&amp;gt; Pier Luigi Cinquantini&lt;br /&gt;
|{{progress|99.3}}&lt;br /&gt;
|{{progress|93.7}}&lt;br /&gt;
|&lt;br /&gt;
| &amp;lt;!-- Notes     --&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
| &amp;lt;!-- No --&amp;gt; 13&lt;br /&gt;
| &amp;lt;!-- ISO-639-1 --&amp;gt; es&lt;br /&gt;
| &amp;lt;!-- Language  --&amp;gt; Spanish&lt;br /&gt;
| &amp;lt;!-- Contact   --&amp;gt; '''[[Translating_Gramps|Translator Vacancy]]'''&lt;br /&gt;
|{{progress|82.6}}&lt;br /&gt;
|{{progress|79.5}}&lt;br /&gt;
|&lt;br /&gt;
| &amp;lt;!-- Notes     --&amp;gt;{{bug|4185}}, {{bug|6645}}:Kinship report (Relationships)&lt;br /&gt;
|-&lt;br /&gt;
| &amp;lt;!-- No --&amp;gt; 14&lt;br /&gt;
| &amp;lt;!-- ISO-639-1 --&amp;gt; fi&lt;br /&gt;
| &amp;lt;!-- Language  --&amp;gt; Finnish&lt;br /&gt;
| &amp;lt;!-- Contact   --&amp;gt; Matti Niemelä &lt;br /&gt;
|{{progress|100.0}}&lt;br /&gt;
|{{progress|99.9}}&lt;br /&gt;
|[{{Code Browser}}/tree/master/po/fi.po]&lt;br /&gt;
| &amp;lt;!-- Notes     --&amp;gt; {{bug|2356}}: genitive form for names, [[Translation_into_Finnish|Translation into Finnish]]&lt;br /&gt;
|-&lt;br /&gt;
| &amp;lt;!-- No --&amp;gt; 15&lt;br /&gt;
| &amp;lt;!-- ISO-639-1 --&amp;gt; fr&lt;br /&gt;
| &amp;lt;!-- Language  --&amp;gt; French&lt;br /&gt;
| &amp;lt;!-- Contact   --&amp;gt; '''[[Translating_Gramps|Translator Vacancy]]'''&lt;br /&gt;
|{{progress|98.3}}&lt;br /&gt;
|{{progress|97.9}}&lt;br /&gt;
|&lt;br /&gt;
| &amp;lt;!-- Notes     --&amp;gt; [[Translation_into_French|Translation into French]]&lt;br /&gt;
|-&lt;br /&gt;
| &amp;lt;!-- No --&amp;gt; 16&lt;br /&gt;
| &amp;lt;!-- ISO-639-1 --&amp;gt; ga&lt;br /&gt;
| &amp;lt;!-- Language  --&amp;gt; Irish&lt;br /&gt;
| &amp;lt;!-- Contact   --&amp;gt; '''[[Translating_Gramps|Translator Vacancy]]'''&lt;br /&gt;
|{{progress|0.3}} (not enabled)&lt;br /&gt;
|{{progress|0.07}} (not enabled)&lt;br /&gt;
| [{{Code Browser}}/tree/master/po/ga.po]&lt;br /&gt;
| &amp;lt;!-- Notes     --&amp;gt; [http://sourceforge.net/mailarchive/message.php?msg_id=26863727 mailing-list]&lt;br /&gt;
|-&lt;br /&gt;
| &amp;lt;!-- No --&amp;gt; 17&lt;br /&gt;
| &amp;lt;!-- ISO-639-1 --&amp;gt; he&lt;br /&gt;
| &amp;lt;!-- Language  --&amp;gt; Hebrew&lt;br /&gt;
| &amp;lt;!-- Contact   --&amp;gt; Avi Markovitz&lt;br /&gt;
|{{progress|42.4}}&lt;br /&gt;
|{{progress|99.97}}&lt;br /&gt;
|[{{Code Browser}}/tree/master/po/he.po]&lt;br /&gt;
| &amp;lt;!-- Notes     --&amp;gt; {{bug|2962}}&lt;br /&gt;
|-&lt;br /&gt;
| &amp;lt;!-- No --&amp;gt; 18&lt;br /&gt;
| &amp;lt;!-- ISO-639-1 --&amp;gt; hr&lt;br /&gt;
| &amp;lt;!-- Language  --&amp;gt; Croatian&lt;br /&gt;
| &amp;lt;!-- Contact   --&amp;gt; '''[[Translating_Gramps|Translator Vacancy]]'''&lt;br /&gt;
|{{progress|100.0}}&lt;br /&gt;
|{{progress|99.96}}&lt;br /&gt;
|&lt;br /&gt;
| &amp;lt;!-- Notes     --&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
| &amp;lt;!-- No --&amp;gt; 19&lt;br /&gt;
| &amp;lt;!-- ISO-639-1 --&amp;gt; hu&lt;br /&gt;
| &amp;lt;!-- Language  --&amp;gt; Hungarian&lt;br /&gt;
| &amp;lt;!-- Contact   --&amp;gt; Lajos Nemeséri&lt;br /&gt;
|{{progress|100.0}}&lt;br /&gt;
|{{progress|99.21}}&lt;br /&gt;
|&lt;br /&gt;
| &amp;lt;!-- Notes     --&amp;gt; {{bug|5505}}:[[Date_Handler]]&lt;br /&gt;
|-&lt;br /&gt;
| &amp;lt;!-- No --&amp;gt; 20&lt;br /&gt;
| &amp;lt;!-- ISO-639-1 --&amp;gt; is&lt;br /&gt;
| &amp;lt;!-- Language  --&amp;gt; Icelandic&lt;br /&gt;
| &amp;lt;!-- Contact   --&amp;gt; Sveinn í Felli&lt;br /&gt;
|{{progress|90.4}}&lt;br /&gt;
|{{progress|87.55}}&lt;br /&gt;
|&lt;br /&gt;
| &amp;lt;!-- Notes     --&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
| &amp;lt;!-- No --&amp;gt; 21&lt;br /&gt;
| &amp;lt;!-- ISO-639-1 --&amp;gt; it&lt;br /&gt;
| &amp;lt;!-- Language  --&amp;gt; Italian&lt;br /&gt;
| &amp;lt;!-- Contact   --&amp;gt; Luigi Toscano&lt;br /&gt;
|{{progress|95.0}}&lt;br /&gt;
|{{progress|91.2}}&lt;br /&gt;
|&lt;br /&gt;
| &amp;lt;!-- Notes     --&amp;gt;{{bug|4185}}:Kinship report (Relationships)&lt;br /&gt;
|-&lt;br /&gt;
| &amp;lt;!-- No --&amp;gt; 22&lt;br /&gt;
| &amp;lt;!-- ISO-639-1 --&amp;gt; ja&lt;br /&gt;
| &amp;lt;!-- Language  --&amp;gt; Japanese&lt;br /&gt;
| &amp;lt;!-- Contact   --&amp;gt; Keiichiro Yamamoto, Megumi Sakata&lt;br /&gt;
|{{progress|40.4}}&lt;br /&gt;
|{{progress|38.7}}&lt;br /&gt;
|[{{Code Browser}}/tree/master/po/ja.po]&lt;br /&gt;
| &amp;lt;!-- Notes     --&amp;gt; (''[https://raw.github.com/yanmar/gramps-translation-ja/master/po/ja.po github]'') / (Feature request:{{bug|3120}} support for Japanese Era calendar scheme)&lt;br /&gt;
|-&lt;br /&gt;
| &amp;lt;!-- No --&amp;gt; 23&lt;br /&gt;
| &amp;lt;!-- ISO-639-1 --&amp;gt; lt&lt;br /&gt;
| &amp;lt;!-- Language  --&amp;gt; Lithuanian&lt;br /&gt;
| &amp;lt;!-- Contact   --&amp;gt; '''[[Translating_Gramps|Translator Vacancy]]'''&lt;br /&gt;
|{{progress|98.3}}&lt;br /&gt;
|{{progress|94.4}}&lt;br /&gt;
|&lt;br /&gt;
| &amp;lt;!-- Notes     --&amp;gt;{{bug|4848}}&lt;br /&gt;
|-&lt;br /&gt;
| &amp;lt;!-- No --&amp;gt; 24&lt;br /&gt;
| &amp;lt;!-- ISO-639-1 --&amp;gt; mk&lt;br /&gt;
| &amp;lt;!-- Language  --&amp;gt; Macedonian&lt;br /&gt;
| &amp;lt;!-- Contact   --&amp;gt; '''[[Translating_Gramps|Translator Vacancy]]'''&lt;br /&gt;
|{{progress|24.9}} (not enabled)&lt;br /&gt;
|{{progress|23.8}} (not enabled)&lt;br /&gt;
|[{{Code Browser}}/tree/master/po/mk.po]&lt;br /&gt;
| &amp;lt;!-- Notes     --&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
| &amp;lt;!-- No --&amp;gt; 25&lt;br /&gt;
| &amp;lt;!-- ISO-639-1 --&amp;gt; nb&lt;br /&gt;
| &amp;lt;!-- Language  --&amp;gt; Norwegian Bokmål&lt;br /&gt;
| &amp;lt;!-- Contact   --&amp;gt; [[User:Espenbe|Espen Berg]]&lt;br /&gt;
|{{progress|99.0}}&lt;br /&gt;
|{{progress|94.96}}&lt;br /&gt;
|&lt;br /&gt;
| &amp;lt;!-- Notes     --&amp;gt; [https://github.com/gramps-project/gramps/blob/master/gramps/gen/datehandler/_datehandler.py see DateDisplay]&lt;br /&gt;
|-&lt;br /&gt;
| &amp;lt;!-- No --&amp;gt; 26&lt;br /&gt;
| &amp;lt;!-- ISO-639-1 --&amp;gt; nl&lt;br /&gt;
| &amp;lt;!-- Language  --&amp;gt; Dutch&lt;br /&gt;
| &amp;lt;!-- Contact   --&amp;gt; Jan Sparreboom&lt;br /&gt;
|{{progress|98.4}}&lt;br /&gt;
|{{progress|94.6}}&lt;br /&gt;
|&lt;br /&gt;
| &amp;lt;!-- Notes     --&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
| &amp;lt;!-- No --&amp;gt; 27&lt;br /&gt;
| &amp;lt;!-- ISO-639-1 --&amp;gt; nn&lt;br /&gt;
| &amp;lt;!-- Language  --&amp;gt; Norwegian Nynorsk&lt;br /&gt;
| &amp;lt;!-- Contact   --&amp;gt; Sigmund Lorentsen&lt;br /&gt;
|{{progress|87.8}}&lt;br /&gt;
|{{progress|94.3}}&lt;br /&gt;
|&lt;br /&gt;
| &amp;lt;!-- Notes     --&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
| &amp;lt;!-- No --&amp;gt; 28&lt;br /&gt;
| &amp;lt;!-- ISO-639-1 --&amp;gt; pl&lt;br /&gt;
| &amp;lt;!-- Language  --&amp;gt; Polish&lt;br /&gt;
| &amp;lt;!-- Contact   --&amp;gt; '''[[Translating_Gramps|Translator Vacancy]]'''&lt;br /&gt;
|{{progress|87.9}}&lt;br /&gt;
|{{progress|84.7}}&lt;br /&gt;
|&lt;br /&gt;
| &amp;lt;!-- Notes     --&amp;gt; &lt;br /&gt;
|-&lt;br /&gt;
| &amp;lt;!-- No --&amp;gt; 29&lt;br /&gt;
| &amp;lt;!-- ISO-639-1 --&amp;gt; pt_BR&lt;br /&gt;
| &amp;lt;!-- Language  --&amp;gt; Portuguese (Brazil)&lt;br /&gt;
| &amp;lt;!-- Contact   --&amp;gt; Paulo Henrique, Paiva de Moraes&lt;br /&gt;
|{{progress|98.2}}&lt;br /&gt;
|{{progress|98.16}}&lt;br /&gt;
|&lt;br /&gt;
| &amp;lt;!-- Notes     --&amp;gt;{{bug|4185}}:Kinship report (Relationships)&lt;br /&gt;
|-&lt;br /&gt;
| &amp;lt;!-- No --&amp;gt; 30&lt;br /&gt;
| &amp;lt;!-- ISO-639-1 --&amp;gt; pt_PT&lt;br /&gt;
| &amp;lt;!-- Language  --&amp;gt; Portuguese (Portugal)&lt;br /&gt;
| &amp;lt;!-- Contact   --&amp;gt; Pedro Albuquerque &lt;br /&gt;
|{{progress|99.7}}&lt;br /&gt;
|{{progress|95.56}}&lt;br /&gt;
|&lt;br /&gt;
| &amp;lt;!-- Notes     --&amp;gt;{{bug|4185}}: Kinship report (Relationships)&lt;br /&gt;
|-&lt;br /&gt;
| &amp;lt;!-- No --&amp;gt; 31&lt;br /&gt;
| &amp;lt;!-- ISO-639-1 --&amp;gt; ro&lt;br /&gt;
| &amp;lt;!-- Language  --&amp;gt; Romanian&lt;br /&gt;
| &amp;lt;!-- Contact   --&amp;gt; '''[[Translating_Gramps|Translator Vacancy]]'''&lt;br /&gt;
|{{progress|4.4}}&lt;br /&gt;
|{{progress|4.09}}&lt;br /&gt;
|[{{Code Browser}}/tree/master/po/ro.po]&lt;br /&gt;
| &amp;lt;!-- Notes     --&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
| &amp;lt;!-- No --&amp;gt; 32&lt;br /&gt;
| &amp;lt;!-- ISO-639-1 --&amp;gt; ru&lt;br /&gt;
| &amp;lt;!-- Language  --&amp;gt; Russian&lt;br /&gt;
| &amp;lt;!-- Contact   --&amp;gt; Ivan Komaritsyn&lt;br /&gt;
|{{progress|99.7}}&lt;br /&gt;
|{{progress|99.21}}&lt;br /&gt;
|&lt;br /&gt;
| &amp;lt;!-- Notes     --&amp;gt; [[Translation_into_Russian|Translation into Russian]]&lt;br /&gt;
|-&lt;br /&gt;
| &amp;lt;!-- No --&amp;gt; 33&lt;br /&gt;
| &amp;lt;!-- ISO-639-1 --&amp;gt; sk&lt;br /&gt;
| &amp;lt;!-- Language  --&amp;gt; Slovak&lt;br /&gt;
| &amp;lt;!-- Contact   --&amp;gt; '''[[Translating_Gramps|Translator Vacancy]]'''&lt;br /&gt;
|{{progress|90.9}}&lt;br /&gt;
|{{progress|87.42}}&lt;br /&gt;
|&lt;br /&gt;
| &amp;lt;!-- Notes     --&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
| &amp;lt;!-- No --&amp;gt; 34&lt;br /&gt;
| &amp;lt;!-- ISO-639-1 --&amp;gt; sl&lt;br /&gt;
| &amp;lt;!-- Language  --&amp;gt; Slovenian&lt;br /&gt;
| &amp;lt;!-- Contact   --&amp;gt; [[User:Beernarrd|Bernard Banko]]&lt;br /&gt;
|{{progress|100.0}}&lt;br /&gt;
|{{progress|96.01}}&lt;br /&gt;
|&lt;br /&gt;
| &amp;lt;!-- Notes     --&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
| &amp;lt;!-- No --&amp;gt; 35&lt;br /&gt;
| &amp;lt;!-- ISO-639-1 --&amp;gt; sq&lt;br /&gt;
| &amp;lt;!-- Language  --&amp;gt; Albanian&lt;br /&gt;
| &amp;lt;!-- Contact   --&amp;gt; '''[[Translating_Gramps|Translator Vacancy]]'''&lt;br /&gt;
|{{progress|39.4}}&lt;br /&gt;
|{{progress|37.8}}&lt;br /&gt;
|[{{Code Browser}}/tree/master/po/sq.po]&lt;br /&gt;
| &amp;lt;!-- Notes     --&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
| &amp;lt;!-- No --&amp;gt; 36&lt;br /&gt;
| &amp;lt;!-- ISO-639-1 --&amp;gt; sr&lt;br /&gt;
| &amp;lt;!-- Language  --&amp;gt; Serbian&lt;br /&gt;
| &amp;lt;!-- Contact   --&amp;gt; '''[[Translating_Gramps|Translator Vacancy]]'''&lt;br /&gt;
|{{progress|82.1}}&lt;br /&gt;
|{{progress|78.9}}&lt;br /&gt;
|[{{Code Browser}}/tree/master/po/sr.po]&lt;br /&gt;
| &amp;lt;!-- Notes     --&amp;gt; see {{bug|2375}}&lt;br /&gt;
|-&lt;br /&gt;
| &amp;lt;!-- No --&amp;gt; 37&lt;br /&gt;
| &amp;lt;!-- ISO-639-1 --&amp;gt; sr Latin&lt;br /&gt;
| &amp;lt;!-- Language  --&amp;gt; Serbian Latin&lt;br /&gt;
| &amp;lt;!-- Contact   --&amp;gt; '''[[Translating_Gramps|Translator Vacancy]]'''&lt;br /&gt;
|{{progress|2.7}}&lt;br /&gt;
|{{progress|2.3}}&lt;br /&gt;
|[{{Code Browser}}/tree/master/po/sr_Latn.po]&lt;br /&gt;
| &amp;lt;!-- Notes     --&amp;gt; see {{bug|2375}}&lt;br /&gt;
|-&lt;br /&gt;
| &amp;lt;!-- No --&amp;gt; 38&lt;br /&gt;
| &amp;lt;!-- ISO-639-1 --&amp;gt; sv&lt;br /&gt;
| &amp;lt;!-- Language  --&amp;gt; Swedish&lt;br /&gt;
| &amp;lt;!-- Contact   --&amp;gt; Pär Ekholm &lt;br /&gt;
|{{progress|100.0}}&lt;br /&gt;
|{{progress|100.0}}&lt;br /&gt;
|&lt;br /&gt;
| &amp;lt;!-- Notes     --&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
| &amp;lt;!-- No --&amp;gt; 39&lt;br /&gt;
| &amp;lt;!-- ISO-639-1 --&amp;gt; ta&lt;br /&gt;
| &amp;lt;!-- Language  --&amp;gt; Tamil&lt;br /&gt;
| &amp;lt;!-- Contact   --&amp;gt; '''[[Translating_Gramps|Translator Vacancy]]'''&lt;br /&gt;
|{{progress|6.4}}&lt;br /&gt;
|{{progress|6.0}}&lt;br /&gt;
|&lt;br /&gt;
| &amp;lt;!-- Notes     --&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
| &amp;lt;!-- No --&amp;gt; 40&lt;br /&gt;
| &amp;lt;!-- ISO-639-1 --&amp;gt; tr&lt;br /&gt;
| &amp;lt;!-- Language  --&amp;gt; Turkish&lt;br /&gt;
| &amp;lt;!-- Contact   --&amp;gt; '''[[Translating_Gramps|Translator Vacancy]]'''&lt;br /&gt;
|{{progress|27.5}}&lt;br /&gt;
|{{progress|26.2}}&lt;br /&gt;
|[{{Code Browser}}/tree/master/po/tr.po]&lt;br /&gt;
| &amp;lt;!-- Notes     --&amp;gt;{{bug|8148}}&lt;br /&gt;
|-&lt;br /&gt;
| &amp;lt;!-- No --&amp;gt; 41&lt;br /&gt;
| &amp;lt;!-- ISO-639-1 --&amp;gt; uk&lt;br /&gt;
| &amp;lt;!-- Language  --&amp;gt; Ukrainian&lt;br /&gt;
| &amp;lt;!-- Contact   --&amp;gt; [http://sourceforge.net/users/fedik/ Fedir Zinchuk]&lt;br /&gt;
|{{progress|97.3}}&lt;br /&gt;
|{{progress|98.15}}&lt;br /&gt;
|&lt;br /&gt;
| &amp;lt;!-- Notes     --&amp;gt; Relationships handler only available for 3.4 (need test on 4.0)&lt;br /&gt;
|-&lt;br /&gt;
| &amp;lt;!-- No --&amp;gt; 42&lt;br /&gt;
| &amp;lt;!-- ISO-639-1 --&amp;gt; vi&lt;br /&gt;
| &amp;lt;!-- Language  --&amp;gt; Vietnamese&lt;br /&gt;
| &amp;lt;!-- Contact   --&amp;gt; [[User:Detran|De Tran]]&lt;br /&gt;
|{{progress|98.5}}&lt;br /&gt;
|{{progress|95.7}}&lt;br /&gt;
|&lt;br /&gt;
| &amp;lt;!-- Notes     --&amp;gt; {{bug|4400}}: lunisolar calendar support ?&lt;br /&gt;
|-&lt;br /&gt;
| &amp;lt;!-- No --&amp;gt; 43&lt;br /&gt;
| &amp;lt;!-- ISO-639-1 --&amp;gt; zh_CN&lt;br /&gt;
| &amp;lt;!-- Language  --&amp;gt; Chinese (Simplified)&lt;br /&gt;
| &amp;lt;!-- Contact   --&amp;gt; '''[[Translating_Gramps|Translator Vacancy]]'''&lt;br /&gt;
|{{progress|70.5}}&lt;br /&gt;
|{{progress|73.81}}&lt;br /&gt;
|&lt;br /&gt;
| &amp;lt;!-- Notes     --&amp;gt;{{bug|4400}}: lunisolar calendar support ?&lt;br /&gt;
|-&lt;br /&gt;
| &amp;lt;!-- No --&amp;gt; 44&lt;br /&gt;
| &amp;lt;!-- ISO-639-1 --&amp;gt; zh_HK&lt;br /&gt;
| &amp;lt;!-- Language  --&amp;gt; Chinese (Hong Kong)&lt;br /&gt;
| &amp;lt;!-- Contact   --&amp;gt; '''[[Translating_Gramps|Translator Vacancy]]'''&lt;br /&gt;
|{{progress|70.5}}&lt;br /&gt;
|{{progress|67.7}}&lt;br /&gt;
|&lt;br /&gt;
| &amp;lt;!-- Notes     --&amp;gt;{{bug|4400}}: lunisolar calendar support ?&lt;br /&gt;
|-&lt;br /&gt;
| &amp;lt;!-- No --&amp;gt; 45&lt;br /&gt;
| &amp;lt;!-- ISO-639-1 --&amp;gt; zh_TW&lt;br /&gt;
| &amp;lt;!-- Language  --&amp;gt; Chinese (Traditional)&lt;br /&gt;
| &amp;lt;!-- Contact   --&amp;gt; '''[[Translating_Gramps|Translator Vacancy]]'''&lt;br /&gt;
|{{progress|70.5}}&lt;br /&gt;
|{{progress|67.7}}&lt;br /&gt;
|&lt;br /&gt;
| &amp;lt;!-- Notes     --&amp;gt;{{bug|4400}}: lunisolar calendar support ?&lt;br /&gt;
|} &lt;br /&gt;
{{-}}&lt;br /&gt;
{| class=&amp;quot;wikitable sortable&amp;quot;&lt;br /&gt;
! Custom&lt;br /&gt;
! Type&lt;br /&gt;
! &amp;lt;!-- Contact   --&amp;gt; Contact&lt;br /&gt;
! Coverage&amp;lt;br&amp;gt;Gramps 2.2.6&lt;br /&gt;
! Coverage&amp;lt;br&amp;gt;Gramps 3.1.3&lt;br /&gt;
! Coverage&amp;lt;br&amp;gt;(master)&lt;br /&gt;
! &amp;lt;!-- Notes     --&amp;gt; Notes&lt;br /&gt;
|-&lt;br /&gt;
| [http://gramps-project.org/wiki/index.php?title=Image:Animal.po.gz Animal Pedigree]&lt;br /&gt;
| [[Animal pedigree]]&lt;br /&gt;
| &amp;lt;!-- Contact   --&amp;gt; '''[[Translating_Gramps|Translator Vacancy]]'''&lt;br /&gt;
|{{progress|100}} [[File:Gramps_animal_2_2_6.po.gz]]&lt;br /&gt;
|{{progress|99}} [[File:Gramps_animal_3_1_3.po.gz]]&lt;br /&gt;
|{{progress|0}}&lt;br /&gt;
| &amp;lt;!-- Notes     --&amp;gt; English(US) sub-translation that makes using Gramps far more intuitive when dealing with animals.(Bug:{{bug|3346}})&lt;br /&gt;
|-&lt;br /&gt;
| Same gender&lt;br /&gt;
| Same gender/sex&lt;br /&gt;
| &amp;lt;!-- Contact   --&amp;gt; '''[[Translating_Gramps|Translator Vacancy]]'''&lt;br /&gt;
|align=&amp;quot;right&amp;quot;| -&lt;br /&gt;
|{{progress|100}}&lt;br /&gt;
|{{progress|0}}&lt;br /&gt;
| &amp;lt;!-- Notes     --&amp;gt; English(US) sub-translation that makes using Gramps far more intuitive when dealing with same gender family.(Bug:{{bug|3346}})&lt;br /&gt;
|} &lt;br /&gt;
{{-}}&lt;br /&gt;
&amp;lt;noinclude&amp;gt;&lt;br /&gt;
[[Category:Translators/Categories|T]][[Category:Developers/General|T]]&lt;br /&gt;
&amp;lt;/noinclude&amp;gt;&lt;/div&gt;</summary>
		<author><name>Sten</name></author>
		
	</entry>
	<entry>
		<id>https://ftp.gramps-project.org/wiki/index.php?title=Template:Gramps_translations&amp;diff=80181</id>
		<title>Template:Gramps translations</title>
		<link rel="alternate" type="text/html" href="https://ftp.gramps-project.org/wiki/index.php?title=Template:Gramps_translations&amp;diff=80181"/>
		<updated>2020-07-29T16:19:34Z</updated>

		<summary type="html">&lt;p&gt;Sten: /* Renew % of localization */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&amp;lt;noinclude&amp;gt;A list of the languages in which Gramps has been translated, along with some additional information used during [[What_to_do_for_a_release|release cycles]] and contact information. &lt;br /&gt;
&lt;br /&gt;
===ALL_LINGUAS===&lt;br /&gt;
For enabling, a language code must be set in the ''ALL_LINGUAS'' section in the file:&lt;br /&gt;
* [https://github.com/gramps-project/gramps/blob/maintenance/gramps34/configure.in configure.in] in Gramps 3.x&lt;br /&gt;
* [{{Code Browser}}/tree/master/setup.py setup.py] in Gramps 4.x and greater&lt;br /&gt;
&lt;br /&gt;
[[Translating Gramps|Help translate Gramps to other languages]] or to improve existing translations.&lt;br /&gt;
&lt;br /&gt;
 # Go to the /po directory&lt;br /&gt;
 cd po&lt;br /&gt;
 &lt;br /&gt;
 # update with last template&lt;br /&gt;
 for file in *.po; do echo -n &amp;quot;${file} &amp;quot;; msgmerge --no-wrap ${file} gramps.pot -o ${file}; done&lt;br /&gt;
 &lt;br /&gt;
 # check localisation percentage&lt;br /&gt;
 for file in *.po; do echo -n &amp;quot;${file} &amp;quot;; ./check_po -s ${file} | grep &amp;quot;Localized at&amp;quot;; done&lt;br /&gt;
&lt;br /&gt;
====INCOMPLETE_TRANSLATIONS====&lt;br /&gt;
The minimum complete translation is 70% (if the translation is very close to that percentage also enable it, also keep ''en_GB'' as it is a special subtranslation of English)&lt;br /&gt;
&lt;br /&gt;
Add the locale code (if less than 70%) or remove the locale code (if greater than 70%)as required from the following ''INCOMPLETE_TRANSLATIONS'' section in the file:&lt;br /&gt;
* [https://github.com/gramps-project/gramps/blob/master/gramps/gen/utils/grampslocale.py#L119 gramps/gen/utils/grampslocale.py] in Gramps 4.x and greater&lt;br /&gt;
  INCOMPLETE_TRANSLATIONS = ('ar', 'bg', 'he', 'ja', 'sq', 'ta', 'tr')&lt;br /&gt;
&lt;br /&gt;
&amp;lt;/noinclude&amp;gt;{| class=&amp;quot;wikitable sortable&amp;quot;&lt;br /&gt;
! &amp;lt;!-- No --&amp;gt; Number&lt;br /&gt;
! &amp;lt;!-- ISO-639-1 --&amp;gt; [http://en.wikipedia.org/wiki/List_of_ISO_639-1_codes Code]&lt;br /&gt;
! &amp;lt;!-- Language  --&amp;gt; Language&lt;br /&gt;
! &amp;lt;!-- Translator   --&amp;gt; Translator &lt;br /&gt;
! Coverage&amp;lt;br&amp;gt;gramps50; 5.0.2&amp;lt;br&amp;gt;2019-08-27&lt;br /&gt;
! Coverage&amp;lt;br&amp;gt;gramps51; 5.1.2&amp;lt;br&amp;gt;2020-07-29&lt;br /&gt;
! Coverage&amp;lt;br&amp;gt;master&amp;lt;br&amp;gt;&lt;br /&gt;
! &amp;lt;!-- Notes     --&amp;gt; Notes&lt;br /&gt;
|-&lt;br /&gt;
| &amp;lt;!-- No --&amp;gt; 1&lt;br /&gt;
| &amp;lt;!-- ISO-639-1 --&amp;gt; ar&lt;br /&gt;
| &amp;lt;!-- Language  --&amp;gt; Arabic&lt;br /&gt;
| &amp;lt;!-- Contact   --&amp;gt; '''[[Translating_Gramps|Translator Vacancy]]'''&lt;br /&gt;
|{{progress|54.7}}&lt;br /&gt;
|{{progress|52.5}}&lt;br /&gt;
|[{{Code Browser}}/tree/master/po/ar.po]&lt;br /&gt;
| &amp;lt;!-- Notes     --&amp;gt; see [http://sourceforge.net/mailarchive/message.php?msg_id=13026041 mailing-list], and {{bug|6819}}: date handler&lt;br /&gt;
|-&lt;br /&gt;
| &amp;lt;!-- No --&amp;gt; 2&lt;br /&gt;
| &amp;lt;!-- ISO-639-1 --&amp;gt; bg&lt;br /&gt;
| &amp;lt;!-- Language  --&amp;gt; Bulgarian&lt;br /&gt;
| &amp;lt;!-- Contact   --&amp;gt; '''[[Translating_Gramps|Translator Vacancy]]'''&lt;br /&gt;
|{{progress|56.9}}&lt;br /&gt;
|{{progress|54.6}}&lt;br /&gt;
|&lt;br /&gt;
| &amp;lt;!-- Notes     --&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
| &amp;lt;!-- No --&amp;gt; 3&lt;br /&gt;
| &amp;lt;!-- ISO-639-1 --&amp;gt; br&lt;br /&gt;
| &amp;lt;!-- Language  --&amp;gt; Breton&lt;br /&gt;
| &amp;lt;!-- Contact   --&amp;gt; '''[[Translating_Gramps|Translator Vacancy]]'''&lt;br /&gt;
|{{progress|2.9}} (not enabled)&lt;br /&gt;
|{{progress|2.6}}&lt;br /&gt;
|[{{Code Browser}}/tree/master/po/br.po]&lt;br /&gt;
| &amp;lt;!-- Notes     --&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
| &amp;lt;!-- No --&amp;gt; 4&lt;br /&gt;
| &amp;lt;!-- ISO-639-1 --&amp;gt;  ca&lt;br /&gt;
| &amp;lt;!-- Language  --&amp;gt; Catalan&lt;br /&gt;
| &amp;lt;!-- Contact   --&amp;gt; Joan Creus&lt;br /&gt;
|{{progress|99.6}}&lt;br /&gt;
|{{progress|98.3}}&lt;br /&gt;
|&lt;br /&gt;
| &amp;lt;!-- Notes     --&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
| &amp;lt;!-- No --&amp;gt; 5&lt;br /&gt;
| &amp;lt;!-- ISO-639-1 --&amp;gt;  cs&lt;br /&gt;
| &amp;lt;!-- Language  --&amp;gt; Czech&lt;br /&gt;
| &amp;lt;!-- Contact   --&amp;gt; Zdeněk Hataš&lt;br /&gt;
|{{progress|100.0}}&lt;br /&gt;
|{{progress|98.6}}&lt;br /&gt;
| &amp;lt;!-- Notes     --&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
| &amp;lt;!-- No --&amp;gt; 6&lt;br /&gt;
| &amp;lt;!-- ISO-639-1 --&amp;gt; da&lt;br /&gt;
| &amp;lt;!-- Language  --&amp;gt; Danish&lt;br /&gt;
| &amp;lt;!-- Contact   --&amp;gt; Kaj Mikkelsen&lt;br /&gt;
|{{progress|100.0}}&lt;br /&gt;
|{{progress|99.9}}&lt;br /&gt;
|&lt;br /&gt;
| &amp;lt;!-- Notes     --&amp;gt; &lt;br /&gt;
|-&lt;br /&gt;
| &amp;lt;!-- No --&amp;gt; 7&lt;br /&gt;
| &amp;lt;!-- ISO-639-1 --&amp;gt; de&lt;br /&gt;
| &amp;lt;!-- Language  --&amp;gt; German&lt;br /&gt;
| &amp;lt;!-- Contact   --&amp;gt; [[User:Leonhaeuser|Mirko Leonhäuser]]&lt;br /&gt;
|{{progress|99.7}}&lt;br /&gt;
|{{progress|99.7}}&lt;br /&gt;
|&lt;br /&gt;
| &amp;lt;!-- Notes     --&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
| &amp;lt;!-- No --&amp;gt; 8&lt;br /&gt;
| &amp;lt;!-- ISO-639-1 --&amp;gt; el&lt;br /&gt;
| &amp;lt;!-- Language  --&amp;gt; Greek&lt;br /&gt;
| &amp;lt;!-- Contact   --&amp;gt; Zissis Papadopoulos&lt;br /&gt;
|{{progress|81.7}}&lt;br /&gt;
|{{progress|78.5}}&lt;br /&gt;
|&lt;br /&gt;
| &amp;lt;!-- Notes     --&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
| &amp;lt;!-- No --&amp;gt; 9&lt;br /&gt;
! &amp;lt;!-- ISO-639-1 --&amp;gt; en_US&lt;br /&gt;
| &amp;lt;!-- Language  --&amp;gt; [http://en.wikipedia.org/wiki/English_language English]&lt;br /&gt;
| &amp;lt;!-- Contact   --&amp;gt; N/A  ('''Default Language''')&lt;br /&gt;
|{{progress|100.0}}&lt;br /&gt;
|{{progress|100.0}}&lt;br /&gt;
|&lt;br /&gt;
| &amp;lt;!-- Notes     --&amp;gt;[http://gramps.1791082.n4.nabble.com/English-or-American-spelling-td4623552.html American English]&lt;br /&gt;
|-&lt;br /&gt;
| &amp;lt;!-- No --&amp;gt; 10&lt;br /&gt;
| &amp;lt;!-- ISO-639-1 --&amp;gt; en_GB&lt;br /&gt;
| &amp;lt;!-- Language  --&amp;gt; [http://en.wikipedia.org/wiki/British_English English (British)]&lt;br /&gt;
| &amp;lt;!-- Contact   --&amp;gt; [[User:Nick_H|Nick Hall]]&lt;br /&gt;
|{{progress|2.5}}&lt;br /&gt;
|{{progress|2.2}}&lt;br /&gt;
|&lt;br /&gt;
| &amp;lt;!-- Notes     --&amp;gt;[http://gramps.1791082.n4.nabble.com/English-or-American-spelling-td4623552.html#a4626565 English (British)][{{Code Browser}}/tree/master/po/en_GB.po en_GB.po]&lt;br /&gt;
variation ~ 5%&lt;br /&gt;
|-&lt;br /&gt;
| &amp;lt;!-- No --&amp;gt; 11&lt;br /&gt;
| &amp;lt;!-- ISO-639-1 --&amp;gt; en_AU&lt;br /&gt;
| &amp;lt;!-- Language  --&amp;gt; [http://en.wikipedia.org/wiki/Australian_English English (Australian)]&lt;br /&gt;
| &amp;lt;!-- Contact   --&amp;gt; '''[[Translating_Gramps|Translator Vacancy]]'''&lt;br /&gt;
|{{progress|0}}&lt;br /&gt;
|{{progress|0}}&lt;br /&gt;
|&lt;br /&gt;
| &amp;lt;!-- Notes     --&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
| &amp;lt;!-- No --&amp;gt; 12&lt;br /&gt;
| &amp;lt;!-- ISO-639-1 --&amp;gt; eo&lt;br /&gt;
| &amp;lt;!-- Language  --&amp;gt; Esperanto&lt;br /&gt;
| &amp;lt;!-- Contact   --&amp;gt; Pier Luigi Cinquantini&lt;br /&gt;
|{{progress|99.3}}&lt;br /&gt;
|{{progress|93.7}}&lt;br /&gt;
|&lt;br /&gt;
| &amp;lt;!-- Notes     --&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
| &amp;lt;!-- No --&amp;gt; 13&lt;br /&gt;
| &amp;lt;!-- ISO-639-1 --&amp;gt; es&lt;br /&gt;
| &amp;lt;!-- Language  --&amp;gt; Spanish&lt;br /&gt;
| &amp;lt;!-- Contact   --&amp;gt; '''[[Translating_Gramps|Translator Vacancy]]'''&lt;br /&gt;
|{{progress|82.6}}&lt;br /&gt;
|{{progress|79.5}}&lt;br /&gt;
|&lt;br /&gt;
| &amp;lt;!-- Notes     --&amp;gt;{{bug|4185}}, {{bug|6645}}:Kinship report (Relationships)&lt;br /&gt;
|-&lt;br /&gt;
| &amp;lt;!-- No --&amp;gt; 14&lt;br /&gt;
| &amp;lt;!-- ISO-639-1 --&amp;gt; fi&lt;br /&gt;
| &amp;lt;!-- Language  --&amp;gt; Finnish&lt;br /&gt;
| &amp;lt;!-- Contact   --&amp;gt; Matti Niemelä &lt;br /&gt;
|{{progress|100.0}}&lt;br /&gt;
|{{progress|99.9}}&lt;br /&gt;
|[{{Code Browser}}/tree/master/po/fi.po]&lt;br /&gt;
| &amp;lt;!-- Notes     --&amp;gt; {{bug|2356}}: genitive form for names, [[Translation_into_Finnish|Translation into Finnish]]&lt;br /&gt;
|-&lt;br /&gt;
| &amp;lt;!-- No --&amp;gt; 15&lt;br /&gt;
| &amp;lt;!-- ISO-639-1 --&amp;gt; fr&lt;br /&gt;
| &amp;lt;!-- Language  --&amp;gt; French&lt;br /&gt;
| &amp;lt;!-- Contact   --&amp;gt; '''[[Translating_Gramps|Translator Vacancy]]'''&lt;br /&gt;
|{{progress|98.3}}&lt;br /&gt;
|{{progress|97.9}}&lt;br /&gt;
|&lt;br /&gt;
| &amp;lt;!-- Notes     --&amp;gt; [[Translation_into_French|Translation into French]]&lt;br /&gt;
|-&lt;br /&gt;
| &amp;lt;!-- No --&amp;gt; 16&lt;br /&gt;
| &amp;lt;!-- ISO-639-1 --&amp;gt; ga&lt;br /&gt;
| &amp;lt;!-- Language  --&amp;gt; Irish&lt;br /&gt;
| &amp;lt;!-- Contact   --&amp;gt; '''[[Translating_Gramps|Translator Vacancy]]'''&lt;br /&gt;
|{{progress|0.3}} (not enabled)&lt;br /&gt;
|{{progress|0.07}} (not enabled)&lt;br /&gt;
| [{{Code Browser}}/tree/master/po/ga.po]&lt;br /&gt;
| &amp;lt;!-- Notes     --&amp;gt; [http://sourceforge.net/mailarchive/message.php?msg_id=26863727 mailing-list]&lt;br /&gt;
|-&lt;br /&gt;
| &amp;lt;!-- No --&amp;gt; 17&lt;br /&gt;
| &amp;lt;!-- ISO-639-1 --&amp;gt; he&lt;br /&gt;
| &amp;lt;!-- Language  --&amp;gt; Hebrew&lt;br /&gt;
| &amp;lt;!-- Contact   --&amp;gt; Avi Markovitz&lt;br /&gt;
|{{progress|42.4}}&lt;br /&gt;
|{{progress|99.97}}&lt;br /&gt;
|[{{Code Browser}}/tree/master/po/he.po]&lt;br /&gt;
| &amp;lt;!-- Notes     --&amp;gt; {{bug|2962}}&lt;br /&gt;
|-&lt;br /&gt;
| &amp;lt;!-- No --&amp;gt; 18&lt;br /&gt;
| &amp;lt;!-- ISO-639-1 --&amp;gt; hr&lt;br /&gt;
| &amp;lt;!-- Language  --&amp;gt; Croatian&lt;br /&gt;
| &amp;lt;!-- Contact   --&amp;gt; '''[[Translating_Gramps|Translator Vacancy]]'''&lt;br /&gt;
|{{progress|100.0}}&lt;br /&gt;
|{{progress|99.96}}&lt;br /&gt;
|&lt;br /&gt;
| &amp;lt;!-- Notes     --&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
| &amp;lt;!-- No --&amp;gt; 19&lt;br /&gt;
| &amp;lt;!-- ISO-639-1 --&amp;gt; hu&lt;br /&gt;
| &amp;lt;!-- Language  --&amp;gt; Hungarian&lt;br /&gt;
| &amp;lt;!-- Contact   --&amp;gt; Lajos Nemeséri&lt;br /&gt;
|{{progress|100.0}}&lt;br /&gt;
|{{progress|99.21}}&lt;br /&gt;
|&lt;br /&gt;
| &amp;lt;!-- Notes     --&amp;gt; {{bug|5505}}:[[Date_Handler]]&lt;br /&gt;
|-&lt;br /&gt;
| &amp;lt;!-- No --&amp;gt; 20&lt;br /&gt;
| &amp;lt;!-- ISO-639-1 --&amp;gt; is&lt;br /&gt;
| &amp;lt;!-- Language  --&amp;gt; Icelandic&lt;br /&gt;
| &amp;lt;!-- Contact   --&amp;gt; Sveinn í Felli&lt;br /&gt;
|{{progress|90.4}}&lt;br /&gt;
|{{progress|87.55}}&lt;br /&gt;
|&lt;br /&gt;
| &amp;lt;!-- Notes     --&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
| &amp;lt;!-- No --&amp;gt; 21&lt;br /&gt;
| &amp;lt;!-- ISO-639-1 --&amp;gt; it&lt;br /&gt;
| &amp;lt;!-- Language  --&amp;gt; Italian&lt;br /&gt;
| &amp;lt;!-- Contact   --&amp;gt; Luigi Toscano&lt;br /&gt;
|{{progress|95.0}}&lt;br /&gt;
|{{progress|91.2}}&lt;br /&gt;
|&lt;br /&gt;
| &amp;lt;!-- Notes     --&amp;gt;{{bug|4185}}:Kinship report (Relationships)&lt;br /&gt;
|-&lt;br /&gt;
| &amp;lt;!-- No --&amp;gt; 22&lt;br /&gt;
| &amp;lt;!-- ISO-639-1 --&amp;gt; ja&lt;br /&gt;
| &amp;lt;!-- Language  --&amp;gt; Japanese&lt;br /&gt;
| &amp;lt;!-- Contact   --&amp;gt; Keiichiro Yamamoto, Megumi Sakata&lt;br /&gt;
|{{progress|40.4}}&lt;br /&gt;
|{{progress|38.7}}&lt;br /&gt;
|[{{Code Browser}}/tree/master/po/ja.po]&lt;br /&gt;
| &amp;lt;!-- Notes     --&amp;gt; (''[https://raw.github.com/yanmar/gramps-translation-ja/master/po/ja.po github]'') / (Feature request:{{bug|3120}} support for Japanese Era calendar scheme)&lt;br /&gt;
|-&lt;br /&gt;
| &amp;lt;!-- No --&amp;gt; 23&lt;br /&gt;
| &amp;lt;!-- ISO-639-1 --&amp;gt; lt&lt;br /&gt;
| &amp;lt;!-- Language  --&amp;gt; Lithuanian&lt;br /&gt;
| &amp;lt;!-- Contact   --&amp;gt; '''[[Translating_Gramps|Translator Vacancy]]'''&lt;br /&gt;
|{{progress|98.3}}&lt;br /&gt;
|{{progress|94.4}}&lt;br /&gt;
|&lt;br /&gt;
| &amp;lt;!-- Notes     --&amp;gt;{{bug|4848}}&lt;br /&gt;
|-&lt;br /&gt;
| &amp;lt;!-- No --&amp;gt; 24&lt;br /&gt;
| &amp;lt;!-- ISO-639-1 --&amp;gt; mk&lt;br /&gt;
| &amp;lt;!-- Language  --&amp;gt; Macedonian&lt;br /&gt;
| &amp;lt;!-- Contact   --&amp;gt; '''[[Translating_Gramps|Translator Vacancy]]'''&lt;br /&gt;
|{{progress|24.9}} (not enabled)&lt;br /&gt;
|{{progress|23.8}} (not enabled)&lt;br /&gt;
|[{{Code Browser}}/tree/master/po/mk.po]&lt;br /&gt;
| &amp;lt;!-- Notes     --&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
| &amp;lt;!-- No --&amp;gt; 25&lt;br /&gt;
| &amp;lt;!-- ISO-639-1 --&amp;gt; nb&lt;br /&gt;
| &amp;lt;!-- Language  --&amp;gt; Norwegian Bokmål&lt;br /&gt;
| &amp;lt;!-- Contact   --&amp;gt; [[User:Espenbe|Espen Berg]]&lt;br /&gt;
|{{progress|99.0}}&lt;br /&gt;
|{{progress|94.96}}&lt;br /&gt;
|&lt;br /&gt;
| &amp;lt;!-- Notes     --&amp;gt; [https://github.com/gramps-project/gramps/blob/master/gramps/gen/datehandler/_datehandler.py see DateDisplay]&lt;br /&gt;
|-&lt;br /&gt;
| &amp;lt;!-- No --&amp;gt; 26&lt;br /&gt;
| &amp;lt;!-- ISO-639-1 --&amp;gt; nl&lt;br /&gt;
| &amp;lt;!-- Language  --&amp;gt; Dutch&lt;br /&gt;
| &amp;lt;!-- Contact   --&amp;gt; Jan Sparreboom&lt;br /&gt;
|{{progress|98.4}}&lt;br /&gt;
|{{progress|94.6}}&lt;br /&gt;
|&lt;br /&gt;
| &amp;lt;!-- Notes     --&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
| &amp;lt;!-- No --&amp;gt; 27&lt;br /&gt;
| &amp;lt;!-- ISO-639-1 --&amp;gt; nn&lt;br /&gt;
| &amp;lt;!-- Language  --&amp;gt; Norwegian Nynorsk&lt;br /&gt;
| &amp;lt;!-- Contact   --&amp;gt; Sigmund Lorentsen&lt;br /&gt;
|{{progress|87.8}}&lt;br /&gt;
|{{progress|94.3}}&lt;br /&gt;
|&lt;br /&gt;
| &amp;lt;!-- Notes     --&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
| &amp;lt;!-- No --&amp;gt; 28&lt;br /&gt;
| &amp;lt;!-- ISO-639-1 --&amp;gt; pl&lt;br /&gt;
| &amp;lt;!-- Language  --&amp;gt; Polish&lt;br /&gt;
| &amp;lt;!-- Contact   --&amp;gt; '''[[Translating_Gramps|Translator Vacancy]]'''&lt;br /&gt;
|{{progress|87.9}}&lt;br /&gt;
|{{progress|84.7}}&lt;br /&gt;
|&lt;br /&gt;
| &amp;lt;!-- Notes     --&amp;gt; &lt;br /&gt;
|-&lt;br /&gt;
| &amp;lt;!-- No --&amp;gt; 29&lt;br /&gt;
| &amp;lt;!-- ISO-639-1 --&amp;gt; pt_BR&lt;br /&gt;
| &amp;lt;!-- Language  --&amp;gt; Portuguese (Brazil)&lt;br /&gt;
| &amp;lt;!-- Contact   --&amp;gt; Paulo Henrique, Paiva de Moraes&lt;br /&gt;
|{{progress|98.2}}&lt;br /&gt;
|{{progress|98.16}}&lt;br /&gt;
|&lt;br /&gt;
| &amp;lt;!-- Notes     --&amp;gt;{{bug|4185}}:Kinship report (Relationships)&lt;br /&gt;
|-&lt;br /&gt;
| &amp;lt;!-- No --&amp;gt; 30&lt;br /&gt;
| &amp;lt;!-- ISO-639-1 --&amp;gt; pt_PT&lt;br /&gt;
| &amp;lt;!-- Language  --&amp;gt; Portuguese (Portugal)&lt;br /&gt;
| &amp;lt;!-- Contact   --&amp;gt; Pedro Albuquerque &lt;br /&gt;
|{{progress|99.7}}&lt;br /&gt;
|{{progress|95.56}}&lt;br /&gt;
|&lt;br /&gt;
| &amp;lt;!-- Notes     --&amp;gt;{{bug|4185}}: Kinship report (Relationships)&lt;br /&gt;
|-&lt;br /&gt;
| &amp;lt;!-- No --&amp;gt; 31&lt;br /&gt;
| &amp;lt;!-- ISO-639-1 --&amp;gt; ro&lt;br /&gt;
| &amp;lt;!-- Language  --&amp;gt; Romanian&lt;br /&gt;
| &amp;lt;!-- Contact   --&amp;gt; '''[[Translating_Gramps|Translator Vacancy]]'''&lt;br /&gt;
|{{progress|4.4}}&lt;br /&gt;
|{{progress|4.09}}&lt;br /&gt;
|[{{Code Browser}}/tree/master/po/ro.po]&lt;br /&gt;
| &amp;lt;!-- Notes     --&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
| &amp;lt;!-- No --&amp;gt; 32&lt;br /&gt;
| &amp;lt;!-- ISO-639-1 --&amp;gt; ru&lt;br /&gt;
| &amp;lt;!-- Language  --&amp;gt; Russian&lt;br /&gt;
| &amp;lt;!-- Contact   --&amp;gt; Ivan Komaritsyn&lt;br /&gt;
|{{progress|99.7}}&lt;br /&gt;
|{{progress|99.21}}&lt;br /&gt;
|&lt;br /&gt;
| &amp;lt;!-- Notes     --&amp;gt; [[Translation_into_Russian|Translation into Russian]]&lt;br /&gt;
|-&lt;br /&gt;
| &amp;lt;!-- No --&amp;gt; 33&lt;br /&gt;
| &amp;lt;!-- ISO-639-1 --&amp;gt; sk&lt;br /&gt;
| &amp;lt;!-- Language  --&amp;gt; Slovak&lt;br /&gt;
| &amp;lt;!-- Contact   --&amp;gt; '''[[Translating_Gramps|Translator Vacancy]]'''&lt;br /&gt;
|{{progress|90.9}}&lt;br /&gt;
|{{progress|87.42}}&lt;br /&gt;
|&lt;br /&gt;
| &amp;lt;!-- Notes     --&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
| &amp;lt;!-- No --&amp;gt; 34&lt;br /&gt;
| &amp;lt;!-- ISO-639-1 --&amp;gt; sl&lt;br /&gt;
| &amp;lt;!-- Language  --&amp;gt; Slovenian&lt;br /&gt;
| &amp;lt;!-- Contact   --&amp;gt; [[User:Beernarrd|Bernard Banko]]&lt;br /&gt;
|{{progress|100.0}}&lt;br /&gt;
|{{progress|96.01}}&lt;br /&gt;
|&lt;br /&gt;
| &amp;lt;!-- Notes     --&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
| &amp;lt;!-- No --&amp;gt; 35&lt;br /&gt;
| &amp;lt;!-- ISO-639-1 --&amp;gt; sq&lt;br /&gt;
| &amp;lt;!-- Language  --&amp;gt; Albanian&lt;br /&gt;
| &amp;lt;!-- Contact   --&amp;gt; '''[[Translating_Gramps|Translator Vacancy]]'''&lt;br /&gt;
|{{progress|39.4}}&lt;br /&gt;
|{{progress|37.8}}&lt;br /&gt;
|[{{Code Browser}}/tree/master/po/sq.po]&lt;br /&gt;
| &amp;lt;!-- Notes     --&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
| &amp;lt;!-- No --&amp;gt; 36&lt;br /&gt;
| &amp;lt;!-- ISO-639-1 --&amp;gt; sr&lt;br /&gt;
| &amp;lt;!-- Language  --&amp;gt; Serbian&lt;br /&gt;
| &amp;lt;!-- Contact   --&amp;gt; '''[[Translating_Gramps|Translator Vacancy]]'''&lt;br /&gt;
|{{progress|82.1}}&lt;br /&gt;
|{{progress|78.9}}&lt;br /&gt;
|[{{Code Browser}}/tree/master/po/sr.po]&lt;br /&gt;
| &amp;lt;!-- Notes     --&amp;gt; see {{bug|2375}}&lt;br /&gt;
|-&lt;br /&gt;
| &amp;lt;!-- No --&amp;gt; 37&lt;br /&gt;
| &amp;lt;!-- ISO-639-1 --&amp;gt; sr Latin&lt;br /&gt;
| &amp;lt;!-- Language  --&amp;gt; Serbian Latin&lt;br /&gt;
| &amp;lt;!-- Contact   --&amp;gt; '''[[Translating_Gramps|Translator Vacancy]]'''&lt;br /&gt;
|{{progress|2.7}}&lt;br /&gt;
|{{progress|2.3}}&lt;br /&gt;
|[{{Code Browser}}/tree/master/po/sr_Latn.po]&lt;br /&gt;
| &amp;lt;!-- Notes     --&amp;gt; see {{bug|2375}}&lt;br /&gt;
|-&lt;br /&gt;
| &amp;lt;!-- No --&amp;gt; 38&lt;br /&gt;
| &amp;lt;!-- ISO-639-1 --&amp;gt; sv&lt;br /&gt;
| &amp;lt;!-- Language  --&amp;gt; Swedish&lt;br /&gt;
| &amp;lt;!-- Contact   --&amp;gt; Pär Ekholm &lt;br /&gt;
|{{progress|100.0}}&lt;br /&gt;
|{{progress|100.0}}&lt;br /&gt;
|&lt;br /&gt;
| &amp;lt;!-- Notes     --&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
| &amp;lt;!-- No --&amp;gt; 39&lt;br /&gt;
| &amp;lt;!-- ISO-639-1 --&amp;gt; ta&lt;br /&gt;
| &amp;lt;!-- Language  --&amp;gt; Tamil&lt;br /&gt;
| &amp;lt;!-- Contact   --&amp;gt; '''[[Translating_Gramps|Translator Vacancy]]'''&lt;br /&gt;
|{{progress|6.4}}&lt;br /&gt;
|{{progress|6.0}}&lt;br /&gt;
|&lt;br /&gt;
| &amp;lt;!-- Notes     --&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
| &amp;lt;!-- No --&amp;gt; 40&lt;br /&gt;
| &amp;lt;!-- ISO-639-1 --&amp;gt; tr&lt;br /&gt;
| &amp;lt;!-- Language  --&amp;gt; Turkish&lt;br /&gt;
| &amp;lt;!-- Contact   --&amp;gt; '''[[Translating_Gramps|Translator Vacancy]]'''&lt;br /&gt;
|{{progress|27.5}}&lt;br /&gt;
|{{progress|26.2}}&lt;br /&gt;
|[{{Code Browser}}/tree/master/po/tr.po]&lt;br /&gt;
| &amp;lt;!-- Notes     --&amp;gt;{{bug|8148}}&lt;br /&gt;
|-&lt;br /&gt;
| &amp;lt;!-- No --&amp;gt; 41&lt;br /&gt;
| &amp;lt;!-- ISO-639-1 --&amp;gt; uk&lt;br /&gt;
| &amp;lt;!-- Language  --&amp;gt; Ukrainian&lt;br /&gt;
| &amp;lt;!-- Contact   --&amp;gt; [http://sourceforge.net/users/fedik/ Fedir Zinchuk]&lt;br /&gt;
|{{progress|97.3}}&lt;br /&gt;
|{{progress|98.15}}&lt;br /&gt;
|&lt;br /&gt;
| &amp;lt;!-- Notes     --&amp;gt; Relationships handler only available for 3.4 (need test on 4.0)&lt;br /&gt;
|-&lt;br /&gt;
| &amp;lt;!-- No --&amp;gt; 42&lt;br /&gt;
| &amp;lt;!-- ISO-639-1 --&amp;gt; vi&lt;br /&gt;
| &amp;lt;!-- Language  --&amp;gt; Vietnamese&lt;br /&gt;
| &amp;lt;!-- Contact   --&amp;gt; [[User:Detran|De Tran]]&lt;br /&gt;
|{{progress|98.5}}&lt;br /&gt;
|{{progress|95.7}}&lt;br /&gt;
|&lt;br /&gt;
| &amp;lt;!-- Notes     --&amp;gt; {{bug|4400}}: lunisolar calendar support ?&lt;br /&gt;
|-&lt;br /&gt;
| &amp;lt;!-- No --&amp;gt; 43&lt;br /&gt;
| &amp;lt;!-- ISO-639-1 --&amp;gt; zh_CN&lt;br /&gt;
| &amp;lt;!-- Language  --&amp;gt; Chinese (Simplified)&lt;br /&gt;
| &amp;lt;!-- Contact   --&amp;gt; '''[[Translating_Gramps|Translator Vacancy]]'''&lt;br /&gt;
|{{progress|70.5}}&lt;br /&gt;
|{{progress|73.81}}&lt;br /&gt;
|&lt;br /&gt;
| &amp;lt;!-- Notes     --&amp;gt;{{bug|4400}}: lunisolar calendar support ?&lt;br /&gt;
|-&lt;br /&gt;
| &amp;lt;!-- No --&amp;gt; 44&lt;br /&gt;
| &amp;lt;!-- ISO-639-1 --&amp;gt; zh_HK&lt;br /&gt;
| &amp;lt;!-- Language  --&amp;gt; Chinese (Hong Kong)&lt;br /&gt;
| &amp;lt;!-- Contact   --&amp;gt; '''[[Translating_Gramps|Translator Vacancy]]'''&lt;br /&gt;
|{{progress|70.5}}&lt;br /&gt;
|{{progress|67.7}}&lt;br /&gt;
|&lt;br /&gt;
| &amp;lt;!-- Notes     --&amp;gt;{{bug|4400}}: lunisolar calendar support ?&lt;br /&gt;
|-&lt;br /&gt;
| &amp;lt;!-- No --&amp;gt; 45&lt;br /&gt;
| &amp;lt;!-- ISO-639-1 --&amp;gt; zh_TW&lt;br /&gt;
| &amp;lt;!-- Language  --&amp;gt; Chinese (Traditional)&lt;br /&gt;
| &amp;lt;!-- Contact   --&amp;gt; '''[[Translating_Gramps|Translator Vacancy]]'''&lt;br /&gt;
|{{progress|70.5}}&lt;br /&gt;
|{{progress|67.7}}&lt;br /&gt;
|&lt;br /&gt;
| &amp;lt;!-- Notes     --&amp;gt;{{bug|4400}}: lunisolar calendar support ?&lt;br /&gt;
|} &lt;br /&gt;
{{-}}&lt;br /&gt;
{| class=&amp;quot;wikitable sortable&amp;quot;&lt;br /&gt;
! Custom&lt;br /&gt;
! Type&lt;br /&gt;
! &amp;lt;!-- Contact   --&amp;gt; Contact&lt;br /&gt;
! Coverage&amp;lt;br&amp;gt;Gramps 2.2.6&lt;br /&gt;
! Coverage&amp;lt;br&amp;gt;Gramps 3.1.3&lt;br /&gt;
! Coverage&amp;lt;br&amp;gt;(master)&lt;br /&gt;
! &amp;lt;!-- Notes     --&amp;gt; Notes&lt;br /&gt;
|-&lt;br /&gt;
| [http://gramps-project.org/wiki/index.php?title=Image:Animal.po.gz Animal Pedigree]&lt;br /&gt;
| [[Animal pedigree]]&lt;br /&gt;
| &amp;lt;!-- Contact   --&amp;gt; '''[[Translating_Gramps|Translator Vacancy]]'''&lt;br /&gt;
|{{progress|100}} [[File:Gramps_animal_2_2_6.po.gz]]&lt;br /&gt;
|{{progress|99}} [[File:Gramps_animal_3_1_3.po.gz]]&lt;br /&gt;
|{{progress|0}}&lt;br /&gt;
| &amp;lt;!-- Notes     --&amp;gt; English(US) sub-translation that makes using Gramps far more intuitive when dealing with animals.(Bug:{{bug|3346}})&lt;br /&gt;
|-&lt;br /&gt;
| Same gender&lt;br /&gt;
| Same gender/sex&lt;br /&gt;
| &amp;lt;!-- Contact   --&amp;gt; '''[[Translating_Gramps|Translator Vacancy]]'''&lt;br /&gt;
|align=&amp;quot;right&amp;quot;| -&lt;br /&gt;
|{{progress|100}}&lt;br /&gt;
|{{progress|0}}&lt;br /&gt;
| &amp;lt;!-- Notes     --&amp;gt; English(US) sub-translation that makes using Gramps far more intuitive when dealing with same gender family.(Bug:{{bug|3346}})&lt;br /&gt;
|} &lt;br /&gt;
{{-}}&lt;br /&gt;
&amp;lt;noinclude&amp;gt;&lt;br /&gt;
[[Category:Translators/Categories|T]][[Category:Developers/General|T]]&lt;br /&gt;
&amp;lt;/noinclude&amp;gt;&lt;/div&gt;</summary>
		<author><name>Sten</name></author>
		
	</entry>
	<entry>
		<id>https://ftp.gramps-project.org/wiki/index.php?title=Template_talk:Gramps_translations&amp;diff=80180</id>
		<title>Template talk:Gramps translations</title>
		<link rel="alternate" type="text/html" href="https://ftp.gramps-project.org/wiki/index.php?title=Template_talk:Gramps_translations&amp;diff=80180"/>
		<updated>2020-07-29T16:02:00Z</updated>

		<summary type="html">&lt;p&gt;Sten: About not real language&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Good day,&lt;br /&gt;
Say me please:&lt;br /&gt;
&lt;br /&gt;
en_AU 	English (Australian)&lt;br /&gt;
&lt;br /&gt;
it's real language in Gramps?&lt;br /&gt;
&lt;br /&gt;
I not see it in /po/ dirs.&lt;br /&gt;
Can I delete this language from list?&lt;/div&gt;</summary>
		<author><name>Sten</name></author>
		
	</entry>
	<entry>
		<id>https://ftp.gramps-project.org/wiki/index.php?title=Features&amp;diff=80179</id>
		<title>Features</title>
		<link rel="alternate" type="text/html" href="https://ftp.gramps-project.org/wiki/index.php?title=Features&amp;diff=80179"/>
		<updated>2020-07-29T15:55:35Z</updated>

		<summary type="html">&lt;p&gt;Sten: /* Languages 43! */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{man note|You may find Gramps downloads|On the following page [[Download]]}}&lt;br /&gt;
{{languages|Features}}&lt;br /&gt;
&amp;lt;!--Redirected from: https://gramps-project.org/features/ --&amp;gt;&lt;br /&gt;
&lt;br /&gt;
=Overview=&lt;br /&gt;
* Many different [[Gramps_{{Version manual}}_Wiki_Manual_-_Categories|Category views]] for navigating your family tree:&lt;br /&gt;
{| {{Prettytable}}&lt;br /&gt;
|- valign=&amp;quot;top&amp;quot; &lt;br /&gt;
|{{icon|gram}}'''Dashboard'''[[File:DashboardCategoryView-example-50.png|center|400px]] Displays different general purpose Gramplets, small widgets that can help in your genealogical research.&lt;br /&gt;
|{{icon|peop}}'''People'''[[File:People-tree-view-grouped-people-50.png|center|400px]] Displays the people in the family tree without their connections. This Category contains the PeopleListView and the Grouped PeopleTreeView. Filter the display using preset filters or a custom filter.&lt;br /&gt;
|- valign=&amp;quot;top&amp;quot; &lt;br /&gt;
|{{icon|rela}} '''Relationship'''[[File:Relationships-category-view-50.png|center|400px]] Display a family of parents, grandparents and children with the birth/death dates and relationships. Navigate to nearby relatives with a single click.&lt;br /&gt;
|{{icon|fami}} '''Families'''[[File:Families-category-list-view-50.png|center|400px]] List all families in a single view. Double-click on each to edit, add notes, and to see parents and children in each family.&lt;br /&gt;
|- valign=&amp;quot;top&amp;quot;&lt;br /&gt;
|{{icon|ance}}'''Charts - Pedigree'''[[File:ChartsCategory-pedigreeview1-horizontal-right-standard-5gen-default-50.png|center|400px]] Display the family in the traditional pedigree view. Hold the mouse over individuals to see more information about them and to move to more distant parts of the tree&lt;br /&gt;
|{{icon|ance}}'''Charts - Fan Chart'''[[File:ChartsCategory-fanchartview-fullcircle-9gen-default-50.png|center|400px]] Displays graphical trees for the selected person.&lt;br /&gt;
|- valign=&amp;quot;top&amp;quot;&lt;br /&gt;
|{{icon|ance}}'''Charts - Descendant Fan Chart'''[[File:ChartsCategory-desendantfan-fullcircle-9gen-default-50.png|center|400px]] Displays graphical trees for the selected person.&lt;br /&gt;
|{{icon|ance}}'''Charts - 2-Way Fan Chart'''[[File:ChartsCategory-2wayfan-fullcircle-ances4gen-descen4gen-default-50.png|center|400px]] Displays graphical trees for the selected person. 4 Generations of Ancestors (Top) / 4 Generations of Descendants (bottom) &lt;br /&gt;
|- valign=&amp;quot;top&amp;quot;&lt;br /&gt;
|{{icon|even}} '''Event'''[[File:EventsCategory-EventsListView-example-50.png|center|400px]] Displays the events in the family tree in a single view. Double-click on each to edit, add source, and to see which individuals reference the event.&lt;br /&gt;
|{{icon|plac}} '''Place'''[[File:PlacesCategory-PlaceListView-50.png|center|400px]] Displays the places in the family tree and sort the list by half a dozen headings such as City, County or State.&lt;br /&gt;
|- valign=&amp;quot;top&amp;quot;&lt;br /&gt;
|{{icon|geog}} '''Geography'''[[File:GeographyCategory-GeoPlacesView-AllKnownPlaces-openstreemap-example-50.png|center|400px]] Displays data of your family tree on a map.&lt;br /&gt;
|{{icon|sour34}} '''Source'''[[File:SourcesCategory-CitationTreeView-example-50.png|center|400px]] Displays the sources in the family tree in a single view. Double-click on each to edit, add notes, and to see which individuals reference the source.&lt;br /&gt;
|- valign=&amp;quot;top&amp;quot;&lt;br /&gt;
|{{icon|cite}} '''Citations'''[[File:CitationsCategory-CitationsListView-example-50.png|center|400px]] Displays the citations in the family tree.&lt;br /&gt;
|{{icon|repo}} '''Repository'''[[File:RepositoriesCategory-RepositoriesListView-example-50.png|center|400px]] List all source repositories in a single view. Double-click on each to edit, add notes, and to see which sources reference the repository.&lt;br /&gt;
|- valign=&amp;quot;top&amp;quot;&lt;br /&gt;
|{{icon|medi}} '''Media'''[[File:MediaCategory-MediaListView-example-50.png|center|400px]] List all forms of media referenced in the family tree. Can be graphic images, videos, sound clips, spreadsheets, documents, etc.&lt;br /&gt;
|{{icon|note}} '''Notes'''[[File:NotesCategory-NotesListView-example-50.png|center|400px]] Displays the notes in the family tree.&lt;br /&gt;
|- valign=&amp;quot;top&amp;quot;&lt;br /&gt;
|&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
==Features==&lt;br /&gt;
* Bookmark favorite individuals for quick access. (The number able to be marked is unlimited)&lt;br /&gt;
* Custom filters. In addition to the numerous preset filters, create any number of selections based on interesting facts about your family to use for reports and data exports.&lt;br /&gt;
* Link any media or filetype to your Gramps family tree. Choose between copying or linking the file to the database.&lt;br /&gt;
* Privacy options allow restriction of any information marked with this option or information about living individuals. Data marked with this option can be excluded in reports and data exports.&lt;br /&gt;
* Multiple calendars and date ranges are supported. You can convert between Gregorian, Julian, Hebrew, French republican, Persian and Islamic calendars from within Gramps via the Date selection window, and you can use fuzzy dates like about 1874, estimated 1905, ...&lt;br /&gt;
* View, edit, and save Image Exif Metadata for use with modern-day cameras, cell phones, and graphic programs...&lt;br /&gt;
&lt;br /&gt;
==Languages==&lt;br /&gt;
* Multiple languages and cultures support is mature.&lt;br /&gt;
** Translations exist for 43 languages + 1 Custom Language (See the [[Gramps translations]])&lt;br /&gt;
** Gramps has been designed so that new translations can easily be added with little development effort. If you are interested in participating please contact us.&lt;br /&gt;
** Relationship calculators available in four languages&lt;br /&gt;
** Full Unicode support. Characters for all languages are properly displayed.&lt;br /&gt;
&lt;br /&gt;
==Reports==&lt;br /&gt;
&lt;br /&gt;
[[Image:RelationshipChartDescendants.png|right|thumb|200px|An example descendant chart]]&lt;br /&gt;
&lt;br /&gt;
Generate brief or detailed reports for the ancestors or descendants of an individual.&lt;br /&gt;
&lt;br /&gt;
* Multiple styles of reports are currently available by default. Users can also create their own [[Gramps_{{Version manual}}_Wiki_Manual_-_Settings#Customize_report_output_formats|custom styles]].&lt;br /&gt;
* Eight output formats are supported by Gramps: PDF, OpenDocument, HTML, Rich Text Format (RTF), Latex, and plain text.&lt;br /&gt;
* Custom reports can be created by advanced users under the &amp;quot;plugin&amp;quot; system which allows the sharing of custom report styles between users.&lt;br /&gt;
* Book report allows the user to collect a variety of reports in a single document, which in turn is easier to distribute.&lt;br /&gt;
&lt;br /&gt;
Charts and Graphs - Create graphical Ancestor and Descendant charts in several formats.&lt;br /&gt;
&lt;br /&gt;
* Box and Fan charts are available, see eg [[Howto: Make a relationship chart | here]].&lt;br /&gt;
* Multiple formats are supported by Gramps for charts and graphs: OpenDocument Draw, PDF, PostScript, and SVG.&lt;br /&gt;
* Custom charts can be created by users. We hope to add more in the near future through the contributions of users and developers.&lt;br /&gt;
&lt;br /&gt;
Export to Web Pages -Select the entire database, family lines or selected individuals to a collection of web pages ready for upload to the World Wide Web.&lt;br /&gt;
&lt;br /&gt;
*[[Sample reports]]&lt;br /&gt;
{{-}}&lt;br /&gt;
&lt;br /&gt;
==Tools==&lt;br /&gt;
A rich set of tools includes operations such as checking database for errors and consistency, as well as the research and analysis tools such as event comparison, duplicate people finding, interactive descendant browser, and others.&lt;br /&gt;
&lt;br /&gt;
* Merge. Combine two separate people into one. Very useful combining two databases with overlapping people.&lt;br /&gt;
* Soundex generator. Generate the standard codes commonly used in genealogy to compare similar sounding names even though spelled differently.&lt;br /&gt;
&lt;br /&gt;
==File formats==&lt;br /&gt;
Import/Export support for several different formats.&lt;br /&gt;
&lt;br /&gt;
* GEDCOM import and export. Extensive support for the defacto industry standard GEDCOM version 5.5.1 so you can exchange Gramps information to and from users of most other genealogy programs.&lt;br /&gt;
* Gramps package import and export. A compressed file containing your family tree data and any other files used. Useful for backup or sharing with other Gramps users.&lt;br /&gt;
* Export to CD Burner. Export data and media directly to the GNOME file manager (Nautilus) for burning to CD.&lt;br /&gt;
* Web Family Tree export. Web Family Tree (WFT) allows you to display your family tree online with only a single file, instead of many html files the web page report generates. See [http://www.simonward.com/cgi-bin/page.pl?family/tree their homepage] for more information.&lt;br /&gt;
&lt;br /&gt;
==Community==&lt;br /&gt;
&lt;br /&gt;
* Active community involvement. Many current Gramps users contribute reports, suggestions, and feedback to the developers through the supported public mailing lists. The Gramps program has been available for over 14 years and has many features and capabilities.&lt;br /&gt;
* Active development effort. New versions already in testing use an advanced database design that guarantee very fast access to many thousands of entries in the database. Other new features are being designed and coordinated by several active developers. Many additional participants assist through the mailing lists. Group effort shapes and tests Gramps constantly improving functionality and usability.&lt;br /&gt;
* Portable. Gramps is written in a computer language called Python using GTK and GNOME libraries. While only well supported in certain Unix and Linux environments, these are multi-platform development libraries, meaning that Gramps can be ported to any platform the required libraries are ported to.&lt;br /&gt;
* Free Software/Open Source development model means Gramps can be extended by any programmer since all of the source code is freely available under its license.&lt;br /&gt;
* Gramps is freely distributed under the GPL!&lt;br /&gt;
&lt;br /&gt;
== Checklist ==&lt;br /&gt;
{| {{Prettytable}}&lt;br /&gt;
|-&lt;br /&gt;
!bgcolor=&amp;quot;#8DA7D6&amp;quot; style=&amp;quot;line-height:2.25em;&amp;quot;| Gramps&lt;br /&gt;
!bgcolor=&amp;quot;#8DA7D6&amp;quot; style=&amp;quot;line-height:2.25em;&amp;quot;| 5.0.x&lt;br /&gt;
!bgcolor=&amp;quot;#8DA7D6&amp;quot; style=&amp;quot;line-height:2.25em;&amp;quot;| 5.1.x&lt;br /&gt;
|-&lt;br /&gt;
|bgcolor=&amp;quot;lightgray&amp;quot;|Price&lt;br /&gt;
|style=&amp;quot;color:green;&amp;quot;|Free&lt;br /&gt;
|style=&amp;quot;color:green;&amp;quot;|Free&lt;br /&gt;
|-&lt;br /&gt;
|bgcolor=&amp;quot;lightgray&amp;quot;|Open Source &lt;br /&gt;
|style=&amp;quot;color:green;&amp;quot;|Yes&lt;br /&gt;
|style=&amp;quot;color:green;&amp;quot;|Yes&lt;br /&gt;
|-&lt;br /&gt;
!style=&amp;quot;color:blue;&amp;quot; colspan=&amp;quot;9&amp;quot;|Category Views&lt;br /&gt;
|-&lt;br /&gt;
|bgcolor=&amp;quot;lightgray&amp;quot;|Dashboard(was Gramplets)&lt;br /&gt;
|style=&amp;quot;color:green;&amp;quot;|Yes&lt;br /&gt;
|style=&amp;quot;color:green;&amp;quot;|Yes&lt;br /&gt;
|-&lt;br /&gt;
|-&lt;br /&gt;
|bgcolor=&amp;quot;lightgray&amp;quot;|People&lt;br /&gt;
|style=&amp;quot;color:green;&amp;quot;|Yes&lt;br /&gt;
|style=&amp;quot;color:green;&amp;quot;|Yes&lt;br /&gt;
|-&lt;br /&gt;
|bgcolor=&amp;quot;lightgray&amp;quot;|Families&lt;br /&gt;
|style=&amp;quot;color:green;&amp;quot;|Yes&lt;br /&gt;
|style=&amp;quot;color:green;&amp;quot;|Yes&lt;br /&gt;
|-&lt;br /&gt;
|bgcolor=&amp;quot;lightgray&amp;quot;|Relationships&lt;br /&gt;
|style=&amp;quot;color:green;&amp;quot;|Yes&lt;br /&gt;
|style=&amp;quot;color:green;&amp;quot;|Yes&lt;br /&gt;
|-&lt;br /&gt;
|bgcolor=&amp;quot;lightgray&amp;quot;|Charts&lt;br /&gt;
|style=&amp;quot;color:green;&amp;quot;|Yes (4 - Pedigree Chart / Ancestor Fan Chart / Descendant Fan / 2-Way Fan)&lt;br /&gt;
|style=&amp;quot;color:green;&amp;quot;|Yes (4 - Pedigree Chart / Ancestor Fan Chart / Descendant Fan / 2-Way Fan)&lt;br /&gt;
|-&lt;br /&gt;
|bgcolor=&amp;quot;lightgray&amp;quot;|Events&lt;br /&gt;
|style=&amp;quot;color:green;&amp;quot;|Yes&lt;br /&gt;
|style=&amp;quot;color:green;&amp;quot;|Yes&lt;br /&gt;
|-&lt;br /&gt;
|bgcolor=&amp;quot;lightgray&amp;quot;|Places&lt;br /&gt;
|style=&amp;quot;color:green;&amp;quot;|Yes&lt;br /&gt;
|style=&amp;quot;color:green;&amp;quot;|Yes&lt;br /&gt;
|-&lt;br /&gt;
|bgcolor=&amp;quot;lightgray&amp;quot;|Geography&lt;br /&gt;
|style=&amp;quot;color:green;&amp;quot;|Yes&lt;br /&gt;
|style=&amp;quot;color:green;&amp;quot;|Yes&lt;br /&gt;
|-&lt;br /&gt;
|bgcolor=&amp;quot;lightgray&amp;quot;|Sources&lt;br /&gt;
|style=&amp;quot;color:green;&amp;quot;|Yes&lt;br /&gt;
|style=&amp;quot;color:green;&amp;quot;|Yes&lt;br /&gt;
|-&lt;br /&gt;
|bgcolor=&amp;quot;lightgray&amp;quot;|Citations&lt;br /&gt;
|style=&amp;quot;color:green;&amp;quot;|Yes&lt;br /&gt;
|style=&amp;quot;color:green;&amp;quot;|Yes&lt;br /&gt;
|-&lt;br /&gt;
|bgcolor=&amp;quot;lightgray&amp;quot;|Repositories&lt;br /&gt;
|style=&amp;quot;color:green;&amp;quot;|Yes&lt;br /&gt;
|style=&amp;quot;color:green;&amp;quot;|Yes&lt;br /&gt;
|-&lt;br /&gt;
|bgcolor=&amp;quot;lightgray&amp;quot;|Media&lt;br /&gt;
|style=&amp;quot;color:green;&amp;quot;|Yes&lt;br /&gt;
|style=&amp;quot;color:green;&amp;quot;|Yes&lt;br /&gt;
|-&lt;br /&gt;
|bgcolor=&amp;quot;lightgray&amp;quot;|Notes&lt;br /&gt;
|style=&amp;quot;color:green;&amp;quot;|Yes&lt;br /&gt;
|style=&amp;quot;color:green;&amp;quot;|Yes&lt;br /&gt;
|-&lt;br /&gt;
!style=&amp;quot;color:blue;&amp;quot; colspan=&amp;quot;9&amp;quot;| Chart Types&lt;br /&gt;
|-&lt;br /&gt;
!style=&amp;quot;color:blue;&amp;quot; colspan=&amp;quot;9&amp;quot;| Reports&lt;br /&gt;
|-&lt;br /&gt;
|bgcolor=&amp;quot;lightgray&amp;quot;|Books&lt;br /&gt;
|style=&amp;quot;color:green;&amp;quot;|Yes&lt;br /&gt;
|style=&amp;quot;color:green;&amp;quot;|Yes&lt;br /&gt;
|-&lt;br /&gt;
|bgcolor=&amp;quot;lightgray&amp;quot;|Family Group Sheets&lt;br /&gt;
|style=&amp;quot;color:green;&amp;quot;|Yes&lt;br /&gt;
|style=&amp;quot;color:green;&amp;quot;|Yes&lt;br /&gt;
|-&lt;br /&gt;
|bgcolor=&amp;quot;lightgray&amp;quot;|Individual Summary&lt;br /&gt;
|style=&amp;quot;color:green;&amp;quot;|Yes&lt;br /&gt;
|style=&amp;quot;color:green;&amp;quot;|Yes&lt;br /&gt;
|-&lt;br /&gt;
|bgcolor=&amp;quot;lightgray&amp;quot;|Sosa Numbering (ascendants)&lt;br /&gt;
|style=&amp;quot;color:green;&amp;quot;|Yes&lt;br /&gt;
|style=&amp;quot;color:green;&amp;quot;|Yes&lt;br /&gt;
|-&lt;br /&gt;
|bgcolor=&amp;quot;lightgray&amp;quot;|Henry Numbering (descendants)&lt;br /&gt;
|style=&amp;quot;color:green;&amp;quot;|Yes&lt;br /&gt;
|style=&amp;quot;color:green;&amp;quot;|Yes&lt;br /&gt;
|-&lt;br /&gt;
|bgcolor=&amp;quot;lightgray&amp;quot;|Count numbering (descendants)&lt;br /&gt;
|style=&amp;quot;color:green;&amp;quot;|Yes&lt;br /&gt;
|style=&amp;quot;color:green;&amp;quot;|Yes&lt;br /&gt;
|-&lt;br /&gt;
|bgcolor=&amp;quot;lightgray&amp;quot;|Calendar&lt;br /&gt;
|style=&amp;quot;color:green;&amp;quot;|Yes&lt;br /&gt;
|style=&amp;quot;color:green;&amp;quot;|Yes&lt;br /&gt;
|-&lt;br /&gt;
!style=&amp;quot;color:blue;&amp;quot; colspan=&amp;quot;9&amp;quot;| Database&lt;br /&gt;
|-&lt;br /&gt;
|bgcolor=&amp;quot;lightgray&amp;quot;|Native Database&lt;br /&gt;
|style=&amp;quot;color:green;&amp;quot;|Yes ('''Berkeley DB'''(default)/ SQLite(Experimental)&lt;br /&gt;
|style=&amp;quot;color:green;&amp;quot;|Yes ('''SQLite'''(default)/Berkeley DB(Legacy))&lt;br /&gt;
|-&lt;br /&gt;
|bgcolor=&amp;quot;lightgray&amp;quot;| [[Gramps Performance|Size Limit]]&lt;br /&gt;
|style=&amp;quot;color:green;&amp;quot;|Yes (tested up to 250,000 people)&lt;br /&gt;
|style=&amp;quot;color:green;&amp;quot;|Yes (tested up to 1.4 Million people[https://www.reddit.com/r/gramps/comments/dzevcl/database_size_limit_for_gramps/fb6hdbj/])&lt;br /&gt;
|-&lt;br /&gt;
|bgcolor=&amp;quot;lightgray&amp;quot;| Open multiple Databases at once&lt;br /&gt;
|style=&amp;quot;color:red;&amp;quot;|No (works for viewing, not supported !!)&lt;br /&gt;
|style=&amp;quot;color:red;&amp;quot;|No (works for viewing, not supported !!)&lt;br /&gt;
|-&lt;br /&gt;
!style=&amp;quot;color:blue;&amp;quot; colspan=&amp;quot;9&amp;quot;| Multimedia&lt;br /&gt;
|-&lt;br /&gt;
|bgcolor=&amp;quot;lightgray&amp;quot;|Audio&lt;br /&gt;
|style=&amp;quot;color:green;&amp;quot;|Yes&lt;br /&gt;
|style=&amp;quot;color:green;&amp;quot;|Yes&lt;br /&gt;
|-&lt;br /&gt;
|bgcolor=&amp;quot;lightgray&amp;quot;|Video&lt;br /&gt;
|style=&amp;quot;color:green;&amp;quot;|Yes&lt;br /&gt;
|style=&amp;quot;color:green;&amp;quot;|Yes&lt;br /&gt;
|-&lt;br /&gt;
|bgcolor=&amp;quot;lightgray&amp;quot;|Images&lt;br /&gt;
|style=&amp;quot;color:green;&amp;quot;|Yes&lt;br /&gt;
|style=&amp;quot;color:green;&amp;quot;|Yes&lt;br /&gt;
|-&lt;br /&gt;
!style=&amp;quot;color:blue;&amp;quot; colspan=&amp;quot;9&amp;quot;| Remote&lt;br /&gt;
|-&lt;br /&gt;
|bgcolor=&amp;quot;lightgray&amp;quot;|Remote Access&lt;br /&gt;
|style=&amp;quot;color:green;&amp;quot;|Yes (linux, over X connection)&lt;br /&gt;
|style=&amp;quot;color:green;&amp;quot;|Yes (linux, over X connection)&lt;br /&gt;
|-&lt;br /&gt;
|bgcolor=&amp;quot;lightgray&amp;quot;|Collaboration&lt;br /&gt;
|style=&amp;quot;color:red;&amp;quot;|No&lt;br /&gt;
|style=&amp;quot;color:red;&amp;quot;|No&lt;br /&gt;
|-&lt;br /&gt;
!style=&amp;quot;color:blue;&amp;quot; colspan=&amp;quot;9&amp;quot;| International&lt;br /&gt;
|-&lt;br /&gt;
|bgcolor=&amp;quot;lightgray&amp;quot;|Unicode&lt;br /&gt;
|style=&amp;quot;color:green;&amp;quot;|Yes(40+)&lt;br /&gt;
|style=&amp;quot;color:green;&amp;quot;|Yes(40+)&lt;br /&gt;
|-&lt;br /&gt;
|bgcolor=&amp;quot;lightgray&amp;quot;|[[Gramps_translations|Languages]]&lt;br /&gt;
|English(USA), English(UK), Arabic, Albanian, Brazilian Portuguese, Bulgarian, Catalan, Chinese, Croatian, Czech, Danish, Dutch, Esperanto, Finnish, French, German, Hebrew, Hungarian, Italian, Japanese, Lithuanian, Macedonian, Norwegian (Bokmål and Nynorsk), Polish, Russian, Slovak, Slovenian, Spanish, Swedish, Vietnamese.&lt;br /&gt;
|English(USA), English(UK), Arabic, Albanian, Brazilian Portuguese, Bulgarian, Catalan, Chinese, Croatian, Czech, Danish, Dutch, Esperanto, Finnish, French, German, Hebrew, Hungarian, Italian, Japanese, Lithuanian, Macedonian, Norwegian (Bokmål and Nynorsk), Polish, Russian, Slovak, Slovenian, Spanish, Swedish, Vietnamese.&lt;br /&gt;
|-&lt;br /&gt;
!style=&amp;quot;color:blue;&amp;quot; colspan=&amp;quot;9&amp;quot;| Compatibility&lt;br /&gt;
|-&lt;br /&gt;
|bgcolor=&amp;quot;lightgray&amp;quot;|[[GEDCOM|GEDCOM 5.5]]&lt;br /&gt;
|Import/Export&lt;br /&gt;
|Import/Export&lt;br /&gt;
|-&lt;br /&gt;
|bgcolor=&amp;quot;lightgray&amp;quot;|[[GEDCOM|GEDCOM 5.5.1]]&lt;br /&gt;
|Import/Export&lt;br /&gt;
|Import/Export&lt;br /&gt;
|-&lt;br /&gt;
|bgcolor=&amp;quot;lightgray&amp;quot;|HTML&lt;br /&gt;
|Export&lt;br /&gt;
|Export&lt;br /&gt;
|-&lt;br /&gt;
|bgcolor=&amp;quot;lightgray&amp;quot;|XML&lt;br /&gt;
|Gramps XML&lt;br /&gt;
|Gramps XML&lt;br /&gt;
|-&lt;br /&gt;
|bgcolor=&amp;quot;lightgray&amp;quot;|Backup&lt;br /&gt;
|On Menu&lt;br /&gt;
|On Menu&lt;br /&gt;
|-&lt;br /&gt;
!style=&amp;quot;color:blue;&amp;quot; colspan=&amp;quot;9&amp;quot;| Platform&lt;br /&gt;
|-&lt;br /&gt;
|bgcolor=&amp;quot;lightgray&amp;quot;|Linux&lt;br /&gt;
|style=&amp;quot;color:green;&amp;quot;|Yes (Officially Supported compile/install)&lt;br /&gt;
|style=&amp;quot;color:green;&amp;quot;|Yes (Officially Supported compile/install)&lt;br /&gt;
|-&lt;br /&gt;
|bgcolor=&amp;quot;lightgray&amp;quot;|Windows&lt;br /&gt;
|style=&amp;quot;color:green;&amp;quot;|Yes (Community Supported)&lt;br /&gt;
|style=&amp;quot;color:green;&amp;quot;|Yes (Community Supported)&lt;br /&gt;
|-&lt;br /&gt;
|bgcolor=&amp;quot;lightgray&amp;quot;|Mac&lt;br /&gt;
|style=&amp;quot;color:green;&amp;quot;|Yes (Community Supported)&lt;br /&gt;
|style=&amp;quot;color:green;&amp;quot;|Yes (Community Supported)&lt;br /&gt;
|-&lt;br /&gt;
|bgcolor=&amp;quot;lightgray&amp;quot;|BSD&lt;br /&gt;
|style=&amp;quot;color:green;&amp;quot;|Yes (user compile/install)&lt;br /&gt;
|style=&amp;quot;color:green;&amp;quot;|Yes (user compile/install)&lt;br /&gt;
|-&lt;br /&gt;
!style=&amp;quot;color:blue;&amp;quot; colspan=&amp;quot;9&amp;quot;| Additional Features&lt;br /&gt;
|-&lt;br /&gt;
|bgcolor=&amp;quot;lightgray&amp;quot;|Match/Merge&lt;br /&gt;
|style=&amp;quot;color:green;&amp;quot;|Yes (Limited)&lt;br /&gt;
|style=&amp;quot;color:green;&amp;quot;|Yes (Limited)&lt;br /&gt;
|-&lt;br /&gt;
|bgcolor=&amp;quot;lightgray&amp;quot;|Multiple relationships (adoptive-foster)&lt;br /&gt;
|style=&amp;quot;color:green;&amp;quot;|Yes&lt;br /&gt;
|style=&amp;quot;color:green;&amp;quot;|Yes&lt;br /&gt;
|-&lt;br /&gt;
|bgcolor=&amp;quot;lightgray&amp;quot;|Relationship calculator&lt;br /&gt;
|style=&amp;quot;color:green;&amp;quot;|Yes&lt;br /&gt;
|style=&amp;quot;color:green;&amp;quot;|Yes&lt;br /&gt;
|-&lt;br /&gt;
|bgcolor=&amp;quot;lightgray&amp;quot;|Soundex calculator&lt;br /&gt;
|style=&amp;quot;color:green;&amp;quot;|Yes&lt;br /&gt;
|style=&amp;quot;color:green;&amp;quot;|Yes&lt;br /&gt;
|-&lt;br /&gt;
|bgcolor=&amp;quot;lightgray&amp;quot;|Spell check in notes&lt;br /&gt;
|style=&amp;quot;color:green;&amp;quot;|Yes&lt;br /&gt;
|style=&amp;quot;color:green;&amp;quot;|Yes&lt;br /&gt;
|-&lt;br /&gt;
|bgcolor=&amp;quot;lightgray&amp;quot;|3rd party Addon/plugin infrastructure&lt;br /&gt;
|style=&amp;quot;color:green;&amp;quot;|Yes&lt;br /&gt;
|style=&amp;quot;color:green;&amp;quot;|Yes&lt;br /&gt;
|-&lt;br /&gt;
|bgcolor=&amp;quot;lightgray&amp;quot;|Check for Program Update&lt;br /&gt;
|style=&amp;quot;color:red;&amp;quot;|No (Only for addons)&lt;br /&gt;
|style=&amp;quot;color:red;&amp;quot;|No (Only for addons)&lt;br /&gt;
|-&lt;br /&gt;
|bgcolor=&amp;quot;lightgray&amp;quot;|User Manual&lt;br /&gt;
|style=&amp;quot;color:green;&amp;quot;|Yes ([[User_manual|online]])&lt;br /&gt;
|style=&amp;quot;color:green;&amp;quot;|Yes ([[User_manual|online]])&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
=See also=&lt;br /&gt;
* [[Previous releases of Gramps]]&lt;br /&gt;
&lt;br /&gt;
[[Category:Documentation]]&lt;br /&gt;
[[Category:screenshots| ]]&lt;/div&gt;</summary>
		<author><name>Sten</name></author>
		
	</entry>
	<entry>
		<id>https://ftp.gramps-project.org/wiki/index.php?title=Template:Gramps_translations&amp;diff=80178</id>
		<title>Template:Gramps translations</title>
		<link rel="alternate" type="text/html" href="https://ftp.gramps-project.org/wiki/index.php?title=Template:Gramps_translations&amp;diff=80178"/>
		<updated>2020-07-29T14:46:04Z</updated>

		<summary type="html">&lt;p&gt;Sten: /* INCOMPLETE_TRANSLATIONS */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&amp;lt;noinclude&amp;gt;A list of the languages in which Gramps has been translated, along with some additional information used during [[What_to_do_for_a_release|release cycles]] and contact information. &lt;br /&gt;
&lt;br /&gt;
===ALL_LINGUAS===&lt;br /&gt;
For enabling, a language code must be set in the ''ALL_LINGUAS'' section in the file:&lt;br /&gt;
* [https://github.com/gramps-project/gramps/blob/maintenance/gramps34/configure.in configure.in] in Gramps 3.x&lt;br /&gt;
* [{{Code Browser}}/tree/master/setup.py setup.py] in Gramps 4.x and greater&lt;br /&gt;
&lt;br /&gt;
[[Translating Gramps|Help translate Gramps to other languages]] or to improve existing translations.&lt;br /&gt;
&lt;br /&gt;
 # Go to the /po directory&lt;br /&gt;
 cd po&lt;br /&gt;
 &lt;br /&gt;
 # update with last template&lt;br /&gt;
 for file in *.po; do echo -n &amp;quot;${file} &amp;quot;; msgmerge --no-wrap ${file} gramps.pot -o ${file}; done&lt;br /&gt;
 &lt;br /&gt;
 # check localisation percentage&lt;br /&gt;
 for file in *.po; do echo -n &amp;quot;${file} &amp;quot;; ./check_po -s ${file} | grep &amp;quot;Localized at&amp;quot;; done&lt;br /&gt;
&lt;br /&gt;
====INCOMPLETE_TRANSLATIONS====&lt;br /&gt;
The minimum complete translation is 70% (if the translation is very close to that percentage also enable it, also keep ''en_GB'' as it is a special subtranslation of English)&lt;br /&gt;
&lt;br /&gt;
Add the locale code (if less than 70%) or remove the locale code (if greater than 70%)as required from the following ''INCOMPLETE_TRANSLATIONS'' section in the file:&lt;br /&gt;
* [https://github.com/gramps-project/gramps/blob/master/gramps/gen/utils/grampslocale.py#L119 gramps/gen/utils/grampslocale.py] in Gramps 4.x and greater&lt;br /&gt;
  INCOMPLETE_TRANSLATIONS = ('ar', 'bg', 'he', 'ja', 'sq', 'ta', 'tr')&lt;br /&gt;
&lt;br /&gt;
&amp;lt;/noinclude&amp;gt;{| class=&amp;quot;wikitable sortable&amp;quot;&lt;br /&gt;
! &amp;lt;!-- No --&amp;gt; Number&lt;br /&gt;
! &amp;lt;!-- ISO-639-1 --&amp;gt; [http://en.wikipedia.org/wiki/List_of_ISO_639-1_codes Code]&lt;br /&gt;
! &amp;lt;!-- Language  --&amp;gt; Language&lt;br /&gt;
! &amp;lt;!-- Translator   --&amp;gt; Translator &lt;br /&gt;
! Coverage&amp;lt;br&amp;gt;gramps50; 5.0.2&amp;lt;br&amp;gt;2019-08-27&lt;br /&gt;
! Coverage&amp;lt;br&amp;gt;gramps51; 5.1.2&amp;lt;br&amp;gt;2019-12-09&lt;br /&gt;
! Coverage&amp;lt;br&amp;gt;master&amp;lt;br&amp;gt;&lt;br /&gt;
! &amp;lt;!-- Notes     --&amp;gt; Notes&lt;br /&gt;
|-&lt;br /&gt;
| &amp;lt;!-- No --&amp;gt; 1&lt;br /&gt;
| &amp;lt;!-- ISO-639-1 --&amp;gt; ar&lt;br /&gt;
| &amp;lt;!-- Language  --&amp;gt; Arabic&lt;br /&gt;
| &amp;lt;!-- Contact   --&amp;gt; '''[[Translating_Gramps|Translator Vacancy]]'''&lt;br /&gt;
|{{progress|54.7}}&lt;br /&gt;
|{{progress|52.5}}&lt;br /&gt;
|[{{Code Browser}}/tree/master/po/ar.po]&lt;br /&gt;
| &amp;lt;!-- Notes     --&amp;gt; see [http://sourceforge.net/mailarchive/message.php?msg_id=13026041 mailing-list], and {{bug|6819}}: date handler&lt;br /&gt;
|-&lt;br /&gt;
| &amp;lt;!-- No --&amp;gt; 2&lt;br /&gt;
| &amp;lt;!-- ISO-639-1 --&amp;gt; bg&lt;br /&gt;
| &amp;lt;!-- Language  --&amp;gt; Bulgarian&lt;br /&gt;
| &amp;lt;!-- Contact   --&amp;gt; '''[[Translating_Gramps|Translator Vacancy]]'''&lt;br /&gt;
|{{progress|56.9}}&lt;br /&gt;
|{{progress|54.6}}&lt;br /&gt;
|&lt;br /&gt;
| &amp;lt;!-- Notes     --&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
| &amp;lt;!-- No --&amp;gt; 3&lt;br /&gt;
| &amp;lt;!-- ISO-639-1 --&amp;gt; br&lt;br /&gt;
| &amp;lt;!-- Language  --&amp;gt; Breton&lt;br /&gt;
| &amp;lt;!-- Contact   --&amp;gt; '''[[Translating_Gramps|Translator Vacancy]]'''&lt;br /&gt;
|{{progress|2.9}} (not enabled)&lt;br /&gt;
|{{progress|2.5}}&lt;br /&gt;
|[{{Code Browser}}/tree/master/po/br.po]&lt;br /&gt;
| &amp;lt;!-- Notes     --&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
| &amp;lt;!-- No --&amp;gt; 4&lt;br /&gt;
| &amp;lt;!-- ISO-639-1 --&amp;gt;  ca&lt;br /&gt;
| &amp;lt;!-- Language  --&amp;gt; Catalan&lt;br /&gt;
| &amp;lt;!-- Contact   --&amp;gt; Joan Creus&lt;br /&gt;
|{{progress|99.6}}&lt;br /&gt;
|{{progress|95.4}}&lt;br /&gt;
|&lt;br /&gt;
| &amp;lt;!-- Notes     --&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
| &amp;lt;!-- No --&amp;gt; 5&lt;br /&gt;
| &amp;lt;!-- ISO-639-1 --&amp;gt;  cs&lt;br /&gt;
| &amp;lt;!-- Language  --&amp;gt; Czech&lt;br /&gt;
| &amp;lt;!-- Contact   --&amp;gt; Zdeněk Hataš&lt;br /&gt;
|{{progress|100.0}}&lt;br /&gt;
|{{progress|98.5}}&lt;br /&gt;
| &amp;lt;!-- Notes     --&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
| &amp;lt;!-- No --&amp;gt; 6&lt;br /&gt;
| &amp;lt;!-- ISO-639-1 --&amp;gt; da&lt;br /&gt;
| &amp;lt;!-- Language  --&amp;gt; Danish&lt;br /&gt;
| &amp;lt;!-- Contact   --&amp;gt; Kaj Mikkelsen&lt;br /&gt;
|{{progress|100.0}}&lt;br /&gt;
|{{progress|95.8}}&lt;br /&gt;
|&lt;br /&gt;
| &amp;lt;!-- Notes     --&amp;gt; &lt;br /&gt;
|-&lt;br /&gt;
| &amp;lt;!-- No --&amp;gt; 7&lt;br /&gt;
| &amp;lt;!-- ISO-639-1 --&amp;gt; de&lt;br /&gt;
| &amp;lt;!-- Language  --&amp;gt; German&lt;br /&gt;
| &amp;lt;!-- Contact   --&amp;gt; [[User:Leonhaeuser|Mirko Leonhäuser]]&lt;br /&gt;
|{{progress|99.7}}&lt;br /&gt;
|{{progress|99.6}}&lt;br /&gt;
|&lt;br /&gt;
| &amp;lt;!-- Notes     --&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
| &amp;lt;!-- No --&amp;gt; 8&lt;br /&gt;
| &amp;lt;!-- ISO-639-1 --&amp;gt; el&lt;br /&gt;
| &amp;lt;!-- Language  --&amp;gt; Greek&lt;br /&gt;
| &amp;lt;!-- Contact   --&amp;gt; Zissis Papadopoulos&lt;br /&gt;
|{{progress|81.7}}&lt;br /&gt;
|{{progress|78.4}}&lt;br /&gt;
|&lt;br /&gt;
| &amp;lt;!-- Notes     --&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
| &amp;lt;!-- No --&amp;gt; 9&lt;br /&gt;
! &amp;lt;!-- ISO-639-1 --&amp;gt; en&lt;br /&gt;
| &amp;lt;!-- Language  --&amp;gt; [http://en.wikipedia.org/wiki/English_language English]&lt;br /&gt;
| &amp;lt;!-- Contact   --&amp;gt; N/A  ('''Default Language''')&lt;br /&gt;
|{{progress|100.0}}&lt;br /&gt;
|{{progress|100.0}}&lt;br /&gt;
|&lt;br /&gt;
| &amp;lt;!-- Notes     --&amp;gt;[http://gramps.1791082.n4.nabble.com/English-or-American-spelling-td4623552.html American English]&lt;br /&gt;
|-&lt;br /&gt;
| &amp;lt;!-- No --&amp;gt; 10&lt;br /&gt;
| &amp;lt;!-- ISO-639-1 --&amp;gt; en_GB&lt;br /&gt;
| &amp;lt;!-- Language  --&amp;gt; [http://en.wikipedia.org/wiki/British_English English (British)]&lt;br /&gt;
| &amp;lt;!-- Contact   --&amp;gt; [[User:Nick_H|Nick Hall]]&lt;br /&gt;
|{{progress|2.5}}&lt;br /&gt;
|{{progress|2.1}}&lt;br /&gt;
|&lt;br /&gt;
| &amp;lt;!-- Notes     --&amp;gt;[http://gramps.1791082.n4.nabble.com/English-or-American-spelling-td4623552.html#a4626565 English (British)][{{Code Browser}}/tree/master/po/en_GB.po en_GB.po]&lt;br /&gt;
variation ~ 5%&lt;br /&gt;
|-&lt;br /&gt;
| &amp;lt;!-- No --&amp;gt; 11&lt;br /&gt;
| &amp;lt;!-- ISO-639-1 --&amp;gt; en_AU&lt;br /&gt;
| &amp;lt;!-- Language  --&amp;gt; [http://en.wikipedia.org/wiki/Australian_English English (Australian)]&lt;br /&gt;
| &amp;lt;!-- Contact   --&amp;gt; '''[[Translating_Gramps|Translator Vacancy]]'''&lt;br /&gt;
|{{progress|0}}&lt;br /&gt;
|{{progress|0}}&lt;br /&gt;
|&lt;br /&gt;
| &amp;lt;!-- Notes     --&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
| &amp;lt;!-- No --&amp;gt; 12&lt;br /&gt;
| &amp;lt;!-- ISO-639-1 --&amp;gt; eo&lt;br /&gt;
| &amp;lt;!-- Language  --&amp;gt; Esperanto&lt;br /&gt;
| &amp;lt;!-- Contact   --&amp;gt; Pier Luigi Cinquantini&lt;br /&gt;
|{{progress|99.3}}&lt;br /&gt;
|{{progress|93.7}}&lt;br /&gt;
|&lt;br /&gt;
| &amp;lt;!-- Notes     --&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
| &amp;lt;!-- No --&amp;gt; 13&lt;br /&gt;
| &amp;lt;!-- ISO-639-1 --&amp;gt; es&lt;br /&gt;
| &amp;lt;!-- Language  --&amp;gt; Spanish&lt;br /&gt;
| &amp;lt;!-- Contact   --&amp;gt; '''[[Translating_Gramps|Translator Vacancy]]'''&lt;br /&gt;
|{{progress|82.6}}&lt;br /&gt;
|{{progress|79.4}}&lt;br /&gt;
|&lt;br /&gt;
| &amp;lt;!-- Notes     --&amp;gt;{{bug|4185}}, {{bug|6645}}:Kinship report (Relationships)&lt;br /&gt;
|-&lt;br /&gt;
| &amp;lt;!-- No --&amp;gt; 14&lt;br /&gt;
| &amp;lt;!-- ISO-639-1 --&amp;gt; fi&lt;br /&gt;
| &amp;lt;!-- Language  --&amp;gt; Finnish&lt;br /&gt;
| &amp;lt;!-- Contact   --&amp;gt; Matti Niemelä &lt;br /&gt;
|{{progress|100.0}}&lt;br /&gt;
|{{progress|99.8}}&lt;br /&gt;
|[{{Code Browser}}/tree/master/po/fi.po]&lt;br /&gt;
| &amp;lt;!-- Notes     --&amp;gt; {{bug|2356}}: genitive form for names, [[Translation_into_Finnish|Translation into Finnish]]&lt;br /&gt;
|-&lt;br /&gt;
| &amp;lt;!-- No --&amp;gt; 15&lt;br /&gt;
| &amp;lt;!-- ISO-639-1 --&amp;gt; fr&lt;br /&gt;
| &amp;lt;!-- Language  --&amp;gt; French&lt;br /&gt;
| &amp;lt;!-- Contact   --&amp;gt; '''[[Translating_Gramps|Translator Vacancy]]'''&lt;br /&gt;
|{{progress|98.3}}&lt;br /&gt;
|{{progress|97.3}}&lt;br /&gt;
|&lt;br /&gt;
| &amp;lt;!-- Notes     --&amp;gt; [[Translation_into_French|Translation into French]]&lt;br /&gt;
|-&lt;br /&gt;
| &amp;lt;!-- No --&amp;gt; 16&lt;br /&gt;
| &amp;lt;!-- ISO-639-1 --&amp;gt; ga&lt;br /&gt;
| &amp;lt;!-- Language  --&amp;gt; Irish&lt;br /&gt;
| &amp;lt;!-- Contact   --&amp;gt; '''[[Translating_Gramps|Translator Vacancy]]'''&lt;br /&gt;
|{{progress|0.3}} (not enabled)&lt;br /&gt;
|{{progress|0.07}} (not enabled)&lt;br /&gt;
| [{{Code Browser}}/tree/master/po/ga.po]&lt;br /&gt;
| &amp;lt;!-- Notes     --&amp;gt; [http://sourceforge.net/mailarchive/message.php?msg_id=26863727 mailing-list]&lt;br /&gt;
|-&lt;br /&gt;
| &amp;lt;!-- No --&amp;gt; 17&lt;br /&gt;
| &amp;lt;!-- ISO-639-1 --&amp;gt; he&lt;br /&gt;
| &amp;lt;!-- Language  --&amp;gt; Hebrew&lt;br /&gt;
| &amp;lt;!-- Contact   --&amp;gt; Avi Markovitz&lt;br /&gt;
|{{progress|42.4}}&lt;br /&gt;
|{{progress|99.7}}&lt;br /&gt;
|[{{Code Browser}}/tree/master/po/he.po]&lt;br /&gt;
| &amp;lt;!-- Notes     --&amp;gt; {{bug|2962}}&lt;br /&gt;
|-&lt;br /&gt;
| &amp;lt;!-- No --&amp;gt; 18&lt;br /&gt;
| &amp;lt;!-- ISO-639-1 --&amp;gt; hr&lt;br /&gt;
| &amp;lt;!-- Language  --&amp;gt; Croatian&lt;br /&gt;
| &amp;lt;!-- Contact   --&amp;gt; '''[[Translating_Gramps|Translator Vacancy]]'''&lt;br /&gt;
|{{progress|100.0}}&lt;br /&gt;
|{{progress|99.9}}&lt;br /&gt;
|&lt;br /&gt;
| &amp;lt;!-- Notes     --&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
| &amp;lt;!-- No --&amp;gt; 19&lt;br /&gt;
| &amp;lt;!-- ISO-639-1 --&amp;gt; hu&lt;br /&gt;
| &amp;lt;!-- Language  --&amp;gt; Hungarian&lt;br /&gt;
| &amp;lt;!-- Contact   --&amp;gt; Lajos Nemeséri&lt;br /&gt;
|{{progress|100.0}}&lt;br /&gt;
|{{progress|99.2}}&lt;br /&gt;
|&lt;br /&gt;
| &amp;lt;!-- Notes     --&amp;gt; {{bug|5505}}:[[Date_Handler]]&lt;br /&gt;
|-&lt;br /&gt;
| &amp;lt;!-- No --&amp;gt; 20&lt;br /&gt;
| &amp;lt;!-- ISO-639-1 --&amp;gt; is&lt;br /&gt;
| &amp;lt;!-- Language  --&amp;gt; Icelandic&lt;br /&gt;
| &amp;lt;!-- Contact   --&amp;gt; Sveinn í Felli&lt;br /&gt;
|{{progress|90.4}}&lt;br /&gt;
|{{progress|87.5}}&lt;br /&gt;
|&lt;br /&gt;
| &amp;lt;!-- Notes     --&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
| &amp;lt;!-- No --&amp;gt; 21&lt;br /&gt;
| &amp;lt;!-- ISO-639-1 --&amp;gt; it&lt;br /&gt;
| &amp;lt;!-- Language  --&amp;gt; Italian&lt;br /&gt;
| &amp;lt;!-- Contact   --&amp;gt; Luigi Toscano&lt;br /&gt;
|{{progress|95.0}}&lt;br /&gt;
|{{progress|91.2}}&lt;br /&gt;
|&lt;br /&gt;
| &amp;lt;!-- Notes     --&amp;gt;{{bug|4185}}:Kinship report (Relationships)&lt;br /&gt;
|-&lt;br /&gt;
| &amp;lt;!-- No --&amp;gt; 22&lt;br /&gt;
| &amp;lt;!-- ISO-639-1 --&amp;gt; ja&lt;br /&gt;
| &amp;lt;!-- Language  --&amp;gt; Japanese&lt;br /&gt;
| &amp;lt;!-- Contact   --&amp;gt; Keiichiro Yamamoto, Megumi Sakata&lt;br /&gt;
|{{progress|40.4}}&lt;br /&gt;
|{{progress|38.6}}&lt;br /&gt;
|[{{Code Browser}}/tree/master/po/ja.po]&lt;br /&gt;
| &amp;lt;!-- Notes     --&amp;gt; (''[https://raw.github.com/yanmar/gramps-translation-ja/master/po/ja.po github]'') / (Feature request:{{bug|3120}} support for Japanese Era calendar scheme)&lt;br /&gt;
|-&lt;br /&gt;
| &amp;lt;!-- No --&amp;gt; 23&lt;br /&gt;
| &amp;lt;!-- ISO-639-1 --&amp;gt; lt&lt;br /&gt;
| &amp;lt;!-- Language  --&amp;gt; Lithuanian&lt;br /&gt;
| &amp;lt;!-- Contact   --&amp;gt; '''[[Translating_Gramps|Translator Vacancy]]'''&lt;br /&gt;
|{{progress|98.3}}&lt;br /&gt;
|{{progress|94.4}}&lt;br /&gt;
|&lt;br /&gt;
| &amp;lt;!-- Notes     --&amp;gt;{{bug|4848}}&lt;br /&gt;
|-&lt;br /&gt;
| &amp;lt;!-- No --&amp;gt; 24&lt;br /&gt;
| &amp;lt;!-- ISO-639-1 --&amp;gt; mk&lt;br /&gt;
| &amp;lt;!-- Language  --&amp;gt; Macedonian&lt;br /&gt;
| &amp;lt;!-- Contact   --&amp;gt; '''[[Translating_Gramps|Translator Vacancy]]'''&lt;br /&gt;
|{{progress|24.9}} (not enabled)&lt;br /&gt;
|{{progress|23.8}} (not enabled)&lt;br /&gt;
|[{{Code Browser}}/tree/master/po/mk.po]&lt;br /&gt;
| &amp;lt;!-- Notes     --&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
| &amp;lt;!-- No --&amp;gt; 25&lt;br /&gt;
| &amp;lt;!-- ISO-639-1 --&amp;gt; nb&lt;br /&gt;
| &amp;lt;!-- Language  --&amp;gt; Norwegian Bokmål&lt;br /&gt;
| &amp;lt;!-- Contact   --&amp;gt; [[User:Espenbe|Espen Berg]]&lt;br /&gt;
|{{progress|99.0}}&lt;br /&gt;
|{{progress|94.9}}&lt;br /&gt;
|&lt;br /&gt;
| &amp;lt;!-- Notes     --&amp;gt; [https://github.com/gramps-project/gramps/blob/master/gramps/gen/datehandler/_datehandler.py see DateDisplay]&lt;br /&gt;
|-&lt;br /&gt;
| &amp;lt;!-- No --&amp;gt; 26&lt;br /&gt;
| &amp;lt;!-- ISO-639-1 --&amp;gt; nl&lt;br /&gt;
| &amp;lt;!-- Language  --&amp;gt; Dutch&lt;br /&gt;
| &amp;lt;!-- Contact   --&amp;gt; Jan Sparreboom&lt;br /&gt;
|{{progress|98.4}}&lt;br /&gt;
|{{progress|94.6}}&lt;br /&gt;
|&lt;br /&gt;
| &amp;lt;!-- Notes     --&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
| &amp;lt;!-- No --&amp;gt; 27&lt;br /&gt;
| &amp;lt;!-- ISO-639-1 --&amp;gt; nn&lt;br /&gt;
| &amp;lt;!-- Language  --&amp;gt; Norwegian Nynorsk&lt;br /&gt;
| &amp;lt;!-- Contact   --&amp;gt; Sigmund Lorentsen&lt;br /&gt;
|{{progress|87.8}}&lt;br /&gt;
|{{progress|94.3}}&lt;br /&gt;
|&lt;br /&gt;
| &amp;lt;!-- Notes     --&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
| &amp;lt;!-- No --&amp;gt; 28&lt;br /&gt;
| &amp;lt;!-- ISO-639-1 --&amp;gt; pl&lt;br /&gt;
| &amp;lt;!-- Language  --&amp;gt; Polish&lt;br /&gt;
| &amp;lt;!-- Contact   --&amp;gt; '''[[Translating_Gramps|Translator Vacancy]]'''&lt;br /&gt;
|{{progress|87.9}}&lt;br /&gt;
|{{progress|84.7}}&lt;br /&gt;
|&lt;br /&gt;
| &amp;lt;!-- Notes     --&amp;gt; &lt;br /&gt;
|-&lt;br /&gt;
| &amp;lt;!-- No --&amp;gt; 29&lt;br /&gt;
| &amp;lt;!-- ISO-639-1 --&amp;gt; pt_BR&lt;br /&gt;
| &amp;lt;!-- Language  --&amp;gt; Portuguese (Brazil)&lt;br /&gt;
| &amp;lt;!-- Contact   --&amp;gt; Paulo Henrique, Paiva de Moraes&lt;br /&gt;
|{{progress|98.2}}&lt;br /&gt;
|{{progress|95.4}}&lt;br /&gt;
|&lt;br /&gt;
| &amp;lt;!-- Notes     --&amp;gt;{{bug|4185}}:Kinship report (Relationships)&lt;br /&gt;
|-&lt;br /&gt;
| &amp;lt;!-- No --&amp;gt; 30&lt;br /&gt;
| &amp;lt;!-- ISO-639-1 --&amp;gt; pt_PT&lt;br /&gt;
| &amp;lt;!-- Language  --&amp;gt; Portuguese (Portugal)&lt;br /&gt;
| &amp;lt;!-- Contact   --&amp;gt; Pedro Albuquerque &lt;br /&gt;
|{{progress|99.7}}&lt;br /&gt;
|{{progress|99.1}}&lt;br /&gt;
|&lt;br /&gt;
| &amp;lt;!-- Notes     --&amp;gt;{{bug|4185}}: Kinship report (Relationships)&lt;br /&gt;
|-&lt;br /&gt;
| &amp;lt;!-- No --&amp;gt; 31&lt;br /&gt;
| &amp;lt;!-- ISO-639-1 --&amp;gt; ro&lt;br /&gt;
| &amp;lt;!-- Language  --&amp;gt; Romanian&lt;br /&gt;
| &amp;lt;!-- Contact   --&amp;gt; '''[[Translating_Gramps|Translator Vacancy]]'''&lt;br /&gt;
|{{progress|4.4}}&lt;br /&gt;
|{{progress|4.0}}&lt;br /&gt;
|[{{Code Browser}}/tree/master/po/ro.po]&lt;br /&gt;
| &amp;lt;!-- Notes     --&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
| &amp;lt;!-- No --&amp;gt; 32&lt;br /&gt;
| &amp;lt;!-- ISO-639-1 --&amp;gt; ru&lt;br /&gt;
| &amp;lt;!-- Language  --&amp;gt; Russian&lt;br /&gt;
| &amp;lt;!-- Contact   --&amp;gt; Ivan Komaritsyn&lt;br /&gt;
|{{progress|99.7}}&lt;br /&gt;
|{{progress|98.8}}&lt;br /&gt;
|&lt;br /&gt;
| &amp;lt;!-- Notes     --&amp;gt; [[Translation_into_Russian|Translation into Russian]]&lt;br /&gt;
|-&lt;br /&gt;
| &amp;lt;!-- No --&amp;gt; 33&lt;br /&gt;
| &amp;lt;!-- ISO-639-1 --&amp;gt; sk&lt;br /&gt;
| &amp;lt;!-- Language  --&amp;gt; Slovak&lt;br /&gt;
| &amp;lt;!-- Contact   --&amp;gt; '''[[Translating_Gramps|Translator Vacancy]]'''&lt;br /&gt;
|{{progress|90.9}}&lt;br /&gt;
|{{progress|91.1}}&lt;br /&gt;
|&lt;br /&gt;
| &amp;lt;!-- Notes     --&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
| &amp;lt;!-- No --&amp;gt; 34&lt;br /&gt;
| &amp;lt;!-- ISO-639-1 --&amp;gt; sl&lt;br /&gt;
| &amp;lt;!-- Language  --&amp;gt; Slovenian&lt;br /&gt;
| &amp;lt;!-- Contact   --&amp;gt; [[User:Beernarrd|Bernard Banko]]&lt;br /&gt;
|{{progress|100.0}}&lt;br /&gt;
|{{progress|87.4}}&lt;br /&gt;
|&lt;br /&gt;
| &amp;lt;!-- Notes     --&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
| &amp;lt;!-- No --&amp;gt; 35&lt;br /&gt;
| &amp;lt;!-- ISO-639-1 --&amp;gt; sq&lt;br /&gt;
| &amp;lt;!-- Language  --&amp;gt; Albanian&lt;br /&gt;
| &amp;lt;!-- Contact   --&amp;gt; '''[[Translating_Gramps|Translator Vacancy]]'''&lt;br /&gt;
|{{progress|39.4}}&lt;br /&gt;
|{{progress|37.8}}&lt;br /&gt;
|[{{Code Browser}}/tree/master/po/sq.po]&lt;br /&gt;
| &amp;lt;!-- Notes     --&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
| &amp;lt;!-- No --&amp;gt; 36&lt;br /&gt;
| &amp;lt;!-- ISO-639-1 --&amp;gt; sr&lt;br /&gt;
| &amp;lt;!-- Language  --&amp;gt; Serbian&lt;br /&gt;
| &amp;lt;!-- Contact   --&amp;gt; '''[[Translating_Gramps|Translator Vacancy]]'''&lt;br /&gt;
|{{progress|82.1}}&lt;br /&gt;
|{{progress|78.9}}&lt;br /&gt;
|[{{Code Browser}}/tree/master/po/sr.po]&lt;br /&gt;
| &amp;lt;!-- Notes     --&amp;gt; see {{bug|2375}}&lt;br /&gt;
|-&lt;br /&gt;
| &amp;lt;!-- No --&amp;gt; 37&lt;br /&gt;
| &amp;lt;!-- ISO-639-1 --&amp;gt; sr Latin&lt;br /&gt;
| &amp;lt;!-- Language  --&amp;gt; Serbian Latin&lt;br /&gt;
| &amp;lt;!-- Contact   --&amp;gt; '''[[Translating_Gramps|Translator Vacancy]]'''&lt;br /&gt;
|{{progress|2.7}}&lt;br /&gt;
|{{progress|2.3}}&lt;br /&gt;
|[{{Code Browser}}/tree/master/po/sr_Latn.po]&lt;br /&gt;
| &amp;lt;!-- Notes     --&amp;gt; see {{bug|2375}}&lt;br /&gt;
|-&lt;br /&gt;
| &amp;lt;!-- No --&amp;gt; 38&lt;br /&gt;
| &amp;lt;!-- ISO-639-1 --&amp;gt; sv&lt;br /&gt;
| &amp;lt;!-- Language  --&amp;gt; Swedish&lt;br /&gt;
| &amp;lt;!-- Contact   --&amp;gt; Pär Ekholm &lt;br /&gt;
|{{progress|100.0}}&lt;br /&gt;
|{{progress|100.0}}&lt;br /&gt;
|&lt;br /&gt;
| &amp;lt;!-- Notes     --&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
| &amp;lt;!-- No --&amp;gt; 39&lt;br /&gt;
| &amp;lt;!-- ISO-639-1 --&amp;gt; ta&lt;br /&gt;
| &amp;lt;!-- Language  --&amp;gt; Tamil&lt;br /&gt;
| &amp;lt;!-- Contact   --&amp;gt; '''[[Translating_Gramps|Translator Vacancy]]'''&lt;br /&gt;
|{{progress|6.4}}&lt;br /&gt;
|{{progress|6.0}}&lt;br /&gt;
|&lt;br /&gt;
| &amp;lt;!-- Notes     --&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
| &amp;lt;!-- No --&amp;gt; 40&lt;br /&gt;
| &amp;lt;!-- ISO-639-1 --&amp;gt; tr&lt;br /&gt;
| &amp;lt;!-- Language  --&amp;gt; Turkish&lt;br /&gt;
| &amp;lt;!-- Contact   --&amp;gt; '''[[Translating_Gramps|Translator Vacancy]]'''&lt;br /&gt;
|{{progress|27.5}}&lt;br /&gt;
|{{progress|26.2}}&lt;br /&gt;
|[{{Code Browser}}/tree/master/po/tr.po]&lt;br /&gt;
| &amp;lt;!-- Notes     --&amp;gt;{{bug|8148}}&lt;br /&gt;
|-&lt;br /&gt;
| &amp;lt;!-- No --&amp;gt; 41&lt;br /&gt;
| &amp;lt;!-- ISO-639-1 --&amp;gt; uk&lt;br /&gt;
| &amp;lt;!-- Language  --&amp;gt; Ukrainian&lt;br /&gt;
| &amp;lt;!-- Contact   --&amp;gt; [http://sourceforge.net/users/fedik/ Fedir Zinchuk]&lt;br /&gt;
|{{progress|97.3}}&lt;br /&gt;
|{{progress|94.1}}&lt;br /&gt;
|&lt;br /&gt;
| &amp;lt;!-- Notes     --&amp;gt; Relationships handler only available for 3.4 (need test on 4.0)&lt;br /&gt;
|-&lt;br /&gt;
| &amp;lt;!-- No --&amp;gt; 42&lt;br /&gt;
| &amp;lt;!-- ISO-639-1 --&amp;gt; vi&lt;br /&gt;
| &amp;lt;!-- Language  --&amp;gt; Vietnamese&lt;br /&gt;
| &amp;lt;!-- Contact   --&amp;gt; [[User:Detran|De Tran]]&lt;br /&gt;
|{{progress|98.5}}&lt;br /&gt;
|{{progress|95.7}}&lt;br /&gt;
|&lt;br /&gt;
| &amp;lt;!-- Notes     --&amp;gt; {{bug|4400}}: lunisolar calendar support ?&lt;br /&gt;
|-&lt;br /&gt;
| &amp;lt;!-- No --&amp;gt; 43&lt;br /&gt;
| &amp;lt;!-- ISO-639-1 --&amp;gt; zh_CN&lt;br /&gt;
| &amp;lt;!-- Language  --&amp;gt; Chinese (Simplified)&lt;br /&gt;
| &amp;lt;!-- Contact   --&amp;gt; '''[[Translating_Gramps|Translator Vacancy]]'''&lt;br /&gt;
|{{progress|70.5}}&lt;br /&gt;
|{{progress|67.7}}&lt;br /&gt;
|&lt;br /&gt;
| &amp;lt;!-- Notes     --&amp;gt;{{bug|4400}}: lunisolar calendar support ?&lt;br /&gt;
|-&lt;br /&gt;
| &amp;lt;!-- No --&amp;gt; 44&lt;br /&gt;
| &amp;lt;!-- ISO-639-1 --&amp;gt; zh_HK&lt;br /&gt;
| &amp;lt;!-- Language  --&amp;gt; Chinese (Hong Kong)&lt;br /&gt;
| &amp;lt;!-- Contact   --&amp;gt; '''[[Translating_Gramps|Translator Vacancy]]'''&lt;br /&gt;
|{{progress|70.5}}&lt;br /&gt;
|{{progress|67.7}}&lt;br /&gt;
|&lt;br /&gt;
| &amp;lt;!-- Notes     --&amp;gt;{{bug|4400}}: lunisolar calendar support ?&lt;br /&gt;
|-&lt;br /&gt;
| &amp;lt;!-- No --&amp;gt; 45&lt;br /&gt;
| &amp;lt;!-- ISO-639-1 --&amp;gt; zh_TW&lt;br /&gt;
| &amp;lt;!-- Language  --&amp;gt; Chinese (Traditional)&lt;br /&gt;
| &amp;lt;!-- Contact   --&amp;gt; '''[[Translating_Gramps|Translator Vacancy]]'''&lt;br /&gt;
|{{progress|70.5}}&lt;br /&gt;
|{{progress|67.7}}&lt;br /&gt;
|&lt;br /&gt;
| &amp;lt;!-- Notes     --&amp;gt;{{bug|4400}}: lunisolar calendar support ?&lt;br /&gt;
|} &lt;br /&gt;
{{-}}&lt;br /&gt;
{| class=&amp;quot;wikitable sortable&amp;quot;&lt;br /&gt;
! Custom&lt;br /&gt;
! Type&lt;br /&gt;
! &amp;lt;!-- Contact   --&amp;gt; Contact&lt;br /&gt;
! Coverage&amp;lt;br&amp;gt;Gramps 2.2.6&lt;br /&gt;
! Coverage&amp;lt;br&amp;gt;Gramps 3.1.3&lt;br /&gt;
! Coverage&amp;lt;br&amp;gt;(master)&lt;br /&gt;
! &amp;lt;!-- Notes     --&amp;gt; Notes&lt;br /&gt;
|-&lt;br /&gt;
| [http://gramps-project.org/wiki/index.php?title=Image:Animal.po.gz Animal Pedigree]&lt;br /&gt;
| [[Animal pedigree]]&lt;br /&gt;
| &amp;lt;!-- Contact   --&amp;gt; '''[[Translating_Gramps|Translator Vacancy]]'''&lt;br /&gt;
|{{progress|100}} [[File:Gramps_animal_2_2_6.po.gz]]&lt;br /&gt;
|{{progress|99}} [[File:Gramps_animal_3_1_3.po.gz]]&lt;br /&gt;
|{{progress|0}}&lt;br /&gt;
| &amp;lt;!-- Notes     --&amp;gt; English(US) sub-translation that makes using Gramps far more intuitive when dealing with animals.(Bug:{{bug|3346}})&lt;br /&gt;
|-&lt;br /&gt;
| Same gender&lt;br /&gt;
| Same gender/sex&lt;br /&gt;
| &amp;lt;!-- Contact   --&amp;gt; '''[[Translating_Gramps|Translator Vacancy]]'''&lt;br /&gt;
|align=&amp;quot;right&amp;quot;| -&lt;br /&gt;
|{{progress|100}}&lt;br /&gt;
|{{progress|0}}&lt;br /&gt;
| &amp;lt;!-- Notes     --&amp;gt; English(US) sub-translation that makes using Gramps far more intuitive when dealing with same gender family.(Bug:{{bug|3346}})&lt;br /&gt;
|} &lt;br /&gt;
{{-}}&lt;br /&gt;
&amp;lt;noinclude&amp;gt;&lt;br /&gt;
[[Category:Translators/Categories|T]][[Category:Developers/General|T]]&lt;br /&gt;
&amp;lt;/noinclude&amp;gt;&lt;/div&gt;</summary>
		<author><name>Sten</name></author>
		
	</entry>
	<entry>
		<id>https://ftp.gramps-project.org/wiki/index.php?title=Template:Gramps_translations&amp;diff=80177</id>
		<title>Template:Gramps translations</title>
		<link rel="alternate" type="text/html" href="https://ftp.gramps-project.org/wiki/index.php?title=Template:Gramps_translations&amp;diff=80177"/>
		<updated>2020-07-29T14:40:35Z</updated>

		<summary type="html">&lt;p&gt;Sten: /* INCOMPLETE_TRANSLATIONS */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&amp;lt;noinclude&amp;gt;A list of the languages in which Gramps has been translated, along with some additional information used during [[What_to_do_for_a_release|release cycles]] and contact information. &lt;br /&gt;
&lt;br /&gt;
===ALL_LINGUAS===&lt;br /&gt;
For enabling, a language code must be set in the ''ALL_LINGUAS'' section in the file:&lt;br /&gt;
* [https://github.com/gramps-project/gramps/blob/maintenance/gramps34/configure.in configure.in] in Gramps 3.x&lt;br /&gt;
* [{{Code Browser}}/tree/master/setup.py setup.py] in Gramps 4.x and greater&lt;br /&gt;
&lt;br /&gt;
[[Translating Gramps|Help translate Gramps to other languages]] or to improve existing translations.&lt;br /&gt;
&lt;br /&gt;
 # Go to the /po directory&lt;br /&gt;
 cd po&lt;br /&gt;
 &lt;br /&gt;
 # update with last template&lt;br /&gt;
 for file in *.po; do echo -n &amp;quot;${file} &amp;quot;; msgmerge --no-wrap ${file} gramps.pot -o ${file}; done&lt;br /&gt;
 &lt;br /&gt;
 # check localisation percentage&lt;br /&gt;
 for file in *.po; do echo -n &amp;quot;${file} &amp;quot;; ./check_po -s ${file} | grep &amp;quot;Localized at&amp;quot;; done&lt;br /&gt;
&lt;br /&gt;
====INCOMPLETE_TRANSLATIONS====&lt;br /&gt;
The minimum complete translation is 70% (if the translation is very close to that percentage also enable it, also keep ''en_GB'' as it is a special subtranslation of English)&lt;br /&gt;
&lt;br /&gt;
Add the locale code (if less than 70%) or remove the locale code (if greater than 70%)as required from the following ''INCOMPLETE_TRANSLATIONS'' section in the file:&lt;br /&gt;
* [https://github.com/gramps-project/gramps/blob/master/gramps/gen/utils/grampslocale.py#L119 gramps/gen/utils/grampslocale.py] in Gramps 4.x and greater&lt;br /&gt;
  INCOMPLETE_TRANSLATIONS = ('ar', 'bg', 'he', 'ja', 'sq', 'ta', 'tr')&lt;br /&gt;
&lt;br /&gt;
&amp;lt;/noinclude&amp;gt;{| class=&amp;quot;wikitable sortable&amp;quot;&lt;br /&gt;
! &amp;lt;!-- No --&amp;gt; Number&lt;br /&gt;
! &amp;lt;!-- ISO-639-1 --&amp;gt; [http://en.wikipedia.org/wiki/List_of_ISO_639-1_codes Code]&lt;br /&gt;
! &amp;lt;!-- Language  --&amp;gt; Language&lt;br /&gt;
! &amp;lt;!-- Translator   --&amp;gt; Translator &lt;br /&gt;
! Coverage&amp;lt;br&amp;gt;gramps50; 5.0.2&amp;lt;br&amp;gt;2019-08-27&lt;br /&gt;
! Coverage&amp;lt;br&amp;gt;gramps51; 5.1.2&amp;lt;br&amp;gt;2019-12-09&lt;br /&gt;
! Coverage&amp;lt;br&amp;gt;master&amp;lt;br&amp;gt;&lt;br /&gt;
! &amp;lt;!-- Notes     --&amp;gt; Notes&lt;br /&gt;
|-&lt;br /&gt;
| &amp;lt;!-- No --&amp;gt; 1&lt;br /&gt;
| &amp;lt;!-- ISO-639-1 --&amp;gt; ar&lt;br /&gt;
| &amp;lt;!-- Language  --&amp;gt; Arabic&lt;br /&gt;
| &amp;lt;!-- Contact   --&amp;gt; '''[[Translating_Gramps|Translator Vacancy]]'''&lt;br /&gt;
|{{progress|54.7}}&lt;br /&gt;
|{{progress|52.5}}&lt;br /&gt;
|[{{Code Browser}}/tree/master/po/ar.po]&lt;br /&gt;
| &amp;lt;!-- Notes     --&amp;gt; see [http://sourceforge.net/mailarchive/message.php?msg_id=13026041 mailing-list], and {{bug|6819}}: date handler&lt;br /&gt;
|-&lt;br /&gt;
| &amp;lt;!-- No --&amp;gt; 2&lt;br /&gt;
| &amp;lt;!-- ISO-639-1 --&amp;gt; bg&lt;br /&gt;
| &amp;lt;!-- Language  --&amp;gt; Bulgarian&lt;br /&gt;
| &amp;lt;!-- Contact   --&amp;gt; '''[[Translating_Gramps|Translator Vacancy]]'''&lt;br /&gt;
|{{progress|56.9}}&lt;br /&gt;
|{{progress|54.6}}&lt;br /&gt;
|&lt;br /&gt;
| &amp;lt;!-- Notes     --&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
| &amp;lt;!-- No --&amp;gt; 3&lt;br /&gt;
| &amp;lt;!-- ISO-639-1 --&amp;gt; br&lt;br /&gt;
| &amp;lt;!-- Language  --&amp;gt; Breton&lt;br /&gt;
| &amp;lt;!-- Contact   --&amp;gt; '''[[Translating_Gramps|Translator Vacancy]]'''&lt;br /&gt;
|{{progress|2.9}} (not enabled)&lt;br /&gt;
|{{progress|2.5}}&lt;br /&gt;
|[{{Code Browser}}/tree/master/po/br.po]&lt;br /&gt;
| &amp;lt;!-- Notes     --&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
| &amp;lt;!-- No --&amp;gt; 4&lt;br /&gt;
| &amp;lt;!-- ISO-639-1 --&amp;gt;  ca&lt;br /&gt;
| &amp;lt;!-- Language  --&amp;gt; Catalan&lt;br /&gt;
| &amp;lt;!-- Contact   --&amp;gt; Joan Creus&lt;br /&gt;
|{{progress|99.6}}&lt;br /&gt;
|{{progress|95.4}}&lt;br /&gt;
|&lt;br /&gt;
| &amp;lt;!-- Notes     --&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
| &amp;lt;!-- No --&amp;gt; 5&lt;br /&gt;
| &amp;lt;!-- ISO-639-1 --&amp;gt;  cs&lt;br /&gt;
| &amp;lt;!-- Language  --&amp;gt; Czech&lt;br /&gt;
| &amp;lt;!-- Contact   --&amp;gt; Zdeněk Hataš&lt;br /&gt;
|{{progress|100.0}}&lt;br /&gt;
|{{progress|98.5}}&lt;br /&gt;
| &amp;lt;!-- Notes     --&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
| &amp;lt;!-- No --&amp;gt; 6&lt;br /&gt;
| &amp;lt;!-- ISO-639-1 --&amp;gt; da&lt;br /&gt;
| &amp;lt;!-- Language  --&amp;gt; Danish&lt;br /&gt;
| &amp;lt;!-- Contact   --&amp;gt; Kaj Mikkelsen&lt;br /&gt;
|{{progress|100.0}}&lt;br /&gt;
|{{progress|95.8}}&lt;br /&gt;
|&lt;br /&gt;
| &amp;lt;!-- Notes     --&amp;gt; &lt;br /&gt;
|-&lt;br /&gt;
| &amp;lt;!-- No --&amp;gt; 7&lt;br /&gt;
| &amp;lt;!-- ISO-639-1 --&amp;gt; de&lt;br /&gt;
| &amp;lt;!-- Language  --&amp;gt; German&lt;br /&gt;
| &amp;lt;!-- Contact   --&amp;gt; [[User:Leonhaeuser|Mirko Leonhäuser]]&lt;br /&gt;
|{{progress|99.7}}&lt;br /&gt;
|{{progress|99.6}}&lt;br /&gt;
|&lt;br /&gt;
| &amp;lt;!-- Notes     --&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
| &amp;lt;!-- No --&amp;gt; 8&lt;br /&gt;
| &amp;lt;!-- ISO-639-1 --&amp;gt; el&lt;br /&gt;
| &amp;lt;!-- Language  --&amp;gt; Greek&lt;br /&gt;
| &amp;lt;!-- Contact   --&amp;gt; Zissis Papadopoulos&lt;br /&gt;
|{{progress|81.7}}&lt;br /&gt;
|{{progress|78.4}}&lt;br /&gt;
|&lt;br /&gt;
| &amp;lt;!-- Notes     --&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
| &amp;lt;!-- No --&amp;gt; 9&lt;br /&gt;
! &amp;lt;!-- ISO-639-1 --&amp;gt; en&lt;br /&gt;
| &amp;lt;!-- Language  --&amp;gt; [http://en.wikipedia.org/wiki/English_language English]&lt;br /&gt;
| &amp;lt;!-- Contact   --&amp;gt; N/A  ('''Default Language''')&lt;br /&gt;
|{{progress|100.0}}&lt;br /&gt;
|{{progress|100.0}}&lt;br /&gt;
|&lt;br /&gt;
| &amp;lt;!-- Notes     --&amp;gt;[http://gramps.1791082.n4.nabble.com/English-or-American-spelling-td4623552.html American English]&lt;br /&gt;
|-&lt;br /&gt;
| &amp;lt;!-- No --&amp;gt; 10&lt;br /&gt;
| &amp;lt;!-- ISO-639-1 --&amp;gt; en_GB&lt;br /&gt;
| &amp;lt;!-- Language  --&amp;gt; [http://en.wikipedia.org/wiki/British_English English (British)]&lt;br /&gt;
| &amp;lt;!-- Contact   --&amp;gt; [[User:Nick_H|Nick Hall]]&lt;br /&gt;
|{{progress|2.5}}&lt;br /&gt;
|{{progress|2.1}}&lt;br /&gt;
|&lt;br /&gt;
| &amp;lt;!-- Notes     --&amp;gt;[http://gramps.1791082.n4.nabble.com/English-or-American-spelling-td4623552.html#a4626565 English (British)][{{Code Browser}}/tree/master/po/en_GB.po en_GB.po]&lt;br /&gt;
variation ~ 5%&lt;br /&gt;
|-&lt;br /&gt;
| &amp;lt;!-- No --&amp;gt; 11&lt;br /&gt;
| &amp;lt;!-- ISO-639-1 --&amp;gt; en_AU&lt;br /&gt;
| &amp;lt;!-- Language  --&amp;gt; [http://en.wikipedia.org/wiki/Australian_English English (Australian)]&lt;br /&gt;
| &amp;lt;!-- Contact   --&amp;gt; '''[[Translating_Gramps|Translator Vacancy]]'''&lt;br /&gt;
|{{progress|0}}&lt;br /&gt;
|{{progress|0}}&lt;br /&gt;
|&lt;br /&gt;
| &amp;lt;!-- Notes     --&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
| &amp;lt;!-- No --&amp;gt; 12&lt;br /&gt;
| &amp;lt;!-- ISO-639-1 --&amp;gt; eo&lt;br /&gt;
| &amp;lt;!-- Language  --&amp;gt; Esperanto&lt;br /&gt;
| &amp;lt;!-- Contact   --&amp;gt; Pier Luigi Cinquantini&lt;br /&gt;
|{{progress|99.3}}&lt;br /&gt;
|{{progress|93.7}}&lt;br /&gt;
|&lt;br /&gt;
| &amp;lt;!-- Notes     --&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
| &amp;lt;!-- No --&amp;gt; 13&lt;br /&gt;
| &amp;lt;!-- ISO-639-1 --&amp;gt; es&lt;br /&gt;
| &amp;lt;!-- Language  --&amp;gt; Spanish&lt;br /&gt;
| &amp;lt;!-- Contact   --&amp;gt; '''[[Translating_Gramps|Translator Vacancy]]'''&lt;br /&gt;
|{{progress|82.6}}&lt;br /&gt;
|{{progress|79.4}}&lt;br /&gt;
|&lt;br /&gt;
| &amp;lt;!-- Notes     --&amp;gt;{{bug|4185}}, {{bug|6645}}:Kinship report (Relationships)&lt;br /&gt;
|-&lt;br /&gt;
| &amp;lt;!-- No --&amp;gt; 14&lt;br /&gt;
| &amp;lt;!-- ISO-639-1 --&amp;gt; fi&lt;br /&gt;
| &amp;lt;!-- Language  --&amp;gt; Finnish&lt;br /&gt;
| &amp;lt;!-- Contact   --&amp;gt; Matti Niemelä &lt;br /&gt;
|{{progress|100.0}}&lt;br /&gt;
|{{progress|99.8}}&lt;br /&gt;
|[{{Code Browser}}/tree/master/po/fi.po]&lt;br /&gt;
| &amp;lt;!-- Notes     --&amp;gt; {{bug|2356}}: genitive form for names, [[Translation_into_Finnish|Translation into Finnish]]&lt;br /&gt;
|-&lt;br /&gt;
| &amp;lt;!-- No --&amp;gt; 15&lt;br /&gt;
| &amp;lt;!-- ISO-639-1 --&amp;gt; fr&lt;br /&gt;
| &amp;lt;!-- Language  --&amp;gt; French&lt;br /&gt;
| &amp;lt;!-- Contact   --&amp;gt; '''[[Translating_Gramps|Translator Vacancy]]'''&lt;br /&gt;
|{{progress|98.3}}&lt;br /&gt;
|{{progress|97.3}}&lt;br /&gt;
|&lt;br /&gt;
| &amp;lt;!-- Notes     --&amp;gt; [[Translation_into_French|Translation into French]]&lt;br /&gt;
|-&lt;br /&gt;
| &amp;lt;!-- No --&amp;gt; 16&lt;br /&gt;
| &amp;lt;!-- ISO-639-1 --&amp;gt; ga&lt;br /&gt;
| &amp;lt;!-- Language  --&amp;gt; Irish&lt;br /&gt;
| &amp;lt;!-- Contact   --&amp;gt; '''[[Translating_Gramps|Translator Vacancy]]'''&lt;br /&gt;
|{{progress|0.3}} (not enabled)&lt;br /&gt;
|{{progress|0.07}} (not enabled)&lt;br /&gt;
| [{{Code Browser}}/tree/master/po/ga.po]&lt;br /&gt;
| &amp;lt;!-- Notes     --&amp;gt; [http://sourceforge.net/mailarchive/message.php?msg_id=26863727 mailing-list]&lt;br /&gt;
|-&lt;br /&gt;
| &amp;lt;!-- No --&amp;gt; 17&lt;br /&gt;
| &amp;lt;!-- ISO-639-1 --&amp;gt; he&lt;br /&gt;
| &amp;lt;!-- Language  --&amp;gt; Hebrew&lt;br /&gt;
| &amp;lt;!-- Contact   --&amp;gt; Avi Markovitz&lt;br /&gt;
|{{progress|42.4}}&lt;br /&gt;
|{{progress|99.7}}&lt;br /&gt;
|[{{Code Browser}}/tree/master/po/he.po]&lt;br /&gt;
| &amp;lt;!-- Notes     --&amp;gt; {{bug|2962}}&lt;br /&gt;
|-&lt;br /&gt;
| &amp;lt;!-- No --&amp;gt; 18&lt;br /&gt;
| &amp;lt;!-- ISO-639-1 --&amp;gt; hr&lt;br /&gt;
| &amp;lt;!-- Language  --&amp;gt; Croatian&lt;br /&gt;
| &amp;lt;!-- Contact   --&amp;gt; '''[[Translating_Gramps|Translator Vacancy]]'''&lt;br /&gt;
|{{progress|100.0}}&lt;br /&gt;
|{{progress|99.9}}&lt;br /&gt;
|&lt;br /&gt;
| &amp;lt;!-- Notes     --&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
| &amp;lt;!-- No --&amp;gt; 19&lt;br /&gt;
| &amp;lt;!-- ISO-639-1 --&amp;gt; hu&lt;br /&gt;
| &amp;lt;!-- Language  --&amp;gt; Hungarian&lt;br /&gt;
| &amp;lt;!-- Contact   --&amp;gt; Lajos Nemeséri&lt;br /&gt;
|{{progress|100.0}}&lt;br /&gt;
|{{progress|99.2}}&lt;br /&gt;
|&lt;br /&gt;
| &amp;lt;!-- Notes     --&amp;gt; {{bug|5505}}:[[Date_Handler]]&lt;br /&gt;
|-&lt;br /&gt;
| &amp;lt;!-- No --&amp;gt; 20&lt;br /&gt;
| &amp;lt;!-- ISO-639-1 --&amp;gt; is&lt;br /&gt;
| &amp;lt;!-- Language  --&amp;gt; Icelandic&lt;br /&gt;
| &amp;lt;!-- Contact   --&amp;gt; Sveinn í Felli&lt;br /&gt;
|{{progress|90.4}}&lt;br /&gt;
|{{progress|87.5}}&lt;br /&gt;
|&lt;br /&gt;
| &amp;lt;!-- Notes     --&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
| &amp;lt;!-- No --&amp;gt; 21&lt;br /&gt;
| &amp;lt;!-- ISO-639-1 --&amp;gt; it&lt;br /&gt;
| &amp;lt;!-- Language  --&amp;gt; Italian&lt;br /&gt;
| &amp;lt;!-- Contact   --&amp;gt; Luigi Toscano&lt;br /&gt;
|{{progress|95.0}}&lt;br /&gt;
|{{progress|91.2}}&lt;br /&gt;
|&lt;br /&gt;
| &amp;lt;!-- Notes     --&amp;gt;{{bug|4185}}:Kinship report (Relationships)&lt;br /&gt;
|-&lt;br /&gt;
| &amp;lt;!-- No --&amp;gt; 22&lt;br /&gt;
| &amp;lt;!-- ISO-639-1 --&amp;gt; ja&lt;br /&gt;
| &amp;lt;!-- Language  --&amp;gt; Japanese&lt;br /&gt;
| &amp;lt;!-- Contact   --&amp;gt; Keiichiro Yamamoto, Megumi Sakata&lt;br /&gt;
|{{progress|40.4}}&lt;br /&gt;
|{{progress|38.6}}&lt;br /&gt;
|[{{Code Browser}}/tree/master/po/ja.po]&lt;br /&gt;
| &amp;lt;!-- Notes     --&amp;gt; (''[https://raw.github.com/yanmar/gramps-translation-ja/master/po/ja.po github]'') / (Feature request:{{bug|3120}} support for Japanese Era calendar scheme)&lt;br /&gt;
|-&lt;br /&gt;
| &amp;lt;!-- No --&amp;gt; 23&lt;br /&gt;
| &amp;lt;!-- ISO-639-1 --&amp;gt; lt&lt;br /&gt;
| &amp;lt;!-- Language  --&amp;gt; Lithuanian&lt;br /&gt;
| &amp;lt;!-- Contact   --&amp;gt; '''[[Translating_Gramps|Translator Vacancy]]'''&lt;br /&gt;
|{{progress|98.3}}&lt;br /&gt;
|{{progress|94.4}}&lt;br /&gt;
|&lt;br /&gt;
| &amp;lt;!-- Notes     --&amp;gt;{{bug|4848}}&lt;br /&gt;
|-&lt;br /&gt;
| &amp;lt;!-- No --&amp;gt; 24&lt;br /&gt;
| &amp;lt;!-- ISO-639-1 --&amp;gt; mk&lt;br /&gt;
| &amp;lt;!-- Language  --&amp;gt; Macedonian&lt;br /&gt;
| &amp;lt;!-- Contact   --&amp;gt; '''[[Translating_Gramps|Translator Vacancy]]'''&lt;br /&gt;
|{{progress|24.9}} (not enabled)&lt;br /&gt;
|{{progress|23.8}} (not enabled)&lt;br /&gt;
|[{{Code Browser}}/tree/master/po/mk.po]&lt;br /&gt;
| &amp;lt;!-- Notes     --&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
| &amp;lt;!-- No --&amp;gt; 25&lt;br /&gt;
| &amp;lt;!-- ISO-639-1 --&amp;gt; nb&lt;br /&gt;
| &amp;lt;!-- Language  --&amp;gt; Norwegian Bokmål&lt;br /&gt;
| &amp;lt;!-- Contact   --&amp;gt; [[User:Espenbe|Espen Berg]]&lt;br /&gt;
|{{progress|99.0}}&lt;br /&gt;
|{{progress|94.9}}&lt;br /&gt;
|&lt;br /&gt;
| &amp;lt;!-- Notes     --&amp;gt; [https://github.com/gramps-project/gramps/blob/master/gramps/gen/datehandler/_datehandler.py see DateDisplay]&lt;br /&gt;
|-&lt;br /&gt;
| &amp;lt;!-- No --&amp;gt; 26&lt;br /&gt;
| &amp;lt;!-- ISO-639-1 --&amp;gt; nl&lt;br /&gt;
| &amp;lt;!-- Language  --&amp;gt; Dutch&lt;br /&gt;
| &amp;lt;!-- Contact   --&amp;gt; Jan Sparreboom&lt;br /&gt;
|{{progress|98.4}}&lt;br /&gt;
|{{progress|94.6}}&lt;br /&gt;
|&lt;br /&gt;
| &amp;lt;!-- Notes     --&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
| &amp;lt;!-- No --&amp;gt; 27&lt;br /&gt;
| &amp;lt;!-- ISO-639-1 --&amp;gt; nn&lt;br /&gt;
| &amp;lt;!-- Language  --&amp;gt; Norwegian Nynorsk&lt;br /&gt;
| &amp;lt;!-- Contact   --&amp;gt; Sigmund Lorentsen&lt;br /&gt;
|{{progress|87.8}}&lt;br /&gt;
|{{progress|94.3}}&lt;br /&gt;
|&lt;br /&gt;
| &amp;lt;!-- Notes     --&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
| &amp;lt;!-- No --&amp;gt; 28&lt;br /&gt;
| &amp;lt;!-- ISO-639-1 --&amp;gt; pl&lt;br /&gt;
| &amp;lt;!-- Language  --&amp;gt; Polish&lt;br /&gt;
| &amp;lt;!-- Contact   --&amp;gt; '''[[Translating_Gramps|Translator Vacancy]]'''&lt;br /&gt;
|{{progress|87.9}}&lt;br /&gt;
|{{progress|84.7}}&lt;br /&gt;
|&lt;br /&gt;
| &amp;lt;!-- Notes     --&amp;gt; &lt;br /&gt;
|-&lt;br /&gt;
| &amp;lt;!-- No --&amp;gt; 29&lt;br /&gt;
| &amp;lt;!-- ISO-639-1 --&amp;gt; pt_BR&lt;br /&gt;
| &amp;lt;!-- Language  --&amp;gt; Portuguese (Brazil)&lt;br /&gt;
| &amp;lt;!-- Contact   --&amp;gt; Paulo Henrique, Paiva de Moraes&lt;br /&gt;
|{{progress|98.2}}&lt;br /&gt;
|{{progress|95.4}}&lt;br /&gt;
|&lt;br /&gt;
| &amp;lt;!-- Notes     --&amp;gt;{{bug|4185}}:Kinship report (Relationships)&lt;br /&gt;
|-&lt;br /&gt;
| &amp;lt;!-- No --&amp;gt; 30&lt;br /&gt;
| &amp;lt;!-- ISO-639-1 --&amp;gt; pt_PT&lt;br /&gt;
| &amp;lt;!-- Language  --&amp;gt; Portuguese (Portugal)&lt;br /&gt;
| &amp;lt;!-- Contact   --&amp;gt; Pedro Albuquerque &lt;br /&gt;
|{{progress|99.7}}&lt;br /&gt;
|{{progress|99.1}}&lt;br /&gt;
|&lt;br /&gt;
| &amp;lt;!-- Notes     --&amp;gt;{{bug|4185}}: Kinship report (Relationships)&lt;br /&gt;
|-&lt;br /&gt;
| &amp;lt;!-- No --&amp;gt; 31&lt;br /&gt;
| &amp;lt;!-- ISO-639-1 --&amp;gt; ro&lt;br /&gt;
| &amp;lt;!-- Language  --&amp;gt; Romanian&lt;br /&gt;
| &amp;lt;!-- Contact   --&amp;gt; '''[[Translating_Gramps|Translator Vacancy]]'''&lt;br /&gt;
|{{progress|4.4}}&lt;br /&gt;
|{{progress|4.0}}&lt;br /&gt;
|[{{Code Browser}}/tree/master/po/ro.po]&lt;br /&gt;
| &amp;lt;!-- Notes     --&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
| &amp;lt;!-- No --&amp;gt; 32&lt;br /&gt;
| &amp;lt;!-- ISO-639-1 --&amp;gt; ru&lt;br /&gt;
| &amp;lt;!-- Language  --&amp;gt; Russian&lt;br /&gt;
| &amp;lt;!-- Contact   --&amp;gt; Ivan Komaritsyn&lt;br /&gt;
|{{progress|99.7}}&lt;br /&gt;
|{{progress|98.8}}&lt;br /&gt;
|&lt;br /&gt;
| &amp;lt;!-- Notes     --&amp;gt; [[Translation_into_Russian|Translation into Russian]]&lt;br /&gt;
|-&lt;br /&gt;
| &amp;lt;!-- No --&amp;gt; 33&lt;br /&gt;
| &amp;lt;!-- ISO-639-1 --&amp;gt; sk&lt;br /&gt;
| &amp;lt;!-- Language  --&amp;gt; Slovak&lt;br /&gt;
| &amp;lt;!-- Contact   --&amp;gt; '''[[Translating_Gramps|Translator Vacancy]]'''&lt;br /&gt;
|{{progress|90.9}}&lt;br /&gt;
|{{progress|91.1}}&lt;br /&gt;
|&lt;br /&gt;
| &amp;lt;!-- Notes     --&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
| &amp;lt;!-- No --&amp;gt; 34&lt;br /&gt;
| &amp;lt;!-- ISO-639-1 --&amp;gt; sl&lt;br /&gt;
| &amp;lt;!-- Language  --&amp;gt; Slovenian&lt;br /&gt;
| &amp;lt;!-- Contact   --&amp;gt; [[User:Beernarrd|Bernard Banko]]&lt;br /&gt;
|{{progress|100.0}}&lt;br /&gt;
|{{progress|87.4}}&lt;br /&gt;
|&lt;br /&gt;
| &amp;lt;!-- Notes     --&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
| &amp;lt;!-- No --&amp;gt; 35&lt;br /&gt;
| &amp;lt;!-- ISO-639-1 --&amp;gt; sq&lt;br /&gt;
| &amp;lt;!-- Language  --&amp;gt; Albanian&lt;br /&gt;
| &amp;lt;!-- Contact   --&amp;gt; '''[[Translating_Gramps|Translator Vacancy]]'''&lt;br /&gt;
|{{progress|39.4}}&lt;br /&gt;
|{{progress|37.8}}&lt;br /&gt;
|[{{Code Browser}}/tree/master/po/sq.po]&lt;br /&gt;
| &amp;lt;!-- Notes     --&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
| &amp;lt;!-- No --&amp;gt; 36&lt;br /&gt;
| &amp;lt;!-- ISO-639-1 --&amp;gt; sr&lt;br /&gt;
| &amp;lt;!-- Language  --&amp;gt; Serbian&lt;br /&gt;
| &amp;lt;!-- Contact   --&amp;gt; '''[[Translating_Gramps|Translator Vacancy]]'''&lt;br /&gt;
|{{progress|82.1}}&lt;br /&gt;
|{{progress|78.9}}&lt;br /&gt;
|[{{Code Browser}}/tree/master/po/sr.po]&lt;br /&gt;
| &amp;lt;!-- Notes     --&amp;gt; see {{bug|2375}}&lt;br /&gt;
|-&lt;br /&gt;
| &amp;lt;!-- No --&amp;gt; 37&lt;br /&gt;
| &amp;lt;!-- ISO-639-1 --&amp;gt; sr Latin&lt;br /&gt;
| &amp;lt;!-- Language  --&amp;gt; Serbian Latin&lt;br /&gt;
| &amp;lt;!-- Contact   --&amp;gt; '''[[Translating_Gramps|Translator Vacancy]]'''&lt;br /&gt;
|{{progress|2.7}}&lt;br /&gt;
|{{progress|2.3}}&lt;br /&gt;
|[{{Code Browser}}/tree/master/po/sr_Latn.po]&lt;br /&gt;
| &amp;lt;!-- Notes     --&amp;gt; see {{bug|2375}}&lt;br /&gt;
|-&lt;br /&gt;
| &amp;lt;!-- No --&amp;gt; 38&lt;br /&gt;
| &amp;lt;!-- ISO-639-1 --&amp;gt; sv&lt;br /&gt;
| &amp;lt;!-- Language  --&amp;gt; Swedish&lt;br /&gt;
| &amp;lt;!-- Contact   --&amp;gt; Pär Ekholm &lt;br /&gt;
|{{progress|100.0}}&lt;br /&gt;
|{{progress|100.0}}&lt;br /&gt;
|&lt;br /&gt;
| &amp;lt;!-- Notes     --&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
| &amp;lt;!-- No --&amp;gt; 39&lt;br /&gt;
| &amp;lt;!-- ISO-639-1 --&amp;gt; ta&lt;br /&gt;
| &amp;lt;!-- Language  --&amp;gt; Tamil&lt;br /&gt;
| &amp;lt;!-- Contact   --&amp;gt; '''[[Translating_Gramps|Translator Vacancy]]'''&lt;br /&gt;
|{{progress|6.4}}&lt;br /&gt;
|{{progress|6.0}}&lt;br /&gt;
|&lt;br /&gt;
| &amp;lt;!-- Notes     --&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
| &amp;lt;!-- No --&amp;gt; 40&lt;br /&gt;
| &amp;lt;!-- ISO-639-1 --&amp;gt; tr&lt;br /&gt;
| &amp;lt;!-- Language  --&amp;gt; Turkish&lt;br /&gt;
| &amp;lt;!-- Contact   --&amp;gt; '''[[Translating_Gramps|Translator Vacancy]]'''&lt;br /&gt;
|{{progress|27.5}}&lt;br /&gt;
|{{progress|26.2}}&lt;br /&gt;
|[{{Code Browser}}/tree/master/po/tr.po]&lt;br /&gt;
| &amp;lt;!-- Notes     --&amp;gt;{{bug|8148}}&lt;br /&gt;
|-&lt;br /&gt;
| &amp;lt;!-- No --&amp;gt; 41&lt;br /&gt;
| &amp;lt;!-- ISO-639-1 --&amp;gt; uk&lt;br /&gt;
| &amp;lt;!-- Language  --&amp;gt; Ukrainian&lt;br /&gt;
| &amp;lt;!-- Contact   --&amp;gt; [http://sourceforge.net/users/fedik/ Fedir Zinchuk]&lt;br /&gt;
|{{progress|97.3}}&lt;br /&gt;
|{{progress|94.1}}&lt;br /&gt;
|&lt;br /&gt;
| &amp;lt;!-- Notes     --&amp;gt; Relationships handler only available for 3.4 (need test on 4.0)&lt;br /&gt;
|-&lt;br /&gt;
| &amp;lt;!-- No --&amp;gt; 42&lt;br /&gt;
| &amp;lt;!-- ISO-639-1 --&amp;gt; vi&lt;br /&gt;
| &amp;lt;!-- Language  --&amp;gt; Vietnamese&lt;br /&gt;
| &amp;lt;!-- Contact   --&amp;gt; [[User:Detran|De Tran]]&lt;br /&gt;
|{{progress|98.5}}&lt;br /&gt;
|{{progress|95.7}}&lt;br /&gt;
|&lt;br /&gt;
| &amp;lt;!-- Notes     --&amp;gt; {{bug|4400}}: lunisolar calendar support ?&lt;br /&gt;
|-&lt;br /&gt;
| &amp;lt;!-- No --&amp;gt; 43&lt;br /&gt;
| &amp;lt;!-- ISO-639-1 --&amp;gt; zh_CN&lt;br /&gt;
| &amp;lt;!-- Language  --&amp;gt; Chinese&lt;br /&gt;
| &amp;lt;!-- Contact   --&amp;gt; '''[[Translating_Gramps|Translator Vacancy]]'''&lt;br /&gt;
|{{progress|70.5}}&lt;br /&gt;
|{{progress|67.7}}&lt;br /&gt;
|&lt;br /&gt;
| &amp;lt;!-- Notes     --&amp;gt;{{bug|4400}}: lunisolar calendar support ?&lt;br /&gt;
|-&lt;br /&gt;
| &amp;lt;!-- No --&amp;gt; 44&lt;br /&gt;
| &amp;lt;!-- ISO-639-1 --&amp;gt; zh_HK&lt;br /&gt;
| &amp;lt;!-- Language  --&amp;gt; Chinese&lt;br /&gt;
| &amp;lt;!-- Contact   --&amp;gt; '''[[Translating_Gramps|Translator Vacancy]]'''&lt;br /&gt;
|{{progress|70.5}}&lt;br /&gt;
|{{progress|67.7}}&lt;br /&gt;
|&lt;br /&gt;
| &amp;lt;!-- Notes     --&amp;gt;{{bug|4400}}: lunisolar calendar support ?&lt;br /&gt;
|-&lt;br /&gt;
| &amp;lt;!-- No --&amp;gt; 45&lt;br /&gt;
| &amp;lt;!-- ISO-639-1 --&amp;gt; zh_TW&lt;br /&gt;
| &amp;lt;!-- Language  --&amp;gt; Chinese&lt;br /&gt;
| &amp;lt;!-- Contact   --&amp;gt; '''[[Translating_Gramps|Translator Vacancy]]'''&lt;br /&gt;
|{{progress|70.5}}&lt;br /&gt;
|{{progress|67.7}}&lt;br /&gt;
|&lt;br /&gt;
| &amp;lt;!-- Notes     --&amp;gt;{{bug|4400}}: lunisolar calendar support ?&lt;br /&gt;
|} &lt;br /&gt;
{{-}}&lt;br /&gt;
{| class=&amp;quot;wikitable sortable&amp;quot;&lt;br /&gt;
! Custom&lt;br /&gt;
! Type&lt;br /&gt;
! &amp;lt;!-- Contact   --&amp;gt; Contact&lt;br /&gt;
! Coverage&amp;lt;br&amp;gt;Gramps 2.2.6&lt;br /&gt;
! Coverage&amp;lt;br&amp;gt;Gramps 3.1.3&lt;br /&gt;
! Coverage&amp;lt;br&amp;gt;(master)&lt;br /&gt;
! &amp;lt;!-- Notes     --&amp;gt; Notes&lt;br /&gt;
|-&lt;br /&gt;
| [http://gramps-project.org/wiki/index.php?title=Image:Animal.po.gz Animal Pedigree]&lt;br /&gt;
| [[Animal pedigree]]&lt;br /&gt;
| &amp;lt;!-- Contact   --&amp;gt; '''[[Translating_Gramps|Translator Vacancy]]'''&lt;br /&gt;
|{{progress|100}} [[File:Gramps_animal_2_2_6.po.gz]]&lt;br /&gt;
|{{progress|99}} [[File:Gramps_animal_3_1_3.po.gz]]&lt;br /&gt;
|{{progress|0}}&lt;br /&gt;
| &amp;lt;!-- Notes     --&amp;gt; English(US) sub-translation that makes using Gramps far more intuitive when dealing with animals.(Bug:{{bug|3346}})&lt;br /&gt;
|-&lt;br /&gt;
| Same gender&lt;br /&gt;
| Same gender/sex&lt;br /&gt;
| &amp;lt;!-- Contact   --&amp;gt; '''[[Translating_Gramps|Translator Vacancy]]'''&lt;br /&gt;
|align=&amp;quot;right&amp;quot;| -&lt;br /&gt;
|{{progress|100}}&lt;br /&gt;
|{{progress|0}}&lt;br /&gt;
| &amp;lt;!-- Notes     --&amp;gt; English(US) sub-translation that makes using Gramps far more intuitive when dealing with same gender family.(Bug:{{bug|3346}})&lt;br /&gt;
|} &lt;br /&gt;
{{-}}&lt;br /&gt;
&amp;lt;noinclude&amp;gt;&lt;br /&gt;
[[Category:Translators/Categories|T]][[Category:Developers/General|T]]&lt;br /&gt;
&amp;lt;/noinclude&amp;gt;&lt;/div&gt;</summary>
		<author><name>Sten</name></author>
		
	</entry>
	<entry>
		<id>https://ftp.gramps-project.org/wiki/index.php?title=Template:Gramps_translations&amp;diff=80176</id>
		<title>Template:Gramps translations</title>
		<link rel="alternate" type="text/html" href="https://ftp.gramps-project.org/wiki/index.php?title=Template:Gramps_translations&amp;diff=80176"/>
		<updated>2020-07-29T14:38:43Z</updated>

		<summary type="html">&lt;p&gt;Sten: /*Add Number of Rows*/&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&amp;lt;noinclude&amp;gt;A list of the languages in which Gramps has been translated, along with some additional information used during [[What_to_do_for_a_release|release cycles]] and contact information. &lt;br /&gt;
&lt;br /&gt;
===ALL_LINGUAS===&lt;br /&gt;
For enabling, a language code must be set in the ''ALL_LINGUAS'' section in the file:&lt;br /&gt;
* [https://github.com/gramps-project/gramps/blob/maintenance/gramps34/configure.in configure.in] in Gramps 3.x&lt;br /&gt;
* [{{Code Browser}}/tree/master/setup.py setup.py] in Gramps 4.x and greater&lt;br /&gt;
&lt;br /&gt;
[[Translating Gramps|Help translate Gramps to other languages]] or to improve existing translations.&lt;br /&gt;
&lt;br /&gt;
 # Go to the /po directory&lt;br /&gt;
 cd po&lt;br /&gt;
 &lt;br /&gt;
 # update with last template&lt;br /&gt;
 for file in *.po; do echo -n &amp;quot;${file} &amp;quot;; msgmerge --no-wrap ${file} gramps.pot -o ${file}; done&lt;br /&gt;
 &lt;br /&gt;
 # check localisation percentage&lt;br /&gt;
 for file in *.po; do echo -n &amp;quot;${file} &amp;quot;; ./check_po -s ${file} | grep &amp;quot;Localized at&amp;quot;; done&lt;br /&gt;
&lt;br /&gt;
====INCOMPLETE_TRANSLATIONS====&lt;br /&gt;
The minimum complete translation is 70% (if the translation is very close to that percentage also enable it, also keep ''en_GB'' as it is a special subtranslation of English)&lt;br /&gt;
&lt;br /&gt;
Add the locale code (if less than 70%) or remove the locale code (if greater than 70%)as required from the following ''INCOMPLETE_TRANSLATIONS'' section in the file:&lt;br /&gt;
* [https://github.com/gramps-project/gramps/blob/master/gramps/gen/utils/grampslocale.py#L119 gramps/gen/utils/grampslocale.py] in Gramps 4.x and greater&lt;br /&gt;
  INCOMPLETE_TRANSLATIONS = ('ar', 'bg', 'he', 'ja', 'sq', 'ta', 'tr')&lt;br /&gt;
&lt;br /&gt;
&amp;lt;/noinclude&amp;gt;{| class=&amp;quot;wikitable sortable&amp;quot;&lt;br /&gt;
! &amp;lt;!-- No --&amp;gt; Number&lt;br /&gt;
! &amp;lt;!-- ISO-639-1 --&amp;gt; [http://en.wikipedia.org/wiki/List_of_ISO_639-1_codes Code]&lt;br /&gt;
! &amp;lt;!-- Language  --&amp;gt; Language&lt;br /&gt;
! &amp;lt;!-- Translator   --&amp;gt; Translator &lt;br /&gt;
! Coverage&amp;lt;br&amp;gt;gramps50; 5.0.2&amp;lt;br&amp;gt;2019-08-27&lt;br /&gt;
! Coverage&amp;lt;br&amp;gt;gramps51; 5.1.2&amp;lt;br&amp;gt;2019-12-09&lt;br /&gt;
! Coverage&amp;lt;br&amp;gt;master&amp;lt;br&amp;gt;&lt;br /&gt;
! &amp;lt;!-- Notes     --&amp;gt; Notes&lt;br /&gt;
|-&lt;br /&gt;
| &amp;lt;!-- No --&amp;gt; 1&lt;br /&gt;
| &amp;lt;!-- ISO-639-1 --&amp;gt; ar&lt;br /&gt;
| &amp;lt;!-- Language  --&amp;gt; Arabic&lt;br /&gt;
| &amp;lt;!-- Contact   --&amp;gt; '''[[Translating_Gramps|Translator Vacancy]]'''&lt;br /&gt;
|{{progress|54.7}}&lt;br /&gt;
|{{progress|52.5}}&lt;br /&gt;
|[{{Code Browser}}/tree/master/po/ar.po]&lt;br /&gt;
| &amp;lt;!-- Notes     --&amp;gt; see [http://sourceforge.net/mailarchive/message.php?msg_id=13026041 mailing-list], and {{bug|6819}}: date handler&lt;br /&gt;
|-&lt;br /&gt;
| &amp;lt;!-- No --&amp;gt; 2&lt;br /&gt;
| &amp;lt;!-- ISO-639-1 --&amp;gt; bg&lt;br /&gt;
| &amp;lt;!-- Language  --&amp;gt; Bulgarian&lt;br /&gt;
| &amp;lt;!-- Contact   --&amp;gt; '''[[Translating_Gramps|Translator Vacancy]]'''&lt;br /&gt;
|{{progress|56.9}}&lt;br /&gt;
|{{progress|54.6}}&lt;br /&gt;
|&lt;br /&gt;
| &amp;lt;!-- Notes     --&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
| &amp;lt;!-- No --&amp;gt; 3&lt;br /&gt;
| &amp;lt;!-- ISO-639-1 --&amp;gt; br&lt;br /&gt;
| &amp;lt;!-- Language  --&amp;gt; Breton&lt;br /&gt;
| &amp;lt;!-- Contact   --&amp;gt; '''[[Translating_Gramps|Translator Vacancy]]'''&lt;br /&gt;
|{{progress|2.9}} (not enabled)&lt;br /&gt;
|{{progress|2.5}}&lt;br /&gt;
|[{{Code Browser}}/tree/master/po/br.po]&lt;br /&gt;
| &amp;lt;!-- Notes     --&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
| &amp;lt;!-- No --&amp;gt; 4&lt;br /&gt;
| &amp;lt;!-- ISO-639-1 --&amp;gt;  ca&lt;br /&gt;
| &amp;lt;!-- Language  --&amp;gt; Catalan&lt;br /&gt;
| &amp;lt;!-- Contact   --&amp;gt; Joan Creus&lt;br /&gt;
|{{progress|99.6}}&lt;br /&gt;
|{{progress|95.4}}&lt;br /&gt;
|&lt;br /&gt;
| &amp;lt;!-- Notes     --&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
| &amp;lt;!-- No --&amp;gt; 5&lt;br /&gt;
| &amp;lt;!-- ISO-639-1 --&amp;gt;  cs&lt;br /&gt;
| &amp;lt;!-- Language  --&amp;gt; Czech&lt;br /&gt;
| &amp;lt;!-- Contact   --&amp;gt; Zdeněk Hataš&lt;br /&gt;
|{{progress|100.0}}&lt;br /&gt;
|{{progress|98.5}}&lt;br /&gt;
| &amp;lt;!-- Notes     --&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
| &amp;lt;!-- No --&amp;gt; 6&lt;br /&gt;
| &amp;lt;!-- ISO-639-1 --&amp;gt; da&lt;br /&gt;
| &amp;lt;!-- Language  --&amp;gt; Danish&lt;br /&gt;
| &amp;lt;!-- Contact   --&amp;gt; Kaj Mikkelsen&lt;br /&gt;
|{{progress|100.0}}&lt;br /&gt;
|{{progress|95.8}}&lt;br /&gt;
|&lt;br /&gt;
| &amp;lt;!-- Notes     --&amp;gt; &lt;br /&gt;
|-&lt;br /&gt;
| &amp;lt;!-- No --&amp;gt; 7&lt;br /&gt;
| &amp;lt;!-- ISO-639-1 --&amp;gt; de&lt;br /&gt;
| &amp;lt;!-- Language  --&amp;gt; German&lt;br /&gt;
| &amp;lt;!-- Contact   --&amp;gt; [[User:Leonhaeuser|Mirko Leonhäuser]]&lt;br /&gt;
|{{progress|99.7}}&lt;br /&gt;
|{{progress|99.6}}&lt;br /&gt;
|&lt;br /&gt;
| &amp;lt;!-- Notes     --&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
| &amp;lt;!-- No --&amp;gt; 8&lt;br /&gt;
| &amp;lt;!-- ISO-639-1 --&amp;gt; el&lt;br /&gt;
| &amp;lt;!-- Language  --&amp;gt; Greek&lt;br /&gt;
| &amp;lt;!-- Contact   --&amp;gt; Zissis Papadopoulos&lt;br /&gt;
|{{progress|81.7}}&lt;br /&gt;
|{{progress|78.4}}&lt;br /&gt;
|&lt;br /&gt;
| &amp;lt;!-- Notes     --&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
| &amp;lt;!-- No --&amp;gt; 9&lt;br /&gt;
! &amp;lt;!-- ISO-639-1 --&amp;gt; en&lt;br /&gt;
| &amp;lt;!-- Language  --&amp;gt; [http://en.wikipedia.org/wiki/English_language English]&lt;br /&gt;
| &amp;lt;!-- Contact   --&amp;gt; N/A  ( '''Default Language''' )&lt;br /&gt;
|{{progress|100.0}}&lt;br /&gt;
|{{progress|100.0}}&lt;br /&gt;
|&lt;br /&gt;
| &amp;lt;!-- Notes     --&amp;gt;[http://gramps.1791082.n4.nabble.com/English-or-American-spelling-td4623552.html American English]&lt;br /&gt;
|-&lt;br /&gt;
| &amp;lt;!-- No --&amp;gt; 10&lt;br /&gt;
| &amp;lt;!-- ISO-639-1 --&amp;gt; en_GB&lt;br /&gt;
| &amp;lt;!-- Language  --&amp;gt; [http://en.wikipedia.org/wiki/British_English English (British)]&lt;br /&gt;
| &amp;lt;!-- Contact   --&amp;gt; [[User:Nick_H|Nick Hall]]&lt;br /&gt;
|{{progress|2.5}}&lt;br /&gt;
|{{progress|2.1}}&lt;br /&gt;
|&lt;br /&gt;
| &amp;lt;!-- Notes     --&amp;gt;[http://gramps.1791082.n4.nabble.com/English-or-American-spelling-td4623552.html#a4626565 English (British)][{{Code Browser}}/tree/master/po/en_GB.po en_GB.po]&lt;br /&gt;
variation ~ 5%&lt;br /&gt;
|-&lt;br /&gt;
| &amp;lt;!-- No --&amp;gt; 11&lt;br /&gt;
| &amp;lt;!-- ISO-639-1 --&amp;gt; en_AU&lt;br /&gt;
| &amp;lt;!-- Language  --&amp;gt; [http://en.wikipedia.org/wiki/Australian_English English (Australian)]&lt;br /&gt;
| &amp;lt;!-- Contact   --&amp;gt; '''[[Translating_Gramps|Translator Vacancy]]'''&lt;br /&gt;
|{{progress|0}}&lt;br /&gt;
|{{progress|0}}&lt;br /&gt;
|&lt;br /&gt;
| &amp;lt;!-- Notes     --&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
| &amp;lt;!-- No --&amp;gt; 12&lt;br /&gt;
| &amp;lt;!-- ISO-639-1 --&amp;gt; eo&lt;br /&gt;
| &amp;lt;!-- Language  --&amp;gt; Esperanto&lt;br /&gt;
| &amp;lt;!-- Contact   --&amp;gt; Pier Luigi Cinquantini&lt;br /&gt;
|{{progress|99.3}}&lt;br /&gt;
|{{progress|93.7}}&lt;br /&gt;
|&lt;br /&gt;
| &amp;lt;!-- Notes     --&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
| &amp;lt;!-- No --&amp;gt; 13&lt;br /&gt;
| &amp;lt;!-- ISO-639-1 --&amp;gt; es&lt;br /&gt;
| &amp;lt;!-- Language  --&amp;gt; Spanish&lt;br /&gt;
| &amp;lt;!-- Contact   --&amp;gt; '''[[Translating_Gramps|Translator Vacancy]]'''&lt;br /&gt;
|{{progress|82.6}}&lt;br /&gt;
|{{progress|79.4}}&lt;br /&gt;
|&lt;br /&gt;
| &amp;lt;!-- Notes     --&amp;gt;{{bug|4185}}, {{bug|6645}}:Kinship report (Relationships)&lt;br /&gt;
|-&lt;br /&gt;
| &amp;lt;!-- No --&amp;gt; 14&lt;br /&gt;
| &amp;lt;!-- ISO-639-1 --&amp;gt; fi&lt;br /&gt;
| &amp;lt;!-- Language  --&amp;gt; Finnish&lt;br /&gt;
| &amp;lt;!-- Contact   --&amp;gt; Matti Niemelä &lt;br /&gt;
|{{progress|100.0}}&lt;br /&gt;
|{{progress|99.8}}&lt;br /&gt;
|[{{Code Browser}}/tree/master/po/fi.po]&lt;br /&gt;
| &amp;lt;!-- Notes     --&amp;gt; {{bug|2356}}: genitive form for names, [[Translation_into_Finnish|Translation into Finnish]]&lt;br /&gt;
|-&lt;br /&gt;
| &amp;lt;!-- No --&amp;gt; 15&lt;br /&gt;
| &amp;lt;!-- ISO-639-1 --&amp;gt; fr&lt;br /&gt;
| &amp;lt;!-- Language  --&amp;gt; French&lt;br /&gt;
| &amp;lt;!-- Contact   --&amp;gt; '''[[Translating_Gramps|Translator Vacancy]]'''&lt;br /&gt;
|{{progress|98.3}}&lt;br /&gt;
|{{progress|97.3}}&lt;br /&gt;
|&lt;br /&gt;
| &amp;lt;!-- Notes     --&amp;gt; [[Translation_into_French|Translation into French]]&lt;br /&gt;
|-&lt;br /&gt;
| &amp;lt;!-- No --&amp;gt; 16&lt;br /&gt;
| &amp;lt;!-- ISO-639-1 --&amp;gt; ga&lt;br /&gt;
| &amp;lt;!-- Language  --&amp;gt; Irish&lt;br /&gt;
| &amp;lt;!-- Contact   --&amp;gt; '''[[Translating_Gramps|Translator Vacancy]]'''&lt;br /&gt;
|{{progress|0.3}} (not enabled)&lt;br /&gt;
|{{progress|0.07}} (not enabled)&lt;br /&gt;
| [{{Code Browser}}/tree/master/po/ga.po]&lt;br /&gt;
| &amp;lt;!-- Notes     --&amp;gt; [http://sourceforge.net/mailarchive/message.php?msg_id=26863727 mailing-list]&lt;br /&gt;
|-&lt;br /&gt;
| &amp;lt;!-- No --&amp;gt; 17&lt;br /&gt;
| &amp;lt;!-- ISO-639-1 --&amp;gt; he&lt;br /&gt;
| &amp;lt;!-- Language  --&amp;gt; Hebrew&lt;br /&gt;
| &amp;lt;!-- Contact   --&amp;gt; Avi Markovitz&lt;br /&gt;
|{{progress|42.4}}&lt;br /&gt;
|{{progress|99.7}}&lt;br /&gt;
|[{{Code Browser}}/tree/master/po/he.po]&lt;br /&gt;
| &amp;lt;!-- Notes     --&amp;gt; {{bug|2962}}&lt;br /&gt;
|-&lt;br /&gt;
| &amp;lt;!-- No --&amp;gt; 18&lt;br /&gt;
| &amp;lt;!-- ISO-639-1 --&amp;gt; hr&lt;br /&gt;
| &amp;lt;!-- Language  --&amp;gt; Croatian&lt;br /&gt;
| &amp;lt;!-- Contact   --&amp;gt; '''[[Translating_Gramps|Translator Vacancy]]'''&lt;br /&gt;
|{{progress|100.0}}&lt;br /&gt;
|{{progress|99.9}}&lt;br /&gt;
|&lt;br /&gt;
| &amp;lt;!-- Notes     --&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
| &amp;lt;!-- No --&amp;gt; 19&lt;br /&gt;
| &amp;lt;!-- ISO-639-1 --&amp;gt; hu&lt;br /&gt;
| &amp;lt;!-- Language  --&amp;gt; Hungarian&lt;br /&gt;
| &amp;lt;!-- Contact   --&amp;gt; Lajos Nemeséri&lt;br /&gt;
|{{progress|100.0}}&lt;br /&gt;
|{{progress|99.2}}&lt;br /&gt;
|&lt;br /&gt;
| &amp;lt;!-- Notes     --&amp;gt; {{bug|5505}}:[[Date_Handler]]&lt;br /&gt;
|-&lt;br /&gt;
| &amp;lt;!-- No --&amp;gt; 20&lt;br /&gt;
| &amp;lt;!-- ISO-639-1 --&amp;gt; is&lt;br /&gt;
| &amp;lt;!-- Language  --&amp;gt; Icelandic&lt;br /&gt;
| &amp;lt;!-- Contact   --&amp;gt; Sveinn í Felli&lt;br /&gt;
|{{progress|90.4}}&lt;br /&gt;
|{{progress|87.5}}&lt;br /&gt;
|&lt;br /&gt;
| &amp;lt;!-- Notes     --&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
| &amp;lt;!-- No --&amp;gt; 21&lt;br /&gt;
| &amp;lt;!-- ISO-639-1 --&amp;gt; it&lt;br /&gt;
| &amp;lt;!-- Language  --&amp;gt; Italian&lt;br /&gt;
| &amp;lt;!-- Contact   --&amp;gt; Luigi Toscano&lt;br /&gt;
|{{progress|95.0}}&lt;br /&gt;
|{{progress|91.2}}&lt;br /&gt;
|&lt;br /&gt;
| &amp;lt;!-- Notes     --&amp;gt;{{bug|4185}}:Kinship report (Relationships)&lt;br /&gt;
|-&lt;br /&gt;
| &amp;lt;!-- No --&amp;gt; 22&lt;br /&gt;
| &amp;lt;!-- ISO-639-1 --&amp;gt; ja&lt;br /&gt;
| &amp;lt;!-- Language  --&amp;gt; Japanese&lt;br /&gt;
| &amp;lt;!-- Contact   --&amp;gt; Keiichiro Yamamoto, Megumi Sakata&lt;br /&gt;
|{{progress|40.4}}&lt;br /&gt;
|{{progress|38.6}}&lt;br /&gt;
|[{{Code Browser}}/tree/master/po/ja.po]&lt;br /&gt;
| &amp;lt;!-- Notes     --&amp;gt; (''[https://raw.github.com/yanmar/gramps-translation-ja/master/po/ja.po github]'') / (Feature request:{{bug|3120}} support for Japanese Era calendar scheme)&lt;br /&gt;
|-&lt;br /&gt;
| &amp;lt;!-- No --&amp;gt; 23&lt;br /&gt;
| &amp;lt;!-- ISO-639-1 --&amp;gt; lt&lt;br /&gt;
| &amp;lt;!-- Language  --&amp;gt; Lithuanian&lt;br /&gt;
| &amp;lt;!-- Contact   --&amp;gt; '''[[Translating_Gramps|Translator Vacancy]]'''&lt;br /&gt;
|{{progress|98.3}}&lt;br /&gt;
|{{progress|94.4}}&lt;br /&gt;
|&lt;br /&gt;
| &amp;lt;!-- Notes     --&amp;gt;{{bug|4848}}&lt;br /&gt;
|-&lt;br /&gt;
| &amp;lt;!-- No --&amp;gt; 24&lt;br /&gt;
| &amp;lt;!-- ISO-639-1 --&amp;gt; mk&lt;br /&gt;
| &amp;lt;!-- Language  --&amp;gt; Macedonian&lt;br /&gt;
| &amp;lt;!-- Contact   --&amp;gt; '''[[Translating_Gramps|Translator Vacancy]]'''&lt;br /&gt;
|{{progress|24.9}} (not enabled)&lt;br /&gt;
|{{progress|23.8}} (not enabled)&lt;br /&gt;
|[{{Code Browser}}/tree/master/po/mk.po]&lt;br /&gt;
| &amp;lt;!-- Notes     --&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
| &amp;lt;!-- No --&amp;gt; 25&lt;br /&gt;
| &amp;lt;!-- ISO-639-1 --&amp;gt; nb&lt;br /&gt;
| &amp;lt;!-- Language  --&amp;gt; Norwegian Bokmål&lt;br /&gt;
| &amp;lt;!-- Contact   --&amp;gt; [[User:Espenbe|Espen Berg]]&lt;br /&gt;
|{{progress|99.0}}&lt;br /&gt;
|{{progress|94.9}}&lt;br /&gt;
|&lt;br /&gt;
| &amp;lt;!-- Notes     --&amp;gt; [https://github.com/gramps-project/gramps/blob/master/gramps/gen/datehandler/_datehandler.py see DateDisplay]&lt;br /&gt;
|-&lt;br /&gt;
| &amp;lt;!-- No --&amp;gt; 26&lt;br /&gt;
| &amp;lt;!-- ISO-639-1 --&amp;gt; nl&lt;br /&gt;
| &amp;lt;!-- Language  --&amp;gt; Dutch&lt;br /&gt;
| &amp;lt;!-- Contact   --&amp;gt; Jan Sparreboom&lt;br /&gt;
|{{progress|98.4}}&lt;br /&gt;
|{{progress|94.6}}&lt;br /&gt;
|&lt;br /&gt;
| &amp;lt;!-- Notes     --&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
| &amp;lt;!-- No --&amp;gt; 27&lt;br /&gt;
| &amp;lt;!-- ISO-639-1 --&amp;gt; nn&lt;br /&gt;
| &amp;lt;!-- Language  --&amp;gt; Norwegian Nynorsk&lt;br /&gt;
| &amp;lt;!-- Contact   --&amp;gt; Sigmund Lorentsen&lt;br /&gt;
|{{progress|87.8}}&lt;br /&gt;
|{{progress|94.3}}&lt;br /&gt;
|&lt;br /&gt;
| &amp;lt;!-- Notes     --&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
| &amp;lt;!-- No --&amp;gt; 28&lt;br /&gt;
| &amp;lt;!-- ISO-639-1 --&amp;gt; pl&lt;br /&gt;
| &amp;lt;!-- Language  --&amp;gt; Polish&lt;br /&gt;
| &amp;lt;!-- Contact   --&amp;gt; '''[[Translating_Gramps|Translator Vacancy]]'''&lt;br /&gt;
|{{progress|87.9}}&lt;br /&gt;
|{{progress|84.7}}&lt;br /&gt;
|&lt;br /&gt;
| &amp;lt;!-- Notes     --&amp;gt; &lt;br /&gt;
|-&lt;br /&gt;
| &amp;lt;!-- No --&amp;gt; 29&lt;br /&gt;
| &amp;lt;!-- ISO-639-1 --&amp;gt; pt_BR&lt;br /&gt;
| &amp;lt;!-- Language  --&amp;gt; Portuguese (Brazil)&lt;br /&gt;
| &amp;lt;!-- Contact   --&amp;gt; Paulo Henrique, Paiva de Moraes&lt;br /&gt;
|{{progress|98.2}}&lt;br /&gt;
|{{progress|95.4}}&lt;br /&gt;
|&lt;br /&gt;
| &amp;lt;!-- Notes     --&amp;gt;{{bug|4185}}:Kinship report (Relationships)&lt;br /&gt;
|-&lt;br /&gt;
| &amp;lt;!-- No --&amp;gt; 30&lt;br /&gt;
| &amp;lt;!-- ISO-639-1 --&amp;gt; pt_PT&lt;br /&gt;
| &amp;lt;!-- Language  --&amp;gt; Portuguese (Portugal)&lt;br /&gt;
| &amp;lt;!-- Contact   --&amp;gt; Pedro Albuquerque &lt;br /&gt;
|{{progress|99.7}}&lt;br /&gt;
|{{progress|99.1}}&lt;br /&gt;
|&lt;br /&gt;
| &amp;lt;!-- Notes     --&amp;gt;{{bug|4185}}: Kinship report (Relationships)&lt;br /&gt;
|-&lt;br /&gt;
| &amp;lt;!-- No --&amp;gt; 31&lt;br /&gt;
| &amp;lt;!-- ISO-639-1 --&amp;gt; ro&lt;br /&gt;
| &amp;lt;!-- Language  --&amp;gt; Romanian&lt;br /&gt;
| &amp;lt;!-- Contact   --&amp;gt; '''[[Translating_Gramps|Translator Vacancy]]'''&lt;br /&gt;
|{{progress|4.4}}&lt;br /&gt;
|{{progress|4.0}}&lt;br /&gt;
|[{{Code Browser}}/tree/master/po/ro.po]&lt;br /&gt;
| &amp;lt;!-- Notes     --&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
| &amp;lt;!-- No --&amp;gt; 32&lt;br /&gt;
| &amp;lt;!-- ISO-639-1 --&amp;gt; ru&lt;br /&gt;
| &amp;lt;!-- Language  --&amp;gt; Russian&lt;br /&gt;
| &amp;lt;!-- Contact   --&amp;gt; Ivan Komaritsyn&lt;br /&gt;
|{{progress|99.7}}&lt;br /&gt;
|{{progress|98.8}}&lt;br /&gt;
|&lt;br /&gt;
| &amp;lt;!-- Notes     --&amp;gt; [[Translation_into_Russian|Translation into Russian]]&lt;br /&gt;
|-&lt;br /&gt;
| &amp;lt;!-- No --&amp;gt; 33&lt;br /&gt;
| &amp;lt;!-- ISO-639-1 --&amp;gt; sk&lt;br /&gt;
| &amp;lt;!-- Language  --&amp;gt; Slovak&lt;br /&gt;
| &amp;lt;!-- Contact   --&amp;gt; '''[[Translating_Gramps|Translator Vacancy]]'''&lt;br /&gt;
|{{progress|90.9}}&lt;br /&gt;
|{{progress|91.1}}&lt;br /&gt;
|&lt;br /&gt;
| &amp;lt;!-- Notes     --&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
| &amp;lt;!-- No --&amp;gt; 34&lt;br /&gt;
| &amp;lt;!-- ISO-639-1 --&amp;gt; sl&lt;br /&gt;
| &amp;lt;!-- Language  --&amp;gt; Slovenian&lt;br /&gt;
| &amp;lt;!-- Contact   --&amp;gt; [[User:Beernarrd|Bernard Banko]]&lt;br /&gt;
|{{progress|100.0}}&lt;br /&gt;
|{{progress|87.4}}&lt;br /&gt;
|&lt;br /&gt;
| &amp;lt;!-- Notes     --&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
| &amp;lt;!-- No --&amp;gt; 35&lt;br /&gt;
| &amp;lt;!-- ISO-639-1 --&amp;gt; sq&lt;br /&gt;
| &amp;lt;!-- Language  --&amp;gt; Albanian&lt;br /&gt;
| &amp;lt;!-- Contact   --&amp;gt; '''[[Translating_Gramps|Translator Vacancy]]'''&lt;br /&gt;
|{{progress|39.4}}&lt;br /&gt;
|{{progress|37.8}}&lt;br /&gt;
|[{{Code Browser}}/tree/master/po/sq.po]&lt;br /&gt;
| &amp;lt;!-- Notes     --&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
| &amp;lt;!-- No --&amp;gt; 36&lt;br /&gt;
| &amp;lt;!-- ISO-639-1 --&amp;gt; sr&lt;br /&gt;
| &amp;lt;!-- Language  --&amp;gt; Serbian&lt;br /&gt;
| &amp;lt;!-- Contact   --&amp;gt; '''[[Translating_Gramps|Translator Vacancy]]'''&lt;br /&gt;
|{{progress|82.1}}&lt;br /&gt;
|{{progress|78.9}}&lt;br /&gt;
|[{{Code Browser}}/tree/master/po/sr.po]&lt;br /&gt;
| &amp;lt;!-- Notes     --&amp;gt; see {{bug|2375}}&lt;br /&gt;
|-&lt;br /&gt;
| &amp;lt;!-- No --&amp;gt; 37&lt;br /&gt;
| &amp;lt;!-- ISO-639-1 --&amp;gt; sr Latin&lt;br /&gt;
| &amp;lt;!-- Language  --&amp;gt; Serbian Latin&lt;br /&gt;
| &amp;lt;!-- Contact   --&amp;gt; '''[[Translating_Gramps|Translator Vacancy]]'''&lt;br /&gt;
|{{progress|2.7}}&lt;br /&gt;
|{{progress|2.3}}&lt;br /&gt;
|[{{Code Browser}}/tree/master/po/sr_Latn.po]&lt;br /&gt;
| &amp;lt;!-- Notes     --&amp;gt; see {{bug|2375}}&lt;br /&gt;
|-&lt;br /&gt;
| &amp;lt;!-- No --&amp;gt; 38&lt;br /&gt;
| &amp;lt;!-- ISO-639-1 --&amp;gt; sv&lt;br /&gt;
| &amp;lt;!-- Language  --&amp;gt; Swedish&lt;br /&gt;
| &amp;lt;!-- Contact   --&amp;gt; Pär Ekholm &lt;br /&gt;
|{{progress|100.0}}&lt;br /&gt;
|{{progress|100.0}}&lt;br /&gt;
|&lt;br /&gt;
| &amp;lt;!-- Notes     --&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
| &amp;lt;!-- No --&amp;gt; 39&lt;br /&gt;
| &amp;lt;!-- ISO-639-1 --&amp;gt; ta&lt;br /&gt;
| &amp;lt;!-- Language  --&amp;gt; Tamil&lt;br /&gt;
| &amp;lt;!-- Contact   --&amp;gt; '''[[Translating_Gramps|Translator Vacancy]]'''&lt;br /&gt;
|{{progress|6.4}}&lt;br /&gt;
|{{progress|6.0}}&lt;br /&gt;
|&lt;br /&gt;
| &amp;lt;!-- Notes     --&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
| &amp;lt;!-- No --&amp;gt; 40&lt;br /&gt;
| &amp;lt;!-- ISO-639-1 --&amp;gt; tr&lt;br /&gt;
| &amp;lt;!-- Language  --&amp;gt; Turkish&lt;br /&gt;
| &amp;lt;!-- Contact   --&amp;gt; '''[[Translating_Gramps|Translator Vacancy]]'''&lt;br /&gt;
|{{progress|27.5}}&lt;br /&gt;
|{{progress|26.2}}&lt;br /&gt;
|[{{Code Browser}}/tree/master/po/tr.po]&lt;br /&gt;
| &amp;lt;!-- Notes     --&amp;gt;{{bug|8148}}&lt;br /&gt;
|-&lt;br /&gt;
| &amp;lt;!-- No --&amp;gt; 41&lt;br /&gt;
| &amp;lt;!-- ISO-639-1 --&amp;gt; uk&lt;br /&gt;
| &amp;lt;!-- Language  --&amp;gt; Ukrainian&lt;br /&gt;
| &amp;lt;!-- Contact   --&amp;gt; [http://sourceforge.net/users/fedik/ Fedir Zinchuk]&lt;br /&gt;
|{{progress|97.3}}&lt;br /&gt;
|{{progress|94.1}}&lt;br /&gt;
|&lt;br /&gt;
| &amp;lt;!-- Notes     --&amp;gt; Relationships handler only available for 3.4 (need test on 4.0)&lt;br /&gt;
|-&lt;br /&gt;
| &amp;lt;!-- No --&amp;gt; 42&lt;br /&gt;
| &amp;lt;!-- ISO-639-1 --&amp;gt; vi&lt;br /&gt;
| &amp;lt;!-- Language  --&amp;gt; Vietnamese&lt;br /&gt;
| &amp;lt;!-- Contact   --&amp;gt; [[User:Detran|De Tran]]&lt;br /&gt;
|{{progress|98.5}}&lt;br /&gt;
|{{progress|95.7}}&lt;br /&gt;
|&lt;br /&gt;
| &amp;lt;!-- Notes     --&amp;gt; {{bug|4400}}: lunisolar calendar support ?&lt;br /&gt;
|-&lt;br /&gt;
| &amp;lt;!-- No --&amp;gt; 43&lt;br /&gt;
| &amp;lt;!-- ISO-639-1 --&amp;gt; zh_CN&lt;br /&gt;
| &amp;lt;!-- Language  --&amp;gt; Chinese&lt;br /&gt;
| &amp;lt;!-- Contact   --&amp;gt; '''[[Translating_Gramps|Translator Vacancy]]'''&lt;br /&gt;
|{{progress|70.5}}&lt;br /&gt;
|{{progress|67.7}}&lt;br /&gt;
|&lt;br /&gt;
| &amp;lt;!-- Notes     --&amp;gt;{{bug|4400}}: lunisolar calendar support ?&lt;br /&gt;
|-&lt;br /&gt;
| &amp;lt;!-- No --&amp;gt; 44&lt;br /&gt;
| &amp;lt;!-- ISO-639-1 --&amp;gt; zh_HK&lt;br /&gt;
| &amp;lt;!-- Language  --&amp;gt; Chinese&lt;br /&gt;
| &amp;lt;!-- Contact   --&amp;gt; '''[[Translating_Gramps|Translator Vacancy]]'''&lt;br /&gt;
|{{progress|70.5}}&lt;br /&gt;
|{{progress|67.7}}&lt;br /&gt;
|&lt;br /&gt;
| &amp;lt;!-- Notes     --&amp;gt;{{bug|4400}}: lunisolar calendar support ?&lt;br /&gt;
|-&lt;br /&gt;
| &amp;lt;!-- No --&amp;gt; 45&lt;br /&gt;
| &amp;lt;!-- ISO-639-1 --&amp;gt; zh_TW&lt;br /&gt;
| &amp;lt;!-- Language  --&amp;gt; Chinese&lt;br /&gt;
| &amp;lt;!-- Contact   --&amp;gt; '''[[Translating_Gramps|Translator Vacancy]]'''&lt;br /&gt;
|{{progress|70.5}}&lt;br /&gt;
|{{progress|67.7}}&lt;br /&gt;
|&lt;br /&gt;
| &amp;lt;!-- Notes     --&amp;gt;{{bug|4400}}: lunisolar calendar support ?&lt;br /&gt;
|} &lt;br /&gt;
{{-}}&lt;br /&gt;
{| class=&amp;quot;wikitable sortable&amp;quot;&lt;br /&gt;
! Custom&lt;br /&gt;
! Type&lt;br /&gt;
! &amp;lt;!-- Contact   --&amp;gt; Contact&lt;br /&gt;
! Coverage&amp;lt;br&amp;gt;Gramps 2.2.6&lt;br /&gt;
! Coverage&amp;lt;br&amp;gt;Gramps 3.1.3&lt;br /&gt;
! Coverage&amp;lt;br&amp;gt;(master)&lt;br /&gt;
! &amp;lt;!-- Notes     --&amp;gt; Notes&lt;br /&gt;
|-&lt;br /&gt;
| [http://gramps-project.org/wiki/index.php?title=Image:Animal.po.gz Animal Pedigree]&lt;br /&gt;
| [[Animal pedigree]]&lt;br /&gt;
| &amp;lt;!-- Contact   --&amp;gt; '''[[Translating_Gramps|Translator Vacancy]]'''&lt;br /&gt;
|{{progress|100}} [[File:Gramps_animal_2_2_6.po.gz]]&lt;br /&gt;
|{{progress|99}} [[File:Gramps_animal_3_1_3.po.gz]]&lt;br /&gt;
|{{progress|0}}&lt;br /&gt;
| &amp;lt;!-- Notes     --&amp;gt; English(US) sub-translation that makes using Gramps far more intuitive when dealing with animals.(Bug:{{bug|3346}})&lt;br /&gt;
|-&lt;br /&gt;
| Same gender&lt;br /&gt;
| Same gender/sex&lt;br /&gt;
| &amp;lt;!-- Contact   --&amp;gt; '''[[Translating_Gramps|Translator Vacancy]]'''&lt;br /&gt;
|align=&amp;quot;right&amp;quot;| -&lt;br /&gt;
|{{progress|100}}&lt;br /&gt;
|{{progress|0}}&lt;br /&gt;
| &amp;lt;!-- Notes     --&amp;gt; English(US) sub-translation that makes using Gramps far more intuitive when dealing with same gender family.(Bug:{{bug|3346}})&lt;br /&gt;
|} &lt;br /&gt;
{{-}}&lt;br /&gt;
&amp;lt;noinclude&amp;gt;&lt;br /&gt;
[[Category:Translators/Categories|T]][[Category:Developers/General|T]]&lt;br /&gt;
&amp;lt;/noinclude&amp;gt;&lt;/div&gt;</summary>
		<author><name>Sten</name></author>
		
	</entry>
	<entry>
		<id>https://ftp.gramps-project.org/wiki/index.php?title=Talk:Download&amp;diff=79548</id>
		<title>Talk:Download</title>
		<link rel="alternate" type="text/html" href="https://ftp.gramps-project.org/wiki/index.php?title=Talk:Download&amp;diff=79548"/>
		<updated>2020-06-16T13:30:57Z</updated>

		<summary type="html">&lt;p&gt;Sten: /* Package name for Linux - gramps_5.1.2-1_all.deb or python3-gramps_5.1.2-1_all.deb? */ new section&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;==Dependencies and optional packages==&lt;br /&gt;
Please can someone who has edit permissions on this page add a note about additional packages. These are mentioned in the readme file, and it would be helpful if this wiki page said this and where to find the readme (/usr/share/doc/gramps). There are some error messages that can crop up about missing packages, and it is not always obvious what should be done to fix these. One example is an error message that &amp;quot;Gramps detected an incomplete GTK installation&amp;quot; but with no info on how to fix this. The readme says to install language-pack-gnome-xx which fixes that error message. Thanks. --[[User:Peterhewett|Peterhewett]] ([[User talk:Peterhewett|talk]]) 13:03, 4 May 2016 (MST)&lt;br /&gt;
&lt;br /&gt;
== Add introductory paragraph to Download page? ==&lt;br /&gt;
&lt;br /&gt;
What do you think of adding a plain language paragraph (above the top-most green Note) to the [[Download|Download page]] which explains about version/platform differences and is a reminder of Version Template updating?&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
 As of {{CURRENTDAYNAME}}, {{CURRENTDAY}} {{CURRENTMONTHNAMEGEN}} {{CURRENTYEAR}}, the [[Download|most current Gramps release]] is the {{TEMPLATE:version}} version. &amp;lt;br /&amp;gt; Initial release is for Linux OS and new installers for target platforms are updated by volunteers. So, updated release lags will correspond to interest levels. The released versions on the various platforms are: Version {{template:version}} for [[Download#Linux|Linux]], {{template:Version Linux Live CD}} on the Version Linux Live CD, {{template:Version Mac}} on [[Download#Mac_OS_X|Mac OS X]], {{template:Version MacPort}} for the [https://portableapps.com/about/what_is_a_portable_app Portable App] for Mac, {{template:Version windows AIO32}} for [https://support.microsoft.com/en-us/help/15056/windows-32-64-bit-faq generic 32-bit] [[Download#MS_Windows|Windows]], {{template:Version windows AIO64}} for more powerful [https://support.microsoft.com/en-us/help/13443/windows-which-version-am-i-running 64-bit] [[Download#MS_Windows|Windows]], and {{template:Version windows portable}} for the [https://portableapps.com/about/what_is_a_portable_app Portable App] for Windows.  For a history of Gramps release versions, see [[Previous_releases_of_Gramps|Previous releases of Gramps]].&lt;br /&gt;
&lt;br /&gt;
'''''(just wrote an example for the [[:Category:Templates|Category:Templates]] Portal page and thought it could be re-used.'''''&lt;br /&gt;
&lt;br /&gt;
underlying wiki code for this paragraph:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;nowiki&amp;gt;As of {{CURRENTDAYNAME}}, {{CURRENTDAY}} {{CURRENTMONTHNAMEGEN}} {{CURRENTYEAR}}, the [[Download|most current Gramps release]] is the {{TEMPLATE:version}} version. &amp;lt;br /&amp;gt; Initial release is for Linux OS and new installers for target platforms are updated by volunteers. So, updated release lags will correspond to interest levels. The released versions on the various platforms are: Version {{template:version}} for [[Download#Linux|Linux]], {{template:Version Linux Live CD}} on the Version Linux Live CD, {{template:Version Mac}} on [[Download#Mac_OS_X|Mac OS X]], {{template:Version MacPort}} for the [https://portableapps.com/about/what_is_a_portable_app Portable App] for Mac, {{template:Version windows AIO32}} for [https://support.microsoft.com/en-us/help/15056/windows-32-64-bit-faq generic 32-bit] [[Download#MS_Windows|Windows]], {{template:Version windows AIO64}} for more powerful [https://support.microsoft.com/en-us/help/13443/windows-which-version-am-i-running 64-bit] [[Download#MS_Windows|Windows]], and {{template:Version windows portable}} for the [https://portableapps.com/about/what_is_a_portable_app Portable App] for Windows.  For a history of Gramps release versions, see [[Previous_releases_of_Gramps|Previous releases of Gramps]].&amp;lt;/nowiki&amp;gt;&lt;br /&gt;
&lt;br /&gt;
[[User:Bamaustin|Bamaustin]] ([[User talk:Bamaustin|talk]]) 18:34, 2 June 2019 (UTC)&lt;br /&gt;
&lt;br /&gt;
== Package name for Linux - gramps_5.1.2-1_all.deb or python3-gramps_5.1.2-1_all.deb? ==&lt;br /&gt;
&lt;br /&gt;
On this page&lt;br /&gt;
package name is - python3-gramps_5.1.2-1_all.deb:&lt;br /&gt;
&lt;br /&gt;
sudo dpkg -i python3-gramps_5.1.2-1_all.deb&lt;br /&gt;
&lt;br /&gt;
On&lt;br /&gt;
https://github.com/gramps-project/gramps/releases/v5.1.2&lt;br /&gt;
package name is - gramps_5.1.2-1_all.deb:&lt;br /&gt;
https://github.com/gramps-project/gramps/releases/download/v5.1.2/gramps_5.1.2-1_all.deb&lt;br /&gt;
&lt;br /&gt;
Change '''python3-gramps_5.1.2-1_all.deb''' to '''gramps_5.1.2-1_all.deb''' please.&lt;/div&gt;</summary>
		<author><name>Sten</name></author>
		
	</entry>
	<entry>
		<id>https://ftp.gramps-project.org/wiki/index.php?title=User_talk:Vantu5z&amp;diff=78922</id>
		<title>User talk:Vantu5z</title>
		<link rel="alternate" type="text/html" href="https://ftp.gramps-project.org/wiki/index.php?title=User_talk:Vantu5z&amp;diff=78922"/>
		<updated>2020-06-05T22:20:00Z</updated>

		<summary type="html">&lt;p&gt;Sten: /* Вопросы по локализации */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&amp;lt;hr /&amp;gt;&lt;br /&gt;
'''Welcome to ''Gramps''!'''&lt;br /&gt;
We hope you will contribute much and well.&lt;br /&gt;
You will probably want to read the [https://www.mediawiki.org/wiki/Special:MyLanguage/Help:Contents help pages].&lt;br /&gt;
Again, welcome and have fun! [[User:Sam888|Sam888]] ([[User talk:Sam888|talk]]) 15:18, 27 October 2016 (MST)&lt;br /&gt;
&lt;br /&gt;
Hi Vantu5z.&lt;br /&gt;
&lt;br /&gt;
Had to revert a recent change to an English master page.&lt;br /&gt;
&lt;br /&gt;
There was a 'Redirect' placeholder at &lt;br /&gt;
[https://gramps-project.org/wiki/index.php?title=Gramps_5.1_Wiki_Manual_-_Entering_and_Editing_Data:_Detailed_-_part_3/ru&amp;amp;redirect=no https://gramps-project.org/wiki/index.php?title=Gramps_5.1_Wiki_Manual_-_Entering_and_Editing_Data:_Detailed_-_part_3/ru&amp;amp;redirect=no]&lt;br /&gt;
&lt;br /&gt;
So you were not editing the Russian page as you expected. &lt;br /&gt;
&lt;br /&gt;
Bamaustin ([[User talk:Bamaustin|talk]]) 17:41, 16 March 2020 (UTC)&lt;br /&gt;
&lt;br /&gt;
== Вопросы по локализации ==&lt;br /&gt;
&lt;br /&gt;
Иван, день добрый.&lt;br /&gt;
&lt;br /&gt;
Я занимаюсь переводами ПО и научной документации с 1998 года.&lt;br /&gt;
&lt;br /&gt;
GRAMPS использую с версии 2.0.6.&lt;br /&gt;
&lt;br /&gt;
Сейчас выдалось свободное время. Много времени.&lt;br /&gt;
&lt;br /&gt;
У меня были небольшие сложности при работе в GRAMPS. Сейчас почти все разрешены.&lt;br /&gt;
&lt;br /&gt;
Хотелось бы поделиться решением с разработчиками.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Я подключился к git, получил исходные тексты программы. Но у меня (по-видимому) нет прав на запись - все мои коммиты отклоняются.&lt;br /&gt;
&lt;br /&gt;
Как мне по-быстрому выкладывать свои наработки в общий доступ?&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Что я могу:&lt;br /&gt;
&lt;br /&gt;
1. Привести перевод программы и модулей к нормативному русскому языку (термины и пр),&lt;br /&gt;
&lt;br /&gt;
2. Добавить нужные в работе форматы для русского языка,&lt;br /&gt;
&lt;br /&gt;
3. Добавить небольшие улучшения в уже имеющийся код.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
На большее пока нет желания, необходимости и опыта/знаний.&lt;br /&gt;
&lt;br /&gt;
Как пример: мне нужны были события, связанные с &amp;quot;политическими репрессиями&amp;quot; 1937 года - арест, приговор суда и пр.&lt;br /&gt;
&lt;br /&gt;
Для решения этого я создал новую задачу на баг-трекере:&lt;br /&gt;
&lt;br /&gt;
https://gramps-project.org/bugs/view.php?id=11763&lt;br /&gt;
&lt;br /&gt;
Подождав полторы недели, я за два часа вставил нужные мне события.&lt;br /&gt;
&lt;br /&gt;
Что мне делать дальше, чтобы мои изменения могли служить другим пользователям GRAMPS?&lt;/div&gt;</summary>
		<author><name>Sten</name></author>
		
	</entry>
	<entry>
		<id>https://ftp.gramps-project.org/wiki/index.php?title=User_talk:Vantu5z&amp;diff=78921</id>
		<title>User talk:Vantu5z</title>
		<link rel="alternate" type="text/html" href="https://ftp.gramps-project.org/wiki/index.php?title=User_talk:Vantu5z&amp;diff=78921"/>
		<updated>2020-06-05T22:18:20Z</updated>

		<summary type="html">&lt;p&gt;Sten: /* Вопросы по локализации */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&amp;lt;hr /&amp;gt;&lt;br /&gt;
'''Welcome to ''Gramps''!'''&lt;br /&gt;
We hope you will contribute much and well.&lt;br /&gt;
You will probably want to read the [https://www.mediawiki.org/wiki/Special:MyLanguage/Help:Contents help pages].&lt;br /&gt;
Again, welcome and have fun! [[User:Sam888|Sam888]] ([[User talk:Sam888|talk]]) 15:18, 27 October 2016 (MST)&lt;br /&gt;
&lt;br /&gt;
Hi Vantu5z.&lt;br /&gt;
&lt;br /&gt;
Had to revert a recent change to an English master page.&lt;br /&gt;
&lt;br /&gt;
There was a 'Redirect' placeholder at &lt;br /&gt;
[https://gramps-project.org/wiki/index.php?title=Gramps_5.1_Wiki_Manual_-_Entering_and_Editing_Data:_Detailed_-_part_3/ru&amp;amp;redirect=no https://gramps-project.org/wiki/index.php?title=Gramps_5.1_Wiki_Manual_-_Entering_and_Editing_Data:_Detailed_-_part_3/ru&amp;amp;redirect=no]&lt;br /&gt;
&lt;br /&gt;
So you were not editing the Russian page as you expected. &lt;br /&gt;
&lt;br /&gt;
Bamaustin ([[User talk:Bamaustin|talk]]) 17:41, 16 March 2020 (UTC)&lt;br /&gt;
&lt;br /&gt;
== Вопросы по локализации ==&lt;br /&gt;
&lt;br /&gt;
Иван, день добрый.&lt;br /&gt;
&lt;br /&gt;
Я занимаюсь переводами ПО и научной документации с 1998 года.&lt;br /&gt;
&lt;br /&gt;
GRAMPS использую с версии 2.0.6.&lt;br /&gt;
&lt;br /&gt;
Сейчас выдалось свободное время. Много времени.&lt;br /&gt;
&lt;br /&gt;
У меня были небольшие сложности при работе в GRAMPS. Сейчас почти все разрешены.&lt;br /&gt;
&lt;br /&gt;
Хотелось бы поделиться решением с разработчиками.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Я подключился к git, получил исходные тексты программы. Но у меня (по-видимому) нет прав на запись - все мои коммиты отклоняются.&lt;br /&gt;
&lt;br /&gt;
Как мне по-быстрому выкладывать свои наработки в общий доступ?&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Что я могу:&lt;br /&gt;
&lt;br /&gt;
1. Привести перевод программы и модулей к нормативному русскому языку (термины и пр),&lt;br /&gt;
&lt;br /&gt;
2. Добавить нужные в работе форматы для русского языка,&lt;br /&gt;
&lt;br /&gt;
3. Добавить небольшие улучшения в уже имеющийся код.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
На большее пока нет желания, необходимости и опыта/знаний.&lt;br /&gt;
&lt;br /&gt;
Как пример: мне нужны были события, связанные с &amp;quot;политическими репрессиями&amp;quot; 1937 года - арест, приговор суда и пр.&lt;br /&gt;
&lt;br /&gt;
Для решения этого я создал новую задачу на баг-трекере:&lt;br /&gt;
&lt;br /&gt;
https://gramps-project.org/bugs/view.php?id=11763&lt;br /&gt;
&lt;br /&gt;
Подождав полторы недели, я за два часа вставил нужные мне события.&lt;br /&gt;
&lt;br /&gt;
Что мне делать дальше, чтобы мои изменения могу служить пользователям GRAMPS?&lt;/div&gt;</summary>
		<author><name>Sten</name></author>
		
	</entry>
	<entry>
		<id>https://ftp.gramps-project.org/wiki/index.php?title=User_talk:Vantu5z&amp;diff=78920</id>
		<title>User talk:Vantu5z</title>
		<link rel="alternate" type="text/html" href="https://ftp.gramps-project.org/wiki/index.php?title=User_talk:Vantu5z&amp;diff=78920"/>
		<updated>2020-06-05T22:17:27Z</updated>

		<summary type="html">&lt;p&gt;Sten: /* Вопросы по локализации */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&amp;lt;hr /&amp;gt;&lt;br /&gt;
'''Welcome to ''Gramps''!'''&lt;br /&gt;
We hope you will contribute much and well.&lt;br /&gt;
You will probably want to read the [https://www.mediawiki.org/wiki/Special:MyLanguage/Help:Contents help pages].&lt;br /&gt;
Again, welcome and have fun! [[User:Sam888|Sam888]] ([[User talk:Sam888|talk]]) 15:18, 27 October 2016 (MST)&lt;br /&gt;
&lt;br /&gt;
Hi Vantu5z.&lt;br /&gt;
&lt;br /&gt;
Had to revert a recent change to an English master page.&lt;br /&gt;
&lt;br /&gt;
There was a 'Redirect' placeholder at &lt;br /&gt;
[https://gramps-project.org/wiki/index.php?title=Gramps_5.1_Wiki_Manual_-_Entering_and_Editing_Data:_Detailed_-_part_3/ru&amp;amp;redirect=no https://gramps-project.org/wiki/index.php?title=Gramps_5.1_Wiki_Manual_-_Entering_and_Editing_Data:_Detailed_-_part_3/ru&amp;amp;redirect=no]&lt;br /&gt;
&lt;br /&gt;
So you were not editing the Russian page as you expected. &lt;br /&gt;
&lt;br /&gt;
Bamaustin ([[User talk:Bamaustin|talk]]) 17:41, 16 March 2020 (UTC)&lt;br /&gt;
&lt;br /&gt;
== Вопросы по локализации ==&lt;br /&gt;
&lt;br /&gt;
Иван, день добрый.&lt;br /&gt;
&lt;br /&gt;
Я занимаюсь переводами ПО и научной документации с 1998 года.&lt;br /&gt;
&lt;br /&gt;
GRAMPS использую с версии 2.0.6.&lt;br /&gt;
&lt;br /&gt;
Сейчас выдалось свободное время. Много времени.&lt;br /&gt;
&lt;br /&gt;
У меня были небольшие сложности при работе в GRAMPS. Сейчас почти все разрешены.&lt;br /&gt;
&lt;br /&gt;
Хотелось бы поделиться решением с разработчиками.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Я подключился к git, получил исходные тексты программы. Но у меня (по-видимому) нет прав на запись - все мои коммиты отклоняются.&lt;br /&gt;
&lt;br /&gt;
Как мне по-быстрому выкладывать свои наработки в общий доступ?&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Что я могу:&lt;br /&gt;
&lt;br /&gt;
1. Привести перевод программы и модулей к нормативному русскому языку (термины и пр),&lt;br /&gt;
&lt;br /&gt;
2. Добавить нужные в работе форматы для русского языка,&lt;br /&gt;
&lt;br /&gt;
3. Добавить небольшие улучшения в уже имеющийся код.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
На большее пока нет желания, необходимости и опыта/знаний.&lt;br /&gt;
Как пример: мне нужны были события, связанные с &amp;quot;политическими репрессиями&amp;quot; 1937 года - арест, приговор суда и пр.&lt;br /&gt;
Для решения этого я создал новую задачу на баг-трекере:&lt;br /&gt;
&lt;br /&gt;
https://gramps-project.org/bugs/view.php?id=11763&lt;br /&gt;
&lt;br /&gt;
Подождав полторы недели, я за два часа вставил нужные мне события.&lt;br /&gt;
Что мне делать дальше, чтобы мои изменения могу служить пользователям GRAMPS?&lt;/div&gt;</summary>
		<author><name>Sten</name></author>
		
	</entry>
	<entry>
		<id>https://ftp.gramps-project.org/wiki/index.php?title=User_talk:Vantu5z&amp;diff=78919</id>
		<title>User talk:Vantu5z</title>
		<link rel="alternate" type="text/html" href="https://ftp.gramps-project.org/wiki/index.php?title=User_talk:Vantu5z&amp;diff=78919"/>
		<updated>2020-06-05T20:03:45Z</updated>

		<summary type="html">&lt;p&gt;Sten: /* Вопросы по локализации */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&amp;lt;hr /&amp;gt;&lt;br /&gt;
'''Welcome to ''Gramps''!'''&lt;br /&gt;
We hope you will contribute much and well.&lt;br /&gt;
You will probably want to read the [https://www.mediawiki.org/wiki/Special:MyLanguage/Help:Contents help pages].&lt;br /&gt;
Again, welcome and have fun! [[User:Sam888|Sam888]] ([[User talk:Sam888|talk]]) 15:18, 27 October 2016 (MST)&lt;br /&gt;
&lt;br /&gt;
Hi Vantu5z.&lt;br /&gt;
&lt;br /&gt;
Had to revert a recent change to an English master page.&lt;br /&gt;
&lt;br /&gt;
There was a 'Redirect' placeholder at &lt;br /&gt;
[https://gramps-project.org/wiki/index.php?title=Gramps_5.1_Wiki_Manual_-_Entering_and_Editing_Data:_Detailed_-_part_3/ru&amp;amp;redirect=no https://gramps-project.org/wiki/index.php?title=Gramps_5.1_Wiki_Manual_-_Entering_and_Editing_Data:_Detailed_-_part_3/ru&amp;amp;redirect=no]&lt;br /&gt;
&lt;br /&gt;
So you were not editing the Russian page as you expected. &lt;br /&gt;
&lt;br /&gt;
Bamaustin ([[User talk:Bamaustin|talk]]) 17:41, 16 March 2020 (UTC)&lt;br /&gt;
&lt;br /&gt;
== Вопросы по локализации ==&lt;br /&gt;
&lt;br /&gt;
Иван, день добрый.&lt;br /&gt;
&lt;br /&gt;
Я занимаюсь переводами ПО и научной документации с 1998 года.&lt;br /&gt;
&lt;br /&gt;
GRAMPS использую с версии 2.0.6.&lt;br /&gt;
&lt;br /&gt;
Сейчас выдалось свободное время. Много времени.&lt;br /&gt;
&lt;br /&gt;
У меня были небольшие сложности при работе в GRAMPS. Сейчас почти все разрешены.&lt;br /&gt;
&lt;br /&gt;
Хотелось бы поделиться ими с разработчиками.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Я подключился к git, получил исходные тексты программы. Но у меня (по-видимому) нет прав на запись - все мои коммиты отклоняются.&lt;br /&gt;
&lt;br /&gt;
Как мне по-быстрому выкладывать свои наработки в общий доступ?&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Что я могу:&lt;br /&gt;
&lt;br /&gt;
1. Привести перевод программы и модулей к нормативному русскому языку (термины и пр),&lt;br /&gt;
&lt;br /&gt;
2. Добавить нужные в работе форматы для русского языка,&lt;br /&gt;
&lt;br /&gt;
3. Добавить небольшие улучшения в уже имеющийся код.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
На большее пока нет желания, необходимости и опыта/знаний.&lt;br /&gt;
Как пример: мне нужны были события, связанные с &amp;quot;политическими репрессиями&amp;quot; 1937 года - арест, приговор суда и пр.&lt;br /&gt;
Для решения этого я создал новую задачу на баг-трекере:&lt;br /&gt;
&lt;br /&gt;
https://gramps-project.org/bugs/view.php?id=11763&lt;br /&gt;
&lt;br /&gt;
Подождав полторы недели, я за два часа вставил нужные мне события.&lt;br /&gt;
Что мне делать дальше, чтобы мои изменения могу служить пользователям GRAMPS?&lt;/div&gt;</summary>
		<author><name>Sten</name></author>
		
	</entry>
	<entry>
		<id>https://ftp.gramps-project.org/wiki/index.php?title=User_talk:Vantu5z&amp;diff=78918</id>
		<title>User talk:Vantu5z</title>
		<link rel="alternate" type="text/html" href="https://ftp.gramps-project.org/wiki/index.php?title=User_talk:Vantu5z&amp;diff=78918"/>
		<updated>2020-06-05T20:03:21Z</updated>

		<summary type="html">&lt;p&gt;Sten: /* Вопросы по локализации */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&amp;lt;hr /&amp;gt;&lt;br /&gt;
'''Welcome to ''Gramps''!'''&lt;br /&gt;
We hope you will contribute much and well.&lt;br /&gt;
You will probably want to read the [https://www.mediawiki.org/wiki/Special:MyLanguage/Help:Contents help pages].&lt;br /&gt;
Again, welcome and have fun! [[User:Sam888|Sam888]] ([[User talk:Sam888|talk]]) 15:18, 27 October 2016 (MST)&lt;br /&gt;
&lt;br /&gt;
Hi Vantu5z.&lt;br /&gt;
&lt;br /&gt;
Had to revert a recent change to an English master page.&lt;br /&gt;
&lt;br /&gt;
There was a 'Redirect' placeholder at &lt;br /&gt;
[https://gramps-project.org/wiki/index.php?title=Gramps_5.1_Wiki_Manual_-_Entering_and_Editing_Data:_Detailed_-_part_3/ru&amp;amp;redirect=no https://gramps-project.org/wiki/index.php?title=Gramps_5.1_Wiki_Manual_-_Entering_and_Editing_Data:_Detailed_-_part_3/ru&amp;amp;redirect=no]&lt;br /&gt;
&lt;br /&gt;
So you were not editing the Russian page as you expected. &lt;br /&gt;
&lt;br /&gt;
Bamaustin ([[User talk:Bamaustin|talk]]) 17:41, 16 March 2020 (UTC)&lt;br /&gt;
&lt;br /&gt;
== Вопросы по локализации ==&lt;br /&gt;
&lt;br /&gt;
Иван, день добрый.&lt;br /&gt;
&lt;br /&gt;
Я занимаюсь переводами ПО и научной документации с 1998 года.&lt;br /&gt;
&lt;br /&gt;
GRAMPS использую с версии 2.0.6.&lt;br /&gt;
&lt;br /&gt;
Сейчас выдалось свободное время. Много времени.&lt;br /&gt;
&lt;br /&gt;
У меня были небольшие сложности при работе в GRAMPS. Сейчас почти все разрешены.&lt;br /&gt;
&lt;br /&gt;
Хотелось бы поделиться ими с разработчиками.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Я подключился к git, получил исходные тексты программы. Но у меня (по-видимому) нет прав на запись - все мои коммиты отклоняются.&lt;br /&gt;
&lt;br /&gt;
Как мне по-быстрому выкладывать свои наработки в общий доступ?&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Что я могу:&lt;br /&gt;
1. Привести перевод программы и модулей к нормативному русскому языку (термины и пр),&lt;br /&gt;
&lt;br /&gt;
2. Добавить нужные в работе форматы для русского языка,&lt;br /&gt;
&lt;br /&gt;
3. Добавить небольшие улучшения в уже имеющийся код.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
На большее пока нет желания, необходимости и опыта/знаний.&lt;br /&gt;
Как пример: мне нужны были события, связанные с &amp;quot;политическими репрессиями&amp;quot; 1937 года - арест, приговор суда и пр.&lt;br /&gt;
Для решения этого я создал новую задачу на баг-трекере:&lt;br /&gt;
&lt;br /&gt;
https://gramps-project.org/bugs/view.php?id=11763&lt;br /&gt;
&lt;br /&gt;
Подождав полторы недели, я за два часа вставил нужные мне события.&lt;br /&gt;
Что мне делать дальше, чтобы мои изменения могу служить пользователям GRAMPS?&lt;/div&gt;</summary>
		<author><name>Sten</name></author>
		
	</entry>
	<entry>
		<id>https://ftp.gramps-project.org/wiki/index.php?title=User_talk:Vantu5z&amp;diff=78917</id>
		<title>User talk:Vantu5z</title>
		<link rel="alternate" type="text/html" href="https://ftp.gramps-project.org/wiki/index.php?title=User_talk:Vantu5z&amp;diff=78917"/>
		<updated>2020-06-05T20:02:10Z</updated>

		<summary type="html">&lt;p&gt;Sten: /* Вопросы по локализации */ new section&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&amp;lt;hr /&amp;gt;&lt;br /&gt;
'''Welcome to ''Gramps''!'''&lt;br /&gt;
We hope you will contribute much and well.&lt;br /&gt;
You will probably want to read the [https://www.mediawiki.org/wiki/Special:MyLanguage/Help:Contents help pages].&lt;br /&gt;
Again, welcome and have fun! [[User:Sam888|Sam888]] ([[User talk:Sam888|talk]]) 15:18, 27 October 2016 (MST)&lt;br /&gt;
&lt;br /&gt;
Hi Vantu5z.&lt;br /&gt;
&lt;br /&gt;
Had to revert a recent change to an English master page.&lt;br /&gt;
&lt;br /&gt;
There was a 'Redirect' placeholder at &lt;br /&gt;
[https://gramps-project.org/wiki/index.php?title=Gramps_5.1_Wiki_Manual_-_Entering_and_Editing_Data:_Detailed_-_part_3/ru&amp;amp;redirect=no https://gramps-project.org/wiki/index.php?title=Gramps_5.1_Wiki_Manual_-_Entering_and_Editing_Data:_Detailed_-_part_3/ru&amp;amp;redirect=no]&lt;br /&gt;
&lt;br /&gt;
So you were not editing the Russian page as you expected. &lt;br /&gt;
&lt;br /&gt;
Bamaustin ([[User talk:Bamaustin|talk]]) 17:41, 16 March 2020 (UTC)&lt;br /&gt;
&lt;br /&gt;
== Вопросы по локализации ==&lt;br /&gt;
&lt;br /&gt;
Иван, день добрый.&lt;br /&gt;
&lt;br /&gt;
Я занимаюсь переводами ПО и научной документации с 1998 года.&lt;br /&gt;
GRAMPS использую с версии 2.0.6.&lt;br /&gt;
Сейчас выдалось свободное время. Много времени.&lt;br /&gt;
У меня были небольшие сложности при работе в GRAMPS. Сейчас почти все разрешены.&lt;br /&gt;
&lt;br /&gt;
Хотелось бы поделиться ими с разработчиками.&lt;br /&gt;
&lt;br /&gt;
Я подключился к git, получил исходные тексты программы. Но у меня (по-видимому) нет прав на запись - все мои коммиты отклоняются.&lt;br /&gt;
&lt;br /&gt;
Как мне по-быстрому выкладывать свои наработки в общий доступ?&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Что я могу:&lt;br /&gt;
1. Привести перевод программы и модулей к нормативному русскому языку (термины и пр),&lt;br /&gt;
2. Добавить нужные в работе форматы для русского языка,&lt;br /&gt;
3. Добавить небольшие улучшения в уже имеющийся код.&lt;br /&gt;
&lt;br /&gt;
На большее пока нет желания, необходимости и опыта/знаний.&lt;br /&gt;
Как пример: мне нужны были события, связанные с &amp;quot;политическими репрессиями&amp;quot; 1937 года - арест, приговор суда и пр.&lt;br /&gt;
Для решения этого я создал новую задачу на баг-трекере:&lt;br /&gt;
https://gramps-project.org/bugs/view.php?id=11763&lt;br /&gt;
&lt;br /&gt;
Подождав полторы недели, я за два часа вставил нужные мне события.&lt;br /&gt;
Что мне делать дальше, чтобы мои изменения могу служить пользователям GRAMPS?&lt;/div&gt;</summary>
		<author><name>Sten</name></author>
		
	</entry>
	<entry>
		<id>https://ftp.gramps-project.org/wiki/index.php?title=RU:%D0%9D%D0%B0%D1%87%D0%B0%D0%BB%D0%BE_%D0%B2_%D0%93%D0%B5%D0%BD%D0%B5%D0%B0%D0%BB%D0%BE%D0%B3%D0%B8%D0%B8&amp;diff=78889</id>
		<title>RU:Начало в Генеалогии</title>
		<link rel="alternate" type="text/html" href="https://ftp.gramps-project.org/wiki/index.php?title=RU:%D0%9D%D0%B0%D1%87%D0%B0%D0%BB%D0%BE_%D0%B2_%D0%93%D0%B5%D0%BD%D0%B5%D0%B0%D0%BB%D0%BE%D0%B3%D0%B8%D0%B8&amp;diff=78889"/>
		<updated>2020-06-03T13:43:35Z</updated>

		<summary type="html">&lt;p&gt;Sten: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{languages/ru|Start with Genealogy|Начало в Генеалогии}}&lt;br /&gt;
'''Как мне начать в Генеалогии, используя Gramps?'''&lt;br /&gt;
&lt;br /&gt;
== Подготовка ==&lt;br /&gt;
Если Вы только начинаете свою генеалогию, лучше начать с себя и добавлять других людей, соединяя их с Вами.&lt;br /&gt;
&lt;br /&gt;
'' {{man menu | Одной из самых важных вещей в генеалогии является то, что Вы записываете, как и где Вы нашли / получили информацию.}} '' Это называется источником. Это настолько важно потому, что позже Вам понадобится эта информации или Вы захотите обратиться к ней. Наличие источника у Вашей информации также создаст доверие к ней у других исследователей.&lt;br /&gt;
&lt;br /&gt;
Таким образом, если Вы начинаете с себя, Вы сами ''проводите собеседование'', что является основным источником информации по этому вопросу. Из этого первоисточника Вы получаете такие события, как день рождения, день крещения, выпускной и так далее. Источник событий позволяет Вам вычислить существовавшего человека как часть семьи.&lt;br /&gt;
&lt;br /&gt;
Таким образом, у нас есть наши основные термины для генеалогии: Источники, События, Люди и Семьи. Помимо этого, Gramps позволяет хранить Заметки, Места, Медиа (фотографии, фильмы, документы) и [[ Ru:Хранилища в Gramps | Хранилища]].&lt;br /&gt;
&lt;br /&gt;
Итак, давайте начнем с добавления информации в Gramps.&lt;br /&gt;
&lt;br /&gt;
== Создать Семейное древо ==&lt;br /&gt;
Здесь предполагается, что Вы только что установили Gramps и запускаете свое первое семейное дерево.&lt;br /&gt;
&lt;br /&gt;
В качестве первого шага запустите Gramps.&lt;br /&gt;
{{-}}&lt;br /&gt;
[[File:Manage-databases-icon-toolbar-no-familytree-loaded-51_ru.png|450px|thumb|right|Значок &amp;quot;Управление базами данных&amp;quot; на панели инструментов без загруженного семейного дерева]]&lt;br /&gt;
&lt;br /&gt;
Значок &amp;quot;Управление базами данных&amp;quot; Менеджера генеалогических деревьев под названием «Семейные древа - Gramps» будет отображаться на панели инструментов. Щёлкните значок генеалогического дерева, чтобы открыть менеджер семейных деревьев.&lt;br /&gt;
&lt;br /&gt;
[[Ru:Gramps_{{man version}}_Вики_Руководство_-_Начало#Выбор_семейного_древа| Выбор семейного древа]]&lt;br /&gt;
{{-}}&lt;br /&gt;
[[File:ManageFamilyTrees-51_ru.png|right|thumb|450px|Окно менеджера «Семейные древа - Gramps»]]&lt;br /&gt;
&lt;br /&gt;
В всплывающем окне менеджера генеалогических деревьев нажмите кнопку {{man button | Создать}} (справа). Теперь в столбце &amp;quot;Название семейного древа» (слева) введите имя для своего дерева и нажмите кнопку {{man button | Загрузить семейное древо}} (внизу справа). Gramps теперь откроется вместе с Вашим недавно созданным деревом.&lt;br /&gt;
&lt;br /&gt;
[[Ru:Gramps_{{man version}}_Вики_Руководство_-_Управление_семейными_древесами#Создание нового семейного древа|Создание нового семейного древа]]&lt;br /&gt;
{{-}}&lt;br /&gt;
[[File:MainWindow-PeopleCategory-PeopleTreeView-annotated-50.png|450px|thumb|right|Описание частей главного окна Gramps]]&lt;br /&gt;
&lt;br /&gt;
Главная страница Gramps разделена на отдельные панели: панель инструментов в верхней части, левая боковая панель (навигатор), позволяющая перемещаться по различным представлениям Ваших данных, область просмотра, в которой отображаются данные (в центре), и правая боковая панель (боковая панель) и нижняя панель (Bottombar), которая может быть использована для Gramplets, (о Gramplets рассказано позже). Большинство из этих панелей можно включить или выключить, перейдя к слову &amp;quot;Вид&amp;quot; в верхней части окна и отметив (вкл) или сняв флажок (выключить) вид.&lt;br /&gt;
&lt;br /&gt;
[[Ru:Gramps_{{man version}}_Вики_Руководство_-_Главное_окно#Главное_окно| Главное окно]]&lt;br /&gt;
{{-}}&lt;br /&gt;
&lt;br /&gt;
==Create a Source==&lt;br /&gt;
[[File:NewSource-editor-dialog-example-50.png|thumb|right|450px|New Source - editor dialog - example]]&lt;br /&gt;
&lt;br /&gt;
As you start with yourself, and the source is the interview with yourself, in the left sidebar called '''Navigator''' click on the [[Gramps_{{man version}}_Wiki_Manual_-_Categories#Sources_Category|source icon]] {{icon|sour34}}. In the toolbar click on {{man label|Add}} (or {{man key press|CTRL|INSERT}} on the keyboard) to open the [[Gramps_{{man version}}_Wiki_Manual_-_Entering_and_editing_data:_detailed_-_part_2#New_Source_dialog|source editor]].&lt;br /&gt;
&lt;br /&gt;
Assuming your name is ''John Doe'', you now make a source for the interview with yourself! So enter:&lt;br /&gt;
* Title: Interview with John Doe&lt;br /&gt;
* Author: John Doe&lt;br /&gt;
And click on {{man button|OK}}.&lt;br /&gt;
{{-}}&lt;br /&gt;
[[File:SourcesCategory-SourcesListView-example-50.png|right|450px|thumb|Sources Category - (List) View]]&lt;br /&gt;
&lt;br /&gt;
That is it, your first source. In the [[Gramps_{{man version}}_Wiki_Manual_-_Categories#Sources_Category|Source(list)view]] you will see your new source listed and that the entry has ID number that is unique to your source.&lt;br /&gt;
&lt;br /&gt;
[[Gramps_{{man version}}_Wiki_Manual_-_Entering_and_editing_data:_detailed_-_part_2#Editing_information_about_sources]]&lt;br /&gt;
&lt;br /&gt;
&amp;lt;!--&lt;br /&gt;
Before continuing, let's show how to change the interface. In the toolbar of Gramps, the last icon is the {{man button|Configure the active view}}, so click it to see how you can adapt the view. Activate the 'Last Changed' Column and by dragging, change eg 'Author' to be the second column. Most views have this configuration option, so change these to your liking!&lt;br /&gt;
--&amp;gt;&lt;br /&gt;
{{-}}&lt;br /&gt;
&lt;br /&gt;
==Add data to the source==&lt;br /&gt;
{{stub}}&lt;br /&gt;
(Ver. 3.3.1-1)&lt;br /&gt;
&lt;br /&gt;
Before you begin, you should know that Gramps does '''not''' store your media(pictures, videos, sounds, and documents etc..), it only stores a link to where the media is on your hard disk. So decide where you will store your pictures, videos, sounds, and documents. Then on the menu bar select {{man menu|Edit-&amp;gt;Preferences}} and the '''General''' tab. Set the value of {{man label|Base path for relative media paths}} to this directory. Click on the {{man label|Close}} button to save your changes. Keep your media documents well structured in this directory.&lt;br /&gt;
&lt;br /&gt;
Now let's continue with adding some more data to the source. Double click on it (or press {{Man key press|ENTER}}) to open the source 'Interview with John Doe'. Look at the tab pages at the bottom of the source editor: Notes, Gallery, Data, Repositories, References. Surely you have a picture of yourself! Let's add it to the Gallery of this source.&lt;br /&gt;
&lt;br /&gt;
Click on the {{man label|Gallery}} tab, and then on the little '''Add''' icon just below the Notes tab. This opens a dialog to select the image of yourself. At the bottom of this dialog is a box '''Title:''' to set a nice title such as 'Picture of John Doe'. Entering a title does not change the file name. Make sure you select 'Convert to a relative path'. Press {{man button|OK}}. You will now see the ''Media Reference Editor''. The top of this dialog allows to select a region of the picture, eg when you have selected a group photo, it makes sense to indicate who on the photo is John Doe. You can use the mouse in the preview picture to select the part of the picture of interest (click down is corner 1 and click release is corner 2). Click {{man button|OK}} to save the image and go back to the source editor you were working on. &lt;br /&gt;
&lt;br /&gt;
Suppose you have a typed-out text of the interview. In that case you can add the textual document (odt, doc, rtf, etc ...) in the {{man label|Gallery}}, but you can also store the text as a {{man label|Note}} in Gramps. The good thing about using a note is that Gramps can search the text of notes with filters. So, click on the {{man label|Notes}} tab, click the '''Add''' icon, and you are presented with a basic editor that you can type or paste text into.&lt;br /&gt;
&lt;br /&gt;
When finished, press {{man button|OK}} on the source editor, and your source 'Interview with John Doe' now has also a note and picture.&lt;br /&gt;
&lt;br /&gt;
To see these, you would have to open the editor again. However, Gramps has a bottom pane that can show you information on the selected entry in the source view. For that, activate in the menu '''View''' the '''Bottombar'''. You will see a number of tabs which allow to show information. The elements showing information are called '''Gramplets''' in Gramps. Gramplets are small plugins that can perform all kinds of tasks. You can add one to the bottombar by using right-click with the mouse on the bottombar next to the tabs.&lt;br /&gt;
&lt;br /&gt;
== Time for your first Person ==&lt;br /&gt;
(Ver. 3.3.1-1)&lt;br /&gt;
&lt;br /&gt;
So much done, and not yet one single person is present in your family tree! Time to change that. Let's add yourself. As all information you will add comes from the source 'Interview with John Doe', we first store this in an easy to reach place. In the toolbar click on the {{man button|Clipboard}} icon to open the clipboard. Drag and drop, from the source view, the source 'Interview with John Doe', into the Clipboard. Your source is now stored in the Clipboard and this window can be closed.&lt;br /&gt;
&lt;br /&gt;
In the Navigator, click on the Person icon to see the person view. Note that on the Toolbar there is a pressed-in button (3rd button from the right) indicating the type of person view you have activated. Try the other possibility once to see what changes. Many Categories in the Navigator have more than one view!&lt;br /&gt;
&lt;br /&gt;
Click now on the {{man button|Add}} button on the Toolbar to add your first person. You now see the person editor, and the top part of this should be what you expect: all information about the name of this person. So, type in your given name, and your surname. If you are eg. Spanish and have a very long surname, then click on the {{man button|Add}} icon after the surname to enter multiple surnames. See the manual for more details. Now select your Gender.&lt;br /&gt;
&lt;br /&gt;
As you enter data, you need to add where you obtained this data (Source). For this, click on the {{man label|Sources}} tab, then open the Clipboard from the Toolbar, drag the source you stored in the clipboard, into the area under ID |Title | Auth | Page of the Person Editor. This will open up the 'Source Reference Editor'. The bottom part of this editor is the same source as already entered, but the top part is new, and contains the data on how the information of the person was found in this source and how certain you are of it. For this interview you can set {{man label|Confidence}} to ''Very High''.&lt;br /&gt;
&lt;br /&gt;
You already have a picture of yourself, as you added it to the source. You can now add this same picture to this Person record you are creating. For this, click on the {{man label|Gallery}} tab of the person editor, and click on the {{man button|Share}} button. This will open a list of all media objects. Select the one you made earlier and click {{man button|OK}} to store everything. You could also have used the clipboard: or by adding the picture there from the media view, or by adding the media ''reference'' in the clipboard by dragging it from the gallery of an object to the clipboard, and then using it from there where you need it. &lt;br /&gt;
&lt;br /&gt;
Save everything by clicking {{man button|OK}} until you see the main Gramps view again.&lt;br /&gt;
&lt;br /&gt;
== Events ==&lt;br /&gt;
(Ver. 3.3.1-1)&lt;br /&gt;
&lt;br /&gt;
Next, you will want to add your birthday. For this, open the person editor of yourself, by double clicking on your name. Note that the {{man label|Events}} tab is open. Click on the {{man button|Add}} icon to add an event. Gramps preselects the birth event for the first event that you want to add. Enter your birth date as: (12/31/1900 - Month/Day/Year) or (1 Jan 1900 - Day Month Year). If you use Day Month Year, the Month must be entered with the first 3 letters only or it must be spelled out completely.&lt;br /&gt;
&lt;br /&gt;
You can also click on the {{man button|Calendar}} button on the right. This window allows you to select the Day Month and Year with a drop-down menu. When using this make sure that the Quality is set to Regular and Type is also set to Regular. After entering your birth date in the calendar window, click on {{man button|OK}} to save it.&lt;br /&gt;
&lt;br /&gt;
Next, because you have no Places in your database you need to create one. Knowing the place where you were born, click on the {{man button|Add}} icon after the Place entry to create this place. Enter places as City/Town, Township, County, State, Country or any combination of these. Such as Germantown, German Township (Twp), Montgomery County (Co.), Ohio, USA. Being consistent when adding places will be helpful later when you can select these from the {{man button|Select an existing place}} icon.  Adding latitude and longitude will allow these places to be positioned on a map later.&lt;br /&gt;
&lt;br /&gt;
Don't forget to Source this. Click the {{man button|Source}} tab, open the '''Clipboard''', drag and drop your source, select the Confidence level, and save both the Source and then the new place with the {{man button|OK}} buttons.&lt;br /&gt;
&lt;br /&gt;
Note that the editor that has been open is the Event ''Reference'' Editor. This means that there is a global part that you can share with other people (the bottom of the editor), and a top part which is unique to the person. This top part is used to enter the {{man label|Role}} of the person in the event. In your own birth, you have the primary role. If you know the name of people helping in the birth, and you want to store these people also, you can share this event with them, with a Role of ''Aide''. You can type a custom role in the {{man label|Role}} field if you are not happy with the predefined possibilities.&lt;br /&gt;
&lt;br /&gt;
Again, add a source to the event via the {{man label|Sources}} tab, like you did before. As you have no real recollection of your own birth, the interview should not have confidence 'Very High'! You would need to add a birth document as source for that.&lt;br /&gt;
&lt;br /&gt;
When done, click {{man button|OK}} to save the event, and then again to save the person, and you have your first full person record.&lt;br /&gt;
&lt;br /&gt;
== Family ==&lt;br /&gt;
You now have entered yourself, time to add your parents. You could add your father and mother as you added yourself, and then connect them in a family, but most people will do things in one go via the {{icon|rela}}'''Relationship View''' or the {{icon|ance}}'''Pedigree View'''. Let's go to the Relationship view: select yourself in the person view, and then in the navigator, select the relationship view. This view has a toolbar that allows to add parents or to add a spouse. Click on the {{man button|Add parents}} icon to open the family editor.&lt;br /&gt;
&lt;br /&gt;
In the family editor you will see that you are present in the {{man label|Children}} tab. Use the {{man button|Add}} icon next to father and mother to add them as you have added yourself. Use the {{man button|Add}} icon in the {{man label|Children}} tab to add your siblings. You need to use drag-and-drop to sort siblings in the order as you want them to appear in reports (normally oldest to youngest I suppose). &lt;br /&gt;
&lt;br /&gt;
In the family editor you can also add events. We call these family events as they are shared by the two parents. Typically this is Engagement, Marriage, .... In these the Role is 'Family'. It is not needed to add these events also individually to the two parents! &lt;br /&gt;
&lt;br /&gt;
When done, click {{man button|OK}} to save the family, and you will return to the relationship view with all the extra information visible. From within this view you can navigate to other people and keep enlarging your family tree.&lt;br /&gt;
&lt;br /&gt;
== A report ==&lt;br /&gt;
Now that you have a first small family tree, make a report. Go to the oldest grandparent you have in the relationship view or the person view (you can set bookmarks on people and set a home person!). With this person selected, go in the menu {{man menu|Reports-&amp;gt;Text Reports-&amp;gt;[[Gramps_{{man version}}_Wiki_Manual_-_Reports_-_part_6#Detailed_Descendant_Report|Detailed Descendant Report]]}}, to create a nice textual descendant report.&lt;br /&gt;
&lt;br /&gt;
== What next?==&lt;br /&gt;
Gramps has many features, as you improve, take the time to go over the [[Gramps_{{man version}}_Wiki_Manual|user manual]] and learn more. Join and use the mailing list to discuss issues.&lt;br /&gt;
&lt;br /&gt;
We advise everyone to read the manual to learn all about using Gramps. Genealogy takes time, so learning the tools is not wasted time.&lt;br /&gt;
&lt;br /&gt;
However, if you really want the bare minimum to start, then read this:&lt;br /&gt;
* [[Gramps {{man version}} Wiki Manual - Entering and editing data: brief]]&lt;br /&gt;
&lt;br /&gt;
==Screencasts==&lt;br /&gt;
&lt;br /&gt;
===Gramps 3.2.5===&lt;br /&gt;
Screencast for the older Gramps 3.2.5.&lt;br /&gt;
* Gramps 3.2.5: [[Media:Edit family from pedigree view Gramps 3.2.5.ogg|Edit family (parents, children, siblings) from Pedigree View]]&lt;br /&gt;
* Gramps 3.2.5: [[Media:Add_family_from_pedigree_view_Gramps_3.2.5.ogg|Add family (parents, children, siblings) from Pedigree View]]&lt;br /&gt;
&lt;br /&gt;
==See also==&lt;br /&gt;
Related articles.&lt;br /&gt;
* [[Add a child]]&lt;br /&gt;
* [[Add a spouse]]&lt;br /&gt;
* [[Add a godfather-godmother]]&lt;br /&gt;
* [[Add a witness]]&lt;br /&gt;
* [[Genealogy Glossary]]&lt;br /&gt;
* [[Gramps Glossary]]&lt;br /&gt;
&lt;br /&gt;
[[Category:How do I...]]&lt;br /&gt;
[[Category:Genealogy]]&lt;br /&gt;
[[Category:Gramps Logic]]&lt;/div&gt;</summary>
		<author><name>Sten</name></author>
		
	</entry>
	<entry>
		<id>https://ftp.gramps-project.org/wiki/index.php?title=RU:%D0%9D%D0%B0%D1%87%D0%B0%D0%BB%D0%BE_%D0%B2_%D0%93%D0%B5%D0%BD%D0%B5%D0%B0%D0%BB%D0%BE%D0%B3%D0%B8%D0%B8&amp;diff=78886</id>
		<title>RU:Начало в Генеалогии</title>
		<link rel="alternate" type="text/html" href="https://ftp.gramps-project.org/wiki/index.php?title=RU:%D0%9D%D0%B0%D1%87%D0%B0%D0%BB%D0%BE_%D0%B2_%D0%93%D0%B5%D0%BD%D0%B5%D0%B0%D0%BB%D0%BE%D0%B3%D0%B8%D0%B8&amp;diff=78886"/>
		<updated>2020-06-03T13:41:38Z</updated>

		<summary type="html">&lt;p&gt;Sten: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{Languages|Main_Page/fr}}&lt;br /&gt;
&lt;br /&gt;
{{Languages ​​| Start with Genealogy}}&lt;br /&gt;
'''Как мне начать в Генеалогии, используя Gramps?'''&lt;br /&gt;
&lt;br /&gt;
== Подготовка ==&lt;br /&gt;
Если Вы только начинаете свою генеалогию, лучше начать с себя и добавлять других людей, соединяя их с Вами.&lt;br /&gt;
&lt;br /&gt;
'' {{man menu | Одной из самых важных вещей в генеалогии является то, что Вы записываете, как и где Вы нашли / получили информацию.}} '' Это называется источником. Это настолько важно потому, что позже Вам понадобится эта информации или Вы захотите обратиться к ней. Наличие источника у Вашей информации также создаст доверие к ней у других исследователей.&lt;br /&gt;
&lt;br /&gt;
Таким образом, если Вы начинаете с себя, Вы сами ''проводите собеседование'', что является основным источником информации по этому вопросу. Из этого первоисточника Вы получаете такие события, как день рождения, день крещения, выпускной и так далее. Источник событий позволяет Вам вычислить существовавшего человека как часть семьи.&lt;br /&gt;
&lt;br /&gt;
Таким образом, у нас есть наши основные термины для генеалогии: Источники, События, Люди и Семьи. Помимо этого, Gramps позволяет хранить Заметки, Места, Медиа (фотографии, фильмы, документы) и [[ Ru:Хранилища в Gramps | Хранилища]].&lt;br /&gt;
&lt;br /&gt;
Итак, давайте начнем с добавления информации в Gramps.&lt;br /&gt;
&lt;br /&gt;
== Создать Семейное древо ==&lt;br /&gt;
Здесь предполагается, что Вы только что установили Gramps и запускаете свое первое семейное дерево.&lt;br /&gt;
&lt;br /&gt;
В качестве первого шага запустите Gramps.&lt;br /&gt;
{{-}}&lt;br /&gt;
[[File:Manage-databases-icon-toolbar-no-familytree-loaded-51_ru.png|450px|thumb|right|Значок &amp;quot;Управление базами данных&amp;quot; на панели инструментов без загруженного семейного дерева]]&lt;br /&gt;
&lt;br /&gt;
Значок &amp;quot;Управление базами данных&amp;quot; Менеджера генеалогических деревьев под названием «Семейные древа - Gramps» будет отображаться на панели инструментов. Щёлкните значок генеалогического дерева, чтобы открыть менеджер семейных деревьев.&lt;br /&gt;
&lt;br /&gt;
[[Ru:Gramps_{{man version}}_Вики_Руководство_-_Начало#Выбор_семейного_древа| Выбор семейного древа]]&lt;br /&gt;
{{-}}&lt;br /&gt;
[[File:ManageFamilyTrees-51_ru.png|right|thumb|450px|Окно менеджера «Семейные древа - Gramps»]]&lt;br /&gt;
&lt;br /&gt;
В всплывающем окне менеджера генеалогических деревьев нажмите кнопку {{man button | Создать}} (справа). Теперь в столбце &amp;quot;Название семейного древа» (слева) введите имя для своего дерева и нажмите кнопку {{man button | Загрузить семейное древо}} (внизу справа). Gramps теперь откроется вместе с Вашим недавно созданным деревом.&lt;br /&gt;
&lt;br /&gt;
[[Ru:Gramps_{{man version}}_Вики_Руководство_-_Управление_семейными_древесами#Создание нового семейного древа|Создание нового семейного древа]]&lt;br /&gt;
{{-}}&lt;br /&gt;
[[File:MainWindow-PeopleCategory-PeopleTreeView-annotated-50.png|450px|thumb|right|Описание частей главного окна Gramps]]&lt;br /&gt;
&lt;br /&gt;
Главная страница Gramps разделена на отдельные панели: панель инструментов в верхней части, левая боковая панель (навигатор), позволяющая перемещаться по различным представлениям Ваших данных, область просмотра, в которой отображаются данные (в центре), и правая боковая панель (боковая панель) и нижняя панель (Bottombar), которая может быть использована для Gramplets, (о Gramplets рассказано позже). Большинство из этих панелей можно включить или выключить, перейдя к слову &amp;quot;Вид&amp;quot; в верхней части окна и отметив (вкл) или сняв флажок (выключить) вид.&lt;br /&gt;
&lt;br /&gt;
[[Ru:Gramps_{{man version}}_Вики_Руководство_-_Главное_окно#Главное_окно| Главное окно]]&lt;br /&gt;
{{-}}&lt;br /&gt;
&lt;br /&gt;
==Create a Source==&lt;br /&gt;
[[File:NewSource-editor-dialog-example-50.png|thumb|right|450px|New Source - editor dialog - example]]&lt;br /&gt;
&lt;br /&gt;
As you start with yourself, and the source is the interview with yourself, in the left sidebar called '''Navigator''' click on the [[Gramps_{{man version}}_Wiki_Manual_-_Categories#Sources_Category|source icon]] {{icon|sour34}}. In the toolbar click on {{man label|Add}} (or {{man key press|CTRL|INSERT}} on the keyboard) to open the [[Gramps_{{man version}}_Wiki_Manual_-_Entering_and_editing_data:_detailed_-_part_2#New_Source_dialog|source editor]].&lt;br /&gt;
&lt;br /&gt;
Assuming your name is ''John Doe'', you now make a source for the interview with yourself! So enter:&lt;br /&gt;
* Title: Interview with John Doe&lt;br /&gt;
* Author: John Doe&lt;br /&gt;
And click on {{man button|OK}}.&lt;br /&gt;
{{-}}&lt;br /&gt;
[[File:SourcesCategory-SourcesListView-example-50.png|right|450px|thumb|Sources Category - (List) View]]&lt;br /&gt;
&lt;br /&gt;
That is it, your first source. In the [[Gramps_{{man version}}_Wiki_Manual_-_Categories#Sources_Category|Source(list)view]] you will see your new source listed and that the entry has ID number that is unique to your source.&lt;br /&gt;
&lt;br /&gt;
[[Gramps_{{man version}}_Wiki_Manual_-_Entering_and_editing_data:_detailed_-_part_2#Editing_information_about_sources]]&lt;br /&gt;
&lt;br /&gt;
&amp;lt;!--&lt;br /&gt;
Before continuing, let's show how to change the interface. In the toolbar of Gramps, the last icon is the {{man button|Configure the active view}}, so click it to see how you can adapt the view. Activate the 'Last Changed' Column and by dragging, change eg 'Author' to be the second column. Most views have this configuration option, so change these to your liking!&lt;br /&gt;
--&amp;gt;&lt;br /&gt;
{{-}}&lt;br /&gt;
&lt;br /&gt;
==Add data to the source==&lt;br /&gt;
{{stub}}&lt;br /&gt;
(Ver. 3.3.1-1)&lt;br /&gt;
&lt;br /&gt;
Before you begin, you should know that Gramps does '''not''' store your media(pictures, videos, sounds, and documents etc..), it only stores a link to where the media is on your hard disk. So decide where you will store your pictures, videos, sounds, and documents. Then on the menu bar select {{man menu|Edit-&amp;gt;Preferences}} and the '''General''' tab. Set the value of {{man label|Base path for relative media paths}} to this directory. Click on the {{man label|Close}} button to save your changes. Keep your media documents well structured in this directory.&lt;br /&gt;
&lt;br /&gt;
Now let's continue with adding some more data to the source. Double click on it (or press {{Man key press|ENTER}}) to open the source 'Interview with John Doe'. Look at the tab pages at the bottom of the source editor: Notes, Gallery, Data, Repositories, References. Surely you have a picture of yourself! Let's add it to the Gallery of this source.&lt;br /&gt;
&lt;br /&gt;
Click on the {{man label|Gallery}} tab, and then on the little '''Add''' icon just below the Notes tab. This opens a dialog to select the image of yourself. At the bottom of this dialog is a box '''Title:''' to set a nice title such as 'Picture of John Doe'. Entering a title does not change the file name. Make sure you select 'Convert to a relative path'. Press {{man button|OK}}. You will now see the ''Media Reference Editor''. The top of this dialog allows to select a region of the picture, eg when you have selected a group photo, it makes sense to indicate who on the photo is John Doe. You can use the mouse in the preview picture to select the part of the picture of interest (click down is corner 1 and click release is corner 2). Click {{man button|OK}} to save the image and go back to the source editor you were working on. &lt;br /&gt;
&lt;br /&gt;
Suppose you have a typed-out text of the interview. In that case you can add the textual document (odt, doc, rtf, etc ...) in the {{man label|Gallery}}, but you can also store the text as a {{man label|Note}} in Gramps. The good thing about using a note is that Gramps can search the text of notes with filters. So, click on the {{man label|Notes}} tab, click the '''Add''' icon, and you are presented with a basic editor that you can type or paste text into.&lt;br /&gt;
&lt;br /&gt;
When finished, press {{man button|OK}} on the source editor, and your source 'Interview with John Doe' now has also a note and picture.&lt;br /&gt;
&lt;br /&gt;
To see these, you would have to open the editor again. However, Gramps has a bottom pane that can show you information on the selected entry in the source view. For that, activate in the menu '''View''' the '''Bottombar'''. You will see a number of tabs which allow to show information. The elements showing information are called '''Gramplets''' in Gramps. Gramplets are small plugins that can perform all kinds of tasks. You can add one to the bottombar by using right-click with the mouse on the bottombar next to the tabs.&lt;br /&gt;
&lt;br /&gt;
== Time for your first Person ==&lt;br /&gt;
(Ver. 3.3.1-1)&lt;br /&gt;
&lt;br /&gt;
So much done, and not yet one single person is present in your family tree! Time to change that. Let's add yourself. As all information you will add comes from the source 'Interview with John Doe', we first store this in an easy to reach place. In the toolbar click on the {{man button|Clipboard}} icon to open the clipboard. Drag and drop, from the source view, the source 'Interview with John Doe', into the Clipboard. Your source is now stored in the Clipboard and this window can be closed.&lt;br /&gt;
&lt;br /&gt;
In the Navigator, click on the Person icon to see the person view. Note that on the Toolbar there is a pressed-in button (3rd button from the right) indicating the type of person view you have activated. Try the other possibility once to see what changes. Many Categories in the Navigator have more than one view!&lt;br /&gt;
&lt;br /&gt;
Click now on the {{man button|Add}} button on the Toolbar to add your first person. You now see the person editor, and the top part of this should be what you expect: all information about the name of this person. So, type in your given name, and your surname. If you are eg. Spanish and have a very long surname, then click on the {{man button|Add}} icon after the surname to enter multiple surnames. See the manual for more details. Now select your Gender.&lt;br /&gt;
&lt;br /&gt;
As you enter data, you need to add where you obtained this data (Source). For this, click on the {{man label|Sources}} tab, then open the Clipboard from the Toolbar, drag the source you stored in the clipboard, into the area under ID |Title | Auth | Page of the Person Editor. This will open up the 'Source Reference Editor'. The bottom part of this editor is the same source as already entered, but the top part is new, and contains the data on how the information of the person was found in this source and how certain you are of it. For this interview you can set {{man label|Confidence}} to ''Very High''.&lt;br /&gt;
&lt;br /&gt;
You already have a picture of yourself, as you added it to the source. You can now add this same picture to this Person record you are creating. For this, click on the {{man label|Gallery}} tab of the person editor, and click on the {{man button|Share}} button. This will open a list of all media objects. Select the one you made earlier and click {{man button|OK}} to store everything. You could also have used the clipboard: or by adding the picture there from the media view, or by adding the media ''reference'' in the clipboard by dragging it from the gallery of an object to the clipboard, and then using it from there where you need it. &lt;br /&gt;
&lt;br /&gt;
Save everything by clicking {{man button|OK}} until you see the main Gramps view again.&lt;br /&gt;
&lt;br /&gt;
== Events ==&lt;br /&gt;
(Ver. 3.3.1-1)&lt;br /&gt;
&lt;br /&gt;
Next, you will want to add your birthday. For this, open the person editor of yourself, by double clicking on your name. Note that the {{man label|Events}} tab is open. Click on the {{man button|Add}} icon to add an event. Gramps preselects the birth event for the first event that you want to add. Enter your birth date as: (12/31/1900 - Month/Day/Year) or (1 Jan 1900 - Day Month Year). If you use Day Month Year, the Month must be entered with the first 3 letters only or it must be spelled out completely.&lt;br /&gt;
&lt;br /&gt;
You can also click on the {{man button|Calendar}} button on the right. This window allows you to select the Day Month and Year with a drop-down menu. When using this make sure that the Quality is set to Regular and Type is also set to Regular. After entering your birth date in the calendar window, click on {{man button|OK}} to save it.&lt;br /&gt;
&lt;br /&gt;
Next, because you have no Places in your database you need to create one. Knowing the place where you were born, click on the {{man button|Add}} icon after the Place entry to create this place. Enter places as City/Town, Township, County, State, Country or any combination of these. Such as Germantown, German Township (Twp), Montgomery County (Co.), Ohio, USA. Being consistent when adding places will be helpful later when you can select these from the {{man button|Select an existing place}} icon.  Adding latitude and longitude will allow these places to be positioned on a map later.&lt;br /&gt;
&lt;br /&gt;
Don't forget to Source this. Click the {{man button|Source}} tab, open the '''Clipboard''', drag and drop your source, select the Confidence level, and save both the Source and then the new place with the {{man button|OK}} buttons.&lt;br /&gt;
&lt;br /&gt;
Note that the editor that has been open is the Event ''Reference'' Editor. This means that there is a global part that you can share with other people (the bottom of the editor), and a top part which is unique to the person. This top part is used to enter the {{man label|Role}} of the person in the event. In your own birth, you have the primary role. If you know the name of people helping in the birth, and you want to store these people also, you can share this event with them, with a Role of ''Aide''. You can type a custom role in the {{man label|Role}} field if you are not happy with the predefined possibilities.&lt;br /&gt;
&lt;br /&gt;
Again, add a source to the event via the {{man label|Sources}} tab, like you did before. As you have no real recollection of your own birth, the interview should not have confidence 'Very High'! You would need to add a birth document as source for that.&lt;br /&gt;
&lt;br /&gt;
When done, click {{man button|OK}} to save the event, and then again to save the person, and you have your first full person record.&lt;br /&gt;
&lt;br /&gt;
== Family ==&lt;br /&gt;
You now have entered yourself, time to add your parents. You could add your father and mother as you added yourself, and then connect them in a family, but most people will do things in one go via the {{icon|rela}}'''Relationship View''' or the {{icon|ance}}'''Pedigree View'''. Let's go to the Relationship view: select yourself in the person view, and then in the navigator, select the relationship view. This view has a toolbar that allows to add parents or to add a spouse. Click on the {{man button|Add parents}} icon to open the family editor.&lt;br /&gt;
&lt;br /&gt;
In the family editor you will see that you are present in the {{man label|Children}} tab. Use the {{man button|Add}} icon next to father and mother to add them as you have added yourself. Use the {{man button|Add}} icon in the {{man label|Children}} tab to add your siblings. You need to use drag-and-drop to sort siblings in the order as you want them to appear in reports (normally oldest to youngest I suppose). &lt;br /&gt;
&lt;br /&gt;
In the family editor you can also add events. We call these family events as they are shared by the two parents. Typically this is Engagement, Marriage, .... In these the Role is 'Family'. It is not needed to add these events also individually to the two parents! &lt;br /&gt;
&lt;br /&gt;
When done, click {{man button|OK}} to save the family, and you will return to the relationship view with all the extra information visible. From within this view you can navigate to other people and keep enlarging your family tree.&lt;br /&gt;
&lt;br /&gt;
== A report ==&lt;br /&gt;
Now that you have a first small family tree, make a report. Go to the oldest grandparent you have in the relationship view or the person view (you can set bookmarks on people and set a home person!). With this person selected, go in the menu {{man menu|Reports-&amp;gt;Text Reports-&amp;gt;[[Gramps_{{man version}}_Wiki_Manual_-_Reports_-_part_6#Detailed_Descendant_Report|Detailed Descendant Report]]}}, to create a nice textual descendant report.&lt;br /&gt;
&lt;br /&gt;
== What next?==&lt;br /&gt;
Gramps has many features, as you improve, take the time to go over the [[Gramps_{{man version}}_Wiki_Manual|user manual]] and learn more. Join and use the mailing list to discuss issues.&lt;br /&gt;
&lt;br /&gt;
We advise everyone to read the manual to learn all about using Gramps. Genealogy takes time, so learning the tools is not wasted time.&lt;br /&gt;
&lt;br /&gt;
However, if you really want the bare minimum to start, then read this:&lt;br /&gt;
* [[Gramps {{man version}} Wiki Manual - Entering and editing data: brief]]&lt;br /&gt;
&lt;br /&gt;
==Screencasts==&lt;br /&gt;
&lt;br /&gt;
===Gramps 3.2.5===&lt;br /&gt;
Screencast for the older Gramps 3.2.5.&lt;br /&gt;
* Gramps 3.2.5: [[Media:Edit family from pedigree view Gramps 3.2.5.ogg|Edit family (parents, children, siblings) from Pedigree View]]&lt;br /&gt;
* Gramps 3.2.5: [[Media:Add_family_from_pedigree_view_Gramps_3.2.5.ogg|Add family (parents, children, siblings) from Pedigree View]]&lt;br /&gt;
&lt;br /&gt;
==See also==&lt;br /&gt;
Related articles.&lt;br /&gt;
* [[Add a child]]&lt;br /&gt;
* [[Add a spouse]]&lt;br /&gt;
* [[Add a godfather-godmother]]&lt;br /&gt;
* [[Add a witness]]&lt;br /&gt;
* [[Genealogy Glossary]]&lt;br /&gt;
* [[Gramps Glossary]]&lt;br /&gt;
&lt;br /&gt;
[[Category:How do I...]]&lt;br /&gt;
[[Category:Genealogy]]&lt;br /&gt;
[[Category:Gramps Logic]]&lt;/div&gt;</summary>
		<author><name>Sten</name></author>
		
	</entry>
	<entry>
		<id>https://ftp.gramps-project.org/wiki/index.php?title=Addon:Web_Connect_Pack&amp;diff=78882</id>
		<title>Addon:Web Connect Pack</title>
		<link rel="alternate" type="text/html" href="https://ftp.gramps-project.org/wiki/index.php?title=Addon:Web_Connect_Pack&amp;diff=78882"/>
		<updated>2020-06-03T13:37:31Z</updated>

		<summary type="html">&lt;p&gt;Sten: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{Third-party plugin}}&lt;br /&gt;
[[File:Web-connect-pack-UK-menu-51.png|thumb|right|450px|Web Connect Pack - UK websites menu]]&lt;br /&gt;
The ''Web Connect Packs'' contain a collection of Web sites for [[Web_Connect_Pack#Available_Web_connect_Packs|various countries]].&lt;br /&gt;
 &lt;br /&gt;
==Install==&lt;br /&gt;
Before using you must install libwebconnect library and one of language packs.&lt;br /&gt;
===Prerequisites===&lt;br /&gt;
* Requires '' 'libwebconnect' '' be installed.&lt;br /&gt;
'' 'libwebconnect' '' is the support ''Library for web site collections''.&lt;br /&gt;
&lt;br /&gt;
===Installation===&lt;br /&gt;
* Open Plugin Manager (Menu Edit -&amp;gt; Preferences or Help -&amp;gt; Plugin Manager)&lt;br /&gt;
* Select library '' 'libwebconnect' '' and install it&lt;br /&gt;
* Select needed language pack and install it&lt;br /&gt;
&lt;br /&gt;
{{man warn|Install the country you require only|otherwise many websites will be duplicated in the &amp;quot;Web Connection&amp;quot; menu.}}&lt;br /&gt;
&lt;br /&gt;
==Available Web connect Packs==&lt;br /&gt;
Available Web connect Packs:&lt;br /&gt;
*DEWebConnectPack&lt;br /&gt;
** See also [[Resources_and_related_sites#German|German resources]]&lt;br /&gt;
*FRWebConnectPack&lt;br /&gt;
** See also [[Resources_and_related_sites#French|French resources]]&lt;br /&gt;
*NLWebConnectPack&lt;br /&gt;
** See also [[Resources_and_related_sites#Netherlands|Netherlands resources]]&lt;br /&gt;
*RUWebConnectPack&lt;br /&gt;
** See also [[Resources_and_related_sites#Russian|Russian resources]]&lt;br /&gt;
*UKWebConnectPack&lt;br /&gt;
** See also [[Resources_and_related_sites#General_information_sites |General information sites]]&lt;br /&gt;
*USWebConnectPack&lt;br /&gt;
** Includes [[Resources_and_related_sites#Australian|Australian sources]]/French(selected)/Norway&lt;br /&gt;
** See also [[Resources_and_related_sites#United_States_of_America|US resources]]&lt;br /&gt;
&lt;br /&gt;
==Usage==&lt;br /&gt;
From the {{man label|{{icon|peop}} '''People'''}} Category view select a person then right-click and from the context menu select the {{man label|Web Connection}} entry to show the website choices that you can search on.  Selecting a website will send the selected persons following data:&lt;br /&gt;
* Surname&lt;br /&gt;
* Given name&lt;br /&gt;
* Middle name&lt;br /&gt;
* Birth Date&lt;br /&gt;
* Death Date&lt;br /&gt;
to be queried and the result if any will be displayed.&lt;br /&gt;
&lt;br /&gt;
==Issues==&lt;br /&gt;
If the external website that &amp;quot;Web Connect Pack&amp;quot; queries against changes its query method, please raise an issue on the bug tracker. &lt;br /&gt;
&lt;br /&gt;
* {{bug|5454}}: Links with some open databases (possible links to add to web connect packs)&lt;br /&gt;
* {{bug|7391}}: WebConnect Addons create replicated menu entries&lt;br /&gt;
* {{bug|8821}}: UKWebPack does not search Family Search site&lt;br /&gt;
&lt;br /&gt;
[[Category:Plugins]]&lt;br /&gt;
[[Category:Developers/General]]&lt;br /&gt;
[[Category:Reports]]&lt;/div&gt;</summary>
		<author><name>Sten</name></author>
		
	</entry>
	<entry>
		<id>https://ftp.gramps-project.org/wiki/index.php?title=Addon:Web_Connect_Pack&amp;diff=78881</id>
		<title>Addon:Web Connect Pack</title>
		<link rel="alternate" type="text/html" href="https://ftp.gramps-project.org/wiki/index.php?title=Addon:Web_Connect_Pack&amp;diff=78881"/>
		<updated>2020-06-03T13:33:33Z</updated>

		<summary type="html">&lt;p&gt;Sten: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{Third-party plugin}}&lt;br /&gt;
[[File:Web-connect-pack-UK-menu-51.png|thumb|right|450px|Web Connect Pack - UK websites menu]]&lt;br /&gt;
The ''Web Connect Packs'' contain a collection of Web sites for [[Web_Connect_Pack#Available_Web_connect_Packs|various countries]].&lt;br /&gt;
 &lt;br /&gt;
==Install==&lt;br /&gt;
Before using you must install libwebconnect library and one of language packs.&lt;br /&gt;
===Prerequisites===&lt;br /&gt;
* Requires &amp;quot;libwebconnect&amp;quot; be installed.&lt;br /&gt;
'' 'libwebconnect' '' is the support ''Library for web site collections''.&lt;br /&gt;
&lt;br /&gt;
* Open Plugin Manager (Menu Edit -&amp;gt; Preferences or Help -&amp;gt; Plugin Manager)&lt;br /&gt;
* Select library '''libwebconnect''' and install it&lt;br /&gt;
* Select needed language pack and install it&lt;br /&gt;
&lt;br /&gt;
{{man warn|Install the country you require only|otherwise many websites will be duplicated in the &amp;quot;Web Connection&amp;quot; menu.}}&lt;br /&gt;
&lt;br /&gt;
==Available Web connect Packs==&lt;br /&gt;
Available Web connect Packs:&lt;br /&gt;
*DEWebConnectPack&lt;br /&gt;
** See also [[Resources_and_related_sites#German|German resources]]&lt;br /&gt;
*FRWebConnectPack&lt;br /&gt;
** See also [[Resources_and_related_sites#French|French resources]]&lt;br /&gt;
*NLWebConnectPack&lt;br /&gt;
** See also [[Resources_and_related_sites#Netherlands|Netherlands resources]]&lt;br /&gt;
*RUWebConnectPack&lt;br /&gt;
** See also [[Resources_and_related_sites#Russian|Russian resources]]&lt;br /&gt;
*UKWebConnectPack&lt;br /&gt;
** See also [[Resources_and_related_sites#General_information_sites |General information sites]]&lt;br /&gt;
*USWebConnectPack&lt;br /&gt;
** Includes [[Resources_and_related_sites#Australian|Australian sources]]/French(selected)/Norway&lt;br /&gt;
** See also [[Resources_and_related_sites#United_States_of_America|US resources]]&lt;br /&gt;
&lt;br /&gt;
==Usage==&lt;br /&gt;
From the {{man label|{{icon|peop}} '''People'''}} Category view select a person then right-click and from the context menu select the {{man label|Web Connection}} entry to show the website choices that you can search on.  Selecting a website will send the selected persons following data:&lt;br /&gt;
* Surname&lt;br /&gt;
* Given name&lt;br /&gt;
* Middle name&lt;br /&gt;
* Birth Date&lt;br /&gt;
* Death Date&lt;br /&gt;
to be queried and the result if any will be displayed.&lt;br /&gt;
&lt;br /&gt;
==Issues==&lt;br /&gt;
If the external website that &amp;quot;Web Connect Pack&amp;quot; queries against changes its query method, please raise an issue on the bug tracker. &lt;br /&gt;
&lt;br /&gt;
* {{bug|5454}}: Links with some open databases (possible links to add to web connect packs)&lt;br /&gt;
* {{bug|7391}}: WebConnect Addons create replicated menu entries&lt;br /&gt;
* {{bug|8821}}: UKWebPack does not search Family Search site&lt;br /&gt;
&lt;br /&gt;
[[Category:Plugins]]&lt;br /&gt;
[[Category:Developers/General]]&lt;br /&gt;
[[Category:Reports]]&lt;/div&gt;</summary>
		<author><name>Sten</name></author>
		
	</entry>
	<entry>
		<id>https://ftp.gramps-project.org/wiki/index.php?title=Addon:Web_Connect_Pack&amp;diff=78880</id>
		<title>Addon:Web Connect Pack</title>
		<link rel="alternate" type="text/html" href="https://ftp.gramps-project.org/wiki/index.php?title=Addon:Web_Connect_Pack&amp;diff=78880"/>
		<updated>2020-06-03T13:31:35Z</updated>

		<summary type="html">&lt;p&gt;Sten: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{Third-party plugin}}&lt;br /&gt;
[[File:Web-connect-pack-UK-menu-51.png|thumb|right|450px|Web Connect Pack - UK websites menu]]&lt;br /&gt;
The ''Web Connect Packs'' contain a collection of Web sites for [[Web_Connect_Pack#Available_Web_connect_Packs|various countries]].&lt;br /&gt;
 &lt;br /&gt;
==Install==&lt;br /&gt;
Before using you must install libwebconnect library and one of language packs.&lt;br /&gt;
===Prerequisites===&lt;br /&gt;
* Requires &amp;quot;libwebconnect&amp;quot; be installed.&lt;br /&gt;
'' 'libwebconnect' '' is the support ''Library for web site collections''.&lt;br /&gt;
&lt;br /&gt;
1. Open Plugin Manager (Menu Edit -&amp;gt; Preferences or Help -&amp;gt; Plugin Manager)&lt;br /&gt;
2. Select library '''libwebconnect''' and install it&lt;br /&gt;
3. Select needed language pack and install it&lt;br /&gt;
&lt;br /&gt;
{{man warn|Install the country you require only|otherwise many websites will be duplicated in the &amp;quot;Web Connection&amp;quot; menu.}}&lt;br /&gt;
&lt;br /&gt;
==Available Web connect Packs==&lt;br /&gt;
{{man warn|Only install the country you require|otherwise many websites will be duplicated in the &amp;quot;Web Connection&amp;quot; menu.}}&lt;br /&gt;
Available Web connect Packs:&lt;br /&gt;
*DEWebConnectPack&lt;br /&gt;
** See also [[Resources_and_related_sites#German|German resources]]&lt;br /&gt;
*FRWebConnectPack&lt;br /&gt;
** See also [[Resources_and_related_sites#French|French resources]]&lt;br /&gt;
*NLWebConnectPack&lt;br /&gt;
** See also [[Resources_and_related_sites#Netherlands|Netherlands resources]]&lt;br /&gt;
*RUWebConnectPack&lt;br /&gt;
** See also [[Resources_and_related_sites#Russian|Russian resources]]&lt;br /&gt;
*UKWebConnectPack&lt;br /&gt;
** See also [[Resources_and_related_sites#General_information_sites |General information sites]]&lt;br /&gt;
*USWebConnectPack&lt;br /&gt;
** Includes [[Resources_and_related_sites#Australian|Australian sources]]/French(selected)/Norway&lt;br /&gt;
** See also [[Resources_and_related_sites#United_States_of_America|US resources]]&lt;br /&gt;
&lt;br /&gt;
==Usage==&lt;br /&gt;
From the {{man label|{{icon|peop}} '''People'''}} Category view select a person then right-click and from the context menu select the {{man label|Web Connection}} entry to show the website choices that you can search on.  Selecting a website will send the selected persons following data:&lt;br /&gt;
* Surname&lt;br /&gt;
* Given name&lt;br /&gt;
* Middle name&lt;br /&gt;
* Birth Date&lt;br /&gt;
* Death Date&lt;br /&gt;
to be queried and the result if any will be displayed.&lt;br /&gt;
&lt;br /&gt;
==Issues==&lt;br /&gt;
If the external website that &amp;quot;Web Connect Pack&amp;quot; queries against changes its query method, please raise an issue on the bug tracker. &lt;br /&gt;
&lt;br /&gt;
* {{bug|5454}}: Links with some open databases (possible links to add to web connect packs)&lt;br /&gt;
* {{bug|7391}}: WebConnect Addons create replicated menu entries&lt;br /&gt;
* {{bug|8821}}: UKWebPack does not search Family Search site&lt;br /&gt;
&lt;br /&gt;
[[Category:Plugins]]&lt;br /&gt;
[[Category:Developers/General]]&lt;br /&gt;
[[Category:Reports]]&lt;/div&gt;</summary>
		<author><name>Sten</name></author>
		
	</entry>
	<entry>
		<id>https://ftp.gramps-project.org/wiki/index.php?title=Addon:Web_Connect_Pack&amp;diff=78879</id>
		<title>Addon:Web Connect Pack</title>
		<link rel="alternate" type="text/html" href="https://ftp.gramps-project.org/wiki/index.php?title=Addon:Web_Connect_Pack&amp;diff=78879"/>
		<updated>2020-06-03T13:30:22Z</updated>

		<summary type="html">&lt;p&gt;Sten: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{Third-party plugin}}&lt;br /&gt;
[[File:Web-connect-pack-UK-menu-51.png|thumb|right|450px|Web Connect Pack - UK websites menu]]&lt;br /&gt;
The ''Web Connect Packs'' contain a collection of Web sites for [[Web_Connect_Pack#Available_Web_connect_Packs|various countries]].&lt;br /&gt;
 &lt;br /&gt;
==Install==&lt;br /&gt;
Before using you must install libwebconnect library and one of language packs.&lt;br /&gt;
===Prerequisites===&lt;br /&gt;
* Requires &amp;quot;libwebconnect&amp;quot; be installed.&lt;br /&gt;
'' 'libwebconnect' '' is the support ''Library for web site collections''.&lt;br /&gt;
&lt;br /&gt;
1. Open Plugin Manager (Menu Edit -&amp;gt; Preferences or Help -&amp;gt; Plugin Manager),&lt;br /&gt;
2. Select library '''libwebconnect''' and install it,&lt;br /&gt;
3. Select needed language pack and install it.&lt;br /&gt;
&lt;br /&gt;
{{man warn|Install the country you require only|otherwise many websites will be duplicated in the &amp;quot;Web Connection&amp;quot; menu.}}&lt;br /&gt;
&lt;br /&gt;
==Available Web connect Packs==&lt;br /&gt;
{{man warn|Only install the country you require|otherwise many websites will be duplicated in the &amp;quot;Web Connection&amp;quot; menu.}}&lt;br /&gt;
Available Web connect Packs:&lt;br /&gt;
*DEWebConnectPack&lt;br /&gt;
** See also [[Resources_and_related_sites#German|German resources]]&lt;br /&gt;
*FRWebConnectPack&lt;br /&gt;
** See also [[Resources_and_related_sites#French|French resources]]&lt;br /&gt;
*NLWebConnectPack&lt;br /&gt;
** See also [[Resources_and_related_sites#Netherlands|Netherlands resources]]&lt;br /&gt;
*RUWebConnectPack&lt;br /&gt;
** See also [[Resources_and_related_sites#Russian|Russian resources]]&lt;br /&gt;
*UKWebConnectPack&lt;br /&gt;
** See also [[Resources_and_related_sites#General_information_sites |General information sites]]&lt;br /&gt;
*USWebConnectPack&lt;br /&gt;
** Includes [[Resources_and_related_sites#Australian|Australian sources]]/French(selected)/Norway&lt;br /&gt;
** See also [[Resources_and_related_sites#United_States_of_America|US resources]]&lt;br /&gt;
&lt;br /&gt;
==Usage==&lt;br /&gt;
From the {{man label|{{icon|peop}} '''People'''}} Category view select a person then right-click and from the context menu select the {{man label|Web Connection}} entry to show the website choices that you can search on.  Selecting a website will send the selected persons following data:&lt;br /&gt;
* Surname&lt;br /&gt;
* Given name&lt;br /&gt;
* Middle name&lt;br /&gt;
* Birth Date&lt;br /&gt;
* Death Date&lt;br /&gt;
to be queried and the result if any will be displayed.&lt;br /&gt;
&lt;br /&gt;
==Issues==&lt;br /&gt;
If the external website that &amp;quot;Web Connect Pack&amp;quot; queries against changes its query method, please raise an issue on the bug tracker. &lt;br /&gt;
&lt;br /&gt;
* {{bug|5454}}: Links with some open databases (possible links to add to web connect packs)&lt;br /&gt;
* {{bug|7391}}: WebConnect Addons create replicated menu entries&lt;br /&gt;
* {{bug|8821}}: UKWebPack does not search Family Search site&lt;br /&gt;
&lt;br /&gt;
[[Category:Plugins]]&lt;br /&gt;
[[Category:Developers/General]]&lt;br /&gt;
[[Category:Reports]]&lt;/div&gt;</summary>
		<author><name>Sten</name></author>
		
	</entry>
	<entry>
		<id>https://ftp.gramps-project.org/wiki/index.php?title=Addon:Web_Connect_Pack&amp;diff=78878</id>
		<title>Addon:Web Connect Pack</title>
		<link rel="alternate" type="text/html" href="https://ftp.gramps-project.org/wiki/index.php?title=Addon:Web_Connect_Pack&amp;diff=78878"/>
		<updated>2020-06-03T13:28:40Z</updated>

		<summary type="html">&lt;p&gt;Sten: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{Third-party plugin}}&lt;br /&gt;
[[File:Web-connect-pack-UK-menu-51.png|thumb|right|450px|Web Connect Pack - UK websites menu]]&lt;br /&gt;
The ''Web Connect Packs'' contain a collection of Web sites for [[Web_Connect_Pack#Available_Web_connect_Packs|various countries]].&lt;br /&gt;
 &lt;br /&gt;
==Install==&lt;br /&gt;
Before using you must install libwebconnect library and one of language packs.&lt;br /&gt;
===Prerequisites===&lt;br /&gt;
* Requires '''libwebconnect''' be installed.&lt;br /&gt;
'''libwebconnect''' is the support ''Library for web site collections''.&lt;br /&gt;
&lt;br /&gt;
1. Open Plugin Manager (Menu Edit -&amp;gt; Preferences or Help -&amp;gt; Plugin Manager),&lt;br /&gt;
2. Select library '''libwebconnect''' and install it,&lt;br /&gt;
3. Select needed language pack and install it.&lt;br /&gt;
&lt;br /&gt;
{{man warn|Install the country you require only|otherwise many websites will be duplicated in the &amp;quot;Web Connection&amp;quot; menu.}}&lt;br /&gt;
&lt;br /&gt;
==Available Web connect Packs==&lt;br /&gt;
{{man warn|Only install the country you require|otherwise many websites will be duplicated in the &amp;quot;Web Connection&amp;quot; menu.}}&lt;br /&gt;
Available Web connect Packs:&lt;br /&gt;
*DEWebConnectPack&lt;br /&gt;
** See also [[Resources_and_related_sites#German|German resources]]&lt;br /&gt;
*FRWebConnectPack&lt;br /&gt;
** See also [[Resources_and_related_sites#French|French resources]]&lt;br /&gt;
*NLWebConnectPack&lt;br /&gt;
** See also [[Resources_and_related_sites#Netherlands|Netherlands resources]]&lt;br /&gt;
*RUWebConnectPack&lt;br /&gt;
** See also [[Resources_and_related_sites#Russian|Russian resources]]&lt;br /&gt;
*UKWebConnectPack&lt;br /&gt;
** See also [[Resources_and_related_sites#General_information_sites |General information sites]]&lt;br /&gt;
*USWebConnectPack&lt;br /&gt;
** Includes [[Resources_and_related_sites#Australian|Australian sources]]/French(selected)/Norway&lt;br /&gt;
** See also [[Resources_and_related_sites#United_States_of_America|US resources]]&lt;br /&gt;
&lt;br /&gt;
==Usage==&lt;br /&gt;
From the {{man label|{{icon|peop}} '''People'''}} Category view select a person then right-click and from the context menu select the {{man label|Web Connection}} entry to show the website choices that you can search on.  Selecting a website will send the selected persons following data:&lt;br /&gt;
* Surname&lt;br /&gt;
* Given name&lt;br /&gt;
* Middle name&lt;br /&gt;
* Birth Date&lt;br /&gt;
* Death Date&lt;br /&gt;
to be queried and the result if any will be displayed.&lt;br /&gt;
&lt;br /&gt;
==Issues==&lt;br /&gt;
If the external website that &amp;quot;Web Connect Pack&amp;quot; queries against changes its query method, please raise an issue on the bug tracker. &lt;br /&gt;
&lt;br /&gt;
* {{bug|5454}}: Links with some open databases (possible links to add to web connect packs)&lt;br /&gt;
* {{bug|7391}}: WebConnect Addons create replicated menu entries&lt;br /&gt;
* {{bug|8821}}: UKWebPack does not search Family Search site&lt;br /&gt;
&lt;br /&gt;
[[Category:Plugins]]&lt;br /&gt;
[[Category:Developers/General]]&lt;br /&gt;
[[Category:Reports]]&lt;/div&gt;</summary>
		<author><name>Sten</name></author>
		
	</entry>
	<entry>
		<id>https://ftp.gramps-project.org/wiki/index.php?title=RU:%D0%9D%D0%B0%D1%87%D0%B0%D0%BB%D0%BE_%D0%B2_%D0%93%D0%B5%D0%BD%D0%B5%D0%B0%D0%BB%D0%BE%D0%B3%D0%B8%D0%B8&amp;diff=78877</id>
		<title>RU:Начало в Генеалогии</title>
		<link rel="alternate" type="text/html" href="https://ftp.gramps-project.org/wiki/index.php?title=RU:%D0%9D%D0%B0%D1%87%D0%B0%D0%BB%D0%BE_%D0%B2_%D0%93%D0%B5%D0%BD%D0%B5%D0%B0%D0%BB%D0%BE%D0%B3%D0%B8%D0%B8&amp;diff=78877"/>
		<updated>2020-06-03T13:01:42Z</updated>

		<summary type="html">&lt;p&gt;Sten: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{Languages ​​| RU:Начало в Генеалогии}}&lt;br /&gt;
'''Как мне начать в Генеалогии, используя Gramps?'''&lt;br /&gt;
&lt;br /&gt;
== Подготовка ==&lt;br /&gt;
Если Вы только начинаете свою генеалогию, лучше начать с себя и добавлять других людей, соединяя их с Вами.&lt;br /&gt;
&lt;br /&gt;
'' {{man menu | Одной из самых важных вещей в генеалогии является то, что Вы записываете, как и где Вы нашли / получили информацию.}} '' Это называется источником. Это настолько важно потому, что позже Вам понадобится эта информации или Вы захотите обратиться к ней. Наличие источника у Вашей информации также создаст доверие к ней у других исследователей.&lt;br /&gt;
&lt;br /&gt;
Таким образом, если Вы начинаете с себя, Вы сами ''проводите собеседование'', что является основным источником информации по этому вопросу. Из этого первоисточника Вы получаете такие события, как день рождения, день крещения, выпускной и так далее. Источник событий позволяет Вам вычислить существовавшего человека как часть семьи.&lt;br /&gt;
&lt;br /&gt;
Таким образом, у нас есть наши основные термины для генеалогии: Источники, События, Люди и Семьи. Помимо этого, Gramps позволяет хранить Заметки, Места, Медиа (фотографии, фильмы, документы) и [[ Ru:Хранилища в Gramps | Хранилища]].&lt;br /&gt;
&lt;br /&gt;
Итак, давайте начнем с добавления информации в Gramps.&lt;br /&gt;
&lt;br /&gt;
== Создать Семейное древо ==&lt;br /&gt;
Здесь предполагается, что Вы только что установили Gramps и запускаете свое первое семейное дерево.&lt;br /&gt;
&lt;br /&gt;
В качестве первого шага запустите Gramps.&lt;br /&gt;
{{-}}&lt;br /&gt;
[[File:Manage-databases-icon-toolbar-no-familytree-loaded-51_ru.png|450px|thumb|right|Значок &amp;quot;Управление базами данных&amp;quot; на панели инструментов без загруженного семейного дерева]]&lt;br /&gt;
&lt;br /&gt;
Значок &amp;quot;Управление базами данных&amp;quot; Менеджера генеалогических деревьев под названием «Семейные древа - Gramps» будет отображаться на панели инструментов. Щёлкните значок генеалогического дерева, чтобы открыть менеджер семейных деревьев.&lt;br /&gt;
&lt;br /&gt;
[[Ru:Gramps_{{man version}}_Вики_Руководство_-_Начало#Выбор_семейного_древа| Выбор семейного древа]]&lt;br /&gt;
{{-}}&lt;br /&gt;
[[File:ManageFamilyTrees-51_ru.png|right|thumb|450px|Окно менеджера «Семейные древа - Gramps»]]&lt;br /&gt;
&lt;br /&gt;
В всплывающем окне менеджера генеалогических деревьев нажмите кнопку {{man button | Создать}} (справа). Теперь в столбце &amp;quot;Название семейного древа» (слева) введите имя для своего дерева и нажмите кнопку {{man button | Загрузить семейное древо}} (внизу справа). Gramps теперь откроется вместе с Вашим недавно созданным деревом.&lt;br /&gt;
&lt;br /&gt;
[[Ru:Gramps_{{man version}}_Вики_Руководство_-_Управление_семейными_древесами#Создание нового семейного древа|Создание нового семейного древа]]&lt;br /&gt;
{{-}}&lt;br /&gt;
[[File:MainWindow-PeopleCategory-PeopleTreeView-annotated-50.png|450px|thumb|right|Описание частей главного окна Gramps]]&lt;br /&gt;
&lt;br /&gt;
Главная страница Gramps разделена на отдельные панели: панель инструментов в верхней части, левая боковая панель (навигатор), позволяющая перемещаться по различным представлениям Ваших данных, область просмотра, в которой отображаются данные (в центре), и правая боковая панель (боковая панель) и нижняя панель (Bottombar), которая может быть использована для Gramplets, (о Gramplets рассказано позже). Большинство из этих панелей можно включить или выключить, перейдя к слову &amp;quot;Вид&amp;quot; в верхней части окна и отметив (вкл) или сняв флажок (выключить) вид.&lt;br /&gt;
&lt;br /&gt;
[[Ru:Gramps_{{man version}}_Вики_Руководство_-_Главное_окно#Главное_окно| Главное окно]]&lt;br /&gt;
{{-}}&lt;br /&gt;
&lt;br /&gt;
==Create a Source==&lt;br /&gt;
[[File:NewSource-editor-dialog-example-50.png|thumb|right|450px|New Source - editor dialog - example]]&lt;br /&gt;
&lt;br /&gt;
As you start with yourself, and the source is the interview with yourself, in the left sidebar called '''Navigator''' click on the [[Gramps_{{man version}}_Wiki_Manual_-_Categories#Sources_Category|source icon]] {{icon|sour34}}. In the toolbar click on {{man label|Add}} (or {{man key press|CTRL|INSERT}} on the keyboard) to open the [[Gramps_{{man version}}_Wiki_Manual_-_Entering_and_editing_data:_detailed_-_part_2#New_Source_dialog|source editor]].&lt;br /&gt;
&lt;br /&gt;
Assuming your name is ''John Doe'', you now make a source for the interview with yourself! So enter:&lt;br /&gt;
* Title: Interview with John Doe&lt;br /&gt;
* Author: John Doe&lt;br /&gt;
And click on {{man button|OK}}.&lt;br /&gt;
{{-}}&lt;br /&gt;
[[File:SourcesCategory-SourcesListView-example-50.png|right|450px|thumb|Sources Category - (List) View]]&lt;br /&gt;
&lt;br /&gt;
That is it, your first source. In the [[Gramps_{{man version}}_Wiki_Manual_-_Categories#Sources_Category|Source(list)view]] you will see your new source listed and that the entry has ID number that is unique to your source.&lt;br /&gt;
&lt;br /&gt;
[[Gramps_{{man version}}_Wiki_Manual_-_Entering_and_editing_data:_detailed_-_part_2#Editing_information_about_sources]]&lt;br /&gt;
&lt;br /&gt;
&amp;lt;!--&lt;br /&gt;
Before continuing, let's show how to change the interface. In the toolbar of Gramps, the last icon is the {{man button|Configure the active view}}, so click it to see how you can adapt the view. Activate the 'Last Changed' Column and by dragging, change eg 'Author' to be the second column. Most views have this configuration option, so change these to your liking!&lt;br /&gt;
--&amp;gt;&lt;br /&gt;
{{-}}&lt;br /&gt;
&lt;br /&gt;
==Add data to the source==&lt;br /&gt;
{{stub}}&lt;br /&gt;
(Ver. 3.3.1-1)&lt;br /&gt;
&lt;br /&gt;
Before you begin, you should know that Gramps does '''not''' store your media(pictures, videos, sounds, and documents etc..), it only stores a link to where the media is on your hard disk. So decide where you will store your pictures, videos, sounds, and documents. Then on the menu bar select {{man menu|Edit-&amp;gt;Preferences}} and the '''General''' tab. Set the value of {{man label|Base path for relative media paths}} to this directory. Click on the {{man label|Close}} button to save your changes. Keep your media documents well structured in this directory.&lt;br /&gt;
&lt;br /&gt;
Now let's continue with adding some more data to the source. Double click on it (or press {{Man key press|ENTER}}) to open the source 'Interview with John Doe'. Look at the tab pages at the bottom of the source editor: Notes, Gallery, Data, Repositories, References. Surely you have a picture of yourself! Let's add it to the Gallery of this source.&lt;br /&gt;
&lt;br /&gt;
Click on the {{man label|Gallery}} tab, and then on the little '''Add''' icon just below the Notes tab. This opens a dialog to select the image of yourself. At the bottom of this dialog is a box '''Title:''' to set a nice title such as 'Picture of John Doe'. Entering a title does not change the file name. Make sure you select 'Convert to a relative path'. Press {{man button|OK}}. You will now see the ''Media Reference Editor''. The top of this dialog allows to select a region of the picture, eg when you have selected a group photo, it makes sense to indicate who on the photo is John Doe. You can use the mouse in the preview picture to select the part of the picture of interest (click down is corner 1 and click release is corner 2). Click {{man button|OK}} to save the image and go back to the source editor you were working on. &lt;br /&gt;
&lt;br /&gt;
Suppose you have a typed-out text of the interview. In that case you can add the textual document (odt, doc, rtf, etc ...) in the {{man label|Gallery}}, but you can also store the text as a {{man label|Note}} in Gramps. The good thing about using a note is that Gramps can search the text of notes with filters. So, click on the {{man label|Notes}} tab, click the '''Add''' icon, and you are presented with a basic editor that you can type or paste text into.&lt;br /&gt;
&lt;br /&gt;
When finished, press {{man button|OK}} on the source editor, and your source 'Interview with John Doe' now has also a note and picture.&lt;br /&gt;
&lt;br /&gt;
To see these, you would have to open the editor again. However, Gramps has a bottom pane that can show you information on the selected entry in the source view. For that, activate in the menu '''View''' the '''Bottombar'''. You will see a number of tabs which allow to show information. The elements showing information are called '''Gramplets''' in Gramps. Gramplets are small plugins that can perform all kinds of tasks. You can add one to the bottombar by using right-click with the mouse on the bottombar next to the tabs.&lt;br /&gt;
&lt;br /&gt;
== Time for your first Person ==&lt;br /&gt;
(Ver. 3.3.1-1)&lt;br /&gt;
&lt;br /&gt;
So much done, and not yet one single person is present in your family tree! Time to change that. Let's add yourself. As all information you will add comes from the source 'Interview with John Doe', we first store this in an easy to reach place. In the toolbar click on the {{man button|Clipboard}} icon to open the clipboard. Drag and drop, from the source view, the source 'Interview with John Doe', into the Clipboard. Your source is now stored in the Clipboard and this window can be closed.&lt;br /&gt;
&lt;br /&gt;
In the Navigator, click on the Person icon to see the person view. Note that on the Toolbar there is a pressed-in button (3rd button from the right) indicating the type of person view you have activated. Try the other possibility once to see what changes. Many Categories in the Navigator have more than one view!&lt;br /&gt;
&lt;br /&gt;
Click now on the {{man button|Add}} button on the Toolbar to add your first person. You now see the person editor, and the top part of this should be what you expect: all information about the name of this person. So, type in your given name, and your surname. If you are eg. Spanish and have a very long surname, then click on the {{man button|Add}} icon after the surname to enter multiple surnames. See the manual for more details. Now select your Gender.&lt;br /&gt;
&lt;br /&gt;
As you enter data, you need to add where you obtained this data (Source). For this, click on the {{man label|Sources}} tab, then open the Clipboard from the Toolbar, drag the source you stored in the clipboard, into the area under ID |Title | Auth | Page of the Person Editor. This will open up the 'Source Reference Editor'. The bottom part of this editor is the same source as already entered, but the top part is new, and contains the data on how the information of the person was found in this source and how certain you are of it. For this interview you can set {{man label|Confidence}} to ''Very High''.&lt;br /&gt;
&lt;br /&gt;
You already have a picture of yourself, as you added it to the source. You can now add this same picture to this Person record you are creating. For this, click on the {{man label|Gallery}} tab of the person editor, and click on the {{man button|Share}} button. This will open a list of all media objects. Select the one you made earlier and click {{man button|OK}} to store everything. You could also have used the clipboard: or by adding the picture there from the media view, or by adding the media ''reference'' in the clipboard by dragging it from the gallery of an object to the clipboard, and then using it from there where you need it. &lt;br /&gt;
&lt;br /&gt;
Save everything by clicking {{man button|OK}} until you see the main Gramps view again.&lt;br /&gt;
&lt;br /&gt;
== Events ==&lt;br /&gt;
(Ver. 3.3.1-1)&lt;br /&gt;
&lt;br /&gt;
Next, you will want to add your birthday. For this, open the person editor of yourself, by double clicking on your name. Note that the {{man label|Events}} tab is open. Click on the {{man button|Add}} icon to add an event. Gramps preselects the birth event for the first event that you want to add. Enter your birth date as: (12/31/1900 - Month/Day/Year) or (1 Jan 1900 - Day Month Year). If you use Day Month Year, the Month must be entered with the first 3 letters only or it must be spelled out completely.&lt;br /&gt;
&lt;br /&gt;
You can also click on the {{man button|Calendar}} button on the right. This window allows you to select the Day Month and Year with a drop-down menu. When using this make sure that the Quality is set to Regular and Type is also set to Regular. After entering your birth date in the calendar window, click on {{man button|OK}} to save it.&lt;br /&gt;
&lt;br /&gt;
Next, because you have no Places in your database you need to create one. Knowing the place where you were born, click on the {{man button|Add}} icon after the Place entry to create this place. Enter places as City/Town, Township, County, State, Country or any combination of these. Such as Germantown, German Township (Twp), Montgomery County (Co.), Ohio, USA. Being consistent when adding places will be helpful later when you can select these from the {{man button|Select an existing place}} icon.  Adding latitude and longitude will allow these places to be positioned on a map later.&lt;br /&gt;
&lt;br /&gt;
Don't forget to Source this. Click the {{man button|Source}} tab, open the '''Clipboard''', drag and drop your source, select the Confidence level, and save both the Source and then the new place with the {{man button|OK}} buttons.&lt;br /&gt;
&lt;br /&gt;
Note that the editor that has been open is the Event ''Reference'' Editor. This means that there is a global part that you can share with other people (the bottom of the editor), and a top part which is unique to the person. This top part is used to enter the {{man label|Role}} of the person in the event. In your own birth, you have the primary role. If you know the name of people helping in the birth, and you want to store these people also, you can share this event with them, with a Role of ''Aide''. You can type a custom role in the {{man label|Role}} field if you are not happy with the predefined possibilities.&lt;br /&gt;
&lt;br /&gt;
Again, add a source to the event via the {{man label|Sources}} tab, like you did before. As you have no real recollection of your own birth, the interview should not have confidence 'Very High'! You would need to add a birth document as source for that.&lt;br /&gt;
&lt;br /&gt;
When done, click {{man button|OK}} to save the event, and then again to save the person, and you have your first full person record.&lt;br /&gt;
&lt;br /&gt;
== Family ==&lt;br /&gt;
You now have entered yourself, time to add your parents. You could add your father and mother as you added yourself, and then connect them in a family, but most people will do things in one go via the {{icon|rela}}'''Relationship View''' or the {{icon|ance}}'''Pedigree View'''. Let's go to the Relationship view: select yourself in the person view, and then in the navigator, select the relationship view. This view has a toolbar that allows to add parents or to add a spouse. Click on the {{man button|Add parents}} icon to open the family editor.&lt;br /&gt;
&lt;br /&gt;
In the family editor you will see that you are present in the {{man label|Children}} tab. Use the {{man button|Add}} icon next to father and mother to add them as you have added yourself. Use the {{man button|Add}} icon in the {{man label|Children}} tab to add your siblings. You need to use drag-and-drop to sort siblings in the order as you want them to appear in reports (normally oldest to youngest I suppose). &lt;br /&gt;
&lt;br /&gt;
In the family editor you can also add events. We call these family events as they are shared by the two parents. Typically this is Engagement, Marriage, .... In these the Role is 'Family'. It is not needed to add these events also individually to the two parents! &lt;br /&gt;
&lt;br /&gt;
When done, click {{man button|OK}} to save the family, and you will return to the relationship view with all the extra information visible. From within this view you can navigate to other people and keep enlarging your family tree.&lt;br /&gt;
&lt;br /&gt;
== A report ==&lt;br /&gt;
Now that you have a first small family tree, make a report. Go to the oldest grandparent you have in the relationship view or the person view (you can set bookmarks on people and set a home person!). With this person selected, go in the menu {{man menu|Reports-&amp;gt;Text Reports-&amp;gt;[[Gramps_{{man version}}_Wiki_Manual_-_Reports_-_part_6#Detailed_Descendant_Report|Detailed Descendant Report]]}}, to create a nice textual descendant report.&lt;br /&gt;
&lt;br /&gt;
== What next?==&lt;br /&gt;
Gramps has many features, as you improve, take the time to go over the [[Gramps_{{man version}}_Wiki_Manual|user manual]] and learn more. Join and use the mailing list to discuss issues.&lt;br /&gt;
&lt;br /&gt;
We advise everyone to read the manual to learn all about using Gramps. Genealogy takes time, so learning the tools is not wasted time.&lt;br /&gt;
&lt;br /&gt;
However, if you really want the bare minimum to start, then read this:&lt;br /&gt;
* [[Gramps {{man version}} Wiki Manual - Entering and editing data: brief]]&lt;br /&gt;
&lt;br /&gt;
==Screencasts==&lt;br /&gt;
&lt;br /&gt;
===Gramps 3.2.5===&lt;br /&gt;
Screencast for the older Gramps 3.2.5.&lt;br /&gt;
* Gramps 3.2.5: [[Media:Edit family from pedigree view Gramps 3.2.5.ogg|Edit family (parents, children, siblings) from Pedigree View]]&lt;br /&gt;
* Gramps 3.2.5: [[Media:Add_family_from_pedigree_view_Gramps_3.2.5.ogg|Add family (parents, children, siblings) from Pedigree View]]&lt;br /&gt;
&lt;br /&gt;
==See also==&lt;br /&gt;
Related articles.&lt;br /&gt;
* [[Add a child]]&lt;br /&gt;
* [[Add a spouse]]&lt;br /&gt;
* [[Add a godfather-godmother]]&lt;br /&gt;
* [[Add a witness]]&lt;br /&gt;
* [[Genealogy Glossary]]&lt;br /&gt;
* [[Gramps Glossary]]&lt;br /&gt;
&lt;br /&gt;
[[Category:How do I...]]&lt;br /&gt;
[[Category:Genealogy]]&lt;br /&gt;
[[Category:Gramps Logic]]&lt;/div&gt;</summary>
		<author><name>Sten</name></author>
		
	</entry>
	<entry>
		<id>https://ftp.gramps-project.org/wiki/index.php?title=Template:Releases/5.1.2/ru&amp;diff=78876</id>
		<title>Template:Releases/5.1.2/ru</title>
		<link rel="alternate" type="text/html" href="https://ftp.gramps-project.org/wiki/index.php?title=Template:Releases/5.1.2/ru&amp;diff=78876"/>
		<updated>2020-06-03T12:36:15Z</updated>

		<summary type="html">&lt;p&gt;Sten: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{Release|5.1.2| '''2020.01.10'''&lt;br /&gt;
&lt;br /&gt;
Команда Gramps выпускает версию '''5.1.2''', '''новую версию технического обслуживания'''.&lt;br /&gt;
&lt;br /&gt;
* Narweb: частные заметки для дома, интро и контактов. Если заметки являются личными, мы не можем использовать их на этих страницах.&lt;br /&gt;
** {{bug|11414}}: проблемы с указанными регионами. Когда ширина изображения &amp;gt;800, ссылочные области размещены неправильно&lt;br /&gt;
** {{bug|11382}}: отображение дерева предка выглядит странно. Решает следующее:&lt;br /&gt;
*** Персональные боксы перекрываются&lt;br /&gt;
*** Некоторые боксы человека видны частично или скрыты&lt;br /&gt;
** некоторая очистка в ancestortree.css&lt;br /&gt;
** дерево предков и длинные имена.&lt;br /&gt;
** Адаптирован CSS-файл дерева предков для всех тем&lt;br /&gt;
** {{bug|11357}}: даты не локализованы на страницах мест&lt;br /&gt;
** {{bug|11349}}: проблема Майнца с коротким текстом в одной заметке, проблема возникает на домашней странице и странице введения.&lt;br /&gt;
** плохие ссылки на события на медиа-страницах&lt;br /&gt;
** {{bug|11500}}: Navweb: в некоторых случаях не используются области мультимедиа:&lt;br /&gt;
*** Если мы не показываем семьи&lt;br /&gt;
*** Если мы не показываем события&lt;br /&gt;
*** Не показываются области СМИ для миниатюры&lt;br /&gt;
* WEBCAL: домашняя ссылка переведена в нижний регистр&lt;br /&gt;
** {{bug | 11354}}: неверный заголовок веб-календаря на главной странице. Это решает возможность иметь &amp;quot;&amp;gt;&amp;quot;, &amp;quot;&amp;lt;&amp;quot; в заголовке&lt;br /&gt;
* Обновление списка церквей LDS&lt;br /&gt;
* {{bug| 11917}}: сделать так, чтобы значок папки GuiDestinationOption запускался в каталоге пользователя&lt;br /&gt;
* {{bug| 11463}}: разрешить фильтру файлов импорта принимать расширения без учета регистра&lt;br /&gt;
* Исправлена ​​ошибка, при которой база данных предупреждала / не открывала новые версии схемы.&lt;br /&gt;
* {{bug| 11462}}: Исправлено диалоговое окно импорта Progen и индикатор прогресса для правильного родительского окна.&lt;br /&gt;
* {{bug| 11462}}: исправлен импорт Progen для правильной обработки фамилий AKA&lt;br /&gt;
* {{bug| 11457}}: исправление ExportPkg, чтобы ошибки не терялись и был индикатор выполнения для мультимедиа&lt;br /&gt;
* {{bug| 11457}}: исправлен помощник по экспорту, чтобы сообщения об ошибках отображались в правильном родительском окне.&lt;br /&gt;
* {{bug| 11472}}: исправлен импорт GEDCOM, когда семейство отсутствует; импорт создаёт отсутствующую заметку&lt;br /&gt;
* {{bug| 11491}}: исправлена ​​панель инструментов для добавления сбоя Gramplet на словенском&lt;br /&gt;
* Обновление перевода cs, ca, fr, uk, he, fi, hr, de, sv&lt;br /&gt;
* {{bug| 11470}}: обновление парсинга даты для чешской локали&lt;br /&gt;
* Исправлен испанский перевод дат&lt;br /&gt;
* исправлена частная поддержка прокси tagref. Добавлен недостающий код для события, хранилища, источника, цитирования и места&lt;br /&gt;
* [Tree doc Tex] Символ &amp;quot;-&amp;quot; в имени может привести к путанице, генерируя текст из коробки с форматом файла PDF&lt;br /&gt;
* [Tree Doc Tex] исправлена печать на нестандартный размер&lt;br /&gt;
* {{bug | 11429}}: исправление дублированного перевода &amp;quot;døde døde&amp;quot; Norwegion для libnarrate&lt;br /&gt;
* {{bug | 10124}}: исправить редакторы событий. Поместите отображение текста двунаправленного текста с идентификатором Gramps.&lt;br /&gt;
* {{bug | 11335}}: исправлены проблемы с языками RTL и LAT / LONG&lt;br /&gt;
** Исправлено отображение координат GPS в представлении Мест для языков RTL.&lt;br /&gt;
** Исправлено место редактора lat / long entry для языков RTL&lt;br /&gt;
* {{bug | 11410}}: исправлен экспорт GEDCOM, чтобы избежать перевода строк GrampsType&lt;br /&gt;
* {{bug | 11762}}: разрешить развертывание вкладок Инструменты с Notbook, чтобы заполнить окно&lt;br /&gt;
* Ограничьте настройки Gramplet Age Stats соответствующими значениями.&lt;br /&gt;
** Максимальный возраст должен делиться на 5, чтобы избежать ошибок вне диапазона.&lt;br /&gt;
** Ширина графика должна быть больше 45, чтобы выглядело правильно и избегать деления на ноль ошибок.&lt;br /&gt;
* {{bug | 11384}}: исправить потерю значения в настройках «Точность отображения возраста»&lt;br /&gt;
* {{bug | 11390}}: исправлено название семейного дерева Windows для символов, не относящихся к ASCII, в Windows&lt;br /&gt;
* {{bug | 11395}}: исправить настройки / генеалогические символы, когда присутствует только один шрифт&lt;br /&gt;
* {{bug | 11380}} {{bug | 11339}}: исправьте различные поля ввода, чтобы отменить / повторить работу&lt;br /&gt;
* {{bug | 11363}}: исправьте цвета тегов в PedigreeView&lt;br /&gt;
* Исправлена ​​ошибка Gramps -v, когда Gtk отсутствует&lt;br /&gt;
* {{bug | 11366}}: исправлена ​​ошибка, из-за которой PedigreeView не отображал изменения дня рождения или смерти&lt;br /&gt;
* {{bug | 11378}}: ODF DOC - Исправлено неправильное экранирование в выводе odt для TOC / Bookmark и т. д.&lt;br /&gt;
* {{bug | 11381}}: исправьте синтаксический анализатор CLI, чтобы принимать действительные отрицательные числа&lt;br /&gt;
* {{bug | 11365}}: Исправлен отчет «Дерево потомков» для HandleError, когда в семье нет родителей.&lt;br /&gt;
* {{bug | 11346}}: Исправлен инструмент переупорядочения идентификаторов, чтобы последующие добавления БД использовали следующий возможный идентификатор&lt;br /&gt;
* {{bug | 11316}}: обновите экспорт VCalendar до версии 2.0, чтобы можно было экспортировать все символы utf8&lt;br /&gt;
* {{bug | 11351}}: исправьте настройки, чтобы &amp;lt;ctrl&amp;gt; PageUp / PageDn не оставался на вкладке Даты&lt;br /&gt;
* Графики: экранирование имен, дат и мест в графических отчетах с недопустимыми символами XML&lt;br /&gt;
* {{bug | 11341}}: Исправлен прямой выбор объекта в меню «Перейти», переход в неправильное место&lt;br /&gt;
}}&lt;br /&gt;
&lt;br /&gt;
Смотрите [https://gramps-project.org/bugs/changelog_page.php?version_id=103 Changelog].&lt;br /&gt;
&amp;lt;noinclude&amp;gt;{{languages|Template:Releases/5.1.2/ru}}&amp;lt;/noinclude&amp;gt;&lt;/div&gt;</summary>
		<author><name>Sten</name></author>
		
	</entry>
	<entry>
		<id>https://ftp.gramps-project.org/wiki/index.php?title=Template:Releases/5.1.2/ru&amp;diff=78875</id>
		<title>Template:Releases/5.1.2/ru</title>
		<link rel="alternate" type="text/html" href="https://ftp.gramps-project.org/wiki/index.php?title=Template:Releases/5.1.2/ru&amp;diff=78875"/>
		<updated>2020-06-03T12:29:11Z</updated>

		<summary type="html">&lt;p&gt;Sten: Created page with &amp;quot;{{Release|5.1.2| '''2020.01.10'''  Команда Gramps выпускает версию '''5.1.2''', '''новая версия технического обслуживан...&amp;quot;&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{Release|5.1.2| '''2020.01.10'''&lt;br /&gt;
&lt;br /&gt;
Команда Gramps выпускает версию '''5.1.2''', '''новая версия технического обслуживания'''.&lt;br /&gt;
&lt;br /&gt;
* Narweb: частные заметки для дома, интро и контактов. Если заметки являются личными, мы не можем использовать их на этих страницах.&lt;br /&gt;
** {{bug | 11414}}: проблемы с указанными регионами. Когда ширина изображения&amp;gt; 800, ссылочные области размещены неправильно&lt;br /&gt;
** {{bug | 11382}}: отображение дерева предка выглядит странно. Решает следующее:&lt;br /&gt;
*** Персональные коробки перекрываются&lt;br /&gt;
*** Некоторые коробки человека частично видны или скрыты&lt;br /&gt;
** некоторая очистка в ancestortree.css&lt;br /&gt;
** предковое дерево и длинные имена.&lt;br /&gt;
** Адаптируйте CSS-файл дерева предков для всех тем&lt;br /&gt;
** {{bug | 11357}}: даты не локализованы на страницах мест&lt;br /&gt;
** {{bug | 11349}}: проблема Майнца с коротким текстом в одной заметке, проблема возникает на домашней странице и странице введения.&lt;br /&gt;
** плохие ссылки на события на медиа-страницах&lt;br /&gt;
** {{bug | 11500}}: Navweb: в некоторых случаях не используйте области мультимедиа:&lt;br /&gt;
*** Если мы не показываем семьи&lt;br /&gt;
*** Если мы не показываем события&lt;br /&gt;
*** Не показывать области СМИ для миниатюры&lt;br /&gt;
* WEBCAL: домашняя ссылка переведена в нижний регистр&lt;br /&gt;
** {{bug | 11354}}: неверный заголовок веб-календаря на главной странице. Это решает возможность иметь &amp;quot;&amp;gt;&amp;quot;, &amp;quot;&amp;lt;&amp;quot; в заголовке&lt;br /&gt;
* Обновление LDS Temple list&lt;br /&gt;
* {{bug | 11917}}: сделать так, чтобы значок папки GuiDestinationOption запускался в каталоге пользователя&lt;br /&gt;
* {{bug | 11463}}: разрешить фильтру файлов импорта принимать расширения без учета регистра&lt;br /&gt;
* Исправлена ​​ошибка, при которой база данных предупреждала / не открывала новые версии схемы.&lt;br /&gt;
* {{bug | 11462}}: Исправлено диалоговое окно импорта Progen и индикатор прогресса для правильного родительского окна.&lt;br /&gt;
* {{bug | 11462}}: исправлен импорт Progen для правильной обработки фамилий AKA&lt;br /&gt;
* {{bug | 11457}}: исправление ExportPkg, чтобы ошибки не терялись и имел индикатор выполнения для мультимедиа&lt;br /&gt;
* {{bug | 11457}}: исправлен помощник по экспорту, чтобы сообщения об ошибках отображались в правильном родительском окне.&lt;br /&gt;
* {{bug | 11472}}: исправлен импорт GEDCOM, когда семейство отсутствует; импорт создал отсутствующую заметку&lt;br /&gt;
* {{bug | 11491}}: исправлена ​​панель инструментов для добавления сбоя Gramplet на словенском&lt;br /&gt;
* Обновление перевода cs, ca, fr, uk, he, fi, hr, de, sv&lt;br /&gt;
* {{bug | 11470}}: обновление парсинга даты для чешской локали&lt;br /&gt;
* Исправлен испанский перевод дат&lt;br /&gt;
* исправить частную поддержку прокси tagref. Добавить недостающий код для события, хранилища, источника, цитирования и места&lt;br /&gt;
* [Tree doc Tex] fix &amp;quot;-&amp;quot; char on name name &amp;quot;-&amp;quot; может привести к путанице, генерируя текст из коробки с форматом файла PDF&lt;br /&gt;
* [Tree Doc Tex] исправить опечатку на нестандартный размер&lt;br /&gt;
* {{bug | 11429}}: исправление дублированного перевода &amp;quot;døde døde&amp;quot; Norwegion для libnarrate&lt;br /&gt;
* {{bug | 10124}}: исправить редакторы событий. Поместите отображение текста двунаправленного текста с идентификатором Gramps.&lt;br /&gt;
* {{bug | 11335}}: исправлены проблемы с языками RTL и LAT / LONG&lt;br /&gt;
** Исправлено отображение координат GPS в представлении Мест для языков RTL.&lt;br /&gt;
** Исправлено место редактора lat / long entry для языков RTL&lt;br /&gt;
* {{bug | 11410}}: исправлен экспорт GEDCOM, чтобы избежать перевода строк GrampsType&lt;br /&gt;
* {{bug | 11762}}: разрешить развертывание вкладок Инструменты с Notbook, чтобы заполнить окно&lt;br /&gt;
* Ограничьте настройки Gramplet Age Stats соответствующими значениями.&lt;br /&gt;
** Максимальный возраст должен делиться на 5, чтобы избежать ошибок вне диапазона.&lt;br /&gt;
** Ширина графика должна быть больше 45, чтобы выглядело правильно и избегать деления на ноль ошибок.&lt;br /&gt;
* {{bug | 11384}}: исправить потерю значения в настройках «Точность отображения возраста»&lt;br /&gt;
* {{bug | 11390}}: исправлено название семейного дерева Windows для символов, не относящихся к ASCII, в Windows&lt;br /&gt;
* {{bug | 11395}}: исправить настройки / генеалогические символы, когда присутствует только один шрифт&lt;br /&gt;
* {{bug | 11380}} {{bug | 11339}}: исправьте различные поля ввода, чтобы отменить / повторить работу&lt;br /&gt;
* {{bug | 11363}}: исправьте цвета тегов в PedigreeView&lt;br /&gt;
* Исправлена ​​ошибка Gramps -v, когда Gtk отсутствует&lt;br /&gt;
* {{bug | 11366}}: исправлена ​​ошибка, из-за которой PedigreeView не отображал изменения дня рождения или смерти&lt;br /&gt;
* {{bug | 11378}}: ODF DOC - Исправлено неправильное экранирование в выводе odt для TOC / Bookmark и т. д.&lt;br /&gt;
* {{bug | 11381}}: исправьте синтаксический анализатор CLI, чтобы принимать действительные отрицательные числа&lt;br /&gt;
* {{bug | 11365}}: Исправлен отчет «Дерево потомков» для HandleError, когда в семье нет родителей.&lt;br /&gt;
* {{bug | 11346}}: Исправлен инструмент переупорядочения идентификаторов, чтобы последующие добавления БД использовали следующий возможный идентификатор&lt;br /&gt;
* {{bug | 11316}}: обновите экспорт VCalendar до версии 2.0, чтобы можно было экспортировать все символы utf8&lt;br /&gt;
* {{bug | 11351}}: исправьте настройки, чтобы &amp;lt;ctrl&amp;gt; PageUp / PageDn не оставался на вкладке Даты&lt;br /&gt;
* Графики: экранирование имен, дат и мест в графических отчетах с недопустимыми символами XML&lt;br /&gt;
* {{bug | 11341}}: Исправлен прямой выбор объекта в меню «Перейти», переход в неправильное место&lt;br /&gt;
}}&lt;br /&gt;
&lt;br /&gt;
See the [https://gramps-project.org/bugs/changelog_page.php?version_id=103 Changelog].&lt;br /&gt;
&amp;lt;noinclude&amp;gt;{{languages|Template:Releases/5.1.2}}&amp;lt;/noinclude&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
См. [Https://gramps-project.org/bugs/changelog_page.php?version_id=103 журнал изменений].&lt;br /&gt;
&amp;lt;Noinclude&amp;gt; {{языков | Шаблон: Релизы / 5.1.2}} &amp;lt;/ noinclude&amp;gt;&lt;/div&gt;</summary>
		<author><name>Sten</name></author>
		
	</entry>
	<entry>
		<id>https://ftp.gramps-project.org/wiki/index.php?title=News/ru&amp;diff=78874</id>
		<title>News/ru</title>
		<link rel="alternate" type="text/html" href="https://ftp.gramps-project.org/wiki/index.php?title=News/ru&amp;diff=78874"/>
		<updated>2020-06-03T12:10:04Z</updated>

		<summary type="html">&lt;p&gt;Sten: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{languages/ru|News|}}&lt;br /&gt;
&amp;lt;section begin=news_mainpage /&amp;gt;&lt;br /&gt;
{{Releases/5.1.2/ru}}&lt;br /&gt;
{{Releases/5.1.1}}&lt;br /&gt;
{{Releases/5.1.0}}&lt;br /&gt;
{{Releases/5.0.2}}&lt;br /&gt;
&amp;lt;section end=news_mainpage /&amp;gt;&lt;br /&gt;
&amp;lt;section begin=Archive /&amp;gt;&lt;br /&gt;
{{Releases/5.0.1}}&lt;br /&gt;
{{Releases/5.0.0}}&lt;br /&gt;
{{Releases/4.2.8}}&lt;br /&gt;
{{Releases/4.2.7}}&lt;br /&gt;
{{Releases/4.2.6}}&lt;br /&gt;
{{Releases/4.2.5/ru}}&lt;br /&gt;
{{Releases/4.0.3/ru}}&lt;br /&gt;
{{Releases/3.4.7/ru}}&lt;br /&gt;
{{Releases/4.0.2/ru}}&lt;br /&gt;
{{Releases/3.4.6/ru}}&lt;br /&gt;
{{Releases/4.0.1/ru}}&lt;br /&gt;
{{Releases/3.4.5/ru}}&lt;br /&gt;
{{Releases/4.0.0}}&lt;br /&gt;
{{Releases/3.4.4}}&lt;br /&gt;
{{Releases/4.0.0beta}}&lt;br /&gt;
{{Releases/3.4.3}}&lt;br /&gt;
{{Releases/4.0.0alpha5/ru}}&lt;br /&gt;
{{Releases/4.0.0alpha4/ru}}&lt;br /&gt;
{{Releases/4.0.0alpha3}}&lt;br /&gt;
{{Releases/4.0.0alpha2}}&lt;br /&gt;
{{Releases/4.0.0alpha1}}&lt;br /&gt;
{{Releases/3.4.2/ru}}&lt;br /&gt;
{{Releases/3.4.1}}&lt;br /&gt;
{{Releases/3.4.0}}&lt;br /&gt;
{{Releases/3.3.2}}&lt;br /&gt;
{{Announcements/20101204_LGCD}}&lt;br /&gt;
{{Releases/3.3.1}}&lt;br /&gt;
{{Releases/3.3.0}}&lt;br /&gt;
{{Releases/3.2.6}}&lt;br /&gt;
{{Releases/3.2.5}}&lt;br /&gt;
{{Releases/3.2.4}}&lt;br /&gt;
{{Releases/3.2.3}}&lt;br /&gt;
{{Releases/3.2.2}}&lt;br /&gt;
{{Releases/3.2.1}}&lt;br /&gt;
{{Releases/3.2.0}}&lt;br /&gt;
{{Releases/3.1.3}}&lt;br /&gt;
{{Releases/3.1.2}}&lt;br /&gt;
{{Releases/3.1.1}}&lt;br /&gt;
{{Releases/3.1.0}}&lt;br /&gt;
{{Releases/3.0.4}}&lt;br /&gt;
{{Releases/3.0.3}}&lt;br /&gt;
{{Releases/3.0.2}}&lt;br /&gt;
{{Announcements/20080630 LGCD}}&lt;br /&gt;
{{Releases/3.0.1}}&lt;br /&gt;
{{Releases/3.0.0}}&lt;br /&gt;
{{Releases/2.2.10}}&lt;br /&gt;
{{Announcements/2007304 LGCD}}&lt;br /&gt;
&amp;lt;section end=Archive /&amp;gt;&lt;/div&gt;</summary>
		<author><name>Sten</name></author>
		
	</entry>
	<entry>
		<id>https://ftp.gramps-project.org/wiki/index.php?title=News/ru&amp;diff=78873</id>
		<title>News/ru</title>
		<link rel="alternate" type="text/html" href="https://ftp.gramps-project.org/wiki/index.php?title=News/ru&amp;diff=78873"/>
		<updated>2020-06-03T12:08:58Z</updated>

		<summary type="html">&lt;p&gt;Sten: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{languages/ru|News|}}&lt;br /&gt;
&amp;lt;section begin=news_mainpage /&amp;gt;&lt;br /&gt;
{{Releases/5.1.2}}&lt;br /&gt;
{{Releases/5.1.1}}&lt;br /&gt;
{{Releases/5.1.0}}&lt;br /&gt;
{{Releases/5.0.2}}&lt;br /&gt;
&amp;lt;section end=news_mainpage /&amp;gt;&lt;br /&gt;
&amp;lt;section begin=Archive /&amp;gt;&lt;br /&gt;
{{Releases/5.0.1}}&lt;br /&gt;
{{Releases/5.0.0}}&lt;br /&gt;
{{Releases/4.2.8}}&lt;br /&gt;
{{Releases/4.2.7}}&lt;br /&gt;
{{Releases/4.2.6}}&lt;br /&gt;
{{Releases/4.2.5/ru}}&lt;br /&gt;
{{Releases/4.0.3/ru}}&lt;br /&gt;
{{Releases/3.4.7/ru}}&lt;br /&gt;
{{Releases/4.0.2/ru}}&lt;br /&gt;
{{Releases/3.4.6/ru}}&lt;br /&gt;
{{Releases/4.0.1/ru}}&lt;br /&gt;
{{Releases/3.4.5/ru}}&lt;br /&gt;
{{Releases/4.0.0}}&lt;br /&gt;
{{Releases/3.4.4}}&lt;br /&gt;
{{Releases/4.0.0beta}}&lt;br /&gt;
{{Releases/3.4.3}}&lt;br /&gt;
{{Releases/4.0.0alpha5/ru}}&lt;br /&gt;
{{Releases/4.0.0alpha4/ru}}&lt;br /&gt;
{{Releases/4.0.0alpha3}}&lt;br /&gt;
{{Releases/4.0.0alpha2}}&lt;br /&gt;
{{Releases/4.0.0alpha1}}&lt;br /&gt;
{{Releases/3.4.2/ru}}&lt;br /&gt;
{{Releases/3.4.1}}&lt;br /&gt;
{{Releases/3.4.0}}&lt;br /&gt;
{{Releases/3.3.2}}&lt;br /&gt;
{{Announcements/20101204_LGCD}}&lt;br /&gt;
{{Releases/3.3.1}}&lt;br /&gt;
{{Releases/3.3.0}}&lt;br /&gt;
{{Releases/3.2.6}}&lt;br /&gt;
{{Releases/3.2.5}}&lt;br /&gt;
{{Releases/3.2.4}}&lt;br /&gt;
{{Releases/3.2.3}}&lt;br /&gt;
{{Releases/3.2.2}}&lt;br /&gt;
{{Releases/3.2.1}}&lt;br /&gt;
{{Releases/3.2.0}}&lt;br /&gt;
{{Releases/3.1.3}}&lt;br /&gt;
{{Releases/3.1.2}}&lt;br /&gt;
{{Releases/3.1.1}}&lt;br /&gt;
{{Releases/3.1.0}}&lt;br /&gt;
{{Releases/3.0.4}}&lt;br /&gt;
{{Releases/3.0.3}}&lt;br /&gt;
{{Releases/3.0.2}}&lt;br /&gt;
{{Announcements/20080630 LGCD}}&lt;br /&gt;
{{Releases/3.0.1}}&lt;br /&gt;
{{Releases/3.0.0}}&lt;br /&gt;
{{Releases/2.2.10}}&lt;br /&gt;
{{Announcements/2007304 LGCD}}&lt;br /&gt;
&amp;lt;section end=Archive /&amp;gt;&lt;/div&gt;</summary>
		<author><name>Sten</name></author>
		
	</entry>
	<entry>
		<id>https://ftp.gramps-project.org/wiki/index.php?title=RU:%D0%9D%D0%B0%D1%87%D0%B0%D0%BB%D0%BE_%D0%B2_%D0%93%D0%B5%D0%BD%D0%B5%D0%B0%D0%BB%D0%BE%D0%B3%D0%B8%D0%B8&amp;diff=78871</id>
		<title>RU:Начало в Генеалогии</title>
		<link rel="alternate" type="text/html" href="https://ftp.gramps-project.org/wiki/index.php?title=RU:%D0%9D%D0%B0%D1%87%D0%B0%D0%BB%D0%BE_%D0%B2_%D0%93%D0%B5%D0%BD%D0%B5%D0%B0%D0%BB%D0%BE%D0%B3%D0%B8%D0%B8&amp;diff=78871"/>
		<updated>2020-06-03T11:54:13Z</updated>

		<summary type="html">&lt;p&gt;Sten: Sten moved page Start with Genealogy/ru to RU:Начало в Генеалогии: Не работает полноценно&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{languages ​​| Начало в Генеалогии}}&lt;br /&gt;
'' 'Как мне начать в Генеалогии, используя Gramps? «»»&lt;br /&gt;
&lt;br /&gt;
== Подготовка ==&lt;br /&gt;
Если Вы только начинаете свою генеалогию, лучше начать с себя и добавлять других людей, соединяя их с Вами.&lt;br /&gt;
&lt;br /&gt;
'' {{man menu | Одной из самых важных вещей в генеалогии является то, что Вы записываете, как и где Вы нашли / получили информацию.}} '' Это называется источником. Это настолько важно потому, что позже Вам понадобится эта информации или Вы захотите обратиться к ней. Наличие источника у Вашей информации также создаст доверие к ней у других исследователей.&lt;br /&gt;
&lt;br /&gt;
Таким образом, если Вы начинаете с себя, Вы сами ''проводите собеседование'', что является основным источником информации по этому вопросу. Из этого первоисточника Вы получаете такие события, как день рождения, день крещения, выпускной и так далее. Источник событий позволяет Вам вычислить существовавшего человека как часть семьи.&lt;br /&gt;
&lt;br /&gt;
Таким образом, у нас есть наши основные термины для генеалогии: Источники, События, Люди и Семьи. Помимо этого, Gramps позволяет хранить Заметки, Места, Медиа (фотографии, фильмы, документы) и [[ Ru:Хранилища в Gramps | Хранилища]].&lt;br /&gt;
&lt;br /&gt;
Итак, давайте начнем с добавления информации в Gramps.&lt;br /&gt;
&lt;br /&gt;
== Создать Семейное древо ==&lt;br /&gt;
Здесь предполагается, что Вы только что установили Gramps и запускаете свое первое семейное дерево.&lt;br /&gt;
&lt;br /&gt;
В качестве первого шага запустите Gramps.&lt;br /&gt;
{{-}}&lt;br /&gt;
[[File:Manage-databases-icon-toolbar-no-familytree-loaded-51_ru.png|450px|thumb|right|Значок &amp;quot;Управление базами данных&amp;quot; на панели инструментов без загруженного семейного дерева]]&lt;br /&gt;
&lt;br /&gt;
Значок &amp;quot;Управление базами данных&amp;quot; Менеджера генеалогических деревьев под названием «Семейные древа - Gramps» будет отображаться на панели инструментов. Щёлкните значок генеалогического дерева, чтобы открыть менеджер семейных деревьев.&lt;br /&gt;
&lt;br /&gt;
[[Ru:Gramps_{{man version}}_Вики_Руководство_-_Начало#Выбор_семейного_древа| Выбор семейного древа]]&lt;br /&gt;
{{-}}&lt;br /&gt;
[[File:ManageFamilyTrees-51_ru.png|right|thumb|450px|Окно менеджера «Семейные древа - Gramps»]]&lt;br /&gt;
&lt;br /&gt;
В всплывающем окне менеджера генеалогических деревьев нажмите кнопку {{man button | Создать}} (справа). Теперь в столбце &amp;quot;Название семейного древа» (слева) введите имя для своего дерева и нажмите кнопку {{man button | Загрузить семейное древо}} (внизу справа). Gramps теперь откроется вместе с Вашим недавно созданным деревом.&lt;br /&gt;
&lt;br /&gt;
[[Ru:Gramps_{{man version}}_Вики_Руководство_-_Управление_семейными_древесами#Создание нового семейного древа|Создание нового семейного древа]]&lt;br /&gt;
{{-}}&lt;br /&gt;
[[File:MainWindow-PeopleCategory-PeopleTreeView-annotated-50.png|450px|thumb|right|Описание частей главного окна Gramps]]&lt;br /&gt;
&lt;br /&gt;
Главная страница Gramps разделена на отдельные панели: панель инструментов в верхней части, левая боковая панель (навигатор), позволяющая перемещаться по различным представлениям Ваших данных, область просмотра, в которой отображаются данные (в центре), и правая боковая панель (боковая панель) и нижняя панель (Bottombar), которая может быть использована для Gramplets, (о Gramplets рассказано позже). Большинство из этих панелей можно включить или выключить, перейдя к слову &amp;quot;Вид&amp;quot; в верхней части окна и отметив (вкл) или сняв флажок (выключить) вид.&lt;br /&gt;
&lt;br /&gt;
[[Ru:Gramps_{{man version}}_Вики_Руководство_-_Главное_окно#Главное_окно| Главное окно]]&lt;br /&gt;
{{-}}&lt;br /&gt;
&lt;br /&gt;
==Create a Source==&lt;br /&gt;
[[File:NewSource-editor-dialog-example-50.png|thumb|right|450px|New Source - editor dialog - example]]&lt;br /&gt;
&lt;br /&gt;
As you start with yourself, and the source is the interview with yourself, in the left sidebar called '''Navigator''' click on the [[Gramps_{{man version}}_Wiki_Manual_-_Categories#Sources_Category|source icon]] {{icon|sour34}}. In the toolbar click on {{man label|Add}} (or {{man key press|CTRL|INSERT}} on the keyboard) to open the [[Gramps_{{man version}}_Wiki_Manual_-_Entering_and_editing_data:_detailed_-_part_2#New_Source_dialog|source editor]].&lt;br /&gt;
&lt;br /&gt;
Assuming your name is ''John Doe'', you now make a source for the interview with yourself! So enter:&lt;br /&gt;
* Title: Interview with John Doe&lt;br /&gt;
* Author: John Doe&lt;br /&gt;
And click on {{man button|OK}}.&lt;br /&gt;
{{-}}&lt;br /&gt;
[[File:SourcesCategory-SourcesListView-example-50.png|right|450px|thumb|Sources Category - (List) View]]&lt;br /&gt;
&lt;br /&gt;
That is it, your first source. In the [[Gramps_{{man version}}_Wiki_Manual_-_Categories#Sources_Category|Source(list)view]] you will see your new source listed and that the entry has ID number that is unique to your source.&lt;br /&gt;
&lt;br /&gt;
[[Gramps_{{man version}}_Wiki_Manual_-_Entering_and_editing_data:_detailed_-_part_2#Editing_information_about_sources]]&lt;br /&gt;
&lt;br /&gt;
&amp;lt;!--&lt;br /&gt;
Before continuing, let's show how to change the interface. In the toolbar of Gramps, the last icon is the {{man button|Configure the active view}}, so click it to see how you can adapt the view. Activate the 'Last Changed' Column and by dragging, change eg 'Author' to be the second column. Most views have this configuration option, so change these to your liking!&lt;br /&gt;
--&amp;gt;&lt;br /&gt;
{{-}}&lt;br /&gt;
&lt;br /&gt;
==Add data to the source==&lt;br /&gt;
{{stub}}&lt;br /&gt;
(Ver. 3.3.1-1)&lt;br /&gt;
&lt;br /&gt;
Before you begin, you should know that Gramps does '''not''' store your media(pictures, videos, sounds, and documents etc..), it only stores a link to where the media is on your hard disk. So decide where you will store your pictures, videos, sounds, and documents. Then on the menu bar select {{man menu|Edit-&amp;gt;Preferences}} and the '''General''' tab. Set the value of {{man label|Base path for relative media paths}} to this directory. Click on the {{man label|Close}} button to save your changes. Keep your media documents well structured in this directory.&lt;br /&gt;
&lt;br /&gt;
Now let's continue with adding some more data to the source. Double click on it (or press {{Man key press|ENTER}}) to open the source 'Interview with John Doe'. Look at the tab pages at the bottom of the source editor: Notes, Gallery, Data, Repositories, References. Surely you have a picture of yourself! Let's add it to the Gallery of this source.&lt;br /&gt;
&lt;br /&gt;
Click on the {{man label|Gallery}} tab, and then on the little '''Add''' icon just below the Notes tab. This opens a dialog to select the image of yourself. At the bottom of this dialog is a box '''Title:''' to set a nice title such as 'Picture of John Doe'. Entering a title does not change the file name. Make sure you select 'Convert to a relative path'. Press {{man button|OK}}. You will now see the ''Media Reference Editor''. The top of this dialog allows to select a region of the picture, eg when you have selected a group photo, it makes sense to indicate who on the photo is John Doe. You can use the mouse in the preview picture to select the part of the picture of interest (click down is corner 1 and click release is corner 2). Click {{man button|OK}} to save the image and go back to the source editor you were working on. &lt;br /&gt;
&lt;br /&gt;
Suppose you have a typed-out text of the interview. In that case you can add the textual document (odt, doc, rtf, etc ...) in the {{man label|Gallery}}, but you can also store the text as a {{man label|Note}} in Gramps. The good thing about using a note is that Gramps can search the text of notes with filters. So, click on the {{man label|Notes}} tab, click the '''Add''' icon, and you are presented with a basic editor that you can type or paste text into.&lt;br /&gt;
&lt;br /&gt;
When finished, press {{man button|OK}} on the source editor, and your source 'Interview with John Doe' now has also a note and picture.&lt;br /&gt;
&lt;br /&gt;
To see these, you would have to open the editor again. However, Gramps has a bottom pane that can show you information on the selected entry in the source view. For that, activate in the menu '''View''' the '''Bottombar'''. You will see a number of tabs which allow to show information. The elements showing information are called '''Gramplets''' in Gramps. Gramplets are small plugins that can perform all kinds of tasks. You can add one to the bottombar by using right-click with the mouse on the bottombar next to the tabs.&lt;br /&gt;
&lt;br /&gt;
== Time for your first Person ==&lt;br /&gt;
(Ver. 3.3.1-1)&lt;br /&gt;
&lt;br /&gt;
So much done, and not yet one single person is present in your family tree! Time to change that. Let's add yourself. As all information you will add comes from the source 'Interview with John Doe', we first store this in an easy to reach place. In the toolbar click on the {{man button|Clipboard}} icon to open the clipboard. Drag and drop, from the source view, the source 'Interview with John Doe', into the Clipboard. Your source is now stored in the Clipboard and this window can be closed.&lt;br /&gt;
&lt;br /&gt;
In the Navigator, click on the Person icon to see the person view. Note that on the Toolbar there is a pressed-in button (3rd button from the right) indicating the type of person view you have activated. Try the other possibility once to see what changes. Many Categories in the Navigator have more than one view!&lt;br /&gt;
&lt;br /&gt;
Click now on the {{man button|Add}} button on the Toolbar to add your first person. You now see the person editor, and the top part of this should be what you expect: all information about the name of this person. So, type in your given name, and your surname. If you are eg. Spanish and have a very long surname, then click on the {{man button|Add}} icon after the surname to enter multiple surnames. See the manual for more details. Now select your Gender.&lt;br /&gt;
&lt;br /&gt;
As you enter data, you need to add where you obtained this data (Source). For this, click on the {{man label|Sources}} tab, then open the Clipboard from the Toolbar, drag the source you stored in the clipboard, into the area under ID |Title | Auth | Page of the Person Editor. This will open up the 'Source Reference Editor'. The bottom part of this editor is the same source as already entered, but the top part is new, and contains the data on how the information of the person was found in this source and how certain you are of it. For this interview you can set {{man label|Confidence}} to ''Very High''.&lt;br /&gt;
&lt;br /&gt;
You already have a picture of yourself, as you added it to the source. You can now add this same picture to this Person record you are creating. For this, click on the {{man label|Gallery}} tab of the person editor, and click on the {{man button|Share}} button. This will open a list of all media objects. Select the one you made earlier and click {{man button|OK}} to store everything. You could also have used the clipboard: or by adding the picture there from the media view, or by adding the media ''reference'' in the clipboard by dragging it from the gallery of an object to the clipboard, and then using it from there where you need it. &lt;br /&gt;
&lt;br /&gt;
Save everything by clicking {{man button|OK}} until you see the main Gramps view again.&lt;br /&gt;
&lt;br /&gt;
== Events ==&lt;br /&gt;
(Ver. 3.3.1-1)&lt;br /&gt;
&lt;br /&gt;
Next, you will want to add your birthday. For this, open the person editor of yourself, by double clicking on your name. Note that the {{man label|Events}} tab is open. Click on the {{man button|Add}} icon to add an event. Gramps preselects the birth event for the first event that you want to add. Enter your birth date as: (12/31/1900 - Month/Day/Year) or (1 Jan 1900 - Day Month Year). If you use Day Month Year, the Month must be entered with the first 3 letters only or it must be spelled out completely.&lt;br /&gt;
&lt;br /&gt;
You can also click on the {{man button|Calendar}} button on the right. This window allows you to select the Day Month and Year with a drop-down menu. When using this make sure that the Quality is set to Regular and Type is also set to Regular. After entering your birth date in the calendar window, click on {{man button|OK}} to save it.&lt;br /&gt;
&lt;br /&gt;
Next, because you have no Places in your database you need to create one. Knowing the place where you were born, click on the {{man button|Add}} icon after the Place entry to create this place. Enter places as City/Town, Township, County, State, Country or any combination of these. Such as Germantown, German Township (Twp), Montgomery County (Co.), Ohio, USA. Being consistent when adding places will be helpful later when you can select these from the {{man button|Select an existing place}} icon.  Adding latitude and longitude will allow these places to be positioned on a map later.&lt;br /&gt;
&lt;br /&gt;
Don't forget to Source this. Click the {{man button|Source}} tab, open the '''Clipboard''', drag and drop your source, select the Confidence level, and save both the Source and then the new place with the {{man button|OK}} buttons.&lt;br /&gt;
&lt;br /&gt;
Note that the editor that has been open is the Event ''Reference'' Editor. This means that there is a global part that you can share with other people (the bottom of the editor), and a top part which is unique to the person. This top part is used to enter the {{man label|Role}} of the person in the event. In your own birth, you have the primary role. If you know the name of people helping in the birth, and you want to store these people also, you can share this event with them, with a Role of ''Aide''. You can type a custom role in the {{man label|Role}} field if you are not happy with the predefined possibilities.&lt;br /&gt;
&lt;br /&gt;
Again, add a source to the event via the {{man label|Sources}} tab, like you did before. As you have no real recollection of your own birth, the interview should not have confidence 'Very High'! You would need to add a birth document as source for that.&lt;br /&gt;
&lt;br /&gt;
When done, click {{man button|OK}} to save the event, and then again to save the person, and you have your first full person record.&lt;br /&gt;
&lt;br /&gt;
== Family ==&lt;br /&gt;
You now have entered yourself, time to add your parents. You could add your father and mother as you added yourself, and then connect them in a family, but most people will do things in one go via the {{icon|rela}}'''Relationship View''' or the {{icon|ance}}'''Pedigree View'''. Let's go to the Relationship view: select yourself in the person view, and then in the navigator, select the relationship view. This view has a toolbar that allows to add parents or to add a spouse. Click on the {{man button|Add parents}} icon to open the family editor.&lt;br /&gt;
&lt;br /&gt;
In the family editor you will see that you are present in the {{man label|Children}} tab. Use the {{man button|Add}} icon next to father and mother to add them as you have added yourself. Use the {{man button|Add}} icon in the {{man label|Children}} tab to add your siblings. You need to use drag-and-drop to sort siblings in the order as you want them to appear in reports (normally oldest to youngest I suppose). &lt;br /&gt;
&lt;br /&gt;
In the family editor you can also add events. We call these family events as they are shared by the two parents. Typically this is Engagement, Marriage, .... In these the Role is 'Family'. It is not needed to add these events also individually to the two parents! &lt;br /&gt;
&lt;br /&gt;
When done, click {{man button|OK}} to save the family, and you will return to the relationship view with all the extra information visible. From within this view you can navigate to other people and keep enlarging your family tree.&lt;br /&gt;
&lt;br /&gt;
== A report ==&lt;br /&gt;
Now that you have a first small family tree, make a report. Go to the oldest grandparent you have in the relationship view or the person view (you can set bookmarks on people and set a home person!). With this person selected, go in the menu {{man menu|Reports-&amp;gt;Text Reports-&amp;gt;[[Gramps_{{man version}}_Wiki_Manual_-_Reports_-_part_6#Detailed_Descendant_Report|Detailed Descendant Report]]}}, to create a nice textual descendant report.&lt;br /&gt;
&lt;br /&gt;
== What next?==&lt;br /&gt;
Gramps has many features, as you improve, take the time to go over the [[Gramps_{{man version}}_Wiki_Manual|user manual]] and learn more. Join and use the mailing list to discuss issues.&lt;br /&gt;
&lt;br /&gt;
We advise everyone to read the manual to learn all about using Gramps. Genealogy takes time, so learning the tools is not wasted time.&lt;br /&gt;
&lt;br /&gt;
However, if you really want the bare minimum to start, then read this:&lt;br /&gt;
* [[Gramps {{man version}} Wiki Manual - Entering and editing data: brief]]&lt;br /&gt;
&lt;br /&gt;
==Screencasts==&lt;br /&gt;
&lt;br /&gt;
===Gramps 3.2.5===&lt;br /&gt;
Screencast for the older Gramps 3.2.5.&lt;br /&gt;
* Gramps 3.2.5: [[Media:Edit family from pedigree view Gramps 3.2.5.ogg|Edit family (parents, children, siblings) from Pedigree View]]&lt;br /&gt;
* Gramps 3.2.5: [[Media:Add_family_from_pedigree_view_Gramps_3.2.5.ogg|Add family (parents, children, siblings) from Pedigree View]]&lt;br /&gt;
&lt;br /&gt;
==See also==&lt;br /&gt;
Related articles.&lt;br /&gt;
* [[Add a child]]&lt;br /&gt;
* [[Add a spouse]]&lt;br /&gt;
* [[Add a godfather-godmother]]&lt;br /&gt;
* [[Add a witness]]&lt;br /&gt;
* [[Genealogy Glossary]]&lt;br /&gt;
* [[Gramps Glossary]]&lt;br /&gt;
&lt;br /&gt;
[[Category:How do I...]]&lt;br /&gt;
[[Category:Genealogy]]&lt;br /&gt;
[[Category:Gramps Logic]]&lt;/div&gt;</summary>
		<author><name>Sten</name></author>
		
	</entry>
	<entry>
		<id>https://ftp.gramps-project.org/wiki/index.php?title=Start_with_Genealogy/ru&amp;diff=78872</id>
		<title>Start with Genealogy/ru</title>
		<link rel="alternate" type="text/html" href="https://ftp.gramps-project.org/wiki/index.php?title=Start_with_Genealogy/ru&amp;diff=78872"/>
		<updated>2020-06-03T11:54:13Z</updated>

		<summary type="html">&lt;p&gt;Sten: Sten moved page Start with Genealogy/ru to RU:Начало в Генеалогии: Не работает полноценно&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;#REDIRECT [[RU:Начало в Генеалогии]]&lt;/div&gt;</summary>
		<author><name>Sten</name></author>
		
	</entry>
	<entry>
		<id>https://ftp.gramps-project.org/wiki/index.php?title=RU:%D0%9D%D0%B0%D1%87%D0%B0%D0%BB%D0%BE_%D0%B2_%D0%93%D0%B5%D0%BD%D0%B5%D0%B0%D0%BB%D0%BE%D0%B3%D0%B8%D0%B8&amp;diff=78870</id>
		<title>RU:Начало в Генеалогии</title>
		<link rel="alternate" type="text/html" href="https://ftp.gramps-project.org/wiki/index.php?title=RU:%D0%9D%D0%B0%D1%87%D0%B0%D0%BB%D0%BE_%D0%B2_%D0%93%D0%B5%D0%BD%D0%B5%D0%B0%D0%BB%D0%BE%D0%B3%D0%B8%D0%B8&amp;diff=78870"/>
		<updated>2020-06-03T11:50:45Z</updated>

		<summary type="html">&lt;p&gt;Sten: /* Создать Семейное древо */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{languages ​​| Начало в Генеалогии}}&lt;br /&gt;
'' 'Как мне начать в Генеалогии, используя Gramps? «»»&lt;br /&gt;
&lt;br /&gt;
== Подготовка ==&lt;br /&gt;
Если Вы только начинаете свою генеалогию, лучше начать с себя и добавлять других людей, соединяя их с Вами.&lt;br /&gt;
&lt;br /&gt;
'' {{man menu | Одной из самых важных вещей в генеалогии является то, что Вы записываете, как и где Вы нашли / получили информацию.}} '' Это называется источником. Это настолько важно потому, что позже Вам понадобится эта информации или Вы захотите обратиться к ней. Наличие источника у Вашей информации также создаст доверие к ней у других исследователей.&lt;br /&gt;
&lt;br /&gt;
Таким образом, если Вы начинаете с себя, Вы сами ''проводите собеседование'', что является основным источником информации по этому вопросу. Из этого первоисточника Вы получаете такие события, как день рождения, день крещения, выпускной и так далее. Источник событий позволяет Вам вычислить существовавшего человека как часть семьи.&lt;br /&gt;
&lt;br /&gt;
Таким образом, у нас есть наши основные термины для генеалогии: Источники, События, Люди и Семьи. Помимо этого, Gramps позволяет хранить Заметки, Места, Медиа (фотографии, фильмы, документы) и [[ Ru:Хранилища в Gramps | Хранилища]].&lt;br /&gt;
&lt;br /&gt;
Итак, давайте начнем с добавления информации в Gramps.&lt;br /&gt;
&lt;br /&gt;
== Создать Семейное древо ==&lt;br /&gt;
Здесь предполагается, что Вы только что установили Gramps и запускаете свое первое семейное дерево.&lt;br /&gt;
&lt;br /&gt;
В качестве первого шага запустите Gramps.&lt;br /&gt;
{{-}}&lt;br /&gt;
[[File:Manage-databases-icon-toolbar-no-familytree-loaded-51_ru.png|450px|thumb|right|Значок &amp;quot;Управление базами данных&amp;quot; на панели инструментов без загруженного семейного дерева]]&lt;br /&gt;
&lt;br /&gt;
Значок &amp;quot;Управление базами данных&amp;quot; Менеджера генеалогических деревьев под названием «Семейные древа - Gramps» будет отображаться на панели инструментов. Щёлкните значок генеалогического дерева, чтобы открыть менеджер семейных деревьев.&lt;br /&gt;
&lt;br /&gt;
[[Ru:Gramps_{{man version}}_Вики_Руководство_-_Начало#Выбор_семейного_древа| Выбор семейного древа]]&lt;br /&gt;
{{-}}&lt;br /&gt;
[[File:ManageFamilyTrees-51_ru.png|right|thumb|450px|Окно менеджера «Семейные древа - Gramps»]]&lt;br /&gt;
&lt;br /&gt;
В всплывающем окне менеджера генеалогических деревьев нажмите кнопку {{man button | Создать}} (справа). Теперь в столбце &amp;quot;Название семейного древа» (слева) введите имя для своего дерева и нажмите кнопку {{man button | Загрузить семейное древо}} (внизу справа). Gramps теперь откроется вместе с Вашим недавно созданным деревом.&lt;br /&gt;
&lt;br /&gt;
[[Ru:Gramps_{{man version}}_Вики_Руководство_-_Управление_семейными_древесами#Создание нового семейного древа|Создание нового семейного древа]]&lt;br /&gt;
{{-}}&lt;br /&gt;
[[File:MainWindow-PeopleCategory-PeopleTreeView-annotated-50.png|450px|thumb|right|Описание частей главного окна Gramps]]&lt;br /&gt;
&lt;br /&gt;
Главная страница Gramps разделена на отдельные панели: панель инструментов в верхней части, левая боковая панель (навигатор), позволяющая перемещаться по различным представлениям Ваших данных, область просмотра, в которой отображаются данные (в центре), и правая боковая панель (боковая панель) и нижняя панель (Bottombar), которая может быть использована для Gramplets, (о Gramplets рассказано позже). Большинство из этих панелей можно включить или выключить, перейдя к слову &amp;quot;Вид&amp;quot; в верхней части окна и отметив (вкл) или сняв флажок (выключить) вид.&lt;br /&gt;
&lt;br /&gt;
[[Ru:Gramps_{{man version}}_Вики_Руководство_-_Главное_окно#Главное_окно| Главное окно]]&lt;br /&gt;
{{-}}&lt;br /&gt;
&lt;br /&gt;
==Create a Source==&lt;br /&gt;
[[File:NewSource-editor-dialog-example-50.png|thumb|right|450px|New Source - editor dialog - example]]&lt;br /&gt;
&lt;br /&gt;
As you start with yourself, and the source is the interview with yourself, in the left sidebar called '''Navigator''' click on the [[Gramps_{{man version}}_Wiki_Manual_-_Categories#Sources_Category|source icon]] {{icon|sour34}}. In the toolbar click on {{man label|Add}} (or {{man key press|CTRL|INSERT}} on the keyboard) to open the [[Gramps_{{man version}}_Wiki_Manual_-_Entering_and_editing_data:_detailed_-_part_2#New_Source_dialog|source editor]].&lt;br /&gt;
&lt;br /&gt;
Assuming your name is ''John Doe'', you now make a source for the interview with yourself! So enter:&lt;br /&gt;
* Title: Interview with John Doe&lt;br /&gt;
* Author: John Doe&lt;br /&gt;
And click on {{man button|OK}}.&lt;br /&gt;
{{-}}&lt;br /&gt;
[[File:SourcesCategory-SourcesListView-example-50.png|right|450px|thumb|Sources Category - (List) View]]&lt;br /&gt;
&lt;br /&gt;
That is it, your first source. In the [[Gramps_{{man version}}_Wiki_Manual_-_Categories#Sources_Category|Source(list)view]] you will see your new source listed and that the entry has ID number that is unique to your source.&lt;br /&gt;
&lt;br /&gt;
[[Gramps_{{man version}}_Wiki_Manual_-_Entering_and_editing_data:_detailed_-_part_2#Editing_information_about_sources]]&lt;br /&gt;
&lt;br /&gt;
&amp;lt;!--&lt;br /&gt;
Before continuing, let's show how to change the interface. In the toolbar of Gramps, the last icon is the {{man button|Configure the active view}}, so click it to see how you can adapt the view. Activate the 'Last Changed' Column and by dragging, change eg 'Author' to be the second column. Most views have this configuration option, so change these to your liking!&lt;br /&gt;
--&amp;gt;&lt;br /&gt;
{{-}}&lt;br /&gt;
&lt;br /&gt;
==Add data to the source==&lt;br /&gt;
{{stub}}&lt;br /&gt;
(Ver. 3.3.1-1)&lt;br /&gt;
&lt;br /&gt;
Before you begin, you should know that Gramps does '''not''' store your media(pictures, videos, sounds, and documents etc..), it only stores a link to where the media is on your hard disk. So decide where you will store your pictures, videos, sounds, and documents. Then on the menu bar select {{man menu|Edit-&amp;gt;Preferences}} and the '''General''' tab. Set the value of {{man label|Base path for relative media paths}} to this directory. Click on the {{man label|Close}} button to save your changes. Keep your media documents well structured in this directory.&lt;br /&gt;
&lt;br /&gt;
Now let's continue with adding some more data to the source. Double click on it (or press {{Man key press|ENTER}}) to open the source 'Interview with John Doe'. Look at the tab pages at the bottom of the source editor: Notes, Gallery, Data, Repositories, References. Surely you have a picture of yourself! Let's add it to the Gallery of this source.&lt;br /&gt;
&lt;br /&gt;
Click on the {{man label|Gallery}} tab, and then on the little '''Add''' icon just below the Notes tab. This opens a dialog to select the image of yourself. At the bottom of this dialog is a box '''Title:''' to set a nice title such as 'Picture of John Doe'. Entering a title does not change the file name. Make sure you select 'Convert to a relative path'. Press {{man button|OK}}. You will now see the ''Media Reference Editor''. The top of this dialog allows to select a region of the picture, eg when you have selected a group photo, it makes sense to indicate who on the photo is John Doe. You can use the mouse in the preview picture to select the part of the picture of interest (click down is corner 1 and click release is corner 2). Click {{man button|OK}} to save the image and go back to the source editor you were working on. &lt;br /&gt;
&lt;br /&gt;
Suppose you have a typed-out text of the interview. In that case you can add the textual document (odt, doc, rtf, etc ...) in the {{man label|Gallery}}, but you can also store the text as a {{man label|Note}} in Gramps. The good thing about using a note is that Gramps can search the text of notes with filters. So, click on the {{man label|Notes}} tab, click the '''Add''' icon, and you are presented with a basic editor that you can type or paste text into.&lt;br /&gt;
&lt;br /&gt;
When finished, press {{man button|OK}} on the source editor, and your source 'Interview with John Doe' now has also a note and picture.&lt;br /&gt;
&lt;br /&gt;
To see these, you would have to open the editor again. However, Gramps has a bottom pane that can show you information on the selected entry in the source view. For that, activate in the menu '''View''' the '''Bottombar'''. You will see a number of tabs which allow to show information. The elements showing information are called '''Gramplets''' in Gramps. Gramplets are small plugins that can perform all kinds of tasks. You can add one to the bottombar by using right-click with the mouse on the bottombar next to the tabs.&lt;br /&gt;
&lt;br /&gt;
== Time for your first Person ==&lt;br /&gt;
(Ver. 3.3.1-1)&lt;br /&gt;
&lt;br /&gt;
So much done, and not yet one single person is present in your family tree! Time to change that. Let's add yourself. As all information you will add comes from the source 'Interview with John Doe', we first store this in an easy to reach place. In the toolbar click on the {{man button|Clipboard}} icon to open the clipboard. Drag and drop, from the source view, the source 'Interview with John Doe', into the Clipboard. Your source is now stored in the Clipboard and this window can be closed.&lt;br /&gt;
&lt;br /&gt;
In the Navigator, click on the Person icon to see the person view. Note that on the Toolbar there is a pressed-in button (3rd button from the right) indicating the type of person view you have activated. Try the other possibility once to see what changes. Many Categories in the Navigator have more than one view!&lt;br /&gt;
&lt;br /&gt;
Click now on the {{man button|Add}} button on the Toolbar to add your first person. You now see the person editor, and the top part of this should be what you expect: all information about the name of this person. So, type in your given name, and your surname. If you are eg. Spanish and have a very long surname, then click on the {{man button|Add}} icon after the surname to enter multiple surnames. See the manual for more details. Now select your Gender.&lt;br /&gt;
&lt;br /&gt;
As you enter data, you need to add where you obtained this data (Source). For this, click on the {{man label|Sources}} tab, then open the Clipboard from the Toolbar, drag the source you stored in the clipboard, into the area under ID |Title | Auth | Page of the Person Editor. This will open up the 'Source Reference Editor'. The bottom part of this editor is the same source as already entered, but the top part is new, and contains the data on how the information of the person was found in this source and how certain you are of it. For this interview you can set {{man label|Confidence}} to ''Very High''.&lt;br /&gt;
&lt;br /&gt;
You already have a picture of yourself, as you added it to the source. You can now add this same picture to this Person record you are creating. For this, click on the {{man label|Gallery}} tab of the person editor, and click on the {{man button|Share}} button. This will open a list of all media objects. Select the one you made earlier and click {{man button|OK}} to store everything. You could also have used the clipboard: or by adding the picture there from the media view, or by adding the media ''reference'' in the clipboard by dragging it from the gallery of an object to the clipboard, and then using it from there where you need it. &lt;br /&gt;
&lt;br /&gt;
Save everything by clicking {{man button|OK}} until you see the main Gramps view again.&lt;br /&gt;
&lt;br /&gt;
== Events ==&lt;br /&gt;
(Ver. 3.3.1-1)&lt;br /&gt;
&lt;br /&gt;
Next, you will want to add your birthday. For this, open the person editor of yourself, by double clicking on your name. Note that the {{man label|Events}} tab is open. Click on the {{man button|Add}} icon to add an event. Gramps preselects the birth event for the first event that you want to add. Enter your birth date as: (12/31/1900 - Month/Day/Year) or (1 Jan 1900 - Day Month Year). If you use Day Month Year, the Month must be entered with the first 3 letters only or it must be spelled out completely.&lt;br /&gt;
&lt;br /&gt;
You can also click on the {{man button|Calendar}} button on the right. This window allows you to select the Day Month and Year with a drop-down menu. When using this make sure that the Quality is set to Regular and Type is also set to Regular. After entering your birth date in the calendar window, click on {{man button|OK}} to save it.&lt;br /&gt;
&lt;br /&gt;
Next, because you have no Places in your database you need to create one. Knowing the place where you were born, click on the {{man button|Add}} icon after the Place entry to create this place. Enter places as City/Town, Township, County, State, Country or any combination of these. Such as Germantown, German Township (Twp), Montgomery County (Co.), Ohio, USA. Being consistent when adding places will be helpful later when you can select these from the {{man button|Select an existing place}} icon.  Adding latitude and longitude will allow these places to be positioned on a map later.&lt;br /&gt;
&lt;br /&gt;
Don't forget to Source this. Click the {{man button|Source}} tab, open the '''Clipboard''', drag and drop your source, select the Confidence level, and save both the Source and then the new place with the {{man button|OK}} buttons.&lt;br /&gt;
&lt;br /&gt;
Note that the editor that has been open is the Event ''Reference'' Editor. This means that there is a global part that you can share with other people (the bottom of the editor), and a top part which is unique to the person. This top part is used to enter the {{man label|Role}} of the person in the event. In your own birth, you have the primary role. If you know the name of people helping in the birth, and you want to store these people also, you can share this event with them, with a Role of ''Aide''. You can type a custom role in the {{man label|Role}} field if you are not happy with the predefined possibilities.&lt;br /&gt;
&lt;br /&gt;
Again, add a source to the event via the {{man label|Sources}} tab, like you did before. As you have no real recollection of your own birth, the interview should not have confidence 'Very High'! You would need to add a birth document as source for that.&lt;br /&gt;
&lt;br /&gt;
When done, click {{man button|OK}} to save the event, and then again to save the person, and you have your first full person record.&lt;br /&gt;
&lt;br /&gt;
== Family ==&lt;br /&gt;
You now have entered yourself, time to add your parents. You could add your father and mother as you added yourself, and then connect them in a family, but most people will do things in one go via the {{icon|rela}}'''Relationship View''' or the {{icon|ance}}'''Pedigree View'''. Let's go to the Relationship view: select yourself in the person view, and then in the navigator, select the relationship view. This view has a toolbar that allows to add parents or to add a spouse. Click on the {{man button|Add parents}} icon to open the family editor.&lt;br /&gt;
&lt;br /&gt;
In the family editor you will see that you are present in the {{man label|Children}} tab. Use the {{man button|Add}} icon next to father and mother to add them as you have added yourself. Use the {{man button|Add}} icon in the {{man label|Children}} tab to add your siblings. You need to use drag-and-drop to sort siblings in the order as you want them to appear in reports (normally oldest to youngest I suppose). &lt;br /&gt;
&lt;br /&gt;
In the family editor you can also add events. We call these family events as they are shared by the two parents. Typically this is Engagement, Marriage, .... In these the Role is 'Family'. It is not needed to add these events also individually to the two parents! &lt;br /&gt;
&lt;br /&gt;
When done, click {{man button|OK}} to save the family, and you will return to the relationship view with all the extra information visible. From within this view you can navigate to other people and keep enlarging your family tree.&lt;br /&gt;
&lt;br /&gt;
== A report ==&lt;br /&gt;
Now that you have a first small family tree, make a report. Go to the oldest grandparent you have in the relationship view or the person view (you can set bookmarks on people and set a home person!). With this person selected, go in the menu {{man menu|Reports-&amp;gt;Text Reports-&amp;gt;[[Gramps_{{man version}}_Wiki_Manual_-_Reports_-_part_6#Detailed_Descendant_Report|Detailed Descendant Report]]}}, to create a nice textual descendant report.&lt;br /&gt;
&lt;br /&gt;
== What next?==&lt;br /&gt;
Gramps has many features, as you improve, take the time to go over the [[Gramps_{{man version}}_Wiki_Manual|user manual]] and learn more. Join and use the mailing list to discuss issues.&lt;br /&gt;
&lt;br /&gt;
We advise everyone to read the manual to learn all about using Gramps. Genealogy takes time, so learning the tools is not wasted time.&lt;br /&gt;
&lt;br /&gt;
However, if you really want the bare minimum to start, then read this:&lt;br /&gt;
* [[Gramps {{man version}} Wiki Manual - Entering and editing data: brief]]&lt;br /&gt;
&lt;br /&gt;
==Screencasts==&lt;br /&gt;
&lt;br /&gt;
===Gramps 3.2.5===&lt;br /&gt;
Screencast for the older Gramps 3.2.5.&lt;br /&gt;
* Gramps 3.2.5: [[Media:Edit family from pedigree view Gramps 3.2.5.ogg|Edit family (parents, children, siblings) from Pedigree View]]&lt;br /&gt;
* Gramps 3.2.5: [[Media:Add_family_from_pedigree_view_Gramps_3.2.5.ogg|Add family (parents, children, siblings) from Pedigree View]]&lt;br /&gt;
&lt;br /&gt;
==See also==&lt;br /&gt;
Related articles.&lt;br /&gt;
* [[Add a child]]&lt;br /&gt;
* [[Add a spouse]]&lt;br /&gt;
* [[Add a godfather-godmother]]&lt;br /&gt;
* [[Add a witness]]&lt;br /&gt;
* [[Genealogy Glossary]]&lt;br /&gt;
* [[Gramps Glossary]]&lt;br /&gt;
&lt;br /&gt;
[[Category:How do I...]]&lt;br /&gt;
[[Category:Genealogy]]&lt;br /&gt;
[[Category:Gramps Logic]]&lt;/div&gt;</summary>
		<author><name>Sten</name></author>
		
	</entry>
	<entry>
		<id>https://ftp.gramps-project.org/wiki/index.php?title=File:ManageFamilyTrees-51_ru.png&amp;diff=78869</id>
		<title>File:ManageFamilyTrees-51 ru.png</title>
		<link rel="alternate" type="text/html" href="https://ftp.gramps-project.org/wiki/index.php?title=File:ManageFamilyTrees-51_ru.png&amp;diff=78869"/>
		<updated>2020-06-03T11:47:07Z</updated>

		<summary type="html">&lt;p&gt;Sten: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&lt;/div&gt;</summary>
		<author><name>Sten</name></author>
		
	</entry>
	<entry>
		<id>https://ftp.gramps-project.org/wiki/index.php?title=File:Manage-databases-icon-toolbar-no-familytree-loaded-51_ru.png&amp;diff=78868</id>
		<title>File:Manage-databases-icon-toolbar-no-familytree-loaded-51 ru.png</title>
		<link rel="alternate" type="text/html" href="https://ftp.gramps-project.org/wiki/index.php?title=File:Manage-databases-icon-toolbar-no-familytree-loaded-51_ru.png&amp;diff=78868"/>
		<updated>2020-06-03T11:41:45Z</updated>

		<summary type="html">&lt;p&gt;Sten: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&lt;/div&gt;</summary>
		<author><name>Sten</name></author>
		
	</entry>
	<entry>
		<id>https://ftp.gramps-project.org/wiki/index.php?title=RU:%D0%9D%D0%B0%D1%87%D0%B0%D0%BB%D0%BE_%D0%B2_%D0%93%D0%B5%D0%BD%D0%B5%D0%B0%D0%BB%D0%BE%D0%B3%D0%B8%D0%B8&amp;diff=78867</id>
		<title>RU:Начало в Генеалогии</title>
		<link rel="alternate" type="text/html" href="https://ftp.gramps-project.org/wiki/index.php?title=RU:%D0%9D%D0%B0%D1%87%D0%B0%D0%BB%D0%BE_%D0%B2_%D0%93%D0%B5%D0%BD%D0%B5%D0%B0%D0%BB%D0%BE%D0%B3%D0%B8%D0%B8&amp;diff=78867"/>
		<updated>2020-06-03T11:37:07Z</updated>

		<summary type="html">&lt;p&gt;Sten: /* Создать Семейное древо */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{languages ​​| Начало в Генеалогии}}&lt;br /&gt;
'' 'Как мне начать в Генеалогии, используя Gramps? «»»&lt;br /&gt;
&lt;br /&gt;
== Подготовка ==&lt;br /&gt;
Если Вы только начинаете свою генеалогию, лучше начать с себя и добавлять других людей, соединяя их с Вами.&lt;br /&gt;
&lt;br /&gt;
'' {{man menu | Одной из самых важных вещей в генеалогии является то, что Вы записываете, как и где Вы нашли / получили информацию.}} '' Это называется источником. Это настолько важно потому, что позже Вам понадобится эта информации или Вы захотите обратиться к ней. Наличие источника у Вашей информации также создаст доверие к ней у других исследователей.&lt;br /&gt;
&lt;br /&gt;
Таким образом, если Вы начинаете с себя, Вы сами ''проводите собеседование'', что является основным источником информации по этому вопросу. Из этого первоисточника Вы получаете такие события, как день рождения, день крещения, выпускной и так далее. Источник событий позволяет Вам вычислить существовавшего человека как часть семьи.&lt;br /&gt;
&lt;br /&gt;
Таким образом, у нас есть наши основные термины для генеалогии: Источники, События, Люди и Семьи. Помимо этого, Gramps позволяет хранить Заметки, Места, Медиа (фотографии, фильмы, документы) и [[ Ru:Хранилища в Gramps | Хранилища]].&lt;br /&gt;
&lt;br /&gt;
Итак, давайте начнем с добавления информации в Gramps.&lt;br /&gt;
&lt;br /&gt;
== Создать Семейное древо ==&lt;br /&gt;
Здесь предполагается, что Вы только что установили Gramps и запускаете свое первое семейное дерево.&lt;br /&gt;
&lt;br /&gt;
В качестве первого шага запустите Gramps.&lt;br /&gt;
{{-}}&lt;br /&gt;
[[File:Manage-databases-icon-toolbar-no-familytree-loaded-51.png|450px|thumb|right|Значок &amp;quot;Управление базами данных&amp;quot; на панели инструментов без загруженного семейного дерева]]&lt;br /&gt;
&lt;br /&gt;
Значок &amp;quot;Управление базами данных&amp;quot; Менеджера генеалогических деревьев под названием «Семейные древа - Gramps» будет отображаться на панели инструментов. Щёлкните значок генеалогического дерева, чтобы открыть менеджер семейных деревьев.&lt;br /&gt;
&lt;br /&gt;
[[Ru:Gramps_{{man version}}_Вики_Руководство_-_Начало#Выбор_семейного_древа| Выбор семейного древа]]&lt;br /&gt;
{{-}}&lt;br /&gt;
[[File:ManageFamilyTrees-51.png|right|thumb|450px|Окно менеджера «Семейные древа - Gramps»]]&lt;br /&gt;
&lt;br /&gt;
В всплывающем окне менеджера генеалогических деревьев нажмите кнопку {{man button | Создать}} (справа). Теперь в столбце &amp;quot;Название семейного древа» (слева) введите имя для своего дерева и нажмите кнопку {{man button | Загрузить семейное древо}} (внизу справа). Gramps теперь откроется вместе с Вашим недавно созданным деревом.&lt;br /&gt;
&lt;br /&gt;
[[Ru:Gramps_{{man version}}_Вики_Руководство_-_Управление_семейными_древесами#Создание нового семейного древа|Создание нового семейного древа]]&lt;br /&gt;
{{-}}&lt;br /&gt;
[[File:MainWindow-PeopleCategory-PeopleTreeView-annotated-50.png|450px|thumb|right|Описание частей главного окна Gramps]]&lt;br /&gt;
&lt;br /&gt;
Главная страница Gramps разделена на отдельные панели: панель инструментов в верхней части, левая боковая панель (навигатор), позволяющая перемещаться по различным представлениям Ваших данных, область просмотра, в которой отображаются данные (в центре), и правая боковая панель (боковая панель) и нижняя панель (Bottombar), которая может быть использована для Gramplets, (о Gramplets рассказано позже). Большинство из этих панелей можно включить или выключить, перейдя к слову &amp;quot;Вид&amp;quot; в верхней части окна и отметив (вкл) или сняв флажок (выключить) вид.&lt;br /&gt;
[[Gramps_{{man version}}_Wiki_Manual_-_Main_Window#Main_Window]]&lt;br /&gt;
[[Ru:Gramps_{{man version}}_Вики_Руководство_-_Главное_окно#Главное_окно| Главное окно]]&lt;br /&gt;
{{-}}&lt;br /&gt;
&lt;br /&gt;
==Create a Source==&lt;br /&gt;
[[File:NewSource-editor-dialog-example-50.png|thumb|right|450px|New Source - editor dialog - example]]&lt;br /&gt;
&lt;br /&gt;
As you start with yourself, and the source is the interview with yourself, in the left sidebar called '''Navigator''' click on the [[Gramps_{{man version}}_Wiki_Manual_-_Categories#Sources_Category|source icon]] {{icon|sour34}}. In the toolbar click on {{man label|Add}} (or {{man key press|CTRL|INSERT}} on the keyboard) to open the [[Gramps_{{man version}}_Wiki_Manual_-_Entering_and_editing_data:_detailed_-_part_2#New_Source_dialog|source editor]].&lt;br /&gt;
&lt;br /&gt;
Assuming your name is ''John Doe'', you now make a source for the interview with yourself! So enter:&lt;br /&gt;
* Title: Interview with John Doe&lt;br /&gt;
* Author: John Doe&lt;br /&gt;
And click on {{man button|OK}}.&lt;br /&gt;
{{-}}&lt;br /&gt;
[[File:SourcesCategory-SourcesListView-example-50.png|right|450px|thumb|Sources Category - (List) View]]&lt;br /&gt;
&lt;br /&gt;
That is it, your first source. In the [[Gramps_{{man version}}_Wiki_Manual_-_Categories#Sources_Category|Source(list)view]] you will see your new source listed and that the entry has ID number that is unique to your source.&lt;br /&gt;
&lt;br /&gt;
[[Gramps_{{man version}}_Wiki_Manual_-_Entering_and_editing_data:_detailed_-_part_2#Editing_information_about_sources]]&lt;br /&gt;
&lt;br /&gt;
&amp;lt;!--&lt;br /&gt;
Before continuing, let's show how to change the interface. In the toolbar of Gramps, the last icon is the {{man button|Configure the active view}}, so click it to see how you can adapt the view. Activate the 'Last Changed' Column and by dragging, change eg 'Author' to be the second column. Most views have this configuration option, so change these to your liking!&lt;br /&gt;
--&amp;gt;&lt;br /&gt;
{{-}}&lt;br /&gt;
&lt;br /&gt;
==Add data to the source==&lt;br /&gt;
{{stub}}&lt;br /&gt;
(Ver. 3.3.1-1)&lt;br /&gt;
&lt;br /&gt;
Before you begin, you should know that Gramps does '''not''' store your media(pictures, videos, sounds, and documents etc..), it only stores a link to where the media is on your hard disk. So decide where you will store your pictures, videos, sounds, and documents. Then on the menu bar select {{man menu|Edit-&amp;gt;Preferences}} and the '''General''' tab. Set the value of {{man label|Base path for relative media paths}} to this directory. Click on the {{man label|Close}} button to save your changes. Keep your media documents well structured in this directory.&lt;br /&gt;
&lt;br /&gt;
Now let's continue with adding some more data to the source. Double click on it (or press {{Man key press|ENTER}}) to open the source 'Interview with John Doe'. Look at the tab pages at the bottom of the source editor: Notes, Gallery, Data, Repositories, References. Surely you have a picture of yourself! Let's add it to the Gallery of this source.&lt;br /&gt;
&lt;br /&gt;
Click on the {{man label|Gallery}} tab, and then on the little '''Add''' icon just below the Notes tab. This opens a dialog to select the image of yourself. At the bottom of this dialog is a box '''Title:''' to set a nice title such as 'Picture of John Doe'. Entering a title does not change the file name. Make sure you select 'Convert to a relative path'. Press {{man button|OK}}. You will now see the ''Media Reference Editor''. The top of this dialog allows to select a region of the picture, eg when you have selected a group photo, it makes sense to indicate who on the photo is John Doe. You can use the mouse in the preview picture to select the part of the picture of interest (click down is corner 1 and click release is corner 2). Click {{man button|OK}} to save the image and go back to the source editor you were working on. &lt;br /&gt;
&lt;br /&gt;
Suppose you have a typed-out text of the interview. In that case you can add the textual document (odt, doc, rtf, etc ...) in the {{man label|Gallery}}, but you can also store the text as a {{man label|Note}} in Gramps. The good thing about using a note is that Gramps can search the text of notes with filters. So, click on the {{man label|Notes}} tab, click the '''Add''' icon, and you are presented with a basic editor that you can type or paste text into.&lt;br /&gt;
&lt;br /&gt;
When finished, press {{man button|OK}} on the source editor, and your source 'Interview with John Doe' now has also a note and picture.&lt;br /&gt;
&lt;br /&gt;
To see these, you would have to open the editor again. However, Gramps has a bottom pane that can show you information on the selected entry in the source view. For that, activate in the menu '''View''' the '''Bottombar'''. You will see a number of tabs which allow to show information. The elements showing information are called '''Gramplets''' in Gramps. Gramplets are small plugins that can perform all kinds of tasks. You can add one to the bottombar by using right-click with the mouse on the bottombar next to the tabs.&lt;br /&gt;
&lt;br /&gt;
== Time for your first Person ==&lt;br /&gt;
(Ver. 3.3.1-1)&lt;br /&gt;
&lt;br /&gt;
So much done, and not yet one single person is present in your family tree! Time to change that. Let's add yourself. As all information you will add comes from the source 'Interview with John Doe', we first store this in an easy to reach place. In the toolbar click on the {{man button|Clipboard}} icon to open the clipboard. Drag and drop, from the source view, the source 'Interview with John Doe', into the Clipboard. Your source is now stored in the Clipboard and this window can be closed.&lt;br /&gt;
&lt;br /&gt;
In the Navigator, click on the Person icon to see the person view. Note that on the Toolbar there is a pressed-in button (3rd button from the right) indicating the type of person view you have activated. Try the other possibility once to see what changes. Many Categories in the Navigator have more than one view!&lt;br /&gt;
&lt;br /&gt;
Click now on the {{man button|Add}} button on the Toolbar to add your first person. You now see the person editor, and the top part of this should be what you expect: all information about the name of this person. So, type in your given name, and your surname. If you are eg. Spanish and have a very long surname, then click on the {{man button|Add}} icon after the surname to enter multiple surnames. See the manual for more details. Now select your Gender.&lt;br /&gt;
&lt;br /&gt;
As you enter data, you need to add where you obtained this data (Source). For this, click on the {{man label|Sources}} tab, then open the Clipboard from the Toolbar, drag the source you stored in the clipboard, into the area under ID |Title | Auth | Page of the Person Editor. This will open up the 'Source Reference Editor'. The bottom part of this editor is the same source as already entered, but the top part is new, and contains the data on how the information of the person was found in this source and how certain you are of it. For this interview you can set {{man label|Confidence}} to ''Very High''.&lt;br /&gt;
&lt;br /&gt;
You already have a picture of yourself, as you added it to the source. You can now add this same picture to this Person record you are creating. For this, click on the {{man label|Gallery}} tab of the person editor, and click on the {{man button|Share}} button. This will open a list of all media objects. Select the one you made earlier and click {{man button|OK}} to store everything. You could also have used the clipboard: or by adding the picture there from the media view, or by adding the media ''reference'' in the clipboard by dragging it from the gallery of an object to the clipboard, and then using it from there where you need it. &lt;br /&gt;
&lt;br /&gt;
Save everything by clicking {{man button|OK}} until you see the main Gramps view again.&lt;br /&gt;
&lt;br /&gt;
== Events ==&lt;br /&gt;
(Ver. 3.3.1-1)&lt;br /&gt;
&lt;br /&gt;
Next, you will want to add your birthday. For this, open the person editor of yourself, by double clicking on your name. Note that the {{man label|Events}} tab is open. Click on the {{man button|Add}} icon to add an event. Gramps preselects the birth event for the first event that you want to add. Enter your birth date as: (12/31/1900 - Month/Day/Year) or (1 Jan 1900 - Day Month Year). If you use Day Month Year, the Month must be entered with the first 3 letters only or it must be spelled out completely.&lt;br /&gt;
&lt;br /&gt;
You can also click on the {{man button|Calendar}} button on the right. This window allows you to select the Day Month and Year with a drop-down menu. When using this make sure that the Quality is set to Regular and Type is also set to Regular. After entering your birth date in the calendar window, click on {{man button|OK}} to save it.&lt;br /&gt;
&lt;br /&gt;
Next, because you have no Places in your database you need to create one. Knowing the place where you were born, click on the {{man button|Add}} icon after the Place entry to create this place. Enter places as City/Town, Township, County, State, Country or any combination of these. Such as Germantown, German Township (Twp), Montgomery County (Co.), Ohio, USA. Being consistent when adding places will be helpful later when you can select these from the {{man button|Select an existing place}} icon.  Adding latitude and longitude will allow these places to be positioned on a map later.&lt;br /&gt;
&lt;br /&gt;
Don't forget to Source this. Click the {{man button|Source}} tab, open the '''Clipboard''', drag and drop your source, select the Confidence level, and save both the Source and then the new place with the {{man button|OK}} buttons.&lt;br /&gt;
&lt;br /&gt;
Note that the editor that has been open is the Event ''Reference'' Editor. This means that there is a global part that you can share with other people (the bottom of the editor), and a top part which is unique to the person. This top part is used to enter the {{man label|Role}} of the person in the event. In your own birth, you have the primary role. If you know the name of people helping in the birth, and you want to store these people also, you can share this event with them, with a Role of ''Aide''. You can type a custom role in the {{man label|Role}} field if you are not happy with the predefined possibilities.&lt;br /&gt;
&lt;br /&gt;
Again, add a source to the event via the {{man label|Sources}} tab, like you did before. As you have no real recollection of your own birth, the interview should not have confidence 'Very High'! You would need to add a birth document as source for that.&lt;br /&gt;
&lt;br /&gt;
When done, click {{man button|OK}} to save the event, and then again to save the person, and you have your first full person record.&lt;br /&gt;
&lt;br /&gt;
== Family ==&lt;br /&gt;
You now have entered yourself, time to add your parents. You could add your father and mother as you added yourself, and then connect them in a family, but most people will do things in one go via the {{icon|rela}}'''Relationship View''' or the {{icon|ance}}'''Pedigree View'''. Let's go to the Relationship view: select yourself in the person view, and then in the navigator, select the relationship view. This view has a toolbar that allows to add parents or to add a spouse. Click on the {{man button|Add parents}} icon to open the family editor.&lt;br /&gt;
&lt;br /&gt;
In the family editor you will see that you are present in the {{man label|Children}} tab. Use the {{man button|Add}} icon next to father and mother to add them as you have added yourself. Use the {{man button|Add}} icon in the {{man label|Children}} tab to add your siblings. You need to use drag-and-drop to sort siblings in the order as you want them to appear in reports (normally oldest to youngest I suppose). &lt;br /&gt;
&lt;br /&gt;
In the family editor you can also add events. We call these family events as they are shared by the two parents. Typically this is Engagement, Marriage, .... In these the Role is 'Family'. It is not needed to add these events also individually to the two parents! &lt;br /&gt;
&lt;br /&gt;
When done, click {{man button|OK}} to save the family, and you will return to the relationship view with all the extra information visible. From within this view you can navigate to other people and keep enlarging your family tree.&lt;br /&gt;
&lt;br /&gt;
== A report ==&lt;br /&gt;
Now that you have a first small family tree, make a report. Go to the oldest grandparent you have in the relationship view or the person view (you can set bookmarks on people and set a home person!). With this person selected, go in the menu {{man menu|Reports-&amp;gt;Text Reports-&amp;gt;[[Gramps_{{man version}}_Wiki_Manual_-_Reports_-_part_6#Detailed_Descendant_Report|Detailed Descendant Report]]}}, to create a nice textual descendant report.&lt;br /&gt;
&lt;br /&gt;
== What next?==&lt;br /&gt;
Gramps has many features, as you improve, take the time to go over the [[Gramps_{{man version}}_Wiki_Manual|user manual]] and learn more. Join and use the mailing list to discuss issues.&lt;br /&gt;
&lt;br /&gt;
We advise everyone to read the manual to learn all about using Gramps. Genealogy takes time, so learning the tools is not wasted time.&lt;br /&gt;
&lt;br /&gt;
However, if you really want the bare minimum to start, then read this:&lt;br /&gt;
* [[Gramps {{man version}} Wiki Manual - Entering and editing data: brief]]&lt;br /&gt;
&lt;br /&gt;
==Screencasts==&lt;br /&gt;
&lt;br /&gt;
===Gramps 3.2.5===&lt;br /&gt;
Screencast for the older Gramps 3.2.5.&lt;br /&gt;
* Gramps 3.2.5: [[Media:Edit family from pedigree view Gramps 3.2.5.ogg|Edit family (parents, children, siblings) from Pedigree View]]&lt;br /&gt;
* Gramps 3.2.5: [[Media:Add_family_from_pedigree_view_Gramps_3.2.5.ogg|Add family (parents, children, siblings) from Pedigree View]]&lt;br /&gt;
&lt;br /&gt;
==See also==&lt;br /&gt;
Related articles.&lt;br /&gt;
* [[Add a child]]&lt;br /&gt;
* [[Add a spouse]]&lt;br /&gt;
* [[Add a godfather-godmother]]&lt;br /&gt;
* [[Add a witness]]&lt;br /&gt;
* [[Genealogy Glossary]]&lt;br /&gt;
* [[Gramps Glossary]]&lt;br /&gt;
&lt;br /&gt;
[[Category:How do I...]]&lt;br /&gt;
[[Category:Genealogy]]&lt;br /&gt;
[[Category:Gramps Logic]]&lt;/div&gt;</summary>
		<author><name>Sten</name></author>
		
	</entry>
	<entry>
		<id>https://ftp.gramps-project.org/wiki/index.php?title=RU:%D0%9D%D0%B0%D1%87%D0%B0%D0%BB%D0%BE_%D0%B2_%D0%93%D0%B5%D0%BD%D0%B5%D0%B0%D0%BB%D0%BE%D0%B3%D0%B8%D0%B8&amp;diff=78866</id>
		<title>RU:Начало в Генеалогии</title>
		<link rel="alternate" type="text/html" href="https://ftp.gramps-project.org/wiki/index.php?title=RU:%D0%9D%D0%B0%D1%87%D0%B0%D0%BB%D0%BE_%D0%B2_%D0%93%D0%B5%D0%BD%D0%B5%D0%B0%D0%BB%D0%BE%D0%B3%D0%B8%D0%B8&amp;diff=78866"/>
		<updated>2020-06-03T11:28:14Z</updated>

		<summary type="html">&lt;p&gt;Sten: /* Создать Семейное древо */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{languages ​​| Начало в Генеалогии}}&lt;br /&gt;
'' 'Как мне начать в Генеалогии, используя Gramps? «»»&lt;br /&gt;
&lt;br /&gt;
== Подготовка ==&lt;br /&gt;
Если Вы только начинаете свою генеалогию, лучше начать с себя и добавлять других людей, соединяя их с Вами.&lt;br /&gt;
&lt;br /&gt;
'' {{man menu | Одной из самых важных вещей в генеалогии является то, что Вы записываете, как и где Вы нашли / получили информацию.}} '' Это называется источником. Это настолько важно потому, что позже Вам понадобится эта информации или Вы захотите обратиться к ней. Наличие источника у Вашей информации также создаст доверие к ней у других исследователей.&lt;br /&gt;
&lt;br /&gt;
Таким образом, если Вы начинаете с себя, Вы сами ''проводите собеседование'', что является основным источником информации по этому вопросу. Из этого первоисточника Вы получаете такие события, как день рождения, день крещения, выпускной и так далее. Источник событий позволяет Вам вычислить существовавшего человека как часть семьи.&lt;br /&gt;
&lt;br /&gt;
Таким образом, у нас есть наши основные термины для генеалогии: Источники, События, Люди и Семьи. Помимо этого, Gramps позволяет хранить Заметки, Места, Медиа (фотографии, фильмы, документы) и [[ Ru:Хранилища в Gramps | Хранилища]].&lt;br /&gt;
&lt;br /&gt;
Итак, давайте начнем с добавления информации в Gramps.&lt;br /&gt;
&lt;br /&gt;
== Создать Семейное древо ==&lt;br /&gt;
Здесь предполагается, что Вы только что установили Gramps и запускаете свое первое семейное дерево.&lt;br /&gt;
&lt;br /&gt;
В качестве первого шага запустите Gramps.&lt;br /&gt;
{{-}}&lt;br /&gt;
[[File:Manage-databases-icon-toolbar-no-familytree-loaded-51.png|450px|thumb|right|Значок &amp;quot;Управление базами данных&amp;quot; на панели инструментов без загруженного семейного дерева]]&lt;br /&gt;
&lt;br /&gt;
Значок &amp;quot;Управление базами данных&amp;quot; Менеджера генеалогических деревьев под названием «Семейные древа - Gramps» будет отображаться на панели инструментов. Щёлкните значок генеалогического дерева, чтобы открыть менеджер семейных деревьев.&lt;br /&gt;
&lt;br /&gt;
[[Ru:Gramps_{{man version}}_Вики_Руководство_-_Начало#Выбор_семейного_древа| Выбор семейного древа]]&lt;br /&gt;
{{-}}&lt;br /&gt;
[[File:ManageFamilyTrees-51.png|right|thumb|450px|Окно менеджера «Семейные древа - Gramps»]]&lt;br /&gt;
&lt;br /&gt;
Во всплывающем окне менеджера генеалогических деревьев нажмите кнопку {{man button | Создать}} (справа). Теперь под &amp;quot;Название семейного древа» (слева) введите имя для своего дерева и нажмите кнопку {{man button | Загрузить семейное древо}} (внизу справа). Gramps теперь откроется вместе с Вашим недавно созданным деревом.&lt;br /&gt;
&lt;br /&gt;
https://gramps-project.org/wiki/index.php/Gramps_5.1_Wiki_Manual_-_Getting_Started/ru&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
''''&lt;br /&gt;
[[Ru:Gramps_{{man version}}_Вики_Руководство_-_Управление_семейными_древесами#Создание нового семейного древа]]&lt;br /&gt;
''''&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
[[Gramps_{{man version}}_Wiki_Manual_-_Manage_Family_Trees#Starting_a_new_Family_Tree]]&lt;br /&gt;
{{-}}&lt;br /&gt;
[[File:MainWindow-PeopleCategory-PeopleTreeView-annotated-50.png|450px|thumb|right|Аннотированные части окна Main Gramps]]&lt;br /&gt;
&lt;br /&gt;
Главная страница Gramps разделена на отдельные панели, панель инструментов в верхней части, левая боковая панель (навигатор), позволяющая перемещаться по различным представлениям ваших данных, область просмотра, в которой отображаются данные (в центре), и правая боковая панель (боковая панель) и нижняя панель (Bottombar), которая может быть использована для Gramplets, (Gramplets покрыты позже). Большинство из этих панелей можно включить или выключить, перейдя к слову View в верхней части окна и отметив (вкл) или сняв флажок (выключить) вид.&lt;br /&gt;
[[Gramps_{{man version}}_Wiki_Manual_-_Main_Window#Main_Window]]&lt;br /&gt;
{{-}}&lt;br /&gt;
&lt;br /&gt;
==Create a Source==&lt;br /&gt;
[[File:NewSource-editor-dialog-example-50.png|thumb|right|450px|New Source - editor dialog - example]]&lt;br /&gt;
&lt;br /&gt;
As you start with yourself, and the source is the interview with yourself, in the left sidebar called '''Navigator''' click on the [[Gramps_{{man version}}_Wiki_Manual_-_Categories#Sources_Category|source icon]] {{icon|sour34}}. In the toolbar click on {{man label|Add}} (or {{man key press|CTRL|INSERT}} on the keyboard) to open the [[Gramps_{{man version}}_Wiki_Manual_-_Entering_and_editing_data:_detailed_-_part_2#New_Source_dialog|source editor]].&lt;br /&gt;
&lt;br /&gt;
Assuming your name is ''John Doe'', you now make a source for the interview with yourself! So enter:&lt;br /&gt;
* Title: Interview with John Doe&lt;br /&gt;
* Author: John Doe&lt;br /&gt;
And click on {{man button|OK}}.&lt;br /&gt;
{{-}}&lt;br /&gt;
[[File:SourcesCategory-SourcesListView-example-50.png|right|450px|thumb|Sources Category - (List) View]]&lt;br /&gt;
&lt;br /&gt;
That is it, your first source. In the [[Gramps_{{man version}}_Wiki_Manual_-_Categories#Sources_Category|Source(list)view]] you will see your new source listed and that the entry has ID number that is unique to your source.&lt;br /&gt;
&lt;br /&gt;
[[Gramps_{{man version}}_Wiki_Manual_-_Entering_and_editing_data:_detailed_-_part_2#Editing_information_about_sources]]&lt;br /&gt;
&lt;br /&gt;
&amp;lt;!--&lt;br /&gt;
Before continuing, let's show how to change the interface. In the toolbar of Gramps, the last icon is the {{man button|Configure the active view}}, so click it to see how you can adapt the view. Activate the 'Last Changed' Column and by dragging, change eg 'Author' to be the second column. Most views have this configuration option, so change these to your liking!&lt;br /&gt;
--&amp;gt;&lt;br /&gt;
{{-}}&lt;br /&gt;
&lt;br /&gt;
==Add data to the source==&lt;br /&gt;
{{stub}}&lt;br /&gt;
(Ver. 3.3.1-1)&lt;br /&gt;
&lt;br /&gt;
Before you begin, you should know that Gramps does '''not''' store your media(pictures, videos, sounds, and documents etc..), it only stores a link to where the media is on your hard disk. So decide where you will store your pictures, videos, sounds, and documents. Then on the menu bar select {{man menu|Edit-&amp;gt;Preferences}} and the '''General''' tab. Set the value of {{man label|Base path for relative media paths}} to this directory. Click on the {{man label|Close}} button to save your changes. Keep your media documents well structured in this directory.&lt;br /&gt;
&lt;br /&gt;
Now let's continue with adding some more data to the source. Double click on it (or press {{Man key press|ENTER}}) to open the source 'Interview with John Doe'. Look at the tab pages at the bottom of the source editor: Notes, Gallery, Data, Repositories, References. Surely you have a picture of yourself! Let's add it to the Gallery of this source.&lt;br /&gt;
&lt;br /&gt;
Click on the {{man label|Gallery}} tab, and then on the little '''Add''' icon just below the Notes tab. This opens a dialog to select the image of yourself. At the bottom of this dialog is a box '''Title:''' to set a nice title such as 'Picture of John Doe'. Entering a title does not change the file name. Make sure you select 'Convert to a relative path'. Press {{man button|OK}}. You will now see the ''Media Reference Editor''. The top of this dialog allows to select a region of the picture, eg when you have selected a group photo, it makes sense to indicate who on the photo is John Doe. You can use the mouse in the preview picture to select the part of the picture of interest (click down is corner 1 and click release is corner 2). Click {{man button|OK}} to save the image and go back to the source editor you were working on. &lt;br /&gt;
&lt;br /&gt;
Suppose you have a typed-out text of the interview. In that case you can add the textual document (odt, doc, rtf, etc ...) in the {{man label|Gallery}}, but you can also store the text as a {{man label|Note}} in Gramps. The good thing about using a note is that Gramps can search the text of notes with filters. So, click on the {{man label|Notes}} tab, click the '''Add''' icon, and you are presented with a basic editor that you can type or paste text into.&lt;br /&gt;
&lt;br /&gt;
When finished, press {{man button|OK}} on the source editor, and your source 'Interview with John Doe' now has also a note and picture.&lt;br /&gt;
&lt;br /&gt;
To see these, you would have to open the editor again. However, Gramps has a bottom pane that can show you information on the selected entry in the source view. For that, activate in the menu '''View''' the '''Bottombar'''. You will see a number of tabs which allow to show information. The elements showing information are called '''Gramplets''' in Gramps. Gramplets are small plugins that can perform all kinds of tasks. You can add one to the bottombar by using right-click with the mouse on the bottombar next to the tabs.&lt;br /&gt;
&lt;br /&gt;
== Time for your first Person ==&lt;br /&gt;
(Ver. 3.3.1-1)&lt;br /&gt;
&lt;br /&gt;
So much done, and not yet one single person is present in your family tree! Time to change that. Let's add yourself. As all information you will add comes from the source 'Interview with John Doe', we first store this in an easy to reach place. In the toolbar click on the {{man button|Clipboard}} icon to open the clipboard. Drag and drop, from the source view, the source 'Interview with John Doe', into the Clipboard. Your source is now stored in the Clipboard and this window can be closed.&lt;br /&gt;
&lt;br /&gt;
In the Navigator, click on the Person icon to see the person view. Note that on the Toolbar there is a pressed-in button (3rd button from the right) indicating the type of person view you have activated. Try the other possibility once to see what changes. Many Categories in the Navigator have more than one view!&lt;br /&gt;
&lt;br /&gt;
Click now on the {{man button|Add}} button on the Toolbar to add your first person. You now see the person editor, and the top part of this should be what you expect: all information about the name of this person. So, type in your given name, and your surname. If you are eg. Spanish and have a very long surname, then click on the {{man button|Add}} icon after the surname to enter multiple surnames. See the manual for more details. Now select your Gender.&lt;br /&gt;
&lt;br /&gt;
As you enter data, you need to add where you obtained this data (Source). For this, click on the {{man label|Sources}} tab, then open the Clipboard from the Toolbar, drag the source you stored in the clipboard, into the area under ID |Title | Auth | Page of the Person Editor. This will open up the 'Source Reference Editor'. The bottom part of this editor is the same source as already entered, but the top part is new, and contains the data on how the information of the person was found in this source and how certain you are of it. For this interview you can set {{man label|Confidence}} to ''Very High''.&lt;br /&gt;
&lt;br /&gt;
You already have a picture of yourself, as you added it to the source. You can now add this same picture to this Person record you are creating. For this, click on the {{man label|Gallery}} tab of the person editor, and click on the {{man button|Share}} button. This will open a list of all media objects. Select the one you made earlier and click {{man button|OK}} to store everything. You could also have used the clipboard: or by adding the picture there from the media view, or by adding the media ''reference'' in the clipboard by dragging it from the gallery of an object to the clipboard, and then using it from there where you need it. &lt;br /&gt;
&lt;br /&gt;
Save everything by clicking {{man button|OK}} until you see the main Gramps view again.&lt;br /&gt;
&lt;br /&gt;
== Events ==&lt;br /&gt;
(Ver. 3.3.1-1)&lt;br /&gt;
&lt;br /&gt;
Next, you will want to add your birthday. For this, open the person editor of yourself, by double clicking on your name. Note that the {{man label|Events}} tab is open. Click on the {{man button|Add}} icon to add an event. Gramps preselects the birth event for the first event that you want to add. Enter your birth date as: (12/31/1900 - Month/Day/Year) or (1 Jan 1900 - Day Month Year). If you use Day Month Year, the Month must be entered with the first 3 letters only or it must be spelled out completely.&lt;br /&gt;
&lt;br /&gt;
You can also click on the {{man button|Calendar}} button on the right. This window allows you to select the Day Month and Year with a drop-down menu. When using this make sure that the Quality is set to Regular and Type is also set to Regular. After entering your birth date in the calendar window, click on {{man button|OK}} to save it.&lt;br /&gt;
&lt;br /&gt;
Next, because you have no Places in your database you need to create one. Knowing the place where you were born, click on the {{man button|Add}} icon after the Place entry to create this place. Enter places as City/Town, Township, County, State, Country or any combination of these. Such as Germantown, German Township (Twp), Montgomery County (Co.), Ohio, USA. Being consistent when adding places will be helpful later when you can select these from the {{man button|Select an existing place}} icon.  Adding latitude and longitude will allow these places to be positioned on a map later.&lt;br /&gt;
&lt;br /&gt;
Don't forget to Source this. Click the {{man button|Source}} tab, open the '''Clipboard''', drag and drop your source, select the Confidence level, and save both the Source and then the new place with the {{man button|OK}} buttons.&lt;br /&gt;
&lt;br /&gt;
Note that the editor that has been open is the Event ''Reference'' Editor. This means that there is a global part that you can share with other people (the bottom of the editor), and a top part which is unique to the person. This top part is used to enter the {{man label|Role}} of the person in the event. In your own birth, you have the primary role. If you know the name of people helping in the birth, and you want to store these people also, you can share this event with them, with a Role of ''Aide''. You can type a custom role in the {{man label|Role}} field if you are not happy with the predefined possibilities.&lt;br /&gt;
&lt;br /&gt;
Again, add a source to the event via the {{man label|Sources}} tab, like you did before. As you have no real recollection of your own birth, the interview should not have confidence 'Very High'! You would need to add a birth document as source for that.&lt;br /&gt;
&lt;br /&gt;
When done, click {{man button|OK}} to save the event, and then again to save the person, and you have your first full person record.&lt;br /&gt;
&lt;br /&gt;
== Family ==&lt;br /&gt;
You now have entered yourself, time to add your parents. You could add your father and mother as you added yourself, and then connect them in a family, but most people will do things in one go via the {{icon|rela}}'''Relationship View''' or the {{icon|ance}}'''Pedigree View'''. Let's go to the Relationship view: select yourself in the person view, and then in the navigator, select the relationship view. This view has a toolbar that allows to add parents or to add a spouse. Click on the {{man button|Add parents}} icon to open the family editor.&lt;br /&gt;
&lt;br /&gt;
In the family editor you will see that you are present in the {{man label|Children}} tab. Use the {{man button|Add}} icon next to father and mother to add them as you have added yourself. Use the {{man button|Add}} icon in the {{man label|Children}} tab to add your siblings. You need to use drag-and-drop to sort siblings in the order as you want them to appear in reports (normally oldest to youngest I suppose). &lt;br /&gt;
&lt;br /&gt;
In the family editor you can also add events. We call these family events as they are shared by the two parents. Typically this is Engagement, Marriage, .... In these the Role is 'Family'. It is not needed to add these events also individually to the two parents! &lt;br /&gt;
&lt;br /&gt;
When done, click {{man button|OK}} to save the family, and you will return to the relationship view with all the extra information visible. From within this view you can navigate to other people and keep enlarging your family tree.&lt;br /&gt;
&lt;br /&gt;
== A report ==&lt;br /&gt;
Now that you have a first small family tree, make a report. Go to the oldest grandparent you have in the relationship view or the person view (you can set bookmarks on people and set a home person!). With this person selected, go in the menu {{man menu|Reports-&amp;gt;Text Reports-&amp;gt;[[Gramps_{{man version}}_Wiki_Manual_-_Reports_-_part_6#Detailed_Descendant_Report|Detailed Descendant Report]]}}, to create a nice textual descendant report.&lt;br /&gt;
&lt;br /&gt;
== What next?==&lt;br /&gt;
Gramps has many features, as you improve, take the time to go over the [[Gramps_{{man version}}_Wiki_Manual|user manual]] and learn more. Join and use the mailing list to discuss issues.&lt;br /&gt;
&lt;br /&gt;
We advise everyone to read the manual to learn all about using Gramps. Genealogy takes time, so learning the tools is not wasted time.&lt;br /&gt;
&lt;br /&gt;
However, if you really want the bare minimum to start, then read this:&lt;br /&gt;
* [[Gramps {{man version}} Wiki Manual - Entering and editing data: brief]]&lt;br /&gt;
&lt;br /&gt;
==Screencasts==&lt;br /&gt;
&lt;br /&gt;
===Gramps 3.2.5===&lt;br /&gt;
Screencast for the older Gramps 3.2.5.&lt;br /&gt;
* Gramps 3.2.5: [[Media:Edit family from pedigree view Gramps 3.2.5.ogg|Edit family (parents, children, siblings) from Pedigree View]]&lt;br /&gt;
* Gramps 3.2.5: [[Media:Add_family_from_pedigree_view_Gramps_3.2.5.ogg|Add family (parents, children, siblings) from Pedigree View]]&lt;br /&gt;
&lt;br /&gt;
==See also==&lt;br /&gt;
Related articles.&lt;br /&gt;
* [[Add a child]]&lt;br /&gt;
* [[Add a spouse]]&lt;br /&gt;
* [[Add a godfather-godmother]]&lt;br /&gt;
* [[Add a witness]]&lt;br /&gt;
* [[Genealogy Glossary]]&lt;br /&gt;
* [[Gramps Glossary]]&lt;br /&gt;
&lt;br /&gt;
[[Category:How do I...]]&lt;br /&gt;
[[Category:Genealogy]]&lt;br /&gt;
[[Category:Gramps Logic]]&lt;/div&gt;</summary>
		<author><name>Sten</name></author>
		
	</entry>
	<entry>
		<id>https://ftp.gramps-project.org/wiki/index.php?title=RU:%D0%9D%D0%B0%D1%87%D0%B0%D0%BB%D0%BE_%D0%B2_%D0%93%D0%B5%D0%BD%D0%B5%D0%B0%D0%BB%D0%BE%D0%B3%D0%B8%D0%B8&amp;diff=78865</id>
		<title>RU:Начало в Генеалогии</title>
		<link rel="alternate" type="text/html" href="https://ftp.gramps-project.org/wiki/index.php?title=RU:%D0%9D%D0%B0%D1%87%D0%B0%D0%BB%D0%BE_%D0%B2_%D0%93%D0%B5%D0%BD%D0%B5%D0%B0%D0%BB%D0%BE%D0%B3%D0%B8%D0%B8&amp;diff=78865"/>
		<updated>2020-06-03T11:13:50Z</updated>

		<summary type="html">&lt;p&gt;Sten: /* Создать Семейное древо */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{languages ​​| Начало в Генеалогии}}&lt;br /&gt;
'' 'Как мне начать в Генеалогии, используя Gramps? «»»&lt;br /&gt;
&lt;br /&gt;
== Подготовка ==&lt;br /&gt;
Если Вы только начинаете свою генеалогию, лучше начать с себя и добавлять других людей, соединяя их с Вами.&lt;br /&gt;
&lt;br /&gt;
'' {{man menu | Одной из самых важных вещей в генеалогии является то, что Вы записываете, как и где Вы нашли / получили информацию.}} '' Это называется источником. Это настолько важно потому, что позже Вам понадобится эта информации или Вы захотите обратиться к ней. Наличие источника у Вашей информации также создаст доверие к ней у других исследователей.&lt;br /&gt;
&lt;br /&gt;
Таким образом, если Вы начинаете с себя, Вы сами ''проводите собеседование'', что является основным источником информации по этому вопросу. Из этого первоисточника Вы получаете такие события, как день рождения, день крещения, выпускной и так далее. Источник событий позволяет Вам вычислить существовавшего человека как часть семьи.&lt;br /&gt;
&lt;br /&gt;
Таким образом, у нас есть наши основные термины для генеалогии: Источники, События, Люди и Семьи. Помимо этого, Gramps позволяет хранить Заметки, Места, Медиа (фотографии, фильмы, документы) и [[ Ru:Хранилища в Gramps | Хранилища]].&lt;br /&gt;
&lt;br /&gt;
Итак, давайте начнем с добавления информации в Gramps.&lt;br /&gt;
&lt;br /&gt;
== Создать Семейное древо ==&lt;br /&gt;
Здесь предполагается, что Вы только что установили Gramps и запускаете свое первое семейное дерево.&lt;br /&gt;
&lt;br /&gt;
В качестве первого шага запустите Gramps.&lt;br /&gt;
{{-}}&lt;br /&gt;
[[File:Manage-databases-icon-toolbar-no-familytree-loaded-51.png|450px|thumb|right|Значок &amp;quot;Управление базами данных&amp;quot; на панели инструментов без загруженного семейного дерева]]&lt;br /&gt;
&lt;br /&gt;
Значок &amp;quot;Управление базами данных&amp;quot; Менеджера генеалогических деревьев под названием «Семейные древа - Gramps» будет отображаться на панели инструментов. Щёлкните значок генеалогического дерева, чтобы открыть менеджер семейных деревьев.&lt;br /&gt;
&lt;br /&gt;
[[Gramps_{{man version}}_Wiki_Manual_-_Getting_started#Choosing_a_Family_Tree]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
[[Gramps_{{man version}}_Wiki_Manual_-_Getting_started/ru#Choosing_a_Family_Tree]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
[[Ru:Gramps_5.1_Вики_Руководство_-_Начало#Выбор_семейного_древа| Выбор_семейного_древа]]&lt;br /&gt;
{{-}}&lt;br /&gt;
[[File:ManageFamilyTrees-51.png|right|thumb|450px|Окно менеджера «Семейные древа - Gramps»]]&lt;br /&gt;
&lt;br /&gt;
Во всплывающем окне менеджера генеалогических деревьев нажмите кнопку {{man button | Создать}} (справа). Теперь под &amp;quot;Название семейного древа» (слева) введите имя для своего дерева и нажмите кнопку {{man button | Загрузить семейное древо}} (внизу справа). Gramps теперь откроется вместе с Вашим недавно созданным деревом.&lt;br /&gt;
&lt;br /&gt;
https://gramps-project.org/wiki/index.php/Gramps_5.1_Wiki_Manual_-_Getting_Started/ru&lt;br /&gt;
&lt;br /&gt;
[[Gramps_{{man version}}_Wiki_Manual_-_Manage_Family_Trees#Starting_a_new_Family_Tree]]&lt;br /&gt;
{{-}}&lt;br /&gt;
[[File:MainWindow-PeopleCategory-PeopleTreeView-annotated-50.png|450px|thumb|right|Аннотированные части окна Main Gramps]]&lt;br /&gt;
&lt;br /&gt;
Главная страница Gramps разделена на отдельные панели, панель инструментов в верхней части, левая боковая панель (навигатор), позволяющая перемещаться по различным представлениям ваших данных, область просмотра, в которой отображаются данные (в центре), и правая боковая панель (боковая панель) и нижняя панель (Bottombar), которая может быть использована для Gramplets, (Gramplets покрыты позже). Большинство из этих панелей можно включить или выключить, перейдя к слову View в верхней части окна и отметив (вкл) или сняв флажок (выключить) вид.&lt;br /&gt;
[[Gramps_{{man version}}_Wiki_Manual_-_Main_Window#Main_Window]]&lt;br /&gt;
{{-}}&lt;br /&gt;
&lt;br /&gt;
==Create a Source==&lt;br /&gt;
[[File:NewSource-editor-dialog-example-50.png|thumb|right|450px|New Source - editor dialog - example]]&lt;br /&gt;
&lt;br /&gt;
As you start with yourself, and the source is the interview with yourself, in the left sidebar called '''Navigator''' click on the [[Gramps_{{man version}}_Wiki_Manual_-_Categories#Sources_Category|source icon]] {{icon|sour34}}. In the toolbar click on {{man label|Add}} (or {{man key press|CTRL|INSERT}} on the keyboard) to open the [[Gramps_{{man version}}_Wiki_Manual_-_Entering_and_editing_data:_detailed_-_part_2#New_Source_dialog|source editor]].&lt;br /&gt;
&lt;br /&gt;
Assuming your name is ''John Doe'', you now make a source for the interview with yourself! So enter:&lt;br /&gt;
* Title: Interview with John Doe&lt;br /&gt;
* Author: John Doe&lt;br /&gt;
And click on {{man button|OK}}.&lt;br /&gt;
{{-}}&lt;br /&gt;
[[File:SourcesCategory-SourcesListView-example-50.png|right|450px|thumb|Sources Category - (List) View]]&lt;br /&gt;
&lt;br /&gt;
That is it, your first source. In the [[Gramps_{{man version}}_Wiki_Manual_-_Categories#Sources_Category|Source(list)view]] you will see your new source listed and that the entry has ID number that is unique to your source.&lt;br /&gt;
&lt;br /&gt;
[[Gramps_{{man version}}_Wiki_Manual_-_Entering_and_editing_data:_detailed_-_part_2#Editing_information_about_sources]]&lt;br /&gt;
&lt;br /&gt;
&amp;lt;!--&lt;br /&gt;
Before continuing, let's show how to change the interface. In the toolbar of Gramps, the last icon is the {{man button|Configure the active view}}, so click it to see how you can adapt the view. Activate the 'Last Changed' Column and by dragging, change eg 'Author' to be the second column. Most views have this configuration option, so change these to your liking!&lt;br /&gt;
--&amp;gt;&lt;br /&gt;
{{-}}&lt;br /&gt;
&lt;br /&gt;
==Add data to the source==&lt;br /&gt;
{{stub}}&lt;br /&gt;
(Ver. 3.3.1-1)&lt;br /&gt;
&lt;br /&gt;
Before you begin, you should know that Gramps does '''not''' store your media(pictures, videos, sounds, and documents etc..), it only stores a link to where the media is on your hard disk. So decide where you will store your pictures, videos, sounds, and documents. Then on the menu bar select {{man menu|Edit-&amp;gt;Preferences}} and the '''General''' tab. Set the value of {{man label|Base path for relative media paths}} to this directory. Click on the {{man label|Close}} button to save your changes. Keep your media documents well structured in this directory.&lt;br /&gt;
&lt;br /&gt;
Now let's continue with adding some more data to the source. Double click on it (or press {{Man key press|ENTER}}) to open the source 'Interview with John Doe'. Look at the tab pages at the bottom of the source editor: Notes, Gallery, Data, Repositories, References. Surely you have a picture of yourself! Let's add it to the Gallery of this source.&lt;br /&gt;
&lt;br /&gt;
Click on the {{man label|Gallery}} tab, and then on the little '''Add''' icon just below the Notes tab. This opens a dialog to select the image of yourself. At the bottom of this dialog is a box '''Title:''' to set a nice title such as 'Picture of John Doe'. Entering a title does not change the file name. Make sure you select 'Convert to a relative path'. Press {{man button|OK}}. You will now see the ''Media Reference Editor''. The top of this dialog allows to select a region of the picture, eg when you have selected a group photo, it makes sense to indicate who on the photo is John Doe. You can use the mouse in the preview picture to select the part of the picture of interest (click down is corner 1 and click release is corner 2). Click {{man button|OK}} to save the image and go back to the source editor you were working on. &lt;br /&gt;
&lt;br /&gt;
Suppose you have a typed-out text of the interview. In that case you can add the textual document (odt, doc, rtf, etc ...) in the {{man label|Gallery}}, but you can also store the text as a {{man label|Note}} in Gramps. The good thing about using a note is that Gramps can search the text of notes with filters. So, click on the {{man label|Notes}} tab, click the '''Add''' icon, and you are presented with a basic editor that you can type or paste text into.&lt;br /&gt;
&lt;br /&gt;
When finished, press {{man button|OK}} on the source editor, and your source 'Interview with John Doe' now has also a note and picture.&lt;br /&gt;
&lt;br /&gt;
To see these, you would have to open the editor again. However, Gramps has a bottom pane that can show you information on the selected entry in the source view. For that, activate in the menu '''View''' the '''Bottombar'''. You will see a number of tabs which allow to show information. The elements showing information are called '''Gramplets''' in Gramps. Gramplets are small plugins that can perform all kinds of tasks. You can add one to the bottombar by using right-click with the mouse on the bottombar next to the tabs.&lt;br /&gt;
&lt;br /&gt;
== Time for your first Person ==&lt;br /&gt;
(Ver. 3.3.1-1)&lt;br /&gt;
&lt;br /&gt;
So much done, and not yet one single person is present in your family tree! Time to change that. Let's add yourself. As all information you will add comes from the source 'Interview with John Doe', we first store this in an easy to reach place. In the toolbar click on the {{man button|Clipboard}} icon to open the clipboard. Drag and drop, from the source view, the source 'Interview with John Doe', into the Clipboard. Your source is now stored in the Clipboard and this window can be closed.&lt;br /&gt;
&lt;br /&gt;
In the Navigator, click on the Person icon to see the person view. Note that on the Toolbar there is a pressed-in button (3rd button from the right) indicating the type of person view you have activated. Try the other possibility once to see what changes. Many Categories in the Navigator have more than one view!&lt;br /&gt;
&lt;br /&gt;
Click now on the {{man button|Add}} button on the Toolbar to add your first person. You now see the person editor, and the top part of this should be what you expect: all information about the name of this person. So, type in your given name, and your surname. If you are eg. Spanish and have a very long surname, then click on the {{man button|Add}} icon after the surname to enter multiple surnames. See the manual for more details. Now select your Gender.&lt;br /&gt;
&lt;br /&gt;
As you enter data, you need to add where you obtained this data (Source). For this, click on the {{man label|Sources}} tab, then open the Clipboard from the Toolbar, drag the source you stored in the clipboard, into the area under ID |Title | Auth | Page of the Person Editor. This will open up the 'Source Reference Editor'. The bottom part of this editor is the same source as already entered, but the top part is new, and contains the data on how the information of the person was found in this source and how certain you are of it. For this interview you can set {{man label|Confidence}} to ''Very High''.&lt;br /&gt;
&lt;br /&gt;
You already have a picture of yourself, as you added it to the source. You can now add this same picture to this Person record you are creating. For this, click on the {{man label|Gallery}} tab of the person editor, and click on the {{man button|Share}} button. This will open a list of all media objects. Select the one you made earlier and click {{man button|OK}} to store everything. You could also have used the clipboard: or by adding the picture there from the media view, or by adding the media ''reference'' in the clipboard by dragging it from the gallery of an object to the clipboard, and then using it from there where you need it. &lt;br /&gt;
&lt;br /&gt;
Save everything by clicking {{man button|OK}} until you see the main Gramps view again.&lt;br /&gt;
&lt;br /&gt;
== Events ==&lt;br /&gt;
(Ver. 3.3.1-1)&lt;br /&gt;
&lt;br /&gt;
Next, you will want to add your birthday. For this, open the person editor of yourself, by double clicking on your name. Note that the {{man label|Events}} tab is open. Click on the {{man button|Add}} icon to add an event. Gramps preselects the birth event for the first event that you want to add. Enter your birth date as: (12/31/1900 - Month/Day/Year) or (1 Jan 1900 - Day Month Year). If you use Day Month Year, the Month must be entered with the first 3 letters only or it must be spelled out completely.&lt;br /&gt;
&lt;br /&gt;
You can also click on the {{man button|Calendar}} button on the right. This window allows you to select the Day Month and Year with a drop-down menu. When using this make sure that the Quality is set to Regular and Type is also set to Regular. After entering your birth date in the calendar window, click on {{man button|OK}} to save it.&lt;br /&gt;
&lt;br /&gt;
Next, because you have no Places in your database you need to create one. Knowing the place where you were born, click on the {{man button|Add}} icon after the Place entry to create this place. Enter places as City/Town, Township, County, State, Country or any combination of these. Such as Germantown, German Township (Twp), Montgomery County (Co.), Ohio, USA. Being consistent when adding places will be helpful later when you can select these from the {{man button|Select an existing place}} icon.  Adding latitude and longitude will allow these places to be positioned on a map later.&lt;br /&gt;
&lt;br /&gt;
Don't forget to Source this. Click the {{man button|Source}} tab, open the '''Clipboard''', drag and drop your source, select the Confidence level, and save both the Source and then the new place with the {{man button|OK}} buttons.&lt;br /&gt;
&lt;br /&gt;
Note that the editor that has been open is the Event ''Reference'' Editor. This means that there is a global part that you can share with other people (the bottom of the editor), and a top part which is unique to the person. This top part is used to enter the {{man label|Role}} of the person in the event. In your own birth, you have the primary role. If you know the name of people helping in the birth, and you want to store these people also, you can share this event with them, with a Role of ''Aide''. You can type a custom role in the {{man label|Role}} field if you are not happy with the predefined possibilities.&lt;br /&gt;
&lt;br /&gt;
Again, add a source to the event via the {{man label|Sources}} tab, like you did before. As you have no real recollection of your own birth, the interview should not have confidence 'Very High'! You would need to add a birth document as source for that.&lt;br /&gt;
&lt;br /&gt;
When done, click {{man button|OK}} to save the event, and then again to save the person, and you have your first full person record.&lt;br /&gt;
&lt;br /&gt;
== Family ==&lt;br /&gt;
You now have entered yourself, time to add your parents. You could add your father and mother as you added yourself, and then connect them in a family, but most people will do things in one go via the {{icon|rela}}'''Relationship View''' or the {{icon|ance}}'''Pedigree View'''. Let's go to the Relationship view: select yourself in the person view, and then in the navigator, select the relationship view. This view has a toolbar that allows to add parents or to add a spouse. Click on the {{man button|Add parents}} icon to open the family editor.&lt;br /&gt;
&lt;br /&gt;
In the family editor you will see that you are present in the {{man label|Children}} tab. Use the {{man button|Add}} icon next to father and mother to add them as you have added yourself. Use the {{man button|Add}} icon in the {{man label|Children}} tab to add your siblings. You need to use drag-and-drop to sort siblings in the order as you want them to appear in reports (normally oldest to youngest I suppose). &lt;br /&gt;
&lt;br /&gt;
In the family editor you can also add events. We call these family events as they are shared by the two parents. Typically this is Engagement, Marriage, .... In these the Role is 'Family'. It is not needed to add these events also individually to the two parents! &lt;br /&gt;
&lt;br /&gt;
When done, click {{man button|OK}} to save the family, and you will return to the relationship view with all the extra information visible. From within this view you can navigate to other people and keep enlarging your family tree.&lt;br /&gt;
&lt;br /&gt;
== A report ==&lt;br /&gt;
Now that you have a first small family tree, make a report. Go to the oldest grandparent you have in the relationship view or the person view (you can set bookmarks on people and set a home person!). With this person selected, go in the menu {{man menu|Reports-&amp;gt;Text Reports-&amp;gt;[[Gramps_{{man version}}_Wiki_Manual_-_Reports_-_part_6#Detailed_Descendant_Report|Detailed Descendant Report]]}}, to create a nice textual descendant report.&lt;br /&gt;
&lt;br /&gt;
== What next?==&lt;br /&gt;
Gramps has many features, as you improve, take the time to go over the [[Gramps_{{man version}}_Wiki_Manual|user manual]] and learn more. Join and use the mailing list to discuss issues.&lt;br /&gt;
&lt;br /&gt;
We advise everyone to read the manual to learn all about using Gramps. Genealogy takes time, so learning the tools is not wasted time.&lt;br /&gt;
&lt;br /&gt;
However, if you really want the bare minimum to start, then read this:&lt;br /&gt;
* [[Gramps {{man version}} Wiki Manual - Entering and editing data: brief]]&lt;br /&gt;
&lt;br /&gt;
==Screencasts==&lt;br /&gt;
&lt;br /&gt;
===Gramps 3.2.5===&lt;br /&gt;
Screencast for the older Gramps 3.2.5.&lt;br /&gt;
* Gramps 3.2.5: [[Media:Edit family from pedigree view Gramps 3.2.5.ogg|Edit family (parents, children, siblings) from Pedigree View]]&lt;br /&gt;
* Gramps 3.2.5: [[Media:Add_family_from_pedigree_view_Gramps_3.2.5.ogg|Add family (parents, children, siblings) from Pedigree View]]&lt;br /&gt;
&lt;br /&gt;
==See also==&lt;br /&gt;
Related articles.&lt;br /&gt;
* [[Add a child]]&lt;br /&gt;
* [[Add a spouse]]&lt;br /&gt;
* [[Add a godfather-godmother]]&lt;br /&gt;
* [[Add a witness]]&lt;br /&gt;
* [[Genealogy Glossary]]&lt;br /&gt;
* [[Gramps Glossary]]&lt;br /&gt;
&lt;br /&gt;
[[Category:How do I...]]&lt;br /&gt;
[[Category:Genealogy]]&lt;br /&gt;
[[Category:Gramps Logic]]&lt;/div&gt;</summary>
		<author><name>Sten</name></author>
		
	</entry>
	<entry>
		<id>https://ftp.gramps-project.org/wiki/index.php?title=RU:%D0%9D%D0%B0%D1%87%D0%B0%D0%BB%D0%BE_%D0%B2_%D0%93%D0%B5%D0%BD%D0%B5%D0%B0%D0%BB%D0%BE%D0%B3%D0%B8%D0%B8&amp;diff=78864</id>
		<title>RU:Начало в Генеалогии</title>
		<link rel="alternate" type="text/html" href="https://ftp.gramps-project.org/wiki/index.php?title=RU:%D0%9D%D0%B0%D1%87%D0%B0%D0%BB%D0%BE_%D0%B2_%D0%93%D0%B5%D0%BD%D0%B5%D0%B0%D0%BB%D0%BE%D0%B3%D0%B8%D0%B8&amp;diff=78864"/>
		<updated>2020-06-03T11:06:29Z</updated>

		<summary type="html">&lt;p&gt;Sten: /* Создать Семейное древо */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{languages ​​| Начало в Генеалогии}}&lt;br /&gt;
'' 'Как мне начать в Генеалогии, используя Gramps? «»»&lt;br /&gt;
&lt;br /&gt;
== Подготовка ==&lt;br /&gt;
Если Вы только начинаете свою генеалогию, лучше начать с себя и добавлять других людей, соединяя их с Вами.&lt;br /&gt;
&lt;br /&gt;
'' {{man menu | Одной из самых важных вещей в генеалогии является то, что Вы записываете, как и где Вы нашли / получили информацию.}} '' Это называется источником. Это настолько важно потому, что позже Вам понадобится эта информации или Вы захотите обратиться к ней. Наличие источника у Вашей информации также создаст доверие к ней у других исследователей.&lt;br /&gt;
&lt;br /&gt;
Таким образом, если Вы начинаете с себя, Вы сами ''проводите собеседование'', что является основным источником информации по этому вопросу. Из этого первоисточника Вы получаете такие события, как день рождения, день крещения, выпускной и так далее. Источник событий позволяет Вам вычислить существовавшего человека как часть семьи.&lt;br /&gt;
&lt;br /&gt;
Таким образом, у нас есть наши основные термины для генеалогии: Источники, События, Люди и Семьи. Помимо этого, Gramps позволяет хранить Заметки, Места, Медиа (фотографии, фильмы, документы) и [[ Ru:Хранилища в Gramps | Хранилища]].&lt;br /&gt;
&lt;br /&gt;
Итак, давайте начнем с добавления информации в Gramps.&lt;br /&gt;
&lt;br /&gt;
== Создать Семейное древо ==&lt;br /&gt;
Здесь предполагается, что Вы только что установили Gramps и запускаете свое первое семейное дерево.&lt;br /&gt;
&lt;br /&gt;
В качестве первого шага запустите Gramps.&lt;br /&gt;
{{-}}&lt;br /&gt;
[[File:Manage-databases-icon-toolbar-no-familytree-loaded-51.png|450px|thumb|right|Значок &amp;quot;Управление базами данных&amp;quot; на панели инструментов без загруженного семейного дерева]]&lt;br /&gt;
&lt;br /&gt;
Значок &amp;quot;Управление базами данных&amp;quot; Менеджера генеалогических деревьев под названием «Семейные древа - Gramps» будет отображаться на панели инструментов. Щёлкните значок генеалогического дерева, чтобы открыть менеджер семейных деревьев.&lt;br /&gt;
&lt;br /&gt;
[[Ru:Gramps_5.1_Вики_Руководство_-_Начало#Выбор_семейного_древа]]&lt;br /&gt;
{{-}}&lt;br /&gt;
[[File:ManageFamilyTrees-51.png|right|thumb|450px|Окно менеджера «Семейные древа - Gramps»]]&lt;br /&gt;
&lt;br /&gt;
Во всплывающем окне менеджера генеалогических деревьев нажмите кнопку {{man button | Создать}} (справа). Теперь под &amp;quot;Название семейного древа» (слева) введите имя для своего дерева и нажмите кнопку {{man button | Загрузить семейное древо}} (внизу справа). Gramps теперь откроется вместе с Вашим недавно созданным деревом.&lt;br /&gt;
&lt;br /&gt;
https://gramps-project.org/wiki/index.php/Gramps_5.1_Wiki_Manual_-_Getting_Started/ru&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
[[Gramps_{{man version}}_Wiki_Manual_-_Getting_started#Choosing_a_Family_Tree]]&lt;br /&gt;
[[Gramps_{{man version}}_Wiki_Manual_-_Getting_started/ru#Choosing_a_Family_Tree]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
[[Gramps_{{man version}}_Wiki_Manual_-_Manage_Family_Trees#Starting_a_new_Family_Tree]]&lt;br /&gt;
{{-}}&lt;br /&gt;
[[File:MainWindow-PeopleCategory-PeopleTreeView-annotated-50.png|450px|thumb|right|Аннотированные части окна Main Gramps]]&lt;br /&gt;
&lt;br /&gt;
Главная страница Gramps разделена на отдельные панели, панель инструментов в верхней части, левая боковая панель (навигатор), позволяющая перемещаться по различным представлениям ваших данных, область просмотра, в которой отображаются данные (в центре), и правая боковая панель (боковая панель) и нижняя панель (Bottombar), которая может быть использована для Gramplets, (Gramplets покрыты позже). Большинство из этих панелей можно включить или выключить, перейдя к слову View в верхней части окна и отметив (вкл) или сняв флажок (выключить) вид.&lt;br /&gt;
[[Gramps_{{man version}}_Wiki_Manual_-_Main_Window#Main_Window]]&lt;br /&gt;
{{-}}&lt;br /&gt;
&lt;br /&gt;
==Create a Source==&lt;br /&gt;
[[File:NewSource-editor-dialog-example-50.png|thumb|right|450px|New Source - editor dialog - example]]&lt;br /&gt;
&lt;br /&gt;
As you start with yourself, and the source is the interview with yourself, in the left sidebar called '''Navigator''' click on the [[Gramps_{{man version}}_Wiki_Manual_-_Categories#Sources_Category|source icon]] {{icon|sour34}}. In the toolbar click on {{man label|Add}} (or {{man key press|CTRL|INSERT}} on the keyboard) to open the [[Gramps_{{man version}}_Wiki_Manual_-_Entering_and_editing_data:_detailed_-_part_2#New_Source_dialog|source editor]].&lt;br /&gt;
&lt;br /&gt;
Assuming your name is ''John Doe'', you now make a source for the interview with yourself! So enter:&lt;br /&gt;
* Title: Interview with John Doe&lt;br /&gt;
* Author: John Doe&lt;br /&gt;
And click on {{man button|OK}}.&lt;br /&gt;
{{-}}&lt;br /&gt;
[[File:SourcesCategory-SourcesListView-example-50.png|right|450px|thumb|Sources Category - (List) View]]&lt;br /&gt;
&lt;br /&gt;
That is it, your first source. In the [[Gramps_{{man version}}_Wiki_Manual_-_Categories#Sources_Category|Source(list)view]] you will see your new source listed and that the entry has ID number that is unique to your source.&lt;br /&gt;
&lt;br /&gt;
[[Gramps_{{man version}}_Wiki_Manual_-_Entering_and_editing_data:_detailed_-_part_2#Editing_information_about_sources]]&lt;br /&gt;
&lt;br /&gt;
&amp;lt;!--&lt;br /&gt;
Before continuing, let's show how to change the interface. In the toolbar of Gramps, the last icon is the {{man button|Configure the active view}}, so click it to see how you can adapt the view. Activate the 'Last Changed' Column and by dragging, change eg 'Author' to be the second column. Most views have this configuration option, so change these to your liking!&lt;br /&gt;
--&amp;gt;&lt;br /&gt;
{{-}}&lt;br /&gt;
&lt;br /&gt;
==Add data to the source==&lt;br /&gt;
{{stub}}&lt;br /&gt;
(Ver. 3.3.1-1)&lt;br /&gt;
&lt;br /&gt;
Before you begin, you should know that Gramps does '''not''' store your media(pictures, videos, sounds, and documents etc..), it only stores a link to where the media is on your hard disk. So decide where you will store your pictures, videos, sounds, and documents. Then on the menu bar select {{man menu|Edit-&amp;gt;Preferences}} and the '''General''' tab. Set the value of {{man label|Base path for relative media paths}} to this directory. Click on the {{man label|Close}} button to save your changes. Keep your media documents well structured in this directory.&lt;br /&gt;
&lt;br /&gt;
Now let's continue with adding some more data to the source. Double click on it (or press {{Man key press|ENTER}}) to open the source 'Interview with John Doe'. Look at the tab pages at the bottom of the source editor: Notes, Gallery, Data, Repositories, References. Surely you have a picture of yourself! Let's add it to the Gallery of this source.&lt;br /&gt;
&lt;br /&gt;
Click on the {{man label|Gallery}} tab, and then on the little '''Add''' icon just below the Notes tab. This opens a dialog to select the image of yourself. At the bottom of this dialog is a box '''Title:''' to set a nice title such as 'Picture of John Doe'. Entering a title does not change the file name. Make sure you select 'Convert to a relative path'. Press {{man button|OK}}. You will now see the ''Media Reference Editor''. The top of this dialog allows to select a region of the picture, eg when you have selected a group photo, it makes sense to indicate who on the photo is John Doe. You can use the mouse in the preview picture to select the part of the picture of interest (click down is corner 1 and click release is corner 2). Click {{man button|OK}} to save the image and go back to the source editor you were working on. &lt;br /&gt;
&lt;br /&gt;
Suppose you have a typed-out text of the interview. In that case you can add the textual document (odt, doc, rtf, etc ...) in the {{man label|Gallery}}, but you can also store the text as a {{man label|Note}} in Gramps. The good thing about using a note is that Gramps can search the text of notes with filters. So, click on the {{man label|Notes}} tab, click the '''Add''' icon, and you are presented with a basic editor that you can type or paste text into.&lt;br /&gt;
&lt;br /&gt;
When finished, press {{man button|OK}} on the source editor, and your source 'Interview with John Doe' now has also a note and picture.&lt;br /&gt;
&lt;br /&gt;
To see these, you would have to open the editor again. However, Gramps has a bottom pane that can show you information on the selected entry in the source view. For that, activate in the menu '''View''' the '''Bottombar'''. You will see a number of tabs which allow to show information. The elements showing information are called '''Gramplets''' in Gramps. Gramplets are small plugins that can perform all kinds of tasks. You can add one to the bottombar by using right-click with the mouse on the bottombar next to the tabs.&lt;br /&gt;
&lt;br /&gt;
== Time for your first Person ==&lt;br /&gt;
(Ver. 3.3.1-1)&lt;br /&gt;
&lt;br /&gt;
So much done, and not yet one single person is present in your family tree! Time to change that. Let's add yourself. As all information you will add comes from the source 'Interview with John Doe', we first store this in an easy to reach place. In the toolbar click on the {{man button|Clipboard}} icon to open the clipboard. Drag and drop, from the source view, the source 'Interview with John Doe', into the Clipboard. Your source is now stored in the Clipboard and this window can be closed.&lt;br /&gt;
&lt;br /&gt;
In the Navigator, click on the Person icon to see the person view. Note that on the Toolbar there is a pressed-in button (3rd button from the right) indicating the type of person view you have activated. Try the other possibility once to see what changes. Many Categories in the Navigator have more than one view!&lt;br /&gt;
&lt;br /&gt;
Click now on the {{man button|Add}} button on the Toolbar to add your first person. You now see the person editor, and the top part of this should be what you expect: all information about the name of this person. So, type in your given name, and your surname. If you are eg. Spanish and have a very long surname, then click on the {{man button|Add}} icon after the surname to enter multiple surnames. See the manual for more details. Now select your Gender.&lt;br /&gt;
&lt;br /&gt;
As you enter data, you need to add where you obtained this data (Source). For this, click on the {{man label|Sources}} tab, then open the Clipboard from the Toolbar, drag the source you stored in the clipboard, into the area under ID |Title | Auth | Page of the Person Editor. This will open up the 'Source Reference Editor'. The bottom part of this editor is the same source as already entered, but the top part is new, and contains the data on how the information of the person was found in this source and how certain you are of it. For this interview you can set {{man label|Confidence}} to ''Very High''.&lt;br /&gt;
&lt;br /&gt;
You already have a picture of yourself, as you added it to the source. You can now add this same picture to this Person record you are creating. For this, click on the {{man label|Gallery}} tab of the person editor, and click on the {{man button|Share}} button. This will open a list of all media objects. Select the one you made earlier and click {{man button|OK}} to store everything. You could also have used the clipboard: or by adding the picture there from the media view, or by adding the media ''reference'' in the clipboard by dragging it from the gallery of an object to the clipboard, and then using it from there where you need it. &lt;br /&gt;
&lt;br /&gt;
Save everything by clicking {{man button|OK}} until you see the main Gramps view again.&lt;br /&gt;
&lt;br /&gt;
== Events ==&lt;br /&gt;
(Ver. 3.3.1-1)&lt;br /&gt;
&lt;br /&gt;
Next, you will want to add your birthday. For this, open the person editor of yourself, by double clicking on your name. Note that the {{man label|Events}} tab is open. Click on the {{man button|Add}} icon to add an event. Gramps preselects the birth event for the first event that you want to add. Enter your birth date as: (12/31/1900 - Month/Day/Year) or (1 Jan 1900 - Day Month Year). If you use Day Month Year, the Month must be entered with the first 3 letters only or it must be spelled out completely.&lt;br /&gt;
&lt;br /&gt;
You can also click on the {{man button|Calendar}} button on the right. This window allows you to select the Day Month and Year with a drop-down menu. When using this make sure that the Quality is set to Regular and Type is also set to Regular. After entering your birth date in the calendar window, click on {{man button|OK}} to save it.&lt;br /&gt;
&lt;br /&gt;
Next, because you have no Places in your database you need to create one. Knowing the place where you were born, click on the {{man button|Add}} icon after the Place entry to create this place. Enter places as City/Town, Township, County, State, Country or any combination of these. Such as Germantown, German Township (Twp), Montgomery County (Co.), Ohio, USA. Being consistent when adding places will be helpful later when you can select these from the {{man button|Select an existing place}} icon.  Adding latitude and longitude will allow these places to be positioned on a map later.&lt;br /&gt;
&lt;br /&gt;
Don't forget to Source this. Click the {{man button|Source}} tab, open the '''Clipboard''', drag and drop your source, select the Confidence level, and save both the Source and then the new place with the {{man button|OK}} buttons.&lt;br /&gt;
&lt;br /&gt;
Note that the editor that has been open is the Event ''Reference'' Editor. This means that there is a global part that you can share with other people (the bottom of the editor), and a top part which is unique to the person. This top part is used to enter the {{man label|Role}} of the person in the event. In your own birth, you have the primary role. If you know the name of people helping in the birth, and you want to store these people also, you can share this event with them, with a Role of ''Aide''. You can type a custom role in the {{man label|Role}} field if you are not happy with the predefined possibilities.&lt;br /&gt;
&lt;br /&gt;
Again, add a source to the event via the {{man label|Sources}} tab, like you did before. As you have no real recollection of your own birth, the interview should not have confidence 'Very High'! You would need to add a birth document as source for that.&lt;br /&gt;
&lt;br /&gt;
When done, click {{man button|OK}} to save the event, and then again to save the person, and you have your first full person record.&lt;br /&gt;
&lt;br /&gt;
== Family ==&lt;br /&gt;
You now have entered yourself, time to add your parents. You could add your father and mother as you added yourself, and then connect them in a family, but most people will do things in one go via the {{icon|rela}}'''Relationship View''' or the {{icon|ance}}'''Pedigree View'''. Let's go to the Relationship view: select yourself in the person view, and then in the navigator, select the relationship view. This view has a toolbar that allows to add parents or to add a spouse. Click on the {{man button|Add parents}} icon to open the family editor.&lt;br /&gt;
&lt;br /&gt;
In the family editor you will see that you are present in the {{man label|Children}} tab. Use the {{man button|Add}} icon next to father and mother to add them as you have added yourself. Use the {{man button|Add}} icon in the {{man label|Children}} tab to add your siblings. You need to use drag-and-drop to sort siblings in the order as you want them to appear in reports (normally oldest to youngest I suppose). &lt;br /&gt;
&lt;br /&gt;
In the family editor you can also add events. We call these family events as they are shared by the two parents. Typically this is Engagement, Marriage, .... In these the Role is 'Family'. It is not needed to add these events also individually to the two parents! &lt;br /&gt;
&lt;br /&gt;
When done, click {{man button|OK}} to save the family, and you will return to the relationship view with all the extra information visible. From within this view you can navigate to other people and keep enlarging your family tree.&lt;br /&gt;
&lt;br /&gt;
== A report ==&lt;br /&gt;
Now that you have a first small family tree, make a report. Go to the oldest grandparent you have in the relationship view or the person view (you can set bookmarks on people and set a home person!). With this person selected, go in the menu {{man menu|Reports-&amp;gt;Text Reports-&amp;gt;[[Gramps_{{man version}}_Wiki_Manual_-_Reports_-_part_6#Detailed_Descendant_Report|Detailed Descendant Report]]}}, to create a nice textual descendant report.&lt;br /&gt;
&lt;br /&gt;
== What next?==&lt;br /&gt;
Gramps has many features, as you improve, take the time to go over the [[Gramps_{{man version}}_Wiki_Manual|user manual]] and learn more. Join and use the mailing list to discuss issues.&lt;br /&gt;
&lt;br /&gt;
We advise everyone to read the manual to learn all about using Gramps. Genealogy takes time, so learning the tools is not wasted time.&lt;br /&gt;
&lt;br /&gt;
However, if you really want the bare minimum to start, then read this:&lt;br /&gt;
* [[Gramps {{man version}} Wiki Manual - Entering and editing data: brief]]&lt;br /&gt;
&lt;br /&gt;
==Screencasts==&lt;br /&gt;
&lt;br /&gt;
===Gramps 3.2.5===&lt;br /&gt;
Screencast for the older Gramps 3.2.5.&lt;br /&gt;
* Gramps 3.2.5: [[Media:Edit family from pedigree view Gramps 3.2.5.ogg|Edit family (parents, children, siblings) from Pedigree View]]&lt;br /&gt;
* Gramps 3.2.5: [[Media:Add_family_from_pedigree_view_Gramps_3.2.5.ogg|Add family (parents, children, siblings) from Pedigree View]]&lt;br /&gt;
&lt;br /&gt;
==See also==&lt;br /&gt;
Related articles.&lt;br /&gt;
* [[Add a child]]&lt;br /&gt;
* [[Add a spouse]]&lt;br /&gt;
* [[Add a godfather-godmother]]&lt;br /&gt;
* [[Add a witness]]&lt;br /&gt;
* [[Genealogy Glossary]]&lt;br /&gt;
* [[Gramps Glossary]]&lt;br /&gt;
&lt;br /&gt;
[[Category:How do I...]]&lt;br /&gt;
[[Category:Genealogy]]&lt;br /&gt;
[[Category:Gramps Logic]]&lt;/div&gt;</summary>
		<author><name>Sten</name></author>
		
	</entry>
	<entry>
		<id>https://ftp.gramps-project.org/wiki/index.php?title=RU:%D0%9D%D0%B0%D1%87%D0%B0%D0%BB%D0%BE_%D0%B2_%D0%93%D0%B5%D0%BD%D0%B5%D0%B0%D0%BB%D0%BE%D0%B3%D0%B8%D0%B8&amp;diff=78863</id>
		<title>RU:Начало в Генеалогии</title>
		<link rel="alternate" type="text/html" href="https://ftp.gramps-project.org/wiki/index.php?title=RU:%D0%9D%D0%B0%D1%87%D0%B0%D0%BB%D0%BE_%D0%B2_%D0%93%D0%B5%D0%BD%D0%B5%D0%B0%D0%BB%D0%BE%D0%B3%D0%B8%D0%B8&amp;diff=78863"/>
		<updated>2020-06-03T10:32:57Z</updated>

		<summary type="html">&lt;p&gt;Sten: /* Создать Семейное древо */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{languages ​​| Начало в Генеалогии}}&lt;br /&gt;
'' 'Как мне начать в Генеалогии, используя Gramps? «»»&lt;br /&gt;
&lt;br /&gt;
== Подготовка ==&lt;br /&gt;
Если Вы только начинаете свою генеалогию, лучше начать с себя и добавлять других людей, соединяя их с Вами.&lt;br /&gt;
&lt;br /&gt;
'' {{man menu | Одной из самых важных вещей в генеалогии является то, что Вы записываете, как и где Вы нашли / получили информацию.}} '' Это называется источником. Это настолько важно потому, что позже Вам понадобится эта информации или Вы захотите обратиться к ней. Наличие источника у Вашей информации также создаст доверие к ней у других исследователей.&lt;br /&gt;
&lt;br /&gt;
Таким образом, если Вы начинаете с себя, Вы сами ''проводите собеседование'', что является основным источником информации по этому вопросу. Из этого первоисточника Вы получаете такие события, как день рождения, день крещения, выпускной и так далее. Источник событий позволяет Вам вычислить существовавшего человека как часть семьи.&lt;br /&gt;
&lt;br /&gt;
Таким образом, у нас есть наши основные термины для генеалогии: Источники, События, Люди и Семьи. Помимо этого, Gramps позволяет хранить Заметки, Места, Медиа (фотографии, фильмы, документы) и [[ Ru:Хранилища в Gramps | Хранилища]].&lt;br /&gt;
&lt;br /&gt;
Итак, давайте начнем с добавления информации в Gramps.&lt;br /&gt;
&lt;br /&gt;
== Создать Семейное древо ==&lt;br /&gt;
Здесь предполагается, что Вы только что установили Gramps и запускаете свое первое семейное дерево.&lt;br /&gt;
&lt;br /&gt;
В качестве первого шага запустите Gramps.&lt;br /&gt;
{{-}}&lt;br /&gt;
[[File:Manage-databases-icon-toolbar-no-familytree-loaded-51.png|450px|thumb|right|Значок &amp;quot;Управление базами данных&amp;quot; на панели инструментов без загруженного семейного дерева]]&lt;br /&gt;
&lt;br /&gt;
Значок &amp;quot;Управление базами данных&amp;quot; Менеджера генеалогических деревьев под названием «Семейные древа - Gramps» будет отображаться на панели инструментов. Щёлкните значок генеалогического дерева, чтобы открыть менеджер семейных деревьев.&lt;br /&gt;
&lt;br /&gt;
[[Gramps_{{man version}}_Ru:Gramps_5.1_Вики_Руководство_-_Начало#Выбор_семейного_древа]]&lt;br /&gt;
{{-}}&lt;br /&gt;
[[File:ManageFamilyTrees-51.png|right|thumb|450px|Окно менеджера «Семейные древа - Gramps»]]&lt;br /&gt;
&lt;br /&gt;
Во всплывающем окне менеджера генеалогических деревьев нажмите кнопку {{man button | Создать}} (справа). Теперь под &amp;quot;Название семейного древа» (слева) введите имя для своего дерева и нажмите кнопку {{man button | Загрузить семейное древо}} (внизу справа). Gramps теперь откроется вместе с Вашим недавно созданным деревом.&lt;br /&gt;
&lt;br /&gt;
[[Gramps_{{man version}}_Wiki_Manual_-_Manage_Family_Trees#Starting_a_new_Family_Tree]]&lt;br /&gt;
{{-}}&lt;br /&gt;
[[File:MainWindow-PeopleCategory-PeopleTreeView-annotated-50.png|450px|thumb|right|Аннотированные части окна Main Gramps]]&lt;br /&gt;
&lt;br /&gt;
Главная страница Gramps разделена на отдельные панели, панель инструментов в верхней части, левая боковая панель (навигатор), позволяющая перемещаться по различным представлениям ваших данных, область просмотра, в которой отображаются данные (в центре), и правая боковая панель (боковая панель) и нижняя панель (Bottombar), которая может быть использована для Gramplets, (Gramplets покрыты позже). Большинство из этих панелей можно включить или выключить, перейдя к слову View в верхней части окна и отметив (вкл) или сняв флажок (выключить) вид.&lt;br /&gt;
[[Gramps_{{man version}}_Wiki_Manual_-_Main_Window#Main_Window]]&lt;br /&gt;
{{-}}&lt;br /&gt;
&lt;br /&gt;
==Create a Source==&lt;br /&gt;
[[File:NewSource-editor-dialog-example-50.png|thumb|right|450px|New Source - editor dialog - example]]&lt;br /&gt;
&lt;br /&gt;
As you start with yourself, and the source is the interview with yourself, in the left sidebar called '''Navigator''' click on the [[Gramps_{{man version}}_Wiki_Manual_-_Categories#Sources_Category|source icon]] {{icon|sour34}}. In the toolbar click on {{man label|Add}} (or {{man key press|CTRL|INSERT}} on the keyboard) to open the [[Gramps_{{man version}}_Wiki_Manual_-_Entering_and_editing_data:_detailed_-_part_2#New_Source_dialog|source editor]].&lt;br /&gt;
&lt;br /&gt;
Assuming your name is ''John Doe'', you now make a source for the interview with yourself! So enter:&lt;br /&gt;
* Title: Interview with John Doe&lt;br /&gt;
* Author: John Doe&lt;br /&gt;
And click on {{man button|OK}}.&lt;br /&gt;
{{-}}&lt;br /&gt;
[[File:SourcesCategory-SourcesListView-example-50.png|right|450px|thumb|Sources Category - (List) View]]&lt;br /&gt;
&lt;br /&gt;
That is it, your first source. In the [[Gramps_{{man version}}_Wiki_Manual_-_Categories#Sources_Category|Source(list)view]] you will see your new source listed and that the entry has ID number that is unique to your source.&lt;br /&gt;
&lt;br /&gt;
[[Gramps_{{man version}}_Wiki_Manual_-_Entering_and_editing_data:_detailed_-_part_2#Editing_information_about_sources]]&lt;br /&gt;
&lt;br /&gt;
&amp;lt;!--&lt;br /&gt;
Before continuing, let's show how to change the interface. In the toolbar of Gramps, the last icon is the {{man button|Configure the active view}}, so click it to see how you can adapt the view. Activate the 'Last Changed' Column and by dragging, change eg 'Author' to be the second column. Most views have this configuration option, so change these to your liking!&lt;br /&gt;
--&amp;gt;&lt;br /&gt;
{{-}}&lt;br /&gt;
&lt;br /&gt;
==Add data to the source==&lt;br /&gt;
{{stub}}&lt;br /&gt;
(Ver. 3.3.1-1)&lt;br /&gt;
&lt;br /&gt;
Before you begin, you should know that Gramps does '''not''' store your media(pictures, videos, sounds, and documents etc..), it only stores a link to where the media is on your hard disk. So decide where you will store your pictures, videos, sounds, and documents. Then on the menu bar select {{man menu|Edit-&amp;gt;Preferences}} and the '''General''' tab. Set the value of {{man label|Base path for relative media paths}} to this directory. Click on the {{man label|Close}} button to save your changes. Keep your media documents well structured in this directory.&lt;br /&gt;
&lt;br /&gt;
Now let's continue with adding some more data to the source. Double click on it (or press {{Man key press|ENTER}}) to open the source 'Interview with John Doe'. Look at the tab pages at the bottom of the source editor: Notes, Gallery, Data, Repositories, References. Surely you have a picture of yourself! Let's add it to the Gallery of this source.&lt;br /&gt;
&lt;br /&gt;
Click on the {{man label|Gallery}} tab, and then on the little '''Add''' icon just below the Notes tab. This opens a dialog to select the image of yourself. At the bottom of this dialog is a box '''Title:''' to set a nice title such as 'Picture of John Doe'. Entering a title does not change the file name. Make sure you select 'Convert to a relative path'. Press {{man button|OK}}. You will now see the ''Media Reference Editor''. The top of this dialog allows to select a region of the picture, eg when you have selected a group photo, it makes sense to indicate who on the photo is John Doe. You can use the mouse in the preview picture to select the part of the picture of interest (click down is corner 1 and click release is corner 2). Click {{man button|OK}} to save the image and go back to the source editor you were working on. &lt;br /&gt;
&lt;br /&gt;
Suppose you have a typed-out text of the interview. In that case you can add the textual document (odt, doc, rtf, etc ...) in the {{man label|Gallery}}, but you can also store the text as a {{man label|Note}} in Gramps. The good thing about using a note is that Gramps can search the text of notes with filters. So, click on the {{man label|Notes}} tab, click the '''Add''' icon, and you are presented with a basic editor that you can type or paste text into.&lt;br /&gt;
&lt;br /&gt;
When finished, press {{man button|OK}} on the source editor, and your source 'Interview with John Doe' now has also a note and picture.&lt;br /&gt;
&lt;br /&gt;
To see these, you would have to open the editor again. However, Gramps has a bottom pane that can show you information on the selected entry in the source view. For that, activate in the menu '''View''' the '''Bottombar'''. You will see a number of tabs which allow to show information. The elements showing information are called '''Gramplets''' in Gramps. Gramplets are small plugins that can perform all kinds of tasks. You can add one to the bottombar by using right-click with the mouse on the bottombar next to the tabs.&lt;br /&gt;
&lt;br /&gt;
== Time for your first Person ==&lt;br /&gt;
(Ver. 3.3.1-1)&lt;br /&gt;
&lt;br /&gt;
So much done, and not yet one single person is present in your family tree! Time to change that. Let's add yourself. As all information you will add comes from the source 'Interview with John Doe', we first store this in an easy to reach place. In the toolbar click on the {{man button|Clipboard}} icon to open the clipboard. Drag and drop, from the source view, the source 'Interview with John Doe', into the Clipboard. Your source is now stored in the Clipboard and this window can be closed.&lt;br /&gt;
&lt;br /&gt;
In the Navigator, click on the Person icon to see the person view. Note that on the Toolbar there is a pressed-in button (3rd button from the right) indicating the type of person view you have activated. Try the other possibility once to see what changes. Many Categories in the Navigator have more than one view!&lt;br /&gt;
&lt;br /&gt;
Click now on the {{man button|Add}} button on the Toolbar to add your first person. You now see the person editor, and the top part of this should be what you expect: all information about the name of this person. So, type in your given name, and your surname. If you are eg. Spanish and have a very long surname, then click on the {{man button|Add}} icon after the surname to enter multiple surnames. See the manual for more details. Now select your Gender.&lt;br /&gt;
&lt;br /&gt;
As you enter data, you need to add where you obtained this data (Source). For this, click on the {{man label|Sources}} tab, then open the Clipboard from the Toolbar, drag the source you stored in the clipboard, into the area under ID |Title | Auth | Page of the Person Editor. This will open up the 'Source Reference Editor'. The bottom part of this editor is the same source as already entered, but the top part is new, and contains the data on how the information of the person was found in this source and how certain you are of it. For this interview you can set {{man label|Confidence}} to ''Very High''.&lt;br /&gt;
&lt;br /&gt;
You already have a picture of yourself, as you added it to the source. You can now add this same picture to this Person record you are creating. For this, click on the {{man label|Gallery}} tab of the person editor, and click on the {{man button|Share}} button. This will open a list of all media objects. Select the one you made earlier and click {{man button|OK}} to store everything. You could also have used the clipboard: or by adding the picture there from the media view, or by adding the media ''reference'' in the clipboard by dragging it from the gallery of an object to the clipboard, and then using it from there where you need it. &lt;br /&gt;
&lt;br /&gt;
Save everything by clicking {{man button|OK}} until you see the main Gramps view again.&lt;br /&gt;
&lt;br /&gt;
== Events ==&lt;br /&gt;
(Ver. 3.3.1-1)&lt;br /&gt;
&lt;br /&gt;
Next, you will want to add your birthday. For this, open the person editor of yourself, by double clicking on your name. Note that the {{man label|Events}} tab is open. Click on the {{man button|Add}} icon to add an event. Gramps preselects the birth event for the first event that you want to add. Enter your birth date as: (12/31/1900 - Month/Day/Year) or (1 Jan 1900 - Day Month Year). If you use Day Month Year, the Month must be entered with the first 3 letters only or it must be spelled out completely.&lt;br /&gt;
&lt;br /&gt;
You can also click on the {{man button|Calendar}} button on the right. This window allows you to select the Day Month and Year with a drop-down menu. When using this make sure that the Quality is set to Regular and Type is also set to Regular. After entering your birth date in the calendar window, click on {{man button|OK}} to save it.&lt;br /&gt;
&lt;br /&gt;
Next, because you have no Places in your database you need to create one. Knowing the place where you were born, click on the {{man button|Add}} icon after the Place entry to create this place. Enter places as City/Town, Township, County, State, Country or any combination of these. Such as Germantown, German Township (Twp), Montgomery County (Co.), Ohio, USA. Being consistent when adding places will be helpful later when you can select these from the {{man button|Select an existing place}} icon.  Adding latitude and longitude will allow these places to be positioned on a map later.&lt;br /&gt;
&lt;br /&gt;
Don't forget to Source this. Click the {{man button|Source}} tab, open the '''Clipboard''', drag and drop your source, select the Confidence level, and save both the Source and then the new place with the {{man button|OK}} buttons.&lt;br /&gt;
&lt;br /&gt;
Note that the editor that has been open is the Event ''Reference'' Editor. This means that there is a global part that you can share with other people (the bottom of the editor), and a top part which is unique to the person. This top part is used to enter the {{man label|Role}} of the person in the event. In your own birth, you have the primary role. If you know the name of people helping in the birth, and you want to store these people also, you can share this event with them, with a Role of ''Aide''. You can type a custom role in the {{man label|Role}} field if you are not happy with the predefined possibilities.&lt;br /&gt;
&lt;br /&gt;
Again, add a source to the event via the {{man label|Sources}} tab, like you did before. As you have no real recollection of your own birth, the interview should not have confidence 'Very High'! You would need to add a birth document as source for that.&lt;br /&gt;
&lt;br /&gt;
When done, click {{man button|OK}} to save the event, and then again to save the person, and you have your first full person record.&lt;br /&gt;
&lt;br /&gt;
== Family ==&lt;br /&gt;
You now have entered yourself, time to add your parents. You could add your father and mother as you added yourself, and then connect them in a family, but most people will do things in one go via the {{icon|rela}}'''Relationship View''' or the {{icon|ance}}'''Pedigree View'''. Let's go to the Relationship view: select yourself in the person view, and then in the navigator, select the relationship view. This view has a toolbar that allows to add parents or to add a spouse. Click on the {{man button|Add parents}} icon to open the family editor.&lt;br /&gt;
&lt;br /&gt;
In the family editor you will see that you are present in the {{man label|Children}} tab. Use the {{man button|Add}} icon next to father and mother to add them as you have added yourself. Use the {{man button|Add}} icon in the {{man label|Children}} tab to add your siblings. You need to use drag-and-drop to sort siblings in the order as you want them to appear in reports (normally oldest to youngest I suppose). &lt;br /&gt;
&lt;br /&gt;
In the family editor you can also add events. We call these family events as they are shared by the two parents. Typically this is Engagement, Marriage, .... In these the Role is 'Family'. It is not needed to add these events also individually to the two parents! &lt;br /&gt;
&lt;br /&gt;
When done, click {{man button|OK}} to save the family, and you will return to the relationship view with all the extra information visible. From within this view you can navigate to other people and keep enlarging your family tree.&lt;br /&gt;
&lt;br /&gt;
== A report ==&lt;br /&gt;
Now that you have a first small family tree, make a report. Go to the oldest grandparent you have in the relationship view or the person view (you can set bookmarks on people and set a home person!). With this person selected, go in the menu {{man menu|Reports-&amp;gt;Text Reports-&amp;gt;[[Gramps_{{man version}}_Wiki_Manual_-_Reports_-_part_6#Detailed_Descendant_Report|Detailed Descendant Report]]}}, to create a nice textual descendant report.&lt;br /&gt;
&lt;br /&gt;
== What next?==&lt;br /&gt;
Gramps has many features, as you improve, take the time to go over the [[Gramps_{{man version}}_Wiki_Manual|user manual]] and learn more. Join and use the mailing list to discuss issues.&lt;br /&gt;
&lt;br /&gt;
We advise everyone to read the manual to learn all about using Gramps. Genealogy takes time, so learning the tools is not wasted time.&lt;br /&gt;
&lt;br /&gt;
However, if you really want the bare minimum to start, then read this:&lt;br /&gt;
* [[Gramps {{man version}} Wiki Manual - Entering and editing data: brief]]&lt;br /&gt;
&lt;br /&gt;
==Screencasts==&lt;br /&gt;
&lt;br /&gt;
===Gramps 3.2.5===&lt;br /&gt;
Screencast for the older Gramps 3.2.5.&lt;br /&gt;
* Gramps 3.2.5: [[Media:Edit family from pedigree view Gramps 3.2.5.ogg|Edit family (parents, children, siblings) from Pedigree View]]&lt;br /&gt;
* Gramps 3.2.5: [[Media:Add_family_from_pedigree_view_Gramps_3.2.5.ogg|Add family (parents, children, siblings) from Pedigree View]]&lt;br /&gt;
&lt;br /&gt;
==See also==&lt;br /&gt;
Related articles.&lt;br /&gt;
* [[Add a child]]&lt;br /&gt;
* [[Add a spouse]]&lt;br /&gt;
* [[Add a godfather-godmother]]&lt;br /&gt;
* [[Add a witness]]&lt;br /&gt;
* [[Genealogy Glossary]]&lt;br /&gt;
* [[Gramps Glossary]]&lt;br /&gt;
&lt;br /&gt;
[[Category:How do I...]]&lt;br /&gt;
[[Category:Genealogy]]&lt;br /&gt;
[[Category:Gramps Logic]]&lt;/div&gt;</summary>
		<author><name>Sten</name></author>
		
	</entry>
	<entry>
		<id>https://ftp.gramps-project.org/wiki/index.php?title=RU:%D0%9D%D0%B0%D1%87%D0%B0%D0%BB%D0%BE_%D0%B2_%D0%93%D0%B5%D0%BD%D0%B5%D0%B0%D0%BB%D0%BE%D0%B3%D0%B8%D0%B8&amp;diff=78862</id>
		<title>RU:Начало в Генеалогии</title>
		<link rel="alternate" type="text/html" href="https://ftp.gramps-project.org/wiki/index.php?title=RU:%D0%9D%D0%B0%D1%87%D0%B0%D0%BB%D0%BE_%D0%B2_%D0%93%D0%B5%D0%BD%D0%B5%D0%B0%D0%BB%D0%BE%D0%B3%D0%B8%D0%B8&amp;diff=78862"/>
		<updated>2020-06-03T10:31:16Z</updated>

		<summary type="html">&lt;p&gt;Sten: /* Создать Семейное древо */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{languages ​​| Начало в Генеалогии}}&lt;br /&gt;
'' 'Как мне начать в Генеалогии, используя Gramps? «»»&lt;br /&gt;
&lt;br /&gt;
== Подготовка ==&lt;br /&gt;
Если Вы только начинаете свою генеалогию, лучше начать с себя и добавлять других людей, соединяя их с Вами.&lt;br /&gt;
&lt;br /&gt;
'' {{man menu | Одной из самых важных вещей в генеалогии является то, что Вы записываете, как и где Вы нашли / получили информацию.}} '' Это называется источником. Это настолько важно потому, что позже Вам понадобится эта информации или Вы захотите обратиться к ней. Наличие источника у Вашей информации также создаст доверие к ней у других исследователей.&lt;br /&gt;
&lt;br /&gt;
Таким образом, если Вы начинаете с себя, Вы сами ''проводите собеседование'', что является основным источником информации по этому вопросу. Из этого первоисточника Вы получаете такие события, как день рождения, день крещения, выпускной и так далее. Источник событий позволяет Вам вычислить существовавшего человека как часть семьи.&lt;br /&gt;
&lt;br /&gt;
Таким образом, у нас есть наши основные термины для генеалогии: Источники, События, Люди и Семьи. Помимо этого, Gramps позволяет хранить Заметки, Места, Медиа (фотографии, фильмы, документы) и [[ Ru:Хранилища в Gramps | Хранилища]].&lt;br /&gt;
&lt;br /&gt;
Итак, давайте начнем с добавления информации в Gramps.&lt;br /&gt;
&lt;br /&gt;
== Создать Семейное древо ==&lt;br /&gt;
Здесь предполагается, что Вы только что установили Gramps и запускаете свое первое семейное дерево.&lt;br /&gt;
&lt;br /&gt;
В качестве первого шага запустите Gramps.&lt;br /&gt;
{{-}}&lt;br /&gt;
[[File:Manage-databases-icon-toolbar-no-familytree-loaded-51.png|450px|thumb|right|Значок &amp;quot;Управление базами данных&amp;quot; на панели инструментов без загруженного семейного дерева]]&lt;br /&gt;
&lt;br /&gt;
Значок &amp;quot;Управление базами данных&amp;quot; Менеджера генеалогических деревьев под названием «Семейные древа - Gramps» будет отображаться на панели инструментов. Щёлкните значок генеалогического дерева, чтобы открыть менеджер семейных деревьев.&lt;br /&gt;
&lt;br /&gt;
[[Gramps_{{man version}}_Wiki_Manual_-_Getting_started#Choosing_a_Family_Tree]]&lt;br /&gt;
{{-}}&lt;br /&gt;
[[File:ManageFamilyTrees-51.png|right|thumb|450px|Окно менеджера «Семейные древа - Gramps»]]&lt;br /&gt;
&lt;br /&gt;
Во всплывающем окне менеджера генеалогических деревьев нажмите кнопку {{man button | Создать}} (справа). Теперь под &amp;quot;Название семейного древа» (слева) введите имя для своего дерева и нажмите кнопку {{man button | Загрузить семейное древо}} (внизу справа). Gramps теперь откроется вместе с Вашим недавно созданным деревом.&lt;br /&gt;
&lt;br /&gt;
[[Gramps_{{man version}}_Wiki_Manual_-_Manage_Family_Trees#Starting_a_new_Family_Tree]]&lt;br /&gt;
{{-}}&lt;br /&gt;
[[File:MainWindow-PeopleCategory-PeopleTreeView-annotated-50.png|450px|thumb|right|Аннотированные части окна Main Gramps]]&lt;br /&gt;
&lt;br /&gt;
Главная страница Gramps разделена на отдельные панели, панель инструментов в верхней части, левая боковая панель (навигатор), позволяющая перемещаться по различным представлениям ваших данных, область просмотра, в которой отображаются данные (в центре), и правая боковая панель (боковая панель) и нижняя панель (Bottombar), которая может быть использована для Gramplets, (Gramplets покрыты позже). Большинство из этих панелей можно включить или выключить, перейдя к слову View в верхней части окна и отметив (вкл) или сняв флажок (выключить) вид.&lt;br /&gt;
[[Gramps_{{man version}}_Wiki_Manual_-_Main_Window#Main_Window]]&lt;br /&gt;
{{-}}&lt;br /&gt;
&lt;br /&gt;
==Create a Source==&lt;br /&gt;
[[File:NewSource-editor-dialog-example-50.png|thumb|right|450px|New Source - editor dialog - example]]&lt;br /&gt;
&lt;br /&gt;
As you start with yourself, and the source is the interview with yourself, in the left sidebar called '''Navigator''' click on the [[Gramps_{{man version}}_Wiki_Manual_-_Categories#Sources_Category|source icon]] {{icon|sour34}}. In the toolbar click on {{man label|Add}} (or {{man key press|CTRL|INSERT}} on the keyboard) to open the [[Gramps_{{man version}}_Wiki_Manual_-_Entering_and_editing_data:_detailed_-_part_2#New_Source_dialog|source editor]].&lt;br /&gt;
&lt;br /&gt;
Assuming your name is ''John Doe'', you now make a source for the interview with yourself! So enter:&lt;br /&gt;
* Title: Interview with John Doe&lt;br /&gt;
* Author: John Doe&lt;br /&gt;
And click on {{man button|OK}}.&lt;br /&gt;
{{-}}&lt;br /&gt;
[[File:SourcesCategory-SourcesListView-example-50.png|right|450px|thumb|Sources Category - (List) View]]&lt;br /&gt;
&lt;br /&gt;
That is it, your first source. In the [[Gramps_{{man version}}_Wiki_Manual_-_Categories#Sources_Category|Source(list)view]] you will see your new source listed and that the entry has ID number that is unique to your source.&lt;br /&gt;
&lt;br /&gt;
[[Gramps_{{man version}}_Wiki_Manual_-_Entering_and_editing_data:_detailed_-_part_2#Editing_information_about_sources]]&lt;br /&gt;
&lt;br /&gt;
&amp;lt;!--&lt;br /&gt;
Before continuing, let's show how to change the interface. In the toolbar of Gramps, the last icon is the {{man button|Configure the active view}}, so click it to see how you can adapt the view. Activate the 'Last Changed' Column and by dragging, change eg 'Author' to be the second column. Most views have this configuration option, so change these to your liking!&lt;br /&gt;
--&amp;gt;&lt;br /&gt;
{{-}}&lt;br /&gt;
&lt;br /&gt;
==Add data to the source==&lt;br /&gt;
{{stub}}&lt;br /&gt;
(Ver. 3.3.1-1)&lt;br /&gt;
&lt;br /&gt;
Before you begin, you should know that Gramps does '''not''' store your media(pictures, videos, sounds, and documents etc..), it only stores a link to where the media is on your hard disk. So decide where you will store your pictures, videos, sounds, and documents. Then on the menu bar select {{man menu|Edit-&amp;gt;Preferences}} and the '''General''' tab. Set the value of {{man label|Base path for relative media paths}} to this directory. Click on the {{man label|Close}} button to save your changes. Keep your media documents well structured in this directory.&lt;br /&gt;
&lt;br /&gt;
Now let's continue with adding some more data to the source. Double click on it (or press {{Man key press|ENTER}}) to open the source 'Interview with John Doe'. Look at the tab pages at the bottom of the source editor: Notes, Gallery, Data, Repositories, References. Surely you have a picture of yourself! Let's add it to the Gallery of this source.&lt;br /&gt;
&lt;br /&gt;
Click on the {{man label|Gallery}} tab, and then on the little '''Add''' icon just below the Notes tab. This opens a dialog to select the image of yourself. At the bottom of this dialog is a box '''Title:''' to set a nice title such as 'Picture of John Doe'. Entering a title does not change the file name. Make sure you select 'Convert to a relative path'. Press {{man button|OK}}. You will now see the ''Media Reference Editor''. The top of this dialog allows to select a region of the picture, eg when you have selected a group photo, it makes sense to indicate who on the photo is John Doe. You can use the mouse in the preview picture to select the part of the picture of interest (click down is corner 1 and click release is corner 2). Click {{man button|OK}} to save the image and go back to the source editor you were working on. &lt;br /&gt;
&lt;br /&gt;
Suppose you have a typed-out text of the interview. In that case you can add the textual document (odt, doc, rtf, etc ...) in the {{man label|Gallery}}, but you can also store the text as a {{man label|Note}} in Gramps. The good thing about using a note is that Gramps can search the text of notes with filters. So, click on the {{man label|Notes}} tab, click the '''Add''' icon, and you are presented with a basic editor that you can type or paste text into.&lt;br /&gt;
&lt;br /&gt;
When finished, press {{man button|OK}} on the source editor, and your source 'Interview with John Doe' now has also a note and picture.&lt;br /&gt;
&lt;br /&gt;
To see these, you would have to open the editor again. However, Gramps has a bottom pane that can show you information on the selected entry in the source view. For that, activate in the menu '''View''' the '''Bottombar'''. You will see a number of tabs which allow to show information. The elements showing information are called '''Gramplets''' in Gramps. Gramplets are small plugins that can perform all kinds of tasks. You can add one to the bottombar by using right-click with the mouse on the bottombar next to the tabs.&lt;br /&gt;
&lt;br /&gt;
== Time for your first Person ==&lt;br /&gt;
(Ver. 3.3.1-1)&lt;br /&gt;
&lt;br /&gt;
So much done, and not yet one single person is present in your family tree! Time to change that. Let's add yourself. As all information you will add comes from the source 'Interview with John Doe', we first store this in an easy to reach place. In the toolbar click on the {{man button|Clipboard}} icon to open the clipboard. Drag and drop, from the source view, the source 'Interview with John Doe', into the Clipboard. Your source is now stored in the Clipboard and this window can be closed.&lt;br /&gt;
&lt;br /&gt;
In the Navigator, click on the Person icon to see the person view. Note that on the Toolbar there is a pressed-in button (3rd button from the right) indicating the type of person view you have activated. Try the other possibility once to see what changes. Many Categories in the Navigator have more than one view!&lt;br /&gt;
&lt;br /&gt;
Click now on the {{man button|Add}} button on the Toolbar to add your first person. You now see the person editor, and the top part of this should be what you expect: all information about the name of this person. So, type in your given name, and your surname. If you are eg. Spanish and have a very long surname, then click on the {{man button|Add}} icon after the surname to enter multiple surnames. See the manual for more details. Now select your Gender.&lt;br /&gt;
&lt;br /&gt;
As you enter data, you need to add where you obtained this data (Source). For this, click on the {{man label|Sources}} tab, then open the Clipboard from the Toolbar, drag the source you stored in the clipboard, into the area under ID |Title | Auth | Page of the Person Editor. This will open up the 'Source Reference Editor'. The bottom part of this editor is the same source as already entered, but the top part is new, and contains the data on how the information of the person was found in this source and how certain you are of it. For this interview you can set {{man label|Confidence}} to ''Very High''.&lt;br /&gt;
&lt;br /&gt;
You already have a picture of yourself, as you added it to the source. You can now add this same picture to this Person record you are creating. For this, click on the {{man label|Gallery}} tab of the person editor, and click on the {{man button|Share}} button. This will open a list of all media objects. Select the one you made earlier and click {{man button|OK}} to store everything. You could also have used the clipboard: or by adding the picture there from the media view, or by adding the media ''reference'' in the clipboard by dragging it from the gallery of an object to the clipboard, and then using it from there where you need it. &lt;br /&gt;
&lt;br /&gt;
Save everything by clicking {{man button|OK}} until you see the main Gramps view again.&lt;br /&gt;
&lt;br /&gt;
== Events ==&lt;br /&gt;
(Ver. 3.3.1-1)&lt;br /&gt;
&lt;br /&gt;
Next, you will want to add your birthday. For this, open the person editor of yourself, by double clicking on your name. Note that the {{man label|Events}} tab is open. Click on the {{man button|Add}} icon to add an event. Gramps preselects the birth event for the first event that you want to add. Enter your birth date as: (12/31/1900 - Month/Day/Year) or (1 Jan 1900 - Day Month Year). If you use Day Month Year, the Month must be entered with the first 3 letters only or it must be spelled out completely.&lt;br /&gt;
&lt;br /&gt;
You can also click on the {{man button|Calendar}} button on the right. This window allows you to select the Day Month and Year with a drop-down menu. When using this make sure that the Quality is set to Regular and Type is also set to Regular. After entering your birth date in the calendar window, click on {{man button|OK}} to save it.&lt;br /&gt;
&lt;br /&gt;
Next, because you have no Places in your database you need to create one. Knowing the place where you were born, click on the {{man button|Add}} icon after the Place entry to create this place. Enter places as City/Town, Township, County, State, Country or any combination of these. Such as Germantown, German Township (Twp), Montgomery County (Co.), Ohio, USA. Being consistent when adding places will be helpful later when you can select these from the {{man button|Select an existing place}} icon.  Adding latitude and longitude will allow these places to be positioned on a map later.&lt;br /&gt;
&lt;br /&gt;
Don't forget to Source this. Click the {{man button|Source}} tab, open the '''Clipboard''', drag and drop your source, select the Confidence level, and save both the Source and then the new place with the {{man button|OK}} buttons.&lt;br /&gt;
&lt;br /&gt;
Note that the editor that has been open is the Event ''Reference'' Editor. This means that there is a global part that you can share with other people (the bottom of the editor), and a top part which is unique to the person. This top part is used to enter the {{man label|Role}} of the person in the event. In your own birth, you have the primary role. If you know the name of people helping in the birth, and you want to store these people also, you can share this event with them, with a Role of ''Aide''. You can type a custom role in the {{man label|Role}} field if you are not happy with the predefined possibilities.&lt;br /&gt;
&lt;br /&gt;
Again, add a source to the event via the {{man label|Sources}} tab, like you did before. As you have no real recollection of your own birth, the interview should not have confidence 'Very High'! You would need to add a birth document as source for that.&lt;br /&gt;
&lt;br /&gt;
When done, click {{man button|OK}} to save the event, and then again to save the person, and you have your first full person record.&lt;br /&gt;
&lt;br /&gt;
== Family ==&lt;br /&gt;
You now have entered yourself, time to add your parents. You could add your father and mother as you added yourself, and then connect them in a family, but most people will do things in one go via the {{icon|rela}}'''Relationship View''' or the {{icon|ance}}'''Pedigree View'''. Let's go to the Relationship view: select yourself in the person view, and then in the navigator, select the relationship view. This view has a toolbar that allows to add parents or to add a spouse. Click on the {{man button|Add parents}} icon to open the family editor.&lt;br /&gt;
&lt;br /&gt;
In the family editor you will see that you are present in the {{man label|Children}} tab. Use the {{man button|Add}} icon next to father and mother to add them as you have added yourself. Use the {{man button|Add}} icon in the {{man label|Children}} tab to add your siblings. You need to use drag-and-drop to sort siblings in the order as you want them to appear in reports (normally oldest to youngest I suppose). &lt;br /&gt;
&lt;br /&gt;
In the family editor you can also add events. We call these family events as they are shared by the two parents. Typically this is Engagement, Marriage, .... In these the Role is 'Family'. It is not needed to add these events also individually to the two parents! &lt;br /&gt;
&lt;br /&gt;
When done, click {{man button|OK}} to save the family, and you will return to the relationship view with all the extra information visible. From within this view you can navigate to other people and keep enlarging your family tree.&lt;br /&gt;
&lt;br /&gt;
== A report ==&lt;br /&gt;
Now that you have a first small family tree, make a report. Go to the oldest grandparent you have in the relationship view or the person view (you can set bookmarks on people and set a home person!). With this person selected, go in the menu {{man menu|Reports-&amp;gt;Text Reports-&amp;gt;[[Gramps_{{man version}}_Wiki_Manual_-_Reports_-_part_6#Detailed_Descendant_Report|Detailed Descendant Report]]}}, to create a nice textual descendant report.&lt;br /&gt;
&lt;br /&gt;
== What next?==&lt;br /&gt;
Gramps has many features, as you improve, take the time to go over the [[Gramps_{{man version}}_Wiki_Manual|user manual]] and learn more. Join and use the mailing list to discuss issues.&lt;br /&gt;
&lt;br /&gt;
We advise everyone to read the manual to learn all about using Gramps. Genealogy takes time, so learning the tools is not wasted time.&lt;br /&gt;
&lt;br /&gt;
However, if you really want the bare minimum to start, then read this:&lt;br /&gt;
* [[Gramps {{man version}} Wiki Manual - Entering and editing data: brief]]&lt;br /&gt;
&lt;br /&gt;
==Screencasts==&lt;br /&gt;
&lt;br /&gt;
===Gramps 3.2.5===&lt;br /&gt;
Screencast for the older Gramps 3.2.5.&lt;br /&gt;
* Gramps 3.2.5: [[Media:Edit family from pedigree view Gramps 3.2.5.ogg|Edit family (parents, children, siblings) from Pedigree View]]&lt;br /&gt;
* Gramps 3.2.5: [[Media:Add_family_from_pedigree_view_Gramps_3.2.5.ogg|Add family (parents, children, siblings) from Pedigree View]]&lt;br /&gt;
&lt;br /&gt;
==See also==&lt;br /&gt;
Related articles.&lt;br /&gt;
* [[Add a child]]&lt;br /&gt;
* [[Add a spouse]]&lt;br /&gt;
* [[Add a godfather-godmother]]&lt;br /&gt;
* [[Add a witness]]&lt;br /&gt;
* [[Genealogy Glossary]]&lt;br /&gt;
* [[Gramps Glossary]]&lt;br /&gt;
&lt;br /&gt;
[[Category:How do I...]]&lt;br /&gt;
[[Category:Genealogy]]&lt;br /&gt;
[[Category:Gramps Logic]]&lt;/div&gt;</summary>
		<author><name>Sten</name></author>
		
	</entry>
	<entry>
		<id>https://ftp.gramps-project.org/wiki/index.php?title=RU:%D0%9D%D0%B0%D1%87%D0%B0%D0%BB%D0%BE_%D0%B2_%D0%93%D0%B5%D0%BD%D0%B5%D0%B0%D0%BB%D0%BE%D0%B3%D0%B8%D0%B8&amp;diff=78861</id>
		<title>RU:Начало в Генеалогии</title>
		<link rel="alternate" type="text/html" href="https://ftp.gramps-project.org/wiki/index.php?title=RU:%D0%9D%D0%B0%D1%87%D0%B0%D0%BB%D0%BE_%D0%B2_%D0%93%D0%B5%D0%BD%D0%B5%D0%B0%D0%BB%D0%BE%D0%B3%D0%B8%D0%B8&amp;diff=78861"/>
		<updated>2020-06-03T10:22:45Z</updated>

		<summary type="html">&lt;p&gt;Sten: /* Создать Семейное древо */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{languages ​​| Начало в Генеалогии}}&lt;br /&gt;
'' 'Как мне начать в Генеалогии, используя Gramps? «»»&lt;br /&gt;
&lt;br /&gt;
== Подготовка ==&lt;br /&gt;
Если Вы только начинаете свою генеалогию, лучше начать с себя и добавлять других людей, соединяя их с Вами.&lt;br /&gt;
&lt;br /&gt;
'' {{man menu | Одной из самых важных вещей в генеалогии является то, что Вы записываете, как и где Вы нашли / получили информацию.}} '' Это называется источником. Это настолько важно потому, что позже Вам понадобится эта информации или Вы захотите обратиться к ней. Наличие источника у Вашей информации также создаст доверие к ней у других исследователей.&lt;br /&gt;
&lt;br /&gt;
Таким образом, если Вы начинаете с себя, Вы сами ''проводите собеседование'', что является основным источником информации по этому вопросу. Из этого первоисточника Вы получаете такие события, как день рождения, день крещения, выпускной и так далее. Источник событий позволяет Вам вычислить существовавшего человека как часть семьи.&lt;br /&gt;
&lt;br /&gt;
Таким образом, у нас есть наши основные термины для генеалогии: Источники, События, Люди и Семьи. Помимо этого, Gramps позволяет хранить Заметки, Места, Медиа (фотографии, фильмы, документы) и [[ Ru:Хранилища в Gramps | Хранилища]].&lt;br /&gt;
&lt;br /&gt;
Итак, давайте начнем с добавления информации в Gramps.&lt;br /&gt;
&lt;br /&gt;
== Создать Семейное древо ==&lt;br /&gt;
Здесь предполагается, что Вы только что установили Gramps и запускаете свое первое семейное дерево.&lt;br /&gt;
&lt;br /&gt;
В качестве первого шага запустите Gramps.&lt;br /&gt;
&lt;br /&gt;
{{-}}&lt;br /&gt;
[[File:Manage-databases-icon-toolbar-no-familytree-loaded-51.png|450px|thumb|right|Значок Менеджера баз данных на панели инструментов без загруженного семейного дерева]]&lt;br /&gt;
&lt;br /&gt;
Менеджер генеалогического дерева под названием «Семейные деревья - Gramps» будет отображаться, если на панели инструментов нет, щелкните значок генеалогического дерева, чтобы открыть диспетчер семейного дерева.&lt;br /&gt;
&lt;br /&gt;
[[Gramps_{{man version}}_Wiki_Manual_-_Getting_started#Choosing_a_Family_Tree]]&lt;br /&gt;
{{-}}&lt;br /&gt;
[[File:ManageFamilyTrees-51.png|right|thumb|450px|Окно менеджера «Семейных деревьев»]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Во всплывающем окне генеалогического дерева (менеджера) нажмите кнопку {{man button | New}} (справа). Теперь под названием «Семейное древо» (слева) введите имя для своего дерева и нажмите кнопку {{man button | Загрузить семейное древо}} (внизу справа). Gramps теперь откроется вместе с вашим недавно созданным деревом.&lt;br /&gt;
&lt;br /&gt;
[[Gramps _ {{man version}} _ Wiki_Manual _-_ Manage_Family_Trees # Starting_a_new_Family_Tree]]&lt;br /&gt;
{{-}}&lt;br /&gt;
[[Файл: MainWindow-PeopleCategory-PeopleTreeView-annotated-50.png | 450px | thumb | right | Аннотированные части окна Main Gramps]]&lt;br /&gt;
&lt;br /&gt;
[[Gramps_{{man version}}_Wiki_Manual_-_Manage_Family_Trees#Starting_a_new_Family_Tree]]&lt;br /&gt;
{{-}}&lt;br /&gt;
[[File:MainWindow-PeopleCategory-PeopleTreeView-annotated-50.png|450px|thumb|right|Annotated Main Gramps window parts]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Главная страница Gramps разделена на отдельные панели, панель инструментов в верхней части, левая боковая панель (навигатор), позволяющая перемещаться по различным представлениям ваших данных, область просмотра, в которой отображаются данные (в центре), и правая боковая панель (боковая панель) и нижняя панель (Bottombar), которая может быть использована для Gramplets, (Gramplets покрыты позже). Большинство из этих панелей можно включить или выключить, перейдя к слову View в верхней части окна и отметив (вкл) или сняв флажок (выключить) вид.&lt;br /&gt;
[[Gramps_{{man version}}_Wiki_Manual_-_Main_Window#Main_Window]]&lt;br /&gt;
{{-}}&lt;br /&gt;
&lt;br /&gt;
==Create a Source==&lt;br /&gt;
[[File:NewSource-editor-dialog-example-50.png|thumb|right|450px|New Source - editor dialog - example]]&lt;br /&gt;
&lt;br /&gt;
As you start with yourself, and the source is the interview with yourself, in the left sidebar called '''Navigator''' click on the [[Gramps_{{man version}}_Wiki_Manual_-_Categories#Sources_Category|source icon]] {{icon|sour34}}. In the toolbar click on {{man label|Add}} (or {{man key press|CTRL|INSERT}} on the keyboard) to open the [[Gramps_{{man version}}_Wiki_Manual_-_Entering_and_editing_data:_detailed_-_part_2#New_Source_dialog|source editor]].&lt;br /&gt;
&lt;br /&gt;
Assuming your name is ''John Doe'', you now make a source for the interview with yourself! So enter:&lt;br /&gt;
* Title: Interview with John Doe&lt;br /&gt;
* Author: John Doe&lt;br /&gt;
And click on {{man button|OK}}.&lt;br /&gt;
{{-}}&lt;br /&gt;
[[File:SourcesCategory-SourcesListView-example-50.png|right|450px|thumb|Sources Category - (List) View]]&lt;br /&gt;
&lt;br /&gt;
That is it, your first source. In the [[Gramps_{{man version}}_Wiki_Manual_-_Categories#Sources_Category|Source(list)view]] you will see your new source listed and that the entry has ID number that is unique to your source.&lt;br /&gt;
&lt;br /&gt;
[[Gramps_{{man version}}_Wiki_Manual_-_Entering_and_editing_data:_detailed_-_part_2#Editing_information_about_sources]]&lt;br /&gt;
&lt;br /&gt;
&amp;lt;!--&lt;br /&gt;
Before continuing, let's show how to change the interface. In the toolbar of Gramps, the last icon is the {{man button|Configure the active view}}, so click it to see how you can adapt the view. Activate the 'Last Changed' Column and by dragging, change eg 'Author' to be the second column. Most views have this configuration option, so change these to your liking!&lt;br /&gt;
--&amp;gt;&lt;br /&gt;
{{-}}&lt;br /&gt;
&lt;br /&gt;
==Add data to the source==&lt;br /&gt;
{{stub}}&lt;br /&gt;
(Ver. 3.3.1-1)&lt;br /&gt;
&lt;br /&gt;
Before you begin, you should know that Gramps does '''not''' store your media(pictures, videos, sounds, and documents etc..), it only stores a link to where the media is on your hard disk. So decide where you will store your pictures, videos, sounds, and documents. Then on the menu bar select {{man menu|Edit-&amp;gt;Preferences}} and the '''General''' tab. Set the value of {{man label|Base path for relative media paths}} to this directory. Click on the {{man label|Close}} button to save your changes. Keep your media documents well structured in this directory.&lt;br /&gt;
&lt;br /&gt;
Now let's continue with adding some more data to the source. Double click on it (or press {{Man key press|ENTER}}) to open the source 'Interview with John Doe'. Look at the tab pages at the bottom of the source editor: Notes, Gallery, Data, Repositories, References. Surely you have a picture of yourself! Let's add it to the Gallery of this source.&lt;br /&gt;
&lt;br /&gt;
Click on the {{man label|Gallery}} tab, and then on the little '''Add''' icon just below the Notes tab. This opens a dialog to select the image of yourself. At the bottom of this dialog is a box '''Title:''' to set a nice title such as 'Picture of John Doe'. Entering a title does not change the file name. Make sure you select 'Convert to a relative path'. Press {{man button|OK}}. You will now see the ''Media Reference Editor''. The top of this dialog allows to select a region of the picture, eg when you have selected a group photo, it makes sense to indicate who on the photo is John Doe. You can use the mouse in the preview picture to select the part of the picture of interest (click down is corner 1 and click release is corner 2). Click {{man button|OK}} to save the image and go back to the source editor you were working on. &lt;br /&gt;
&lt;br /&gt;
Suppose you have a typed-out text of the interview. In that case you can add the textual document (odt, doc, rtf, etc ...) in the {{man label|Gallery}}, but you can also store the text as a {{man label|Note}} in Gramps. The good thing about using a note is that Gramps can search the text of notes with filters. So, click on the {{man label|Notes}} tab, click the '''Add''' icon, and you are presented with a basic editor that you can type or paste text into.&lt;br /&gt;
&lt;br /&gt;
When finished, press {{man button|OK}} on the source editor, and your source 'Interview with John Doe' now has also a note and picture.&lt;br /&gt;
&lt;br /&gt;
To see these, you would have to open the editor again. However, Gramps has a bottom pane that can show you information on the selected entry in the source view. For that, activate in the menu '''View''' the '''Bottombar'''. You will see a number of tabs which allow to show information. The elements showing information are called '''Gramplets''' in Gramps. Gramplets are small plugins that can perform all kinds of tasks. You can add one to the bottombar by using right-click with the mouse on the bottombar next to the tabs.&lt;br /&gt;
&lt;br /&gt;
== Time for your first Person ==&lt;br /&gt;
(Ver. 3.3.1-1)&lt;br /&gt;
&lt;br /&gt;
So much done, and not yet one single person is present in your family tree! Time to change that. Let's add yourself. As all information you will add comes from the source 'Interview with John Doe', we first store this in an easy to reach place. In the toolbar click on the {{man button|Clipboard}} icon to open the clipboard. Drag and drop, from the source view, the source 'Interview with John Doe', into the Clipboard. Your source is now stored in the Clipboard and this window can be closed.&lt;br /&gt;
&lt;br /&gt;
In the Navigator, click on the Person icon to see the person view. Note that on the Toolbar there is a pressed-in button (3rd button from the right) indicating the type of person view you have activated. Try the other possibility once to see what changes. Many Categories in the Navigator have more than one view!&lt;br /&gt;
&lt;br /&gt;
Click now on the {{man button|Add}} button on the Toolbar to add your first person. You now see the person editor, and the top part of this should be what you expect: all information about the name of this person. So, type in your given name, and your surname. If you are eg. Spanish and have a very long surname, then click on the {{man button|Add}} icon after the surname to enter multiple surnames. See the manual for more details. Now select your Gender.&lt;br /&gt;
&lt;br /&gt;
As you enter data, you need to add where you obtained this data (Source). For this, click on the {{man label|Sources}} tab, then open the Clipboard from the Toolbar, drag the source you stored in the clipboard, into the area under ID |Title | Auth | Page of the Person Editor. This will open up the 'Source Reference Editor'. The bottom part of this editor is the same source as already entered, but the top part is new, and contains the data on how the information of the person was found in this source and how certain you are of it. For this interview you can set {{man label|Confidence}} to ''Very High''.&lt;br /&gt;
&lt;br /&gt;
You already have a picture of yourself, as you added it to the source. You can now add this same picture to this Person record you are creating. For this, click on the {{man label|Gallery}} tab of the person editor, and click on the {{man button|Share}} button. This will open a list of all media objects. Select the one you made earlier and click {{man button|OK}} to store everything. You could also have used the clipboard: or by adding the picture there from the media view, or by adding the media ''reference'' in the clipboard by dragging it from the gallery of an object to the clipboard, and then using it from there where you need it. &lt;br /&gt;
&lt;br /&gt;
Save everything by clicking {{man button|OK}} until you see the main Gramps view again.&lt;br /&gt;
&lt;br /&gt;
== Events ==&lt;br /&gt;
(Ver. 3.3.1-1)&lt;br /&gt;
&lt;br /&gt;
Next, you will want to add your birthday. For this, open the person editor of yourself, by double clicking on your name. Note that the {{man label|Events}} tab is open. Click on the {{man button|Add}} icon to add an event. Gramps preselects the birth event for the first event that you want to add. Enter your birth date as: (12/31/1900 - Month/Day/Year) or (1 Jan 1900 - Day Month Year). If you use Day Month Year, the Month must be entered with the first 3 letters only or it must be spelled out completely.&lt;br /&gt;
&lt;br /&gt;
You can also click on the {{man button|Calendar}} button on the right. This window allows you to select the Day Month and Year with a drop-down menu. When using this make sure that the Quality is set to Regular and Type is also set to Regular. After entering your birth date in the calendar window, click on {{man button|OK}} to save it.&lt;br /&gt;
&lt;br /&gt;
Next, because you have no Places in your database you need to create one. Knowing the place where you were born, click on the {{man button|Add}} icon after the Place entry to create this place. Enter places as City/Town, Township, County, State, Country or any combination of these. Such as Germantown, German Township (Twp), Montgomery County (Co.), Ohio, USA. Being consistent when adding places will be helpful later when you can select these from the {{man button|Select an existing place}} icon.  Adding latitude and longitude will allow these places to be positioned on a map later.&lt;br /&gt;
&lt;br /&gt;
Don't forget to Source this. Click the {{man button|Source}} tab, open the '''Clipboard''', drag and drop your source, select the Confidence level, and save both the Source and then the new place with the {{man button|OK}} buttons.&lt;br /&gt;
&lt;br /&gt;
Note that the editor that has been open is the Event ''Reference'' Editor. This means that there is a global part that you can share with other people (the bottom of the editor), and a top part which is unique to the person. This top part is used to enter the {{man label|Role}} of the person in the event. In your own birth, you have the primary role. If you know the name of people helping in the birth, and you want to store these people also, you can share this event with them, with a Role of ''Aide''. You can type a custom role in the {{man label|Role}} field if you are not happy with the predefined possibilities.&lt;br /&gt;
&lt;br /&gt;
Again, add a source to the event via the {{man label|Sources}} tab, like you did before. As you have no real recollection of your own birth, the interview should not have confidence 'Very High'! You would need to add a birth document as source for that.&lt;br /&gt;
&lt;br /&gt;
When done, click {{man button|OK}} to save the event, and then again to save the person, and you have your first full person record.&lt;br /&gt;
&lt;br /&gt;
== Family ==&lt;br /&gt;
You now have entered yourself, time to add your parents. You could add your father and mother as you added yourself, and then connect them in a family, but most people will do things in one go via the {{icon|rela}}'''Relationship View''' or the {{icon|ance}}'''Pedigree View'''. Let's go to the Relationship view: select yourself in the person view, and then in the navigator, select the relationship view. This view has a toolbar that allows to add parents or to add a spouse. Click on the {{man button|Add parents}} icon to open the family editor.&lt;br /&gt;
&lt;br /&gt;
In the family editor you will see that you are present in the {{man label|Children}} tab. Use the {{man button|Add}} icon next to father and mother to add them as you have added yourself. Use the {{man button|Add}} icon in the {{man label|Children}} tab to add your siblings. You need to use drag-and-drop to sort siblings in the order as you want them to appear in reports (normally oldest to youngest I suppose). &lt;br /&gt;
&lt;br /&gt;
In the family editor you can also add events. We call these family events as they are shared by the two parents. Typically this is Engagement, Marriage, .... In these the Role is 'Family'. It is not needed to add these events also individually to the two parents! &lt;br /&gt;
&lt;br /&gt;
When done, click {{man button|OK}} to save the family, and you will return to the relationship view with all the extra information visible. From within this view you can navigate to other people and keep enlarging your family tree.&lt;br /&gt;
&lt;br /&gt;
== A report ==&lt;br /&gt;
Now that you have a first small family tree, make a report. Go to the oldest grandparent you have in the relationship view or the person view (you can set bookmarks on people and set a home person!). With this person selected, go in the menu {{man menu|Reports-&amp;gt;Text Reports-&amp;gt;[[Gramps_{{man version}}_Wiki_Manual_-_Reports_-_part_6#Detailed_Descendant_Report|Detailed Descendant Report]]}}, to create a nice textual descendant report.&lt;br /&gt;
&lt;br /&gt;
== What next?==&lt;br /&gt;
Gramps has many features, as you improve, take the time to go over the [[Gramps_{{man version}}_Wiki_Manual|user manual]] and learn more. Join and use the mailing list to discuss issues.&lt;br /&gt;
&lt;br /&gt;
We advise everyone to read the manual to learn all about using Gramps. Genealogy takes time, so learning the tools is not wasted time.&lt;br /&gt;
&lt;br /&gt;
However, if you really want the bare minimum to start, then read this:&lt;br /&gt;
* [[Gramps {{man version}} Wiki Manual - Entering and editing data: brief]]&lt;br /&gt;
&lt;br /&gt;
==Screencasts==&lt;br /&gt;
&lt;br /&gt;
===Gramps 3.2.5===&lt;br /&gt;
Screencast for the older Gramps 3.2.5.&lt;br /&gt;
* Gramps 3.2.5: [[Media:Edit family from pedigree view Gramps 3.2.5.ogg|Edit family (parents, children, siblings) from Pedigree View]]&lt;br /&gt;
* Gramps 3.2.5: [[Media:Add_family_from_pedigree_view_Gramps_3.2.5.ogg|Add family (parents, children, siblings) from Pedigree View]]&lt;br /&gt;
&lt;br /&gt;
==See also==&lt;br /&gt;
Related articles.&lt;br /&gt;
* [[Add a child]]&lt;br /&gt;
* [[Add a spouse]]&lt;br /&gt;
* [[Add a godfather-godmother]]&lt;br /&gt;
* [[Add a witness]]&lt;br /&gt;
* [[Genealogy Glossary]]&lt;br /&gt;
* [[Gramps Glossary]]&lt;br /&gt;
&lt;br /&gt;
[[Category:How do I...]]&lt;br /&gt;
[[Category:Genealogy]]&lt;br /&gt;
[[Category:Gramps Logic]]&lt;/div&gt;</summary>
		<author><name>Sten</name></author>
		
	</entry>
	<entry>
		<id>https://ftp.gramps-project.org/wiki/index.php?title=RU:%D0%9D%D0%B0%D1%87%D0%B0%D0%BB%D0%BE_%D0%B2_%D0%93%D0%B5%D0%BD%D0%B5%D0%B0%D0%BB%D0%BE%D0%B3%D0%B8%D0%B8&amp;diff=78860</id>
		<title>RU:Начало в Генеалогии</title>
		<link rel="alternate" type="text/html" href="https://ftp.gramps-project.org/wiki/index.php?title=RU:%D0%9D%D0%B0%D1%87%D0%B0%D0%BB%D0%BE_%D0%B2_%D0%93%D0%B5%D0%BD%D0%B5%D0%B0%D0%BB%D0%BE%D0%B3%D0%B8%D0%B8&amp;diff=78860"/>
		<updated>2020-06-03T10:20:25Z</updated>

		<summary type="html">&lt;p&gt;Sten: /* Создать Семейное древо */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{languages ​​| Начало в Генеалогии}}&lt;br /&gt;
'' 'Как мне начать в Генеалогии, используя Gramps? «»»&lt;br /&gt;
&lt;br /&gt;
== Подготовка ==&lt;br /&gt;
Если Вы только начинаете свою генеалогию, лучше начать с себя и добавлять других людей, соединяя их с Вами.&lt;br /&gt;
&lt;br /&gt;
'' {{man menu | Одной из самых важных вещей в генеалогии является то, что Вы записываете, как и где Вы нашли / получили информацию.}} '' Это называется источником. Это настолько важно потому, что позже Вам понадобится эта информации или Вы захотите обратиться к ней. Наличие источника у Вашей информации также создаст доверие к ней у других исследователей.&lt;br /&gt;
&lt;br /&gt;
Таким образом, если Вы начинаете с себя, Вы сами ''проводите собеседование'', что является основным источником информации по этому вопросу. Из этого первоисточника Вы получаете такие события, как день рождения, день крещения, выпускной и так далее. Источник событий позволяет Вам вычислить существовавшего человека как часть семьи.&lt;br /&gt;
&lt;br /&gt;
Таким образом, у нас есть наши основные термины для генеалогии: Источники, События, Люди и Семьи. Помимо этого, Gramps позволяет хранить Заметки, Места, Медиа (фотографии, фильмы, документы) и [[ Ru:Хранилища в Gramps | Хранилища]].&lt;br /&gt;
&lt;br /&gt;
Итак, давайте начнем с добавления информации в Gramps.&lt;br /&gt;
&lt;br /&gt;
== Создать Семейное древо ==&lt;br /&gt;
Здесь предполагается, что Вы только что установили Gramps и запускаете свое первое семейное дерево.&lt;br /&gt;
&lt;br /&gt;
В качестве первого шага запустите Gramps.&lt;br /&gt;
&lt;br /&gt;
{{-}}&lt;br /&gt;
[[File:Manage-databases-icon-toolbar-no-familytree-loaded-51.png|450px|thumb|right|Manage databases icon on toolbar with No Family Tree - loaded]]&lt;br /&gt;
&lt;br /&gt;
{{-}}&lt;br /&gt;
[[Файл: Manage-database-icon-icon-toolbar-no-familytree -loaded-51.png | 450px | thumb | right | Управлять значком баз данных на панели инструментов без загруженного семейного дерева]]&lt;br /&gt;
&lt;br /&gt;
Менеджер генеалогического дерева под названием «Семейные деревья - Gramps» будет отображаться, если на панели инструментов нет, щелкните значок генеалогического дерева, чтобы открыть диспетчер семейного дерева.&lt;br /&gt;
&lt;br /&gt;
[[Gramps_{{man version}}_Wiki_Manual_-_Getting_started#Choosing_a_Family_Tree]]&lt;br /&gt;
{{-}}&lt;br /&gt;
[[File:ManageFamilyTrees-51.png|right|thumb|450px|Окно менеджера «Семейных деревьев»]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Во всплывающем окне генеалогического дерева (менеджера) нажмите кнопку {{man button | New}} (справа). Теперь под названием «Семейное древо» (слева) введите имя для своего дерева и нажмите кнопку {{man button | Загрузить семейное древо}} (внизу справа). Gramps теперь откроется вместе с вашим недавно созданным деревом.&lt;br /&gt;
&lt;br /&gt;
[[Gramps _ {{man version}} _ Wiki_Manual _-_ Manage_Family_Trees # Starting_a_new_Family_Tree]]&lt;br /&gt;
{{-}}&lt;br /&gt;
[[Файл: MainWindow-PeopleCategory-PeopleTreeView-annotated-50.png | 450px | thumb | right | Аннотированные части окна Main Gramps]]&lt;br /&gt;
&lt;br /&gt;
[[Gramps_{{man version}}_Wiki_Manual_-_Manage_Family_Trees#Starting_a_new_Family_Tree]]&lt;br /&gt;
{{-}}&lt;br /&gt;
[[File:MainWindow-PeopleCategory-PeopleTreeView-annotated-50.png|450px|thumb|right|Annotated Main Gramps window parts]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Главная страница Gramps разделена на отдельные панели, панель инструментов в верхней части, левая боковая панель (навигатор), позволяющая перемещаться по различным представлениям ваших данных, область просмотра, в которой отображаются данные (в центре), и правая боковая панель (боковая панель) и нижняя панель (Bottombar), которая может быть использована для Gramplets, (Gramplets покрыты позже). Большинство из этих панелей можно включить или выключить, перейдя к слову View в верхней части окна и отметив (вкл) или сняв флажок (выключить) вид.&lt;br /&gt;
[[Gramps_{{man version}}_Wiki_Manual_-_Main_Window#Main_Window]]&lt;br /&gt;
{{-}}&lt;br /&gt;
&lt;br /&gt;
==Create a Source==&lt;br /&gt;
[[File:NewSource-editor-dialog-example-50.png|thumb|right|450px|New Source - editor dialog - example]]&lt;br /&gt;
&lt;br /&gt;
As you start with yourself, and the source is the interview with yourself, in the left sidebar called '''Navigator''' click on the [[Gramps_{{man version}}_Wiki_Manual_-_Categories#Sources_Category|source icon]] {{icon|sour34}}. In the toolbar click on {{man label|Add}} (or {{man key press|CTRL|INSERT}} on the keyboard) to open the [[Gramps_{{man version}}_Wiki_Manual_-_Entering_and_editing_data:_detailed_-_part_2#New_Source_dialog|source editor]].&lt;br /&gt;
&lt;br /&gt;
Assuming your name is ''John Doe'', you now make a source for the interview with yourself! So enter:&lt;br /&gt;
* Title: Interview with John Doe&lt;br /&gt;
* Author: John Doe&lt;br /&gt;
And click on {{man button|OK}}.&lt;br /&gt;
{{-}}&lt;br /&gt;
[[File:SourcesCategory-SourcesListView-example-50.png|right|450px|thumb|Sources Category - (List) View]]&lt;br /&gt;
&lt;br /&gt;
That is it, your first source. In the [[Gramps_{{man version}}_Wiki_Manual_-_Categories#Sources_Category|Source(list)view]] you will see your new source listed and that the entry has ID number that is unique to your source.&lt;br /&gt;
&lt;br /&gt;
[[Gramps_{{man version}}_Wiki_Manual_-_Entering_and_editing_data:_detailed_-_part_2#Editing_information_about_sources]]&lt;br /&gt;
&lt;br /&gt;
&amp;lt;!--&lt;br /&gt;
Before continuing, let's show how to change the interface. In the toolbar of Gramps, the last icon is the {{man button|Configure the active view}}, so click it to see how you can adapt the view. Activate the 'Last Changed' Column and by dragging, change eg 'Author' to be the second column. Most views have this configuration option, so change these to your liking!&lt;br /&gt;
--&amp;gt;&lt;br /&gt;
{{-}}&lt;br /&gt;
&lt;br /&gt;
==Add data to the source==&lt;br /&gt;
{{stub}}&lt;br /&gt;
(Ver. 3.3.1-1)&lt;br /&gt;
&lt;br /&gt;
Before you begin, you should know that Gramps does '''not''' store your media(pictures, videos, sounds, and documents etc..), it only stores a link to where the media is on your hard disk. So decide where you will store your pictures, videos, sounds, and documents. Then on the menu bar select {{man menu|Edit-&amp;gt;Preferences}} and the '''General''' tab. Set the value of {{man label|Base path for relative media paths}} to this directory. Click on the {{man label|Close}} button to save your changes. Keep your media documents well structured in this directory.&lt;br /&gt;
&lt;br /&gt;
Now let's continue with adding some more data to the source. Double click on it (or press {{Man key press|ENTER}}) to open the source 'Interview with John Doe'. Look at the tab pages at the bottom of the source editor: Notes, Gallery, Data, Repositories, References. Surely you have a picture of yourself! Let's add it to the Gallery of this source.&lt;br /&gt;
&lt;br /&gt;
Click on the {{man label|Gallery}} tab, and then on the little '''Add''' icon just below the Notes tab. This opens a dialog to select the image of yourself. At the bottom of this dialog is a box '''Title:''' to set a nice title such as 'Picture of John Doe'. Entering a title does not change the file name. Make sure you select 'Convert to a relative path'. Press {{man button|OK}}. You will now see the ''Media Reference Editor''. The top of this dialog allows to select a region of the picture, eg when you have selected a group photo, it makes sense to indicate who on the photo is John Doe. You can use the mouse in the preview picture to select the part of the picture of interest (click down is corner 1 and click release is corner 2). Click {{man button|OK}} to save the image and go back to the source editor you were working on. &lt;br /&gt;
&lt;br /&gt;
Suppose you have a typed-out text of the interview. In that case you can add the textual document (odt, doc, rtf, etc ...) in the {{man label|Gallery}}, but you can also store the text as a {{man label|Note}} in Gramps. The good thing about using a note is that Gramps can search the text of notes with filters. So, click on the {{man label|Notes}} tab, click the '''Add''' icon, and you are presented with a basic editor that you can type or paste text into.&lt;br /&gt;
&lt;br /&gt;
When finished, press {{man button|OK}} on the source editor, and your source 'Interview with John Doe' now has also a note and picture.&lt;br /&gt;
&lt;br /&gt;
To see these, you would have to open the editor again. However, Gramps has a bottom pane that can show you information on the selected entry in the source view. For that, activate in the menu '''View''' the '''Bottombar'''. You will see a number of tabs which allow to show information. The elements showing information are called '''Gramplets''' in Gramps. Gramplets are small plugins that can perform all kinds of tasks. You can add one to the bottombar by using right-click with the mouse on the bottombar next to the tabs.&lt;br /&gt;
&lt;br /&gt;
== Time for your first Person ==&lt;br /&gt;
(Ver. 3.3.1-1)&lt;br /&gt;
&lt;br /&gt;
So much done, and not yet one single person is present in your family tree! Time to change that. Let's add yourself. As all information you will add comes from the source 'Interview with John Doe', we first store this in an easy to reach place. In the toolbar click on the {{man button|Clipboard}} icon to open the clipboard. Drag and drop, from the source view, the source 'Interview with John Doe', into the Clipboard. Your source is now stored in the Clipboard and this window can be closed.&lt;br /&gt;
&lt;br /&gt;
In the Navigator, click on the Person icon to see the person view. Note that on the Toolbar there is a pressed-in button (3rd button from the right) indicating the type of person view you have activated. Try the other possibility once to see what changes. Many Categories in the Navigator have more than one view!&lt;br /&gt;
&lt;br /&gt;
Click now on the {{man button|Add}} button on the Toolbar to add your first person. You now see the person editor, and the top part of this should be what you expect: all information about the name of this person. So, type in your given name, and your surname. If you are eg. Spanish and have a very long surname, then click on the {{man button|Add}} icon after the surname to enter multiple surnames. See the manual for more details. Now select your Gender.&lt;br /&gt;
&lt;br /&gt;
As you enter data, you need to add where you obtained this data (Source). For this, click on the {{man label|Sources}} tab, then open the Clipboard from the Toolbar, drag the source you stored in the clipboard, into the area under ID |Title | Auth | Page of the Person Editor. This will open up the 'Source Reference Editor'. The bottom part of this editor is the same source as already entered, but the top part is new, and contains the data on how the information of the person was found in this source and how certain you are of it. For this interview you can set {{man label|Confidence}} to ''Very High''.&lt;br /&gt;
&lt;br /&gt;
You already have a picture of yourself, as you added it to the source. You can now add this same picture to this Person record you are creating. For this, click on the {{man label|Gallery}} tab of the person editor, and click on the {{man button|Share}} button. This will open a list of all media objects. Select the one you made earlier and click {{man button|OK}} to store everything. You could also have used the clipboard: or by adding the picture there from the media view, or by adding the media ''reference'' in the clipboard by dragging it from the gallery of an object to the clipboard, and then using it from there where you need it. &lt;br /&gt;
&lt;br /&gt;
Save everything by clicking {{man button|OK}} until you see the main Gramps view again.&lt;br /&gt;
&lt;br /&gt;
== Events ==&lt;br /&gt;
(Ver. 3.3.1-1)&lt;br /&gt;
&lt;br /&gt;
Next, you will want to add your birthday. For this, open the person editor of yourself, by double clicking on your name. Note that the {{man label|Events}} tab is open. Click on the {{man button|Add}} icon to add an event. Gramps preselects the birth event for the first event that you want to add. Enter your birth date as: (12/31/1900 - Month/Day/Year) or (1 Jan 1900 - Day Month Year). If you use Day Month Year, the Month must be entered with the first 3 letters only or it must be spelled out completely.&lt;br /&gt;
&lt;br /&gt;
You can also click on the {{man button|Calendar}} button on the right. This window allows you to select the Day Month and Year with a drop-down menu. When using this make sure that the Quality is set to Regular and Type is also set to Regular. After entering your birth date in the calendar window, click on {{man button|OK}} to save it.&lt;br /&gt;
&lt;br /&gt;
Next, because you have no Places in your database you need to create one. Knowing the place where you were born, click on the {{man button|Add}} icon after the Place entry to create this place. Enter places as City/Town, Township, County, State, Country or any combination of these. Such as Germantown, German Township (Twp), Montgomery County (Co.), Ohio, USA. Being consistent when adding places will be helpful later when you can select these from the {{man button|Select an existing place}} icon.  Adding latitude and longitude will allow these places to be positioned on a map later.&lt;br /&gt;
&lt;br /&gt;
Don't forget to Source this. Click the {{man button|Source}} tab, open the '''Clipboard''', drag and drop your source, select the Confidence level, and save both the Source and then the new place with the {{man button|OK}} buttons.&lt;br /&gt;
&lt;br /&gt;
Note that the editor that has been open is the Event ''Reference'' Editor. This means that there is a global part that you can share with other people (the bottom of the editor), and a top part which is unique to the person. This top part is used to enter the {{man label|Role}} of the person in the event. In your own birth, you have the primary role. If you know the name of people helping in the birth, and you want to store these people also, you can share this event with them, with a Role of ''Aide''. You can type a custom role in the {{man label|Role}} field if you are not happy with the predefined possibilities.&lt;br /&gt;
&lt;br /&gt;
Again, add a source to the event via the {{man label|Sources}} tab, like you did before. As you have no real recollection of your own birth, the interview should not have confidence 'Very High'! You would need to add a birth document as source for that.&lt;br /&gt;
&lt;br /&gt;
When done, click {{man button|OK}} to save the event, and then again to save the person, and you have your first full person record.&lt;br /&gt;
&lt;br /&gt;
== Family ==&lt;br /&gt;
You now have entered yourself, time to add your parents. You could add your father and mother as you added yourself, and then connect them in a family, but most people will do things in one go via the {{icon|rela}}'''Relationship View''' or the {{icon|ance}}'''Pedigree View'''. Let's go to the Relationship view: select yourself in the person view, and then in the navigator, select the relationship view. This view has a toolbar that allows to add parents or to add a spouse. Click on the {{man button|Add parents}} icon to open the family editor.&lt;br /&gt;
&lt;br /&gt;
In the family editor you will see that you are present in the {{man label|Children}} tab. Use the {{man button|Add}} icon next to father and mother to add them as you have added yourself. Use the {{man button|Add}} icon in the {{man label|Children}} tab to add your siblings. You need to use drag-and-drop to sort siblings in the order as you want them to appear in reports (normally oldest to youngest I suppose). &lt;br /&gt;
&lt;br /&gt;
In the family editor you can also add events. We call these family events as they are shared by the two parents. Typically this is Engagement, Marriage, .... In these the Role is 'Family'. It is not needed to add these events also individually to the two parents! &lt;br /&gt;
&lt;br /&gt;
When done, click {{man button|OK}} to save the family, and you will return to the relationship view with all the extra information visible. From within this view you can navigate to other people and keep enlarging your family tree.&lt;br /&gt;
&lt;br /&gt;
== A report ==&lt;br /&gt;
Now that you have a first small family tree, make a report. Go to the oldest grandparent you have in the relationship view or the person view (you can set bookmarks on people and set a home person!). With this person selected, go in the menu {{man menu|Reports-&amp;gt;Text Reports-&amp;gt;[[Gramps_{{man version}}_Wiki_Manual_-_Reports_-_part_6#Detailed_Descendant_Report|Detailed Descendant Report]]}}, to create a nice textual descendant report.&lt;br /&gt;
&lt;br /&gt;
== What next?==&lt;br /&gt;
Gramps has many features, as you improve, take the time to go over the [[Gramps_{{man version}}_Wiki_Manual|user manual]] and learn more. Join and use the mailing list to discuss issues.&lt;br /&gt;
&lt;br /&gt;
We advise everyone to read the manual to learn all about using Gramps. Genealogy takes time, so learning the tools is not wasted time.&lt;br /&gt;
&lt;br /&gt;
However, if you really want the bare minimum to start, then read this:&lt;br /&gt;
* [[Gramps {{man version}} Wiki Manual - Entering and editing data: brief]]&lt;br /&gt;
&lt;br /&gt;
==Screencasts==&lt;br /&gt;
&lt;br /&gt;
===Gramps 3.2.5===&lt;br /&gt;
Screencast for the older Gramps 3.2.5.&lt;br /&gt;
* Gramps 3.2.5: [[Media:Edit family from pedigree view Gramps 3.2.5.ogg|Edit family (parents, children, siblings) from Pedigree View]]&lt;br /&gt;
* Gramps 3.2.5: [[Media:Add_family_from_pedigree_view_Gramps_3.2.5.ogg|Add family (parents, children, siblings) from Pedigree View]]&lt;br /&gt;
&lt;br /&gt;
==See also==&lt;br /&gt;
Related articles.&lt;br /&gt;
* [[Add a child]]&lt;br /&gt;
* [[Add a spouse]]&lt;br /&gt;
* [[Add a godfather-godmother]]&lt;br /&gt;
* [[Add a witness]]&lt;br /&gt;
* [[Genealogy Glossary]]&lt;br /&gt;
* [[Gramps Glossary]]&lt;br /&gt;
&lt;br /&gt;
[[Category:How do I...]]&lt;br /&gt;
[[Category:Genealogy]]&lt;br /&gt;
[[Category:Gramps Logic]]&lt;/div&gt;</summary>
		<author><name>Sten</name></author>
		
	</entry>
	<entry>
		<id>https://ftp.gramps-project.org/wiki/index.php?title=RU:%D0%9D%D0%B0%D1%87%D0%B0%D0%BB%D0%BE_%D0%B2_%D0%93%D0%B5%D0%BD%D0%B5%D0%B0%D0%BB%D0%BE%D0%B3%D0%B8%D0%B8&amp;diff=78859</id>
		<title>RU:Начало в Генеалогии</title>
		<link rel="alternate" type="text/html" href="https://ftp.gramps-project.org/wiki/index.php?title=RU:%D0%9D%D0%B0%D1%87%D0%B0%D0%BB%D0%BE_%D0%B2_%D0%93%D0%B5%D0%BD%D0%B5%D0%B0%D0%BB%D0%BE%D0%B3%D0%B8%D0%B8&amp;diff=78859"/>
		<updated>2020-06-03T10:17:52Z</updated>

		<summary type="html">&lt;p&gt;Sten: /* Создать Семейное древо */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{languages ​​| Начало в Генеалогии}}&lt;br /&gt;
'' 'Как мне начать в Генеалогии, используя Gramps? «»»&lt;br /&gt;
&lt;br /&gt;
== Подготовка ==&lt;br /&gt;
Если Вы только начинаете свою генеалогию, лучше начать с себя и добавлять других людей, соединяя их с Вами.&lt;br /&gt;
&lt;br /&gt;
'' {{man menu | Одной из самых важных вещей в генеалогии является то, что Вы записываете, как и где Вы нашли / получили информацию.}} '' Это называется источником. Это настолько важно потому, что позже Вам понадобится эта информации или Вы захотите обратиться к ней. Наличие источника у Вашей информации также создаст доверие к ней у других исследователей.&lt;br /&gt;
&lt;br /&gt;
Таким образом, если Вы начинаете с себя, Вы сами ''проводите собеседование'', что является основным источником информации по этому вопросу. Из этого первоисточника Вы получаете такие события, как день рождения, день крещения, выпускной и так далее. Источник событий позволяет Вам вычислить существовавшего человека как часть семьи.&lt;br /&gt;
&lt;br /&gt;
Таким образом, у нас есть наши основные термины для генеалогии: Источники, События, Люди и Семьи. Помимо этого, Gramps позволяет хранить Заметки, Места, Медиа (фотографии, фильмы, документы) и [[ Ru:Хранилища в Gramps | Хранилища]].&lt;br /&gt;
&lt;br /&gt;
Итак, давайте начнем с добавления информации в Gramps.&lt;br /&gt;
&lt;br /&gt;
== Создать Семейное древо ==&lt;br /&gt;
Здесь предполагается, что Вы только что установили Gramps и запускаете свое первое семейное дерево.&lt;br /&gt;
&lt;br /&gt;
В качестве первого шага запустите Gramps.&lt;br /&gt;
{{-}}&lt;br /&gt;
[[Файл: Manage-database-icon-icon-toolbar-no-familytree -loaded-51.png | 450px | thumb | right | Управлять значком баз данных на панели инструментов без загруженного семейного дерева]]&lt;br /&gt;
&lt;br /&gt;
Менеджер генеалогического дерева под названием «Семейные деревья - Gramps» будет отображаться, если на панели инструментов нет, щелкните значок генеалогического дерева, чтобы открыть диспетчер семейного дерева.&lt;br /&gt;
&lt;br /&gt;
[[Gramps_{{man version}}_Wiki_Manual_-_Getting_started#Choosing_a_Family_Tree]]&lt;br /&gt;
{{-}}&lt;br /&gt;
[[File:ManageFamilyTrees-51.png|right|thumb|450px|Окно менеджера «Семейных деревьев»]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Во всплывающем окне генеалогического дерева (менеджера) нажмите кнопку {{man button | New}} (справа). Теперь под названием «Семейное древо» (слева) введите имя для своего дерева и нажмите кнопку {{man button | Загрузить семейное древо}} (внизу справа). Gramps теперь откроется вместе с вашим недавно созданным деревом.&lt;br /&gt;
&lt;br /&gt;
[[Gramps _ {{man version}} _ Wiki_Manual _-_ Manage_Family_Trees # Starting_a_new_Family_Tree]]&lt;br /&gt;
{{-}}&lt;br /&gt;
[[Файл: MainWindow-PeopleCategory-PeopleTreeView-annotated-50.png | 450px | thumb | right | Аннотированные части окна Main Gramps]]&lt;br /&gt;
&lt;br /&gt;
[[Gramps_{{man version}}_Wiki_Manual_-_Manage_Family_Trees#Starting_a_new_Family_Tree]]&lt;br /&gt;
{{-}}&lt;br /&gt;
[[File:MainWindow-PeopleCategory-PeopleTreeView-annotated-50.png|450px|thumb|right|Annotated Main Gramps window parts]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Главная страница Gramps разделена на отдельные панели, панель инструментов в верхней части, левая боковая панель (навигатор), позволяющая перемещаться по различным представлениям ваших данных, область просмотра, в которой отображаются данные (в центре), и правая боковая панель (боковая панель) и нижняя панель (Bottombar), которая может быть использована для Gramplets, (Gramplets покрыты позже). Большинство из этих панелей можно включить или выключить, перейдя к слову View в верхней части окна и отметив (вкл) или сняв флажок (выключить) вид.&lt;br /&gt;
[[Gramps_{{man version}}_Wiki_Manual_-_Main_Window#Main_Window]]&lt;br /&gt;
{{-}}&lt;br /&gt;
&lt;br /&gt;
==Create a Source==&lt;br /&gt;
[[File:NewSource-editor-dialog-example-50.png|thumb|right|450px|New Source - editor dialog - example]]&lt;br /&gt;
&lt;br /&gt;
As you start with yourself, and the source is the interview with yourself, in the left sidebar called '''Navigator''' click on the [[Gramps_{{man version}}_Wiki_Manual_-_Categories#Sources_Category|source icon]] {{icon|sour34}}. In the toolbar click on {{man label|Add}} (or {{man key press|CTRL|INSERT}} on the keyboard) to open the [[Gramps_{{man version}}_Wiki_Manual_-_Entering_and_editing_data:_detailed_-_part_2#New_Source_dialog|source editor]].&lt;br /&gt;
&lt;br /&gt;
Assuming your name is ''John Doe'', you now make a source for the interview with yourself! So enter:&lt;br /&gt;
* Title: Interview with John Doe&lt;br /&gt;
* Author: John Doe&lt;br /&gt;
And click on {{man button|OK}}.&lt;br /&gt;
{{-}}&lt;br /&gt;
[[File:SourcesCategory-SourcesListView-example-50.png|right|450px|thumb|Sources Category - (List) View]]&lt;br /&gt;
&lt;br /&gt;
That is it, your first source. In the [[Gramps_{{man version}}_Wiki_Manual_-_Categories#Sources_Category|Source(list)view]] you will see your new source listed and that the entry has ID number that is unique to your source.&lt;br /&gt;
&lt;br /&gt;
[[Gramps_{{man version}}_Wiki_Manual_-_Entering_and_editing_data:_detailed_-_part_2#Editing_information_about_sources]]&lt;br /&gt;
&lt;br /&gt;
&amp;lt;!--&lt;br /&gt;
Before continuing, let's show how to change the interface. In the toolbar of Gramps, the last icon is the {{man button|Configure the active view}}, so click it to see how you can adapt the view. Activate the 'Last Changed' Column and by dragging, change eg 'Author' to be the second column. Most views have this configuration option, so change these to your liking!&lt;br /&gt;
--&amp;gt;&lt;br /&gt;
{{-}}&lt;br /&gt;
&lt;br /&gt;
==Add data to the source==&lt;br /&gt;
{{stub}}&lt;br /&gt;
(Ver. 3.3.1-1)&lt;br /&gt;
&lt;br /&gt;
Before you begin, you should know that Gramps does '''not''' store your media(pictures, videos, sounds, and documents etc..), it only stores a link to where the media is on your hard disk. So decide where you will store your pictures, videos, sounds, and documents. Then on the menu bar select {{man menu|Edit-&amp;gt;Preferences}} and the '''General''' tab. Set the value of {{man label|Base path for relative media paths}} to this directory. Click on the {{man label|Close}} button to save your changes. Keep your media documents well structured in this directory.&lt;br /&gt;
&lt;br /&gt;
Now let's continue with adding some more data to the source. Double click on it (or press {{Man key press|ENTER}}) to open the source 'Interview with John Doe'. Look at the tab pages at the bottom of the source editor: Notes, Gallery, Data, Repositories, References. Surely you have a picture of yourself! Let's add it to the Gallery of this source.&lt;br /&gt;
&lt;br /&gt;
Click on the {{man label|Gallery}} tab, and then on the little '''Add''' icon just below the Notes tab. This opens a dialog to select the image of yourself. At the bottom of this dialog is a box '''Title:''' to set a nice title such as 'Picture of John Doe'. Entering a title does not change the file name. Make sure you select 'Convert to a relative path'. Press {{man button|OK}}. You will now see the ''Media Reference Editor''. The top of this dialog allows to select a region of the picture, eg when you have selected a group photo, it makes sense to indicate who on the photo is John Doe. You can use the mouse in the preview picture to select the part of the picture of interest (click down is corner 1 and click release is corner 2). Click {{man button|OK}} to save the image and go back to the source editor you were working on. &lt;br /&gt;
&lt;br /&gt;
Suppose you have a typed-out text of the interview. In that case you can add the textual document (odt, doc, rtf, etc ...) in the {{man label|Gallery}}, but you can also store the text as a {{man label|Note}} in Gramps. The good thing about using a note is that Gramps can search the text of notes with filters. So, click on the {{man label|Notes}} tab, click the '''Add''' icon, and you are presented with a basic editor that you can type or paste text into.&lt;br /&gt;
&lt;br /&gt;
When finished, press {{man button|OK}} on the source editor, and your source 'Interview with John Doe' now has also a note and picture.&lt;br /&gt;
&lt;br /&gt;
To see these, you would have to open the editor again. However, Gramps has a bottom pane that can show you information on the selected entry in the source view. For that, activate in the menu '''View''' the '''Bottombar'''. You will see a number of tabs which allow to show information. The elements showing information are called '''Gramplets''' in Gramps. Gramplets are small plugins that can perform all kinds of tasks. You can add one to the bottombar by using right-click with the mouse on the bottombar next to the tabs.&lt;br /&gt;
&lt;br /&gt;
== Time for your first Person ==&lt;br /&gt;
(Ver. 3.3.1-1)&lt;br /&gt;
&lt;br /&gt;
So much done, and not yet one single person is present in your family tree! Time to change that. Let's add yourself. As all information you will add comes from the source 'Interview with John Doe', we first store this in an easy to reach place. In the toolbar click on the {{man button|Clipboard}} icon to open the clipboard. Drag and drop, from the source view, the source 'Interview with John Doe', into the Clipboard. Your source is now stored in the Clipboard and this window can be closed.&lt;br /&gt;
&lt;br /&gt;
In the Navigator, click on the Person icon to see the person view. Note that on the Toolbar there is a pressed-in button (3rd button from the right) indicating the type of person view you have activated. Try the other possibility once to see what changes. Many Categories in the Navigator have more than one view!&lt;br /&gt;
&lt;br /&gt;
Click now on the {{man button|Add}} button on the Toolbar to add your first person. You now see the person editor, and the top part of this should be what you expect: all information about the name of this person. So, type in your given name, and your surname. If you are eg. Spanish and have a very long surname, then click on the {{man button|Add}} icon after the surname to enter multiple surnames. See the manual for more details. Now select your Gender.&lt;br /&gt;
&lt;br /&gt;
As you enter data, you need to add where you obtained this data (Source). For this, click on the {{man label|Sources}} tab, then open the Clipboard from the Toolbar, drag the source you stored in the clipboard, into the area under ID |Title | Auth | Page of the Person Editor. This will open up the 'Source Reference Editor'. The bottom part of this editor is the same source as already entered, but the top part is new, and contains the data on how the information of the person was found in this source and how certain you are of it. For this interview you can set {{man label|Confidence}} to ''Very High''.&lt;br /&gt;
&lt;br /&gt;
You already have a picture of yourself, as you added it to the source. You can now add this same picture to this Person record you are creating. For this, click on the {{man label|Gallery}} tab of the person editor, and click on the {{man button|Share}} button. This will open a list of all media objects. Select the one you made earlier and click {{man button|OK}} to store everything. You could also have used the clipboard: or by adding the picture there from the media view, or by adding the media ''reference'' in the clipboard by dragging it from the gallery of an object to the clipboard, and then using it from there where you need it. &lt;br /&gt;
&lt;br /&gt;
Save everything by clicking {{man button|OK}} until you see the main Gramps view again.&lt;br /&gt;
&lt;br /&gt;
== Events ==&lt;br /&gt;
(Ver. 3.3.1-1)&lt;br /&gt;
&lt;br /&gt;
Next, you will want to add your birthday. For this, open the person editor of yourself, by double clicking on your name. Note that the {{man label|Events}} tab is open. Click on the {{man button|Add}} icon to add an event. Gramps preselects the birth event for the first event that you want to add. Enter your birth date as: (12/31/1900 - Month/Day/Year) or (1 Jan 1900 - Day Month Year). If you use Day Month Year, the Month must be entered with the first 3 letters only or it must be spelled out completely.&lt;br /&gt;
&lt;br /&gt;
You can also click on the {{man button|Calendar}} button on the right. This window allows you to select the Day Month and Year with a drop-down menu. When using this make sure that the Quality is set to Regular and Type is also set to Regular. After entering your birth date in the calendar window, click on {{man button|OK}} to save it.&lt;br /&gt;
&lt;br /&gt;
Next, because you have no Places in your database you need to create one. Knowing the place where you were born, click on the {{man button|Add}} icon after the Place entry to create this place. Enter places as City/Town, Township, County, State, Country or any combination of these. Such as Germantown, German Township (Twp), Montgomery County (Co.), Ohio, USA. Being consistent when adding places will be helpful later when you can select these from the {{man button|Select an existing place}} icon.  Adding latitude and longitude will allow these places to be positioned on a map later.&lt;br /&gt;
&lt;br /&gt;
Don't forget to Source this. Click the {{man button|Source}} tab, open the '''Clipboard''', drag and drop your source, select the Confidence level, and save both the Source and then the new place with the {{man button|OK}} buttons.&lt;br /&gt;
&lt;br /&gt;
Note that the editor that has been open is the Event ''Reference'' Editor. This means that there is a global part that you can share with other people (the bottom of the editor), and a top part which is unique to the person. This top part is used to enter the {{man label|Role}} of the person in the event. In your own birth, you have the primary role. If you know the name of people helping in the birth, and you want to store these people also, you can share this event with them, with a Role of ''Aide''. You can type a custom role in the {{man label|Role}} field if you are not happy with the predefined possibilities.&lt;br /&gt;
&lt;br /&gt;
Again, add a source to the event via the {{man label|Sources}} tab, like you did before. As you have no real recollection of your own birth, the interview should not have confidence 'Very High'! You would need to add a birth document as source for that.&lt;br /&gt;
&lt;br /&gt;
When done, click {{man button|OK}} to save the event, and then again to save the person, and you have your first full person record.&lt;br /&gt;
&lt;br /&gt;
== Family ==&lt;br /&gt;
You now have entered yourself, time to add your parents. You could add your father and mother as you added yourself, and then connect them in a family, but most people will do things in one go via the {{icon|rela}}'''Relationship View''' or the {{icon|ance}}'''Pedigree View'''. Let's go to the Relationship view: select yourself in the person view, and then in the navigator, select the relationship view. This view has a toolbar that allows to add parents or to add a spouse. Click on the {{man button|Add parents}} icon to open the family editor.&lt;br /&gt;
&lt;br /&gt;
In the family editor you will see that you are present in the {{man label|Children}} tab. Use the {{man button|Add}} icon next to father and mother to add them as you have added yourself. Use the {{man button|Add}} icon in the {{man label|Children}} tab to add your siblings. You need to use drag-and-drop to sort siblings in the order as you want them to appear in reports (normally oldest to youngest I suppose). &lt;br /&gt;
&lt;br /&gt;
In the family editor you can also add events. We call these family events as they are shared by the two parents. Typically this is Engagement, Marriage, .... In these the Role is 'Family'. It is not needed to add these events also individually to the two parents! &lt;br /&gt;
&lt;br /&gt;
When done, click {{man button|OK}} to save the family, and you will return to the relationship view with all the extra information visible. From within this view you can navigate to other people and keep enlarging your family tree.&lt;br /&gt;
&lt;br /&gt;
== A report ==&lt;br /&gt;
Now that you have a first small family tree, make a report. Go to the oldest grandparent you have in the relationship view or the person view (you can set bookmarks on people and set a home person!). With this person selected, go in the menu {{man menu|Reports-&amp;gt;Text Reports-&amp;gt;[[Gramps_{{man version}}_Wiki_Manual_-_Reports_-_part_6#Detailed_Descendant_Report|Detailed Descendant Report]]}}, to create a nice textual descendant report.&lt;br /&gt;
&lt;br /&gt;
== What next?==&lt;br /&gt;
Gramps has many features, as you improve, take the time to go over the [[Gramps_{{man version}}_Wiki_Manual|user manual]] and learn more. Join and use the mailing list to discuss issues.&lt;br /&gt;
&lt;br /&gt;
We advise everyone to read the manual to learn all about using Gramps. Genealogy takes time, so learning the tools is not wasted time.&lt;br /&gt;
&lt;br /&gt;
However, if you really want the bare minimum to start, then read this:&lt;br /&gt;
* [[Gramps {{man version}} Wiki Manual - Entering and editing data: brief]]&lt;br /&gt;
&lt;br /&gt;
==Screencasts==&lt;br /&gt;
&lt;br /&gt;
===Gramps 3.2.5===&lt;br /&gt;
Screencast for the older Gramps 3.2.5.&lt;br /&gt;
* Gramps 3.2.5: [[Media:Edit family from pedigree view Gramps 3.2.5.ogg|Edit family (parents, children, siblings) from Pedigree View]]&lt;br /&gt;
* Gramps 3.2.5: [[Media:Add_family_from_pedigree_view_Gramps_3.2.5.ogg|Add family (parents, children, siblings) from Pedigree View]]&lt;br /&gt;
&lt;br /&gt;
==See also==&lt;br /&gt;
Related articles.&lt;br /&gt;
* [[Add a child]]&lt;br /&gt;
* [[Add a spouse]]&lt;br /&gt;
* [[Add a godfather-godmother]]&lt;br /&gt;
* [[Add a witness]]&lt;br /&gt;
* [[Genealogy Glossary]]&lt;br /&gt;
* [[Gramps Glossary]]&lt;br /&gt;
&lt;br /&gt;
[[Category:How do I...]]&lt;br /&gt;
[[Category:Genealogy]]&lt;br /&gt;
[[Category:Gramps Logic]]&lt;/div&gt;</summary>
		<author><name>Sten</name></author>
		
	</entry>
	<entry>
		<id>https://ftp.gramps-project.org/wiki/index.php?title=RU:%D0%9D%D0%B0%D1%87%D0%B0%D0%BB%D0%BE_%D0%B2_%D0%93%D0%B5%D0%BD%D0%B5%D0%B0%D0%BB%D0%BE%D0%B3%D0%B8%D0%B8&amp;diff=78858</id>
		<title>RU:Начало в Генеалогии</title>
		<link rel="alternate" type="text/html" href="https://ftp.gramps-project.org/wiki/index.php?title=RU:%D0%9D%D0%B0%D1%87%D0%B0%D0%BB%D0%BE_%D0%B2_%D0%93%D0%B5%D0%BD%D0%B5%D0%B0%D0%BB%D0%BE%D0%B3%D0%B8%D0%B8&amp;diff=78858"/>
		<updated>2020-06-03T10:13:32Z</updated>

		<summary type="html">&lt;p&gt;Sten: /* Create a Family Tree */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{languages ​​| Начало в Генеалогии}}&lt;br /&gt;
'' 'Как мне начать в Генеалогии, используя Gramps? «»»&lt;br /&gt;
&lt;br /&gt;
== Подготовка ==&lt;br /&gt;
Если Вы только начинаете свою генеалогию, лучше начать с себя и добавлять других людей, соединяя их с Вами.&lt;br /&gt;
&lt;br /&gt;
'' {{man menu | Одной из самых важных вещей в генеалогии является то, что Вы записываете, как и где Вы нашли / получили информацию.}} '' Это называется источником. Это настолько важно потому, что позже Вам понадобится эта информации или Вы захотите обратиться к ней. Наличие источника у Вашей информации также создаст доверие к ней у других исследователей.&lt;br /&gt;
&lt;br /&gt;
Таким образом, если Вы начинаете с себя, Вы сами ''проводите собеседование'', что является основным источником информации по этому вопросу. Из этого первоисточника Вы получаете такие события, как день рождения, день крещения, выпускной и так далее. Источник событий позволяет Вам вычислить существовавшего человека как часть семьи.&lt;br /&gt;
&lt;br /&gt;
Таким образом, у нас есть наши основные термины для генеалогии: Источники, События, Люди и Семьи. Помимо этого, Gramps позволяет хранить Заметки, Места, Медиа (фотографии, фильмы, документы) и [[ Ru:Хранилища в Gramps | Хранилища]].&lt;br /&gt;
&lt;br /&gt;
Итак, давайте начнем с добавления информации в Gramps.&lt;br /&gt;
&lt;br /&gt;
== Создать Семейное древо ==&lt;br /&gt;
Здесь предполагается, что Вы только что установили Gramps и запускаете свое первое семейное дерево.&lt;br /&gt;
&lt;br /&gt;
В качестве первого шага запустите Gramps.&lt;br /&gt;
{{-}}&lt;br /&gt;
[[Файл: Manage-database-icon-icon-toolbar-no-familytree -loaded-51.png | 450px | thumb | right | Управлять значком баз данных на панели инструментов без загруженного семейного дерева]]&lt;br /&gt;
&lt;br /&gt;
Менеджер генеалогического дерева под названием «Семейные деревья - Gramps» будет отображаться, если на панели инструментов нет, щелкните значок генеалогического дерева, чтобы открыть диспетчер семейного дерева.&lt;br /&gt;
&lt;br /&gt;
[[Gramps _ {{man version}} _ Wiki_Manual _-_ Getting_started # Choosing_a_Family_Tree]]&lt;br /&gt;
{{-}}&lt;br /&gt;
[[File: ManageFamilyTrees-51.png | right | thumb | 450px | Окно менеджера «Семейных деревьев»]]&lt;br /&gt;
&lt;br /&gt;
Во всплывающем окне генеалогического дерева (менеджера) нажмите кнопку {{man button | New}} (справа). Теперь под названием «Семейное древо» (слева) введите имя для своего дерева и нажмите кнопку {{man button | Загрузить семейное древо}} (внизу справа). Gramps теперь откроется вместе с вашим недавно созданным деревом.&lt;br /&gt;
&lt;br /&gt;
[[Gramps _ {{man version}} _ Wiki_Manual _-_ Manage_Family_Trees # Starting_a_new_Family_Tree]]&lt;br /&gt;
{{-}}&lt;br /&gt;
[[Файл: MainWindow-PeopleCategory-PeopleTreeView-annotated-50.png | 450px | thumb | right | Аннотированные части окна Main Gramps]]&lt;br /&gt;
&lt;br /&gt;
Главная страница Gramps разделена на отдельные панели, панель инструментов в верхней части, левая боковая панель (навигатор), позволяющая перемещаться по различным представлениям ваших данных, область просмотра, в которой отображаются данные (в центре), и правая боковая панель (боковая панель) и нижняя панель (Bottombar), которая может быть использована для Gramplets, (Gramplets покрыты позже). Большинство из этих панелей можно включить или выключить, перейдя к слову View в верхней части окна и отметив (вкл) или сняв флажок (выключить) вид.&lt;br /&gt;
[[Gramps_{{man version}}_Wiki_Manual_-_Main_Window#Main_Window]]&lt;br /&gt;
{{-}}&lt;br /&gt;
&lt;br /&gt;
==Create a Source==&lt;br /&gt;
[[File:NewSource-editor-dialog-example-50.png|thumb|right|450px|New Source - editor dialog - example]]&lt;br /&gt;
&lt;br /&gt;
As you start with yourself, and the source is the interview with yourself, in the left sidebar called '''Navigator''' click on the [[Gramps_{{man version}}_Wiki_Manual_-_Categories#Sources_Category|source icon]] {{icon|sour34}}. In the toolbar click on {{man label|Add}} (or {{man key press|CTRL|INSERT}} on the keyboard) to open the [[Gramps_{{man version}}_Wiki_Manual_-_Entering_and_editing_data:_detailed_-_part_2#New_Source_dialog|source editor]].&lt;br /&gt;
&lt;br /&gt;
Assuming your name is ''John Doe'', you now make a source for the interview with yourself! So enter:&lt;br /&gt;
* Title: Interview with John Doe&lt;br /&gt;
* Author: John Doe&lt;br /&gt;
And click on {{man button|OK}}.&lt;br /&gt;
{{-}}&lt;br /&gt;
[[File:SourcesCategory-SourcesListView-example-50.png|right|450px|thumb|Sources Category - (List) View]]&lt;br /&gt;
&lt;br /&gt;
That is it, your first source. In the [[Gramps_{{man version}}_Wiki_Manual_-_Categories#Sources_Category|Source(list)view]] you will see your new source listed and that the entry has ID number that is unique to your source.&lt;br /&gt;
&lt;br /&gt;
[[Gramps_{{man version}}_Wiki_Manual_-_Entering_and_editing_data:_detailed_-_part_2#Editing_information_about_sources]]&lt;br /&gt;
&lt;br /&gt;
&amp;lt;!--&lt;br /&gt;
Before continuing, let's show how to change the interface. In the toolbar of Gramps, the last icon is the {{man button|Configure the active view}}, so click it to see how you can adapt the view. Activate the 'Last Changed' Column and by dragging, change eg 'Author' to be the second column. Most views have this configuration option, so change these to your liking!&lt;br /&gt;
--&amp;gt;&lt;br /&gt;
{{-}}&lt;br /&gt;
&lt;br /&gt;
==Add data to the source==&lt;br /&gt;
{{stub}}&lt;br /&gt;
(Ver. 3.3.1-1)&lt;br /&gt;
&lt;br /&gt;
Before you begin, you should know that Gramps does '''not''' store your media(pictures, videos, sounds, and documents etc..), it only stores a link to where the media is on your hard disk. So decide where you will store your pictures, videos, sounds, and documents. Then on the menu bar select {{man menu|Edit-&amp;gt;Preferences}} and the '''General''' tab. Set the value of {{man label|Base path for relative media paths}} to this directory. Click on the {{man label|Close}} button to save your changes. Keep your media documents well structured in this directory.&lt;br /&gt;
&lt;br /&gt;
Now let's continue with adding some more data to the source. Double click on it (or press {{Man key press|ENTER}}) to open the source 'Interview with John Doe'. Look at the tab pages at the bottom of the source editor: Notes, Gallery, Data, Repositories, References. Surely you have a picture of yourself! Let's add it to the Gallery of this source.&lt;br /&gt;
&lt;br /&gt;
Click on the {{man label|Gallery}} tab, and then on the little '''Add''' icon just below the Notes tab. This opens a dialog to select the image of yourself. At the bottom of this dialog is a box '''Title:''' to set a nice title such as 'Picture of John Doe'. Entering a title does not change the file name. Make sure you select 'Convert to a relative path'. Press {{man button|OK}}. You will now see the ''Media Reference Editor''. The top of this dialog allows to select a region of the picture, eg when you have selected a group photo, it makes sense to indicate who on the photo is John Doe. You can use the mouse in the preview picture to select the part of the picture of interest (click down is corner 1 and click release is corner 2). Click {{man button|OK}} to save the image and go back to the source editor you were working on. &lt;br /&gt;
&lt;br /&gt;
Suppose you have a typed-out text of the interview. In that case you can add the textual document (odt, doc, rtf, etc ...) in the {{man label|Gallery}}, but you can also store the text as a {{man label|Note}} in Gramps. The good thing about using a note is that Gramps can search the text of notes with filters. So, click on the {{man label|Notes}} tab, click the '''Add''' icon, and you are presented with a basic editor that you can type or paste text into.&lt;br /&gt;
&lt;br /&gt;
When finished, press {{man button|OK}} on the source editor, and your source 'Interview with John Doe' now has also a note and picture.&lt;br /&gt;
&lt;br /&gt;
To see these, you would have to open the editor again. However, Gramps has a bottom pane that can show you information on the selected entry in the source view. For that, activate in the menu '''View''' the '''Bottombar'''. You will see a number of tabs which allow to show information. The elements showing information are called '''Gramplets''' in Gramps. Gramplets are small plugins that can perform all kinds of tasks. You can add one to the bottombar by using right-click with the mouse on the bottombar next to the tabs.&lt;br /&gt;
&lt;br /&gt;
== Time for your first Person ==&lt;br /&gt;
(Ver. 3.3.1-1)&lt;br /&gt;
&lt;br /&gt;
So much done, and not yet one single person is present in your family tree! Time to change that. Let's add yourself. As all information you will add comes from the source 'Interview with John Doe', we first store this in an easy to reach place. In the toolbar click on the {{man button|Clipboard}} icon to open the clipboard. Drag and drop, from the source view, the source 'Interview with John Doe', into the Clipboard. Your source is now stored in the Clipboard and this window can be closed.&lt;br /&gt;
&lt;br /&gt;
In the Navigator, click on the Person icon to see the person view. Note that on the Toolbar there is a pressed-in button (3rd button from the right) indicating the type of person view you have activated. Try the other possibility once to see what changes. Many Categories in the Navigator have more than one view!&lt;br /&gt;
&lt;br /&gt;
Click now on the {{man button|Add}} button on the Toolbar to add your first person. You now see the person editor, and the top part of this should be what you expect: all information about the name of this person. So, type in your given name, and your surname. If you are eg. Spanish and have a very long surname, then click on the {{man button|Add}} icon after the surname to enter multiple surnames. See the manual for more details. Now select your Gender.&lt;br /&gt;
&lt;br /&gt;
As you enter data, you need to add where you obtained this data (Source). For this, click on the {{man label|Sources}} tab, then open the Clipboard from the Toolbar, drag the source you stored in the clipboard, into the area under ID |Title | Auth | Page of the Person Editor. This will open up the 'Source Reference Editor'. The bottom part of this editor is the same source as already entered, but the top part is new, and contains the data on how the information of the person was found in this source and how certain you are of it. For this interview you can set {{man label|Confidence}} to ''Very High''.&lt;br /&gt;
&lt;br /&gt;
You already have a picture of yourself, as you added it to the source. You can now add this same picture to this Person record you are creating. For this, click on the {{man label|Gallery}} tab of the person editor, and click on the {{man button|Share}} button. This will open a list of all media objects. Select the one you made earlier and click {{man button|OK}} to store everything. You could also have used the clipboard: or by adding the picture there from the media view, or by adding the media ''reference'' in the clipboard by dragging it from the gallery of an object to the clipboard, and then using it from there where you need it. &lt;br /&gt;
&lt;br /&gt;
Save everything by clicking {{man button|OK}} until you see the main Gramps view again.&lt;br /&gt;
&lt;br /&gt;
== Events ==&lt;br /&gt;
(Ver. 3.3.1-1)&lt;br /&gt;
&lt;br /&gt;
Next, you will want to add your birthday. For this, open the person editor of yourself, by double clicking on your name. Note that the {{man label|Events}} tab is open. Click on the {{man button|Add}} icon to add an event. Gramps preselects the birth event for the first event that you want to add. Enter your birth date as: (12/31/1900 - Month/Day/Year) or (1 Jan 1900 - Day Month Year). If you use Day Month Year, the Month must be entered with the first 3 letters only or it must be spelled out completely.&lt;br /&gt;
&lt;br /&gt;
You can also click on the {{man button|Calendar}} button on the right. This window allows you to select the Day Month and Year with a drop-down menu. When using this make sure that the Quality is set to Regular and Type is also set to Regular. After entering your birth date in the calendar window, click on {{man button|OK}} to save it.&lt;br /&gt;
&lt;br /&gt;
Next, because you have no Places in your database you need to create one. Knowing the place where you were born, click on the {{man button|Add}} icon after the Place entry to create this place. Enter places as City/Town, Township, County, State, Country or any combination of these. Such as Germantown, German Township (Twp), Montgomery County (Co.), Ohio, USA. Being consistent when adding places will be helpful later when you can select these from the {{man button|Select an existing place}} icon.  Adding latitude and longitude will allow these places to be positioned on a map later.&lt;br /&gt;
&lt;br /&gt;
Don't forget to Source this. Click the {{man button|Source}} tab, open the '''Clipboard''', drag and drop your source, select the Confidence level, and save both the Source and then the new place with the {{man button|OK}} buttons.&lt;br /&gt;
&lt;br /&gt;
Note that the editor that has been open is the Event ''Reference'' Editor. This means that there is a global part that you can share with other people (the bottom of the editor), and a top part which is unique to the person. This top part is used to enter the {{man label|Role}} of the person in the event. In your own birth, you have the primary role. If you know the name of people helping in the birth, and you want to store these people also, you can share this event with them, with a Role of ''Aide''. You can type a custom role in the {{man label|Role}} field if you are not happy with the predefined possibilities.&lt;br /&gt;
&lt;br /&gt;
Again, add a source to the event via the {{man label|Sources}} tab, like you did before. As you have no real recollection of your own birth, the interview should not have confidence 'Very High'! You would need to add a birth document as source for that.&lt;br /&gt;
&lt;br /&gt;
When done, click {{man button|OK}} to save the event, and then again to save the person, and you have your first full person record.&lt;br /&gt;
&lt;br /&gt;
== Family ==&lt;br /&gt;
You now have entered yourself, time to add your parents. You could add your father and mother as you added yourself, and then connect them in a family, but most people will do things in one go via the {{icon|rela}}'''Relationship View''' or the {{icon|ance}}'''Pedigree View'''. Let's go to the Relationship view: select yourself in the person view, and then in the navigator, select the relationship view. This view has a toolbar that allows to add parents or to add a spouse. Click on the {{man button|Add parents}} icon to open the family editor.&lt;br /&gt;
&lt;br /&gt;
In the family editor you will see that you are present in the {{man label|Children}} tab. Use the {{man button|Add}} icon next to father and mother to add them as you have added yourself. Use the {{man button|Add}} icon in the {{man label|Children}} tab to add your siblings. You need to use drag-and-drop to sort siblings in the order as you want them to appear in reports (normally oldest to youngest I suppose). &lt;br /&gt;
&lt;br /&gt;
In the family editor you can also add events. We call these family events as they are shared by the two parents. Typically this is Engagement, Marriage, .... In these the Role is 'Family'. It is not needed to add these events also individually to the two parents! &lt;br /&gt;
&lt;br /&gt;
When done, click {{man button|OK}} to save the family, and you will return to the relationship view with all the extra information visible. From within this view you can navigate to other people and keep enlarging your family tree.&lt;br /&gt;
&lt;br /&gt;
== A report ==&lt;br /&gt;
Now that you have a first small family tree, make a report. Go to the oldest grandparent you have in the relationship view or the person view (you can set bookmarks on people and set a home person!). With this person selected, go in the menu {{man menu|Reports-&amp;gt;Text Reports-&amp;gt;[[Gramps_{{man version}}_Wiki_Manual_-_Reports_-_part_6#Detailed_Descendant_Report|Detailed Descendant Report]]}}, to create a nice textual descendant report.&lt;br /&gt;
&lt;br /&gt;
== What next?==&lt;br /&gt;
Gramps has many features, as you improve, take the time to go over the [[Gramps_{{man version}}_Wiki_Manual|user manual]] and learn more. Join and use the mailing list to discuss issues.&lt;br /&gt;
&lt;br /&gt;
We advise everyone to read the manual to learn all about using Gramps. Genealogy takes time, so learning the tools is not wasted time.&lt;br /&gt;
&lt;br /&gt;
However, if you really want the bare minimum to start, then read this:&lt;br /&gt;
* [[Gramps {{man version}} Wiki Manual - Entering and editing data: brief]]&lt;br /&gt;
&lt;br /&gt;
==Screencasts==&lt;br /&gt;
&lt;br /&gt;
===Gramps 3.2.5===&lt;br /&gt;
Screencast for the older Gramps 3.2.5.&lt;br /&gt;
* Gramps 3.2.5: [[Media:Edit family from pedigree view Gramps 3.2.5.ogg|Edit family (parents, children, siblings) from Pedigree View]]&lt;br /&gt;
* Gramps 3.2.5: [[Media:Add_family_from_pedigree_view_Gramps_3.2.5.ogg|Add family (parents, children, siblings) from Pedigree View]]&lt;br /&gt;
&lt;br /&gt;
==See also==&lt;br /&gt;
Related articles.&lt;br /&gt;
* [[Add a child]]&lt;br /&gt;
* [[Add a spouse]]&lt;br /&gt;
* [[Add a godfather-godmother]]&lt;br /&gt;
* [[Add a witness]]&lt;br /&gt;
* [[Genealogy Glossary]]&lt;br /&gt;
* [[Gramps Glossary]]&lt;br /&gt;
&lt;br /&gt;
[[Category:How do I...]]&lt;br /&gt;
[[Category:Genealogy]]&lt;br /&gt;
[[Category:Gramps Logic]]&lt;/div&gt;</summary>
		<author><name>Sten</name></author>
		
	</entry>
	<entry>
		<id>https://ftp.gramps-project.org/wiki/index.php?title=RU:%D0%9D%D0%B0%D1%87%D0%B0%D0%BB%D0%BE_%D0%B2_%D0%93%D0%B5%D0%BD%D0%B5%D0%B0%D0%BB%D0%BE%D0%B3%D0%B8%D0%B8&amp;diff=78857</id>
		<title>RU:Начало в Генеалогии</title>
		<link rel="alternate" type="text/html" href="https://ftp.gramps-project.org/wiki/index.php?title=RU:%D0%9D%D0%B0%D1%87%D0%B0%D0%BB%D0%BE_%D0%B2_%D0%93%D0%B5%D0%BD%D0%B5%D0%B0%D0%BB%D0%BE%D0%B3%D0%B8%D0%B8&amp;diff=78857"/>
		<updated>2020-06-03T09:37:06Z</updated>

		<summary type="html">&lt;p&gt;Sten: /* Подготовка */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{languages ​​| Начало в Генеалогии}}&lt;br /&gt;
'' 'Как мне начать в Генеалогии, используя Gramps? «»»&lt;br /&gt;
&lt;br /&gt;
== Подготовка ==&lt;br /&gt;
Если Вы только начинаете свою генеалогию, лучше начать с себя и добавлять других людей, соединяя их с Вами.&lt;br /&gt;
&lt;br /&gt;
'' {{man menu | Одной из самых важных вещей в генеалогии является то, что Вы записываете, как и где Вы нашли / получили информацию.}} '' Это называется источником. Это настолько важно потому, что позже Вам понадобится эта информации или Вы захотите обратиться к ней. Наличие источника у Вашей информации также создаст доверие к ней у других исследователей.&lt;br /&gt;
&lt;br /&gt;
Таким образом, если Вы начинаете с себя, Вы сами ''проводите собеседование'', что является основным источником информации по этому вопросу. Из этого первоисточника Вы получаете такие события, как день рождения, день крещения, выпускной и так далее. Источник событий позволяет Вам вычислить существовавшего человека как часть семьи.&lt;br /&gt;
&lt;br /&gt;
Таким образом, у нас есть наши основные термины для генеалогии: Источники, События, Люди и Семьи. Помимо этого, Gramps позволяет хранить Заметки, Места, Медиа (фотографии, фильмы, документы) и [[ Ru:Хранилища в Gramps | Хранилища]].&lt;br /&gt;
&lt;br /&gt;
Итак, давайте начнем с добавления информации в Gramps.&lt;br /&gt;
&lt;br /&gt;
==Create a Family Tree==&lt;br /&gt;
It is assumed here, that you have just installed Gramps and are starting your first family tree.&lt;br /&gt;
&lt;br /&gt;
As a first step, start Gramps.&lt;br /&gt;
{{-}}&lt;br /&gt;
[[File:Manage-databases-icon-toolbar-no-familytree-loaded-51.png|450px|thumb|right|Manage databases icon on toolbar with No Family Tree - loaded]]&lt;br /&gt;
&lt;br /&gt;
The family tree manager called Family Trees - Gramps will be shown if not in the toolbar click on the family tree icon to open the family tree manager. &lt;br /&gt;
&lt;br /&gt;
[[Gramps_{{man version}}_Wiki_Manual_-_Getting_started#Choosing_a_Family_Tree]]&lt;br /&gt;
{{-}}&lt;br /&gt;
[[File:ManageFamilyTrees-51.png|right|thumb|450px|&amp;quot;Family Trees&amp;quot; manager window]]&lt;br /&gt;
&lt;br /&gt;
In the pop up  family tree (manager) window click on the {{man button|New}} button (on the right). Now under the title Family tree name (to the left) enter a name for your tree and then click on the {{man button|Load Family Tree}} button (bottom right). Gramps will now open with your newly created tree.&lt;br /&gt;
&lt;br /&gt;
[[Gramps_{{man version}}_Wiki_Manual_-_Manage_Family_Trees#Starting_a_new_Family_Tree]]&lt;br /&gt;
{{-}}&lt;br /&gt;
[[File:MainWindow-PeopleCategory-PeopleTreeView-annotated-50.png|450px|thumb|right|Annotated Main Gramps window parts]]&lt;br /&gt;
&lt;br /&gt;
Gramps Main page is divided into separate panes, a Toolbar at the top, a left side bar (Navigator) allowing you to navigate different views of your data, a view area showing the data (center), and the right side pane (Sidebar) and a bottom bar (Bottombar) that can be used for Gramplets, (Gramplets covered later). Most of these panes can be turned on or off by going to the word View at the top of the window and check (on) or uncheck (off) the view.&lt;br /&gt;
&lt;br /&gt;
[[Gramps_{{man version}}_Wiki_Manual_-_Main_Window#Main_Window]]&lt;br /&gt;
{{-}}&lt;br /&gt;
&lt;br /&gt;
==Create a Source==&lt;br /&gt;
[[File:NewSource-editor-dialog-example-50.png|thumb|right|450px|New Source - editor dialog - example]]&lt;br /&gt;
&lt;br /&gt;
As you start with yourself, and the source is the interview with yourself, in the left sidebar called '''Navigator''' click on the [[Gramps_{{man version}}_Wiki_Manual_-_Categories#Sources_Category|source icon]] {{icon|sour34}}. In the toolbar click on {{man label|Add}} (or {{man key press|CTRL|INSERT}} on the keyboard) to open the [[Gramps_{{man version}}_Wiki_Manual_-_Entering_and_editing_data:_detailed_-_part_2#New_Source_dialog|source editor]].&lt;br /&gt;
&lt;br /&gt;
Assuming your name is ''John Doe'', you now make a source for the interview with yourself! So enter:&lt;br /&gt;
* Title: Interview with John Doe&lt;br /&gt;
* Author: John Doe&lt;br /&gt;
And click on {{man button|OK}}.&lt;br /&gt;
{{-}}&lt;br /&gt;
[[File:SourcesCategory-SourcesListView-example-50.png|right|450px|thumb|Sources Category - (List) View]]&lt;br /&gt;
&lt;br /&gt;
That is it, your first source. In the [[Gramps_{{man version}}_Wiki_Manual_-_Categories#Sources_Category|Source(list)view]] you will see your new source listed and that the entry has ID number that is unique to your source.&lt;br /&gt;
&lt;br /&gt;
[[Gramps_{{man version}}_Wiki_Manual_-_Entering_and_editing_data:_detailed_-_part_2#Editing_information_about_sources]]&lt;br /&gt;
&lt;br /&gt;
&amp;lt;!--&lt;br /&gt;
Before continuing, let's show how to change the interface. In the toolbar of Gramps, the last icon is the {{man button|Configure the active view}}, so click it to see how you can adapt the view. Activate the 'Last Changed' Column and by dragging, change eg 'Author' to be the second column. Most views have this configuration option, so change these to your liking!&lt;br /&gt;
--&amp;gt;&lt;br /&gt;
{{-}}&lt;br /&gt;
&lt;br /&gt;
==Add data to the source==&lt;br /&gt;
{{stub}}&lt;br /&gt;
(Ver. 3.3.1-1)&lt;br /&gt;
&lt;br /&gt;
Before you begin, you should know that Gramps does '''not''' store your media(pictures, videos, sounds, and documents etc..), it only stores a link to where the media is on your hard disk. So decide where you will store your pictures, videos, sounds, and documents. Then on the menu bar select {{man menu|Edit-&amp;gt;Preferences}} and the '''General''' tab. Set the value of {{man label|Base path for relative media paths}} to this directory. Click on the {{man label|Close}} button to save your changes. Keep your media documents well structured in this directory.&lt;br /&gt;
&lt;br /&gt;
Now let's continue with adding some more data to the source. Double click on it (or press {{Man key press|ENTER}}) to open the source 'Interview with John Doe'. Look at the tab pages at the bottom of the source editor: Notes, Gallery, Data, Repositories, References. Surely you have a picture of yourself! Let's add it to the Gallery of this source.&lt;br /&gt;
&lt;br /&gt;
Click on the {{man label|Gallery}} tab, and then on the little '''Add''' icon just below the Notes tab. This opens a dialog to select the image of yourself. At the bottom of this dialog is a box '''Title:''' to set a nice title such as 'Picture of John Doe'. Entering a title does not change the file name. Make sure you select 'Convert to a relative path'. Press {{man button|OK}}. You will now see the ''Media Reference Editor''. The top of this dialog allows to select a region of the picture, eg when you have selected a group photo, it makes sense to indicate who on the photo is John Doe. You can use the mouse in the preview picture to select the part of the picture of interest (click down is corner 1 and click release is corner 2). Click {{man button|OK}} to save the image and go back to the source editor you were working on. &lt;br /&gt;
&lt;br /&gt;
Suppose you have a typed-out text of the interview. In that case you can add the textual document (odt, doc, rtf, etc ...) in the {{man label|Gallery}}, but you can also store the text as a {{man label|Note}} in Gramps. The good thing about using a note is that Gramps can search the text of notes with filters. So, click on the {{man label|Notes}} tab, click the '''Add''' icon, and you are presented with a basic editor that you can type or paste text into.&lt;br /&gt;
&lt;br /&gt;
When finished, press {{man button|OK}} on the source editor, and your source 'Interview with John Doe' now has also a note and picture.&lt;br /&gt;
&lt;br /&gt;
To see these, you would have to open the editor again. However, Gramps has a bottom pane that can show you information on the selected entry in the source view. For that, activate in the menu '''View''' the '''Bottombar'''. You will see a number of tabs which allow to show information. The elements showing information are called '''Gramplets''' in Gramps. Gramplets are small plugins that can perform all kinds of tasks. You can add one to the bottombar by using right-click with the mouse on the bottombar next to the tabs.&lt;br /&gt;
&lt;br /&gt;
== Time for your first Person ==&lt;br /&gt;
(Ver. 3.3.1-1)&lt;br /&gt;
&lt;br /&gt;
So much done, and not yet one single person is present in your family tree! Time to change that. Let's add yourself. As all information you will add comes from the source 'Interview with John Doe', we first store this in an easy to reach place. In the toolbar click on the {{man button|Clipboard}} icon to open the clipboard. Drag and drop, from the source view, the source 'Interview with John Doe', into the Clipboard. Your source is now stored in the Clipboard and this window can be closed.&lt;br /&gt;
&lt;br /&gt;
In the Navigator, click on the Person icon to see the person view. Note that on the Toolbar there is a pressed-in button (3rd button from the right) indicating the type of person view you have activated. Try the other possibility once to see what changes. Many Categories in the Navigator have more than one view!&lt;br /&gt;
&lt;br /&gt;
Click now on the {{man button|Add}} button on the Toolbar to add your first person. You now see the person editor, and the top part of this should be what you expect: all information about the name of this person. So, type in your given name, and your surname. If you are eg. Spanish and have a very long surname, then click on the {{man button|Add}} icon after the surname to enter multiple surnames. See the manual for more details. Now select your Gender.&lt;br /&gt;
&lt;br /&gt;
As you enter data, you need to add where you obtained this data (Source). For this, click on the {{man label|Sources}} tab, then open the Clipboard from the Toolbar, drag the source you stored in the clipboard, into the area under ID |Title | Auth | Page of the Person Editor. This will open up the 'Source Reference Editor'. The bottom part of this editor is the same source as already entered, but the top part is new, and contains the data on how the information of the person was found in this source and how certain you are of it. For this interview you can set {{man label|Confidence}} to ''Very High''.&lt;br /&gt;
&lt;br /&gt;
You already have a picture of yourself, as you added it to the source. You can now add this same picture to this Person record you are creating. For this, click on the {{man label|Gallery}} tab of the person editor, and click on the {{man button|Share}} button. This will open a list of all media objects. Select the one you made earlier and click {{man button|OK}} to store everything. You could also have used the clipboard: or by adding the picture there from the media view, or by adding the media ''reference'' in the clipboard by dragging it from the gallery of an object to the clipboard, and then using it from there where you need it. &lt;br /&gt;
&lt;br /&gt;
Save everything by clicking {{man button|OK}} until you see the main Gramps view again.&lt;br /&gt;
&lt;br /&gt;
== Events ==&lt;br /&gt;
(Ver. 3.3.1-1)&lt;br /&gt;
&lt;br /&gt;
Next, you will want to add your birthday. For this, open the person editor of yourself, by double clicking on your name. Note that the {{man label|Events}} tab is open. Click on the {{man button|Add}} icon to add an event. Gramps preselects the birth event for the first event that you want to add. Enter your birth date as: (12/31/1900 - Month/Day/Year) or (1 Jan 1900 - Day Month Year). If you use Day Month Year, the Month must be entered with the first 3 letters only or it must be spelled out completely.&lt;br /&gt;
&lt;br /&gt;
You can also click on the {{man button|Calendar}} button on the right. This window allows you to select the Day Month and Year with a drop-down menu. When using this make sure that the Quality is set to Regular and Type is also set to Regular. After entering your birth date in the calendar window, click on {{man button|OK}} to save it.&lt;br /&gt;
&lt;br /&gt;
Next, because you have no Places in your database you need to create one. Knowing the place where you were born, click on the {{man button|Add}} icon after the Place entry to create this place. Enter places as City/Town, Township, County, State, Country or any combination of these. Such as Germantown, German Township (Twp), Montgomery County (Co.), Ohio, USA. Being consistent when adding places will be helpful later when you can select these from the {{man button|Select an existing place}} icon.  Adding latitude and longitude will allow these places to be positioned on a map later.&lt;br /&gt;
&lt;br /&gt;
Don't forget to Source this. Click the {{man button|Source}} tab, open the '''Clipboard''', drag and drop your source, select the Confidence level, and save both the Source and then the new place with the {{man button|OK}} buttons.&lt;br /&gt;
&lt;br /&gt;
Note that the editor that has been open is the Event ''Reference'' Editor. This means that there is a global part that you can share with other people (the bottom of the editor), and a top part which is unique to the person. This top part is used to enter the {{man label|Role}} of the person in the event. In your own birth, you have the primary role. If you know the name of people helping in the birth, and you want to store these people also, you can share this event with them, with a Role of ''Aide''. You can type a custom role in the {{man label|Role}} field if you are not happy with the predefined possibilities.&lt;br /&gt;
&lt;br /&gt;
Again, add a source to the event via the {{man label|Sources}} tab, like you did before. As you have no real recollection of your own birth, the interview should not have confidence 'Very High'! You would need to add a birth document as source for that.&lt;br /&gt;
&lt;br /&gt;
When done, click {{man button|OK}} to save the event, and then again to save the person, and you have your first full person record.&lt;br /&gt;
&lt;br /&gt;
== Family ==&lt;br /&gt;
You now have entered yourself, time to add your parents. You could add your father and mother as you added yourself, and then connect them in a family, but most people will do things in one go via the {{icon|rela}}'''Relationship View''' or the {{icon|ance}}'''Pedigree View'''. Let's go to the Relationship view: select yourself in the person view, and then in the navigator, select the relationship view. This view has a toolbar that allows to add parents or to add a spouse. Click on the {{man button|Add parents}} icon to open the family editor.&lt;br /&gt;
&lt;br /&gt;
In the family editor you will see that you are present in the {{man label|Children}} tab. Use the {{man button|Add}} icon next to father and mother to add them as you have added yourself. Use the {{man button|Add}} icon in the {{man label|Children}} tab to add your siblings. You need to use drag-and-drop to sort siblings in the order as you want them to appear in reports (normally oldest to youngest I suppose). &lt;br /&gt;
&lt;br /&gt;
In the family editor you can also add events. We call these family events as they are shared by the two parents. Typically this is Engagement, Marriage, .... In these the Role is 'Family'. It is not needed to add these events also individually to the two parents! &lt;br /&gt;
&lt;br /&gt;
When done, click {{man button|OK}} to save the family, and you will return to the relationship view with all the extra information visible. From within this view you can navigate to other people and keep enlarging your family tree.&lt;br /&gt;
&lt;br /&gt;
== A report ==&lt;br /&gt;
Now that you have a first small family tree, make a report. Go to the oldest grandparent you have in the relationship view or the person view (you can set bookmarks on people and set a home person!). With this person selected, go in the menu {{man menu|Reports-&amp;gt;Text Reports-&amp;gt;[[Gramps_{{man version}}_Wiki_Manual_-_Reports_-_part_6#Detailed_Descendant_Report|Detailed Descendant Report]]}}, to create a nice textual descendant report.&lt;br /&gt;
&lt;br /&gt;
== What next?==&lt;br /&gt;
Gramps has many features, as you improve, take the time to go over the [[Gramps_{{man version}}_Wiki_Manual|user manual]] and learn more. Join and use the mailing list to discuss issues.&lt;br /&gt;
&lt;br /&gt;
We advise everyone to read the manual to learn all about using Gramps. Genealogy takes time, so learning the tools is not wasted time.&lt;br /&gt;
&lt;br /&gt;
However, if you really want the bare minimum to start, then read this:&lt;br /&gt;
* [[Gramps {{man version}} Wiki Manual - Entering and editing data: brief]]&lt;br /&gt;
&lt;br /&gt;
==Screencasts==&lt;br /&gt;
&lt;br /&gt;
===Gramps 3.2.5===&lt;br /&gt;
Screencast for the older Gramps 3.2.5.&lt;br /&gt;
* Gramps 3.2.5: [[Media:Edit family from pedigree view Gramps 3.2.5.ogg|Edit family (parents, children, siblings) from Pedigree View]]&lt;br /&gt;
* Gramps 3.2.5: [[Media:Add_family_from_pedigree_view_Gramps_3.2.5.ogg|Add family (parents, children, siblings) from Pedigree View]]&lt;br /&gt;
&lt;br /&gt;
==See also==&lt;br /&gt;
Related articles.&lt;br /&gt;
* [[Add a child]]&lt;br /&gt;
* [[Add a spouse]]&lt;br /&gt;
* [[Add a godfather-godmother]]&lt;br /&gt;
* [[Add a witness]]&lt;br /&gt;
* [[Genealogy Glossary]]&lt;br /&gt;
* [[Gramps Glossary]]&lt;br /&gt;
&lt;br /&gt;
[[Category:How do I...]]&lt;br /&gt;
[[Category:Genealogy]]&lt;br /&gt;
[[Category:Gramps Logic]]&lt;/div&gt;</summary>
		<author><name>Sten</name></author>
		
	</entry>
	<entry>
		<id>https://ftp.gramps-project.org/wiki/index.php?title=RU:%D0%9D%D0%B0%D1%87%D0%B0%D0%BB%D0%BE_%D0%B2_%D0%93%D0%B5%D0%BD%D0%B5%D0%B0%D0%BB%D0%BE%D0%B3%D0%B8%D0%B8&amp;diff=78856</id>
		<title>RU:Начало в Генеалогии</title>
		<link rel="alternate" type="text/html" href="https://ftp.gramps-project.org/wiki/index.php?title=RU:%D0%9D%D0%B0%D1%87%D0%B0%D0%BB%D0%BE_%D0%B2_%D0%93%D0%B5%D0%BD%D0%B5%D0%B0%D0%BB%D0%BE%D0%B3%D0%B8%D0%B8&amp;diff=78856"/>
		<updated>2020-06-03T09:35:50Z</updated>

		<summary type="html">&lt;p&gt;Sten: /* Подготовка */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{languages ​​| Начало в Генеалогии}}&lt;br /&gt;
'' 'Как мне начать в Генеалогии, используя Gramps? «»»&lt;br /&gt;
&lt;br /&gt;
== Подготовка ==&lt;br /&gt;
Если Вы только начинаете свою генеалогию, лучше начать с себя и добавлять других людей, соединяя их с Вами.&lt;br /&gt;
&lt;br /&gt;
'' {{man menu | Одной из самых важных вещей в генеалогии является то, что Вы записываете, как и где Вы нашли / получили информацию.}} '' Это называется источником. Это настолько важно потому, что позже Вам понадобится эта информации или Вы захотите обратиться к ней. Наличие источника у Вашей информации также создаст доверие к ней у других исследователей.&lt;br /&gt;
&lt;br /&gt;
Таким образом, если Вы начинаете с себя, Вы сами ''проводите собеседование'', что является основным источником информации по этому вопросу. Из этого первоисточника Вы получаете такие события, как день рождения, день крещения, выпускной и так далее. Источник событий позволяет Вам вычислить существовавшего человека как часть семьи.&lt;br /&gt;
&lt;br /&gt;
Таким образом, у нас есть наши основные термины для генеалогии: Источники, События, Люди и Семьи. Помимо этого, Gramps позволяет хранить Заметки, Места, Медиа (фотографии, фильмы, документы) и [[ Хранилища в Gramps/ru | Хранилища]].&lt;br /&gt;
&lt;br /&gt;
Итак, давайте начнем с добавления информации в Gramps.&lt;br /&gt;
&lt;br /&gt;
==Create a Family Tree==&lt;br /&gt;
It is assumed here, that you have just installed Gramps and are starting your first family tree.&lt;br /&gt;
&lt;br /&gt;
As a first step, start Gramps.&lt;br /&gt;
{{-}}&lt;br /&gt;
[[File:Manage-databases-icon-toolbar-no-familytree-loaded-51.png|450px|thumb|right|Manage databases icon on toolbar with No Family Tree - loaded]]&lt;br /&gt;
&lt;br /&gt;
The family tree manager called Family Trees - Gramps will be shown if not in the toolbar click on the family tree icon to open the family tree manager. &lt;br /&gt;
&lt;br /&gt;
[[Gramps_{{man version}}_Wiki_Manual_-_Getting_started#Choosing_a_Family_Tree]]&lt;br /&gt;
{{-}}&lt;br /&gt;
[[File:ManageFamilyTrees-51.png|right|thumb|450px|&amp;quot;Family Trees&amp;quot; manager window]]&lt;br /&gt;
&lt;br /&gt;
In the pop up  family tree (manager) window click on the {{man button|New}} button (on the right). Now under the title Family tree name (to the left) enter a name for your tree and then click on the {{man button|Load Family Tree}} button (bottom right). Gramps will now open with your newly created tree.&lt;br /&gt;
&lt;br /&gt;
[[Gramps_{{man version}}_Wiki_Manual_-_Manage_Family_Trees#Starting_a_new_Family_Tree]]&lt;br /&gt;
{{-}}&lt;br /&gt;
[[File:MainWindow-PeopleCategory-PeopleTreeView-annotated-50.png|450px|thumb|right|Annotated Main Gramps window parts]]&lt;br /&gt;
&lt;br /&gt;
Gramps Main page is divided into separate panes, a Toolbar at the top, a left side bar (Navigator) allowing you to navigate different views of your data, a view area showing the data (center), and the right side pane (Sidebar) and a bottom bar (Bottombar) that can be used for Gramplets, (Gramplets covered later). Most of these panes can be turned on or off by going to the word View at the top of the window and check (on) or uncheck (off) the view.&lt;br /&gt;
&lt;br /&gt;
[[Gramps_{{man version}}_Wiki_Manual_-_Main_Window#Main_Window]]&lt;br /&gt;
{{-}}&lt;br /&gt;
&lt;br /&gt;
==Create a Source==&lt;br /&gt;
[[File:NewSource-editor-dialog-example-50.png|thumb|right|450px|New Source - editor dialog - example]]&lt;br /&gt;
&lt;br /&gt;
As you start with yourself, and the source is the interview with yourself, in the left sidebar called '''Navigator''' click on the [[Gramps_{{man version}}_Wiki_Manual_-_Categories#Sources_Category|source icon]] {{icon|sour34}}. In the toolbar click on {{man label|Add}} (or {{man key press|CTRL|INSERT}} on the keyboard) to open the [[Gramps_{{man version}}_Wiki_Manual_-_Entering_and_editing_data:_detailed_-_part_2#New_Source_dialog|source editor]].&lt;br /&gt;
&lt;br /&gt;
Assuming your name is ''John Doe'', you now make a source for the interview with yourself! So enter:&lt;br /&gt;
* Title: Interview with John Doe&lt;br /&gt;
* Author: John Doe&lt;br /&gt;
And click on {{man button|OK}}.&lt;br /&gt;
{{-}}&lt;br /&gt;
[[File:SourcesCategory-SourcesListView-example-50.png|right|450px|thumb|Sources Category - (List) View]]&lt;br /&gt;
&lt;br /&gt;
That is it, your first source. In the [[Gramps_{{man version}}_Wiki_Manual_-_Categories#Sources_Category|Source(list)view]] you will see your new source listed and that the entry has ID number that is unique to your source.&lt;br /&gt;
&lt;br /&gt;
[[Gramps_{{man version}}_Wiki_Manual_-_Entering_and_editing_data:_detailed_-_part_2#Editing_information_about_sources]]&lt;br /&gt;
&lt;br /&gt;
&amp;lt;!--&lt;br /&gt;
Before continuing, let's show how to change the interface. In the toolbar of Gramps, the last icon is the {{man button|Configure the active view}}, so click it to see how you can adapt the view. Activate the 'Last Changed' Column and by dragging, change eg 'Author' to be the second column. Most views have this configuration option, so change these to your liking!&lt;br /&gt;
--&amp;gt;&lt;br /&gt;
{{-}}&lt;br /&gt;
&lt;br /&gt;
==Add data to the source==&lt;br /&gt;
{{stub}}&lt;br /&gt;
(Ver. 3.3.1-1)&lt;br /&gt;
&lt;br /&gt;
Before you begin, you should know that Gramps does '''not''' store your media(pictures, videos, sounds, and documents etc..), it only stores a link to where the media is on your hard disk. So decide where you will store your pictures, videos, sounds, and documents. Then on the menu bar select {{man menu|Edit-&amp;gt;Preferences}} and the '''General''' tab. Set the value of {{man label|Base path for relative media paths}} to this directory. Click on the {{man label|Close}} button to save your changes. Keep your media documents well structured in this directory.&lt;br /&gt;
&lt;br /&gt;
Now let's continue with adding some more data to the source. Double click on it (or press {{Man key press|ENTER}}) to open the source 'Interview with John Doe'. Look at the tab pages at the bottom of the source editor: Notes, Gallery, Data, Repositories, References. Surely you have a picture of yourself! Let's add it to the Gallery of this source.&lt;br /&gt;
&lt;br /&gt;
Click on the {{man label|Gallery}} tab, and then on the little '''Add''' icon just below the Notes tab. This opens a dialog to select the image of yourself. At the bottom of this dialog is a box '''Title:''' to set a nice title such as 'Picture of John Doe'. Entering a title does not change the file name. Make sure you select 'Convert to a relative path'. Press {{man button|OK}}. You will now see the ''Media Reference Editor''. The top of this dialog allows to select a region of the picture, eg when you have selected a group photo, it makes sense to indicate who on the photo is John Doe. You can use the mouse in the preview picture to select the part of the picture of interest (click down is corner 1 and click release is corner 2). Click {{man button|OK}} to save the image and go back to the source editor you were working on. &lt;br /&gt;
&lt;br /&gt;
Suppose you have a typed-out text of the interview. In that case you can add the textual document (odt, doc, rtf, etc ...) in the {{man label|Gallery}}, but you can also store the text as a {{man label|Note}} in Gramps. The good thing about using a note is that Gramps can search the text of notes with filters. So, click on the {{man label|Notes}} tab, click the '''Add''' icon, and you are presented with a basic editor that you can type or paste text into.&lt;br /&gt;
&lt;br /&gt;
When finished, press {{man button|OK}} on the source editor, and your source 'Interview with John Doe' now has also a note and picture.&lt;br /&gt;
&lt;br /&gt;
To see these, you would have to open the editor again. However, Gramps has a bottom pane that can show you information on the selected entry in the source view. For that, activate in the menu '''View''' the '''Bottombar'''. You will see a number of tabs which allow to show information. The elements showing information are called '''Gramplets''' in Gramps. Gramplets are small plugins that can perform all kinds of tasks. You can add one to the bottombar by using right-click with the mouse on the bottombar next to the tabs.&lt;br /&gt;
&lt;br /&gt;
== Time for your first Person ==&lt;br /&gt;
(Ver. 3.3.1-1)&lt;br /&gt;
&lt;br /&gt;
So much done, and not yet one single person is present in your family tree! Time to change that. Let's add yourself. As all information you will add comes from the source 'Interview with John Doe', we first store this in an easy to reach place. In the toolbar click on the {{man button|Clipboard}} icon to open the clipboard. Drag and drop, from the source view, the source 'Interview with John Doe', into the Clipboard. Your source is now stored in the Clipboard and this window can be closed.&lt;br /&gt;
&lt;br /&gt;
In the Navigator, click on the Person icon to see the person view. Note that on the Toolbar there is a pressed-in button (3rd button from the right) indicating the type of person view you have activated. Try the other possibility once to see what changes. Many Categories in the Navigator have more than one view!&lt;br /&gt;
&lt;br /&gt;
Click now on the {{man button|Add}} button on the Toolbar to add your first person. You now see the person editor, and the top part of this should be what you expect: all information about the name of this person. So, type in your given name, and your surname. If you are eg. Spanish and have a very long surname, then click on the {{man button|Add}} icon after the surname to enter multiple surnames. See the manual for more details. Now select your Gender.&lt;br /&gt;
&lt;br /&gt;
As you enter data, you need to add where you obtained this data (Source). For this, click on the {{man label|Sources}} tab, then open the Clipboard from the Toolbar, drag the source you stored in the clipboard, into the area under ID |Title | Auth | Page of the Person Editor. This will open up the 'Source Reference Editor'. The bottom part of this editor is the same source as already entered, but the top part is new, and contains the data on how the information of the person was found in this source and how certain you are of it. For this interview you can set {{man label|Confidence}} to ''Very High''.&lt;br /&gt;
&lt;br /&gt;
You already have a picture of yourself, as you added it to the source. You can now add this same picture to this Person record you are creating. For this, click on the {{man label|Gallery}} tab of the person editor, and click on the {{man button|Share}} button. This will open a list of all media objects. Select the one you made earlier and click {{man button|OK}} to store everything. You could also have used the clipboard: or by adding the picture there from the media view, or by adding the media ''reference'' in the clipboard by dragging it from the gallery of an object to the clipboard, and then using it from there where you need it. &lt;br /&gt;
&lt;br /&gt;
Save everything by clicking {{man button|OK}} until you see the main Gramps view again.&lt;br /&gt;
&lt;br /&gt;
== Events ==&lt;br /&gt;
(Ver. 3.3.1-1)&lt;br /&gt;
&lt;br /&gt;
Next, you will want to add your birthday. For this, open the person editor of yourself, by double clicking on your name. Note that the {{man label|Events}} tab is open. Click on the {{man button|Add}} icon to add an event. Gramps preselects the birth event for the first event that you want to add. Enter your birth date as: (12/31/1900 - Month/Day/Year) or (1 Jan 1900 - Day Month Year). If you use Day Month Year, the Month must be entered with the first 3 letters only or it must be spelled out completely.&lt;br /&gt;
&lt;br /&gt;
You can also click on the {{man button|Calendar}} button on the right. This window allows you to select the Day Month and Year with a drop-down menu. When using this make sure that the Quality is set to Regular and Type is also set to Regular. After entering your birth date in the calendar window, click on {{man button|OK}} to save it.&lt;br /&gt;
&lt;br /&gt;
Next, because you have no Places in your database you need to create one. Knowing the place where you were born, click on the {{man button|Add}} icon after the Place entry to create this place. Enter places as City/Town, Township, County, State, Country or any combination of these. Such as Germantown, German Township (Twp), Montgomery County (Co.), Ohio, USA. Being consistent when adding places will be helpful later when you can select these from the {{man button|Select an existing place}} icon.  Adding latitude and longitude will allow these places to be positioned on a map later.&lt;br /&gt;
&lt;br /&gt;
Don't forget to Source this. Click the {{man button|Source}} tab, open the '''Clipboard''', drag and drop your source, select the Confidence level, and save both the Source and then the new place with the {{man button|OK}} buttons.&lt;br /&gt;
&lt;br /&gt;
Note that the editor that has been open is the Event ''Reference'' Editor. This means that there is a global part that you can share with other people (the bottom of the editor), and a top part which is unique to the person. This top part is used to enter the {{man label|Role}} of the person in the event. In your own birth, you have the primary role. If you know the name of people helping in the birth, and you want to store these people also, you can share this event with them, with a Role of ''Aide''. You can type a custom role in the {{man label|Role}} field if you are not happy with the predefined possibilities.&lt;br /&gt;
&lt;br /&gt;
Again, add a source to the event via the {{man label|Sources}} tab, like you did before. As you have no real recollection of your own birth, the interview should not have confidence 'Very High'! You would need to add a birth document as source for that.&lt;br /&gt;
&lt;br /&gt;
When done, click {{man button|OK}} to save the event, and then again to save the person, and you have your first full person record.&lt;br /&gt;
&lt;br /&gt;
== Family ==&lt;br /&gt;
You now have entered yourself, time to add your parents. You could add your father and mother as you added yourself, and then connect them in a family, but most people will do things in one go via the {{icon|rela}}'''Relationship View''' or the {{icon|ance}}'''Pedigree View'''. Let's go to the Relationship view: select yourself in the person view, and then in the navigator, select the relationship view. This view has a toolbar that allows to add parents or to add a spouse. Click on the {{man button|Add parents}} icon to open the family editor.&lt;br /&gt;
&lt;br /&gt;
In the family editor you will see that you are present in the {{man label|Children}} tab. Use the {{man button|Add}} icon next to father and mother to add them as you have added yourself. Use the {{man button|Add}} icon in the {{man label|Children}} tab to add your siblings. You need to use drag-and-drop to sort siblings in the order as you want them to appear in reports (normally oldest to youngest I suppose). &lt;br /&gt;
&lt;br /&gt;
In the family editor you can also add events. We call these family events as they are shared by the two parents. Typically this is Engagement, Marriage, .... In these the Role is 'Family'. It is not needed to add these events also individually to the two parents! &lt;br /&gt;
&lt;br /&gt;
When done, click {{man button|OK}} to save the family, and you will return to the relationship view with all the extra information visible. From within this view you can navigate to other people and keep enlarging your family tree.&lt;br /&gt;
&lt;br /&gt;
== A report ==&lt;br /&gt;
Now that you have a first small family tree, make a report. Go to the oldest grandparent you have in the relationship view or the person view (you can set bookmarks on people and set a home person!). With this person selected, go in the menu {{man menu|Reports-&amp;gt;Text Reports-&amp;gt;[[Gramps_{{man version}}_Wiki_Manual_-_Reports_-_part_6#Detailed_Descendant_Report|Detailed Descendant Report]]}}, to create a nice textual descendant report.&lt;br /&gt;
&lt;br /&gt;
== What next?==&lt;br /&gt;
Gramps has many features, as you improve, take the time to go over the [[Gramps_{{man version}}_Wiki_Manual|user manual]] and learn more. Join and use the mailing list to discuss issues.&lt;br /&gt;
&lt;br /&gt;
We advise everyone to read the manual to learn all about using Gramps. Genealogy takes time, so learning the tools is not wasted time.&lt;br /&gt;
&lt;br /&gt;
However, if you really want the bare minimum to start, then read this:&lt;br /&gt;
* [[Gramps {{man version}} Wiki Manual - Entering and editing data: brief]]&lt;br /&gt;
&lt;br /&gt;
==Screencasts==&lt;br /&gt;
&lt;br /&gt;
===Gramps 3.2.5===&lt;br /&gt;
Screencast for the older Gramps 3.2.5.&lt;br /&gt;
* Gramps 3.2.5: [[Media:Edit family from pedigree view Gramps 3.2.5.ogg|Edit family (parents, children, siblings) from Pedigree View]]&lt;br /&gt;
* Gramps 3.2.5: [[Media:Add_family_from_pedigree_view_Gramps_3.2.5.ogg|Add family (parents, children, siblings) from Pedigree View]]&lt;br /&gt;
&lt;br /&gt;
==See also==&lt;br /&gt;
Related articles.&lt;br /&gt;
* [[Add a child]]&lt;br /&gt;
* [[Add a spouse]]&lt;br /&gt;
* [[Add a godfather-godmother]]&lt;br /&gt;
* [[Add a witness]]&lt;br /&gt;
* [[Genealogy Glossary]]&lt;br /&gt;
* [[Gramps Glossary]]&lt;br /&gt;
&lt;br /&gt;
[[Category:How do I...]]&lt;br /&gt;
[[Category:Genealogy]]&lt;br /&gt;
[[Category:Gramps Logic]]&lt;/div&gt;</summary>
		<author><name>Sten</name></author>
		
	</entry>
	<entry>
		<id>https://ftp.gramps-project.org/wiki/index.php?title=RU:%D0%9D%D0%B0%D1%87%D0%B0%D0%BB%D0%BE_%D0%B2_%D0%93%D0%B5%D0%BD%D0%B5%D0%B0%D0%BB%D0%BE%D0%B3%D0%B8%D0%B8&amp;diff=78855</id>
		<title>RU:Начало в Генеалогии</title>
		<link rel="alternate" type="text/html" href="https://ftp.gramps-project.org/wiki/index.php?title=RU:%D0%9D%D0%B0%D1%87%D0%B0%D0%BB%D0%BE_%D0%B2_%D0%93%D0%B5%D0%BD%D0%B5%D0%B0%D0%BB%D0%BE%D0%B3%D0%B8%D0%B8&amp;diff=78855"/>
		<updated>2020-06-03T09:35:02Z</updated>

		<summary type="html">&lt;p&gt;Sten: /* Подготовка */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{languages ​​| Начало в Генеалогии}}&lt;br /&gt;
'' 'Как мне начать в Генеалогии, используя Gramps? «»»&lt;br /&gt;
&lt;br /&gt;
== Подготовка ==&lt;br /&gt;
Если Вы только начинаете свою генеалогию, лучше начать с себя и добавлять других людей, соединяя их с Вами.&lt;br /&gt;
&lt;br /&gt;
'' {{man menu | Одной из самых важных вещей в генеалогии является то, что Вы записываете, как и где Вы нашли / получили информацию.}} '' Это называется источником. Это настолько важно потому, что позже Вам понадобится эта информации или Вы захотите обратиться к ней. Наличие источника у Вашей информации также создаст доверие к ней у других исследователей.&lt;br /&gt;
&lt;br /&gt;
Таким образом, если Вы начинаете с себя, Вы сами ''проводите собеседование'', что является основным источником информации по этому вопросу. Из этого первоисточника Вы получаете такие события, как день рождения, день крещения, выпускной и так далее. Источник событий позволяет Вам вычислить существовавшего человека как часть семьи.&lt;br /&gt;
&lt;br /&gt;
Таким образом, у нас есть наши основные термины для генеалогии: Источники, События, Люди и Семьи. Помимо этого, Gramps позволяет хранить Заметки, Места, Медиа (фотографии, фильмы, документы) и [[ Хранилища в Gramps | Хранилища]].&lt;br /&gt;
&lt;br /&gt;
Итак, давайте начнем с добавления информации в Gramps.&lt;br /&gt;
&lt;br /&gt;
==Create a Family Tree==&lt;br /&gt;
It is assumed here, that you have just installed Gramps and are starting your first family tree.&lt;br /&gt;
&lt;br /&gt;
As a first step, start Gramps.&lt;br /&gt;
{{-}}&lt;br /&gt;
[[File:Manage-databases-icon-toolbar-no-familytree-loaded-51.png|450px|thumb|right|Manage databases icon on toolbar with No Family Tree - loaded]]&lt;br /&gt;
&lt;br /&gt;
The family tree manager called Family Trees - Gramps will be shown if not in the toolbar click on the family tree icon to open the family tree manager. &lt;br /&gt;
&lt;br /&gt;
[[Gramps_{{man version}}_Wiki_Manual_-_Getting_started#Choosing_a_Family_Tree]]&lt;br /&gt;
{{-}}&lt;br /&gt;
[[File:ManageFamilyTrees-51.png|right|thumb|450px|&amp;quot;Family Trees&amp;quot; manager window]]&lt;br /&gt;
&lt;br /&gt;
In the pop up  family tree (manager) window click on the {{man button|New}} button (on the right). Now under the title Family tree name (to the left) enter a name for your tree and then click on the {{man button|Load Family Tree}} button (bottom right). Gramps will now open with your newly created tree.&lt;br /&gt;
&lt;br /&gt;
[[Gramps_{{man version}}_Wiki_Manual_-_Manage_Family_Trees#Starting_a_new_Family_Tree]]&lt;br /&gt;
{{-}}&lt;br /&gt;
[[File:MainWindow-PeopleCategory-PeopleTreeView-annotated-50.png|450px|thumb|right|Annotated Main Gramps window parts]]&lt;br /&gt;
&lt;br /&gt;
Gramps Main page is divided into separate panes, a Toolbar at the top, a left side bar (Navigator) allowing you to navigate different views of your data, a view area showing the data (center), and the right side pane (Sidebar) and a bottom bar (Bottombar) that can be used for Gramplets, (Gramplets covered later). Most of these panes can be turned on or off by going to the word View at the top of the window and check (on) or uncheck (off) the view.&lt;br /&gt;
&lt;br /&gt;
[[Gramps_{{man version}}_Wiki_Manual_-_Main_Window#Main_Window]]&lt;br /&gt;
{{-}}&lt;br /&gt;
&lt;br /&gt;
==Create a Source==&lt;br /&gt;
[[File:NewSource-editor-dialog-example-50.png|thumb|right|450px|New Source - editor dialog - example]]&lt;br /&gt;
&lt;br /&gt;
As you start with yourself, and the source is the interview with yourself, in the left sidebar called '''Navigator''' click on the [[Gramps_{{man version}}_Wiki_Manual_-_Categories#Sources_Category|source icon]] {{icon|sour34}}. In the toolbar click on {{man label|Add}} (or {{man key press|CTRL|INSERT}} on the keyboard) to open the [[Gramps_{{man version}}_Wiki_Manual_-_Entering_and_editing_data:_detailed_-_part_2#New_Source_dialog|source editor]].&lt;br /&gt;
&lt;br /&gt;
Assuming your name is ''John Doe'', you now make a source for the interview with yourself! So enter:&lt;br /&gt;
* Title: Interview with John Doe&lt;br /&gt;
* Author: John Doe&lt;br /&gt;
And click on {{man button|OK}}.&lt;br /&gt;
{{-}}&lt;br /&gt;
[[File:SourcesCategory-SourcesListView-example-50.png|right|450px|thumb|Sources Category - (List) View]]&lt;br /&gt;
&lt;br /&gt;
That is it, your first source. In the [[Gramps_{{man version}}_Wiki_Manual_-_Categories#Sources_Category|Source(list)view]] you will see your new source listed and that the entry has ID number that is unique to your source.&lt;br /&gt;
&lt;br /&gt;
[[Gramps_{{man version}}_Wiki_Manual_-_Entering_and_editing_data:_detailed_-_part_2#Editing_information_about_sources]]&lt;br /&gt;
&lt;br /&gt;
&amp;lt;!--&lt;br /&gt;
Before continuing, let's show how to change the interface. In the toolbar of Gramps, the last icon is the {{man button|Configure the active view}}, so click it to see how you can adapt the view. Activate the 'Last Changed' Column and by dragging, change eg 'Author' to be the second column. Most views have this configuration option, so change these to your liking!&lt;br /&gt;
--&amp;gt;&lt;br /&gt;
{{-}}&lt;br /&gt;
&lt;br /&gt;
==Add data to the source==&lt;br /&gt;
{{stub}}&lt;br /&gt;
(Ver. 3.3.1-1)&lt;br /&gt;
&lt;br /&gt;
Before you begin, you should know that Gramps does '''not''' store your media(pictures, videos, sounds, and documents etc..), it only stores a link to where the media is on your hard disk. So decide where you will store your pictures, videos, sounds, and documents. Then on the menu bar select {{man menu|Edit-&amp;gt;Preferences}} and the '''General''' tab. Set the value of {{man label|Base path for relative media paths}} to this directory. Click on the {{man label|Close}} button to save your changes. Keep your media documents well structured in this directory.&lt;br /&gt;
&lt;br /&gt;
Now let's continue with adding some more data to the source. Double click on it (or press {{Man key press|ENTER}}) to open the source 'Interview with John Doe'. Look at the tab pages at the bottom of the source editor: Notes, Gallery, Data, Repositories, References. Surely you have a picture of yourself! Let's add it to the Gallery of this source.&lt;br /&gt;
&lt;br /&gt;
Click on the {{man label|Gallery}} tab, and then on the little '''Add''' icon just below the Notes tab. This opens a dialog to select the image of yourself. At the bottom of this dialog is a box '''Title:''' to set a nice title such as 'Picture of John Doe'. Entering a title does not change the file name. Make sure you select 'Convert to a relative path'. Press {{man button|OK}}. You will now see the ''Media Reference Editor''. The top of this dialog allows to select a region of the picture, eg when you have selected a group photo, it makes sense to indicate who on the photo is John Doe. You can use the mouse in the preview picture to select the part of the picture of interest (click down is corner 1 and click release is corner 2). Click {{man button|OK}} to save the image and go back to the source editor you were working on. &lt;br /&gt;
&lt;br /&gt;
Suppose you have a typed-out text of the interview. In that case you can add the textual document (odt, doc, rtf, etc ...) in the {{man label|Gallery}}, but you can also store the text as a {{man label|Note}} in Gramps. The good thing about using a note is that Gramps can search the text of notes with filters. So, click on the {{man label|Notes}} tab, click the '''Add''' icon, and you are presented with a basic editor that you can type or paste text into.&lt;br /&gt;
&lt;br /&gt;
When finished, press {{man button|OK}} on the source editor, and your source 'Interview with John Doe' now has also a note and picture.&lt;br /&gt;
&lt;br /&gt;
To see these, you would have to open the editor again. However, Gramps has a bottom pane that can show you information on the selected entry in the source view. For that, activate in the menu '''View''' the '''Bottombar'''. You will see a number of tabs which allow to show information. The elements showing information are called '''Gramplets''' in Gramps. Gramplets are small plugins that can perform all kinds of tasks. You can add one to the bottombar by using right-click with the mouse on the bottombar next to the tabs.&lt;br /&gt;
&lt;br /&gt;
== Time for your first Person ==&lt;br /&gt;
(Ver. 3.3.1-1)&lt;br /&gt;
&lt;br /&gt;
So much done, and not yet one single person is present in your family tree! Time to change that. Let's add yourself. As all information you will add comes from the source 'Interview with John Doe', we first store this in an easy to reach place. In the toolbar click on the {{man button|Clipboard}} icon to open the clipboard. Drag and drop, from the source view, the source 'Interview with John Doe', into the Clipboard. Your source is now stored in the Clipboard and this window can be closed.&lt;br /&gt;
&lt;br /&gt;
In the Navigator, click on the Person icon to see the person view. Note that on the Toolbar there is a pressed-in button (3rd button from the right) indicating the type of person view you have activated. Try the other possibility once to see what changes. Many Categories in the Navigator have more than one view!&lt;br /&gt;
&lt;br /&gt;
Click now on the {{man button|Add}} button on the Toolbar to add your first person. You now see the person editor, and the top part of this should be what you expect: all information about the name of this person. So, type in your given name, and your surname. If you are eg. Spanish and have a very long surname, then click on the {{man button|Add}} icon after the surname to enter multiple surnames. See the manual for more details. Now select your Gender.&lt;br /&gt;
&lt;br /&gt;
As you enter data, you need to add where you obtained this data (Source). For this, click on the {{man label|Sources}} tab, then open the Clipboard from the Toolbar, drag the source you stored in the clipboard, into the area under ID |Title | Auth | Page of the Person Editor. This will open up the 'Source Reference Editor'. The bottom part of this editor is the same source as already entered, but the top part is new, and contains the data on how the information of the person was found in this source and how certain you are of it. For this interview you can set {{man label|Confidence}} to ''Very High''.&lt;br /&gt;
&lt;br /&gt;
You already have a picture of yourself, as you added it to the source. You can now add this same picture to this Person record you are creating. For this, click on the {{man label|Gallery}} tab of the person editor, and click on the {{man button|Share}} button. This will open a list of all media objects. Select the one you made earlier and click {{man button|OK}} to store everything. You could also have used the clipboard: or by adding the picture there from the media view, or by adding the media ''reference'' in the clipboard by dragging it from the gallery of an object to the clipboard, and then using it from there where you need it. &lt;br /&gt;
&lt;br /&gt;
Save everything by clicking {{man button|OK}} until you see the main Gramps view again.&lt;br /&gt;
&lt;br /&gt;
== Events ==&lt;br /&gt;
(Ver. 3.3.1-1)&lt;br /&gt;
&lt;br /&gt;
Next, you will want to add your birthday. For this, open the person editor of yourself, by double clicking on your name. Note that the {{man label|Events}} tab is open. Click on the {{man button|Add}} icon to add an event. Gramps preselects the birth event for the first event that you want to add. Enter your birth date as: (12/31/1900 - Month/Day/Year) or (1 Jan 1900 - Day Month Year). If you use Day Month Year, the Month must be entered with the first 3 letters only or it must be spelled out completely.&lt;br /&gt;
&lt;br /&gt;
You can also click on the {{man button|Calendar}} button on the right. This window allows you to select the Day Month and Year with a drop-down menu. When using this make sure that the Quality is set to Regular and Type is also set to Regular. After entering your birth date in the calendar window, click on {{man button|OK}} to save it.&lt;br /&gt;
&lt;br /&gt;
Next, because you have no Places in your database you need to create one. Knowing the place where you were born, click on the {{man button|Add}} icon after the Place entry to create this place. Enter places as City/Town, Township, County, State, Country or any combination of these. Such as Germantown, German Township (Twp), Montgomery County (Co.), Ohio, USA. Being consistent when adding places will be helpful later when you can select these from the {{man button|Select an existing place}} icon.  Adding latitude and longitude will allow these places to be positioned on a map later.&lt;br /&gt;
&lt;br /&gt;
Don't forget to Source this. Click the {{man button|Source}} tab, open the '''Clipboard''', drag and drop your source, select the Confidence level, and save both the Source and then the new place with the {{man button|OK}} buttons.&lt;br /&gt;
&lt;br /&gt;
Note that the editor that has been open is the Event ''Reference'' Editor. This means that there is a global part that you can share with other people (the bottom of the editor), and a top part which is unique to the person. This top part is used to enter the {{man label|Role}} of the person in the event. In your own birth, you have the primary role. If you know the name of people helping in the birth, and you want to store these people also, you can share this event with them, with a Role of ''Aide''. You can type a custom role in the {{man label|Role}} field if you are not happy with the predefined possibilities.&lt;br /&gt;
&lt;br /&gt;
Again, add a source to the event via the {{man label|Sources}} tab, like you did before. As you have no real recollection of your own birth, the interview should not have confidence 'Very High'! You would need to add a birth document as source for that.&lt;br /&gt;
&lt;br /&gt;
When done, click {{man button|OK}} to save the event, and then again to save the person, and you have your first full person record.&lt;br /&gt;
&lt;br /&gt;
== Family ==&lt;br /&gt;
You now have entered yourself, time to add your parents. You could add your father and mother as you added yourself, and then connect them in a family, but most people will do things in one go via the {{icon|rela}}'''Relationship View''' or the {{icon|ance}}'''Pedigree View'''. Let's go to the Relationship view: select yourself in the person view, and then in the navigator, select the relationship view. This view has a toolbar that allows to add parents or to add a spouse. Click on the {{man button|Add parents}} icon to open the family editor.&lt;br /&gt;
&lt;br /&gt;
In the family editor you will see that you are present in the {{man label|Children}} tab. Use the {{man button|Add}} icon next to father and mother to add them as you have added yourself. Use the {{man button|Add}} icon in the {{man label|Children}} tab to add your siblings. You need to use drag-and-drop to sort siblings in the order as you want them to appear in reports (normally oldest to youngest I suppose). &lt;br /&gt;
&lt;br /&gt;
In the family editor you can also add events. We call these family events as they are shared by the two parents. Typically this is Engagement, Marriage, .... In these the Role is 'Family'. It is not needed to add these events also individually to the two parents! &lt;br /&gt;
&lt;br /&gt;
When done, click {{man button|OK}} to save the family, and you will return to the relationship view with all the extra information visible. From within this view you can navigate to other people and keep enlarging your family tree.&lt;br /&gt;
&lt;br /&gt;
== A report ==&lt;br /&gt;
Now that you have a first small family tree, make a report. Go to the oldest grandparent you have in the relationship view or the person view (you can set bookmarks on people and set a home person!). With this person selected, go in the menu {{man menu|Reports-&amp;gt;Text Reports-&amp;gt;[[Gramps_{{man version}}_Wiki_Manual_-_Reports_-_part_6#Detailed_Descendant_Report|Detailed Descendant Report]]}}, to create a nice textual descendant report.&lt;br /&gt;
&lt;br /&gt;
== What next?==&lt;br /&gt;
Gramps has many features, as you improve, take the time to go over the [[Gramps_{{man version}}_Wiki_Manual|user manual]] and learn more. Join and use the mailing list to discuss issues.&lt;br /&gt;
&lt;br /&gt;
We advise everyone to read the manual to learn all about using Gramps. Genealogy takes time, so learning the tools is not wasted time.&lt;br /&gt;
&lt;br /&gt;
However, if you really want the bare minimum to start, then read this:&lt;br /&gt;
* [[Gramps {{man version}} Wiki Manual - Entering and editing data: brief]]&lt;br /&gt;
&lt;br /&gt;
==Screencasts==&lt;br /&gt;
&lt;br /&gt;
===Gramps 3.2.5===&lt;br /&gt;
Screencast for the older Gramps 3.2.5.&lt;br /&gt;
* Gramps 3.2.5: [[Media:Edit family from pedigree view Gramps 3.2.5.ogg|Edit family (parents, children, siblings) from Pedigree View]]&lt;br /&gt;
* Gramps 3.2.5: [[Media:Add_family_from_pedigree_view_Gramps_3.2.5.ogg|Add family (parents, children, siblings) from Pedigree View]]&lt;br /&gt;
&lt;br /&gt;
==See also==&lt;br /&gt;
Related articles.&lt;br /&gt;
* [[Add a child]]&lt;br /&gt;
* [[Add a spouse]]&lt;br /&gt;
* [[Add a godfather-godmother]]&lt;br /&gt;
* [[Add a witness]]&lt;br /&gt;
* [[Genealogy Glossary]]&lt;br /&gt;
* [[Gramps Glossary]]&lt;br /&gt;
&lt;br /&gt;
[[Category:How do I...]]&lt;br /&gt;
[[Category:Genealogy]]&lt;br /&gt;
[[Category:Gramps Logic]]&lt;/div&gt;</summary>
		<author><name>Sten</name></author>
		
	</entry>
</feed>