From dd7cab476972a86a2f2870a23253da15fd54a585 Mon Sep 17 00:00:00 2001 From: Nigel Horne Date: Sun, 12 Jan 2025 20:35:06 -0500 Subject: [PATCH] Translate "Farmer" into German --- gedcom | 2 ++ 1 file changed, 2 insertions(+) diff --git a/gedcom b/gedcom index a1b2cea..95fb2e0 100755 --- a/gedcom +++ b/gedcom @@ -11693,6 +11693,8 @@ sub get_all_occupations $occupation = (($person->sex() eq 'M') ? 'Lehrer' : 'Lehrerin'); } elsif($occupation =~ /(.+)\sFarmer/) { $occupation = (($person->sex() eq 'M') ? 'Landwirt' : 'Landwirtin'); + } elsif($occupation eq 'Farmer') { + $occupation = (($person->sex() eq 'M') ? 'Bauer' : 'Bauerin'); } $occupation =~ s/retired/im ruhestand/i; $occupation =~ s/self-employed/slbststa\N{U+00E4}ndig/;