diff options
67 files changed, 4474 insertions, 4476 deletions
diff --git a/app/Module/LoggedInUsersModule.php b/app/Module/LoggedInUsersModule.php index ec0d770700..4f4a8f4474 100644 --- a/app/Module/LoggedInUsersModule.php +++ b/app/Module/LoggedInUsersModule.php @@ -48,13 +48,13 @@ class LoggedInUsersModule extends Module implements ModuleBlockInterface { $count_logged_in = count($logged_in); $content .= '<div class="logged_in_count">'; if ($anonymous) { - $content .= I18N::plural('%d anonymous logged-in user', '%d anonymous logged-in users', $anonymous, $anonymous); + $content .= I18N::plural('%s anonymous logged-in user', '%s anonymous logged-in users', $anonymous, I18N::number($anonymous)); if ($count_logged_in) { $content .= ' | '; } } if ($count_logged_in) { - $content .= I18N::plural('%d logged-in user', '%d logged-in users', $count_logged_in, $count_logged_in); + $content .= I18N::plural('%s logged-in user', '%s logged-in users', $count_logged_in, I18N::number($count_logged_in)); } $content .= '</div>'; $content .= '<div class="logged_in_list">'; diff --git a/app/Module/RecentChangesModule.php b/app/Module/RecentChangesModule.php index 3670cdedea..12d5ab5db1 100644 --- a/app/Module/RecentChangesModule.php +++ b/app/Module/RecentChangesModule.php @@ -130,7 +130,7 @@ class RecentChangesModule extends Module implements ModuleBlockInterface { echo I18N::translate('Number of days to show'); echo '</td><td class="optionbox">'; echo '<input type="text" name="days" size="2" value="', $days, '">'; - echo ' <em>', I18N::plural('maximum %d day', 'maximum %d days', self::MAX_DAYS, self::MAX_DAYS), '</em>'; + echo ' <em>', I18N::plural('maximum %s day', 'maximum %s days', I18N::number(self::MAX_DAYS), I18N::number(self::MAX_DAYS)), '</em>'; echo '</td></tr>'; echo '<tr><td class="descriptionbox wrap width33">'; diff --git a/app/Module/RelativesTabModule.php b/app/Module/RelativesTabModule.php index 28228e1e23..6e6f3ec19c 100644 --- a/app/Module/RelativesTabModule.php +++ b/app/Module/RelativesTabModule.php @@ -57,9 +57,9 @@ class RelativesTabModule extends Module implements ModuleTabInterface { $months = round($days * 12 / 365.25); // Approximate - we do not know the calendar if (abs($months) == 12 || abs($months) >= 24) { - $diff .= I18N::plural('%d year', '%d years', round($months / 12), round($months / 12)); + $diff .= I18N::plural('%s year', '%s years', round($months / 12), I18N::number(round($months / 12))); } elseif ($months != 0) { - $diff .= I18N::plural('%d month', '%d months', $months, $months); + $diff .= I18N::plural('%s month', '%s months', $months, I18N::number($months)); } return '<div class="elderdate age">' . $diff . '</div>'; diff --git a/app/Module/UpcomingAnniversariesModule.php b/app/Module/UpcomingAnniversariesModule.php index 6743219503..36b09faf51 100644 --- a/app/Module/UpcomingAnniversariesModule.php +++ b/app/Module/UpcomingAnniversariesModule.php @@ -122,7 +122,7 @@ class UpcomingAnniversariesModule extends Module implements ModuleBlockInterface echo I18N::translate('Number of days to show'); echo '</td><td class="optionbox">'; echo '<input type="text" name="days" size="2" value="', $days, '">'; - echo ' <em>', I18N::plural('maximum %d day', 'maximum %d days', 30, 30), '</em>'; + echo ' <em>', I18N::plural('maximum %s day', 'maximum %s days', 30, I18N::number(30)), '</em>'; echo '</td></tr>'; echo '<tr><td class="descriptionbox wrap width33">'; diff --git a/app/Module/YahrzeitModule.php b/app/Module/YahrzeitModule.php index 51f4c921f7..415d7edd9a 100644 --- a/app/Module/YahrzeitModule.php +++ b/app/Module/YahrzeitModule.php @@ -247,7 +247,7 @@ class YahrzeitModule extends Module implements ModuleBlockInterface { echo I18N::translate('Number of days to show'); echo '</td><td class="optionbox">'; echo '<input type="text" name="days" size="2" value="' . $days . '">'; - echo ' <em>', I18N::plural('maximum %d day', 'maximum %d days', 30, 30), '</em>'; + echo ' <em>', I18N::plural('maximum %s day', 'maximum %s days', 30, I18N::number(30)), '</em>'; echo '</td></tr>'; echo '<tr><td class="descriptionbox wrap width33">'; diff --git a/app/Stats.php b/app/Stats.php index 1081ffd9eb..311306efbc 100644 --- a/app/Stats.php +++ b/app/Stats.php @@ -5369,7 +5369,7 @@ class Stats { return I18N::translate('No logged-in and no anonymous users'); } if ($NumAnonymous > 0) { - $content .= '<b>' . I18N::plural('%d anonymous logged-in user', '%d anonymous logged-in users', $NumAnonymous, $NumAnonymous) . '</b>'; + $content .= '<b>' . I18N::plural('%s anonymous logged-in user', '%s anonymous logged-in users', $NumAnonymous, I18N::number($NumAnonymous)) . '</b>'; } if ($LoginUsers > 0) { if ($NumAnonymous) { @@ -5379,7 +5379,7 @@ class Stats { $content .= " " . I18N::translate('and') . " "; } } - $content .= '<b>' . I18N::plural('%d logged-in user', '%d logged-in users', $LoginUsers, $LoginUsers) . '</b>'; + $content .= '<b>' . I18N::plural('%s logged-in user', '%s logged-in users', $LoginUsers, I18N::number($LoginUsers)) . '</b>'; if ($type == 'list') { $content .= '<ul>'; } else { diff --git a/includes/functions/functions.php b/includes/functions/functions.php index 0b94776b0a..8087a8e95d 100644 --- a/includes/functions/functions.php +++ b/includes/functions/functions.php @@ -517,7 +517,7 @@ function cousin_name($n, $sex) { return I18N::translateContext('MALE', 'fifteenth cousin'); default: /* I18N: Note that for Italian and Polish, “N’th cousins” are different from English “N’th cousins”, and the software has already generated the correct “N” for your language. You only need to translate - you do not need to convert. For other languages, if your cousin rules are different from English, please contact the developers. */ - return I18N::translateContext('MALE', '%d × cousin', $n); + return I18N::translateContext('MALE', '%s × cousin', I18N::number($n)); } case 'F': switch ($n) { @@ -552,7 +552,7 @@ function cousin_name($n, $sex) { case 15: return I18N::translateContext('FEMALE', 'fifteenth cousin'); default: - return I18N::translateContext('FEMALE', '%d × cousin', $n); + return I18N::translateContext('FEMALE', '%s × cousin', I18N::number($n)); } default: switch ($n) { @@ -587,7 +587,7 @@ function cousin_name($n, $sex) { case 15: return I18N::translateContext('MALE/FEMALE', 'fifteenth cousin'); default: - return I18N::translateContext('MALE/FEMALE', '%d × cousin', $n); + return I18N::translateContext('MALE/FEMALE', '%s × cousin', I18N::number($n)); } } } @@ -1634,26 +1634,26 @@ function get_relationship_name_from_path($path, Individual $person1 = null, Indi case 'da': switch ($sex2) { case 'M': - return I18N::translate('great ×%d uncle', $up - 4); + return I18N::translate('great ×%s uncle', I18N::number($up - 4)); case 'F': - return I18N::translate('great ×%d aunt', $up - 4); + return I18N::translate('great ×%s aunt', I18N::number($up - 4)); default: - return I18N::translate('great ×%d aunt/uncle', $up - 4); + return I18N::translate('great ×%s aunt/uncle', I18N::number($up - 4)); } case 'pl': switch ($sex2) { case 'M': if ($bef_last === 'fat') { - return I18N::translateContext('great ×(%d-1) grandfather’s brother', 'great ×%d uncle', $up - 2); + return I18N::translateContext('great ×(%s-1) grandfather’s brother', 'great ×%s uncle', I18N::number($up - 2)); } elseif ($bef_last === 'mot') { - return I18N::translateContext('great ×(%d-1) grandmother’s brother', 'great ×%d uncle', $up - 2); + return I18N::translateContext('great ×(%s-1) grandmother’s brother', 'great ×%s uncle', I18N::number($up - 2)); } else { - return I18N::translateContext('great ×(%d-1) grandparent’s brother', 'great ×%d uncle', $up - 2); + return I18N::translateContext('great ×(%s-1) grandparent’s brother', 'great ×%s uncle', I18N::number($up - 2)); } case 'F': - return I18N::translate('great ×%d aunt', $up - 2); + return I18N::translate('great ×%s aunt', I18N::number($up - 2)); default: - return I18N::translate('great ×%d aunt/uncle', $up - 2); + return I18N::translate('great ×%s aunt/uncle', I18N::number($up - 2)); } case 'it': // Source: Michele Locati case 'en_AU': @@ -1661,12 +1661,12 @@ function get_relationship_name_from_path($path, Individual $person1 = null, Indi case 'en_US': default: switch ($sex2) { - case 'M': // I18N: if you need a different number for %d, contact the developers, as a code-change is required - return I18N::translate('great ×%d uncle', $up - 1); + case 'M': // I18N: if you need a different number for %s, contact the developers, as a code-change is required + return I18N::translate('great ×%s uncle', I18N::number($up - 1)); case 'F': - return I18N::translate('great ×%d aunt', $up - 1); + return I18N::translate('great ×%s aunt', I18N::number($up - 1)); default: - return I18N::translate('great ×%d aunt/uncle', $up - 1); + return I18N::translate('great ×%s aunt/uncle', I18N::number($up - 1)); } } } @@ -1794,37 +1794,37 @@ function get_relationship_name_from_path($path, Individual $person1 = null, Indi switch ($sex2) { case 'M': if ($first === 'bro' && $sex1 === 'M') { - return I18N::translateContext('(a man’s) brother’s great ×(%d-1) grandson', 'great ×%d nephew', $down - 3); + return I18N::translateContext('(a man’s) brother’s great ×(%s-1) grandson', 'great ×%s nephew', I18N::number($down - 3)); } elseif ($first === 'sis' && $sex1 === 'M') { - return I18N::translateContext('(a man’s) sister’s great ×(%d-1) grandson', 'great ×%d nephew', $down - 3); + return I18N::translateContext('(a man’s) sister’s great ×(%s-1) grandson', 'great ×%s nephew', I18N::number($down - 3)); } else { - return I18N::translateContext('(a woman’s) great ×%d nephew', 'great ×%d nephew', $down - 3); + return I18N::translateContext('(a woman’s) great ×%s nephew', 'great ×%s nephew', I18N::number($down - 3)); } case 'F': if ($first === 'bro' && $sex1 === 'M') { - return I18N::translateContext('(a man’s) brother’s great ×(%d-1) granddaughter', 'great ×%d niece', $down - 3); + return I18N::translateContext('(a man’s) brother’s great ×(%s-1) granddaughter', 'great ×%s niece', I18N::number($down - 3)); } elseif ($first === 'sis' && $sex1 === 'M') { - return I18N::translateContext('(a man’s) sister’s great ×(%d-1) granddaughter', 'great ×%d niece', $down - 3); + return I18N::translateContext('(a man’s) sister’s great ×(%s-1) granddaughter', 'great ×%s niece', I18N::number($down - 3)); } else { - return I18N::translateContext('(a woman’s) great ×%d niece', 'great ×%d niece', $down - 3); + return I18N::translateContext('(a woman’s) great ×%s niece', 'great ×%s niece', I18N::number($down - 3)); } default: if ($first === 'bro' && $sex1 === 'M') { - return I18N::translateContext('(a man’s) brother’s great ×(%d-1) grandchild', 'great ×%d nephew/niece', $down - 3); + return I18N::translateContext('(a man’s) brother’s great ×(%s-1) grandchild', 'great ×% nephew/niece', I18N::number($down - 3)); } elseif ($first === 'sis' && $sex1 === 'M') { - return I18N::translateContext('(a man’s) sister’s great ×(%d-1) grandchild', 'great ×%d nephew/niece', $down - 3); + return I18N::translateContext('(a man’s) sister’s great ×(%s-1) grandchild', 'great ×%s nephew/niece', I18N::number($down - 3)); } else { - return I18N::translateContext('(a woman’s) great ×%d nephew/niece', 'great ×%d nephew/niece', $down - 3); + return I18N::translateContext('(a woman’s) great ×%s nephew/niece', 'great ×%s nephew/niece', I18N::number($down - 3)); } } case 'he': // Source: Meliza Amity switch ($sex2) { case 'M': - return I18N::translate('great ×%d nephew', $down - 1); + return I18N::translate('great ×%s nephew', I18N::number($down - 1)); case 'F': - return I18N::translate('great ×%d niece', $down - 1); + return I18N::translate('great ×%s niece', I18N::number($down - 1)); default: - return I18N::translate('great ×%d nephew/niece', $down - 1); + return I18N::translate('great ×%s nephew/niece', I18N::number($down - 1)); } case 'it': // Source: Michele Locati. case 'en_AU': @@ -1832,12 +1832,12 @@ function get_relationship_name_from_path($path, Individual $person1 = null, Indi case 'en_US': default: switch ($sex2) { - case 'M': // I18N: if you need a different number for %d, contact the developers, as a code-change is required - return I18N::translate('great ×%d nephew', $down - 2); + case 'M': // I18N: if you need a different number for %s, contact the developers, as a code-change is required + return I18N::translate('great ×%s nephew', I18N::number($down - 2)); case 'F': - return I18N::translate('great ×%d niece', $down - 2); + return I18N::translate('great ×%s niece', I18N::number($down - 2)); default: - return I18N::translate('great ×%d nephew/niece', $down - 2); + return I18N::translate('great ×%s nephew/niece', I18N::number($down - 2)); } } } @@ -1909,53 +1909,53 @@ function get_relationship_name_from_path($path, Individual $person1 = null, Indi case 'da': // Source: Patrick Sorensen switch ($sex2) { case 'M': - return I18N::translate('great ×%d grandfather', $up - 3); + return I18N::translate('great ×%s grandfather', I18N::number($up - 3)); case 'F': - return I18N::translate('great ×%d grandmother', $up - 3); + return I18N::translate('great ×%s grandmother', I18N::number($up - 3)); default: - return I18N::translate('great ×%d grandparent', $up - 3); + return I18N::translate('great ×%s grandparent', I18N::number($up - 3)); } case 'it': // Source: Michele Locati case 'es': // Source: Wes Groleau switch ($sex2) { case 'M': - return I18N::translate('great ×%d grandfather', $up); + return I18N::translate('great ×%s grandfather', I18N::number($up)); case 'F': - return I18N::translate('great ×%d grandmother', $up); + return I18N::translate('great ×%s grandmother', I18N::number($up)); default: - return I18N::translate('great ×%d grandparent', $up); + return I18N::translate('great ×%s grandparent', I18N::number($up)); } case 'fr': // Source: Jacqueline Tetreault case 'fr_CA': switch ($sex2) { case 'M': - return I18N::translate('great ×%d grandfather', $up - 1); + return I18N::translate('great ×%s grandfather', I18N::number($up - 1)); case 'F': - return I18N::translate('great ×%d grandmother', $up - 1); + return I18N::translate('great ×%s grandmother', I18N::number($up - 1)); default: - return I18N::translate('great ×%d grandparent', $up - 1); + return I18N::translate('great ×%s grandparent', I18N::number($up - 1)); } case 'nn': // Source: Hogne Røed Nilsen (https://bugs.launchpad.net/webtrees/+bug/1168553) case 'nb': switch ($sex2) { - case 'M': // I18N: if you need a different number for %d, contact the developers, as a code-change is required - return I18N::translate('great ×%d grandfather', $up - 3); + case 'M': // I18N: if you need a different number for %s, contact the developers, as a code-change is required + return I18N::translate('great ×%s grandfather', I18N::number($up - 3)); case 'F': - return I18N::translate('great ×%d grandmother', $up - 3); + return I18N::translate('great ×%s grandmother', I18N::number($up - 3)); default: - return I18N::translate('great ×%d grandparent', $up - 3); + return I18N::translate('great ×%s grandparent', I18N::number($up - 3)); } case 'en_AU': case 'en_GB': case 'en_US': default: switch ($sex2) { - case 'M': // I18N: if you need a different number for %d, contact the developers, as a code-change is required - return I18N::translate('great ×%d grandfather', $up - 2); + case 'M': // I18N: if you need a different number for %s, contact the developers, as a code-change is required + return I18N::translate('great ×%s grandfather', I18N::number($up - 2)); case 'F': - return I18N::translate('great ×%d grandmother', $up - 2); + return I18N::translate('great ×%s grandmother', I18N::number($up - 2)); default: - return I18N::translate('great ×%d grandparent', $up - 2); + return I18N::translate('great ×%s grandparent', I18N::number($up - 2)); } } } @@ -2035,11 +2035,11 @@ function get_relationship_name_from_path($path, Individual $person1 = null, Indi case 'da': // Source: Patrick Sorensen switch ($sex2) { case 'M': - return I18N::translate('great ×%d grandson', $up - 3); + return I18N::translate('great ×%s grandson', I18N::number($up - 3)); case 'F': - return I18N::translate('great ×%d granddaughter', $up - 3); + return I18N::translate('great ×%s granddaughter', I18N::number($up - 3)); default: - return I18N::translate('great ×%d grandchild', $up - 3); + return I18N::translate('great ×%s grandchild', I18N::number($up - 3)); } case 'it': // Source: Michele Locati case 'es': // Source: Wes Groleau (adding doesn’t change behavior, but needs to be better researched) @@ -2049,12 +2049,12 @@ function get_relationship_name_from_path($path, Individual $person1 = null, Indi default: switch ($sex2) { - case 'M': // I18N: if you need a different number for %d, contact the developers, as a code-change is required - return I18N::translate('great ×%d grandson', $up - 2); + case 'M': // I18N: if you need a different number for %s, contact the developers, as a code-change is required + return I18N::translate('great ×%s grandson', I18N::number($up - 2)); case 'F': - return I18N::translate('great ×%d granddaughter', $up - 2); + return I18N::translate('great ×%s granddaughter', I18N::number($up - 2)); default: - return I18N::translate('great ×%d grandchild', $up - 2); + return I18N::translate('great ×%s grandchild', I18N::number(up - 2)); } } } diff --git a/language/af.po b/language/af.po index 50cd361b09..fa6f6c8993 100644 --- a/language/af.po +++ b/language/af.po @@ -187,49 +187,49 @@ msgstr "" #: app/Module/LoggedInUsersModule.php:51 app/Stats.php:5372 #, php-format -msgid "%d anonymous logged-in user" -msgid_plural "%d anonymous logged-in users" +msgid "%s anonymous logged-in user" +msgid_plural "%s anonymous logged-in users" msgstr[0] "" msgstr[1] "" #: app/Module/LoggedInUsersModule.php:57 app/Stats.php:5382 #, php-format -msgid "%d logged-in user" -msgid_plural "%d logged-in users" +msgid "%s logged-in user" +msgid_plural "%s logged-in users" msgstr[0] "" msgstr[1] "" #: app/Module/RelativesTabModule.php:62 #, php-format -msgid "%d month" -msgid_plural "%d months" +msgid "%s month" +msgid_plural "%s months" msgstr[0] "" msgstr[1] "" #: app/Module/RelativesTabModule.php:60 #, php-format -msgid "%d year" -msgid_plural "%d years" +msgid "%s year" +msgid_plural "%s years" msgstr[0] "" msgstr[1] "" #: includes/functions/functions.php:555 #, php-format msgctxt "FEMALE" -msgid "%d × cousin" +msgid "%s × cousin" msgstr "" #. I18N: Note that for Italian and Polish, “N’th cousins” are different from English “N’th cousins”, and the software has already generated the correct “N” for your language. You only need to translate - you do not need to convert. For other languages, if your cousin rules are different from English, please contact the developers. #: includes/functions/functions.php:520 #, php-format msgctxt "MALE" -msgid "%d × cousin" +msgid "%s × cousin" msgstr "" #: includes/functions/functions.php:590 #, php-format msgctxt "MALE/FEMALE" -msgid "%d × cousin" +msgid "%s × cousin" msgstr "" #. I18N: This is the format string for full dates. See http://php.net/date for codes @@ -14301,7 +14301,7 @@ msgstr "" #: setup.php:183 #, php-format -msgid "This server’s memory limit is %d MB and its CPU time limit is %d seconds." +msgid "This server’s memory limit is %s MB and its CPU time limit is %s seconds." msgstr "" #. I18N: Help text for the “Other facts to show in charts” configuration setting @@ -16977,145 +16977,145 @@ msgstr "" #: includes/functions/functions.php:1639 includes/functions/functions.php:1654 #: includes/functions/functions.php:1667 #, php-format -msgid "great ×%d aunt" +msgid "great ×%s aunt" msgstr "" #: includes/functions/functions.php:1641 includes/functions/functions.php:1656 #: includes/functions/functions.php:1669 #, php-format -msgid "great ×%d aunt/uncle" +msgid "great ×%s aunt/uncle" msgstr "" #: includes/functions/functions.php:2042 includes/functions/functions.php:2057 #, php-format -msgid "great ×%d grandchild" +msgid "great ×%s grandchild" msgstr "" #: includes/functions/functions.php:2040 includes/functions/functions.php:2055 #, php-format -msgid "great ×%d granddaughter" +msgid "great ×%s granddaughter" msgstr "" -#. I18N: if you need a different number for %d, contact the developers, as a code-change is required +#. I18N: if you need a different number for %s, contact the developers, as a code-change is required #: includes/functions/functions.php:1912 includes/functions/functions.php:1922 #: includes/functions/functions.php:1932 includes/functions/functions.php:1942 #: includes/functions/functions.php:1954 #, php-format -msgid "great ×%d grandfather" +msgid "great ×%s grandfather" msgstr "" #: includes/functions/functions.php:1914 includes/functions/functions.php:1924 #: includes/functions/functions.php:1934 includes/functions/functions.php:1944 #: includes/functions/functions.php:1956 #, php-format -msgid "great ×%d grandmother" +msgid "great ×%s grandmother" msgstr "" #: includes/functions/functions.php:1916 includes/functions/functions.php:1926 #: includes/functions/functions.php:1936 includes/functions/functions.php:1946 #: includes/functions/functions.php:1958 #, php-format -msgid "great ×%d grandparent" +msgid "great ×%s grandparent" msgstr "" -#. I18N: if you need a different number for %d, contact the developers, as a code-change is required +#. I18N: if you need a different number for %s, contact the developers, as a code-change is required #: includes/functions/functions.php:2038 includes/functions/functions.php:2053 #, php-format -msgid "great ×%d grandson" +msgid "great ×%s grandson" msgstr "" -#. I18N: if you need a different number for %d, contact the developers, as a code-change is required +#. I18N: if you need a different number for %s, contact the developers, as a code-change is required #: includes/functions/functions.php:1823 includes/functions/functions.php:1836 #, php-format -msgid "great ×%d nephew" +msgid "great ×%s nephew" msgstr "" #: includes/functions/functions.php:1797 #, php-format -msgctxt "(a man’s) brother’s great ×(%d-1) grandson" -msgid "great ×%d nephew" +msgctxt "(a man’s) brother’s great ×(%s-1) grandson" +msgid "great ×%s nephew" msgstr "" #: includes/functions/functions.php:1799 #, php-format -msgctxt "(a man’s) sister’s great ×(%d-1) grandson" -msgid "great ×%d nephew" +msgctxt "(a man’s) sister’s great ×(%s-1) grandson" +msgid "great ×%s nephew" msgstr "" #: includes/functions/functions.php:1801 #, php-format -msgctxt "(a woman’s) great ×%d nephew" -msgid "great ×%d nephew" +msgctxt "(a woman’s) great ×%s nephew" +msgid "great ×%s nephew" msgstr "" #: includes/functions/functions.php:1827 includes/functions/functions.php:1840 #, php-format -msgid "great ×%d nephew/niece" +msgid "great ×%s nephew/niece" msgstr "" #: includes/functions/functions.php:1813 #, php-format -msgctxt "(a man’s) brother’s great ×(%d-1) grandchild" -msgid "great ×%d nephew/niece" +msgctxt "(a man’s) brother’s great ×(%s-1) grandchild" +msgid "great ×%s nephew/niece" msgstr "" #: includes/functions/functions.php:1815 #, php-format -msgctxt "(a man’s) sister’s great ×(%d-1) grandchild" -msgid "great ×%d nephew/niece" +msgctxt "(a man’s) sister’s great ×(%s-1) grandchild" +msgid "great ×%s nephew/niece" msgstr "" #: includes/functions/functions.php:1817 #, php-format -msgctxt "(a woman’s) great ×%d nephew/niece" -msgid "great ×%d nephew/niece" +msgctxt "(a woman’s) great ×%s nephew/niece" +msgid "great ×%s nephew/niece" msgstr "" #: includes/functions/functions.php:1825 includes/functions/functions.php:1838 #, php-format -msgid "great ×%d niece" +msgid "great ×%s niece" msgstr "" #: includes/functions/functions.php:1805 #, php-format -msgctxt "(a man’s) brother’s great ×(%d-1) granddaughter" -msgid "great ×%d niece" +msgctxt "(a man’s) brother’s great ×(%s-1) granddaughter" +msgid "great ×%s niece" msgstr "" #: includes/functions/functions.php:1807 #, php-format -msgctxt "(a man’s) sister’s great ×(%d-1) granddaughter" -msgid "great ×%d niece" +msgctxt "(a man’s) sister’s great ×(%s-1) granddaughter" +msgid "great ×%s niece" msgstr "" #: includes/functions/functions.php:1809 #, php-format -msgctxt "(a woman’s) great ×%d niece" -msgid "great ×%d niece" +msgctxt "(a woman’s) great ×%s niece" +msgid "great ×%s niece" msgstr "" -#. I18N: if you need a different number for %d, contact the developers, as a code-change is required +#. I18N: if you need a different number for %s, contact the developers, as a code-change is required #: includes/functions/functions.php:1637 includes/functions/functions.php:1665 #, php-format -msgid "great ×%d uncle" +msgid "great ×%s uncle" msgstr "" #: includes/functions/functions.php:1647 #, php-format -msgctxt "great ×(%d-1) grandfather’s brother" -msgid "great ×%d uncle" +msgctxt "great ×(%s-1) grandfather’s brother" +msgid "great ×%s uncle" msgstr "" #: includes/functions/functions.php:1649 #, php-format -msgctxt "great ×(%d-1) grandmother’s brother" -msgid "great ×%d uncle" +msgctxt "great ×(%s-1) grandmother’s brother" +msgid "great ×%s uncle" msgstr "" #: includes/functions/functions.php:1651 #, php-format -msgctxt "great ×(%d-1) grandparent’s brother" -msgid "great ×%d uncle" +msgctxt "great ×(%s-1) grandparent’s brother" +msgid "great ×%s uncle" msgstr "" #: includes/functions/functions.php:1579 @@ -18566,10 +18566,10 @@ msgstr "maksimum" #: app/Module/UpcomingAnniversariesModule.php:125 #: app/Module/YahrzeitModule.php:250 #, php-format -msgid "maximum %d day" -msgid_plural "maximum %d days" -msgstr[0] "hoogstens %d dag" -msgstr[1] "hoogstens %d dae" +msgid "maximum %s day" +msgid_plural "maximum %s days" +msgstr[0] "hoogstens %s dag" +msgstr[1] "hoogstens %s dae" #: admin_trees_config.php:404 admin_trees_config.php:428 #: admin_trees_config.php:468 admin_trees_config.php:508 diff --git a/language/ar.po b/language/ar.po index 27dae6bc77..04665700dc 100644 --- a/language/ar.po +++ b/language/ar.po @@ -202,66 +202,66 @@ msgstr "%h:%i:%s%A" #: app/Module/LoggedInUsersModule.php:51 app/Stats.php:5372 #, php-format -msgid "%d anonymous logged-in user" -msgid_plural "%d anonymous logged-in users" +msgid "%s anonymous logged-in user" +msgid_plural "%s anonymous logged-in users" msgstr[0] "لا يوجد أي مستخدماً مسجلاً مجهولاً" msgstr[1] "مستخدماً واحد مسجلاً مجهول" msgstr[2] "إثنين مستخدمين مسجلين مجهولين" -msgstr[3] "%d مستخدمين مسجلين مجهولين" -msgstr[4] "%d مستخدماُ مسجلاً مجهولاً" -msgstr[5] "%d مستخدماُ مسجلاً مجهولاً" +msgstr[3] "%s مستخدمين مسجلين مجهولين" +msgstr[4] "%s مستخدماُ مسجلاً مجهولاً" +msgstr[5] "%s مستخدماُ مسجلاً مجهولاً" #: app/Module/LoggedInUsersModule.php:57 app/Stats.php:5382 #, php-format -msgid "%d logged-in user" -msgid_plural "%d logged-in users" +msgid "%s logged-in user" +msgid_plural "%s logged-in users" msgstr[0] "لا يوجد أي مستخدماً مسجلاً" msgstr[1] "مستخدماً مسجلاً واحداً" msgstr[2] "إثنين مستخدمين مسجلين" -msgstr[3] "%d مستخدمين مسجلين" -msgstr[4] "%d مستخدماً مسجلاً" -msgstr[5] "%d مستخدماً مسجلاً" +msgstr[3] "%s مستخدمين مسجلين" +msgstr[4] "%s مستخدماً مسجلاً" +msgstr[5] "%s مستخدماً مسجلاً" #: app/Module/RelativesTabModule.php:62 #, php-format -msgid "%d month" -msgid_plural "%d months" -msgstr[0] "%d شهراً" +msgid "%s month" +msgid_plural "%s months" +msgstr[0] "%s شهراً" msgstr[1] "شهراً واحداً" msgstr[2] "شهران" -msgstr[3] "%d أشهر" -msgstr[4] "%d شهراً" -msgstr[5] "%d شهراً" +msgstr[3] "%s أشهر" +msgstr[4] "%s شهراً" +msgstr[5] "%s شهراً" #: app/Module/RelativesTabModule.php:60 #, php-format -msgid "%d year" -msgid_plural "%d years" -msgstr[0] "%d أعوام" +msgid "%s year" +msgid_plural "%s years" +msgstr[0] "%s أعوام" msgstr[1] "عاماً واحداً" msgstr[2] "عامان" -msgstr[3] "%d أعوام" -msgstr[4] "%d عاماً" -msgstr[5] "%d عاماً" +msgstr[3] "%s أعوام" +msgstr[4] "%s عاماً" +msgstr[5] "%s عاماً" #: includes/functions/functions.php:555 #, php-format msgctxt "FEMALE" -msgid "%d × cousin" -msgstr "حفيدة %d لسلف مشترك" +msgid "%s × cousin" +msgstr "حفيدة %s لسلف مشترك" #. I18N: Note that for Italian and Polish, “N’th cousins” are different from English “N’th cousins”, and the software has already generated the correct “N” for your language. You only need to translate - you do not need to convert. For other languages, if your cousin rules are different from English, please contact the developers. #: includes/functions/functions.php:520 #, php-format msgctxt "MALE" -msgid "%d × cousin" -msgstr "حفيد %d لسلف مشترك" +msgid "%s × cousin" +msgstr "حفيد %s لسلف مشترك" #: includes/functions/functions.php:590 #, php-format msgctxt "MALE/FEMALE" -msgid "%d × cousin" -msgstr "حفيد %d لسلف مشترك" +msgid "%s × cousin" +msgstr "حفيد %s لسلف مشترك" #. I18N: This is the format string for full dates. See http://php.net/date for codes #: app/Date.php:222 app/I18N.php:212 @@ -14440,8 +14440,8 @@ msgstr "" #: setup.php:183 #, php-format -msgid "This server’s memory limit is %d MB and its CPU time limit is %d seconds." -msgstr "حد ذاكرة الخادم هو %dم.ب. وحد زمن إستخدام المعالج المركزي هو %d ثانية." +msgid "This server’s memory limit is %s MB and its CPU time limit is %s seconds." +msgstr "حد ذاكرة الخادم هو %sم.ب. وحد زمن إستخدام المعالج المركزي هو %s ثانية." #. I18N: Help text for the “Other facts to show in charts” configuration setting #: admin_trees_config.php:1632 @@ -17132,146 +17132,146 @@ msgstr "زوجة إبن إبن" #: includes/functions/functions.php:1639 includes/functions/functions.php:1654 #: includes/functions/functions.php:1667 #, php-format -msgid "great ×%d aunt" -msgstr "أخت جد-أب %d" +msgid "great ×%s aunt" +msgstr "أخت جد-أب %s" #: includes/functions/functions.php:1641 includes/functions/functions.php:1656 #: includes/functions/functions.php:1669 #, php-format -msgid "great ×%d aunt/uncle" -msgstr "أخ/أخت جد-أب %d" +msgid "great ×%s aunt/uncle" +msgstr "أخ/أخت جد-أب %s" #: includes/functions/functions.php:2042 includes/functions/functions.php:2057 #, php-format -msgid "great ×%d grandchild" -msgstr "حفيد %d" +msgid "great ×%s grandchild" +msgstr "حفيد %s" #: includes/functions/functions.php:2040 includes/functions/functions.php:2055 #, php-format -msgid "great ×%d granddaughter" -msgstr "حفيدة %d" +msgid "great ×%s granddaughter" +msgstr "حفيدة %s" -#. I18N: if you need a different number for %d, contact the developers, as a code-change is required +#. I18N: if you need a different number for %s, contact the developers, as a code-change is required #: includes/functions/functions.php:1912 includes/functions/functions.php:1922 #: includes/functions/functions.php:1932 includes/functions/functions.php:1942 #: includes/functions/functions.php:1954 #, php-format -msgid "great ×%d grandfather" -msgstr "أب جد %d" +msgid "great ×%s grandfather" +msgstr "أب جد %s" #: includes/functions/functions.php:1914 includes/functions/functions.php:1924 #: includes/functions/functions.php:1934 includes/functions/functions.php:1944 #: includes/functions/functions.php:1956 #, php-format -msgid "great ×%d grandmother" -msgstr "أم جد %d" +msgid "great ×%s grandmother" +msgstr "أم جد %s" #: includes/functions/functions.php:1916 includes/functions/functions.php:1926 #: includes/functions/functions.php:1936 includes/functions/functions.php:1946 #: includes/functions/functions.php:1958 #, php-format -msgid "great ×%d grandparent" -msgstr "والد جد %d" +msgid "great ×%s grandparent" +msgstr "والد جد %s" -#. I18N: if you need a different number for %d, contact the developers, as a code-change is required +#. I18N: if you need a different number for %s, contact the developers, as a code-change is required #: includes/functions/functions.php:2038 includes/functions/functions.php:2053 #, php-format -msgid "great ×%d grandson" -msgstr "حفيد %d" +msgid "great ×%s grandson" +msgstr "حفيد %s" -#. I18N: if you need a different number for %d, contact the developers, as a code-change is required +#. I18N: if you need a different number for %s, contact the developers, as a code-change is required #: includes/functions/functions.php:1823 includes/functions/functions.php:1836 #, php-format -msgid "great ×%d nephew" -msgstr "إبن حفيد %d لأخ/لأخت" +msgid "great ×%s nephew" +msgstr "إبن حفيد %s لأخ/لأخت" #: includes/functions/functions.php:1797 #, php-format -msgctxt "(a man’s) brother’s great ×(%d-1) grandson" -msgid "great ×%d nephew" -msgstr "إبن حفيد %d لأخ" +msgctxt "(a man’s) brother’s great ×(%s-1) grandson" +msgid "great ×%s nephew" +msgstr "إبن حفيد %s لأخ" #: includes/functions/functions.php:1799 #, php-format -msgctxt "(a man’s) sister’s great ×(%d-1) grandson" -msgid "great ×%d nephew" -msgstr "إبن حفيد %d لأخت" +msgctxt "(a man’s) sister’s great ×(%s-1) grandson" +msgid "great ×%s nephew" +msgstr "إبن حفيد %s لأخت" #: includes/functions/functions.php:1801 #, php-format -msgctxt "(a woman’s) great ×%d nephew" -msgid "great ×%d nephew" -msgstr "إبن حفيد %d لأخ/أخت" +msgctxt "(a woman’s) great ×%s nephew" +msgid "great ×%s nephew" +msgstr "إبن حفيد %s لأخ/أخت" #: includes/functions/functions.php:1827 includes/functions/functions.php:1840 #, php-format -msgid "great ×%d nephew/niece" -msgstr "ولد حفيد %d لأخ/لأخت" +msgid "great ×%s nephew/niece" +msgstr "ولد حفيد %s لأخ/لأخت" #: includes/functions/functions.php:1813 #, php-format -msgctxt "(a man’s) brother’s great ×(%d-1) grandchild" -msgid "great ×%d nephew/niece" -msgstr "ولد حفيد %d لأخ" +msgctxt "(a man’s) brother’s great ×(%s-1) grandchild" +msgid "great ×%s nephew/niece" +msgstr "ولد حفيد %s لأخ" #: includes/functions/functions.php:1815 #, php-format -msgctxt "(a man’s) sister’s great ×(%d-1) grandchild" -msgid "great ×%d nephew/niece" -msgstr "ولد حفيد %d لأخت" +msgctxt "(a man’s) sister’s great ×(%s-1) grandchild" +msgid "great ×%s nephew/niece" +msgstr "ولد حفيد %s لأخت" #: includes/functions/functions.php:1817 #, php-format -msgctxt "(a woman’s) great ×%d nephew/niece" -msgid "great ×%d nephew/niece" -msgstr "ولد حفيد %d لأخ/لأخت" +msgctxt "(a woman’s) great ×%s nephew/niece" +msgid "great ×%s nephew/niece" +msgstr "ولد حفيد %s لأخ/لأخت" #: includes/functions/functions.php:1825 includes/functions/functions.php:1838 #, php-format -msgid "great ×%d niece" -msgstr "بنت حفيد %d لأخ/لأخت" +msgid "great ×%s niece" +msgstr "بنت حفيد %s لأخ/لأخت" #: includes/functions/functions.php:1805 #, php-format -msgctxt "(a man’s) brother’s great ×(%d-1) granddaughter" -msgid "great ×%d niece" -msgstr "بنت حفيد %d لأخ" +msgctxt "(a man’s) brother’s great ×(%s-1) granddaughter" +msgid "great ×%s niece" +msgstr "بنت حفيد %s لأخ" #: includes/functions/functions.php:1807 #, php-format -msgctxt "(a man’s) sister’s great ×(%d-1) granddaughter" -msgid "great ×%d niece" -msgstr "بنت حفيد %d لأخت" +msgctxt "(a man’s) sister’s great ×(%s-1) granddaughter" +msgid "great ×%s niece" +msgstr "بنت حفيد %s لأخت" #: includes/functions/functions.php:1809 #, php-format -msgctxt "(a woman’s) great ×%d niece" -msgid "great ×%d niece" -msgstr "بنت حفيد %d لأخ/لأخت" +msgctxt "(a woman’s) great ×%s niece" +msgid "great ×%s niece" +msgstr "بنت حفيد %s لأخ/لأخت" -#. I18N: if you need a different number for %d, contact the developers, as a code-change is required +#. I18N: if you need a different number for %s, contact the developers, as a code-change is required #: includes/functions/functions.php:1637 includes/functions/functions.php:1665 #, php-format -msgid "great ×%d uncle" -msgstr "أخ جد-أب %d" +msgid "great ×%s uncle" +msgstr "أخ جد-أب %s" #: includes/functions/functions.php:1647 #, php-format -msgctxt "great ×(%d-1) grandfather’s brother" -msgid "great ×%d uncle" -msgstr "أخ جد-أب %d" +msgctxt "great ×(%s-1) grandfather’s brother" +msgid "great ×%s uncle" +msgstr "أخ جد-أب %s" #: includes/functions/functions.php:1649 #, php-format -msgctxt "great ×(%d-1) grandmother’s brother" -msgid "great ×%d uncle" -msgstr "أخ جد-أم %d" +msgctxt "great ×(%s-1) grandmother’s brother" +msgid "great ×%s uncle" +msgstr "أخ جد-أم %s" #: includes/functions/functions.php:1651 #, php-format -msgctxt "great ×(%d-1) grandparent’s brother" -msgid "great ×%d uncle" -msgstr "أخ جد-والد %d" +msgctxt "great ×(%s-1) grandparent’s brother" +msgid "great ×%s uncle" +msgstr "أخ جد-والد %s" #: includes/functions/functions.php:1579 msgid "great ×4 aunt" @@ -18725,14 +18725,14 @@ msgstr "الأقصى" #: app/Module/UpcomingAnniversariesModule.php:125 #: app/Module/YahrzeitModule.php:250 #, php-format -msgid "maximum %d day" -msgid_plural "maximum %d days" +msgid "maximum %s day" +msgid_plural "maximum %s days" msgstr[0] "لا يوجد" msgstr[1] "يوماً واحد بحد أقصى" msgstr[2] "يومان بحد أقصى" -msgstr[3] "%d أيام بحد أقصى" -msgstr[4] "%d يوماً بحد أقصى" -msgstr[5] "%d يوماً بحد أقصى" +msgstr[3] "%s أيام بحد أقصى" +msgstr[4] "%s يوماً بحد أقصى" +msgstr[5] "%s يوماً بحد أقصى" #: admin_trees_config.php:404 admin_trees_config.php:428 #: admin_trees_config.php:468 admin_trees_config.php:508 @@ -20227,14 +20227,14 @@ msgstr "…" #~ msgid "No other link between the two individuals could be found." #~ msgstr "لم يتم العثور على مسار آخر للقرابة" -#~ msgid "Note: “living” is defined (if no death or burial is known) as ending %d year after birth or estimated birth." -#~ msgid_plural "Note: “living” is defined (if no death or burial is known) as ending %d years after birth or estimated birth." +#~ msgid "Note: “living” is defined (if no death or burial is known) as ending %s year after birth or estimated birth." +#~ msgid_plural "Note: “living” is defined (if no death or burial is known) as ending %s years after birth or estimated birth." #~ msgstr[0] "على قيد الحياة يعرف كذلك (عند عدم معرفة الوفاة أو الدفن)" #~ msgstr[1] "على قيد الحياة يعرف كذلك (عند عدم معرفة الوفاة أو الدفن) بمرور عاماً واحداً بعد الميلاد." #~ msgstr[2] "على قيد الحياة يعرف كذلك (عند عدم معرفة الوفاة أو الدفن) بمرور عامين بعد الميلاد." -#~ msgstr[3] "على قيد الحياة يعرف كذلك (عند عدم معرفة الوفاة أو الدفن) بمرور %d أعوام بعد الميلاد." -#~ msgstr[4] "على قيد الحياة يعرف كذلك (عند عدم معرفة الوفاة أو الدفن) بمرور %d عاماً بعد الميلاد." -#~ msgstr[5] "على قيد الحياة يعرف كذلك (عند عدم معرفة الوفاة أو الدفن) بمرور %d عام بعد الميلاد." +#~ msgstr[3] "على قيد الحياة يعرف كذلك (عند عدم معرفة الوفاة أو الدفن) بمرور %s أعوام بعد الميلاد." +#~ msgstr[4] "على قيد الحياة يعرف كذلك (عند عدم معرفة الوفاة أو الدفن) بمرور %s عاماً بعد الميلاد." +#~ msgstr[5] "على قيد الحياة يعرف كذلك (عند عدم معرفة الوفاة أو الدفن) بمرور %s عام بعد الميلاد." #~ msgid "Notes are free-form text and will appear in the Fact Details section of the page." #~ msgstr "الملاحظات هي لوضع نص غير مقيد وسوف تظهر في قسم تفاصيل المعلومات." diff --git a/language/bg.po b/language/bg.po index d8a3f8700b..1b07698eed 100644 --- a/language/bg.po +++ b/language/bg.po @@ -187,49 +187,49 @@ msgstr "" #: app/Module/LoggedInUsersModule.php:51 app/Stats.php:5372 #, php-format -msgid "%d anonymous logged-in user" -msgid_plural "%d anonymous logged-in users" -msgstr[0] "%d анонимен потребител" -msgstr[1] "%d анонимени потребители" +msgid "%s anonymous logged-in user" +msgid_plural "%s anonymous logged-in users" +msgstr[0] "%s анонимен потребител" +msgstr[1] "%s анонимени потребители" #: app/Module/LoggedInUsersModule.php:57 app/Stats.php:5382 #, php-format -msgid "%d logged-in user" -msgid_plural "%d logged-in users" -msgstr[0] "%d потребител" -msgstr[1] "%d потребители" +msgid "%s logged-in user" +msgid_plural "%s logged-in users" +msgstr[0] "%s потребител" +msgstr[1] "%s потребители" #: app/Module/RelativesTabModule.php:62 #, php-format -msgid "%d month" -msgid_plural "%d months" +msgid "%s month" +msgid_plural "%s months" msgstr[0] "" msgstr[1] "" #: app/Module/RelativesTabModule.php:60 #, php-format -msgid "%d year" -msgid_plural "%d years" -msgstr[0] "%d година" -msgstr[1] "%d години" +msgid "%s year" +msgid_plural "%s years" +msgstr[0] "%s година" +msgstr[1] "%s години" #: includes/functions/functions.php:555 #, php-format msgctxt "FEMALE" -msgid "%d × cousin" +msgid "%s × cousin" msgstr "" #. I18N: Note that for Italian and Polish, “N’th cousins” are different from English “N’th cousins”, and the software has already generated the correct “N” for your language. You only need to translate - you do not need to convert. For other languages, if your cousin rules are different from English, please contact the developers. #: includes/functions/functions.php:520 #, php-format msgctxt "MALE" -msgid "%d × cousin" +msgid "%s × cousin" msgstr "" #: includes/functions/functions.php:590 #, php-format msgctxt "MALE/FEMALE" -msgid "%d × cousin" +msgid "%s × cousin" msgstr "" #. I18N: This is the format string for full dates. See http://php.net/date for codes @@ -14301,7 +14301,7 @@ msgstr "" #: setup.php:183 #, php-format -msgid "This server’s memory limit is %d MB and its CPU time limit is %d seconds." +msgid "This server’s memory limit is %s MB and its CPU time limit is %s seconds." msgstr "" #. I18N: Help text for the “Other facts to show in charts” configuration setting @@ -16977,145 +16977,145 @@ msgstr "" #: includes/functions/functions.php:1639 includes/functions/functions.php:1654 #: includes/functions/functions.php:1667 #, php-format -msgid "great ×%d aunt" -msgstr "пра- ×%d леля" +msgid "great ×%s aunt" +msgstr "пра- ×%s леля" #: includes/functions/functions.php:1641 includes/functions/functions.php:1656 #: includes/functions/functions.php:1669 #, php-format -msgid "great ×%d aunt/uncle" -msgstr "пра- ×%d леля/чичо" +msgid "great ×%s aunt/uncle" +msgstr "пра- ×%s леля/чичо" #: includes/functions/functions.php:2042 includes/functions/functions.php:2057 #, php-format -msgid "great ×%d grandchild" +msgid "great ×%s grandchild" msgstr "" #: includes/functions/functions.php:2040 includes/functions/functions.php:2055 #, php-format -msgid "great ×%d granddaughter" +msgid "great ×%s granddaughter" msgstr "" -#. I18N: if you need a different number for %d, contact the developers, as a code-change is required +#. I18N: if you need a different number for %s, contact the developers, as a code-change is required #: includes/functions/functions.php:1912 includes/functions/functions.php:1922 #: includes/functions/functions.php:1932 includes/functions/functions.php:1942 #: includes/functions/functions.php:1954 #, php-format -msgid "great ×%d grandfather" +msgid "great ×%s grandfather" msgstr "" #: includes/functions/functions.php:1914 includes/functions/functions.php:1924 #: includes/functions/functions.php:1934 includes/functions/functions.php:1944 #: includes/functions/functions.php:1956 #, php-format -msgid "great ×%d grandmother" +msgid "great ×%s grandmother" msgstr "" #: includes/functions/functions.php:1916 includes/functions/functions.php:1926 #: includes/functions/functions.php:1936 includes/functions/functions.php:1946 #: includes/functions/functions.php:1958 #, php-format -msgid "great ×%d grandparent" +msgid "great ×%s grandparent" msgstr "" -#. I18N: if you need a different number for %d, contact the developers, as a code-change is required +#. I18N: if you need a different number for %s, contact the developers, as a code-change is required #: includes/functions/functions.php:2038 includes/functions/functions.php:2053 #, php-format -msgid "great ×%d grandson" +msgid "great ×%s grandson" msgstr "" -#. I18N: if you need a different number for %d, contact the developers, as a code-change is required +#. I18N: if you need a different number for %s, contact the developers, as a code-change is required #: includes/functions/functions.php:1823 includes/functions/functions.php:1836 #, php-format -msgid "great ×%d nephew" +msgid "great ×%s nephew" msgstr "" #: includes/functions/functions.php:1797 #, php-format -msgctxt "(a man’s) brother’s great ×(%d-1) grandson" -msgid "great ×%d nephew" +msgctxt "(a man’s) brother’s great ×(%s-1) grandson" +msgid "great ×%s nephew" msgstr "" #: includes/functions/functions.php:1799 #, php-format -msgctxt "(a man’s) sister’s great ×(%d-1) grandson" -msgid "great ×%d nephew" +msgctxt "(a man’s) sister’s great ×(%s-1) grandson" +msgid "great ×%s nephew" msgstr "" #: includes/functions/functions.php:1801 #, php-format -msgctxt "(a woman’s) great ×%d nephew" -msgid "great ×%d nephew" +msgctxt "(a woman’s) great ×%s nephew" +msgid "great ×%s nephew" msgstr "" #: includes/functions/functions.php:1827 includes/functions/functions.php:1840 #, php-format -msgid "great ×%d nephew/niece" +msgid "great ×%s nephew/niece" msgstr "" #: includes/functions/functions.php:1813 #, php-format -msgctxt "(a man’s) brother’s great ×(%d-1) grandchild" -msgid "great ×%d nephew/niece" +msgctxt "(a man’s) brother’s great ×(%s-1) grandchild" +msgid "great ×%s nephew/niece" msgstr "" #: includes/functions/functions.php:1815 #, php-format -msgctxt "(a man’s) sister’s great ×(%d-1) grandchild" -msgid "great ×%d nephew/niece" +msgctxt "(a man’s) sister’s great ×(%s-1) grandchild" +msgid "great ×%s nephew/niece" msgstr "" #: includes/functions/functions.php:1817 #, php-format -msgctxt "(a woman’s) great ×%d nephew/niece" -msgid "great ×%d nephew/niece" +msgctxt "(a woman’s) great ×%s nephew/niece" +msgid "great ×%s nephew/niece" msgstr "" #: includes/functions/functions.php:1825 includes/functions/functions.php:1838 #, php-format -msgid "great ×%d niece" +msgid "great ×%s niece" msgstr "" #: includes/functions/functions.php:1805 #, php-format -msgctxt "(a man’s) brother’s great ×(%d-1) granddaughter" -msgid "great ×%d niece" +msgctxt "(a man’s) brother’s great ×(%s-1) granddaughter" +msgid "great ×%s niece" msgstr "" #: includes/functions/functions.php:1807 #, php-format -msgctxt "(a man’s) sister’s great ×(%d-1) granddaughter" -msgid "great ×%d niece" +msgctxt "(a man’s) sister’s great ×(%s-1) granddaughter" +msgid "great ×%s niece" msgstr "" #: includes/functions/functions.php:1809 #, php-format -msgctxt "(a woman’s) great ×%d niece" -msgid "great ×%d niece" +msgctxt "(a woman’s) great ×%s niece" +msgid "great ×%s niece" msgstr "" -#. I18N: if you need a different number for %d, contact the developers, as a code-change is required +#. I18N: if you need a different number for %s, contact the developers, as a code-change is required #: includes/functions/functions.php:1637 includes/functions/functions.php:1665 #, php-format -msgid "great ×%d uncle" +msgid "great ×%s uncle" msgstr "" #: includes/functions/functions.php:1647 #, php-format -msgctxt "great ×(%d-1) grandfather’s brother" -msgid "great ×%d uncle" +msgctxt "great ×(%s-1) grandfather’s brother" +msgid "great ×%s uncle" msgstr "" #: includes/functions/functions.php:1649 #, php-format -msgctxt "great ×(%d-1) grandmother’s brother" -msgid "great ×%d uncle" +msgctxt "great ×(%s-1) grandmother’s brother" +msgid "great ×%s uncle" msgstr "" #: includes/functions/functions.php:1651 #, php-format -msgctxt "great ×(%d-1) grandparent’s brother" -msgid "great ×%d uncle" +msgctxt "great ×(%s-1) grandparent’s brother" +msgid "great ×%s uncle" msgstr "" #: includes/functions/functions.php:1579 @@ -18566,10 +18566,10 @@ msgstr "максимум" #: app/Module/UpcomingAnniversariesModule.php:125 #: app/Module/YahrzeitModule.php:250 #, php-format -msgid "maximum %d day" -msgid_plural "maximum %d days" -msgstr[0] "максимум %d ден" -msgstr[1] "максимум %d дни" +msgid "maximum %s day" +msgid_plural "maximum %s days" +msgstr[0] "максимум %s ден" +msgstr[1] "максимум %s дни" #: admin_trees_config.php:404 admin_trees_config.php:428 #: admin_trees_config.php:468 admin_trees_config.php:508 diff --git a/language/bs.po b/language/bs.po index b10957a375..40c1d7bcf7 100644 --- a/language/bs.po +++ b/language/bs.po @@ -188,54 +188,54 @@ msgstr "" #: app/Module/LoggedInUsersModule.php:51 app/Stats.php:5372 #, php-format -msgid "%d anonymous logged-in user" -msgid_plural "%d anonymous logged-in users" -msgstr[0] "%d anonimni prijavljeni korisnik" -msgstr[1] "%d anonimni prijavljeni korisnici" -msgstr[2] "%d anonimnih prijavljenih korisnika" +msgid "%s anonymous logged-in user" +msgid_plural "%s anonymous logged-in users" +msgstr[0] "%s anonimni prijavljeni korisnik" +msgstr[1] "%s anonimni prijavljeni korisnici" +msgstr[2] "%s anonimnih prijavljenih korisnika" #: app/Module/LoggedInUsersModule.php:57 app/Stats.php:5382 #, php-format -msgid "%d logged-in user" -msgid_plural "%d logged-in users" -msgstr[0] "%d prijavljeni korisnik" -msgstr[1] "%d prijavljeni korisnici" -msgstr[2] "%d prijavljenih korisnika" +msgid "%s logged-in user" +msgid_plural "%s logged-in users" +msgstr[0] "%s prijavljeni korisnik" +msgstr[1] "%s prijavljeni korisnici" +msgstr[2] "%s prijavljenih korisnika" #: app/Module/RelativesTabModule.php:62 #, php-format -msgid "%d month" -msgid_plural "%d months" -msgstr[0] "%d mjesec" -msgstr[1] "%d mjeseci" -msgstr[2] "%d mjeseci" +msgid "%s month" +msgid_plural "%s months" +msgstr[0] "%s mjesec" +msgstr[1] "%s mjeseci" +msgstr[2] "%s mjeseci" #: app/Module/RelativesTabModule.php:60 #, php-format -msgid "%d year" -msgid_plural "%d years" -msgstr[0] "%d godina" -msgstr[1] "%d godina" -msgstr[2] "%d godina" +msgid "%s year" +msgid_plural "%s years" +msgstr[0] "%s godina" +msgstr[1] "%s godina" +msgstr[2] "%s godina" #: includes/functions/functions.php:555 #, php-format msgctxt "FEMALE" -msgid "%d × cousin" -msgstr "%d × rodica" +msgid "%s × cousin" +msgstr "%s × rodica" #. I18N: Note that for Italian and Polish, “N’th cousins” are different from English “N’th cousins”, and the software has already generated the correct “N” for your language. You only need to translate - you do not need to convert. For other languages, if your cousin rules are different from English, please contact the developers. #: includes/functions/functions.php:520 #, php-format msgctxt "MALE" -msgid "%d × cousin" -msgstr "%d × rođak" +msgid "%s × cousin" +msgstr "%s × rođak" #: includes/functions/functions.php:590 #, php-format msgctxt "MALE/FEMALE" -msgid "%d × cousin" -msgstr "%d × rod" +msgid "%s × cousin" +msgstr "%s × rod" #. I18N: This is the format string for full dates. See http://php.net/date for codes #: app/Date.php:222 app/I18N.php:212 @@ -14333,7 +14333,7 @@ msgstr "" #: setup.php:183 #, php-format -msgid "This server’s memory limit is %d MB and its CPU time limit is %d seconds." +msgid "This server’s memory limit is %s MB and its CPU time limit is %s seconds." msgstr "" #. I18N: Help text for the “Other facts to show in charts” configuration setting @@ -17013,145 +17013,145 @@ msgstr "unukova supruga" #: includes/functions/functions.php:1639 includes/functions/functions.php:1654 #: includes/functions/functions.php:1667 #, php-format -msgid "great ×%d aunt" +msgid "great ×%s aunt" msgstr "" #: includes/functions/functions.php:1641 includes/functions/functions.php:1656 #: includes/functions/functions.php:1669 #, php-format -msgid "great ×%d aunt/uncle" +msgid "great ×%s aunt/uncle" msgstr "" #: includes/functions/functions.php:2042 includes/functions/functions.php:2057 #, php-format -msgid "great ×%d grandchild" +msgid "great ×%s grandchild" msgstr "" #: includes/functions/functions.php:2040 includes/functions/functions.php:2055 #, php-format -msgid "great ×%d granddaughter" +msgid "great ×%s granddaughter" msgstr "" -#. I18N: if you need a different number for %d, contact the developers, as a code-change is required +#. I18N: if you need a different number for %s, contact the developers, as a code-change is required #: includes/functions/functions.php:1912 includes/functions/functions.php:1922 #: includes/functions/functions.php:1932 includes/functions/functions.php:1942 #: includes/functions/functions.php:1954 #, php-format -msgid "great ×%d grandfather" +msgid "great ×%s grandfather" msgstr "" #: includes/functions/functions.php:1914 includes/functions/functions.php:1924 #: includes/functions/functions.php:1934 includes/functions/functions.php:1944 #: includes/functions/functions.php:1956 #, php-format -msgid "great ×%d grandmother" +msgid "great ×%s grandmother" msgstr "" #: includes/functions/functions.php:1916 includes/functions/functions.php:1926 #: includes/functions/functions.php:1936 includes/functions/functions.php:1946 #: includes/functions/functions.php:1958 #, php-format -msgid "great ×%d grandparent" +msgid "great ×%s grandparent" msgstr "" -#. I18N: if you need a different number for %d, contact the developers, as a code-change is required +#. I18N: if you need a different number for %s, contact the developers, as a code-change is required #: includes/functions/functions.php:2038 includes/functions/functions.php:2053 #, php-format -msgid "great ×%d grandson" +msgid "great ×%s grandson" msgstr "" -#. I18N: if you need a different number for %d, contact the developers, as a code-change is required +#. I18N: if you need a different number for %s, contact the developers, as a code-change is required #: includes/functions/functions.php:1823 includes/functions/functions.php:1836 #, php-format -msgid "great ×%d nephew" +msgid "great ×%s nephew" msgstr "" #: includes/functions/functions.php:1797 #, php-format -msgctxt "(a man’s) brother’s great ×(%d-1) grandson" -msgid "great ×%d nephew" +msgctxt "(a man’s) brother’s great ×(%s-1) grandson" +msgid "great ×%s nephew" msgstr "" #: includes/functions/functions.php:1799 #, php-format -msgctxt "(a man’s) sister’s great ×(%d-1) grandson" -msgid "great ×%d nephew" +msgctxt "(a man’s) sister’s great ×(%s-1) grandson" +msgid "great ×%s nephew" msgstr "" #: includes/functions/functions.php:1801 #, php-format -msgctxt "(a woman’s) great ×%d nephew" -msgid "great ×%d nephew" +msgctxt "(a woman’s) great ×%s nephew" +msgid "great ×%s nephew" msgstr "" #: includes/functions/functions.php:1827 includes/functions/functions.php:1840 #, php-format -msgid "great ×%d nephew/niece" +msgid "great ×%s nephew/niece" msgstr "" #: includes/functions/functions.php:1813 #, php-format -msgctxt "(a man’s) brother’s great ×(%d-1) grandchild" -msgid "great ×%d nephew/niece" +msgctxt "(a man’s) brother’s great ×(%s-1) grandchild" +msgid "great ×%s nephew/niece" msgstr "" #: includes/functions/functions.php:1815 #, php-format -msgctxt "(a man’s) sister’s great ×(%d-1) grandchild" -msgid "great ×%d nephew/niece" +msgctxt "(a man’s) sister’s great ×(%s-1) grandchild" +msgid "great ×%s nephew/niece" msgstr "" #: includes/functions/functions.php:1817 #, php-format -msgctxt "(a woman’s) great ×%d nephew/niece" -msgid "great ×%d nephew/niece" +msgctxt "(a woman’s) great ×%s nephew/niece" +msgid "great ×%s nephew/niece" msgstr "" #: includes/functions/functions.php:1825 includes/functions/functions.php:1838 #, php-format -msgid "great ×%d niece" +msgid "great ×%s niece" msgstr "" #: includes/functions/functions.php:1805 #, php-format -msgctxt "(a man’s) brother’s great ×(%d-1) granddaughter" -msgid "great ×%d niece" +msgctxt "(a man’s) brother’s great ×(%s-1) granddaughter" +msgid "great ×%s niece" msgstr "" #: includes/functions/functions.php:1807 #, php-format -msgctxt "(a man’s) sister’s great ×(%d-1) granddaughter" -msgid "great ×%d niece" +msgctxt "(a man’s) sister’s great ×(%s-1) granddaughter" +msgid "great ×%s niece" msgstr "" #: includes/functions/functions.php:1809 #, php-format -msgctxt "(a woman’s) great ×%d niece" -msgid "great ×%d niece" +msgctxt "(a woman’s) great ×%s niece" +msgid "great ×%s niece" msgstr "" -#. I18N: if you need a different number for %d, contact the developers, as a code-change is required +#. I18N: if you need a different number for %s, contact the developers, as a code-change is required #: includes/functions/functions.php:1637 includes/functions/functions.php:1665 #, php-format -msgid "great ×%d uncle" +msgid "great ×%s uncle" msgstr "" #: includes/functions/functions.php:1647 #, php-format -msgctxt "great ×(%d-1) grandfather’s brother" -msgid "great ×%d uncle" +msgctxt "great ×(%s-1) grandfather’s brother" +msgid "great ×%s uncle" msgstr "" #: includes/functions/functions.php:1649 #, php-format -msgctxt "great ×(%d-1) grandmother’s brother" -msgid "great ×%d uncle" +msgctxt "great ×(%s-1) grandmother’s brother" +msgid "great ×%s uncle" msgstr "" #: includes/functions/functions.php:1651 #, php-format -msgctxt "great ×(%d-1) grandparent’s brother" -msgid "great ×%d uncle" +msgctxt "great ×(%s-1) grandparent’s brother" +msgid "great ×%s uncle" msgstr "" #: includes/functions/functions.php:1579 @@ -18603,11 +18603,11 @@ msgstr "maksimum" #: app/Module/UpcomingAnniversariesModule.php:125 #: app/Module/YahrzeitModule.php:250 #, php-format -msgid "maximum %d day" -msgid_plural "maximum %d days" -msgstr[0] "maksimalno %d dana" -msgstr[1] "maksimalno %d dana" -msgstr[2] "maksimalno %d dana" +msgid "maximum %s day" +msgid_plural "maximum %s days" +msgstr[0] "maksimalno %s dana" +msgstr[1] "maksimalno %s dana" +msgstr[2] "maksimalno %s dana" #: admin_trees_config.php:404 admin_trees_config.php:428 #: admin_trees_config.php:468 admin_trees_config.php:508 diff --git a/language/ca.po b/language/ca.po index b161c3a72f..d8447e664f 100644 --- a/language/ca.po +++ b/language/ca.po @@ -189,50 +189,50 @@ msgstr "%g:%i:%s %a" #: app/Module/LoggedInUsersModule.php:51 app/Stats.php:5372 #, php-format -msgid "%d anonymous logged-in user" -msgid_plural "%d anonymous logged-in users" -msgstr[0] "%d usuari anònim amb accés" -msgstr[1] "%d usuaris anònims amb accés" +msgid "%s anonymous logged-in user" +msgid_plural "%s anonymous logged-in users" +msgstr[0] "%s usuari anònim amb accés" +msgstr[1] "%s usuaris anònims amb accés" #: app/Module/LoggedInUsersModule.php:57 app/Stats.php:5382 #, php-format -msgid "%d logged-in user" -msgid_plural "%d logged-in users" -msgstr[0] "%d usuari amb accés" -msgstr[1] "%d usuaris amb accés" +msgid "%s logged-in user" +msgid_plural "%s logged-in users" +msgstr[0] "%s usuari amb accés" +msgstr[1] "%s usuaris amb accés" #: app/Module/RelativesTabModule.php:62 #, php-format -msgid "%d month" -msgid_plural "%d months" -msgstr[0] "%d mes" -msgstr[1] "%d mesos" +msgid "%s month" +msgid_plural "%s months" +msgstr[0] "%s mes" +msgstr[1] "%s mesos" #: app/Module/RelativesTabModule.php:60 #, php-format -msgid "%d year" -msgid_plural "%d years" -msgstr[0] "%d any" -msgstr[1] "%d anys" +msgid "%s year" +msgid_plural "%s years" +msgstr[0] "%s any" +msgstr[1] "%s anys" #: includes/functions/functions.php:555 #, php-format msgctxt "FEMALE" -msgid "%d × cousin" -msgstr "cosina %da" +msgid "%s × cousin" +msgstr "cosina %sa" #. I18N: Note that for Italian and Polish, “N’th cousins” are different from English “N’th cousins”, and the software has already generated the correct “N” for your language. You only need to translate - you do not need to convert. For other languages, if your cousin rules are different from English, please contact the developers. #: includes/functions/functions.php:520 #, php-format msgctxt "MALE" -msgid "%d × cousin" -msgstr "cosí %d è" +msgid "%s × cousin" +msgstr "cosí %s è" #: includes/functions/functions.php:590 #, php-format msgctxt "MALE/FEMALE" -msgid "%d × cousin" -msgstr "cosí/na %dè/a" +msgid "%s × cousin" +msgstr "cosí/na %sè/a" #. I18N: This is the format string for full dates. See http://php.net/date for codes #: app/Date.php:222 app/I18N.php:212 @@ -14303,8 +14303,8 @@ msgstr "Aquest servidor no suporta descàrregues segures mitjançant HTTPS." #: setup.php:183 #, php-format -msgid "This server’s memory limit is %d MB and its CPU time limit is %d seconds." -msgstr "La memòria límit d’aquest servidor és %dMB i els temps límit de llur CPU és de %d segons." +msgid "This server’s memory limit is %s MB and its CPU time limit is %s seconds." +msgstr "La memòria límit d’aquest servidor és %sMB i els temps límit de llur CPU és de %s segons." #. I18N: Help text for the “Other facts to show in charts” configuration setting #: admin_trees_config.php:1632 @@ -16979,146 +16979,146 @@ msgstr "nét de l’esposa" #: includes/functions/functions.php:1639 includes/functions/functions.php:1654 #: includes/functions/functions.php:1667 #, php-format -msgid "great ×%d aunt" -msgstr "tieta %d+1a" +msgid "great ×%s aunt" +msgstr "tieta %s+1a" #: includes/functions/functions.php:1641 includes/functions/functions.php:1656 #: includes/functions/functions.php:1669 #, php-format -msgid "great ×%d aunt/uncle" -msgstr "oncle/tieta %d+1 è/a" +msgid "great ×%s aunt/uncle" +msgstr "oncle/tieta %s+1 è/a" #: includes/functions/functions.php:2042 includes/functions/functions.php:2057 #, php-format -msgid "great ×%d grandchild" -msgstr "nét/a %d+1é/a" +msgid "great ×%s grandchild" +msgstr "nét/a %s+1é/a" #: includes/functions/functions.php:2040 includes/functions/functions.php:2055 #, php-format -msgid "great ×%d granddaughter" -msgstr "néta %d+1a" +msgid "great ×%s granddaughter" +msgstr "néta %s+1a" -#. I18N: if you need a different number for %d, contact the developers, as a code-change is required +#. I18N: if you need a different number for %s, contact the developers, as a code-change is required #: includes/functions/functions.php:1912 includes/functions/functions.php:1922 #: includes/functions/functions.php:1932 includes/functions/functions.php:1942 #: includes/functions/functions.php:1954 #, php-format -msgid "great ×%d grandfather" -msgstr "avi %d+1 è" +msgid "great ×%s grandfather" +msgstr "avi %s+1 è" #: includes/functions/functions.php:1914 includes/functions/functions.php:1924 #: includes/functions/functions.php:1934 includes/functions/functions.php:1944 #: includes/functions/functions.php:1956 #, php-format -msgid "great ×%d grandmother" -msgstr "àvia %d+1a" +msgid "great ×%s grandmother" +msgstr "àvia %s+1a" #: includes/functions/functions.php:1916 includes/functions/functions.php:1926 #: includes/functions/functions.php:1936 includes/functions/functions.php:1946 #: includes/functions/functions.php:1958 #, php-format -msgid "great ×%d grandparent" -msgstr "avi/àvia %d+1è/a" +msgid "great ×%s grandparent" +msgstr "avi/àvia %s+1è/a" -#. I18N: if you need a different number for %d, contact the developers, as a code-change is required +#. I18N: if you need a different number for %s, contact the developers, as a code-change is required #: includes/functions/functions.php:2038 includes/functions/functions.php:2053 #, php-format -msgid "great ×%d grandson" -msgstr "nét %d+1è" +msgid "great ×%s grandson" +msgstr "nét %s+1è" -#. I18N: if you need a different number for %d, contact the developers, as a code-change is required +#. I18N: if you need a different number for %s, contact the developers, as a code-change is required #: includes/functions/functions.php:1823 includes/functions/functions.php:1836 #, php-format -msgid "great ×%d nephew" -msgstr "nebot %d+1 è" +msgid "great ×%s nephew" +msgstr "nebot %s+1 è" #: includes/functions/functions.php:1797 #, php-format -msgctxt "(a man’s) brother’s great ×(%d-1) grandson" -msgid "great ×%d nephew" -msgstr "nebot %d+1 è" +msgctxt "(a man’s) brother’s great ×(%s-1) grandson" +msgid "great ×%s nephew" +msgstr "nebot %s+1 è" #: includes/functions/functions.php:1799 #, php-format -msgctxt "(a man’s) sister’s great ×(%d-1) grandson" -msgid "great ×%d nephew" -msgstr "nebot %d+1 è" +msgctxt "(a man’s) sister’s great ×(%s-1) grandson" +msgid "great ×%s nephew" +msgstr "nebot %s+1 è" #: includes/functions/functions.php:1801 #, php-format -msgctxt "(a woman’s) great ×%d nephew" -msgid "great ×%d nephew" -msgstr "nebot %d+1 è" +msgctxt "(a woman’s) great ×%s nephew" +msgid "great ×%s nephew" +msgstr "nebot %s+1 è" #: includes/functions/functions.php:1827 includes/functions/functions.php:1840 #, php-format -msgid "great ×%d nephew/niece" -msgstr "nebot/da %d+1è/a" +msgid "great ×%s nephew/niece" +msgstr "nebot/da %s+1è/a" #: includes/functions/functions.php:1813 #, php-format -msgctxt "(a man’s) brother’s great ×(%d-1) grandchild" -msgid "great ×%d nephew/niece" -msgstr "nebot/da %d+1è/a" +msgctxt "(a man’s) brother’s great ×(%s-1) grandchild" +msgid "great ×%s nephew/niece" +msgstr "nebot/da %s+1è/a" #: includes/functions/functions.php:1815 #, php-format -msgctxt "(a man’s) sister’s great ×(%d-1) grandchild" -msgid "great ×%d nephew/niece" -msgstr "nebot/da %d+1è/a" +msgctxt "(a man’s) sister’s great ×(%s-1) grandchild" +msgid "great ×%s nephew/niece" +msgstr "nebot/da %s+1è/a" #: includes/functions/functions.php:1817 #, php-format -msgctxt "(a woman’s) great ×%d nephew/niece" -msgid "great ×%d nephew/niece" -msgstr "nebot/da %d+1è/a" +msgctxt "(a woman’s) great ×%s nephew/niece" +msgid "great ×%s nephew/niece" +msgstr "nebot/da %s+1è/a" #: includes/functions/functions.php:1825 includes/functions/functions.php:1838 #, php-format -msgid "great ×%d niece" -msgstr "neboda %d+1a" +msgid "great ×%s niece" +msgstr "neboda %s+1a" #: includes/functions/functions.php:1805 #, php-format -msgctxt "(a man’s) brother’s great ×(%d-1) granddaughter" -msgid "great ×%d niece" -msgstr "neboda %d+1a" +msgctxt "(a man’s) brother’s great ×(%s-1) granddaughter" +msgid "great ×%s niece" +msgstr "neboda %s+1a" #: includes/functions/functions.php:1807 #, php-format -msgctxt "(a man’s) sister’s great ×(%d-1) granddaughter" -msgid "great ×%d niece" -msgstr "neboda %d+1a" +msgctxt "(a man’s) sister’s great ×(%s-1) granddaughter" +msgid "great ×%s niece" +msgstr "neboda %s+1a" #: includes/functions/functions.php:1809 #, php-format -msgctxt "(a woman’s) great ×%d niece" -msgid "great ×%d niece" -msgstr "neboda %d+1a" +msgctxt "(a woman’s) great ×%s niece" +msgid "great ×%s niece" +msgstr "neboda %s+1a" -#. I18N: if you need a different number for %d, contact the developers, as a code-change is required +#. I18N: if you need a different number for %s, contact the developers, as a code-change is required #: includes/functions/functions.php:1637 includes/functions/functions.php:1665 #, php-format -msgid "great ×%d uncle" -msgstr "oncle %d+1è" +msgid "great ×%s uncle" +msgstr "oncle %s+1è" #: includes/functions/functions.php:1647 #, php-format -msgctxt "great ×(%d-1) grandfather’s brother" -msgid "great ×%d uncle" -msgstr "oncle %d+1 è" +msgctxt "great ×(%s-1) grandfather’s brother" +msgid "great ×%s uncle" +msgstr "oncle %s+1 è" #: includes/functions/functions.php:1649 #, php-format -msgctxt "great ×(%d-1) grandmother’s brother" -msgid "great ×%d uncle" -msgstr "oncle %d+1 è" +msgctxt "great ×(%s-1) grandmother’s brother" +msgid "great ×%s uncle" +msgstr "oncle %s+1 è" #: includes/functions/functions.php:1651 #, php-format -msgctxt "great ×(%d-1) grandparent’s brother" -msgid "great ×%d uncle" -msgstr "oncle %d+1 è" +msgctxt "great ×(%s-1) grandparent’s brother" +msgid "great ×%s uncle" +msgstr "oncle %s+1 è" #: includes/functions/functions.php:1579 msgid "great ×4 aunt" @@ -18568,10 +18568,10 @@ msgstr "màxim" #: app/Module/UpcomingAnniversariesModule.php:125 #: app/Module/YahrzeitModule.php:250 #, php-format -msgid "maximum %d day" -msgid_plural "maximum %d days" -msgstr[0] "màxim %d dia" -msgstr[1] "màxim %d dies" +msgid "maximum %s day" +msgid_plural "maximum %s days" +msgstr[0] "màxim %s dia" +msgstr[1] "màxim %s dies" #: admin_trees_config.php:404 admin_trees_config.php:428 #: admin_trees_config.php:468 admin_trees_config.php:508 @@ -20082,10 +20082,10 @@ msgstr "…" #~ msgid "No other link between the two individuals could be found." #~ msgstr "No es pot localitzar cap altre vincle entre les dues persones." -#~ msgid "Note: “living” is defined (if no death or burial is known) as ending %d year after birth or estimated birth." -#~ msgid_plural "Note: “living” is defined (if no death or burial is known) as ending %d years after birth or estimated birth." -#~ msgstr[0] "Nota: «viu» es defineix (si es desconeix la mort o l’enterrament) com a finit desprès de %d anys del naixement o naixement calculat." -#~ msgstr[1] "Nota: «vius» es defineixen (si es desconeix la mort o l’enterrament) com a finits desprès de %d anys del naixement o naixement calculat." +#~ msgid "Note: “living” is defined (if no death or burial is known) as ending %s year after birth or estimated birth." +#~ msgid_plural "Note: “living” is defined (if no death or burial is known) as ending %s years after birth or estimated birth." +#~ msgstr[0] "Nota: «viu» es defineix (si es desconeix la mort o l’enterrament) com a finit desprès de %s anys del naixement o naixement calculat." +#~ msgstr[1] "Nota: «vius» es defineixen (si es desconeix la mort o l’enterrament) com a finits desprès de %s anys del naixement o naixement calculat." #~ msgid "Notes are free-form text and will appear in the Fact Details section of the page." #~ msgstr "Les notes tenen format de text lliure i apareixen a la secció de detalls dels esdeveniments de la pàgina." diff --git a/language/cs.po b/language/cs.po index f061a2f7bb..1ce445c34f 100644 --- a/language/cs.po +++ b/language/cs.po @@ -195,54 +195,54 @@ msgstr "%G:%i:%s" #: app/Module/LoggedInUsersModule.php:51 app/Stats.php:5372 #, php-format -msgid "%d anonymous logged-in user" -msgid_plural "%d anonymous logged-in users" -msgstr[0] "%d anonymní přihlášený uživatel" -msgstr[1] "%d anonymní přihlášení uživatelé" -msgstr[2] "%d anonymních přihlášených uživatelů" +msgid "%s anonymous logged-in user" +msgid_plural "%s anonymous logged-in users" +msgstr[0] "%s anonymní přihlášený uživatel" +msgstr[1] "%s anonymní přihlášení uživatelé" +msgstr[2] "%s anonymních přihlášených uživatelů" #: app/Module/LoggedInUsersModule.php:57 app/Stats.php:5382 #, php-format -msgid "%d logged-in user" -msgid_plural "%d logged-in users" -msgstr[0] "%d přihlášený uživatel" -msgstr[1] "%d přihlášení uživatelé" -msgstr[2] "%d přihlášených uživatelů" +msgid "%s logged-in user" +msgid_plural "%s logged-in users" +msgstr[0] "%s přihlášený uživatel" +msgstr[1] "%s přihlášení uživatelé" +msgstr[2] "%s přihlášených uživatelů" #: app/Module/RelativesTabModule.php:62 #, php-format -msgid "%d month" -msgid_plural "%d months" -msgstr[0] "%d měsíc" -msgstr[1] "%d měsíce" -msgstr[2] "%d měsíců" +msgid "%s month" +msgid_plural "%s months" +msgstr[0] "%s měsíc" +msgstr[1] "%s měsíce" +msgstr[2] "%s měsíců" #: app/Module/RelativesTabModule.php:60 #, php-format -msgid "%d year" -msgid_plural "%d years" -msgstr[0] "%d rok" -msgstr[1] "%d roky" -msgstr[2] "%d let" +msgid "%s year" +msgid_plural "%s years" +msgstr[0] "%s rok" +msgstr[1] "%s roky" +msgstr[2] "%s let" #: includes/functions/functions.php:555 #, php-format msgctxt "FEMALE" -msgid "%d × cousin" -msgstr "sestřenice (z %d. kolena)" +msgid "%s × cousin" +msgstr "sestřenice (z %s. kolena)" #. I18N: Note that for Italian and Polish, “N’th cousins” are different from English “N’th cousins”, and the software has already generated the correct “N” for your language. You only need to translate - you do not need to convert. For other languages, if your cousin rules are different from English, please contact the developers. #: includes/functions/functions.php:520 #, php-format msgctxt "MALE" -msgid "%d × cousin" -msgstr "bratranec (z %d. kolena)" +msgid "%s × cousin" +msgstr "bratranec (z %s. kolena)" #: includes/functions/functions.php:590 #, php-format msgctxt "MALE/FEMALE" -msgid "%d × cousin" -msgstr "bratranec/sestřenice (z %d. kolena)" +msgid "%s × cousin" +msgstr "bratranec/sestřenice (z %s. kolena)" #. I18N: This is the format string for full dates. See http://php.net/date for codes #: app/Date.php:222 app/I18N.php:212 @@ -14340,8 +14340,8 @@ msgstr "Tento server nepodporuje bezpečné stahování použitím HTTPS protoko #: setup.php:183 #, php-format -msgid "This server’s memory limit is %d MB and its CPU time limit is %d seconds." -msgstr "Limit paměti pro tento server je %d MB a limit pro procesorový čas je %d vteřin." +msgid "This server’s memory limit is %s MB and its CPU time limit is %s seconds." +msgstr "Limit paměti pro tento server je %s MB a limit pro procesorový čas je %s vteřin." #. I18N: Help text for the “Other facts to show in charts” configuration setting #: admin_trees_config.php:1632 @@ -17020,146 +17020,146 @@ msgstr "vnukova manželka" #: includes/functions/functions.php:1639 includes/functions/functions.php:1654 #: includes/functions/functions.php:1667 #, php-format -msgid "great ×%d aunt" -msgstr "%d× prateta" +msgid "great ×%s aunt" +msgstr "%s× prateta" #: includes/functions/functions.php:1641 includes/functions/functions.php:1656 #: includes/functions/functions.php:1669 #, php-format -msgid "great ×%d aunt/uncle" -msgstr "%d× prateta/prastrýc" +msgid "great ×%s aunt/uncle" +msgstr "%s× prateta/prastrýc" #: includes/functions/functions.php:2042 includes/functions/functions.php:2057 #, php-format -msgid "great ×%d grandchild" -msgstr "%d× pravnouče" +msgid "great ×%s grandchild" +msgstr "%s× pravnouče" #: includes/functions/functions.php:2040 includes/functions/functions.php:2055 #, php-format -msgid "great ×%d granddaughter" -msgstr "%d× pravnučka" +msgid "great ×%s granddaughter" +msgstr "%s× pravnučka" -#. I18N: if you need a different number for %d, contact the developers, as a code-change is required +#. I18N: if you need a different number for %s, contact the developers, as a code-change is required #: includes/functions/functions.php:1912 includes/functions/functions.php:1922 #: includes/functions/functions.php:1932 includes/functions/functions.php:1942 #: includes/functions/functions.php:1954 #, php-format -msgid "great ×%d grandfather" -msgstr "%d× praděda" +msgid "great ×%s grandfather" +msgstr "%s× praděda" #: includes/functions/functions.php:1914 includes/functions/functions.php:1924 #: includes/functions/functions.php:1934 includes/functions/functions.php:1944 #: includes/functions/functions.php:1956 #, php-format -msgid "great ×%d grandmother" -msgstr "%d× prabába" +msgid "great ×%s grandmother" +msgstr "%s× prabába" #: includes/functions/functions.php:1916 includes/functions/functions.php:1926 #: includes/functions/functions.php:1936 includes/functions/functions.php:1946 #: includes/functions/functions.php:1958 #, php-format -msgid "great ×%d grandparent" -msgstr "%d× prabába/praděd" +msgid "great ×%s grandparent" +msgstr "%s× prabába/praděd" -#. I18N: if you need a different number for %d, contact the developers, as a code-change is required +#. I18N: if you need a different number for %s, contact the developers, as a code-change is required #: includes/functions/functions.php:2038 includes/functions/functions.php:2053 #, php-format -msgid "great ×%d grandson" -msgstr "%d× pravnuk" +msgid "great ×%s grandson" +msgstr "%s× pravnuk" -#. I18N: if you need a different number for %d, contact the developers, as a code-change is required +#. I18N: if you need a different number for %s, contact the developers, as a code-change is required #: includes/functions/functions.php:1823 includes/functions/functions.php:1836 #, php-format -msgid "great ×%d nephew" -msgstr "%d× prasynovec" +msgid "great ×%s nephew" +msgstr "%s× prasynovec" #: includes/functions/functions.php:1797 #, php-format -msgctxt "(a man’s) brother’s great ×(%d-1) grandson" -msgid "great ×%d nephew" -msgstr "%d× prasynovec" +msgctxt "(a man’s) brother’s great ×(%s-1) grandson" +msgid "great ×%s nephew" +msgstr "%s× prasynovec" #: includes/functions/functions.php:1799 #, php-format -msgctxt "(a man’s) sister’s great ×(%d-1) grandson" -msgid "great ×%d nephew" -msgstr "%d× prasynovec" +msgctxt "(a man’s) sister’s great ×(%s-1) grandson" +msgid "great ×%s nephew" +msgstr "%s× prasynovec" #: includes/functions/functions.php:1801 #, php-format -msgctxt "(a woman’s) great ×%d nephew" -msgid "great ×%d nephew" -msgstr "%d× prasynovec" +msgctxt "(a woman’s) great ×%s nephew" +msgid "great ×%s nephew" +msgstr "%s× prasynovec" #: includes/functions/functions.php:1827 includes/functions/functions.php:1840 #, php-format -msgid "great ×%d nephew/niece" -msgstr "%d× pra-synovec/neteř" +msgid "great ×%s nephew/niece" +msgstr "%s× pra-synovec/neteř" #: includes/functions/functions.php:1813 #, php-format -msgctxt "(a man’s) brother’s great ×(%d-1) grandchild" -msgid "great ×%d nephew/niece" -msgstr "%d× pra-synovec/neteř" +msgctxt "(a man’s) brother’s great ×(%s-1) grandchild" +msgid "great ×%s nephew/niece" +msgstr "%s× pra-synovec/neteř" #: includes/functions/functions.php:1815 #, php-format -msgctxt "(a man’s) sister’s great ×(%d-1) grandchild" -msgid "great ×%d nephew/niece" -msgstr "%d× pra-synovec/neteř" +msgctxt "(a man’s) sister’s great ×(%s-1) grandchild" +msgid "great ×%s nephew/niece" +msgstr "%s× pra-synovec/neteř" #: includes/functions/functions.php:1817 #, php-format -msgctxt "(a woman’s) great ×%d nephew/niece" -msgid "great ×%d nephew/niece" -msgstr "%d× pra-synovec/neteř" +msgctxt "(a woman’s) great ×%s nephew/niece" +msgid "great ×%s nephew/niece" +msgstr "%s× pra-synovec/neteř" #: includes/functions/functions.php:1825 includes/functions/functions.php:1838 #, php-format -msgid "great ×%d niece" -msgstr "%d× praneteř" +msgid "great ×%s niece" +msgstr "%s× praneteř" #: includes/functions/functions.php:1805 #, php-format -msgctxt "(a man’s) brother’s great ×(%d-1) granddaughter" -msgid "great ×%d niece" -msgstr "%d× praneteř" +msgctxt "(a man’s) brother’s great ×(%s-1) granddaughter" +msgid "great ×%s niece" +msgstr "%s× praneteř" #: includes/functions/functions.php:1807 #, php-format -msgctxt "(a man’s) sister’s great ×(%d-1) granddaughter" -msgid "great ×%d niece" -msgstr "%d× praneteř" +msgctxt "(a man’s) sister’s great ×(%s-1) granddaughter" +msgid "great ×%s niece" +msgstr "%s× praneteř" #: includes/functions/functions.php:1809 #, php-format -msgctxt "(a woman’s) great ×%d niece" -msgid "great ×%d niece" -msgstr "%d× praneteř" +msgctxt "(a woman’s) great ×%s niece" +msgid "great ×%s niece" +msgstr "%s× praneteř" -#. I18N: if you need a different number for %d, contact the developers, as a code-change is required +#. I18N: if you need a different number for %s, contact the developers, as a code-change is required #: includes/functions/functions.php:1637 includes/functions/functions.php:1665 #, php-format -msgid "great ×%d uncle" -msgstr "%d× prastrýc" +msgid "great ×%s uncle" +msgstr "%s× prastrýc" #: includes/functions/functions.php:1647 #, php-format -msgctxt "great ×(%d-1) grandfather’s brother" -msgid "great ×%d uncle" -msgstr "%d× prastrýc" +msgctxt "great ×(%s-1) grandfather’s brother" +msgid "great ×%s uncle" +msgstr "%s× prastrýc" #: includes/functions/functions.php:1649 #, php-format -msgctxt "great ×(%d-1) grandmother’s brother" -msgid "great ×%d uncle" -msgstr "%d× prastrýc" +msgctxt "great ×(%s-1) grandmother’s brother" +msgid "great ×%s uncle" +msgstr "%s× prastrýc" #: includes/functions/functions.php:1651 #, php-format -msgctxt "great ×(%d-1) grandparent’s brother" -msgid "great ×%d uncle" -msgstr "%d× prastrýc" +msgctxt "great ×(%s-1) grandparent’s brother" +msgid "great ×%s uncle" +msgstr "%s× prastrýc" #: includes/functions/functions.php:1579 msgid "great ×4 aunt" @@ -18610,11 +18610,11 @@ msgstr "maximum" #: app/Module/UpcomingAnniversariesModule.php:125 #: app/Module/YahrzeitModule.php:250 #, php-format -msgid "maximum %d day" -msgid_plural "maximum %d days" -msgstr[0] "maximálně %d den" -msgstr[1] "maximálně %d dny" -msgstr[2] "maximálně %d dnů" +msgid "maximum %s day" +msgid_plural "maximum %s days" +msgstr[0] "maximálně %s den" +msgstr[1] "maximálně %s dny" +msgstr[2] "maximálně %s dnů" #: admin_trees_config.php:404 admin_trees_config.php:428 #: admin_trees_config.php:468 admin_trees_config.php:508 @@ -20129,11 +20129,11 @@ msgstr "…" #~ msgid "No other link between the two individuals could be found." #~ msgstr "Mezi těmito dvěma osobami nebyl nalezen žádný další vztah." -#~ msgid "Note: “living” is defined (if no death or burial is known) as ending %d year after birth or estimated birth." -#~ msgid_plural "Note: “living” is defined (if no death or burial is known) as ending %d years after birth or estimated birth." -#~ msgstr[0] "Poznámka: „žijící“ je definován (pokud není známo úmrtí nebo pohřbení) jako doba %d roku po narození nebo odhadovaném narození." -#~ msgstr[1] "Poznámka: „žijící“ je definován (pokud není známo úmrtí nebo pohřbení) jako doba %d let po narození nebo odhadovaném narození." -#~ msgstr[2] "Poznámka: „žijící“ je definován (pokud není známo úmrtí nebo pohřbení) jako doba %d let po narození nebo odhadovaném narození." +#~ msgid "Note: “living” is defined (if no death or burial is known) as ending %s year after birth or estimated birth." +#~ msgid_plural "Note: “living” is defined (if no death or burial is known) as ending %s years after birth or estimated birth." +#~ msgstr[0] "Poznámka: „žijící“ je definován (pokud není známo úmrtí nebo pohřbení) jako doba %s roku po narození nebo odhadovaném narození." +#~ msgstr[1] "Poznámka: „žijící“ je definován (pokud není známo úmrtí nebo pohřbení) jako doba %s let po narození nebo odhadovaném narození." +#~ msgstr[2] "Poznámka: „žijící“ je definován (pokud není známo úmrtí nebo pohřbení) jako doba %s let po narození nebo odhadovaném narození." #~ msgid "Notes are free-form text and will appear in the Fact Details section of the page." #~ msgstr "Poznámky jsou ve formě volného textu, který se objeví na stránce v sekci Podrobnosti údajů" diff --git a/language/da.po b/language/da.po index 3d2490e7b1..b458a44497 100644 --- a/language/da.po +++ b/language/da.po @@ -189,50 +189,50 @@ msgstr "%G:%i:%s" #: app/Module/LoggedInUsersModule.php:51 app/Stats.php:5372 #, php-format -msgid "%d anonymous logged-in user" -msgid_plural "%d anonymous logged-in users" -msgstr[0] "%d anonym bruger" -msgstr[1] "%d anonyme brugere" +msgid "%s anonymous logged-in user" +msgid_plural "%s anonymous logged-in users" +msgstr[0] "%s anonym bruger" +msgstr[1] "%s anonyme brugere" #: app/Module/LoggedInUsersModule.php:57 app/Stats.php:5382 #, php-format -msgid "%d logged-in user" -msgid_plural "%d logged-in users" -msgstr[0] "%d bruger" -msgstr[1] "%d brugere" +msgid "%s logged-in user" +msgid_plural "%s logged-in users" +msgstr[0] "%s bruger" +msgstr[1] "%s brugere" #: app/Module/RelativesTabModule.php:62 #, php-format -msgid "%d month" -msgid_plural "%d months" -msgstr[0] "%d måned" -msgstr[1] "%d måneder" +msgid "%s month" +msgid_plural "%s months" +msgstr[0] "%s måned" +msgstr[1] "%s måneder" #: app/Module/RelativesTabModule.php:60 #, php-format -msgid "%d year" -msgid_plural "%d years" -msgstr[0] "%d år" -msgstr[1] "%d år" +msgid "%s year" +msgid_plural "%s years" +msgstr[0] "%s år" +msgstr[1] "%s år" #: includes/functions/functions.php:555 #, php-format msgctxt "FEMALE" -msgid "%d × cousin" -msgstr "%d × kusine" +msgid "%s × cousin" +msgstr "%s × kusine" #. I18N: Note that for Italian and Polish, “N’th cousins” are different from English “N’th cousins”, and the software has already generated the correct “N” for your language. You only need to translate - you do not need to convert. For other languages, if your cousin rules are different from English, please contact the developers. #: includes/functions/functions.php:520 #, php-format msgctxt "MALE" -msgid "%d × cousin" -msgstr "%d × fætter" +msgid "%s × cousin" +msgstr "%s × fætter" #: includes/functions/functions.php:590 #, php-format msgctxt "MALE/FEMALE" -msgid "%d × cousin" -msgstr "%d × fætter/kusine" +msgid "%s × cousin" +msgstr "%s × fætter/kusine" #. I18N: This is the format string for full dates. See http://php.net/date for codes #: app/Date.php:222 app/I18N.php:212 @@ -14303,8 +14303,8 @@ msgstr "Denne server supporterer ikke sikker hentning ved brug af HTTPS." #: setup.php:183 #, php-format -msgid "This server’s memory limit is %d MB and its CPU time limit is %d seconds." -msgstr "Serverens hukommelsesgrænse er på %dMB og CPU-tidsgrænsen er på %d sekunder." +msgid "This server’s memory limit is %s MB and its CPU time limit is %s seconds." +msgstr "Serverens hukommelsesgrænse er på %sMB og CPU-tidsgrænsen er på %s sekunder." #. I18N: Help text for the “Other facts to show in charts” configuration setting #: admin_trees_config.php:1632 @@ -16979,146 +16979,146 @@ msgstr "barnebarns hustru" #: includes/functions/functions.php:1639 includes/functions/functions.php:1654 #: includes/functions/functions.php:1667 #, php-format -msgid "great ×%d aunt" -msgstr "%d× tip-oldeforælders bror" +msgid "great ×%s aunt" +msgstr "%s× tip-oldeforælders bror" #: includes/functions/functions.php:1641 includes/functions/functions.php:1656 #: includes/functions/functions.php:1669 #, php-format -msgid "great ×%d aunt/uncle" -msgstr "%d× tip-oldeforælders søskende" +msgid "great ×%s aunt/uncle" +msgstr "%s× tip-oldeforælders søskende" #: includes/functions/functions.php:2042 includes/functions/functions.php:2057 #, php-format -msgid "great ×%d grandchild" -msgstr "%d× tip-oldebarn" +msgid "great ×%s grandchild" +msgstr "%s× tip-oldebarn" #: includes/functions/functions.php:2040 includes/functions/functions.php:2055 #, php-format -msgid "great ×%d granddaughter" -msgstr "%d× tip-oldebarn" +msgid "great ×%s granddaughter" +msgstr "%s× tip-oldebarn" -#. I18N: if you need a different number for %d, contact the developers, as a code-change is required +#. I18N: if you need a different number for %s, contact the developers, as a code-change is required #: includes/functions/functions.php:1912 includes/functions/functions.php:1922 #: includes/functions/functions.php:1932 includes/functions/functions.php:1942 #: includes/functions/functions.php:1954 #, php-format -msgid "great ×%d grandfather" -msgstr "%d× tip-oldefar" +msgid "great ×%s grandfather" +msgstr "%s× tip-oldefar" #: includes/functions/functions.php:1914 includes/functions/functions.php:1924 #: includes/functions/functions.php:1934 includes/functions/functions.php:1944 #: includes/functions/functions.php:1956 #, php-format -msgid "great ×%d grandmother" -msgstr "%d× tip-oldemor" +msgid "great ×%s grandmother" +msgstr "%s× tip-oldemor" #: includes/functions/functions.php:1916 includes/functions/functions.php:1926 #: includes/functions/functions.php:1936 includes/functions/functions.php:1946 #: includes/functions/functions.php:1958 #, php-format -msgid "great ×%d grandparent" -msgstr "%d× tip-oldeforælder" +msgid "great ×%s grandparent" +msgstr "%s× tip-oldeforælder" -#. I18N: if you need a different number for %d, contact the developers, as a code-change is required +#. I18N: if you need a different number for %s, contact the developers, as a code-change is required #: includes/functions/functions.php:2038 includes/functions/functions.php:2053 #, php-format -msgid "great ×%d grandson" -msgstr "%d× tip-oldebarn" +msgid "great ×%s grandson" +msgstr "%s× tip-oldebarn" -#. I18N: if you need a different number for %d, contact the developers, as a code-change is required +#. I18N: if you need a different number for %s, contact the developers, as a code-change is required #: includes/functions/functions.php:1823 includes/functions/functions.php:1836 #, php-format -msgid "great ×%d nephew" -msgstr "nevø i ×%d led" +msgid "great ×%s nephew" +msgstr "nevø i ×%s led" #: includes/functions/functions.php:1797 #, php-format -msgctxt "(a man’s) brother’s great ×(%d-1) grandson" -msgid "great ×%d nephew" -msgstr "%d× grand-nevø" +msgctxt "(a man’s) brother’s great ×(%s-1) grandson" +msgid "great ×%s nephew" +msgstr "%s× grand-nevø" #: includes/functions/functions.php:1799 #, php-format -msgctxt "(a man’s) sister’s great ×(%d-1) grandson" -msgid "great ×%d nephew" -msgstr "%d× grand-nevø" +msgctxt "(a man’s) sister’s great ×(%s-1) grandson" +msgid "great ×%s nephew" +msgstr "%s× grand-nevø" #: includes/functions/functions.php:1801 #, php-format -msgctxt "(a woman’s) great ×%d nephew" -msgid "great ×%d nephew" -msgstr "%d× grand-nevø" +msgctxt "(a woman’s) great ×%s nephew" +msgid "great ×%s nephew" +msgstr "%s× grand-nevø" #: includes/functions/functions.php:1827 includes/functions/functions.php:1840 #, php-format -msgid "great ×%d nephew/niece" -msgstr "nevø/niece i ×%d led" +msgid "great ×%s nephew/niece" +msgstr "nevø/niece i ×%s led" #: includes/functions/functions.php:1813 #, php-format -msgctxt "(a man’s) brother’s great ×(%d-1) grandchild" -msgid "great ×%d nephew/niece" -msgstr "%d× grand-nevø/niece" +msgctxt "(a man’s) brother’s great ×(%s-1) grandchild" +msgid "great ×%s nephew/niece" +msgstr "%s× grand-nevø/niece" #: includes/functions/functions.php:1815 #, php-format -msgctxt "(a man’s) sister’s great ×(%d-1) grandchild" -msgid "great ×%d nephew/niece" -msgstr "%d× grand-nevø/niece" +msgctxt "(a man’s) sister’s great ×(%s-1) grandchild" +msgid "great ×%s nephew/niece" +msgstr "%s× grand-nevø/niece" #: includes/functions/functions.php:1817 #, php-format -msgctxt "(a woman’s) great ×%d nephew/niece" -msgid "great ×%d nephew/niece" -msgstr "%d× grand-nevø/niece" +msgctxt "(a woman’s) great ×%s nephew/niece" +msgid "great ×%s nephew/niece" +msgstr "%s× grand-nevø/niece" #: includes/functions/functions.php:1825 includes/functions/functions.php:1838 #, php-format -msgid "great ×%d niece" -msgstr "niece i ×%d led" +msgid "great ×%s niece" +msgstr "niece i ×%s led" #: includes/functions/functions.php:1805 #, php-format -msgctxt "(a man’s) brother’s great ×(%d-1) granddaughter" -msgid "great ×%d niece" -msgstr "%d× grand-niece" +msgctxt "(a man’s) brother’s great ×(%s-1) granddaughter" +msgid "great ×%s niece" +msgstr "%s× grand-niece" #: includes/functions/functions.php:1807 #, php-format -msgctxt "(a man’s) sister’s great ×(%d-1) granddaughter" -msgid "great ×%d niece" -msgstr "%d× grand-niece" +msgctxt "(a man’s) sister’s great ×(%s-1) granddaughter" +msgid "great ×%s niece" +msgstr "%s× grand-niece" #: includes/functions/functions.php:1809 #, php-format -msgctxt "(a woman’s) great ×%d niece" -msgid "great ×%d niece" -msgstr "%d× grand-niece" +msgctxt "(a woman’s) great ×%s niece" +msgid "great ×%s niece" +msgstr "%s× grand-niece" -#. I18N: if you need a different number for %d, contact the developers, as a code-change is required +#. I18N: if you need a different number for %s, contact the developers, as a code-change is required #: includes/functions/functions.php:1637 includes/functions/functions.php:1665 #, php-format -msgid "great ×%d uncle" -msgstr "%d× tip-oldeforælders bror" +msgid "great ×%s uncle" +msgstr "%s× tip-oldeforælders bror" #: includes/functions/functions.php:1647 #, php-format -msgctxt "great ×(%d-1) grandfather’s brother" -msgid "great ×%d uncle" -msgstr "%d× tip-oldeforælders bror" +msgctxt "great ×(%s-1) grandfather’s brother" +msgid "great ×%s uncle" +msgstr "%s× tip-oldeforælders bror" #: includes/functions/functions.php:1649 #, php-format -msgctxt "great ×(%d-1) grandmother’s brother" -msgid "great ×%d uncle" -msgstr "%d× tip-oldeforælders bror" +msgctxt "great ×(%s-1) grandmother’s brother" +msgid "great ×%s uncle" +msgstr "%s× tip-oldeforælders bror" #: includes/functions/functions.php:1651 #, php-format -msgctxt "great ×(%d-1) grandparent’s brother" -msgid "great ×%d uncle" -msgstr "%d× tip-oldeforælders bror" +msgctxt "great ×(%s-1) grandparent’s brother" +msgid "great ×%s uncle" +msgstr "%s× tip-oldeforælders bror" #: includes/functions/functions.php:1579 msgid "great ×4 aunt" @@ -18568,10 +18568,10 @@ msgstr "maksimum" #: app/Module/UpcomingAnniversariesModule.php:125 #: app/Module/YahrzeitModule.php:250 #, php-format -msgid "maximum %d day" -msgid_plural "maximum %d days" -msgstr[0] "maksimalt %d day" -msgstr[1] "maksimalt %d dage" +msgid "maximum %s day" +msgid_plural "maximum %s days" +msgstr[0] "maksimalt %s day" +msgstr[1] "maksimalt %s dage" #: admin_trees_config.php:404 admin_trees_config.php:428 #: admin_trees_config.php:468 admin_trees_config.php:508 @@ -20082,10 +20082,10 @@ msgstr "…" #~ msgid "No other link between the two individuals could be found." #~ msgstr "Ingen anden sammenhæng mellem de to individer blev fundet." -#~ msgid "Note: “living” is defined (if no death or burial is known) as ending %d year after birth or estimated birth." -#~ msgid_plural "Note: “living” is defined (if no death or burial is known) as ending %d years after birth or estimated birth." -#~ msgstr[0] "Bemærk: “levende” er defineret (hvis død eller begravelse er ukendt) som sluttende %d år efter fødsel eller estimeret fødsel." -#~ msgstr[1] "Bemærk: “levende” er defineret (hvis død eller begravelse er ukendt) som sluttende %d år efter fødsel eller estimeret fødsel." +#~ msgid "Note: “living” is defined (if no death or burial is known) as ending %s year after birth or estimated birth." +#~ msgid_plural "Note: “living” is defined (if no death or burial is known) as ending %s years after birth or estimated birth." +#~ msgstr[0] "Bemærk: “levende” er defineret (hvis død eller begravelse er ukendt) som sluttende %s år efter fødsel eller estimeret fødsel." +#~ msgstr[1] "Bemærk: “levende” er defineret (hvis død eller begravelse er ukendt) som sluttende %s år efter fødsel eller estimeret fødsel." #~ msgid "Notes are free-form text and will appear in the Fact Details section of the page." #~ msgstr "Noter er fritekst og vises i faktafelterne og under fanebladet: <b>Noter</b>." diff --git a/language/de.po b/language/de.po index 676f459a40..55fa00f0b7 100644 --- a/language/de.po +++ b/language/de.po @@ -185,50 +185,50 @@ msgstr "%H:%i:%s" #: app/Module/LoggedInUsersModule.php:51 app/Stats.php:5372 #, php-format -msgid "%d anonymous logged-in user" -msgid_plural "%d anonymous logged-in users" -msgstr[0] "%d anonym angemeldeter Benutzer" -msgstr[1] "%d anonym angemeldete Benutzer" +msgid "%s anonymous logged-in user" +msgid_plural "%s anonymous logged-in users" +msgstr[0] "%s anonym angemeldeter Benutzer" +msgstr[1] "%s anonym angemeldete Benutzer" #: app/Module/LoggedInUsersModule.php:57 app/Stats.php:5382 #, php-format -msgid "%d logged-in user" -msgid_plural "%d logged-in users" -msgstr[0] "%d angemeldeter Benutzer" -msgstr[1] "%d angemeldete Benutzer" +msgid "%s logged-in user" +msgid_plural "%s logged-in users" +msgstr[0] "%s angemeldeter Benutzer" +msgstr[1] "%s angemeldete Benutzer" #: app/Module/RelativesTabModule.php:62 #, php-format -msgid "%d month" -msgid_plural "%d months" -msgstr[0] "%d Monat" -msgstr[1] "%d Monate" +msgid "%s month" +msgid_plural "%s months" +msgstr[0] "%s Monat" +msgstr[1] "%s Monate" #: app/Module/RelativesTabModule.php:60 #, php-format -msgid "%d year" -msgid_plural "%d years" -msgstr[0] "%d Jahr" -msgstr[1] "%d Jahre" +msgid "%s year" +msgid_plural "%s years" +msgstr[0] "%s Jahr" +msgstr[1] "%s Jahre" #: includes/functions/functions.php:555 #, php-format msgctxt "FEMALE" -msgid "%d × cousin" -msgstr "Cousine %d. Grades" +msgid "%s × cousin" +msgstr "Cousine %s. Grades" #. I18N: Note that for Italian and Polish, “N’th cousins” are different from English “N’th cousins”, and the software has already generated the correct “N” for your language. You only need to translate - you do not need to convert. For other languages, if your cousin rules are different from English, please contact the developers. #: includes/functions/functions.php:520 #, php-format msgctxt "MALE" -msgid "%d × cousin" -msgstr "Cousin %d. Grades" +msgid "%s × cousin" +msgstr "Cousin %s. Grades" #: includes/functions/functions.php:590 #, php-format msgctxt "MALE/FEMALE" -msgid "%d × cousin" -msgstr "Cousin/e %d. Grades" +msgid "%s × cousin" +msgstr "Cousin/e %s. Grades" #. I18N: This is the format string for full dates. See http://php.net/date for codes #: app/Date.php:222 app/I18N.php:212 @@ -14300,8 +14300,8 @@ msgstr "Dieser Server unterstützt keine sicheren Downloads per HTTPS." #: setup.php:183 #, php-format -msgid "This server’s memory limit is %d MB and its CPU time limit is %d seconds." -msgstr "Das Speicherlimt des Servers liegt bei %dMB und das CPU-Zeitlimit bei %d Sekunden." +msgid "This server’s memory limit is %s MB and its CPU time limit is %s seconds." +msgstr "Das Speicherlimt des Servers liegt bei %sMB und das CPU-Zeitlimit bei %s Sekunden." #. I18N: Help text for the “Other facts to show in charts” configuration setting #: admin_trees_config.php:1632 @@ -16976,146 +16976,146 @@ msgstr "Enkelsohns Frau" #: includes/functions/functions.php:1639 includes/functions/functions.php:1654 #: includes/functions/functions.php:1667 #, php-format -msgid "great ×%d aunt" -msgstr "%d× Großtante" +msgid "great ×%s aunt" +msgstr "%s× Großtante" #: includes/functions/functions.php:1641 includes/functions/functions.php:1656 #: includes/functions/functions.php:1669 #, php-format -msgid "great ×%d aunt/uncle" -msgstr "%d× Großtante/Großonkel" +msgid "great ×%s aunt/uncle" +msgstr "%s× Großtante/Großonkel" #: includes/functions/functions.php:2042 includes/functions/functions.php:2057 #, php-format -msgid "great ×%d grandchild" -msgstr "%d× Großenkelkind" +msgid "great ×%s grandchild" +msgstr "%s× Großenkelkind" #: includes/functions/functions.php:2040 includes/functions/functions.php:2055 #, php-format -msgid "great ×%d granddaughter" -msgstr "%d× Großenkelin" +msgid "great ×%s granddaughter" +msgstr "%s× Großenkelin" -#. I18N: if you need a different number for %d, contact the developers, as a code-change is required +#. I18N: if you need a different number for %s, contact the developers, as a code-change is required #: includes/functions/functions.php:1912 includes/functions/functions.php:1922 #: includes/functions/functions.php:1932 includes/functions/functions.php:1942 #: includes/functions/functions.php:1954 #, php-format -msgid "great ×%d grandfather" -msgstr "%d× Ur-Großvater" +msgid "great ×%s grandfather" +msgstr "%s× Ur-Großvater" #: includes/functions/functions.php:1914 includes/functions/functions.php:1924 #: includes/functions/functions.php:1934 includes/functions/functions.php:1944 #: includes/functions/functions.php:1956 #, php-format -msgid "great ×%d grandmother" -msgstr "%d× Ur-Großmutter" +msgid "great ×%s grandmother" +msgstr "%s× Ur-Großmutter" #: includes/functions/functions.php:1916 includes/functions/functions.php:1926 #: includes/functions/functions.php:1936 includes/functions/functions.php:1946 #: includes/functions/functions.php:1958 #, php-format -msgid "great ×%d grandparent" -msgstr "%d× Ur-Großelternteil" +msgid "great ×%s grandparent" +msgstr "%s× Ur-Großelternteil" -#. I18N: if you need a different number for %d, contact the developers, as a code-change is required +#. I18N: if you need a different number for %s, contact the developers, as a code-change is required #: includes/functions/functions.php:2038 includes/functions/functions.php:2053 #, php-format -msgid "great ×%d grandson" -msgstr "%d× Großenkel" +msgid "great ×%s grandson" +msgstr "%s× Großenkel" -#. I18N: if you need a different number for %d, contact the developers, as a code-change is required +#. I18N: if you need a different number for %s, contact the developers, as a code-change is required #: includes/functions/functions.php:1823 includes/functions/functions.php:1836 #, php-format -msgid "great ×%d nephew" -msgstr "(%d-1)× Urgroßneffe" +msgid "great ×%s nephew" +msgstr "(%s-1)× Urgroßneffe" #: includes/functions/functions.php:1797 #, php-format -msgctxt "(a man’s) brother’s great ×(%d-1) grandson" -msgid "great ×%d nephew" -msgstr "(%d-1)× Urgroßneffe" +msgctxt "(a man’s) brother’s great ×(%s-1) grandson" +msgid "great ×%s nephew" +msgstr "(%s-1)× Urgroßneffe" #: includes/functions/functions.php:1799 #, php-format -msgctxt "(a man’s) sister’s great ×(%d-1) grandson" -msgid "great ×%d nephew" -msgstr "(%d-1)× Urgroßneffe" +msgctxt "(a man’s) sister’s great ×(%s-1) grandson" +msgid "great ×%s nephew" +msgstr "(%s-1)× Urgroßneffe" #: includes/functions/functions.php:1801 #, php-format -msgctxt "(a woman’s) great ×%d nephew" -msgid "great ×%d nephew" -msgstr "(%d-1)× Urgroßneffe" +msgctxt "(a woman’s) great ×%s nephew" +msgid "great ×%s nephew" +msgstr "(%s-1)× Urgroßneffe" #: includes/functions/functions.php:1827 includes/functions/functions.php:1840 #, php-format -msgid "great ×%d nephew/niece" -msgstr "(%d-1)× Urgroßneffe/-nichte" +msgid "great ×%s nephew/niece" +msgstr "(%s-1)× Urgroßneffe/-nichte" #: includes/functions/functions.php:1813 #, php-format -msgctxt "(a man’s) brother’s great ×(%d-1) grandchild" -msgid "great ×%d nephew/niece" -msgstr "(%d-1)× Urgroßneffe/-nichte" +msgctxt "(a man’s) brother’s great ×(%s-1) grandchild" +msgid "great ×%s nephew/niece" +msgstr "(%s-1)× Urgroßneffe/-nichte" #: includes/functions/functions.php:1815 #, php-format -msgctxt "(a man’s) sister’s great ×(%d-1) grandchild" -msgid "great ×%d nephew/niece" -msgstr "(%d-1)× Urgroßneffe/-nichte" +msgctxt "(a man’s) sister’s great ×(%s-1) grandchild" +msgid "great ×%s nephew/niece" +msgstr "(%s-1)× Urgroßneffe/-nichte" #: includes/functions/functions.php:1817 #, php-format -msgctxt "(a woman’s) great ×%d nephew/niece" -msgid "great ×%d nephew/niece" -msgstr "(%d-1)× Urgroßneffe/-nichte" +msgctxt "(a woman’s) great ×%s nephew/niece" +msgid "great ×%s nephew/niece" +msgstr "(%s-1)× Urgroßneffe/-nichte" #: includes/functions/functions.php:1825 includes/functions/functions.php:1838 #, php-format -msgid "great ×%d niece" -msgstr "(%d-1)× Urgroßnichte" +msgid "great ×%s niece" +msgstr "(%s-1)× Urgroßnichte" #: includes/functions/functions.php:1805 #, php-format -msgctxt "(a man’s) brother’s great ×(%d-1) granddaughter" -msgid "great ×%d niece" -msgstr "(%d-1)× Urgroßnichte" +msgctxt "(a man’s) brother’s great ×(%s-1) granddaughter" +msgid "great ×%s niece" +msgstr "(%s-1)× Urgroßnichte" #: includes/functions/functions.php:1807 #, php-format -msgctxt "(a man’s) sister’s great ×(%d-1) granddaughter" -msgid "great ×%d niece" -msgstr "(%d-1)× Urgroßnichte" +msgctxt "(a man’s) sister’s great ×(%s-1) granddaughter" +msgid "great ×%s niece" +msgstr "(%s-1)× Urgroßnichte" #: includes/functions/functions.php:1809 #, php-format -msgctxt "(a woman’s) great ×%d niece" -msgid "great ×%d niece" -msgstr "(%d-1)× Urgroßnichte" +msgctxt "(a woman’s) great ×%s niece" +msgid "great ×%s niece" +msgstr "(%s-1)× Urgroßnichte" -#. I18N: if you need a different number for %d, contact the developers, as a code-change is required +#. I18N: if you need a different number for %s, contact the developers, as a code-change is required #: includes/functions/functions.php:1637 includes/functions/functions.php:1665 #, php-format -msgid "great ×%d uncle" -msgstr "%d× Großonkel" +msgid "great ×%s uncle" +msgstr "%s× Großonkel" #: includes/functions/functions.php:1647 #, php-format -msgctxt "great ×(%d-1) grandfather’s brother" -msgid "great ×%d uncle" -msgstr "(%d-1)× Urgroßonkel" +msgctxt "great ×(%s-1) grandfather’s brother" +msgid "great ×%s uncle" +msgstr "(%s-1)× Urgroßonkel" #: includes/functions/functions.php:1649 #, php-format -msgctxt "great ×(%d-1) grandmother’s brother" -msgid "great ×%d uncle" -msgstr "(%d-1)× Urgroßonkel" +msgctxt "great ×(%s-1) grandmother’s brother" +msgid "great ×%s uncle" +msgstr "(%s-1)× Urgroßonkel" #: includes/functions/functions.php:1651 #, php-format -msgctxt "great ×(%d-1) grandparent’s brother" -msgid "great ×%d uncle" -msgstr "(%d-1)× Urgroßonkel" +msgctxt "great ×(%s-1) grandparent’s brother" +msgid "great ×%s uncle" +msgstr "(%s-1)× Urgroßonkel" #: includes/functions/functions.php:1579 msgid "great ×4 aunt" @@ -18565,10 +18565,10 @@ msgstr "Maximum" #: app/Module/UpcomingAnniversariesModule.php:125 #: app/Module/YahrzeitModule.php:250 #, php-format -msgid "maximum %d day" -msgid_plural "maximum %d days" +msgid "maximum %s day" +msgid_plural "maximum %s days" msgstr[0] "maximal ein Tag" -msgstr[1] "maximal %d Tage" +msgstr[1] "maximal %s Tage" #: admin_trees_config.php:404 admin_trees_config.php:428 #: admin_trees_config.php:468 admin_trees_config.php:508 @@ -20082,10 +20082,10 @@ msgstr "…" #~ msgid "No other link between the two individuals could be found." #~ msgstr "Keine weitere Verbindung zwischen den beiden Personen gefunden." -#~ msgid "Note: “living” is defined (if no death or burial is known) as ending %d year after birth or estimated birth." -#~ msgid_plural "Note: “living” is defined (if no death or burial is known) as ending %d years after birth or estimated birth." +#~ msgid "Note: “living” is defined (if no death or burial is known) as ending %s year after birth or estimated birth." +#~ msgid_plural "Note: “living” is defined (if no death or burial is known) as ending %s years after birth or estimated birth." #~ msgstr[0] "Bemerkung: „lebend“ ist definiert (sofern weder Tod noch Bestattung genannt ist) solange nicht ein komplettes Jahr nach dem Geburtsdatum oder geschätztem Geburtsdatum vergangen ist." -#~ msgstr[1] "Bemerkung: „lebend“ ist definiert (sofern weder Tod noch Bestattung genannt ist) solange nicht %d komplette Jahre nach dem Geburtsdatum oder geschätztem Geburtsdatum vergangen sind." +#~ msgstr[1] "Bemerkung: „lebend“ ist definiert (sofern weder Tod noch Bestattung genannt ist) solange nicht %s komplette Jahre nach dem Geburtsdatum oder geschätztem Geburtsdatum vergangen sind." #~ msgid "Notes are free-form text and will appear in the Fact Details section of the page." #~ msgstr "Notizen haben kein bestimmtes Format. Sie werden als Einzelheiten der jeweiligen Rubrik gezeigt." diff --git a/language/dv.po b/language/dv.po index 9ed259f26a..df0edf2cfe 100644 --- a/language/dv.po +++ b/language/dv.po @@ -182,45 +182,45 @@ msgstr "" #: app/Module/LoggedInUsersModule.php:51 app/Stats.php:5372 #, php-format -msgid "%d anonymous logged-in user" -msgid_plural "%d anonymous logged-in users" +msgid "%s anonymous logged-in user" +msgid_plural "%s anonymous logged-in users" msgstr[0] "" #: app/Module/LoggedInUsersModule.php:57 app/Stats.php:5382 #, php-format -msgid "%d logged-in user" -msgid_plural "%d logged-in users" +msgid "%s logged-in user" +msgid_plural "%s logged-in users" msgstr[0] "" #: app/Module/RelativesTabModule.php:62 #, php-format -msgid "%d month" -msgid_plural "%d months" +msgid "%s month" +msgid_plural "%s months" msgstr[0] "" #: app/Module/RelativesTabModule.php:60 #, php-format -msgid "%d year" -msgid_plural "%d years" +msgid "%s year" +msgid_plural "%s years" msgstr[0] "" #: includes/functions/functions.php:555 #, php-format msgctxt "FEMALE" -msgid "%d × cousin" +msgid "%s × cousin" msgstr "" #. I18N: Note that for Italian and Polish, “N’th cousins” are different from English “N’th cousins”, and the software has already generated the correct “N” for your language. You only need to translate - you do not need to convert. For other languages, if your cousin rules are different from English, please contact the developers. #: includes/functions/functions.php:520 #, php-format msgctxt "MALE" -msgid "%d × cousin" +msgid "%s × cousin" msgstr "" #: includes/functions/functions.php:590 #, php-format msgctxt "MALE/FEMALE" -msgid "%d × cousin" +msgid "%s × cousin" msgstr "" #. I18N: This is the format string for full dates. See http://php.net/date for codes @@ -14265,7 +14265,7 @@ msgstr "" #: setup.php:183 #, php-format -msgid "This server’s memory limit is %d MB and its CPU time limit is %d seconds." +msgid "This server’s memory limit is %s MB and its CPU time limit is %s seconds." msgstr "" #. I18N: Help text for the “Other facts to show in charts” configuration setting @@ -16937,145 +16937,145 @@ msgstr "" #: includes/functions/functions.php:1639 includes/functions/functions.php:1654 #: includes/functions/functions.php:1667 #, php-format -msgid "great ×%d aunt" +msgid "great ×%s aunt" msgstr "" #: includes/functions/functions.php:1641 includes/functions/functions.php:1656 #: includes/functions/functions.php:1669 #, php-format -msgid "great ×%d aunt/uncle" +msgid "great ×%s aunt/uncle" msgstr "" #: includes/functions/functions.php:2042 includes/functions/functions.php:2057 #, php-format -msgid "great ×%d grandchild" +msgid "great ×%s grandchild" msgstr "" #: includes/functions/functions.php:2040 includes/functions/functions.php:2055 #, php-format -msgid "great ×%d granddaughter" +msgid "great ×%s granddaughter" msgstr "" -#. I18N: if you need a different number for %d, contact the developers, as a code-change is required +#. I18N: if you need a different number for %s, contact the developers, as a code-change is required #: includes/functions/functions.php:1912 includes/functions/functions.php:1922 #: includes/functions/functions.php:1932 includes/functions/functions.php:1942 #: includes/functions/functions.php:1954 #, php-format -msgid "great ×%d grandfather" +msgid "great ×%s grandfather" msgstr "" #: includes/functions/functions.php:1914 includes/functions/functions.php:1924 #: includes/functions/functions.php:1934 includes/functions/functions.php:1944 #: includes/functions/functions.php:1956 #, php-format -msgid "great ×%d grandmother" +msgid "great ×%s grandmother" msgstr "" #: includes/functions/functions.php:1916 includes/functions/functions.php:1926 #: includes/functions/functions.php:1936 includes/functions/functions.php:1946 #: includes/functions/functions.php:1958 #, php-format -msgid "great ×%d grandparent" +msgid "great ×%s grandparent" msgstr "" -#. I18N: if you need a different number for %d, contact the developers, as a code-change is required +#. I18N: if you need a different number for %s, contact the developers, as a code-change is required #: includes/functions/functions.php:2038 includes/functions/functions.php:2053 #, php-format -msgid "great ×%d grandson" +msgid "great ×%s grandson" msgstr "" -#. I18N: if you need a different number for %d, contact the developers, as a code-change is required +#. I18N: if you need a different number for %s, contact the developers, as a code-change is required #: includes/functions/functions.php:1823 includes/functions/functions.php:1836 #, php-format -msgid "great ×%d nephew" +msgid "great ×%s nephew" msgstr "" #: includes/functions/functions.php:1797 #, php-format -msgctxt "(a man’s) brother’s great ×(%d-1) grandson" -msgid "great ×%d nephew" +msgctxt "(a man’s) brother’s great ×(%s-1) grandson" +msgid "great ×%s nephew" msgstr "" #: includes/functions/functions.php:1799 #, php-format -msgctxt "(a man’s) sister’s great ×(%d-1) grandson" -msgid "great ×%d nephew" +msgctxt "(a man’s) sister’s great ×(%s-1) grandson" +msgid "great ×%s nephew" msgstr "" #: includes/functions/functions.php:1801 #, php-format -msgctxt "(a woman’s) great ×%d nephew" -msgid "great ×%d nephew" +msgctxt "(a woman’s) great ×%s nephew" +msgid "great ×%s nephew" msgstr "" #: includes/functions/functions.php:1827 includes/functions/functions.php:1840 #, php-format -msgid "great ×%d nephew/niece" +msgid "great ×%s nephew/niece" msgstr "" #: includes/functions/functions.php:1813 #, php-format -msgctxt "(a man’s) brother’s great ×(%d-1) grandchild" -msgid "great ×%d nephew/niece" +msgctxt "(a man’s) brother’s great ×(%s-1) grandchild" +msgid "great ×%s nephew/niece" msgstr "" #: includes/functions/functions.php:1815 #, php-format -msgctxt "(a man’s) sister’s great ×(%d-1) grandchild" -msgid "great ×%d nephew/niece" +msgctxt "(a man’s) sister’s great ×(%s-1) grandchild" +msgid "great ×%s nephew/niece" msgstr "" #: includes/functions/functions.php:1817 #, php-format -msgctxt "(a woman’s) great ×%d nephew/niece" -msgid "great ×%d nephew/niece" +msgctxt "(a woman’s) great ×%s nephew/niece" +msgid "great ×%s nephew/niece" msgstr "" #: includes/functions/functions.php:1825 includes/functions/functions.php:1838 #, php-format -msgid "great ×%d niece" +msgid "great ×%s niece" msgstr "" #: includes/functions/functions.php:1805 #, php-format -msgctxt "(a man’s) brother’s great ×(%d-1) granddaughter" -msgid "great ×%d niece" +msgctxt "(a man’s) brother’s great ×(%s-1) granddaughter" +msgid "great ×%s niece" msgstr "" #: includes/functions/functions.php:1807 #, php-format -msgctxt "(a man’s) sister’s great ×(%d-1) granddaughter" -msgid "great ×%d niece" +msgctxt "(a man’s) sister’s great ×(%s-1) granddaughter" +msgid "great ×%s niece" msgstr "" #: includes/functions/functions.php:1809 #, php-format -msgctxt "(a woman’s) great ×%d niece" -msgid "great ×%d niece" +msgctxt "(a woman’s) great ×%s niece" +msgid "great ×%s niece" msgstr "" -#. I18N: if you need a different number for %d, contact the developers, as a code-change is required +#. I18N: if you need a different number for %s, contact the developers, as a code-change is required #: includes/functions/functions.php:1637 includes/functions/functions.php:1665 #, php-format -msgid "great ×%d uncle" +msgid "great ×%s uncle" msgstr "" #: includes/functions/functions.php:1647 #, php-format -msgctxt "great ×(%d-1) grandfather’s brother" -msgid "great ×%d uncle" +msgctxt "great ×(%s-1) grandfather’s brother" +msgid "great ×%s uncle" msgstr "" #: includes/functions/functions.php:1649 #, php-format -msgctxt "great ×(%d-1) grandmother’s brother" -msgid "great ×%d uncle" +msgctxt "great ×(%s-1) grandmother’s brother" +msgid "great ×%s uncle" msgstr "" #: includes/functions/functions.php:1651 #, php-format -msgctxt "great ×(%d-1) grandparent’s brother" -msgid "great ×%d uncle" +msgctxt "great ×(%s-1) grandparent’s brother" +msgid "great ×%s uncle" msgstr "" #: includes/functions/functions.php:1579 @@ -18525,8 +18525,8 @@ msgstr "" #: app/Module/UpcomingAnniversariesModule.php:125 #: app/Module/YahrzeitModule.php:250 #, php-format -msgid "maximum %d day" -msgid_plural "maximum %d days" +msgid "maximum %s day" +msgid_plural "maximum %s days" msgstr[0] "" #: admin_trees_config.php:404 admin_trees_config.php:428 diff --git a/language/el.po b/language/el.po index 2fc142a65b..8b51c9f098 100644 --- a/language/el.po +++ b/language/el.po @@ -191,50 +191,50 @@ msgstr "" #: app/Module/LoggedInUsersModule.php:51 app/Stats.php:5372 #, php-format -msgid "%d anonymous logged-in user" -msgid_plural "%d anonymous logged-in users" -msgstr[0] "%d ανώνυμος χρήστης συνδεδεμένος" -msgstr[1] "%d ανώνυμοι χρήστες συνδεδεμένοι" +msgid "%s anonymous logged-in user" +msgid_plural "%s anonymous logged-in users" +msgstr[0] "%s ανώνυμος χρήστης συνδεδεμένος" +msgstr[1] "%s ανώνυμοι χρήστες συνδεδεμένοι" #: app/Module/LoggedInUsersModule.php:57 app/Stats.php:5382 #, php-format -msgid "%d logged-in user" -msgid_plural "%d logged-in users" -msgstr[0] "%d συνδεδεμένος χρήστης" -msgstr[1] "%d συνδεδεμένοι χρήστες" +msgid "%s logged-in user" +msgid_plural "%s logged-in users" +msgstr[0] "%s συνδεδεμένος χρήστης" +msgstr[1] "%s συνδεδεμένοι χρήστες" #: app/Module/RelativesTabModule.php:62 #, php-format -msgid "%d month" -msgid_plural "%d months" -msgstr[0] "%d μήνας" -msgstr[1] "%d μήνες" +msgid "%s month" +msgid_plural "%s months" +msgstr[0] "%s μήνας" +msgstr[1] "%s μήνες" #: app/Module/RelativesTabModule.php:60 #, php-format -msgid "%d year" -msgid_plural "%d years" -msgstr[0] "%d χρόνος" -msgstr[1] "%d χρόνια" +msgid "%s year" +msgid_plural "%s years" +msgstr[0] "%s χρόνος" +msgstr[1] "%s χρόνια" #: includes/functions/functions.php:555 #, php-format msgctxt "FEMALE" -msgid "%d × cousin" -msgstr "%d × ξαδέρφη" +msgid "%s × cousin" +msgstr "%s × ξαδέρφη" #. I18N: Note that for Italian and Polish, “N’th cousins” are different from English “N’th cousins”, and the software has already generated the correct “N” for your language. You only need to translate - you do not need to convert. For other languages, if your cousin rules are different from English, please contact the developers. #: includes/functions/functions.php:520 #, php-format msgctxt "MALE" -msgid "%d × cousin" -msgstr "%d × ξάδερφος" +msgid "%s × cousin" +msgstr "%s × ξάδερφος" #: includes/functions/functions.php:590 #, php-format msgctxt "MALE/FEMALE" -msgid "%d × cousin" -msgstr "%d × ξαδέρφια" +msgid "%s × cousin" +msgstr "%s × ξαδέρφια" #. I18N: This is the format string for full dates. See http://php.net/date for codes #: app/Date.php:222 app/I18N.php:212 @@ -14306,7 +14306,7 @@ msgstr "" #: setup.php:183 #, php-format -msgid "This server’s memory limit is %d MB and its CPU time limit is %d seconds." +msgid "This server’s memory limit is %s MB and its CPU time limit is %s seconds." msgstr "" #. I18N: Help text for the “Other facts to show in charts” configuration setting @@ -16982,145 +16982,145 @@ msgstr "" #: includes/functions/functions.php:1639 includes/functions/functions.php:1654 #: includes/functions/functions.php:1667 #, php-format -msgid "great ×%d aunt" +msgid "great ×%s aunt" msgstr "" #: includes/functions/functions.php:1641 includes/functions/functions.php:1656 #: includes/functions/functions.php:1669 #, php-format -msgid "great ×%d aunt/uncle" +msgid "great ×%s aunt/uncle" msgstr "" #: includes/functions/functions.php:2042 includes/functions/functions.php:2057 #, php-format -msgid "great ×%d grandchild" +msgid "great ×%s grandchild" msgstr "" #: includes/functions/functions.php:2040 includes/functions/functions.php:2055 #, php-format -msgid "great ×%d granddaughter" +msgid "great ×%s granddaughter" msgstr "" -#. I18N: if you need a different number for %d, contact the developers, as a code-change is required +#. I18N: if you need a different number for %s, contact the developers, as a code-change is required #: includes/functions/functions.php:1912 includes/functions/functions.php:1922 #: includes/functions/functions.php:1932 includes/functions/functions.php:1942 #: includes/functions/functions.php:1954 #, php-format -msgid "great ×%d grandfather" +msgid "great ×%s grandfather" msgstr "" #: includes/functions/functions.php:1914 includes/functions/functions.php:1924 #: includes/functions/functions.php:1934 includes/functions/functions.php:1944 #: includes/functions/functions.php:1956 #, php-format -msgid "great ×%d grandmother" +msgid "great ×%s grandmother" msgstr "" #: includes/functions/functions.php:1916 includes/functions/functions.php:1926 #: includes/functions/functions.php:1936 includes/functions/functions.php:1946 #: includes/functions/functions.php:1958 #, php-format -msgid "great ×%d grandparent" +msgid "great ×%s grandparent" msgstr "" -#. I18N: if you need a different number for %d, contact the developers, as a code-change is required +#. I18N: if you need a different number for %s, contact the developers, as a code-change is required #: includes/functions/functions.php:2038 includes/functions/functions.php:2053 #, php-format -msgid "great ×%d grandson" +msgid "great ×%s grandson" msgstr "" -#. I18N: if you need a different number for %d, contact the developers, as a code-change is required +#. I18N: if you need a different number for %s, contact the developers, as a code-change is required #: includes/functions/functions.php:1823 includes/functions/functions.php:1836 #, php-format -msgid "great ×%d nephew" +msgid "great ×%s nephew" msgstr "" #: includes/functions/functions.php:1797 #, php-format -msgctxt "(a man’s) brother’s great ×(%d-1) grandson" -msgid "great ×%d nephew" +msgctxt "(a man’s) brother’s great ×(%s-1) grandson" +msgid "great ×%s nephew" msgstr "" #: includes/functions/functions.php:1799 #, php-format -msgctxt "(a man’s) sister’s great ×(%d-1) grandson" -msgid "great ×%d nephew" +msgctxt "(a man’s) sister’s great ×(%s-1) grandson" +msgid "great ×%s nephew" msgstr "" #: includes/functions/functions.php:1801 #, php-format -msgctxt "(a woman’s) great ×%d nephew" -msgid "great ×%d nephew" +msgctxt "(a woman’s) great ×%s nephew" +msgid "great ×%s nephew" msgstr "" #: includes/functions/functions.php:1827 includes/functions/functions.php:1840 #, php-format -msgid "great ×%d nephew/niece" +msgid "great ×%s nephew/niece" msgstr "" #: includes/functions/functions.php:1813 #, php-format -msgctxt "(a man’s) brother’s great ×(%d-1) grandchild" -msgid "great ×%d nephew/niece" +msgctxt "(a man’s) brother’s great ×(%s-1) grandchild" +msgid "great ×%s nephew/niece" msgstr "" #: includes/functions/functions.php:1815 #, php-format -msgctxt "(a man’s) sister’s great ×(%d-1) grandchild" -msgid "great ×%d nephew/niece" +msgctxt "(a man’s) sister’s great ×(%s-1) grandchild" +msgid "great ×%s nephew/niece" msgstr "" #: includes/functions/functions.php:1817 #, php-format -msgctxt "(a woman’s) great ×%d nephew/niece" -msgid "great ×%d nephew/niece" +msgctxt "(a woman’s) great ×%s nephew/niece" +msgid "great ×%s nephew/niece" msgstr "" #: includes/functions/functions.php:1825 includes/functions/functions.php:1838 #, php-format -msgid "great ×%d niece" +msgid "great ×%s niece" msgstr "" #: includes/functions/functions.php:1805 #, php-format -msgctxt "(a man’s) brother’s great ×(%d-1) granddaughter" -msgid "great ×%d niece" +msgctxt "(a man’s) brother’s great ×(%s-1) granddaughter" +msgid "great ×%s niece" msgstr "" #: includes/functions/functions.php:1807 #, php-format -msgctxt "(a man’s) sister’s great ×(%d-1) granddaughter" -msgid "great ×%d niece" +msgctxt "(a man’s) sister’s great ×(%s-1) granddaughter" +msgid "great ×%s niece" msgstr "" #: includes/functions/functions.php:1809 #, php-format -msgctxt "(a woman’s) great ×%d niece" -msgid "great ×%d niece" +msgctxt "(a woman’s) great ×%s niece" +msgid "great ×%s niece" msgstr "" -#. I18N: if you need a different number for %d, contact the developers, as a code-change is required +#. I18N: if you need a different number for %s, contact the developers, as a code-change is required #: includes/functions/functions.php:1637 includes/functions/functions.php:1665 #, php-format -msgid "great ×%d uncle" +msgid "great ×%s uncle" msgstr "" #: includes/functions/functions.php:1647 #, php-format -msgctxt "great ×(%d-1) grandfather’s brother" -msgid "great ×%d uncle" +msgctxt "great ×(%s-1) grandfather’s brother" +msgid "great ×%s uncle" msgstr "" #: includes/functions/functions.php:1649 #, php-format -msgctxt "great ×(%d-1) grandmother’s brother" -msgid "great ×%d uncle" +msgctxt "great ×(%s-1) grandmother’s brother" +msgid "great ×%s uncle" msgstr "" #: includes/functions/functions.php:1651 #, php-format -msgctxt "great ×(%d-1) grandparent’s brother" -msgid "great ×%d uncle" +msgctxt "great ×(%s-1) grandparent’s brother" +msgid "great ×%s uncle" msgstr "" #: includes/functions/functions.php:1579 @@ -18571,10 +18571,10 @@ msgstr "μέγιστο" #: app/Module/UpcomingAnniversariesModule.php:125 #: app/Module/YahrzeitModule.php:250 #, php-format -msgid "maximum %d day" -msgid_plural "maximum %d days" -msgstr[0] "μέγιστο %d ημέρα" -msgstr[1] "μέγιστο %d ημέρες" +msgid "maximum %s day" +msgid_plural "maximum %s days" +msgstr[0] "μέγιστο %s ημέρα" +msgstr[1] "μέγιστο %s ημέρες" #: admin_trees_config.php:404 admin_trees_config.php:428 #: admin_trees_config.php:468 admin_trees_config.php:508 diff --git a/language/en-AU.po b/language/en-AU.po index 28524250bd..8da4ba20d7 100644 --- a/language/en-AU.po +++ b/language/en-AU.po @@ -187,49 +187,49 @@ msgstr "" #: app/Module/LoggedInUsersModule.php:51 app/Stats.php:5372 #, php-format -msgid "%d anonymous logged-in user" -msgid_plural "%d anonymous logged-in users" +msgid "%s anonymous logged-in user" +msgid_plural "%s anonymous logged-in users" msgstr[0] "" msgstr[1] "" #: app/Module/LoggedInUsersModule.php:57 app/Stats.php:5382 #, php-format -msgid "%d logged-in user" -msgid_plural "%d logged-in users" +msgid "%s logged-in user" +msgid_plural "%s logged-in users" msgstr[0] "" msgstr[1] "" #: app/Module/RelativesTabModule.php:62 #, php-format -msgid "%d month" -msgid_plural "%d months" +msgid "%s month" +msgid_plural "%s months" msgstr[0] "" msgstr[1] "" #: app/Module/RelativesTabModule.php:60 #, php-format -msgid "%d year" -msgid_plural "%d years" +msgid "%s year" +msgid_plural "%s years" msgstr[0] "" msgstr[1] "" #: includes/functions/functions.php:555 #, php-format msgctxt "FEMALE" -msgid "%d × cousin" +msgid "%s × cousin" msgstr "" #. I18N: Note that for Italian and Polish, “N’th cousins” are different from English “N’th cousins”, and the software has already generated the correct “N” for your language. You only need to translate - you do not need to convert. For other languages, if your cousin rules are different from English, please contact the developers. #: includes/functions/functions.php:520 #, php-format msgctxt "MALE" -msgid "%d × cousin" +msgid "%s × cousin" msgstr "" #: includes/functions/functions.php:590 #, php-format msgctxt "MALE/FEMALE" -msgid "%d × cousin" +msgid "%s × cousin" msgstr "" #. I18N: This is the format string for full dates. See http://php.net/date for codes @@ -14301,7 +14301,7 @@ msgstr "" #: setup.php:183 #, php-format -msgid "This server’s memory limit is %d MB and its CPU time limit is %d seconds." +msgid "This server’s memory limit is %s MB and its CPU time limit is %s seconds." msgstr "" #. I18N: Help text for the “Other facts to show in charts” configuration setting @@ -16977,145 +16977,145 @@ msgstr "" #: includes/functions/functions.php:1639 includes/functions/functions.php:1654 #: includes/functions/functions.php:1667 #, php-format -msgid "great ×%d aunt" +msgid "great ×%s aunt" msgstr "" #: includes/functions/functions.php:1641 includes/functions/functions.php:1656 #: includes/functions/functions.php:1669 #, php-format -msgid "great ×%d aunt/uncle" +msgid "great ×%s aunt/uncle" msgstr "" #: includes/functions/functions.php:2042 includes/functions/functions.php:2057 #, php-format -msgid "great ×%d grandchild" +msgid "great ×%s grandchild" msgstr "" #: includes/functions/functions.php:2040 includes/functions/functions.php:2055 #, php-format -msgid "great ×%d granddaughter" +msgid "great ×%s granddaughter" msgstr "" -#. I18N: if you need a different number for %d, contact the developers, as a code-change is required +#. I18N: if you need a different number for %s, contact the developers, as a code-change is required #: includes/functions/functions.php:1912 includes/functions/functions.php:1922 #: includes/functions/functions.php:1932 includes/functions/functions.php:1942 #: includes/functions/functions.php:1954 #, php-format -msgid "great ×%d grandfather" +msgid "great ×%s grandfather" msgstr "" #: includes/functions/functions.php:1914 includes/functions/functions.php:1924 #: includes/functions/functions.php:1934 includes/functions/functions.php:1944 #: includes/functions/functions.php:1956 #, php-format -msgid "great ×%d grandmother" +msgid "great ×%s grandmother" msgstr "" #: includes/functions/functions.php:1916 includes/functions/functions.php:1926 #: includes/functions/functions.php:1936 includes/functions/functions.php:1946 #: includes/functions/functions.php:1958 #, php-format -msgid "great ×%d grandparent" +msgid "great ×%s grandparent" msgstr "" -#. I18N: if you need a different number for %d, contact the developers, as a code-change is required +#. I18N: if you need a different number for %s, contact the developers, as a code-change is required #: includes/functions/functions.php:2038 includes/functions/functions.php:2053 #, php-format -msgid "great ×%d grandson" +msgid "great ×%s grandson" msgstr "" -#. I18N: if you need a different number for %d, contact the developers, as a code-change is required +#. I18N: if you need a different number for %s, contact the developers, as a code-change is required #: includes/functions/functions.php:1823 includes/functions/functions.php:1836 #, php-format -msgid "great ×%d nephew" +msgid "great ×%s nephew" msgstr "" #: includes/functions/functions.php:1797 #, php-format -msgctxt "(a man’s) brother’s great ×(%d-1) grandson" -msgid "great ×%d nephew" +msgctxt "(a man’s) brother’s great ×(%s-1) grandson" +msgid "great ×%s nephew" msgstr "" #: includes/functions/functions.php:1799 #, php-format -msgctxt "(a man’s) sister’s great ×(%d-1) grandson" -msgid "great ×%d nephew" +msgctxt "(a man’s) sister’s great ×(%s-1) grandson" +msgid "great ×%s nephew" msgstr "" #: includes/functions/functions.php:1801 #, php-format -msgctxt "(a woman’s) great ×%d nephew" -msgid "great ×%d nephew" +msgctxt "(a woman’s) great ×%s nephew" +msgid "great ×%s nephew" msgstr "" #: includes/functions/functions.php:1827 includes/functions/functions.php:1840 #, php-format -msgid "great ×%d nephew/niece" +msgid "great ×%s nephew/niece" msgstr "" #: includes/functions/functions.php:1813 #, php-format -msgctxt "(a man’s) brother’s great ×(%d-1) grandchild" -msgid "great ×%d nephew/niece" +msgctxt "(a man’s) brother’s great ×(%s-1) grandchild" +msgid "great ×%s nephew/niece" msgstr "" #: includes/functions/functions.php:1815 #, php-format -msgctxt "(a man’s) sister’s great ×(%d-1) grandchild" -msgid "great ×%d nephew/niece" +msgctxt "(a man’s) sister’s great ×(%s-1) grandchild" +msgid "great ×%s nephew/niece" msgstr "" #: includes/functions/functions.php:1817 #, php-format -msgctxt "(a woman’s) great ×%d nephew/niece" -msgid "great ×%d nephew/niece" +msgctxt "(a woman’s) great ×%s nephew/niece" +msgid "great ×%s nephew/niece" msgstr "" #: includes/functions/functions.php:1825 includes/functions/functions.php:1838 #, php-format -msgid "great ×%d niece" +msgid "great ×%s niece" msgstr "" #: includes/functions/functions.php:1805 #, php-format -msgctxt "(a man’s) brother’s great ×(%d-1) granddaughter" -msgid "great ×%d niece" +msgctxt "(a man’s) brother’s great ×(%s-1) granddaughter" +msgid "great ×%s niece" msgstr "" #: includes/functions/functions.php:1807 #, php-format -msgctxt "(a man’s) sister’s great ×(%d-1) granddaughter" -msgid "great ×%d niece" +msgctxt "(a man’s) sister’s great ×(%s-1) granddaughter" +msgid "great ×%s niece" msgstr "" #: includes/functions/functions.php:1809 #, php-format -msgctxt "(a woman’s) great ×%d niece" -msgid "great ×%d niece" +msgctxt "(a woman’s) great ×%s niece" +msgid "great ×%s niece" msgstr "" -#. I18N: if you need a different number for %d, contact the developers, as a code-change is required +#. I18N: if you need a different number for %s, contact the developers, as a code-change is required #: includes/functions/functions.php:1637 includes/functions/functions.php:1665 #, php-format -msgid "great ×%d uncle" +msgid "great ×%s uncle" msgstr "" #: includes/functions/functions.php:1647 #, php-format -msgctxt "great ×(%d-1) grandfather’s brother" -msgid "great ×%d uncle" +msgctxt "great ×(%s-1) grandfather’s brother" +msgid "great ×%s uncle" msgstr "" #: includes/functions/functions.php:1649 #, php-format -msgctxt "great ×(%d-1) grandmother’s brother" -msgid "great ×%d uncle" +msgctxt "great ×(%s-1) grandmother’s brother" +msgid "great ×%s uncle" msgstr "" #: includes/functions/functions.php:1651 #, php-format -msgctxt "great ×(%d-1) grandparent’s brother" -msgid "great ×%d uncle" +msgctxt "great ×(%s-1) grandparent’s brother" +msgid "great ×%s uncle" msgstr "" #: includes/functions/functions.php:1579 @@ -18566,8 +18566,8 @@ msgstr "" #: app/Module/UpcomingAnniversariesModule.php:125 #: app/Module/YahrzeitModule.php:250 #, php-format -msgid "maximum %d day" -msgid_plural "maximum %d days" +msgid "maximum %s day" +msgid_plural "maximum %s days" msgstr[0] "" msgstr[1] "" @@ -19836,10 +19836,10 @@ msgstr "" #~ msgid "If this box is checked, this user will be able to edit his account information. Although this is not generally recommended, you can create a single user name and password for multiple users. When this box is unchecked for all users with the shared account, they are prevented from editing the account information and only an administrator can alter that account." #~ msgstr "If this box is ticked, this user will be able to edit his account information. Although this is not generally recommended, you can create a single user name and password for multiple users. When this box is unticked for all users with the shared account, they are prevented from editing the account information and only an administrator can alter that account." -#~ msgid "Note: “living” is defined (if no death or burial is known) as ending %d year after birth or estimated birth." -#~ msgid_plural "Note: “living” is defined (if no death or burial is known) as ending %d years after birth or estimated birth." -#~ msgstr[0] "Note: ‘living’ is defined (if no death or burial is known) as ending %d year after birth or estimated birth." -#~ msgstr[1] "Note: ‘living’ is defined (if no death or burial is known) as ending %d years after birth or estimated birth." +#~ msgid "Note: “living” is defined (if no death or burial is known) as ending %s year after birth or estimated birth." +#~ msgid_plural "Note: “living” is defined (if no death or burial is known) as ending %s years after birth or estimated birth." +#~ msgstr[0] "Note: ‘living’ is defined (if no death or burial is known) as ending %s year after birth or estimated birth." +#~ msgstr[1] "Note: ‘living’ is defined (if no death or burial is known) as ending %s years after birth or estimated birth." #~ msgid "The Favorites drop-down list shows the favorites that you have selected on your “My page”. It also shows the favorites that the site administrator has selected for the currently active GEDCOM. Clicking on one of the favorites entries will take you directly to the Individual Information page of that individual.<br><br>More help about adding favorites is available in your “My page”." #~ msgstr "The Favourites drop-down list shows the favourites that you have selected on your personalised My Page. It also shows the favourites that the site administrator has selected for the currently active GEDCOM. Clicking on one of the favourites entries will take you directly to the Individual Information page of that person.<br><br>More help about adding favourites is available in your personalised My Page." diff --git a/language/en-GB.po b/language/en-GB.po index d4bd2e5633..7669f35e25 100644 --- a/language/en-GB.po +++ b/language/en-GB.po @@ -194,49 +194,49 @@ msgstr "" #: app/Module/LoggedInUsersModule.php:51 app/Stats.php:5372 #, php-format -msgid "%d anonymous logged-in user" -msgid_plural "%d anonymous logged-in users" +msgid "%s anonymous logged-in user" +msgid_plural "%s anonymous logged-in users" msgstr[0] "" msgstr[1] "" #: app/Module/LoggedInUsersModule.php:57 app/Stats.php:5382 #, php-format -msgid "%d logged-in user" -msgid_plural "%d logged-in users" +msgid "%s logged-in user" +msgid_plural "%s logged-in users" msgstr[0] "" msgstr[1] "" #: app/Module/RelativesTabModule.php:62 #, php-format -msgid "%d month" -msgid_plural "%d months" +msgid "%s month" +msgid_plural "%s months" msgstr[0] "" msgstr[1] "" #: app/Module/RelativesTabModule.php:60 #, php-format -msgid "%d year" -msgid_plural "%d years" +msgid "%s year" +msgid_plural "%s years" msgstr[0] "" msgstr[1] "" #: includes/functions/functions.php:555 #, php-format msgctxt "FEMALE" -msgid "%d × cousin" +msgid "%s × cousin" msgstr "" #. I18N: Note that for Italian and Polish, “N’th cousins” are different from English “N’th cousins”, and the software has already generated the correct “N” for your language. You only need to translate - you do not need to convert. For other languages, if your cousin rules are different from English, please contact the developers. #: includes/functions/functions.php:520 #, php-format msgctxt "MALE" -msgid "%d × cousin" +msgid "%s × cousin" msgstr "" #: includes/functions/functions.php:590 #, php-format msgctxt "MALE/FEMALE" -msgid "%d × cousin" +msgid "%s × cousin" msgstr "" #. I18N: This is the format string for full dates. See http://php.net/date for codes @@ -14327,7 +14327,7 @@ msgstr "" #: setup.php:183 #, php-format -msgid "This server’s memory limit is %d MB and its CPU time limit is %d seconds." +msgid "This server’s memory limit is %s MB and its CPU time limit is %s seconds." msgstr "" #. I18N: Help text for the “Other facts to show in charts” configuration setting @@ -17003,145 +17003,145 @@ msgstr "" #: includes/functions/functions.php:1639 includes/functions/functions.php:1654 #: includes/functions/functions.php:1667 #, php-format -msgid "great ×%d aunt" +msgid "great ×%s aunt" msgstr "" #: includes/functions/functions.php:1641 includes/functions/functions.php:1656 #: includes/functions/functions.php:1669 #, php-format -msgid "great ×%d aunt/uncle" +msgid "great ×%s aunt/uncle" msgstr "" #: includes/functions/functions.php:2042 includes/functions/functions.php:2057 #, php-format -msgid "great ×%d grandchild" +msgid "great ×%s grandchild" msgstr "" #: includes/functions/functions.php:2040 includes/functions/functions.php:2055 #, php-format -msgid "great ×%d granddaughter" +msgid "great ×%s granddaughter" msgstr "" -#. I18N: if you need a different number for %d, contact the developers, as a code-change is required +#. I18N: if you need a different number for %s, contact the developers, as a code-change is required #: includes/functions/functions.php:1912 includes/functions/functions.php:1922 #: includes/functions/functions.php:1932 includes/functions/functions.php:1942 #: includes/functions/functions.php:1954 #, php-format -msgid "great ×%d grandfather" +msgid "great ×%s grandfather" msgstr "" #: includes/functions/functions.php:1914 includes/functions/functions.php:1924 #: includes/functions/functions.php:1934 includes/functions/functions.php:1944 #: includes/functions/functions.php:1956 #, php-format -msgid "great ×%d grandmother" +msgid "great ×%s grandmother" msgstr "" #: includes/functions/functions.php:1916 includes/functions/functions.php:1926 #: includes/functions/functions.php:1936 includes/functions/functions.php:1946 #: includes/functions/functions.php:1958 #, php-format -msgid "great ×%d grandparent" +msgid "great ×%s grandparent" msgstr "" -#. I18N: if you need a different number for %d, contact the developers, as a code-change is required +#. I18N: if you need a different number for %s, contact the developers, as a code-change is required #: includes/functions/functions.php:2038 includes/functions/functions.php:2053 #, php-format -msgid "great ×%d grandson" +msgid "great ×%s grandson" msgstr "" -#. I18N: if you need a different number for %d, contact the developers, as a code-change is required +#. I18N: if you need a different number for %s, contact the developers, as a code-change is required #: includes/functions/functions.php:1823 includes/functions/functions.php:1836 #, php-format -msgid "great ×%d nephew" +msgid "great ×%s nephew" msgstr "" #: includes/functions/functions.php:1797 #, php-format -msgctxt "(a man’s) brother’s great ×(%d-1) grandson" -msgid "great ×%d nephew" +msgctxt "(a man’s) brother’s great ×(%s-1) grandson" +msgid "great ×%s nephew" msgstr "" #: includes/functions/functions.php:1799 #, php-format -msgctxt "(a man’s) sister’s great ×(%d-1) grandson" -msgid "great ×%d nephew" +msgctxt "(a man’s) sister’s great ×(%s-1) grandson" +msgid "great ×%s nephew" msgstr "" #: includes/functions/functions.php:1801 #, php-format -msgctxt "(a woman’s) great ×%d nephew" -msgid "great ×%d nephew" +msgctxt "(a woman’s) great ×%s nephew" +msgid "great ×%s nephew" msgstr "" #: includes/functions/functions.php:1827 includes/functions/functions.php:1840 #, php-format -msgid "great ×%d nephew/niece" +msgid "great ×%s nephew/niece" msgstr "" #: includes/functions/functions.php:1813 #, php-format -msgctxt "(a man’s) brother’s great ×(%d-1) grandchild" -msgid "great ×%d nephew/niece" +msgctxt "(a man’s) brother’s great ×(%s-1) grandchild" +msgid "great ×%s nephew/niece" msgstr "" #: includes/functions/functions.php:1815 #, php-format -msgctxt "(a man’s) sister’s great ×(%d-1) grandchild" -msgid "great ×%d nephew/niece" +msgctxt "(a man’s) sister’s great ×(%s-1) grandchild" +msgid "great ×%s nephew/niece" msgstr "" #: includes/functions/functions.php:1817 #, php-format -msgctxt "(a woman’s) great ×%d nephew/niece" -msgid "great ×%d nephew/niece" +msgctxt "(a woman’s) great ×%s nephew/niece" +msgid "great ×%s nephew/niece" msgstr "" #: includes/functions/functions.php:1825 includes/functions/functions.php:1838 #, php-format -msgid "great ×%d niece" +msgid "great ×%s niece" msgstr "" #: includes/functions/functions.php:1805 #, php-format -msgctxt "(a man’s) brother’s great ×(%d-1) granddaughter" -msgid "great ×%d niece" +msgctxt "(a man’s) brother’s great ×(%s-1) granddaughter" +msgid "great ×%s niece" msgstr "" #: includes/functions/functions.php:1807 #, php-format -msgctxt "(a man’s) sister’s great ×(%d-1) granddaughter" -msgid "great ×%d niece" +msgctxt "(a man’s) sister’s great ×(%s-1) granddaughter" +msgid "great ×%s niece" msgstr "" #: includes/functions/functions.php:1809 #, php-format -msgctxt "(a woman’s) great ×%d niece" -msgid "great ×%d niece" +msgctxt "(a woman’s) great ×%s niece" +msgid "great ×%s niece" msgstr "" -#. I18N: if you need a different number for %d, contact the developers, as a code-change is required +#. I18N: if you need a different number for %s, contact the developers, as a code-change is required #: includes/functions/functions.php:1637 includes/functions/functions.php:1665 #, php-format -msgid "great ×%d uncle" +msgid "great ×%s uncle" msgstr "" #: includes/functions/functions.php:1647 #, php-format -msgctxt "great ×(%d-1) grandfather’s brother" -msgid "great ×%d uncle" +msgctxt "great ×(%s-1) grandfather’s brother" +msgid "great ×%s uncle" msgstr "" #: includes/functions/functions.php:1649 #, php-format -msgctxt "great ×(%d-1) grandmother’s brother" -msgid "great ×%d uncle" +msgctxt "great ×(%s-1) grandmother’s brother" +msgid "great ×%s uncle" msgstr "" #: includes/functions/functions.php:1651 #, php-format -msgctxt "great ×(%d-1) grandparent’s brother" -msgid "great ×%d uncle" +msgctxt "great ×(%s-1) grandparent’s brother" +msgid "great ×%s uncle" msgstr "" #: includes/functions/functions.php:1579 @@ -18592,8 +18592,8 @@ msgstr "" #: app/Module/UpcomingAnniversariesModule.php:125 #: app/Module/YahrzeitModule.php:250 #, php-format -msgid "maximum %d day" -msgid_plural "maximum %d days" +msgid "maximum %s day" +msgid_plural "maximum %s days" msgstr[0] "" msgstr[1] "" diff --git a/language/en-US.po b/language/en-US.po index ed4ac82bd0..ed8bf1a04d 100644 --- a/language/en-US.po +++ b/language/en-US.po @@ -185,49 +185,49 @@ msgstr "%g:%i:%s %a" #: app/Module/LoggedInUsersModule.php:51 app/Stats.php:5372 #, php-format -msgid "%d anonymous logged-in user" -msgid_plural "%d anonymous logged-in users" +msgid "%s anonymous logged-in user" +msgid_plural "%s anonymous logged-in users" msgstr[0] "" msgstr[1] "" #: app/Module/LoggedInUsersModule.php:57 app/Stats.php:5382 #, php-format -msgid "%d logged-in user" -msgid_plural "%d logged-in users" +msgid "%s logged-in user" +msgid_plural "%s logged-in users" msgstr[0] "" msgstr[1] "" #: app/Module/RelativesTabModule.php:62 #, php-format -msgid "%d month" -msgid_plural "%d months" +msgid "%s month" +msgid_plural "%s months" msgstr[0] "" msgstr[1] "" #: app/Module/RelativesTabModule.php:60 #, php-format -msgid "%d year" -msgid_plural "%d years" +msgid "%s year" +msgid_plural "%s years" msgstr[0] "" msgstr[1] "" #: includes/functions/functions.php:555 #, php-format msgctxt "FEMALE" -msgid "%d × cousin" +msgid "%s × cousin" msgstr "" #. I18N: Note that for Italian and Polish, “N’th cousins” are different from English “N’th cousins”, and the software has already generated the correct “N” for your language. You only need to translate - you do not need to convert. For other languages, if your cousin rules are different from English, please contact the developers. #: includes/functions/functions.php:520 #, php-format msgctxt "MALE" -msgid "%d × cousin" +msgid "%s × cousin" msgstr "" #: includes/functions/functions.php:590 #, php-format msgctxt "MALE/FEMALE" -msgid "%d × cousin" +msgid "%s × cousin" msgstr "" #. I18N: This is the format string for full dates. See http://php.net/date for codes @@ -14299,7 +14299,7 @@ msgstr "" #: setup.php:183 #, php-format -msgid "This server’s memory limit is %d MB and its CPU time limit is %d seconds." +msgid "This server’s memory limit is %s MB and its CPU time limit is %s seconds." msgstr "" #. I18N: Help text for the “Other facts to show in charts” configuration setting @@ -16975,145 +16975,145 @@ msgstr "" #: includes/functions/functions.php:1639 includes/functions/functions.php:1654 #: includes/functions/functions.php:1667 #, php-format -msgid "great ×%d aunt" +msgid "great ×%s aunt" msgstr "" #: includes/functions/functions.php:1641 includes/functions/functions.php:1656 #: includes/functions/functions.php:1669 #, php-format -msgid "great ×%d aunt/uncle" +msgid "great ×%s aunt/uncle" msgstr "" #: includes/functions/functions.php:2042 includes/functions/functions.php:2057 #, php-format -msgid "great ×%d grandchild" +msgid "great ×%s grandchild" msgstr "" #: includes/functions/functions.php:2040 includes/functions/functions.php:2055 #, php-format -msgid "great ×%d granddaughter" +msgid "great ×%s granddaughter" msgstr "" -#. I18N: if you need a different number for %d, contact the developers, as a code-change is required +#. I18N: if you need a different number for %s, contact the developers, as a code-change is required #: includes/functions/functions.php:1912 includes/functions/functions.php:1922 #: includes/functions/functions.php:1932 includes/functions/functions.php:1942 #: includes/functions/functions.php:1954 #, php-format -msgid "great ×%d grandfather" +msgid "great ×%s grandfather" msgstr "" #: includes/functions/functions.php:1914 includes/functions/functions.php:1924 #: includes/functions/functions.php:1934 includes/functions/functions.php:1944 #: includes/functions/functions.php:1956 #, php-format -msgid "great ×%d grandmother" +msgid "great ×%s grandmother" msgstr "" #: includes/functions/functions.php:1916 includes/functions/functions.php:1926 #: includes/functions/functions.php:1936 includes/functions/functions.php:1946 #: includes/functions/functions.php:1958 #, php-format -msgid "great ×%d grandparent" +msgid "great ×%s grandparent" msgstr "" -#. I18N: if you need a different number for %d, contact the developers, as a code-change is required +#. I18N: if you need a different number for %s, contact the developers, as a code-change is required #: includes/functions/functions.php:2038 includes/functions/functions.php:2053 #, php-format -msgid "great ×%d grandson" +msgid "great ×%s grandson" msgstr "" -#. I18N: if you need a different number for %d, contact the developers, as a code-change is required +#. I18N: if you need a different number for %s, contact the developers, as a code-change is required #: includes/functions/functions.php:1823 includes/functions/functions.php:1836 #, php-format -msgid "great ×%d nephew" +msgid "great ×%s nephew" msgstr "" #: includes/functions/functions.php:1797 #, php-format -msgctxt "(a man’s) brother’s great ×(%d-1) grandson" -msgid "great ×%d nephew" +msgctxt "(a man’s) brother’s great ×(%s-1) grandson" +msgid "great ×%s nephew" msgstr "" #: includes/functions/functions.php:1799 #, php-format -msgctxt "(a man’s) sister’s great ×(%d-1) grandson" -msgid "great ×%d nephew" +msgctxt "(a man’s) sister’s great ×(%s-1) grandson" +msgid "great ×%s nephew" msgstr "" #: includes/functions/functions.php:1801 #, php-format -msgctxt "(a woman’s) great ×%d nephew" -msgid "great ×%d nephew" +msgctxt "(a woman’s) great ×%s nephew" +msgid "great ×%s nephew" msgstr "" #: includes/functions/functions.php:1827 includes/functions/functions.php:1840 #, php-format -msgid "great ×%d nephew/niece" +msgid "great ×%s nephew/niece" msgstr "" #: includes/functions/functions.php:1813 #, php-format -msgctxt "(a man’s) brother’s great ×(%d-1) grandchild" -msgid "great ×%d nephew/niece" +msgctxt "(a man’s) brother’s great ×(%s-1) grandchild" +msgid "great ×%s nephew/niece" msgstr "" #: includes/functions/functions.php:1815 #, php-format -msgctxt "(a man’s) sister’s great ×(%d-1) grandchild" -msgid "great ×%d nephew/niece" +msgctxt "(a man’s) sister’s great ×(%s-1) grandchild" +msgid "great ×%s nephew/niece" msgstr "" #: includes/functions/functions.php:1817 #, php-format -msgctxt "(a woman’s) great ×%d nephew/niece" -msgid "great ×%d nephew/niece" +msgctxt "(a woman’s) great ×%s nephew/niece" +msgid "great ×%s nephew/niece" msgstr "" #: includes/functions/functions.php:1825 includes/functions/functions.php:1838 #, php-format -msgid "great ×%d niece" +msgid "great ×%s niece" msgstr "" #: includes/functions/functions.php:1805 #, php-format -msgctxt "(a man’s) brother’s great ×(%d-1) granddaughter" -msgid "great ×%d niece" +msgctxt "(a man’s) brother’s great ×(%s-1) granddaughter" +msgid "great ×%s niece" msgstr "" #: includes/functions/functions.php:1807 #, php-format -msgctxt "(a man’s) sister’s great ×(%d-1) granddaughter" -msgid "great ×%d niece" +msgctxt "(a man’s) sister’s great ×(%s-1) granddaughter" +msgid "great ×%s niece" msgstr "" #: includes/functions/functions.php:1809 #, php-format -msgctxt "(a woman’s) great ×%d niece" -msgid "great ×%d niece" +msgctxt "(a woman’s) great ×%s niece" +msgid "great ×%s niece" msgstr "" -#. I18N: if you need a different number for %d, contact the developers, as a code-change is required +#. I18N: if you need a different number for %s, contact the developers, as a code-change is required #: includes/functions/functions.php:1637 includes/functions/functions.php:1665 #, php-format -msgid "great ×%d uncle" +msgid "great ×%s uncle" msgstr "" #: includes/functions/functions.php:1647 #, php-format -msgctxt "great ×(%d-1) grandfather’s brother" -msgid "great ×%d uncle" +msgctxt "great ×(%s-1) grandfather’s brother" +msgid "great ×%s uncle" msgstr "" #: includes/functions/functions.php:1649 #, php-format -msgctxt "great ×(%d-1) grandmother’s brother" -msgid "great ×%d uncle" +msgctxt "great ×(%s-1) grandmother’s brother" +msgid "great ×%s uncle" msgstr "" #: includes/functions/functions.php:1651 #, php-format -msgctxt "great ×(%d-1) grandparent’s brother" -msgid "great ×%d uncle" +msgctxt "great ×(%s-1) grandparent’s brother" +msgid "great ×%s uncle" msgstr "" #: includes/functions/functions.php:1579 @@ -18564,8 +18564,8 @@ msgstr "" #: app/Module/UpcomingAnniversariesModule.php:125 #: app/Module/YahrzeitModule.php:250 #, php-format -msgid "maximum %d day" -msgid_plural "maximum %d days" +msgid "maximum %s day" +msgid_plural "maximum %s days" msgstr[0] "" msgstr[1] "" diff --git a/language/es.po b/language/es.po index e3f8043381..04d447cb17 100644 --- a/language/es.po +++ b/language/es.po @@ -190,50 +190,50 @@ msgstr "%G:%i:%s" #: app/Module/LoggedInUsersModule.php:51 app/Stats.php:5372 #, php-format -msgid "%d anonymous logged-in user" -msgid_plural "%d anonymous logged-in users" -msgstr[0] "%d usuario anónimo en sesión" -msgstr[1] "%d usuarios anónimos en sesión" +msgid "%s anonymous logged-in user" +msgid_plural "%s anonymous logged-in users" +msgstr[0] "%s usuario anónimo en sesión" +msgstr[1] "%s usuarios anónimos en sesión" #: app/Module/LoggedInUsersModule.php:57 app/Stats.php:5382 #, php-format -msgid "%d logged-in user" -msgid_plural "%d logged-in users" -msgstr[0] "%d usuario en sesión" -msgstr[1] "%d usuarios en sesión" +msgid "%s logged-in user" +msgid_plural "%s logged-in users" +msgstr[0] "%s usuario en sesión" +msgstr[1] "%s usuarios en sesión" #: app/Module/RelativesTabModule.php:62 #, php-format -msgid "%d month" -msgid_plural "%d months" -msgstr[0] "%d mes" -msgstr[1] "%d meses" +msgid "%s month" +msgid_plural "%s months" +msgstr[0] "%s mes" +msgstr[1] "%s meses" #: app/Module/RelativesTabModule.php:60 #, php-format -msgid "%d year" -msgid_plural "%d years" -msgstr[0] "%d año" -msgstr[1] "%d años" +msgid "%s year" +msgid_plural "%s years" +msgstr[0] "%s año" +msgstr[1] "%s años" #: includes/functions/functions.php:555 #, php-format msgctxt "FEMALE" -msgid "%d × cousin" -msgstr "prima %dª" +msgid "%s × cousin" +msgstr "prima %sª" #. I18N: Note that for Italian and Polish, “N’th cousins” are different from English “N’th cousins”, and the software has already generated the correct “N” for your language. You only need to translate - you do not need to convert. For other languages, if your cousin rules are different from English, please contact the developers. #: includes/functions/functions.php:520 #, php-format msgctxt "MALE" -msgid "%d × cousin" -msgstr "primo %dº" +msgid "%s × cousin" +msgstr "primo %sº" #: includes/functions/functions.php:590 #, php-format msgctxt "MALE/FEMALE" -msgid "%d × cousin" -msgstr "primo %dº" +msgid "%s × cousin" +msgstr "primo %sº" #. I18N: This is the format string for full dates. See http://php.net/date for codes #: app/Date.php:222 app/I18N.php:212 @@ -14304,8 +14304,8 @@ msgstr "" #: setup.php:183 #, php-format -msgid "This server’s memory limit is %d MB and its CPU time limit is %d seconds." -msgstr "El límite de memoria del servidor es de %dMB y el límite de tiempo de la CPU es de %d segundos." +msgid "This server’s memory limit is %s MB and its CPU time limit is %s seconds." +msgstr "El límite de memoria del servidor es de %sMB y el límite de tiempo de la CPU es de %s segundos." #. I18N: Help text for the “Other facts to show in charts” configuration setting #: admin_trees_config.php:1632 @@ -16980,146 +16980,146 @@ msgstr "esposa del nieto" #: includes/functions/functions.php:1639 includes/functions/functions.php:1654 #: includes/functions/functions.php:1667 #, php-format -msgid "great ×%d aunt" -msgstr "tía %d-buela" +msgid "great ×%s aunt" +msgstr "tía %s-buela" #: includes/functions/functions.php:1641 includes/functions/functions.php:1656 #: includes/functions/functions.php:1669 #, php-format -msgid "great ×%d aunt/uncle" -msgstr "tio %d-abuelo" +msgid "great ×%s aunt/uncle" +msgstr "tio %s-abuelo" #: includes/functions/functions.php:2042 includes/functions/functions.php:2057 #, php-format -msgid "great ×%d grandchild" -msgstr "%d-chozno" +msgid "great ×%s grandchild" +msgstr "%s-chozno" #: includes/functions/functions.php:2040 includes/functions/functions.php:2055 #, php-format -msgid "great ×%d granddaughter" -msgstr "%d-chozna" +msgid "great ×%s granddaughter" +msgstr "%s-chozna" -#. I18N: if you need a different number for %d, contact the developers, as a code-change is required +#. I18N: if you need a different number for %s, contact the developers, as a code-change is required #: includes/functions/functions.php:1912 includes/functions/functions.php:1922 #: includes/functions/functions.php:1932 includes/functions/functions.php:1942 #: includes/functions/functions.php:1954 #, php-format -msgid "great ×%d grandfather" -msgstr "abuelo del %dº grado" +msgid "great ×%s grandfather" +msgstr "abuelo del %sº grado" #: includes/functions/functions.php:1914 includes/functions/functions.php:1924 #: includes/functions/functions.php:1934 includes/functions/functions.php:1944 #: includes/functions/functions.php:1956 #, php-format -msgid "great ×%d grandmother" -msgstr "abuela del %dº grado" +msgid "great ×%s grandmother" +msgstr "abuela del %sº grado" #: includes/functions/functions.php:1916 includes/functions/functions.php:1926 #: includes/functions/functions.php:1936 includes/functions/functions.php:1946 #: includes/functions/functions.php:1958 #, php-format -msgid "great ×%d grandparent" -msgstr "abuelo del %dº grado" +msgid "great ×%s grandparent" +msgstr "abuelo del %sº grado" -#. I18N: if you need a different number for %d, contact the developers, as a code-change is required +#. I18N: if you need a different number for %s, contact the developers, as a code-change is required #: includes/functions/functions.php:2038 includes/functions/functions.php:2053 #, php-format -msgid "great ×%d grandson" -msgstr "%d-chozno" +msgid "great ×%s grandson" +msgstr "%s-chozno" -#. I18N: if you need a different number for %d, contact the developers, as a code-change is required +#. I18N: if you need a different number for %s, contact the developers, as a code-change is required #: includes/functions/functions.php:1823 includes/functions/functions.php:1836 #, php-format -msgid "great ×%d nephew" -msgstr "sobrino %d-nieto" +msgid "great ×%s nephew" +msgstr "sobrino %s-nieto" #: includes/functions/functions.php:1797 #, php-format -msgctxt "(a man’s) brother’s great ×(%d-1) grandson" -msgid "great ×%d nephew" -msgstr "sobrino %d-nieto" +msgctxt "(a man’s) brother’s great ×(%s-1) grandson" +msgid "great ×%s nephew" +msgstr "sobrino %s-nieto" #: includes/functions/functions.php:1799 #, php-format -msgctxt "(a man’s) sister’s great ×(%d-1) grandson" -msgid "great ×%d nephew" -msgstr "sobrino %d-nieto" +msgctxt "(a man’s) sister’s great ×(%s-1) grandson" +msgid "great ×%s nephew" +msgstr "sobrino %s-nieto" #: includes/functions/functions.php:1801 #, php-format -msgctxt "(a woman’s) great ×%d nephew" -msgid "great ×%d nephew" -msgstr "sobrino %d-nieto" +msgctxt "(a woman’s) great ×%s nephew" +msgid "great ×%s nephew" +msgstr "sobrino %s-nieto" #: includes/functions/functions.php:1827 includes/functions/functions.php:1840 #, php-format -msgid "great ×%d nephew/niece" -msgstr "sobrino %d-nieto" +msgid "great ×%s nephew/niece" +msgstr "sobrino %s-nieto" #: includes/functions/functions.php:1813 #, php-format -msgctxt "(a man’s) brother’s great ×(%d-1) grandchild" -msgid "great ×%d nephew/niece" -msgstr "sobrino %d-nieto" +msgctxt "(a man’s) brother’s great ×(%s-1) grandchild" +msgid "great ×%s nephew/niece" +msgstr "sobrino %s-nieto" #: includes/functions/functions.php:1815 #, php-format -msgctxt "(a man’s) sister’s great ×(%d-1) grandchild" -msgid "great ×%d nephew/niece" -msgstr "sobrino %d-nieto" +msgctxt "(a man’s) sister’s great ×(%s-1) grandchild" +msgid "great ×%s nephew/niece" +msgstr "sobrino %s-nieto" #: includes/functions/functions.php:1817 #, php-format -msgctxt "(a woman’s) great ×%d nephew/niece" -msgid "great ×%d nephew/niece" -msgstr "sobrino %d-nieto" +msgctxt "(a woman’s) great ×%s nephew/niece" +msgid "great ×%s nephew/niece" +msgstr "sobrino %s-nieto" #: includes/functions/functions.php:1825 includes/functions/functions.php:1838 #, php-format -msgid "great ×%d niece" -msgstr "sobrina %d-nieta" +msgid "great ×%s niece" +msgstr "sobrina %s-nieta" #: includes/functions/functions.php:1805 #, php-format -msgctxt "(a man’s) brother’s great ×(%d-1) granddaughter" -msgid "great ×%d niece" -msgstr "sobrina %d-nieta" +msgctxt "(a man’s) brother’s great ×(%s-1) granddaughter" +msgid "great ×%s niece" +msgstr "sobrina %s-nieta" #: includes/functions/functions.php:1807 #, php-format -msgctxt "(a man’s) sister’s great ×(%d-1) granddaughter" -msgid "great ×%d niece" -msgstr "sobrina %d-nieta" +msgctxt "(a man’s) sister’s great ×(%s-1) granddaughter" +msgid "great ×%s niece" +msgstr "sobrina %s-nieta" #: includes/functions/functions.php:1809 #, php-format -msgctxt "(a woman’s) great ×%d niece" -msgid "great ×%d niece" -msgstr "sobrina %d-nieta" +msgctxt "(a woman’s) great ×%s niece" +msgid "great ×%s niece" +msgstr "sobrina %s-nieta" -#. I18N: if you need a different number for %d, contact the developers, as a code-change is required +#. I18N: if you need a different number for %s, contact the developers, as a code-change is required #: includes/functions/functions.php:1637 includes/functions/functions.php:1665 #, php-format -msgid "great ×%d uncle" -msgstr "tio %d-abuelo" +msgid "great ×%s uncle" +msgstr "tio %s-abuelo" #: includes/functions/functions.php:1647 #, php-format -msgctxt "great ×(%d-1) grandfather’s brother" -msgid "great ×%d uncle" -msgstr "tio %d-abuelo" +msgctxt "great ×(%s-1) grandfather’s brother" +msgid "great ×%s uncle" +msgstr "tio %s-abuelo" #: includes/functions/functions.php:1649 #, php-format -msgctxt "great ×(%d-1) grandmother’s brother" -msgid "great ×%d uncle" -msgstr "tio %d-abuelo" +msgctxt "great ×(%s-1) grandmother’s brother" +msgid "great ×%s uncle" +msgstr "tio %s-abuelo" #: includes/functions/functions.php:1651 #, php-format -msgctxt "great ×(%d-1) grandparent’s brother" -msgid "great ×%d uncle" -msgstr "tio %d-abuelo" +msgctxt "great ×(%s-1) grandparent’s brother" +msgid "great ×%s uncle" +msgstr "tio %s-abuelo" #: includes/functions/functions.php:1579 msgid "great ×4 aunt" @@ -18569,10 +18569,10 @@ msgstr "máximo" #: app/Module/UpcomingAnniversariesModule.php:125 #: app/Module/YahrzeitModule.php:250 #, php-format -msgid "maximum %d day" -msgid_plural "maximum %d days" +msgid "maximum %s day" +msgid_plural "maximum %s days" msgstr[0] "máximo: un día" -msgstr[1] "máximo: %d días" +msgstr[1] "máximo: %s días" #: admin_trees_config.php:404 admin_trees_config.php:428 #: admin_trees_config.php:468 admin_trees_config.php:508 @@ -20080,10 +20080,10 @@ msgstr "…" #~ msgid "No other link between the two individuals could be found." #~ msgstr "No se encontró otro parentesco entre estas dos personas." -#~ msgid "Note: “living” is defined (if no death or burial is known) as ending %d year after birth or estimated birth." -#~ msgid_plural "Note: “living” is defined (if no death or burial is known) as ending %d years after birth or estimated birth." -#~ msgstr[0] "Nota: «viviente» se define (si no hay muerte o entierro conocido) como acabando %d año después de la fecha o estimación de la fecha del nacimiento." -#~ msgstr[1] "Nota: «viviente» se define (si no hay muerte o entierro conocido) como acabando %d años después de la fecha o estimación de la fecha del nacimiento." +#~ msgid "Note: “living” is defined (if no death or burial is known) as ending %s year after birth or estimated birth." +#~ msgid_plural "Note: “living” is defined (if no death or burial is known) as ending %s years after birth or estimated birth." +#~ msgstr[0] "Nota: «viviente» se define (si no hay muerte o entierro conocido) como acabando %s año después de la fecha o estimación de la fecha del nacimiento." +#~ msgstr[1] "Nota: «viviente» se define (si no hay muerte o entierro conocido) como acabando %s años después de la fecha o estimación de la fecha del nacimiento." #~ msgid "Notes are free-form text and will appear in the Fact Details section of the page." #~ msgstr "Las notas son de formato libre y aparecerán en la sección de Detalle de Hechos de la página." diff --git a/language/et.po b/language/et.po index bec73f1c4f..c1b2832afb 100644 --- a/language/et.po +++ b/language/et.po @@ -190,49 +190,49 @@ msgstr "%G:%i:%s" #: app/Module/LoggedInUsersModule.php:51 app/Stats.php:5372 #, php-format -msgid "%d anonymous logged-in user" -msgid_plural "%d anonymous logged-in users" -msgstr[0] "%d anonüümne sisseloginud kasutaja" -msgstr[1] "%d anonüümset sisseloginud kasutajat" +msgid "%s anonymous logged-in user" +msgid_plural "%s anonymous logged-in users" +msgstr[0] "%s anonüümne sisseloginud kasutaja" +msgstr[1] "%s anonüümset sisseloginud kasutajat" #: app/Module/LoggedInUsersModule.php:57 app/Stats.php:5382 #, php-format -msgid "%d logged-in user" -msgid_plural "%d logged-in users" -msgstr[0] "%d sisseloginud kasutaja" -msgstr[1] "%d sisseloginud kasutajat" +msgid "%s logged-in user" +msgid_plural "%s logged-in users" +msgstr[0] "%s sisseloginud kasutaja" +msgstr[1] "%s sisseloginud kasutajat" #: app/Module/RelativesTabModule.php:62 #, php-format -msgid "%d month" -msgid_plural "%d months" -msgstr[0] "%d kuu" -msgstr[1] "%d kuud" +msgid "%s month" +msgid_plural "%s months" +msgstr[0] "%s kuu" +msgstr[1] "%s kuud" #: app/Module/RelativesTabModule.php:60 #, php-format -msgid "%d year" -msgid_plural "%d years" -msgstr[0] "%d aasta" -msgstr[1] "%d aastat" +msgid "%s year" +msgid_plural "%s years" +msgstr[0] "%s aasta" +msgstr[1] "%s aastat" #: includes/functions/functions.php:555 #, php-format msgctxt "FEMALE" -msgid "%d × cousin" +msgid "%s × cousin" msgstr "" #. I18N: Note that for Italian and Polish, “N’th cousins” are different from English “N’th cousins”, and the software has already generated the correct “N” for your language. You only need to translate - you do not need to convert. For other languages, if your cousin rules are different from English, please contact the developers. #: includes/functions/functions.php:520 #, php-format msgctxt "MALE" -msgid "%d × cousin" +msgid "%s × cousin" msgstr "" #: includes/functions/functions.php:590 #, php-format msgctxt "MALE/FEMALE" -msgid "%d × cousin" +msgid "%s × cousin" msgstr "" #. I18N: This is the format string for full dates. See http://php.net/date for codes @@ -14305,8 +14305,8 @@ msgstr "" #: setup.php:183 #, php-format -msgid "This server’s memory limit is %d MB and its CPU time limit is %d seconds." -msgstr "Selle serveri mälulimiit on %dMB ja protsessori aja limiit on %d sekundit." +msgid "This server’s memory limit is %s MB and its CPU time limit is %s seconds." +msgstr "Selle serveri mälulimiit on %sMB ja protsessori aja limiit on %s sekundit." #. I18N: Help text for the “Other facts to show in charts” configuration setting #: admin_trees_config.php:1632 @@ -16981,145 +16981,145 @@ msgstr "" #: includes/functions/functions.php:1639 includes/functions/functions.php:1654 #: includes/functions/functions.php:1667 #, php-format -msgid "great ×%d aunt" +msgid "great ×%s aunt" msgstr "" #: includes/functions/functions.php:1641 includes/functions/functions.php:1656 #: includes/functions/functions.php:1669 #, php-format -msgid "great ×%d aunt/uncle" +msgid "great ×%s aunt/uncle" msgstr "" #: includes/functions/functions.php:2042 includes/functions/functions.php:2057 #, php-format -msgid "great ×%d grandchild" -msgstr "lapse %d× lapselaps" +msgid "great ×%s grandchild" +msgstr "lapse %s× lapselaps" #: includes/functions/functions.php:2040 includes/functions/functions.php:2055 #, php-format -msgid "great ×%d granddaughter" -msgstr "lapse %d× lapselaps" +msgid "great ×%s granddaughter" +msgstr "lapse %s× lapselaps" -#. I18N: if you need a different number for %d, contact the developers, as a code-change is required +#. I18N: if you need a different number for %s, contact the developers, as a code-change is required #: includes/functions/functions.php:1912 includes/functions/functions.php:1922 #: includes/functions/functions.php:1932 includes/functions/functions.php:1942 #: includes/functions/functions.php:1954 #, php-format -msgid "great ×%d grandfather" -msgstr "vana %d× vanaisa" +msgid "great ×%s grandfather" +msgstr "vana %s× vanaisa" #: includes/functions/functions.php:1914 includes/functions/functions.php:1924 #: includes/functions/functions.php:1934 includes/functions/functions.php:1944 #: includes/functions/functions.php:1956 #, php-format -msgid "great ×%d grandmother" -msgstr "vana %d× vanaema" +msgid "great ×%s grandmother" +msgstr "vana %s× vanaema" #: includes/functions/functions.php:1916 includes/functions/functions.php:1926 #: includes/functions/functions.php:1936 includes/functions/functions.php:1946 #: includes/functions/functions.php:1958 #, php-format -msgid "great ×%d grandparent" -msgstr "vana %d× vanavanem" +msgid "great ×%s grandparent" +msgstr "vana %s× vanavanem" -#. I18N: if you need a different number for %d, contact the developers, as a code-change is required +#. I18N: if you need a different number for %s, contact the developers, as a code-change is required #: includes/functions/functions.php:2038 includes/functions/functions.php:2053 #, php-format -msgid "great ×%d grandson" -msgstr "lapse %d× lapselaps" +msgid "great ×%s grandson" +msgstr "lapse %s× lapselaps" -#. I18N: if you need a different number for %d, contact the developers, as a code-change is required +#. I18N: if you need a different number for %s, contact the developers, as a code-change is required #: includes/functions/functions.php:1823 includes/functions/functions.php:1836 #, php-format -msgid "great ×%d nephew" +msgid "great ×%s nephew" msgstr "" #: includes/functions/functions.php:1797 #, php-format -msgctxt "(a man’s) brother’s great ×(%d-1) grandson" -msgid "great ×%d nephew" +msgctxt "(a man’s) brother’s great ×(%s-1) grandson" +msgid "great ×%s nephew" msgstr "" #: includes/functions/functions.php:1799 #, php-format -msgctxt "(a man’s) sister’s great ×(%d-1) grandson" -msgid "great ×%d nephew" +msgctxt "(a man’s) sister’s great ×(%s-1) grandson" +msgid "great ×%s nephew" msgstr "" #: includes/functions/functions.php:1801 #, php-format -msgctxt "(a woman’s) great ×%d nephew" -msgid "great ×%d nephew" +msgctxt "(a woman’s) great ×%s nephew" +msgid "great ×%s nephew" msgstr "" #: includes/functions/functions.php:1827 includes/functions/functions.php:1840 #, php-format -msgid "great ×%d nephew/niece" +msgid "great ×%s nephew/niece" msgstr "" #: includes/functions/functions.php:1813 #, php-format -msgctxt "(a man’s) brother’s great ×(%d-1) grandchild" -msgid "great ×%d nephew/niece" +msgctxt "(a man’s) brother’s great ×(%s-1) grandchild" +msgid "great ×%s nephew/niece" msgstr "" #: includes/functions/functions.php:1815 #, php-format -msgctxt "(a man’s) sister’s great ×(%d-1) grandchild" -msgid "great ×%d nephew/niece" +msgctxt "(a man’s) sister’s great ×(%s-1) grandchild" +msgid "great ×%s nephew/niece" msgstr "" #: includes/functions/functions.php:1817 #, php-format -msgctxt "(a woman’s) great ×%d nephew/niece" -msgid "great ×%d nephew/niece" +msgctxt "(a woman’s) great ×%s nephew/niece" +msgid "great ×%s nephew/niece" msgstr "" #: includes/functions/functions.php:1825 includes/functions/functions.php:1838 #, php-format -msgid "great ×%d niece" +msgid "great ×%s niece" msgstr "" #: includes/functions/functions.php:1805 #, php-format -msgctxt "(a man’s) brother’s great ×(%d-1) granddaughter" -msgid "great ×%d niece" +msgctxt "(a man’s) brother’s great ×(%s-1) granddaughter" +msgid "great ×%s niece" msgstr "" #: includes/functions/functions.php:1807 #, php-format -msgctxt "(a man’s) sister’s great ×(%d-1) granddaughter" -msgid "great ×%d niece" +msgctxt "(a man’s) sister’s great ×(%s-1) granddaughter" +msgid "great ×%s niece" msgstr "" #: includes/functions/functions.php:1809 #, php-format -msgctxt "(a woman’s) great ×%d niece" -msgid "great ×%d niece" +msgctxt "(a woman’s) great ×%s niece" +msgid "great ×%s niece" msgstr "" -#. I18N: if you need a different number for %d, contact the developers, as a code-change is required +#. I18N: if you need a different number for %s, contact the developers, as a code-change is required #: includes/functions/functions.php:1637 includes/functions/functions.php:1665 #, php-format -msgid "great ×%d uncle" +msgid "great ×%s uncle" msgstr "" #: includes/functions/functions.php:1647 #, php-format -msgctxt "great ×(%d-1) grandfather’s brother" -msgid "great ×%d uncle" +msgctxt "great ×(%s-1) grandfather’s brother" +msgid "great ×%s uncle" msgstr "" #: includes/functions/functions.php:1649 #, php-format -msgctxt "great ×(%d-1) grandmother’s brother" -msgid "great ×%d uncle" +msgctxt "great ×(%s-1) grandmother’s brother" +msgid "great ×%s uncle" msgstr "" #: includes/functions/functions.php:1651 #, php-format -msgctxt "great ×(%d-1) grandparent’s brother" -msgid "great ×%d uncle" +msgctxt "great ×(%s-1) grandparent’s brother" +msgid "great ×%s uncle" msgstr "" #: includes/functions/functions.php:1579 @@ -18570,10 +18570,10 @@ msgstr "" #: app/Module/UpcomingAnniversariesModule.php:125 #: app/Module/YahrzeitModule.php:250 #, php-format -msgid "maximum %d day" -msgid_plural "maximum %d days" -msgstr[0] "maksimaalne %d päev" -msgstr[1] "maksimaalsed %d päevad" +msgid "maximum %s day" +msgid_plural "maximum %s days" +msgstr[0] "maksimaalne %s päev" +msgstr[1] "maksimaalsed %s päevad" #: admin_trees_config.php:404 admin_trees_config.php:428 #: admin_trees_config.php:468 admin_trees_config.php:508 diff --git a/language/fa.po b/language/fa.po index 45cd5470e6..59b75163ba 100644 --- a/language/fa.po +++ b/language/fa.po @@ -186,45 +186,45 @@ msgstr "%g:%i:%s %a" #: app/Module/LoggedInUsersModule.php:51 app/Stats.php:5372 #, php-format -msgid "%d anonymous logged-in user" -msgid_plural "%d anonymous logged-in users" -msgstr[0] "%d کاربر ناشناس وارد شده اند" +msgid "%s anonymous logged-in user" +msgid_plural "%s anonymous logged-in users" +msgstr[0] "%s کاربر ناشناس وارد شده اند" #: app/Module/LoggedInUsersModule.php:57 app/Stats.php:5382 #, php-format -msgid "%d logged-in user" -msgid_plural "%d logged-in users" -msgstr[0] "%d کاربر وارد شده اند" +msgid "%s logged-in user" +msgid_plural "%s logged-in users" +msgstr[0] "%s کاربر وارد شده اند" #: app/Module/RelativesTabModule.php:62 #, php-format -msgid "%d month" -msgid_plural "%d months" -msgstr[0] "%d ماه" +msgid "%s month" +msgid_plural "%s months" +msgstr[0] "%s ماه" #: app/Module/RelativesTabModule.php:60 #, php-format -msgid "%d year" -msgid_plural "%d years" -msgstr[0] "%d سال" +msgid "%s year" +msgid_plural "%s years" +msgstr[0] "%s سال" #: includes/functions/functions.php:555 #, php-format msgctxt "FEMALE" -msgid "%d × cousin" +msgid "%s × cousin" msgstr "" #. I18N: Note that for Italian and Polish, “N’th cousins” are different from English “N’th cousins”, and the software has already generated the correct “N” for your language. You only need to translate - you do not need to convert. For other languages, if your cousin rules are different from English, please contact the developers. #: includes/functions/functions.php:520 #, php-format msgctxt "MALE" -msgid "%d × cousin" +msgid "%s × cousin" msgstr "" #: includes/functions/functions.php:590 #, php-format msgctxt "MALE/FEMALE" -msgid "%d × cousin" +msgid "%s × cousin" msgstr "" #. I18N: This is the format string for full dates. See http://php.net/date for codes @@ -14277,8 +14277,8 @@ msgstr "" #: setup.php:183 #, php-format -msgid "This server’s memory limit is %d MB and its CPU time limit is %d seconds." -msgstr "نهایت حافظه سرور %d مگابایت و نهایت محدودیت زمانی پردازشگر نیز %d ثانیه می باشد" +msgid "This server’s memory limit is %s MB and its CPU time limit is %s seconds." +msgstr "نهایت حافظه سرور %s مگابایت و نهایت محدودیت زمانی پردازشگر نیز %s ثانیه می باشد" #. I18N: Help text for the “Other facts to show in charts” configuration setting #: admin_trees_config.php:1632 @@ -16953,145 +16953,145 @@ msgstr "" #: includes/functions/functions.php:1639 includes/functions/functions.php:1654 #: includes/functions/functions.php:1667 #, php-format -msgid "great ×%d aunt" +msgid "great ×%s aunt" msgstr "" #: includes/functions/functions.php:1641 includes/functions/functions.php:1656 #: includes/functions/functions.php:1669 #, php-format -msgid "great ×%d aunt/uncle" +msgid "great ×%s aunt/uncle" msgstr "" #: includes/functions/functions.php:2042 includes/functions/functions.php:2057 #, php-format -msgid "great ×%d grandchild" +msgid "great ×%s grandchild" msgstr "" #: includes/functions/functions.php:2040 includes/functions/functions.php:2055 #, php-format -msgid "great ×%d granddaughter" +msgid "great ×%s granddaughter" msgstr "" -#. I18N: if you need a different number for %d, contact the developers, as a code-change is required +#. I18N: if you need a different number for %s, contact the developers, as a code-change is required #: includes/functions/functions.php:1912 includes/functions/functions.php:1922 #: includes/functions/functions.php:1932 includes/functions/functions.php:1942 #: includes/functions/functions.php:1954 #, php-format -msgid "great ×%d grandfather" +msgid "great ×%s grandfather" msgstr "" #: includes/functions/functions.php:1914 includes/functions/functions.php:1924 #: includes/functions/functions.php:1934 includes/functions/functions.php:1944 #: includes/functions/functions.php:1956 #, php-format -msgid "great ×%d grandmother" +msgid "great ×%s grandmother" msgstr "" #: includes/functions/functions.php:1916 includes/functions/functions.php:1926 #: includes/functions/functions.php:1936 includes/functions/functions.php:1946 #: includes/functions/functions.php:1958 #, php-format -msgid "great ×%d grandparent" +msgid "great ×%s grandparent" msgstr "" -#. I18N: if you need a different number for %d, contact the developers, as a code-change is required +#. I18N: if you need a different number for %s, contact the developers, as a code-change is required #: includes/functions/functions.php:2038 includes/functions/functions.php:2053 #, php-format -msgid "great ×%d grandson" +msgid "great ×%s grandson" msgstr "" -#. I18N: if you need a different number for %d, contact the developers, as a code-change is required +#. I18N: if you need a different number for %s, contact the developers, as a code-change is required #: includes/functions/functions.php:1823 includes/functions/functions.php:1836 #, php-format -msgid "great ×%d nephew" +msgid "great ×%s nephew" msgstr "" #: includes/functions/functions.php:1797 #, php-format -msgctxt "(a man’s) brother’s great ×(%d-1) grandson" -msgid "great ×%d nephew" +msgctxt "(a man’s) brother’s great ×(%s-1) grandson" +msgid "great ×%s nephew" msgstr "" #: includes/functions/functions.php:1799 #, php-format -msgctxt "(a man’s) sister’s great ×(%d-1) grandson" -msgid "great ×%d nephew" +msgctxt "(a man’s) sister’s great ×(%s-1) grandson" +msgid "great ×%s nephew" msgstr "" #: includes/functions/functions.php:1801 #, php-format -msgctxt "(a woman’s) great ×%d nephew" -msgid "great ×%d nephew" +msgctxt "(a woman’s) great ×%s nephew" +msgid "great ×%s nephew" msgstr "" #: includes/functions/functions.php:1827 includes/functions/functions.php:1840 #, php-format -msgid "great ×%d nephew/niece" +msgid "great ×%s nephew/niece" msgstr "" #: includes/functions/functions.php:1813 #, php-format -msgctxt "(a man’s) brother’s great ×(%d-1) grandchild" -msgid "great ×%d nephew/niece" +msgctxt "(a man’s) brother’s great ×(%s-1) grandchild" +msgid "great ×%s nephew/niece" msgstr "" #: includes/functions/functions.php:1815 #, php-format -msgctxt "(a man’s) sister’s great ×(%d-1) grandchild" -msgid "great ×%d nephew/niece" +msgctxt "(a man’s) sister’s great ×(%s-1) grandchild" +msgid "great ×%s nephew/niece" msgstr "" #: includes/functions/functions.php:1817 #, php-format -msgctxt "(a woman’s) great ×%d nephew/niece" -msgid "great ×%d nephew/niece" +msgctxt "(a woman’s) great ×%s nephew/niece" +msgid "great ×%s nephew/niece" msgstr "" #: includes/functions/functions.php:1825 includes/functions/functions.php:1838 #, php-format -msgid "great ×%d niece" +msgid "great ×%s niece" msgstr "" #: includes/functions/functions.php:1805 #, php-format -msgctxt "(a man’s) brother’s great ×(%d-1) granddaughter" -msgid "great ×%d niece" +msgctxt "(a man’s) brother’s great ×(%s-1) granddaughter" +msgid "great ×%s niece" msgstr "" #: includes/functions/functions.php:1807 #, php-format -msgctxt "(a man’s) sister’s great ×(%d-1) granddaughter" -msgid "great ×%d niece" +msgctxt "(a man’s) sister’s great ×(%s-1) granddaughter" +msgid "great ×%s niece" msgstr "" #: includes/functions/functions.php:1809 #, php-format -msgctxt "(a woman’s) great ×%d niece" -msgid "great ×%d niece" +msgctxt "(a woman’s) great ×%s niece" +msgid "great ×%s niece" msgstr "" -#. I18N: if you need a different number for %d, contact the developers, as a code-change is required +#. I18N: if you need a different number for %s, contact the developers, as a code-change is required #: includes/functions/functions.php:1637 includes/functions/functions.php:1665 #, php-format -msgid "great ×%d uncle" +msgid "great ×%s uncle" msgstr "" #: includes/functions/functions.php:1647 #, php-format -msgctxt "great ×(%d-1) grandfather’s brother" -msgid "great ×%d uncle" +msgctxt "great ×(%s-1) grandfather’s brother" +msgid "great ×%s uncle" msgstr "" #: includes/functions/functions.php:1649 #, php-format -msgctxt "great ×(%d-1) grandmother’s brother" -msgid "great ×%d uncle" +msgctxt "great ×(%s-1) grandmother’s brother" +msgid "great ×%s uncle" msgstr "" #: includes/functions/functions.php:1651 #, php-format -msgctxt "great ×(%d-1) grandparent’s brother" -msgid "great ×%d uncle" +msgctxt "great ×(%s-1) grandparent’s brother" +msgid "great ×%s uncle" msgstr "" #: includes/functions/functions.php:1579 @@ -18542,8 +18542,8 @@ msgstr "" #: app/Module/UpcomingAnniversariesModule.php:125 #: app/Module/YahrzeitModule.php:250 #, php-format -msgid "maximum %d day" -msgid_plural "maximum %d days" +msgid "maximum %s day" +msgid_plural "maximum %s days" msgstr[0] "" msgstr[1] "" diff --git a/language/fi.po b/language/fi.po index 28e38f44d3..97d78b977a 100644 --- a/language/fi.po +++ b/language/fi.po @@ -185,50 +185,50 @@ msgstr "%H:%i:%s" #: app/Module/LoggedInUsersModule.php:51 app/Stats.php:5372 #, php-format -msgid "%d anonymous logged-in user" -msgid_plural "%d anonymous logged-in users" -msgstr[0] "%d tuntematon käyttäjä" -msgstr[1] "%d tuntematonta käyttäjää" +msgid "%s anonymous logged-in user" +msgid_plural "%s anonymous logged-in users" +msgstr[0] "%s tuntematon käyttäjä" +msgstr[1] "%s tuntematonta käyttäjää" #: app/Module/LoggedInUsersModule.php:57 app/Stats.php:5382 #, php-format -msgid "%d logged-in user" -msgid_plural "%d logged-in users" -msgstr[0] "%d kirjautunut käyttäjä" -msgstr[1] "%d kirjautunutta käyttäjää" +msgid "%s logged-in user" +msgid_plural "%s logged-in users" +msgstr[0] "%s kirjautunut käyttäjä" +msgstr[1] "%s kirjautunutta käyttäjää" #: app/Module/RelativesTabModule.php:62 #, php-format -msgid "%d month" -msgid_plural "%d months" -msgstr[0] "%d kuukausi" -msgstr[1] "%d kuukautta" +msgid "%s month" +msgid_plural "%s months" +msgstr[0] "%s kuukausi" +msgstr[1] "%s kuukautta" #: app/Module/RelativesTabModule.php:60 #, php-format -msgid "%d year" -msgid_plural "%d years" -msgstr[0] "%d vuosi" -msgstr[1] "%d vuotta" +msgid "%s year" +msgid_plural "%s years" +msgstr[0] "%s vuosi" +msgstr[1] "%s vuotta" #: includes/functions/functions.php:555 #, php-format msgctxt "FEMALE" -msgid "%d × cousin" -msgstr "%d. serkku" +msgid "%s × cousin" +msgstr "%s. serkku" #. I18N: Note that for Italian and Polish, “N’th cousins” are different from English “N’th cousins”, and the software has already generated the correct “N” for your language. You only need to translate - you do not need to convert. For other languages, if your cousin rules are different from English, please contact the developers. #: includes/functions/functions.php:520 #, php-format msgctxt "MALE" -msgid "%d × cousin" -msgstr "%d. serkku" +msgid "%s × cousin" +msgstr "%s. serkku" #: includes/functions/functions.php:590 #, php-format msgctxt "MALE/FEMALE" -msgid "%d × cousin" -msgstr "%d. serkku" +msgid "%s × cousin" +msgstr "%s. serkku" #. I18N: This is the format string for full dates. See http://php.net/date for codes #: app/Date.php:222 app/I18N.php:212 @@ -14299,8 +14299,8 @@ msgstr "Tämä palvelin ei tue turvallista latausta käyttämällä HTTPS:ää." #: setup.php:183 #, php-format -msgid "This server’s memory limit is %d MB and its CPU time limit is %d seconds." -msgstr "Palvelimen muistirajoitus on %dMB ja CPU suoritusaikarajoitus on %d sekuntia." +msgid "This server’s memory limit is %s MB and its CPU time limit is %s seconds." +msgstr "Palvelimen muistirajoitus on %sMB ja CPU suoritusaikarajoitus on %s sekuntia." #. I18N: Help text for the “Other facts to show in charts” configuration setting #: admin_trees_config.php:1632 @@ -16975,146 +16975,146 @@ msgstr "pojanpojanvaimo" #: includes/functions/functions.php:1639 includes/functions/functions.php:1654 #: includes/functions/functions.php:1667 #, php-format -msgid "great ×%d aunt" -msgstr "täti ×%d polven takaa" +msgid "great ×%s aunt" +msgstr "täti ×%s polven takaa" #: includes/functions/functions.php:1641 includes/functions/functions.php:1656 #: includes/functions/functions.php:1669 #, php-format -msgid "great ×%d aunt/uncle" -msgstr "täti/setä ×%d polven takaa" +msgid "great ×%s aunt/uncle" +msgstr "täti/setä ×%s polven takaa" #: includes/functions/functions.php:2042 includes/functions/functions.php:2057 #, php-format -msgid "great ×%d grandchild" -msgstr "lapsenlapsi ×%d:nnessä sukupolvessa" +msgid "great ×%s grandchild" +msgstr "lapsenlapsi ×%s:nnessä sukupolvessa" #: includes/functions/functions.php:2040 includes/functions/functions.php:2055 #, php-format -msgid "great ×%d granddaughter" -msgstr "lapsentytär ×%d:nnessä sukupolvessa" +msgid "great ×%s granddaughter" +msgstr "lapsentytär ×%s:nnessä sukupolvessa" -#. I18N: if you need a different number for %d, contact the developers, as a code-change is required +#. I18N: if you need a different number for %s, contact the developers, as a code-change is required #: includes/functions/functions.php:1912 includes/functions/functions.php:1922 #: includes/functions/functions.php:1932 includes/functions/functions.php:1942 #: includes/functions/functions.php:1954 #, php-format -msgid "great ×%d grandfather" -msgstr "isoisä ×%d polven takaa" +msgid "great ×%s grandfather" +msgstr "isoisä ×%s polven takaa" #: includes/functions/functions.php:1914 includes/functions/functions.php:1924 #: includes/functions/functions.php:1934 includes/functions/functions.php:1944 #: includes/functions/functions.php:1956 #, php-format -msgid "great ×%d grandmother" -msgstr "isoäiti ×%d polven takaa" +msgid "great ×%s grandmother" +msgstr "isoäiti ×%s polven takaa" #: includes/functions/functions.php:1916 includes/functions/functions.php:1926 #: includes/functions/functions.php:1936 includes/functions/functions.php:1946 #: includes/functions/functions.php:1958 #, php-format -msgid "great ×%d grandparent" -msgstr "isovanhempi ×%d polven takaa" +msgid "great ×%s grandparent" +msgstr "isovanhempi ×%s polven takaa" -#. I18N: if you need a different number for %d, contact the developers, as a code-change is required +#. I18N: if you need a different number for %s, contact the developers, as a code-change is required #: includes/functions/functions.php:2038 includes/functions/functions.php:2053 #, php-format -msgid "great ×%d grandson" -msgstr "lapsenpoika ×%d:nnessä sukupolvessa" +msgid "great ×%s grandson" +msgstr "lapsenpoika ×%s:nnessä sukupolvessa" -#. I18N: if you need a different number for %d, contact the developers, as a code-change is required +#. I18N: if you need a different number for %s, contact the developers, as a code-change is required #: includes/functions/functions.php:1823 includes/functions/functions.php:1836 #, php-format -msgid "great ×%d nephew" -msgstr "poika %d:ssa alenevassa polvessa" +msgid "great ×%s nephew" +msgstr "poika %s:ssa alenevassa polvessa" #: includes/functions/functions.php:1797 #, php-format -msgctxt "(a man’s) brother’s great ×(%d-1) grandson" -msgid "great ×%d nephew" -msgstr "sisarenpoika %d:nnessa alenevassa polvessa" +msgctxt "(a man’s) brother’s great ×(%s-1) grandson" +msgid "great ×%s nephew" +msgstr "sisarenpoika %s:nnessa alenevassa polvessa" #: includes/functions/functions.php:1799 #, php-format -msgctxt "(a man’s) sister’s great ×(%d-1) grandson" -msgid "great ×%d nephew" -msgstr "sisarenpoika %d:nnessa alenevassa polvessa" +msgctxt "(a man’s) sister’s great ×(%s-1) grandson" +msgid "great ×%s nephew" +msgstr "sisarenpoika %s:nnessa alenevassa polvessa" #: includes/functions/functions.php:1801 #, php-format -msgctxt "(a woman’s) great ×%d nephew" -msgid "great ×%d nephew" -msgstr "sisarenpoika %d:nnessa alenevassa polvessa" +msgctxt "(a woman’s) great ×%s nephew" +msgid "great ×%s nephew" +msgstr "sisarenpoika %s:nnessa alenevassa polvessa" #: includes/functions/functions.php:1827 includes/functions/functions.php:1840 #, php-format -msgid "great ×%d nephew/niece" -msgstr "lapsi %d:ssa alenevassa polvessa" +msgid "great ×%s nephew/niece" +msgstr "lapsi %s:ssa alenevassa polvessa" #: includes/functions/functions.php:1813 #, php-format -msgctxt "(a man’s) brother’s great ×(%d-1) grandchild" -msgid "great ×%d nephew/niece" -msgstr "sisarentytär/-poika %d:nnessa alenevassa polvessa" +msgctxt "(a man’s) brother’s great ×(%s-1) grandchild" +msgid "great ×%s nephew/niece" +msgstr "sisarentytär/-poika %s:nnessa alenevassa polvessa" #: includes/functions/functions.php:1815 #, php-format -msgctxt "(a man’s) sister’s great ×(%d-1) grandchild" -msgid "great ×%d nephew/niece" -msgstr "sisarentytär/-poika %d:nnessa alenevassa polvessa" +msgctxt "(a man’s) sister’s great ×(%s-1) grandchild" +msgid "great ×%s nephew/niece" +msgstr "sisarentytär/-poika %s:nnessa alenevassa polvessa" #: includes/functions/functions.php:1817 #, php-format -msgctxt "(a woman’s) great ×%d nephew/niece" -msgid "great ×%d nephew/niece" -msgstr "sisarentytär/-poika %d:nnessa alenevassa polvessa" +msgctxt "(a woman’s) great ×%s nephew/niece" +msgid "great ×%s nephew/niece" +msgstr "sisarentytär/-poika %s:nnessa alenevassa polvessa" #: includes/functions/functions.php:1825 includes/functions/functions.php:1838 #, php-format -msgid "great ×%d niece" -msgstr "tytär %d:ssa alenevassa polvessa" +msgid "great ×%s niece" +msgstr "tytär %s:ssa alenevassa polvessa" #: includes/functions/functions.php:1805 #, php-format -msgctxt "(a man’s) brother’s great ×(%d-1) granddaughter" -msgid "great ×%d niece" -msgstr "sisarentytär %d:nnessa alenevassa polvessa" +msgctxt "(a man’s) brother’s great ×(%s-1) granddaughter" +msgid "great ×%s niece" +msgstr "sisarentytär %s:nnessa alenevassa polvessa" #: includes/functions/functions.php:1807 #, php-format -msgctxt "(a man’s) sister’s great ×(%d-1) granddaughter" -msgid "great ×%d niece" -msgstr "sisarentytär %d:nnessa alenevassa polvessa" +msgctxt "(a man’s) sister’s great ×(%s-1) granddaughter" +msgid "great ×%s niece" +msgstr "sisarentytär %s:nnessa alenevassa polvessa" #: includes/functions/functions.php:1809 #, php-format -msgctxt "(a woman’s) great ×%d niece" -msgid "great ×%d niece" -msgstr "sisarentytär %d:nnessa alenevassa polvessa" +msgctxt "(a woman’s) great ×%s niece" +msgid "great ×%s niece" +msgstr "sisarentytär %s:nnessa alenevassa polvessa" -#. I18N: if you need a different number for %d, contact the developers, as a code-change is required +#. I18N: if you need a different number for %s, contact the developers, as a code-change is required #: includes/functions/functions.php:1637 includes/functions/functions.php:1665 #, php-format -msgid "great ×%d uncle" -msgstr "setä ×%d polven takaa" +msgid "great ×%s uncle" +msgstr "setä ×%s polven takaa" #: includes/functions/functions.php:1647 #, php-format -msgctxt "great ×(%d-1) grandfather’s brother" -msgid "great ×%d uncle" -msgstr "setä ×%d polven takaa" +msgctxt "great ×(%s-1) grandfather’s brother" +msgid "great ×%s uncle" +msgstr "setä ×%s polven takaa" #: includes/functions/functions.php:1649 #, php-format -msgctxt "great ×(%d-1) grandmother’s brother" -msgid "great ×%d uncle" -msgstr "setä ×%d polven takaa" +msgctxt "great ×(%s-1) grandmother’s brother" +msgid "great ×%s uncle" +msgstr "setä ×%s polven takaa" #: includes/functions/functions.php:1651 #, php-format -msgctxt "great ×(%d-1) grandparent’s brother" -msgid "great ×%d uncle" -msgstr "setä ×%d polven takaa" +msgctxt "great ×(%s-1) grandparent’s brother" +msgid "great ×%s uncle" +msgstr "setä ×%s polven takaa" #: includes/functions/functions.php:1579 msgid "great ×4 aunt" @@ -18564,10 +18564,10 @@ msgstr "enintään" #: app/Module/UpcomingAnniversariesModule.php:125 #: app/Module/YahrzeitModule.php:250 #, php-format -msgid "maximum %d day" -msgid_plural "maximum %d days" +msgid "maximum %s day" +msgid_plural "maximum %s days" msgstr[0] "enintään päivä" -msgstr[1] "enintään %d päivää" +msgstr[1] "enintään %s päivää" #: admin_trees_config.php:404 admin_trees_config.php:428 #: admin_trees_config.php:468 admin_trees_config.php:508 @@ -20078,10 +20078,10 @@ msgstr "…" #~ msgid "No other link between the two individuals could be found." #~ msgstr "Muita linkkejä henkilöiden välillä ei löytynyt." -#~ msgid "Note: “living” is defined (if no death or burial is known) as ending %d year after birth or estimated birth." -#~ msgid_plural "Note: “living” is defined (if no death or burial is known) as ending %d years after birth or estimated birth." -#~ msgstr[0] "Huom.: ”elossa” tarkoittaa (jos kuolema- tai hautausaika ei tiedossa) laskien %d vuotta syntymän tai arvioidun syntymän ajankohdasta." -#~ msgstr[1] "Huom.: ”elossa” tarkoittaa (jos kuolema- tai hautausaika ei tiedossa) laskien %d vuotta syntymän tai arvioidun syntymän ajankohdasta." +#~ msgid "Note: “living” is defined (if no death or burial is known) as ending %s year after birth or estimated birth." +#~ msgid_plural "Note: “living” is defined (if no death or burial is known) as ending %s years after birth or estimated birth." +#~ msgstr[0] "Huom.: ”elossa” tarkoittaa (jos kuolema- tai hautausaika ei tiedossa) laskien %s vuotta syntymän tai arvioidun syntymän ajankohdasta." +#~ msgstr[1] "Huom.: ”elossa” tarkoittaa (jos kuolema- tai hautausaika ei tiedossa) laskien %s vuotta syntymän tai arvioidun syntymän ajankohdasta." #~ msgid "Notes are free-form text and will appear in the Fact Details section of the page." #~ msgstr "Lisätiedot ovat vapaata tekstiä ja näkyvät sivulla tiedon yksityiskohdissa." diff --git a/language/fo.po b/language/fo.po index fb6a8b750f..e2b945473d 100644 --- a/language/fo.po +++ b/language/fo.po @@ -187,49 +187,49 @@ msgstr "" #: app/Module/LoggedInUsersModule.php:51 app/Stats.php:5372 #, php-format -msgid "%d anonymous logged-in user" -msgid_plural "%d anonymous logged-in users" +msgid "%s anonymous logged-in user" +msgid_plural "%s anonymous logged-in users" msgstr[0] "" msgstr[1] "" #: app/Module/LoggedInUsersModule.php:57 app/Stats.php:5382 #, php-format -msgid "%d logged-in user" -msgid_plural "%d logged-in users" +msgid "%s logged-in user" +msgid_plural "%s logged-in users" msgstr[0] "" msgstr[1] "" #: app/Module/RelativesTabModule.php:62 #, php-format -msgid "%d month" -msgid_plural "%d months" +msgid "%s month" +msgid_plural "%s months" msgstr[0] "" msgstr[1] "" #: app/Module/RelativesTabModule.php:60 #, php-format -msgid "%d year" -msgid_plural "%d years" +msgid "%s year" +msgid_plural "%s years" msgstr[0] "" msgstr[1] "" #: includes/functions/functions.php:555 #, php-format msgctxt "FEMALE" -msgid "%d × cousin" +msgid "%s × cousin" msgstr "" #. I18N: Note that for Italian and Polish, “N’th cousins” are different from English “N’th cousins”, and the software has already generated the correct “N” for your language. You only need to translate - you do not need to convert. For other languages, if your cousin rules are different from English, please contact the developers. #: includes/functions/functions.php:520 #, php-format msgctxt "MALE" -msgid "%d × cousin" +msgid "%s × cousin" msgstr "" #: includes/functions/functions.php:590 #, php-format msgctxt "MALE/FEMALE" -msgid "%d × cousin" +msgid "%s × cousin" msgstr "" #. I18N: This is the format string for full dates. See http://php.net/date for codes @@ -14302,7 +14302,7 @@ msgstr "" #: setup.php:183 #, php-format -msgid "This server’s memory limit is %d MB and its CPU time limit is %d seconds." +msgid "This server’s memory limit is %s MB and its CPU time limit is %s seconds." msgstr "" #. I18N: Help text for the “Other facts to show in charts” configuration setting @@ -16978,145 +16978,145 @@ msgstr "" #: includes/functions/functions.php:1639 includes/functions/functions.php:1654 #: includes/functions/functions.php:1667 #, php-format -msgid "great ×%d aunt" +msgid "great ×%s aunt" msgstr "" #: includes/functions/functions.php:1641 includes/functions/functions.php:1656 #: includes/functions/functions.php:1669 #, php-format -msgid "great ×%d aunt/uncle" +msgid "great ×%s aunt/uncle" msgstr "" #: includes/functions/functions.php:2042 includes/functions/functions.php:2057 #, php-format -msgid "great ×%d grandchild" +msgid "great ×%s grandchild" msgstr "" #: includes/functions/functions.php:2040 includes/functions/functions.php:2055 #, php-format -msgid "great ×%d granddaughter" +msgid "great ×%s granddaughter" msgstr "" -#. I18N: if you need a different number for %d, contact the developers, as a code-change is required +#. I18N: if you need a different number for %s, contact the developers, as a code-change is required #: includes/functions/functions.php:1912 includes/functions/functions.php:1922 #: includes/functions/functions.php:1932 includes/functions/functions.php:1942 #: includes/functions/functions.php:1954 #, php-format -msgid "great ×%d grandfather" +msgid "great ×%s grandfather" msgstr "" #: includes/functions/functions.php:1914 includes/functions/functions.php:1924 #: includes/functions/functions.php:1934 includes/functions/functions.php:1944 #: includes/functions/functions.php:1956 #, php-format -msgid "great ×%d grandmother" +msgid "great ×%s grandmother" msgstr "" #: includes/functions/functions.php:1916 includes/functions/functions.php:1926 #: includes/functions/functions.php:1936 includes/functions/functions.php:1946 #: includes/functions/functions.php:1958 #, php-format -msgid "great ×%d grandparent" +msgid "great ×%s grandparent" msgstr "" -#. I18N: if you need a different number for %d, contact the developers, as a code-change is required +#. I18N: if you need a different number for %s, contact the developers, as a code-change is required #: includes/functions/functions.php:2038 includes/functions/functions.php:2053 #, php-format -msgid "great ×%d grandson" +msgid "great ×%s grandson" msgstr "" -#. I18N: if you need a different number for %d, contact the developers, as a code-change is required +#. I18N: if you need a different number for %s, contact the developers, as a code-change is required #: includes/functions/functions.php:1823 includes/functions/functions.php:1836 #, php-format -msgid "great ×%d nephew" +msgid "great ×%s nephew" msgstr "" #: includes/functions/functions.php:1797 #, php-format -msgctxt "(a man’s) brother’s great ×(%d-1) grandson" -msgid "great ×%d nephew" +msgctxt "(a man’s) brother’s great ×(%s-1) grandson" +msgid "great ×%s nephew" msgstr "" #: includes/functions/functions.php:1799 #, php-format -msgctxt "(a man’s) sister’s great ×(%d-1) grandson" -msgid "great ×%d nephew" +msgctxt "(a man’s) sister’s great ×(%s-1) grandson" +msgid "great ×%s nephew" msgstr "" #: includes/functions/functions.php:1801 #, php-format -msgctxt "(a woman’s) great ×%d nephew" -msgid "great ×%d nephew" +msgctxt "(a woman’s) great ×%s nephew" +msgid "great ×%s nephew" msgstr "" #: includes/functions/functions.php:1827 includes/functions/functions.php:1840 #, php-format -msgid "great ×%d nephew/niece" +msgid "great ×%s nephew/niece" msgstr "" #: includes/functions/functions.php:1813 #, php-format -msgctxt "(a man’s) brother’s great ×(%d-1) grandchild" -msgid "great ×%d nephew/niece" +msgctxt "(a man’s) brother’s great ×(%s-1) grandchild" +msgid "great ×%s nephew/niece" msgstr "" #: includes/functions/functions.php:1815 #, php-format -msgctxt "(a man’s) sister’s great ×(%d-1) grandchild" -msgid "great ×%d nephew/niece" +msgctxt "(a man’s) sister’s great ×(%s-1) grandchild" +msgid "great ×%s nephew/niece" msgstr "" #: includes/functions/functions.php:1817 #, php-format -msgctxt "(a woman’s) great ×%d nephew/niece" -msgid "great ×%d nephew/niece" +msgctxt "(a woman’s) great ×%s nephew/niece" +msgid "great ×%s nephew/niece" msgstr "" #: includes/functions/functions.php:1825 includes/functions/functions.php:1838 #, php-format -msgid "great ×%d niece" +msgid "great ×%s niece" msgstr "" #: includes/functions/functions.php:1805 #, php-format -msgctxt "(a man’s) brother’s great ×(%d-1) granddaughter" -msgid "great ×%d niece" +msgctxt "(a man’s) brother’s great ×(%s-1) granddaughter" +msgid "great ×%s niece" msgstr "" #: includes/functions/functions.php:1807 #, php-format -msgctxt "(a man’s) sister’s great ×(%d-1) granddaughter" -msgid "great ×%d niece" +msgctxt "(a man’s) sister’s great ×(%s-1) granddaughter" +msgid "great ×%s niece" msgstr "" #: includes/functions/functions.php:1809 #, php-format -msgctxt "(a woman’s) great ×%d niece" -msgid "great ×%d niece" +msgctxt "(a woman’s) great ×%s niece" +msgid "great ×%s niece" msgstr "" -#. I18N: if you need a different number for %d, contact the developers, as a code-change is required +#. I18N: if you need a different number for %s, contact the developers, as a code-change is required #: includes/functions/functions.php:1637 includes/functions/functions.php:1665 #, php-format -msgid "great ×%d uncle" +msgid "great ×%s uncle" msgstr "" #: includes/functions/functions.php:1647 #, php-format -msgctxt "great ×(%d-1) grandfather’s brother" -msgid "great ×%d uncle" +msgctxt "great ×(%s-1) grandfather’s brother" +msgid "great ×%s uncle" msgstr "" #: includes/functions/functions.php:1649 #, php-format -msgctxt "great ×(%d-1) grandmother’s brother" -msgid "great ×%d uncle" +msgctxt "great ×(%s-1) grandmother’s brother" +msgid "great ×%s uncle" msgstr "" #: includes/functions/functions.php:1651 #, php-format -msgctxt "great ×(%d-1) grandparent’s brother" -msgid "great ×%d uncle" +msgctxt "great ×(%s-1) grandparent’s brother" +msgid "great ×%s uncle" msgstr "" #: includes/functions/functions.php:1579 @@ -18567,8 +18567,8 @@ msgstr "" #: app/Module/UpcomingAnniversariesModule.php:125 #: app/Module/YahrzeitModule.php:250 #, php-format -msgid "maximum %d day" -msgid_plural "maximum %d days" +msgid "maximum %s day" +msgid_plural "maximum %s days" msgstr[0] "" msgstr[1] "" diff --git a/language/fr-CA.po b/language/fr-CA.po index b7f81aed33..4aff337925 100644 --- a/language/fr-CA.po +++ b/language/fr-CA.po @@ -194,50 +194,50 @@ msgstr "%H:%i:%s" #: app/Module/LoggedInUsersModule.php:51 app/Stats.php:5372 #, php-format -msgid "%d anonymous logged-in user" -msgid_plural "%d anonymous logged-in users" -msgstr[0] "%d utilisateur anonyme connecté" -msgstr[1] "%d utilisateurs anonymes connectés" +msgid "%s anonymous logged-in user" +msgid_plural "%s anonymous logged-in users" +msgstr[0] "%s utilisateur anonyme connecté" +msgstr[1] "%s utilisateurs anonymes connectés" #: app/Module/LoggedInUsersModule.php:57 app/Stats.php:5382 #, php-format -msgid "%d logged-in user" -msgid_plural "%d logged-in users" -msgstr[0] "%d utilisateur connecté" -msgstr[1] "%d utilisateurs connectés" +msgid "%s logged-in user" +msgid_plural "%s logged-in users" +msgstr[0] "%s utilisateur connecté" +msgstr[1] "%s utilisateurs connectés" #: app/Module/RelativesTabModule.php:62 #, php-format -msgid "%d month" -msgid_plural "%d months" -msgstr[0] "%d mois" -msgstr[1] "%d mois" +msgid "%s month" +msgid_plural "%s months" +msgstr[0] "%s mois" +msgstr[1] "%s mois" #: app/Module/RelativesTabModule.php:60 #, php-format -msgid "%d year" -msgid_plural "%d years" -msgstr[0] "%d an" -msgstr[1] "%d ans" +msgid "%s year" +msgid_plural "%s years" +msgstr[0] "%s an" +msgstr[1] "%s ans" #: includes/functions/functions.php:555 #, php-format msgctxt "FEMALE" -msgid "%d × cousin" -msgstr "cousine au (%d+1)<sup>e</sup> degré" +msgid "%s × cousin" +msgstr "cousine au (%s+1)<sup>e</sup> degré" #. I18N: Note that for Italian and Polish, “N’th cousins” are different from English “N’th cousins”, and the software has already generated the correct “N” for your language. You only need to translate - you do not need to convert. For other languages, if your cousin rules are different from English, please contact the developers. #: includes/functions/functions.php:520 #, php-format msgctxt "MALE" -msgid "%d × cousin" -msgstr "cousin au (%d+1)<sup>e</sup> degré" +msgid "%s × cousin" +msgstr "cousin au (%s+1)<sup>e</sup> degré" #: includes/functions/functions.php:590 #, php-format msgctxt "MALE/FEMALE" -msgid "%d × cousin" -msgstr "%d<sup>e</sup> arrière-petit(e)-cousin(e)" +msgid "%s × cousin" +msgstr "%s<sup>e</sup> arrière-petit(e)-cousin(e)" #. I18N: This is the format string for full dates. See http://php.net/date for codes #: app/Date.php:222 app/I18N.php:212 @@ -14357,8 +14357,8 @@ msgstr "Ce serveur ne supporte pas les téléchargements sécurisés utilisant l #: setup.php:183 #, php-format -msgid "This server’s memory limit is %d MB and its CPU time limit is %d seconds." -msgstr "La limite de mémoire RAM du serveur est %d Mo, et le temps maximal d’exécution est de %d secondes." +msgid "This server’s memory limit is %s MB and its CPU time limit is %s seconds." +msgstr "La limite de mémoire RAM du serveur est %s Mo, et le temps maximal d’exécution est de %s secondes." #. I18N: Help text for the “Other facts to show in charts” configuration setting #: admin_trees_config.php:1632 @@ -17041,146 +17041,146 @@ msgstr "femme du petit-fils" #: includes/functions/functions.php:1639 includes/functions/functions.php:1654 #: includes/functions/functions.php:1667 #, php-format -msgid "great ×%d aunt" -msgstr "grand-tante à la %d<sup>e</sup> génération" +msgid "great ×%s aunt" +msgstr "grand-tante à la %s<sup>e</sup> génération" #: includes/functions/functions.php:1641 includes/functions/functions.php:1656 #: includes/functions/functions.php:1669 #, php-format -msgid "great ×%d aunt/uncle" -msgstr "grand-tante/oncle à la %d<sup>e</sup> génération" +msgid "great ×%s aunt/uncle" +msgstr "grand-tante/oncle à la %s<sup>e</sup> génération" #: includes/functions/functions.php:2042 includes/functions/functions.php:2057 #, php-format -msgid "great ×%d grandchild" -msgstr "arrière-petit-enfant au %d<sup>e</sup> degré" +msgid "great ×%s grandchild" +msgstr "arrière-petit-enfant au %s<sup>e</sup> degré" #: includes/functions/functions.php:2040 includes/functions/functions.php:2055 #, php-format -msgid "great ×%d granddaughter" -msgstr "arrière-petite-fille au %d<sup>e</sup> degré" +msgid "great ×%s granddaughter" +msgstr "arrière-petite-fille au %s<sup>e</sup> degré" -#. I18N: if you need a different number for %d, contact the developers, as a code-change is required +#. I18N: if you need a different number for %s, contact the developers, as a code-change is required #: includes/functions/functions.php:1912 includes/functions/functions.php:1922 #: includes/functions/functions.php:1932 includes/functions/functions.php:1942 #: includes/functions/functions.php:1954 #, php-format -msgid "great ×%d grandfather" -msgstr "grand-père au %d<sup>e</sup> degré" +msgid "great ×%s grandfather" +msgstr "grand-père au %s<sup>e</sup> degré" #: includes/functions/functions.php:1914 includes/functions/functions.php:1924 #: includes/functions/functions.php:1934 includes/functions/functions.php:1944 #: includes/functions/functions.php:1956 #, php-format -msgid "great ×%d grandmother" -msgstr "grand-mère au %d<sup>e</sup> degré" +msgid "great ×%s grandmother" +msgstr "grand-mère au %s<sup>e</sup> degré" #: includes/functions/functions.php:1916 includes/functions/functions.php:1926 #: includes/functions/functions.php:1936 includes/functions/functions.php:1946 #: includes/functions/functions.php:1958 #, php-format -msgid "great ×%d grandparent" -msgstr "arrière-grand-parent au %d<sup>e</sup> degré" +msgid "great ×%s grandparent" +msgstr "arrière-grand-parent au %s<sup>e</sup> degré" -#. I18N: if you need a different number for %d, contact the developers, as a code-change is required +#. I18N: if you need a different number for %s, contact the developers, as a code-change is required #: includes/functions/functions.php:2038 includes/functions/functions.php:2053 #, php-format -msgid "great ×%d grandson" -msgstr "arrière-petit-fils au %d<sup>e</sup> degré" +msgid "great ×%s grandson" +msgstr "arrière-petit-fils au %s<sup>e</sup> degré" -#. I18N: if you need a different number for %d, contact the developers, as a code-change is required +#. I18N: if you need a different number for %s, contact the developers, as a code-change is required #: includes/functions/functions.php:1823 includes/functions/functions.php:1836 #, php-format -msgid "great ×%d nephew" -msgstr "petit-neveu au %d<sup>e</sup> degré" +msgid "great ×%s nephew" +msgstr "petit-neveu au %s<sup>e</sup> degré" #: includes/functions/functions.php:1797 #, php-format -msgctxt "(a man’s) brother’s great ×(%d-1) grandson" -msgid "great ×%d nephew" -msgstr "petit-neveu au %d<sup>e</sup> degré" +msgctxt "(a man’s) brother’s great ×(%s-1) grandson" +msgid "great ×%s nephew" +msgstr "petit-neveu au %s<sup>e</sup> degré" #: includes/functions/functions.php:1799 #, php-format -msgctxt "(a man’s) sister’s great ×(%d-1) grandson" -msgid "great ×%d nephew" -msgstr "petit-neveu au %d<sup>e</sup> degré" +msgctxt "(a man’s) sister’s great ×(%s-1) grandson" +msgid "great ×%s nephew" +msgstr "petit-neveu au %s<sup>e</sup> degré" #: includes/functions/functions.php:1801 #, php-format -msgctxt "(a woman’s) great ×%d nephew" -msgid "great ×%d nephew" -msgstr "petit-neveu au %d<sup>e</sup> degré" +msgctxt "(a woman’s) great ×%s nephew" +msgid "great ×%s nephew" +msgstr "petit-neveu au %s<sup>e</sup> degré" #: includes/functions/functions.php:1827 includes/functions/functions.php:1840 #, php-format -msgid "great ×%d nephew/niece" -msgstr "petit-neveu/petite-nièce au %d<sup>e</sup> degré" +msgid "great ×%s nephew/niece" +msgstr "petit-neveu/petite-nièce au %s<sup>e</sup> degré" #: includes/functions/functions.php:1813 #, php-format -msgctxt "(a man’s) brother’s great ×(%d-1) grandchild" -msgid "great ×%d nephew/niece" -msgstr "petit-neveu/petite-nièce au %d<sup>e</sup> degré" +msgctxt "(a man’s) brother’s great ×(%s-1) grandchild" +msgid "great ×%s nephew/niece" +msgstr "petit-neveu/petite-nièce au %s<sup>e</sup> degré" #: includes/functions/functions.php:1815 #, php-format -msgctxt "(a man’s) sister’s great ×(%d-1) grandchild" -msgid "great ×%d nephew/niece" -msgstr "petit-neveu/petite-nièce au %d<sup>e</sup> degré" +msgctxt "(a man’s) sister’s great ×(%s-1) grandchild" +msgid "great ×%s nephew/niece" +msgstr "petit-neveu/petite-nièce au %s<sup>e</sup> degré" #: includes/functions/functions.php:1817 #, php-format -msgctxt "(a woman’s) great ×%d nephew/niece" -msgid "great ×%d nephew/niece" -msgstr "petit-neveu/petite-nièce au %d<sup>e</sup> degré" +msgctxt "(a woman’s) great ×%s nephew/niece" +msgid "great ×%s nephew/niece" +msgstr "petit-neveu/petite-nièce au %s<sup>e</sup> degré" #: includes/functions/functions.php:1825 includes/functions/functions.php:1838 #, php-format -msgid "great ×%d niece" -msgstr "petite-nièce au %d<sup>e</sup> degré" +msgid "great ×%s niece" +msgstr "petite-nièce au %s<sup>e</sup> degré" #: includes/functions/functions.php:1805 #, php-format -msgctxt "(a man’s) brother’s great ×(%d-1) granddaughter" -msgid "great ×%d niece" -msgstr "petite-nièce au %d<sup>e</sup> degré" +msgctxt "(a man’s) brother’s great ×(%s-1) granddaughter" +msgid "great ×%s niece" +msgstr "petite-nièce au %s<sup>e</sup> degré" #: includes/functions/functions.php:1807 #, php-format -msgctxt "(a man’s) sister’s great ×(%d-1) granddaughter" -msgid "great ×%d niece" -msgstr "petite-nièce au %d<sup>e</sup> degré" +msgctxt "(a man’s) sister’s great ×(%s-1) granddaughter" +msgid "great ×%s niece" +msgstr "petite-nièce au %s<sup>e</sup> degré" #: includes/functions/functions.php:1809 #, php-format -msgctxt "(a woman’s) great ×%d niece" -msgid "great ×%d niece" -msgstr "petite-nièce au %d<sup>e</sup> degré" +msgctxt "(a woman’s) great ×%s niece" +msgid "great ×%s niece" +msgstr "petite-nièce au %s<sup>e</sup> degré" -#. I18N: if you need a different number for %d, contact the developers, as a code-change is required +#. I18N: if you need a different number for %s, contact the developers, as a code-change is required #: includes/functions/functions.php:1637 includes/functions/functions.php:1665 #, php-format -msgid "great ×%d uncle" -msgstr "grand-oncle à la (%d-1)<sup>e</sup> génération" +msgid "great ×%s uncle" +msgstr "grand-oncle à la (%s-1)<sup>e</sup> génération" #: includes/functions/functions.php:1647 #, php-format -msgctxt "great ×(%d-1) grandfather’s brother" -msgid "great ×%d uncle" -msgstr "grand-oncle à la (%d-1)<sup>e</sup> génération" +msgctxt "great ×(%s-1) grandfather’s brother" +msgid "great ×%s uncle" +msgstr "grand-oncle à la (%s-1)<sup>e</sup> génération" #: includes/functions/functions.php:1649 #, php-format -msgctxt "great ×(%d-1) grandmother’s brother" -msgid "great ×%d uncle" -msgstr "grand-oncle à la (%d-1)<sup>e</sup> génération" +msgctxt "great ×(%s-1) grandmother’s brother" +msgid "great ×%s uncle" +msgstr "grand-oncle à la (%s-1)<sup>e</sup> génération" #: includes/functions/functions.php:1651 #, php-format -msgctxt "great ×(%d-1) grandparent’s brother" -msgid "great ×%d uncle" -msgstr "grand-oncle au (%d-1)<sup>e</sup> degré" +msgctxt "great ×(%s-1) grandparent’s brother" +msgid "great ×%s uncle" +msgstr "grand-oncle au (%s-1)<sup>e</sup> degré" #: includes/functions/functions.php:1579 msgid "great ×4 aunt" @@ -18630,10 +18630,10 @@ msgstr "maximum" #: app/Module/UpcomingAnniversariesModule.php:125 #: app/Module/YahrzeitModule.php:250 #, php-format -msgid "maximum %d day" -msgid_plural "maximum %d days" -msgstr[0] "maximum %d jour" -msgstr[1] "maximum %d jours" +msgid "maximum %s day" +msgid_plural "maximum %s days" +msgstr[0] "maximum %s jour" +msgstr[1] "maximum %s jours" #: admin_trees_config.php:404 admin_trees_config.php:428 #: admin_trees_config.php:468 admin_trees_config.php:508 @@ -20153,10 +20153,10 @@ msgstr "…" #~ msgid "No other link between the two individuals could be found." #~ msgstr "Aucun autre lien entre les deux individus n’a été trouvé." -#~ msgid "Note: “living” is defined (if no death or burial is known) as ending %d year after birth or estimated birth." -#~ msgid_plural "Note: “living” is defined (if no death or burial is known) as ending %d years after birth or estimated birth." -#~ msgstr[0] "Note : la « période de vie » s’arrête (s’il n’y a pas de décès ou d’inhumation connu) %d année après la naissance ou la date estimée de naissance." -#~ msgstr[1] "Note : la « période de vie » s’arrête (s’il n’y a pas de décès ou d’inhumation connu) %d années après la naissance ou la date estimée de naissance" +#~ msgid "Note: “living” is defined (if no death or burial is known) as ending %s year after birth or estimated birth." +#~ msgid_plural "Note: “living” is defined (if no death or burial is known) as ending %s years after birth or estimated birth." +#~ msgstr[0] "Note : la « période de vie » s’arrête (s’il n’y a pas de décès ou d’inhumation connu) %s année après la naissance ou la date estimée de naissance." +#~ msgstr[1] "Note : la « période de vie » s’arrête (s’il n’y a pas de décès ou d’inhumation connu) %s années après la naissance ou la date estimée de naissance" #~ msgid "Notes are free-form text and will appear in the Fact Details section of the page." #~ msgstr "Les notes sont du texte libre qui apparaîtront dans la section Faits et détails personnels de la page." diff --git a/language/fr.po b/language/fr.po index f16f2264ad..c46aa558aa 100644 --- a/language/fr.po +++ b/language/fr.po @@ -192,50 +192,50 @@ msgstr "%H:%i:%s" #: app/Module/LoggedInUsersModule.php:51 app/Stats.php:5372 #, php-format -msgid "%d anonymous logged-in user" -msgid_plural "%d anonymous logged-in users" -msgstr[0] "%d utilisateur anonyme connecté" -msgstr[1] "%d utilisateurs anonymes connectés" +msgid "%s anonymous logged-in user" +msgid_plural "%s anonymous logged-in users" +msgstr[0] "%s utilisateur anonyme connecté" +msgstr[1] "%s utilisateurs anonymes connectés" #: app/Module/LoggedInUsersModule.php:57 app/Stats.php:5382 #, php-format -msgid "%d logged-in user" -msgid_plural "%d logged-in users" -msgstr[0] "%d utilisateur connecté" -msgstr[1] "%d utilisateurs connectés" +msgid "%s logged-in user" +msgid_plural "%s logged-in users" +msgstr[0] "%s utilisateur connecté" +msgstr[1] "%s utilisateurs connectés" #: app/Module/RelativesTabModule.php:62 #, php-format -msgid "%d month" -msgid_plural "%d months" -msgstr[0] "%d mois" -msgstr[1] "%d mois" +msgid "%s month" +msgid_plural "%s months" +msgstr[0] "%s mois" +msgstr[1] "%s mois" #: app/Module/RelativesTabModule.php:60 #, php-format -msgid "%d year" -msgid_plural "%d years" -msgstr[0] "%d an" -msgstr[1] "%d ans" +msgid "%s year" +msgid_plural "%s years" +msgstr[0] "%s an" +msgstr[1] "%s ans" #: includes/functions/functions.php:555 #, php-format msgctxt "FEMALE" -msgid "%d × cousin" -msgstr "cousine au (%d+1)<sup>e</sup> degré" +msgid "%s × cousin" +msgstr "cousine au (%s+1)<sup>e</sup> degré" #. I18N: Note that for Italian and Polish, “N’th cousins” are different from English “N’th cousins”, and the software has already generated the correct “N” for your language. You only need to translate - you do not need to convert. For other languages, if your cousin rules are different from English, please contact the developers. #: includes/functions/functions.php:520 #, php-format msgctxt "MALE" -msgid "%d × cousin" -msgstr "cousin au (%d+1)<sup>e</sup> degré" +msgid "%s × cousin" +msgstr "cousin au (%s+1)<sup>e</sup> degré" #: includes/functions/functions.php:590 #, php-format msgctxt "MALE/FEMALE" -msgid "%d × cousin" -msgstr "cousin(e) au (%d+1)<sup>e</sup> degré" +msgid "%s × cousin" +msgstr "cousin(e) au (%s+1)<sup>e</sup> degré" #. I18N: This is the format string for full dates. See http://php.net/date for codes #: app/Date.php:222 app/I18N.php:212 @@ -14323,8 +14323,8 @@ msgstr "Ce serveur ne supporte pas les téléchargements sécurisés utilisant l #: setup.php:183 #, php-format -msgid "This server’s memory limit is %d MB and its CPU time limit is %d seconds." -msgstr "La limite de mémoire RAM du serveur est %d Mo, et le temps maximal d’exécution est de %d secondes." +msgid "This server’s memory limit is %s MB and its CPU time limit is %s seconds." +msgstr "La limite de mémoire RAM du serveur est %s Mo, et le temps maximal d’exécution est de %s secondes." #. I18N: Help text for the “Other facts to show in charts” configuration setting #: admin_trees_config.php:1632 @@ -17006,146 +17006,146 @@ msgstr "femme du petit-fils" #: includes/functions/functions.php:1639 includes/functions/functions.php:1654 #: includes/functions/functions.php:1667 #, php-format -msgid "great ×%d aunt" -msgstr "grand-tante au %d<sup>e</sup> degré" +msgid "great ×%s aunt" +msgstr "grand-tante au %s<sup>e</sup> degré" #: includes/functions/functions.php:1641 includes/functions/functions.php:1656 #: includes/functions/functions.php:1669 #, php-format -msgid "great ×%d aunt/uncle" -msgstr "grand-tante/oncle au %d<sup>e</sup> degré" +msgid "great ×%s aunt/uncle" +msgstr "grand-tante/oncle au %s<sup>e</sup> degré" #: includes/functions/functions.php:2042 includes/functions/functions.php:2057 #, php-format -msgid "great ×%d grandchild" -msgstr "arrière-petit-enfant au %d<sup>e</sup> degré" +msgid "great ×%s grandchild" +msgstr "arrière-petit-enfant au %s<sup>e</sup> degré" #: includes/functions/functions.php:2040 includes/functions/functions.php:2055 #, php-format -msgid "great ×%d granddaughter" -msgstr "arrière-petite-fille au %d<sup>e</sup> degré" +msgid "great ×%s granddaughter" +msgstr "arrière-petite-fille au %s<sup>e</sup> degré" -#. I18N: if you need a different number for %d, contact the developers, as a code-change is required +#. I18N: if you need a different number for %s, contact the developers, as a code-change is required #: includes/functions/functions.php:1912 includes/functions/functions.php:1922 #: includes/functions/functions.php:1932 includes/functions/functions.php:1942 #: includes/functions/functions.php:1954 #, php-format -msgid "great ×%d grandfather" -msgstr "grand-père au %d<sup>e</sup> degré" +msgid "great ×%s grandfather" +msgstr "grand-père au %s<sup>e</sup> degré" #: includes/functions/functions.php:1914 includes/functions/functions.php:1924 #: includes/functions/functions.php:1934 includes/functions/functions.php:1944 #: includes/functions/functions.php:1956 #, php-format -msgid "great ×%d grandmother" -msgstr "grand-mère au %d<sup>e</sup> degré" +msgid "great ×%s grandmother" +msgstr "grand-mère au %s<sup>e</sup> degré" #: includes/functions/functions.php:1916 includes/functions/functions.php:1926 #: includes/functions/functions.php:1936 includes/functions/functions.php:1946 #: includes/functions/functions.php:1958 #, php-format -msgid "great ×%d grandparent" -msgstr "arrière-grand-parent au %d<sup>e</sup> degré" +msgid "great ×%s grandparent" +msgstr "arrière-grand-parent au %s<sup>e</sup> degré" -#. I18N: if you need a different number for %d, contact the developers, as a code-change is required +#. I18N: if you need a different number for %s, contact the developers, as a code-change is required #: includes/functions/functions.php:2038 includes/functions/functions.php:2053 #, php-format -msgid "great ×%d grandson" -msgstr "arrière-petit-fils au %d<sup>e</sup> degré" +msgid "great ×%s grandson" +msgstr "arrière-petit-fils au %s<sup>e</sup> degré" -#. I18N: if you need a different number for %d, contact the developers, as a code-change is required +#. I18N: if you need a different number for %s, contact the developers, as a code-change is required #: includes/functions/functions.php:1823 includes/functions/functions.php:1836 #, php-format -msgid "great ×%d nephew" -msgstr "petit-neveu au %d<sup>e</sup> degré" +msgid "great ×%s nephew" +msgstr "petit-neveu au %s<sup>e</sup> degré" #: includes/functions/functions.php:1797 #, php-format -msgctxt "(a man’s) brother’s great ×(%d-1) grandson" -msgid "great ×%d nephew" -msgstr "petit-neveu au %d<sup>e</sup> degré" +msgctxt "(a man’s) brother’s great ×(%s-1) grandson" +msgid "great ×%s nephew" +msgstr "petit-neveu au %s<sup>e</sup> degré" #: includes/functions/functions.php:1799 #, php-format -msgctxt "(a man’s) sister’s great ×(%d-1) grandson" -msgid "great ×%d nephew" -msgstr "petit-neveu au %d<sup>e</sup> degré" +msgctxt "(a man’s) sister’s great ×(%s-1) grandson" +msgid "great ×%s nephew" +msgstr "petit-neveu au %s<sup>e</sup> degré" #: includes/functions/functions.php:1801 #, php-format -msgctxt "(a woman’s) great ×%d nephew" -msgid "great ×%d nephew" -msgstr "petit-neveu au %d<sup>e</sup> degré" +msgctxt "(a woman’s) great ×%s nephew" +msgid "great ×%s nephew" +msgstr "petit-neveu au %s<sup>e</sup> degré" #: includes/functions/functions.php:1827 includes/functions/functions.php:1840 #, php-format -msgid "great ×%d nephew/niece" -msgstr "petit-neveu/petite-nièce au %d<sup>e</sup> degré" +msgid "great ×%s nephew/niece" +msgstr "petit-neveu/petite-nièce au %s<sup>e</sup> degré" #: includes/functions/functions.php:1813 #, php-format -msgctxt "(a man’s) brother’s great ×(%d-1) grandchild" -msgid "great ×%d nephew/niece" -msgstr "petit-neveu/petite-nièce au %d<sup>e</sup> degré" +msgctxt "(a man’s) brother’s great ×(%s-1) grandchild" +msgid "great ×%s nephew/niece" +msgstr "petit-neveu/petite-nièce au %s<sup>e</sup> degré" #: includes/functions/functions.php:1815 #, php-format -msgctxt "(a man’s) sister’s great ×(%d-1) grandchild" -msgid "great ×%d nephew/niece" -msgstr "petit-neveu/petite-nièce au %d<sup>e</sup> degré" +msgctxt "(a man’s) sister’s great ×(%s-1) grandchild" +msgid "great ×%s nephew/niece" +msgstr "petit-neveu/petite-nièce au %s<sup>e</sup> degré" #: includes/functions/functions.php:1817 #, php-format -msgctxt "(a woman’s) great ×%d nephew/niece" -msgid "great ×%d nephew/niece" -msgstr "petit-neveu/petite-nièce au %d<sup>e</sup> degré" +msgctxt "(a woman’s) great ×%s nephew/niece" +msgid "great ×%s nephew/niece" +msgstr "petit-neveu/petite-nièce au %s<sup>e</sup> degré" #: includes/functions/functions.php:1825 includes/functions/functions.php:1838 #, php-format -msgid "great ×%d niece" -msgstr "petite-nièce au %d<sup>e</sup> degré" +msgid "great ×%s niece" +msgstr "petite-nièce au %s<sup>e</sup> degré" #: includes/functions/functions.php:1805 #, php-format -msgctxt "(a man’s) brother’s great ×(%d-1) granddaughter" -msgid "great ×%d niece" -msgstr "petite-nièce au %d<sup>e</sup> degré" +msgctxt "(a man’s) brother’s great ×(%s-1) granddaughter" +msgid "great ×%s niece" +msgstr "petite-nièce au %s<sup>e</sup> degré" #: includes/functions/functions.php:1807 #, php-format -msgctxt "(a man’s) sister’s great ×(%d-1) granddaughter" -msgid "great ×%d niece" -msgstr "petite-nièce au %d<sup>e</sup> degré" +msgctxt "(a man’s) sister’s great ×(%s-1) granddaughter" +msgid "great ×%s niece" +msgstr "petite-nièce au %s<sup>e</sup> degré" #: includes/functions/functions.php:1809 #, php-format -msgctxt "(a woman’s) great ×%d niece" -msgid "great ×%d niece" -msgstr "petite-nièce au %d<sup>e</sup> degré" +msgctxt "(a woman’s) great ×%s niece" +msgid "great ×%s niece" +msgstr "petite-nièce au %s<sup>e</sup> degré" -#. I18N: if you need a different number for %d, contact the developers, as a code-change is required +#. I18N: if you need a different number for %s, contact the developers, as a code-change is required #: includes/functions/functions.php:1637 includes/functions/functions.php:1665 #, php-format -msgid "great ×%d uncle" -msgstr "grand-oncle au %d<sup>e</sup> degré" +msgid "great ×%s uncle" +msgstr "grand-oncle au %s<sup>e</sup> degré" #: includes/functions/functions.php:1647 #, php-format -msgctxt "great ×(%d-1) grandfather’s brother" -msgid "great ×%d uncle" -msgstr "grand-oncle au (%d-1)<sup>e</sup> degré" +msgctxt "great ×(%s-1) grandfather’s brother" +msgid "great ×%s uncle" +msgstr "grand-oncle au (%s-1)<sup>e</sup> degré" #: includes/functions/functions.php:1649 #, php-format -msgctxt "great ×(%d-1) grandmother’s brother" -msgid "great ×%d uncle" -msgstr "grand-oncle au (%d-1)<sup>e</sup> degré" +msgctxt "great ×(%s-1) grandmother’s brother" +msgid "great ×%s uncle" +msgstr "grand-oncle au (%s-1)<sup>e</sup> degré" #: includes/functions/functions.php:1651 #, php-format -msgctxt "great ×(%d-1) grandparent’s brother" -msgid "great ×%d uncle" -msgstr "grand-oncle au (%d-1)<sup>e</sup> degré" +msgctxt "great ×(%s-1) grandparent’s brother" +msgid "great ×%s uncle" +msgstr "grand-oncle au (%s-1)<sup>e</sup> degré" #: includes/functions/functions.php:1579 msgid "great ×4 aunt" @@ -18595,10 +18595,10 @@ msgstr "maximum" #: app/Module/UpcomingAnniversariesModule.php:125 #: app/Module/YahrzeitModule.php:250 #, php-format -msgid "maximum %d day" -msgid_plural "maximum %d days" -msgstr[0] "maximum %d jour" -msgstr[1] "maximum %d jours" +msgid "maximum %s day" +msgid_plural "maximum %s days" +msgstr[0] "maximum %s jour" +msgstr[1] "maximum %s jours" #: admin_trees_config.php:404 admin_trees_config.php:428 #: admin_trees_config.php:468 admin_trees_config.php:508 @@ -20118,10 +20118,10 @@ msgstr "…" #~ msgid "No other link between the two individuals could be found." #~ msgstr "Aucun autre lien entre les deux individus n’a pu être trouvé." -#~ msgid "Note: “living” is defined (if no death or burial is known) as ending %d year after birth or estimated birth." -#~ msgid_plural "Note: “living” is defined (if no death or burial is known) as ending %d years after birth or estimated birth." -#~ msgstr[0] "Note : la « période de vie » s’arrête (s’il n’y a pas de décès ou d’inhumation connu) %d année après la naissance ou la date estimée de naissance." -#~ msgstr[1] "Note : la « période de vie » s’arrête (s’il n’y a pas de décès ou d’inhumation connu) %d années après la naissance ou la date estimée de naissance" +#~ msgid "Note: “living” is defined (if no death or burial is known) as ending %s year after birth or estimated birth." +#~ msgid_plural "Note: “living” is defined (if no death or burial is known) as ending %s years after birth or estimated birth." +#~ msgstr[0] "Note : la « période de vie » s’arrête (s’il n’y a pas de décès ou d’inhumation connu) %s année après la naissance ou la date estimée de naissance." +#~ msgstr[1] "Note : la « période de vie » s’arrête (s’il n’y a pas de décès ou d’inhumation connu) %s années après la naissance ou la date estimée de naissance" #~ msgid "Notes are free-form text and will appear in the Fact Details section of the page." #~ msgstr "Les notes sont du texte libre qui apparaîtront dans la section Faits et détails personnels de la page." diff --git a/language/gl.po b/language/gl.po index 599f87e02d..3b75ad363c 100644 --- a/language/gl.po +++ b/language/gl.po @@ -187,49 +187,49 @@ msgstr "%g:%i:%s %a" #: app/Module/LoggedInUsersModule.php:51 app/Stats.php:5372 #, php-format -msgid "%d anonymous logged-in user" -msgid_plural "%d anonymous logged-in users" -msgstr[0] "%d usuario anónimo conectado" -msgstr[1] "%d usuarios anónimos conectados" +msgid "%s anonymous logged-in user" +msgid_plural "%s anonymous logged-in users" +msgstr[0] "%s usuario anónimo conectado" +msgstr[1] "%s usuarios anónimos conectados" #: app/Module/LoggedInUsersModule.php:57 app/Stats.php:5382 #, php-format -msgid "%d logged-in user" -msgid_plural "%d logged-in users" -msgstr[0] "%d usuario conectado" -msgstr[1] "%d usuarios conectados" +msgid "%s logged-in user" +msgid_plural "%s logged-in users" +msgstr[0] "%s usuario conectado" +msgstr[1] "%s usuarios conectados" #: app/Module/RelativesTabModule.php:62 #, php-format -msgid "%d month" -msgid_plural "%d months" -msgstr[0] "%d mes" -msgstr[1] "%d meses" +msgid "%s month" +msgid_plural "%s months" +msgstr[0] "%s mes" +msgstr[1] "%s meses" #: app/Module/RelativesTabModule.php:60 #, php-format -msgid "%d year" -msgid_plural "%d years" -msgstr[0] "%d ano" -msgstr[1] "%d anos" +msgid "%s year" +msgid_plural "%s years" +msgstr[0] "%s ano" +msgstr[1] "%s anos" #: includes/functions/functions.php:555 #, php-format msgctxt "FEMALE" -msgid "%d × cousin" +msgid "%s × cousin" msgstr "" #. I18N: Note that for Italian and Polish, “N’th cousins” are different from English “N’th cousins”, and the software has already generated the correct “N” for your language. You only need to translate - you do not need to convert. For other languages, if your cousin rules are different from English, please contact the developers. #: includes/functions/functions.php:520 #, php-format msgctxt "MALE" -msgid "%d × cousin" +msgid "%s × cousin" msgstr "" #: includes/functions/functions.php:590 #, php-format msgctxt "MALE/FEMALE" -msgid "%d × cousin" +msgid "%s × cousin" msgstr "" #. I18N: This is the format string for full dates. See http://php.net/date for codes @@ -14301,7 +14301,7 @@ msgstr "" #: setup.php:183 #, php-format -msgid "This server’s memory limit is %d MB and its CPU time limit is %d seconds." +msgid "This server’s memory limit is %s MB and its CPU time limit is %s seconds." msgstr "" #. I18N: Help text for the “Other facts to show in charts” configuration setting @@ -16977,145 +16977,145 @@ msgstr "" #: includes/functions/functions.php:1639 includes/functions/functions.php:1654 #: includes/functions/functions.php:1667 #, php-format -msgid "great ×%d aunt" +msgid "great ×%s aunt" msgstr "" #: includes/functions/functions.php:1641 includes/functions/functions.php:1656 #: includes/functions/functions.php:1669 #, php-format -msgid "great ×%d aunt/uncle" +msgid "great ×%s aunt/uncle" msgstr "" #: includes/functions/functions.php:2042 includes/functions/functions.php:2057 #, php-format -msgid "great ×%d grandchild" +msgid "great ×%s grandchild" msgstr "" #: includes/functions/functions.php:2040 includes/functions/functions.php:2055 #, php-format -msgid "great ×%d granddaughter" +msgid "great ×%s granddaughter" msgstr "" -#. I18N: if you need a different number for %d, contact the developers, as a code-change is required +#. I18N: if you need a different number for %s, contact the developers, as a code-change is required #: includes/functions/functions.php:1912 includes/functions/functions.php:1922 #: includes/functions/functions.php:1932 includes/functions/functions.php:1942 #: includes/functions/functions.php:1954 #, php-format -msgid "great ×%d grandfather" +msgid "great ×%s grandfather" msgstr "" #: includes/functions/functions.php:1914 includes/functions/functions.php:1924 #: includes/functions/functions.php:1934 includes/functions/functions.php:1944 #: includes/functions/functions.php:1956 #, php-format -msgid "great ×%d grandmother" +msgid "great ×%s grandmother" msgstr "" #: includes/functions/functions.php:1916 includes/functions/functions.php:1926 #: includes/functions/functions.php:1936 includes/functions/functions.php:1946 #: includes/functions/functions.php:1958 #, php-format -msgid "great ×%d grandparent" +msgid "great ×%s grandparent" msgstr "" -#. I18N: if you need a different number for %d, contact the developers, as a code-change is required +#. I18N: if you need a different number for %s, contact the developers, as a code-change is required #: includes/functions/functions.php:2038 includes/functions/functions.php:2053 #, php-format -msgid "great ×%d grandson" +msgid "great ×%s grandson" msgstr "" -#. I18N: if you need a different number for %d, contact the developers, as a code-change is required +#. I18N: if you need a different number for %s, contact the developers, as a code-change is required #: includes/functions/functions.php:1823 includes/functions/functions.php:1836 #, php-format -msgid "great ×%d nephew" +msgid "great ×%s nephew" msgstr "" #: includes/functions/functions.php:1797 #, php-format -msgctxt "(a man’s) brother’s great ×(%d-1) grandson" -msgid "great ×%d nephew" +msgctxt "(a man’s) brother’s great ×(%s-1) grandson" +msgid "great ×%s nephew" msgstr "" #: includes/functions/functions.php:1799 #, php-format -msgctxt "(a man’s) sister’s great ×(%d-1) grandson" -msgid "great ×%d nephew" +msgctxt "(a man’s) sister’s great ×(%s-1) grandson" +msgid "great ×%s nephew" msgstr "" #: includes/functions/functions.php:1801 #, php-format -msgctxt "(a woman’s) great ×%d nephew" -msgid "great ×%d nephew" +msgctxt "(a woman’s) great ×%s nephew" +msgid "great ×%s nephew" msgstr "" #: includes/functions/functions.php:1827 includes/functions/functions.php:1840 #, php-format -msgid "great ×%d nephew/niece" +msgid "great ×%s nephew/niece" msgstr "" #: includes/functions/functions.php:1813 #, php-format -msgctxt "(a man’s) brother’s great ×(%d-1) grandchild" -msgid "great ×%d nephew/niece" +msgctxt "(a man’s) brother’s great ×(%s-1) grandchild" +msgid "great ×%s nephew/niece" msgstr "" #: includes/functions/functions.php:1815 #, php-format -msgctxt "(a man’s) sister’s great ×(%d-1) grandchild" -msgid "great ×%d nephew/niece" +msgctxt "(a man’s) sister’s great ×(%s-1) grandchild" +msgid "great ×%s nephew/niece" msgstr "" #: includes/functions/functions.php:1817 #, php-format -msgctxt "(a woman’s) great ×%d nephew/niece" -msgid "great ×%d nephew/niece" +msgctxt "(a woman’s) great ×%s nephew/niece" +msgid "great ×%s nephew/niece" msgstr "" #: includes/functions/functions.php:1825 includes/functions/functions.php:1838 #, php-format -msgid "great ×%d niece" +msgid "great ×%s niece" msgstr "" #: includes/functions/functions.php:1805 #, php-format -msgctxt "(a man’s) brother’s great ×(%d-1) granddaughter" -msgid "great ×%d niece" +msgctxt "(a man’s) brother’s great ×(%s-1) granddaughter" +msgid "great ×%s niece" msgstr "" #: includes/functions/functions.php:1807 #, php-format -msgctxt "(a man’s) sister’s great ×(%d-1) granddaughter" -msgid "great ×%d niece" +msgctxt "(a man’s) sister’s great ×(%s-1) granddaughter" +msgid "great ×%s niece" msgstr "" #: includes/functions/functions.php:1809 #, php-format -msgctxt "(a woman’s) great ×%d niece" -msgid "great ×%d niece" +msgctxt "(a woman’s) great ×%s niece" +msgid "great ×%s niece" msgstr "" -#. I18N: if you need a different number for %d, contact the developers, as a code-change is required +#. I18N: if you need a different number for %s, contact the developers, as a code-change is required #: includes/functions/functions.php:1637 includes/functions/functions.php:1665 #, php-format -msgid "great ×%d uncle" +msgid "great ×%s uncle" msgstr "" #: includes/functions/functions.php:1647 #, php-format -msgctxt "great ×(%d-1) grandfather’s brother" -msgid "great ×%d uncle" +msgctxt "great ×(%s-1) grandfather’s brother" +msgid "great ×%s uncle" msgstr "" #: includes/functions/functions.php:1649 #, php-format -msgctxt "great ×(%d-1) grandmother’s brother" -msgid "great ×%d uncle" +msgctxt "great ×(%s-1) grandmother’s brother" +msgid "great ×%s uncle" msgstr "" #: includes/functions/functions.php:1651 #, php-format -msgctxt "great ×(%d-1) grandparent’s brother" -msgid "great ×%d uncle" +msgctxt "great ×(%s-1) grandparent’s brother" +msgid "great ×%s uncle" msgstr "" #: includes/functions/functions.php:1579 @@ -18566,10 +18566,10 @@ msgstr "máximo" #: app/Module/UpcomingAnniversariesModule.php:125 #: app/Module/YahrzeitModule.php:250 #, php-format -msgid "maximum %d day" -msgid_plural "maximum %d days" -msgstr[0] "máximo de %d dia" -msgstr[1] "máximo de %d dias" +msgid "maximum %s day" +msgid_plural "maximum %s days" +msgstr[0] "máximo de %s dia" +msgstr[1] "máximo de %s dias" #: admin_trees_config.php:404 admin_trees_config.php:428 #: admin_trees_config.php:468 admin_trees_config.php:508 diff --git a/language/he.po b/language/he.po index ddd7d0c435..faa308bd1e 100644 --- a/language/he.po +++ b/language/he.po @@ -192,50 +192,50 @@ msgstr "%G:%i:%s" #: app/Module/LoggedInUsersModule.php:51 app/Stats.php:5372 #, php-format -msgid "%d anonymous logged-in user" -msgid_plural "%d anonymous logged-in users" -msgstr[0] "משתמש אלמוני %d מחובר" -msgstr[1] "%d משתמשים אלמוניים מחוברים" +msgid "%s anonymous logged-in user" +msgid_plural "%s anonymous logged-in users" +msgstr[0] "משתמש אלמוני %s מחובר" +msgstr[1] "%s משתמשים אלמוניים מחוברים" #: app/Module/LoggedInUsersModule.php:57 app/Stats.php:5382 #, php-format -msgid "%d logged-in user" -msgid_plural "%d logged-in users" -msgstr[0] "משתמש מחובר %d" -msgstr[1] "%d משתמשים מחוברים" +msgid "%s logged-in user" +msgid_plural "%s logged-in users" +msgstr[0] "משתמש מחובר %s" +msgstr[1] "%s משתמשים מחוברים" #: app/Module/RelativesTabModule.php:62 #, php-format -msgid "%d month" -msgid_plural "%d months" +msgid "%s month" +msgid_plural "%s months" msgstr[0] "חודש אחד" -msgstr[1] "%d חודשים" +msgstr[1] "%s חודשים" #: app/Module/RelativesTabModule.php:60 #, php-format -msgid "%d year" -msgid_plural "%d years" +msgid "%s year" +msgid_plural "%s years" msgstr[0] "שנה אחת" -msgstr[1] "%d שנים" +msgstr[1] "%s שנים" #: includes/functions/functions.php:555 #, php-format msgctxt "FEMALE" -msgid "%d × cousin" -msgstr "דודנית מדרגה %d" +msgid "%s × cousin" +msgstr "דודנית מדרגה %s" #. I18N: Note that for Italian and Polish, “N’th cousins” are different from English “N’th cousins”, and the software has already generated the correct “N” for your language. You only need to translate - you do not need to convert. For other languages, if your cousin rules are different from English, please contact the developers. #: includes/functions/functions.php:520 #, php-format msgctxt "MALE" -msgid "%d × cousin" -msgstr "דודן מדרגה %d" +msgid "%s × cousin" +msgstr "דודן מדרגה %s" #: includes/functions/functions.php:590 #, php-format msgctxt "MALE/FEMALE" -msgid "%d × cousin" -msgstr "דודן/דודנית מדרגה %d" +msgid "%s × cousin" +msgstr "דודן/דודנית מדרגה %s" #. I18N: This is the format string for full dates. See http://php.net/date for codes #: app/Date.php:222 app/I18N.php:212 @@ -14349,8 +14349,8 @@ msgstr "שרת זה אינו תומך בהורדה מאובטחת באמצעות #: setup.php:183 #, php-format -msgid "This server’s memory limit is %d MB and its CPU time limit is %d seconds." -msgstr "מגבלת זיכרון של שרת זה היא %d מגה-בית, ומגבלת זמן ה-CPU היא %d שניות." +msgid "This server’s memory limit is %s MB and its CPU time limit is %s seconds." +msgstr "מגבלת זיכרון של שרת זה היא %s מגה-בית, ומגבלת זמן ה-CPU היא %s שניות." #. I18N: Help text for the “Other facts to show in charts” configuration setting #: admin_trees_config.php:1632 @@ -17029,146 +17029,146 @@ msgstr "אישה של נכד" #: includes/functions/functions.php:1639 includes/functions/functions.php:1654 #: includes/functions/functions.php:1667 #, php-format -msgid "great ×%d aunt" -msgstr "דודה מדרגה %d" +msgid "great ×%s aunt" +msgstr "דודה מדרגה %s" #: includes/functions/functions.php:1641 includes/functions/functions.php:1656 #: includes/functions/functions.php:1669 #, php-format -msgid "great ×%d aunt/uncle" -msgstr "דוד/דודה מדרגה %d" +msgid "great ×%s aunt/uncle" +msgstr "דוד/דודה מדרגה %s" #: includes/functions/functions.php:2042 includes/functions/functions.php:2057 #, php-format -msgid "great ×%d grandchild" -msgstr "נכד/נכדה מדרגה %d" +msgid "great ×%s grandchild" +msgstr "נכד/נכדה מדרגה %s" #: includes/functions/functions.php:2040 includes/functions/functions.php:2055 #, php-format -msgid "great ×%d granddaughter" -msgstr "נכדה מדרגה %d" +msgid "great ×%s granddaughter" +msgstr "נכדה מדרגה %s" -#. I18N: if you need a different number for %d, contact the developers, as a code-change is required +#. I18N: if you need a different number for %s, contact the developers, as a code-change is required #: includes/functions/functions.php:1912 includes/functions/functions.php:1922 #: includes/functions/functions.php:1932 includes/functions/functions.php:1942 #: includes/functions/functions.php:1954 #, php-format -msgid "great ×%d grandfather" -msgstr "סבא מדרגה %d" +msgid "great ×%s grandfather" +msgstr "סבא מדרגה %s" #: includes/functions/functions.php:1914 includes/functions/functions.php:1924 #: includes/functions/functions.php:1934 includes/functions/functions.php:1944 #: includes/functions/functions.php:1956 #, php-format -msgid "great ×%d grandmother" -msgstr "סבתא מדרגה %d" +msgid "great ×%s grandmother" +msgstr "סבתא מדרגה %s" #: includes/functions/functions.php:1916 includes/functions/functions.php:1926 #: includes/functions/functions.php:1936 includes/functions/functions.php:1946 #: includes/functions/functions.php:1958 #, php-format -msgid "great ×%d grandparent" -msgstr "סבא/סבתא מדרגה %d" +msgid "great ×%s grandparent" +msgstr "סבא/סבתא מדרגה %s" -#. I18N: if you need a different number for %d, contact the developers, as a code-change is required +#. I18N: if you need a different number for %s, contact the developers, as a code-change is required #: includes/functions/functions.php:2038 includes/functions/functions.php:2053 #, php-format -msgid "great ×%d grandson" -msgstr "נכד מדרגה %d" +msgid "great ×%s grandson" +msgstr "נכד מדרגה %s" -#. I18N: if you need a different number for %d, contact the developers, as a code-change is required +#. I18N: if you need a different number for %s, contact the developers, as a code-change is required #: includes/functions/functions.php:1823 includes/functions/functions.php:1836 #, php-format -msgid "great ×%d nephew" -msgstr "אחיין מדרגה %d" +msgid "great ×%s nephew" +msgstr "אחיין מדרגה %s" #: includes/functions/functions.php:1797 #, php-format -msgctxt "(a man’s) brother’s great ×(%d-1) grandson" -msgid "great ×%d nephew" -msgstr "אחיין מדרגה %d" +msgctxt "(a man’s) brother’s great ×(%s-1) grandson" +msgid "great ×%s nephew" +msgstr "אחיין מדרגה %s" #: includes/functions/functions.php:1799 #, php-format -msgctxt "(a man’s) sister’s great ×(%d-1) grandson" -msgid "great ×%d nephew" -msgstr "אחיין מדרגה %d" +msgctxt "(a man’s) sister’s great ×(%s-1) grandson" +msgid "great ×%s nephew" +msgstr "אחיין מדרגה %s" #: includes/functions/functions.php:1801 #, php-format -msgctxt "(a woman’s) great ×%d nephew" -msgid "great ×%d nephew" -msgstr "אחיין מדרגה %d" +msgctxt "(a woman’s) great ×%s nephew" +msgid "great ×%s nephew" +msgstr "אחיין מדרגה %s" #: includes/functions/functions.php:1827 includes/functions/functions.php:1840 #, php-format -msgid "great ×%d nephew/niece" -msgstr "אחיין/ית מדרגה %d" +msgid "great ×%s nephew/niece" +msgstr "אחיין/ית מדרגה %s" #: includes/functions/functions.php:1813 #, php-format -msgctxt "(a man’s) brother’s great ×(%d-1) grandchild" -msgid "great ×%d nephew/niece" -msgstr "אחיין/ית מדרגה %d" +msgctxt "(a man’s) brother’s great ×(%s-1) grandchild" +msgid "great ×%s nephew/niece" +msgstr "אחיין/ית מדרגה %s" #: includes/functions/functions.php:1815 #, php-format -msgctxt "(a man’s) sister’s great ×(%d-1) grandchild" -msgid "great ×%d nephew/niece" -msgstr "אחיין/ית מדרגה %d" +msgctxt "(a man’s) sister’s great ×(%s-1) grandchild" +msgid "great ×%s nephew/niece" +msgstr "אחיין/ית מדרגה %s" #: includes/functions/functions.php:1817 #, php-format -msgctxt "(a woman’s) great ×%d nephew/niece" -msgid "great ×%d nephew/niece" -msgstr "אחיין/ית מדרגה %d" +msgctxt "(a woman’s) great ×%s nephew/niece" +msgid "great ×%s nephew/niece" +msgstr "אחיין/ית מדרגה %s" #: includes/functions/functions.php:1825 includes/functions/functions.php:1838 #, php-format -msgid "great ×%d niece" -msgstr "אחיינית מדרגה %d" +msgid "great ×%s niece" +msgstr "אחיינית מדרגה %s" #: includes/functions/functions.php:1805 #, php-format -msgctxt "(a man’s) brother’s great ×(%d-1) granddaughter" -msgid "great ×%d niece" -msgstr "אחיינית מדרגה %d" +msgctxt "(a man’s) brother’s great ×(%s-1) granddaughter" +msgid "great ×%s niece" +msgstr "אחיינית מדרגה %s" #: includes/functions/functions.php:1807 #, php-format -msgctxt "(a man’s) sister’s great ×(%d-1) granddaughter" -msgid "great ×%d niece" -msgstr "אחיינית מדרגה %d" +msgctxt "(a man’s) sister’s great ×(%s-1) granddaughter" +msgid "great ×%s niece" +msgstr "אחיינית מדרגה %s" #: includes/functions/functions.php:1809 #, php-format -msgctxt "(a woman’s) great ×%d niece" -msgid "great ×%d niece" -msgstr "אחיינית מדרגה %d" +msgctxt "(a woman’s) great ×%s niece" +msgid "great ×%s niece" +msgstr "אחיינית מדרגה %s" -#. I18N: if you need a different number for %d, contact the developers, as a code-change is required +#. I18N: if you need a different number for %s, contact the developers, as a code-change is required #: includes/functions/functions.php:1637 includes/functions/functions.php:1665 #, php-format -msgid "great ×%d uncle" -msgstr "דוד מדרגה %d" +msgid "great ×%s uncle" +msgstr "דוד מדרגה %s" #: includes/functions/functions.php:1647 #, php-format -msgctxt "great ×(%d-1) grandfather’s brother" -msgid "great ×%d uncle" -msgstr "דוד מדרגה %d" +msgctxt "great ×(%s-1) grandfather’s brother" +msgid "great ×%s uncle" +msgstr "דוד מדרגה %s" #: includes/functions/functions.php:1649 #, php-format -msgctxt "great ×(%d-1) grandmother’s brother" -msgid "great ×%d uncle" -msgstr "דוד מדרגה %d" +msgctxt "great ×(%s-1) grandmother’s brother" +msgid "great ×%s uncle" +msgstr "דוד מדרגה %s" #: includes/functions/functions.php:1651 #, php-format -msgctxt "great ×(%d-1) grandparent’s brother" -msgid "great ×%d uncle" -msgstr "דוד מדרגה %d" +msgctxt "great ×(%s-1) grandparent’s brother" +msgid "great ×%s uncle" +msgstr "דוד מדרגה %s" #: includes/functions/functions.php:1579 msgid "great ×4 aunt" @@ -18618,10 +18618,10 @@ msgstr "מקסימום" #: app/Module/UpcomingAnniversariesModule.php:125 #: app/Module/YahrzeitModule.php:250 #, php-format -msgid "maximum %d day" -msgid_plural "maximum %d days" +msgid "maximum %s day" +msgid_plural "maximum %s days" msgstr[0] "לכל היותר יום אחד" -msgstr[1] "לכל היותר %d ימים" +msgstr[1] "לכל היותר %s ימים" #: admin_trees_config.php:404 admin_trees_config.php:428 #: admin_trees_config.php:468 admin_trees_config.php:508 @@ -20138,10 +20138,10 @@ msgstr "…" #~ msgid "No other link between the two individuals could be found." #~ msgstr "לא נמצא קשר אחר בין שני האנשים." -#~ msgid "Note: “living” is defined (if no death or burial is known) as ending %d year after birth or estimated birth." -#~ msgid_plural "Note: “living” is defined (if no death or burial is known) as ending %d years after birth or estimated birth." +#~ msgid "Note: “living” is defined (if no death or burial is known) as ending %s year after birth or estimated birth." +#~ msgid_plural "Note: “living” is defined (if no death or burial is known) as ending %s years after birth or estimated birth." #~ msgstr[0] "הערה: ”חיים” מוגדר (אם מוות או קבורה אינם ידועים) שנה לאחר לידה או לידה משוערת." -#~ msgstr[1] "הערה: ”חיים” מוגדר (אם מוות או קבורה אינם ידועים) %d שנים לאחר לידה או לידה משוערת." +#~ msgstr[1] "הערה: ”חיים” מוגדר (אם מוות או קבורה אינם ידועים) %s שנים לאחר לידה או לידה משוערת." #~ msgid "Notes are free-form text and will appear in the Fact Details section of the page." #~ msgstr "הערות הן מלל במבנה חופשי ותופענה בחלק הדף של פירוט העובדה." diff --git a/language/hr.po b/language/hr.po index b106eb8aed..996993e635 100644 --- a/language/hr.po +++ b/language/hr.po @@ -194,54 +194,54 @@ msgstr "%H:%i:%s" #: app/Module/LoggedInUsersModule.php:51 app/Stats.php:5372 #, php-format -msgid "%d anonymous logged-in user" -msgid_plural "%d anonymous logged-in users" -msgstr[0] "%d anonimni prijavljeni korisnik" -msgstr[1] "%d anonimna prijavljena korisnika" -msgstr[2] "%d anonimnih prijavljenih korisnika" +msgid "%s anonymous logged-in user" +msgid_plural "%s anonymous logged-in users" +msgstr[0] "%s anonimni prijavljeni korisnik" +msgstr[1] "%s anonimna prijavljena korisnika" +msgstr[2] "%s anonimnih prijavljenih korisnika" #: app/Module/LoggedInUsersModule.php:57 app/Stats.php:5382 #, php-format -msgid "%d logged-in user" -msgid_plural "%d logged-in users" -msgstr[0] "%d prijavljeni korisnik" -msgstr[1] "%d prijavljena korisnika" -msgstr[2] "%d prijavljenih korisnika" +msgid "%s logged-in user" +msgid_plural "%s logged-in users" +msgstr[0] "%s prijavljeni korisnik" +msgstr[1] "%s prijavljena korisnika" +msgstr[2] "%s prijavljenih korisnika" #: app/Module/RelativesTabModule.php:62 #, php-format -msgid "%d month" -msgid_plural "%d months" -msgstr[0] "%d mjesec" -msgstr[1] "%d mjeseca" -msgstr[2] "%d mjeseci" +msgid "%s month" +msgid_plural "%s months" +msgstr[0] "%s mjesec" +msgstr[1] "%s mjeseca" +msgstr[2] "%s mjeseci" #: app/Module/RelativesTabModule.php:60 #, php-format -msgid "%d year" -msgid_plural "%d years" -msgstr[0] "%d godina" -msgstr[1] "%d godine" -msgstr[2] "%d godina" +msgid "%s year" +msgid_plural "%s years" +msgstr[0] "%s godina" +msgstr[1] "%s godine" +msgstr[2] "%s godina" #: includes/functions/functions.php:555 #, php-format msgctxt "FEMALE" -msgid "%d × cousin" -msgstr "%d × rođakinja" +msgid "%s × cousin" +msgstr "%s × rođakinja" #. I18N: Note that for Italian and Polish, “N’th cousins” are different from English “N’th cousins”, and the software has already generated the correct “N” for your language. You only need to translate - you do not need to convert. For other languages, if your cousin rules are different from English, please contact the developers. #: includes/functions/functions.php:520 #, php-format msgctxt "MALE" -msgid "%d × cousin" -msgstr "%d × rođak" +msgid "%s × cousin" +msgstr "%s × rođak" #: includes/functions/functions.php:590 #, php-format msgctxt "MALE/FEMALE" -msgid "%d × cousin" -msgstr "%d × rođaci" +msgid "%s × cousin" +msgstr "%s × rođaci" #. I18N: This is the format string for full dates. See http://php.net/date for codes #: app/Date.php:222 app/I18N.php:212 @@ -14340,8 +14340,8 @@ msgstr "Ovaj server ne podržava sigurno skidanje koristeći HTTPS." #: setup.php:183 #, php-format -msgid "This server’s memory limit is %d MB and its CPU time limit is %d seconds." -msgstr "Memorija na serveru je ograničena na %dMB i CPU vrijeme na %d sekundi." +msgid "This server’s memory limit is %s MB and its CPU time limit is %s seconds." +msgstr "Memorija na serveru je ograničena na %sMB i CPU vrijeme na %s sekundi." #. I18N: Help text for the “Other facts to show in charts” configuration setting #: admin_trees_config.php:1632 @@ -17020,145 +17020,145 @@ msgstr "unukova žena" #: includes/functions/functions.php:1639 includes/functions/functions.php:1654 #: includes/functions/functions.php:1667 #, php-format -msgid "great ×%d aunt" +msgid "great ×%s aunt" msgstr "" #: includes/functions/functions.php:1641 includes/functions/functions.php:1656 #: includes/functions/functions.php:1669 #, php-format -msgid "great ×%d aunt/uncle" +msgid "great ×%s aunt/uncle" msgstr "" #: includes/functions/functions.php:2042 includes/functions/functions.php:2057 #, php-format -msgid "great ×%d grandchild" +msgid "great ×%s grandchild" msgstr "" #: includes/functions/functions.php:2040 includes/functions/functions.php:2055 #, php-format -msgid "great ×%d granddaughter" +msgid "great ×%s granddaughter" msgstr "" -#. I18N: if you need a different number for %d, contact the developers, as a code-change is required +#. I18N: if you need a different number for %s, contact the developers, as a code-change is required #: includes/functions/functions.php:1912 includes/functions/functions.php:1922 #: includes/functions/functions.php:1932 includes/functions/functions.php:1942 #: includes/functions/functions.php:1954 #, php-format -msgid "great ×%d grandfather" +msgid "great ×%s grandfather" msgstr "" #: includes/functions/functions.php:1914 includes/functions/functions.php:1924 #: includes/functions/functions.php:1934 includes/functions/functions.php:1944 #: includes/functions/functions.php:1956 #, php-format -msgid "great ×%d grandmother" +msgid "great ×%s grandmother" msgstr "" #: includes/functions/functions.php:1916 includes/functions/functions.php:1926 #: includes/functions/functions.php:1936 includes/functions/functions.php:1946 #: includes/functions/functions.php:1958 #, php-format -msgid "great ×%d grandparent" +msgid "great ×%s grandparent" msgstr "" -#. I18N: if you need a different number for %d, contact the developers, as a code-change is required +#. I18N: if you need a different number for %s, contact the developers, as a code-change is required #: includes/functions/functions.php:2038 includes/functions/functions.php:2053 #, php-format -msgid "great ×%d grandson" +msgid "great ×%s grandson" msgstr "" -#. I18N: if you need a different number for %d, contact the developers, as a code-change is required +#. I18N: if you need a different number for %s, contact the developers, as a code-change is required #: includes/functions/functions.php:1823 includes/functions/functions.php:1836 #, php-format -msgid "great ×%d nephew" +msgid "great ×%s nephew" msgstr "" #: includes/functions/functions.php:1797 #, php-format -msgctxt "(a man’s) brother’s great ×(%d-1) grandson" -msgid "great ×%d nephew" +msgctxt "(a man’s) brother’s great ×(%s-1) grandson" +msgid "great ×%s nephew" msgstr "" #: includes/functions/functions.php:1799 #, php-format -msgctxt "(a man’s) sister’s great ×(%d-1) grandson" -msgid "great ×%d nephew" +msgctxt "(a man’s) sister’s great ×(%s-1) grandson" +msgid "great ×%s nephew" msgstr "" #: includes/functions/functions.php:1801 #, php-format -msgctxt "(a woman’s) great ×%d nephew" -msgid "great ×%d nephew" +msgctxt "(a woman’s) great ×%s nephew" +msgid "great ×%s nephew" msgstr "" #: includes/functions/functions.php:1827 includes/functions/functions.php:1840 #, php-format -msgid "great ×%d nephew/niece" +msgid "great ×%s nephew/niece" msgstr "" #: includes/functions/functions.php:1813 #, php-format -msgctxt "(a man’s) brother’s great ×(%d-1) grandchild" -msgid "great ×%d nephew/niece" +msgctxt "(a man’s) brother’s great ×(%s-1) grandchild" +msgid "great ×%s nephew/niece" msgstr "" #: includes/functions/functions.php:1815 #, php-format -msgctxt "(a man’s) sister’s great ×(%d-1) grandchild" -msgid "great ×%d nephew/niece" +msgctxt "(a man’s) sister’s great ×(%s-1) grandchild" +msgid "great ×%s nephew/niece" msgstr "" #: includes/functions/functions.php:1817 #, php-format -msgctxt "(a woman’s) great ×%d nephew/niece" -msgid "great ×%d nephew/niece" +msgctxt "(a woman’s) great ×%s nephew/niece" +msgid "great ×%s nephew/niece" msgstr "" #: includes/functions/functions.php:1825 includes/functions/functions.php:1838 #, php-format -msgid "great ×%d niece" +msgid "great ×%s niece" msgstr "" #: includes/functions/functions.php:1805 #, php-format -msgctxt "(a man’s) brother’s great ×(%d-1) granddaughter" -msgid "great ×%d niece" +msgctxt "(a man’s) brother’s great ×(%s-1) granddaughter" +msgid "great ×%s niece" msgstr "" #: includes/functions/functions.php:1807 #, php-format -msgctxt "(a man’s) sister’s great ×(%d-1) granddaughter" -msgid "great ×%d niece" +msgctxt "(a man’s) sister’s great ×(%s-1) granddaughter" +msgid "great ×%s niece" msgstr "" #: includes/functions/functions.php:1809 #, php-format -msgctxt "(a woman’s) great ×%d niece" -msgid "great ×%d niece" +msgctxt "(a woman’s) great ×%s niece" +msgid "great ×%s niece" msgstr "" -#. I18N: if you need a different number for %d, contact the developers, as a code-change is required +#. I18N: if you need a different number for %s, contact the developers, as a code-change is required #: includes/functions/functions.php:1637 includes/functions/functions.php:1665 #, php-format -msgid "great ×%d uncle" +msgid "great ×%s uncle" msgstr "" #: includes/functions/functions.php:1647 #, php-format -msgctxt "great ×(%d-1) grandfather’s brother" -msgid "great ×%d uncle" +msgctxt "great ×(%s-1) grandfather’s brother" +msgid "great ×%s uncle" msgstr "" #: includes/functions/functions.php:1649 #, php-format -msgctxt "great ×(%d-1) grandmother’s brother" -msgid "great ×%d uncle" +msgctxt "great ×(%s-1) grandmother’s brother" +msgid "great ×%s uncle" msgstr "" #: includes/functions/functions.php:1651 #, php-format -msgctxt "great ×(%d-1) grandparent’s brother" -msgid "great ×%d uncle" +msgctxt "great ×(%s-1) grandparent’s brother" +msgid "great ×%s uncle" msgstr "" #: includes/functions/functions.php:1579 @@ -18610,11 +18610,11 @@ msgstr "maximalno" #: app/Module/UpcomingAnniversariesModule.php:125 #: app/Module/YahrzeitModule.php:250 #, php-format -msgid "maximum %d day" -msgid_plural "maximum %d days" -msgstr[0] "maximalno %d dan" -msgstr[1] "maximalno %d dana" -msgstr[2] "maximalno %d dana" +msgid "maximum %s day" +msgid_plural "maximum %s days" +msgstr[0] "maximalno %s dan" +msgstr[1] "maximalno %s dana" +msgstr[2] "maximalno %s dana" #: admin_trees_config.php:404 admin_trees_config.php:428 #: admin_trees_config.php:468 admin_trees_config.php:508 @@ -20113,11 +20113,11 @@ msgstr "…" #~ msgid "No other link between the two individuals could be found." #~ msgstr "Nijedna druga poveznica između dva pojedinca nije pronađena." -#~ msgid "Note: “living” is defined (if no death or burial is known) as ending %d year after birth or estimated birth." -#~ msgid_plural "Note: “living” is defined (if no death or burial is known) as ending %d years after birth or estimated birth." -#~ msgstr[0] "Napomena: „živ” se smatra pojedinac za kojeg nisu poznati datumi smrti ili pokopa i nije prošla %d godina od rođenja ili procijenjenog rođenja." -#~ msgstr[1] "Napomena: „živ” se smatra pojedinac za kojeg nisu poznati datumi smrti ili pokopa i nisu prošle %d godine od rođenja ili procijenjenog rođenja." -#~ msgstr[2] "Napomena: „živ” se smatra pojedinac za kojeg nisu poznati datumi smrti ili pokopa i nije prošlo %d godina od rođenja ili procijenjenog rođenja." +#~ msgid "Note: “living” is defined (if no death or burial is known) as ending %s year after birth or estimated birth." +#~ msgid_plural "Note: “living” is defined (if no death or burial is known) as ending %s years after birth or estimated birth." +#~ msgstr[0] "Napomena: „živ” se smatra pojedinac za kojeg nisu poznati datumi smrti ili pokopa i nije prošla %s godina od rođenja ili procijenjenog rođenja." +#~ msgstr[1] "Napomena: „živ” se smatra pojedinac za kojeg nisu poznati datumi smrti ili pokopa i nisu prošle %s godine od rođenja ili procijenjenog rođenja." +#~ msgstr[2] "Napomena: „živ” se smatra pojedinac za kojeg nisu poznati datumi smrti ili pokopa i nije prošlo %s godina od rođenja ili procijenjenog rođenja." #~ msgid "Notes are free-form text and will appear in the Fact Details section of the page." #~ msgstr "Bilješka je slobodan tekst i prikazati će se na stranici u odjeljku Detalji Činjenica." diff --git a/language/hu.po b/language/hu.po index 95fbd716da..556b992cd9 100644 --- a/language/hu.po +++ b/language/hu.po @@ -190,50 +190,50 @@ msgstr "%g:%i:%s %a" #: app/Module/LoggedInUsersModule.php:51 app/Stats.php:5372 #, php-format -msgid "%d anonymous logged-in user" -msgid_plural "%d anonymous logged-in users" -msgstr[0] "%d névtelen felhasználó" -msgstr[1] "%d névtelen felhasználó" +msgid "%s anonymous logged-in user" +msgid_plural "%s anonymous logged-in users" +msgstr[0] "%s névtelen felhasználó" +msgstr[1] "%s névtelen felhasználó" #: app/Module/LoggedInUsersModule.php:57 app/Stats.php:5382 #, php-format -msgid "%d logged-in user" -msgid_plural "%d logged-in users" -msgstr[0] "%d belépett felhasználó" -msgstr[1] "%d belépett felhasználó" +msgid "%s logged-in user" +msgid_plural "%s logged-in users" +msgstr[0] "%s belépett felhasználó" +msgstr[1] "%s belépett felhasználó" #: app/Module/RelativesTabModule.php:62 #, php-format -msgid "%d month" -msgid_plural "%d months" -msgstr[0] "%d hónap" -msgstr[1] "%d hónap" +msgid "%s month" +msgid_plural "%s months" +msgstr[0] "%s hónap" +msgstr[1] "%s hónap" #: app/Module/RelativesTabModule.php:60 #, php-format -msgid "%d year" -msgid_plural "%d years" -msgstr[0] "%d év" -msgstr[1] "%d év" +msgid "%s year" +msgid_plural "%s years" +msgstr[0] "%s év" +msgstr[1] "%s év" #: includes/functions/functions.php:555 #, php-format msgctxt "FEMALE" -msgid "%d × cousin" -msgstr "%d × unokatestvér" +msgid "%s × cousin" +msgstr "%s × unokatestvér" #. I18N: Note that for Italian and Polish, “N’th cousins” are different from English “N’th cousins”, and the software has already generated the correct “N” for your language. You only need to translate - you do not need to convert. For other languages, if your cousin rules are different from English, please contact the developers. #: includes/functions/functions.php:520 #, php-format msgctxt "MALE" -msgid "%d × cousin" -msgstr "%d × unokatestvér" +msgid "%s × cousin" +msgstr "%s × unokatestvér" #: includes/functions/functions.php:590 #, php-format msgctxt "MALE/FEMALE" -msgid "%d × cousin" -msgstr "%d × unokatestvér" +msgid "%s × cousin" +msgstr "%s × unokatestvér" #. I18N: This is the format string for full dates. See http://php.net/date for codes #: app/Date.php:222 app/I18N.php:212 @@ -14305,8 +14305,8 @@ msgstr "" #: setup.php:183 #, php-format -msgid "This server’s memory limit is %d MB and its CPU time limit is %d seconds." -msgstr "A szerver memóriakorlátja %dMB és a processzoridő korlát %d másodperc." +msgid "This server’s memory limit is %s MB and its CPU time limit is %s seconds." +msgstr "A szerver memóriakorlátja %sMB és a processzoridő korlát %s másodperc." #. I18N: Help text for the “Other facts to show in charts” configuration setting #: admin_trees_config.php:1632 @@ -16981,146 +16981,146 @@ msgstr "fiúunoka felesége" #: includes/functions/functions.php:1639 includes/functions/functions.php:1654 #: includes/functions/functions.php:1667 #, php-format -msgid "great ×%d aunt" -msgstr "%d. nagynéni" +msgid "great ×%s aunt" +msgstr "%s. nagynéni" #: includes/functions/functions.php:1641 includes/functions/functions.php:1656 #: includes/functions/functions.php:1669 #, php-format -msgid "great ×%d aunt/uncle" -msgstr "%d. nagynéni/bácsi" +msgid "great ×%s aunt/uncle" +msgstr "%s. nagynéni/bácsi" #: includes/functions/functions.php:2042 includes/functions/functions.php:2057 #, php-format -msgid "great ×%d grandchild" -msgstr "%d. unoka" +msgid "great ×%s grandchild" +msgstr "%s. unoka" #: includes/functions/functions.php:2040 includes/functions/functions.php:2055 #, php-format -msgid "great ×%d granddaughter" -msgstr "%d. unoka" +msgid "great ×%s granddaughter" +msgstr "%s. unoka" -#. I18N: if you need a different number for %d, contact the developers, as a code-change is required +#. I18N: if you need a different number for %s, contact the developers, as a code-change is required #: includes/functions/functions.php:1912 includes/functions/functions.php:1922 #: includes/functions/functions.php:1932 includes/functions/functions.php:1942 #: includes/functions/functions.php:1954 #, php-format -msgid "great ×%d grandfather" -msgstr "%d. felmenő" +msgid "great ×%s grandfather" +msgstr "%s. felmenő" #: includes/functions/functions.php:1914 includes/functions/functions.php:1924 #: includes/functions/functions.php:1934 includes/functions/functions.php:1944 #: includes/functions/functions.php:1956 #, php-format -msgid "great ×%d grandmother" -msgstr "%d. felmenő" +msgid "great ×%s grandmother" +msgstr "%s. felmenő" #: includes/functions/functions.php:1916 includes/functions/functions.php:1926 #: includes/functions/functions.php:1936 includes/functions/functions.php:1946 #: includes/functions/functions.php:1958 #, php-format -msgid "great ×%d grandparent" -msgstr "%d. felmenő" +msgid "great ×%s grandparent" +msgstr "%s. felmenő" -#. I18N: if you need a different number for %d, contact the developers, as a code-change is required +#. I18N: if you need a different number for %s, contact the developers, as a code-change is required #: includes/functions/functions.php:2038 includes/functions/functions.php:2053 #, php-format -msgid "great ×%d grandson" -msgstr "%d. unoka" +msgid "great ×%s grandson" +msgstr "%s. unoka" -#. I18N: if you need a different number for %d, contact the developers, as a code-change is required +#. I18N: if you need a different number for %s, contact the developers, as a code-change is required #: includes/functions/functions.php:1823 includes/functions/functions.php:1836 #, php-format -msgid "great ×%d nephew" -msgstr "testvér %d. unokája" +msgid "great ×%s nephew" +msgstr "testvér %s. unokája" #: includes/functions/functions.php:1797 #, php-format -msgctxt "(a man’s) brother’s great ×(%d-1) grandson" -msgid "great ×%d nephew" -msgstr "testvér %d. unokája" +msgctxt "(a man’s) brother’s great ×(%s-1) grandson" +msgid "great ×%s nephew" +msgstr "testvér %s. unokája" #: includes/functions/functions.php:1799 #, php-format -msgctxt "(a man’s) sister’s great ×(%d-1) grandson" -msgid "great ×%d nephew" -msgstr "testvér %d. unokája" +msgctxt "(a man’s) sister’s great ×(%s-1) grandson" +msgid "great ×%s nephew" +msgstr "testvér %s. unokája" #: includes/functions/functions.php:1801 #, php-format -msgctxt "(a woman’s) great ×%d nephew" -msgid "great ×%d nephew" -msgstr "testvér %d. unokája" +msgctxt "(a woman’s) great ×%s nephew" +msgid "great ×%s nephew" +msgstr "testvér %s. unokája" #: includes/functions/functions.php:1827 includes/functions/functions.php:1840 #, php-format -msgid "great ×%d nephew/niece" -msgstr "testvér %d. unokája" +msgid "great ×%s nephew/niece" +msgstr "testvér %s. unokája" #: includes/functions/functions.php:1813 #, php-format -msgctxt "(a man’s) brother’s great ×(%d-1) grandchild" -msgid "great ×%d nephew/niece" -msgstr "testvér %d. unokája" +msgctxt "(a man’s) brother’s great ×(%s-1) grandchild" +msgid "great ×%s nephew/niece" +msgstr "testvér %s. unokája" #: includes/functions/functions.php:1815 #, php-format -msgctxt "(a man’s) sister’s great ×(%d-1) grandchild" -msgid "great ×%d nephew/niece" -msgstr "testvér %d. unokája" +msgctxt "(a man’s) sister’s great ×(%s-1) grandchild" +msgid "great ×%s nephew/niece" +msgstr "testvér %s. unokája" #: includes/functions/functions.php:1817 #, php-format -msgctxt "(a woman’s) great ×%d nephew/niece" -msgid "great ×%d nephew/niece" -msgstr "testvér %d. unokája" +msgctxt "(a woman’s) great ×%s nephew/niece" +msgid "great ×%s nephew/niece" +msgstr "testvér %s. unokája" #: includes/functions/functions.php:1825 includes/functions/functions.php:1838 #, php-format -msgid "great ×%d niece" -msgstr "testvér %d. unokája" +msgid "great ×%s niece" +msgstr "testvér %s. unokája" #: includes/functions/functions.php:1805 #, php-format -msgctxt "(a man’s) brother’s great ×(%d-1) granddaughter" -msgid "great ×%d niece" -msgstr "testvér %d. unokája" +msgctxt "(a man’s) brother’s great ×(%s-1) granddaughter" +msgid "great ×%s niece" +msgstr "testvér %s. unokája" #: includes/functions/functions.php:1807 #, php-format -msgctxt "(a man’s) sister’s great ×(%d-1) granddaughter" -msgid "great ×%d niece" -msgstr "testvér %d. unokája" +msgctxt "(a man’s) sister’s great ×(%s-1) granddaughter" +msgid "great ×%s niece" +msgstr "testvér %s. unokája" #: includes/functions/functions.php:1809 #, php-format -msgctxt "(a woman’s) great ×%d niece" -msgid "great ×%d niece" -msgstr "testvér %d. unokája" +msgctxt "(a woman’s) great ×%s niece" +msgid "great ×%s niece" +msgstr "testvér %s. unokája" -#. I18N: if you need a different number for %d, contact the developers, as a code-change is required +#. I18N: if you need a different number for %s, contact the developers, as a code-change is required #: includes/functions/functions.php:1637 includes/functions/functions.php:1665 #, php-format -msgid "great ×%d uncle" -msgstr "%d. nagybácsi" +msgid "great ×%s uncle" +msgstr "%s. nagybácsi" #: includes/functions/functions.php:1647 #, php-format -msgctxt "great ×(%d-1) grandfather’s brother" -msgid "great ×%d uncle" -msgstr "%d. nagybácsi" +msgctxt "great ×(%s-1) grandfather’s brother" +msgid "great ×%s uncle" +msgstr "%s. nagybácsi" #: includes/functions/functions.php:1649 #, php-format -msgctxt "great ×(%d-1) grandmother’s brother" -msgid "great ×%d uncle" -msgstr "%d. nagybácsi" +msgctxt "great ×(%s-1) grandmother’s brother" +msgid "great ×%s uncle" +msgstr "%s. nagybácsi" #: includes/functions/functions.php:1651 #, php-format -msgctxt "great ×(%d-1) grandparent’s brother" -msgid "great ×%d uncle" -msgstr "%d. nagybácsi" +msgctxt "great ×(%s-1) grandparent’s brother" +msgid "great ×%s uncle" +msgstr "%s. nagybácsi" #: includes/functions/functions.php:1579 msgid "great ×4 aunt" @@ -18570,10 +18570,10 @@ msgstr "maximum" #: app/Module/UpcomingAnniversariesModule.php:125 #: app/Module/YahrzeitModule.php:250 #, php-format -msgid "maximum %d day" -msgid_plural "maximum %d days" -msgstr[0] "maximum %d nap" -msgstr[1] "maximum %d nap" +msgid "maximum %s day" +msgid_plural "maximum %s days" +msgstr[0] "maximum %s nap" +msgstr[1] "maximum %s nap" #: admin_trees_config.php:404 admin_trees_config.php:428 #: admin_trees_config.php:468 admin_trees_config.php:508 diff --git a/language/id.po b/language/id.po index f6117d02bf..c0ea50f82f 100644 --- a/language/id.po +++ b/language/id.po @@ -189,45 +189,45 @@ msgstr "" #: app/Module/LoggedInUsersModule.php:51 app/Stats.php:5372 #, php-format -msgid "%d anonymous logged-in user" -msgid_plural "%d anonymous logged-in users" +msgid "%s anonymous logged-in user" +msgid_plural "%s anonymous logged-in users" msgstr[0] "" #: app/Module/LoggedInUsersModule.php:57 app/Stats.php:5382 #, php-format -msgid "%d logged-in user" -msgid_plural "%d logged-in users" +msgid "%s logged-in user" +msgid_plural "%s logged-in users" msgstr[0] "" #: app/Module/RelativesTabModule.php:62 #, php-format -msgid "%d month" -msgid_plural "%d months" +msgid "%s month" +msgid_plural "%s months" msgstr[0] "" #: app/Module/RelativesTabModule.php:60 #, php-format -msgid "%d year" -msgid_plural "%d years" +msgid "%s year" +msgid_plural "%s years" msgstr[0] "" #: includes/functions/functions.php:555 #, php-format msgctxt "FEMALE" -msgid "%d × cousin" +msgid "%s × cousin" msgstr "" #. I18N: Note that for Italian and Polish, “N’th cousins” are different from English “N’th cousins”, and the software has already generated the correct “N” for your language. You only need to translate - you do not need to convert. For other languages, if your cousin rules are different from English, please contact the developers. #: includes/functions/functions.php:520 #, php-format msgctxt "MALE" -msgid "%d × cousin" +msgid "%s × cousin" msgstr "" #: includes/functions/functions.php:590 #, php-format msgctxt "MALE/FEMALE" -msgid "%d × cousin" +msgid "%s × cousin" msgstr "" #. I18N: This is the format string for full dates. See http://php.net/date for codes @@ -14273,7 +14273,7 @@ msgstr "" #: setup.php:183 #, php-format -msgid "This server’s memory limit is %d MB and its CPU time limit is %d seconds." +msgid "This server’s memory limit is %s MB and its CPU time limit is %s seconds." msgstr "" #. I18N: Help text for the “Other facts to show in charts” configuration setting @@ -16945,145 +16945,145 @@ msgstr "" #: includes/functions/functions.php:1639 includes/functions/functions.php:1654 #: includes/functions/functions.php:1667 #, php-format -msgid "great ×%d aunt" +msgid "great ×%s aunt" msgstr "" #: includes/functions/functions.php:1641 includes/functions/functions.php:1656 #: includes/functions/functions.php:1669 #, php-format -msgid "great ×%d aunt/uncle" +msgid "great ×%s aunt/uncle" msgstr "" #: includes/functions/functions.php:2042 includes/functions/functions.php:2057 #, php-format -msgid "great ×%d grandchild" +msgid "great ×%s grandchild" msgstr "" #: includes/functions/functions.php:2040 includes/functions/functions.php:2055 #, php-format -msgid "great ×%d granddaughter" +msgid "great ×%s granddaughter" msgstr "" -#. I18N: if you need a different number for %d, contact the developers, as a code-change is required +#. I18N: if you need a different number for %s, contact the developers, as a code-change is required #: includes/functions/functions.php:1912 includes/functions/functions.php:1922 #: includes/functions/functions.php:1932 includes/functions/functions.php:1942 #: includes/functions/functions.php:1954 #, php-format -msgid "great ×%d grandfather" +msgid "great ×%s grandfather" msgstr "" #: includes/functions/functions.php:1914 includes/functions/functions.php:1924 #: includes/functions/functions.php:1934 includes/functions/functions.php:1944 #: includes/functions/functions.php:1956 #, php-format -msgid "great ×%d grandmother" +msgid "great ×%s grandmother" msgstr "" #: includes/functions/functions.php:1916 includes/functions/functions.php:1926 #: includes/functions/functions.php:1936 includes/functions/functions.php:1946 #: includes/functions/functions.php:1958 #, php-format -msgid "great ×%d grandparent" +msgid "great ×%s grandparent" msgstr "" -#. I18N: if you need a different number for %d, contact the developers, as a code-change is required +#. I18N: if you need a different number for %s, contact the developers, as a code-change is required #: includes/functions/functions.php:2038 includes/functions/functions.php:2053 #, php-format -msgid "great ×%d grandson" +msgid "great ×%s grandson" msgstr "" -#. I18N: if you need a different number for %d, contact the developers, as a code-change is required +#. I18N: if you need a different number for %s, contact the developers, as a code-change is required #: includes/functions/functions.php:1823 includes/functions/functions.php:1836 #, php-format -msgid "great ×%d nephew" +msgid "great ×%s nephew" msgstr "" #: includes/functions/functions.php:1797 #, php-format -msgctxt "(a man’s) brother’s great ×(%d-1) grandson" -msgid "great ×%d nephew" +msgctxt "(a man’s) brother’s great ×(%s-1) grandson" +msgid "great ×%s nephew" msgstr "" #: includes/functions/functions.php:1799 #, php-format -msgctxt "(a man’s) sister’s great ×(%d-1) grandson" -msgid "great ×%d nephew" +msgctxt "(a man’s) sister’s great ×(%s-1) grandson" +msgid "great ×%s nephew" msgstr "" #: includes/functions/functions.php:1801 #, php-format -msgctxt "(a woman’s) great ×%d nephew" -msgid "great ×%d nephew" +msgctxt "(a woman’s) great ×%s nephew" +msgid "great ×%s nephew" msgstr "" #: includes/functions/functions.php:1827 includes/functions/functions.php:1840 #, php-format -msgid "great ×%d nephew/niece" +msgid "great ×%s nephew/niece" msgstr "" #: includes/functions/functions.php:1813 #, php-format -msgctxt "(a man’s) brother’s great ×(%d-1) grandchild" -msgid "great ×%d nephew/niece" +msgctxt "(a man’s) brother’s great ×(%s-1) grandchild" +msgid "great ×%s nephew/niece" msgstr "" #: includes/functions/functions.php:1815 #, php-format -msgctxt "(a man’s) sister’s great ×(%d-1) grandchild" -msgid "great ×%d nephew/niece" +msgctxt "(a man’s) sister’s great ×(%s-1) grandchild" +msgid "great ×%s nephew/niece" msgstr "" #: includes/functions/functions.php:1817 #, php-format -msgctxt "(a woman’s) great ×%d nephew/niece" -msgid "great ×%d nephew/niece" +msgctxt "(a woman’s) great ×%s nephew/niece" +msgid "great ×%s nephew/niece" msgstr "" #: includes/functions/functions.php:1825 includes/functions/functions.php:1838 #, php-format -msgid "great ×%d niece" +msgid "great ×%s niece" msgstr "" #: includes/functions/functions.php:1805 #, php-format -msgctxt "(a man’s) brother’s great ×(%d-1) granddaughter" -msgid "great ×%d niece" +msgctxt "(a man’s) brother’s great ×(%s-1) granddaughter" +msgid "great ×%s niece" msgstr "" #: includes/functions/functions.php:1807 #, php-format -msgctxt "(a man’s) sister’s great ×(%d-1) granddaughter" -msgid "great ×%d niece" +msgctxt "(a man’s) sister’s great ×(%s-1) granddaughter" +msgid "great ×%s niece" msgstr "" #: includes/functions/functions.php:1809 #, php-format -msgctxt "(a woman’s) great ×%d niece" -msgid "great ×%d niece" +msgctxt "(a woman’s) great ×%s niece" +msgid "great ×%s niece" msgstr "" -#. I18N: if you need a different number for %d, contact the developers, as a code-change is required +#. I18N: if you need a different number for %s, contact the developers, as a code-change is required #: includes/functions/functions.php:1637 includes/functions/functions.php:1665 #, php-format -msgid "great ×%d uncle" +msgid "great ×%s uncle" msgstr "" #: includes/functions/functions.php:1647 #, php-format -msgctxt "great ×(%d-1) grandfather’s brother" -msgid "great ×%d uncle" +msgctxt "great ×(%s-1) grandfather’s brother" +msgid "great ×%s uncle" msgstr "" #: includes/functions/functions.php:1649 #, php-format -msgctxt "great ×(%d-1) grandmother’s brother" -msgid "great ×%d uncle" +msgctxt "great ×(%s-1) grandmother’s brother" +msgid "great ×%s uncle" msgstr "" #: includes/functions/functions.php:1651 #, php-format -msgctxt "great ×(%d-1) grandparent’s brother" -msgid "great ×%d uncle" +msgctxt "great ×(%s-1) grandparent’s brother" +msgid "great ×%s uncle" msgstr "" #: includes/functions/functions.php:1579 @@ -18533,8 +18533,8 @@ msgstr "" #: app/Module/UpcomingAnniversariesModule.php:125 #: app/Module/YahrzeitModule.php:250 #, php-format -msgid "maximum %d day" -msgid_plural "maximum %d days" +msgid "maximum %s day" +msgid_plural "maximum %s days" msgstr[0] "" #: admin_trees_config.php:404 admin_trees_config.php:428 diff --git a/language/is.po b/language/is.po index 33af1c2f9e..4d2bad4ac1 100644 --- a/language/is.po +++ b/language/is.po @@ -185,50 +185,50 @@ msgstr "%g:%i:%s %a" #: app/Module/LoggedInUsersModule.php:51 app/Stats.php:5372 #, php-format -msgid "%d anonymous logged-in user" -msgid_plural "%d anonymous logged-in users" -msgstr[0] "%d óþekkt innskráður notandi" -msgstr[1] "%d óþekkt innskráðir notendur" +msgid "%s anonymous logged-in user" +msgid_plural "%s anonymous logged-in users" +msgstr[0] "%s óþekkt innskráður notandi" +msgstr[1] "%s óþekkt innskráðir notendur" #: app/Module/LoggedInUsersModule.php:57 app/Stats.php:5382 #, php-format -msgid "%d logged-in user" -msgid_plural "%d logged-in users" -msgstr[0] "%d innskráður notandi" -msgstr[1] "%d innskráður notendur" +msgid "%s logged-in user" +msgid_plural "%s logged-in users" +msgstr[0] "%s innskráður notandi" +msgstr[1] "%s innskráður notendur" #: app/Module/RelativesTabModule.php:62 #, php-format -msgid "%d month" -msgid_plural "%d months" -msgstr[0] "%d mánuður" -msgstr[1] "%d mánuðir" +msgid "%s month" +msgid_plural "%s months" +msgstr[0] "%s mánuður" +msgstr[1] "%s mánuðir" #: app/Module/RelativesTabModule.php:60 #, php-format -msgid "%d year" -msgid_plural "%d years" -msgstr[0] "%d ár" -msgstr[1] "%d ár" +msgid "%s year" +msgid_plural "%s years" +msgstr[0] "%s ár" +msgstr[1] "%s ár" #: includes/functions/functions.php:555 #, php-format msgctxt "FEMALE" -msgid "%d × cousin" -msgstr "%d × frænka" +msgid "%s × cousin" +msgstr "%s × frænka" #. I18N: Note that for Italian and Polish, “N’th cousins” are different from English “N’th cousins”, and the software has already generated the correct “N” for your language. You only need to translate - you do not need to convert. For other languages, if your cousin rules are different from English, please contact the developers. #: includes/functions/functions.php:520 #, php-format msgctxt "MALE" -msgid "%d × cousin" -msgstr "%d × frændi" +msgid "%s × cousin" +msgstr "%s × frændi" #: includes/functions/functions.php:590 #, php-format msgctxt "MALE/FEMALE" -msgid "%d × cousin" -msgstr "%d × frændsystkini" +msgid "%s × cousin" +msgstr "%s × frændsystkini" #. I18N: This is the format string for full dates. See http://php.net/date for codes #: app/Date.php:222 app/I18N.php:212 @@ -14299,8 +14299,8 @@ msgstr "" #: setup.php:183 #, php-format -msgid "This server’s memory limit is %d MB and its CPU time limit is %d seconds." -msgstr "Minnistakmörk þessa vefþjóns eru %dMB og takmörk örgjörvatímans eru %d sekúndur." +msgid "This server’s memory limit is %s MB and its CPU time limit is %s seconds." +msgstr "Minnistakmörk þessa vefþjóns eru %sMB og takmörk örgjörvatímans eru %s sekúndur." #. I18N: Help text for the “Other facts to show in charts” configuration setting #: admin_trees_config.php:1632 @@ -16975,145 +16975,145 @@ msgstr "" #: includes/functions/functions.php:1639 includes/functions/functions.php:1654 #: includes/functions/functions.php:1667 #, php-format -msgid "great ×%d aunt" +msgid "great ×%s aunt" msgstr "" #: includes/functions/functions.php:1641 includes/functions/functions.php:1656 #: includes/functions/functions.php:1669 #, php-format -msgid "great ×%d aunt/uncle" +msgid "great ×%s aunt/uncle" msgstr "" #: includes/functions/functions.php:2042 includes/functions/functions.php:2057 #, php-format -msgid "great ×%d grandchild" +msgid "great ×%s grandchild" msgstr "" #: includes/functions/functions.php:2040 includes/functions/functions.php:2055 #, php-format -msgid "great ×%d granddaughter" +msgid "great ×%s granddaughter" msgstr "" -#. I18N: if you need a different number for %d, contact the developers, as a code-change is required +#. I18N: if you need a different number for %s, contact the developers, as a code-change is required #: includes/functions/functions.php:1912 includes/functions/functions.php:1922 #: includes/functions/functions.php:1932 includes/functions/functions.php:1942 #: includes/functions/functions.php:1954 #, php-format -msgid "great ×%d grandfather" +msgid "great ×%s grandfather" msgstr "" #: includes/functions/functions.php:1914 includes/functions/functions.php:1924 #: includes/functions/functions.php:1934 includes/functions/functions.php:1944 #: includes/functions/functions.php:1956 #, php-format -msgid "great ×%d grandmother" +msgid "great ×%s grandmother" msgstr "" #: includes/functions/functions.php:1916 includes/functions/functions.php:1926 #: includes/functions/functions.php:1936 includes/functions/functions.php:1946 #: includes/functions/functions.php:1958 #, php-format -msgid "great ×%d grandparent" +msgid "great ×%s grandparent" msgstr "" -#. I18N: if you need a different number for %d, contact the developers, as a code-change is required +#. I18N: if you need a different number for %s, contact the developers, as a code-change is required #: includes/functions/functions.php:2038 includes/functions/functions.php:2053 #, php-format -msgid "great ×%d grandson" +msgid "great ×%s grandson" msgstr "" -#. I18N: if you need a different number for %d, contact the developers, as a code-change is required +#. I18N: if you need a different number for %s, contact the developers, as a code-change is required #: includes/functions/functions.php:1823 includes/functions/functions.php:1836 #, php-format -msgid "great ×%d nephew" +msgid "great ×%s nephew" msgstr "" #: includes/functions/functions.php:1797 #, php-format -msgctxt "(a man’s) brother’s great ×(%d-1) grandson" -msgid "great ×%d nephew" +msgctxt "(a man’s) brother’s great ×(%s-1) grandson" +msgid "great ×%s nephew" msgstr "" #: includes/functions/functions.php:1799 #, php-format -msgctxt "(a man’s) sister’s great ×(%d-1) grandson" -msgid "great ×%d nephew" +msgctxt "(a man’s) sister’s great ×(%s-1) grandson" +msgid "great ×%s nephew" msgstr "" #: includes/functions/functions.php:1801 #, php-format -msgctxt "(a woman’s) great ×%d nephew" -msgid "great ×%d nephew" +msgctxt "(a woman’s) great ×%s nephew" +msgid "great ×%s nephew" msgstr "" #: includes/functions/functions.php:1827 includes/functions/functions.php:1840 #, php-format -msgid "great ×%d nephew/niece" +msgid "great ×%s nephew/niece" msgstr "" #: includes/functions/functions.php:1813 #, php-format -msgctxt "(a man’s) brother’s great ×(%d-1) grandchild" -msgid "great ×%d nephew/niece" +msgctxt "(a man’s) brother’s great ×(%s-1) grandchild" +msgid "great ×%s nephew/niece" msgstr "" #: includes/functions/functions.php:1815 #, php-format -msgctxt "(a man’s) sister’s great ×(%d-1) grandchild" -msgid "great ×%d nephew/niece" +msgctxt "(a man’s) sister’s great ×(%s-1) grandchild" +msgid "great ×%s nephew/niece" msgstr "" #: includes/functions/functions.php:1817 #, php-format -msgctxt "(a woman’s) great ×%d nephew/niece" -msgid "great ×%d nephew/niece" +msgctxt "(a woman’s) great ×%s nephew/niece" +msgid "great ×%s nephew/niece" msgstr "" #: includes/functions/functions.php:1825 includes/functions/functions.php:1838 #, php-format -msgid "great ×%d niece" +msgid "great ×%s niece" msgstr "" #: includes/functions/functions.php:1805 #, php-format -msgctxt "(a man’s) brother’s great ×(%d-1) granddaughter" -msgid "great ×%d niece" +msgctxt "(a man’s) brother’s great ×(%s-1) granddaughter" +msgid "great ×%s niece" msgstr "" #: includes/functions/functions.php:1807 #, php-format -msgctxt "(a man’s) sister’s great ×(%d-1) granddaughter" -msgid "great ×%d niece" +msgctxt "(a man’s) sister’s great ×(%s-1) granddaughter" +msgid "great ×%s niece" msgstr "" #: includes/functions/functions.php:1809 #, php-format -msgctxt "(a woman’s) great ×%d niece" -msgid "great ×%d niece" +msgctxt "(a woman’s) great ×%s niece" +msgid "great ×%s niece" msgstr "" -#. I18N: if you need a different number for %d, contact the developers, as a code-change is required +#. I18N: if you need a different number for %s, contact the developers, as a code-change is required #: includes/functions/functions.php:1637 includes/functions/functions.php:1665 #, php-format -msgid "great ×%d uncle" +msgid "great ×%s uncle" msgstr "" #: includes/functions/functions.php:1647 #, php-format -msgctxt "great ×(%d-1) grandfather’s brother" -msgid "great ×%d uncle" +msgctxt "great ×(%s-1) grandfather’s brother" +msgid "great ×%s uncle" msgstr "" #: includes/functions/functions.php:1649 #, php-format -msgctxt "great ×(%d-1) grandmother’s brother" -msgid "great ×%d uncle" +msgctxt "great ×(%s-1) grandmother’s brother" +msgid "great ×%s uncle" msgstr "" #: includes/functions/functions.php:1651 #, php-format -msgctxt "great ×(%d-1) grandparent’s brother" -msgid "great ×%d uncle" +msgctxt "great ×(%s-1) grandparent’s brother" +msgid "great ×%s uncle" msgstr "" #: includes/functions/functions.php:1579 @@ -18564,10 +18564,10 @@ msgstr "hámark" #: app/Module/UpcomingAnniversariesModule.php:125 #: app/Module/YahrzeitModule.php:250 #, php-format -msgid "maximum %d day" -msgid_plural "maximum %d days" -msgstr[0] "hámark %d dagur" -msgstr[1] "hámark %d dagar" +msgid "maximum %s day" +msgid_plural "maximum %s days" +msgstr[0] "hámark %s dagur" +msgstr[1] "hámark %s dagar" #: admin_trees_config.php:404 admin_trees_config.php:428 #: admin_trees_config.php:468 admin_trees_config.php:508 @@ -20051,10 +20051,10 @@ msgstr "…" #~ msgid "No other link between the two individuals could be found." #~ msgstr "Engin önnur tengsl fundust á milli þessara einstaklinga." -#~ msgid "Note: “living” is defined (if no death or burial is known) as ending %d year after birth or estimated birth." -#~ msgid_plural "Note: “living” is defined (if no death or burial is known) as ending %d years after birth or estimated birth." -#~ msgstr[0] "Athugið: „lifandi“ er skilgreint (ef ekki er vitað af andláti eða jarðaför) sem endar %d ár eftir fæðingu eða áætlaðrar fæðingu." -#~ msgstr[1] "Athugið: „lifandi“ er skilgreint (ef ekki er vitað af andláti eða jarðför) sem endar %d árum eftir fæðingu eða áætlaðrar fæðingu." +#~ msgid "Note: “living” is defined (if no death or burial is known) as ending %s year after birth or estimated birth." +#~ msgid_plural "Note: “living” is defined (if no death or burial is known) as ending %s years after birth or estimated birth." +#~ msgstr[0] "Athugið: „lifandi“ er skilgreint (ef ekki er vitað af andláti eða jarðaför) sem endar %s ár eftir fæðingu eða áætlaðrar fæðingu." +#~ msgstr[1] "Athugið: „lifandi“ er skilgreint (ef ekki er vitað af andláti eða jarðför) sem endar %s árum eftir fæðingu eða áætlaðrar fæðingu." #~ msgid "Notes are free-form text and will appear in the Fact Details section of the page." #~ msgstr "Glósur er texti á frjálsu sniði munu birtast í staðreynda upplýsinga hluta síðunnar." diff --git a/language/it.po b/language/it.po index 2bb79dc022..0768f46733 100644 --- a/language/it.po +++ b/language/it.po @@ -191,50 +191,50 @@ msgstr "%G.%i.%s" #: app/Module/LoggedInUsersModule.php:51 app/Stats.php:5372 #, php-format -msgid "%d anonymous logged-in user" -msgid_plural "%d anonymous logged-in users" -msgstr[0] "%d utente anonimo corrente" -msgstr[1] "%d utenti anonimi correnti" +msgid "%s anonymous logged-in user" +msgid_plural "%s anonymous logged-in users" +msgstr[0] "%s utente anonimo corrente" +msgstr[1] "%s utenti anonimi correnti" #: app/Module/LoggedInUsersModule.php:57 app/Stats.php:5382 #, php-format -msgid "%d logged-in user" -msgid_plural "%d logged-in users" -msgstr[0] "%d utente corrente" -msgstr[1] "%d utenti correnti" +msgid "%s logged-in user" +msgid_plural "%s logged-in users" +msgstr[0] "%s utente corrente" +msgstr[1] "%s utenti correnti" #: app/Module/RelativesTabModule.php:62 #, php-format -msgid "%d month" -msgid_plural "%d months" -msgstr[0] "%d mese" -msgstr[1] "%d mesi" +msgid "%s month" +msgid_plural "%s months" +msgstr[0] "%s mese" +msgstr[1] "%s mesi" #: app/Module/RelativesTabModule.php:60 #, php-format -msgid "%d year" -msgid_plural "%d years" -msgstr[0] "%d anno" -msgstr[1] "%d anni" +msgid "%s year" +msgid_plural "%s years" +msgstr[0] "%s anno" +msgstr[1] "%s anni" #: includes/functions/functions.php:555 #, php-format msgctxt "FEMALE" -msgid "%d × cousin" -msgstr "cugina di %d° grado" +msgid "%s × cousin" +msgstr "cugina di %s° grado" #. I18N: Note that for Italian and Polish, “N’th cousins” are different from English “N’th cousins”, and the software has already generated the correct “N” for your language. You only need to translate - you do not need to convert. For other languages, if your cousin rules are different from English, please contact the developers. #: includes/functions/functions.php:520 #, php-format msgctxt "MALE" -msgid "%d × cousin" -msgstr "cugino di %d° grado" +msgid "%s × cousin" +msgstr "cugino di %s° grado" #: includes/functions/functions.php:590 #, php-format msgctxt "MALE/FEMALE" -msgid "%d × cousin" -msgstr "cugino/a di %d° grado" +msgid "%s × cousin" +msgstr "cugino/a di %s° grado" #. I18N: This is the format string for full dates. See http://php.net/date for codes #: app/Date.php:222 app/I18N.php:212 @@ -14305,8 +14305,8 @@ msgstr "Con questo server non è possibile scaricare tramite il protocollo sicur #: setup.php:183 #, php-format -msgid "This server’s memory limit is %d MB and its CPU time limit is %d seconds." -msgstr "Il limite di memoria del server è pari a %d MB e il limite dei tempi di calcolo è di %d secondi." +msgid "This server’s memory limit is %s MB and its CPU time limit is %s seconds." +msgstr "Il limite di memoria del server è pari a %s MB e il limite dei tempi di calcolo è di %s secondi." #. I18N: Help text for the “Other facts to show in charts” configuration setting #: admin_trees_config.php:1632 @@ -16981,146 +16981,146 @@ msgstr "moglie del nipote (di nonni)" #: includes/functions/functions.php:1639 includes/functions/functions.php:1654 #: includes/functions/functions.php:1667 #, php-format -msgid "great ×%d aunt" -msgstr "zia di %d° grado" +msgid "great ×%s aunt" +msgstr "zia di %s° grado" #: includes/functions/functions.php:1641 includes/functions/functions.php:1656 #: includes/functions/functions.php:1669 #, php-format -msgid "great ×%d aunt/uncle" -msgstr "zio/a di %d° grado" +msgid "great ×%s aunt/uncle" +msgstr "zio/a di %s° grado" #: includes/functions/functions.php:2042 includes/functions/functions.php:2057 #, php-format -msgid "great ×%d grandchild" -msgstr "pro × %d nipote (di nonni)" +msgid "great ×%s grandchild" +msgstr "pro × %s nipote (di nonni)" #: includes/functions/functions.php:2040 includes/functions/functions.php:2055 #, php-format -msgid "great ×%d granddaughter" -msgstr "pro × %d nipote (di nonni)" +msgid "great ×%s granddaughter" +msgstr "pro × %s nipote (di nonni)" -#. I18N: if you need a different number for %d, contact the developers, as a code-change is required +#. I18N: if you need a different number for %s, contact the developers, as a code-change is required #: includes/functions/functions.php:1912 includes/functions/functions.php:1922 #: includes/functions/functions.php:1932 includes/functions/functions.php:1942 #: includes/functions/functions.php:1954 #, php-format -msgid "great ×%d grandfather" -msgstr "avo del %d° grado" +msgid "great ×%s grandfather" +msgstr "avo del %s° grado" #: includes/functions/functions.php:1914 includes/functions/functions.php:1924 #: includes/functions/functions.php:1934 includes/functions/functions.php:1944 #: includes/functions/functions.php:1956 #, php-format -msgid "great ×%d grandmother" -msgstr "ava del %d° grado" +msgid "great ×%s grandmother" +msgstr "ava del %s° grado" #: includes/functions/functions.php:1916 includes/functions/functions.php:1926 #: includes/functions/functions.php:1936 includes/functions/functions.php:1946 #: includes/functions/functions.php:1958 #, php-format -msgid "great ×%d grandparent" -msgstr "avo del %d° grado" +msgid "great ×%s grandparent" +msgstr "avo del %s° grado" -#. I18N: if you need a different number for %d, contact the developers, as a code-change is required +#. I18N: if you need a different number for %s, contact the developers, as a code-change is required #: includes/functions/functions.php:2038 includes/functions/functions.php:2053 #, php-format -msgid "great ×%d grandson" -msgstr "pro × %d nipote (di nonni)" +msgid "great ×%s grandson" +msgstr "pro × %s nipote (di nonni)" -#. I18N: if you need a different number for %d, contact the developers, as a code-change is required +#. I18N: if you need a different number for %s, contact the developers, as a code-change is required #: includes/functions/functions.php:1823 includes/functions/functions.php:1836 #, php-format -msgid "great ×%d nephew" -msgstr "pro × %d nipote" +msgid "great ×%s nephew" +msgstr "pro × %s nipote" #: includes/functions/functions.php:1797 #, php-format -msgctxt "(a man’s) brother’s great ×(%d-1) grandson" -msgid "great ×%d nephew" -msgstr "pro ×%d pronipote (di zii)" +msgctxt "(a man’s) brother’s great ×(%s-1) grandson" +msgid "great ×%s nephew" +msgstr "pro ×%s pronipote (di zii)" #: includes/functions/functions.php:1799 #, php-format -msgctxt "(a man’s) sister’s great ×(%d-1) grandson" -msgid "great ×%d nephew" -msgstr "pro ×%d pronipote (di zii)" +msgctxt "(a man’s) sister’s great ×(%s-1) grandson" +msgid "great ×%s nephew" +msgstr "pro ×%s pronipote (di zii)" #: includes/functions/functions.php:1801 #, php-format -msgctxt "(a woman’s) great ×%d nephew" -msgid "great ×%d nephew" -msgstr "pro ×%d pronipote (di zii)" +msgctxt "(a woman’s) great ×%s nephew" +msgid "great ×%s nephew" +msgstr "pro ×%s pronipote (di zii)" #: includes/functions/functions.php:1827 includes/functions/functions.php:1840 #, php-format -msgid "great ×%d nephew/niece" -msgstr "pro × %d nipote" +msgid "great ×%s nephew/niece" +msgstr "pro × %s nipote" #: includes/functions/functions.php:1813 #, php-format -msgctxt "(a man’s) brother’s great ×(%d-1) grandchild" -msgid "great ×%d nephew/niece" -msgstr "pro ×%d pronipote (di zii)" +msgctxt "(a man’s) brother’s great ×(%s-1) grandchild" +msgid "great ×%s nephew/niece" +msgstr "pro ×%s pronipote (di zii)" #: includes/functions/functions.php:1815 #, php-format -msgctxt "(a man’s) sister’s great ×(%d-1) grandchild" -msgid "great ×%d nephew/niece" -msgstr "pro ×%d pronipote (di zii)" +msgctxt "(a man’s) sister’s great ×(%s-1) grandchild" +msgid "great ×%s nephew/niece" +msgstr "pro ×%s pronipote (di zii)" #: includes/functions/functions.php:1817 #, php-format -msgctxt "(a woman’s) great ×%d nephew/niece" -msgid "great ×%d nephew/niece" -msgstr "pro ×%d pronipote (di zii)" +msgctxt "(a woman’s) great ×%s nephew/niece" +msgid "great ×%s nephew/niece" +msgstr "pro ×%s pronipote (di zii)" #: includes/functions/functions.php:1825 includes/functions/functions.php:1838 #, php-format -msgid "great ×%d niece" -msgstr "pro × %d nipote" +msgid "great ×%s niece" +msgstr "pro × %s nipote" #: includes/functions/functions.php:1805 #, php-format -msgctxt "(a man’s) brother’s great ×(%d-1) granddaughter" -msgid "great ×%d niece" -msgstr "pro ×%d pronipote (di zii)" +msgctxt "(a man’s) brother’s great ×(%s-1) granddaughter" +msgid "great ×%s niece" +msgstr "pro ×%s pronipote (di zii)" #: includes/functions/functions.php:1807 #, php-format -msgctxt "(a man’s) sister’s great ×(%d-1) granddaughter" -msgid "great ×%d niece" -msgstr "pro ×%d pronipote (di zii)" +msgctxt "(a man’s) sister’s great ×(%s-1) granddaughter" +msgid "great ×%s niece" +msgstr "pro ×%s pronipote (di zii)" #: includes/functions/functions.php:1809 #, php-format -msgctxt "(a woman’s) great ×%d niece" -msgid "great ×%d niece" -msgstr "pro ×%d pronipote (di zii)" +msgctxt "(a woman’s) great ×%s niece" +msgid "great ×%s niece" +msgstr "pro ×%s pronipote (di zii)" -#. I18N: if you need a different number for %d, contact the developers, as a code-change is required +#. I18N: if you need a different number for %s, contact the developers, as a code-change is required #: includes/functions/functions.php:1637 includes/functions/functions.php:1665 #, php-format -msgid "great ×%d uncle" -msgstr "zio di %d° grado" +msgid "great ×%s uncle" +msgstr "zio di %s° grado" #: includes/functions/functions.php:1647 #, php-format -msgctxt "great ×(%d-1) grandfather’s brother" -msgid "great ×%d uncle" -msgstr "pro ×%d zio" +msgctxt "great ×(%s-1) grandfather’s brother" +msgid "great ×%s uncle" +msgstr "pro ×%s zio" #: includes/functions/functions.php:1649 #, php-format -msgctxt "great ×(%d-1) grandmother’s brother" -msgid "great ×%d uncle" -msgstr "pro ×%d zio" +msgctxt "great ×(%s-1) grandmother’s brother" +msgid "great ×%s uncle" +msgstr "pro ×%s zio" #: includes/functions/functions.php:1651 #, php-format -msgctxt "great ×(%d-1) grandparent’s brother" -msgid "great ×%d uncle" -msgstr "pro ×%d zio" +msgctxt "great ×(%s-1) grandparent’s brother" +msgid "great ×%s uncle" +msgstr "pro ×%s zio" #: includes/functions/functions.php:1579 msgid "great ×4 aunt" @@ -18570,10 +18570,10 @@ msgstr "massimo" #: app/Module/UpcomingAnniversariesModule.php:125 #: app/Module/YahrzeitModule.php:250 #, php-format -msgid "maximum %d day" -msgid_plural "maximum %d days" -msgstr[0] "massimo %d giorno" -msgstr[1] "massimo %d giorni" +msgid "maximum %s day" +msgid_plural "maximum %s days" +msgstr[0] "massimo %s giorno" +msgstr[1] "massimo %s giorni" #: admin_trees_config.php:404 admin_trees_config.php:428 #: admin_trees_config.php:468 admin_trees_config.php:508 @@ -20084,10 +20084,10 @@ msgstr "…" #~ msgid "No other link between the two individuals could be found." #~ msgstr "Nessun altro collegamento fra le due persone può essere trovato." -#~ msgid "Note: “living” is defined (if no death or burial is known) as ending %d year after birth or estimated birth." -#~ msgid_plural "Note: “living” is defined (if no death or burial is known) as ending %d years after birth or estimated birth." -#~ msgstr[0] "Nota: se la data di morte o seportura è sconosciuta, si assume che una persona sia «in vita» fino a %d anno dopo la data (esatta o stimata) di nascita." -#~ msgstr[1] "Nota: se la data di morte o seportura è sconosciuta, si assume che una persona sia «in vita» fino a %d anni dopo la data (esatta o stimata) di nascita." +#~ msgid "Note: “living” is defined (if no death or burial is known) as ending %s year after birth or estimated birth." +#~ msgid_plural "Note: “living” is defined (if no death or burial is known) as ending %s years after birth or estimated birth." +#~ msgstr[0] "Nota: se la data di morte o seportura è sconosciuta, si assume che una persona sia «in vita» fino a %s anno dopo la data (esatta o stimata) di nascita." +#~ msgstr[1] "Nota: se la data di morte o seportura è sconosciuta, si assume che una persona sia «in vita» fino a %s anni dopo la data (esatta o stimata) di nascita." #~ msgid "Notes are free-form text and will appear in the Fact Details section of the page." #~ msgstr "Le note sono campi di testo libero e verranno visualizzate sulla pagina nella sezione relativa ai dettagli del fatto." diff --git a/language/ja.po b/language/ja.po index ffa1996f67..ae73436dc5 100644 --- a/language/ja.po +++ b/language/ja.po @@ -184,45 +184,45 @@ msgstr "" #: app/Module/LoggedInUsersModule.php:51 app/Stats.php:5372 #, php-format -msgid "%d anonymous logged-in user" -msgid_plural "%d anonymous logged-in users" +msgid "%s anonymous logged-in user" +msgid_plural "%s anonymous logged-in users" msgstr[0] "" #: app/Module/LoggedInUsersModule.php:57 app/Stats.php:5382 #, php-format -msgid "%d logged-in user" -msgid_plural "%d logged-in users" +msgid "%s logged-in user" +msgid_plural "%s logged-in users" msgstr[0] "" #: app/Module/RelativesTabModule.php:62 #, php-format -msgid "%d month" -msgid_plural "%d months" +msgid "%s month" +msgid_plural "%s months" msgstr[0] "" #: app/Module/RelativesTabModule.php:60 #, php-format -msgid "%d year" -msgid_plural "%d years" +msgid "%s year" +msgid_plural "%s years" msgstr[0] "" #: includes/functions/functions.php:555 #, php-format msgctxt "FEMALE" -msgid "%d × cousin" +msgid "%s × cousin" msgstr "" #. I18N: Note that for Italian and Polish, “N’th cousins” are different from English “N’th cousins”, and the software has already generated the correct “N” for your language. You only need to translate - you do not need to convert. For other languages, if your cousin rules are different from English, please contact the developers. #: includes/functions/functions.php:520 #, php-format msgctxt "MALE" -msgid "%d × cousin" +msgid "%s × cousin" msgstr "" #: includes/functions/functions.php:590 #, php-format msgctxt "MALE/FEMALE" -msgid "%d × cousin" +msgid "%s × cousin" msgstr "" #. I18N: This is the format string for full dates. See http://php.net/date for codes @@ -14267,7 +14267,7 @@ msgstr "" #: setup.php:183 #, php-format -msgid "This server’s memory limit is %d MB and its CPU time limit is %d seconds." +msgid "This server’s memory limit is %s MB and its CPU time limit is %s seconds." msgstr "" #. I18N: Help text for the “Other facts to show in charts” configuration setting @@ -16939,145 +16939,145 @@ msgstr "" #: includes/functions/functions.php:1639 includes/functions/functions.php:1654 #: includes/functions/functions.php:1667 #, php-format -msgid "great ×%d aunt" +msgid "great ×%s aunt" msgstr "" #: includes/functions/functions.php:1641 includes/functions/functions.php:1656 #: includes/functions/functions.php:1669 #, php-format -msgid "great ×%d aunt/uncle" +msgid "great ×%s aunt/uncle" msgstr "" #: includes/functions/functions.php:2042 includes/functions/functions.php:2057 #, php-format -msgid "great ×%d grandchild" +msgid "great ×%s grandchild" msgstr "" #: includes/functions/functions.php:2040 includes/functions/functions.php:2055 #, php-format -msgid "great ×%d granddaughter" +msgid "great ×%s granddaughter" msgstr "" -#. I18N: if you need a different number for %d, contact the developers, as a code-change is required +#. I18N: if you need a different number for %s, contact the developers, as a code-change is required #: includes/functions/functions.php:1912 includes/functions/functions.php:1922 #: includes/functions/functions.php:1932 includes/functions/functions.php:1942 #: includes/functions/functions.php:1954 #, php-format -msgid "great ×%d grandfather" +msgid "great ×%s grandfather" msgstr "" #: includes/functions/functions.php:1914 includes/functions/functions.php:1924 #: includes/functions/functions.php:1934 includes/functions/functions.php:1944 #: includes/functions/functions.php:1956 #, php-format -msgid "great ×%d grandmother" +msgid "great ×%s grandmother" msgstr "" #: includes/functions/functions.php:1916 includes/functions/functions.php:1926 #: includes/functions/functions.php:1936 includes/functions/functions.php:1946 #: includes/functions/functions.php:1958 #, php-format -msgid "great ×%d grandparent" +msgid "great ×%s grandparent" msgstr "" -#. I18N: if you need a different number for %d, contact the developers, as a code-change is required +#. I18N: if you need a different number for %s, contact the developers, as a code-change is required #: includes/functions/functions.php:2038 includes/functions/functions.php:2053 #, php-format -msgid "great ×%d grandson" +msgid "great ×%s grandson" msgstr "" -#. I18N: if you need a different number for %d, contact the developers, as a code-change is required +#. I18N: if you need a different number for %s, contact the developers, as a code-change is required #: includes/functions/functions.php:1823 includes/functions/functions.php:1836 #, php-format -msgid "great ×%d nephew" +msgid "great ×%s nephew" msgstr "" #: includes/functions/functions.php:1797 #, php-format -msgctxt "(a man’s) brother’s great ×(%d-1) grandson" -msgid "great ×%d nephew" +msgctxt "(a man’s) brother’s great ×(%s-1) grandson" +msgid "great ×%s nephew" msgstr "" #: includes/functions/functions.php:1799 #, php-format -msgctxt "(a man’s) sister’s great ×(%d-1) grandson" -msgid "great ×%d nephew" +msgctxt "(a man’s) sister’s great ×(%s-1) grandson" +msgid "great ×%s nephew" msgstr "" #: includes/functions/functions.php:1801 #, php-format -msgctxt "(a woman’s) great ×%d nephew" -msgid "great ×%d nephew" +msgctxt "(a woman’s) great ×%s nephew" +msgid "great ×%s nephew" msgstr "" #: includes/functions/functions.php:1827 includes/functions/functions.php:1840 #, php-format -msgid "great ×%d nephew/niece" +msgid "great ×%s nephew/niece" msgstr "" #: includes/functions/functions.php:1813 #, php-format -msgctxt "(a man’s) brother’s great ×(%d-1) grandchild" -msgid "great ×%d nephew/niece" +msgctxt "(a man’s) brother’s great ×(%s-1) grandchild" +msgid "great ×%s nephew/niece" msgstr "" #: includes/functions/functions.php:1815 #, php-format -msgctxt "(a man’s) sister’s great ×(%d-1) grandchild" -msgid "great ×%d nephew/niece" +msgctxt "(a man’s) sister’s great ×(%s-1) grandchild" +msgid "great ×%s nephew/niece" msgstr "" #: includes/functions/functions.php:1817 #, php-format -msgctxt "(a woman’s) great ×%d nephew/niece" -msgid "great ×%d nephew/niece" +msgctxt "(a woman’s) great ×%s nephew/niece" +msgid "great ×%s nephew/niece" msgstr "" #: includes/functions/functions.php:1825 includes/functions/functions.php:1838 #, php-format -msgid "great ×%d niece" +msgid "great ×%s niece" msgstr "" #: includes/functions/functions.php:1805 #, php-format -msgctxt "(a man’s) brother’s great ×(%d-1) granddaughter" -msgid "great ×%d niece" +msgctxt "(a man’s) brother’s great ×(%s-1) granddaughter" +msgid "great ×%s niece" msgstr "" #: includes/functions/functions.php:1807 #, php-format -msgctxt "(a man’s) sister’s great ×(%d-1) granddaughter" -msgid "great ×%d niece" +msgctxt "(a man’s) sister’s great ×(%s-1) granddaughter" +msgid "great ×%s niece" msgstr "" #: includes/functions/functions.php:1809 #, php-format -msgctxt "(a woman’s) great ×%d niece" -msgid "great ×%d niece" +msgctxt "(a woman’s) great ×%s niece" +msgid "great ×%s niece" msgstr "" -#. I18N: if you need a different number for %d, contact the developers, as a code-change is required +#. I18N: if you need a different number for %s, contact the developers, as a code-change is required #: includes/functions/functions.php:1637 includes/functions/functions.php:1665 #, php-format -msgid "great ×%d uncle" +msgid "great ×%s uncle" msgstr "" #: includes/functions/functions.php:1647 #, php-format -msgctxt "great ×(%d-1) grandfather’s brother" -msgid "great ×%d uncle" +msgctxt "great ×(%s-1) grandfather’s brother" +msgid "great ×%s uncle" msgstr "" #: includes/functions/functions.php:1649 #, php-format -msgctxt "great ×(%d-1) grandmother’s brother" -msgid "great ×%d uncle" +msgctxt "great ×(%s-1) grandmother’s brother" +msgid "great ×%s uncle" msgstr "" #: includes/functions/functions.php:1651 #, php-format -msgctxt "great ×(%d-1) grandparent’s brother" -msgid "great ×%d uncle" +msgctxt "great ×(%s-1) grandparent’s brother" +msgid "great ×%s uncle" msgstr "" #: includes/functions/functions.php:1579 @@ -18527,9 +18527,9 @@ msgstr "最大" #: app/Module/UpcomingAnniversariesModule.php:125 #: app/Module/YahrzeitModule.php:250 #, php-format -msgid "maximum %d day" -msgid_plural "maximum %d days" -msgstr[0] "最大 %d 日" +msgid "maximum %s day" +msgid_plural "maximum %s days" +msgstr[0] "最大 %s 日" #: admin_trees_config.php:404 admin_trees_config.php:428 #: admin_trees_config.php:468 admin_trees_config.php:508 diff --git a/language/ka.po b/language/ka.po index ca914d59d0..58ab662cc6 100644 --- a/language/ka.po +++ b/language/ka.po @@ -182,46 +182,46 @@ msgstr "%g:%i:%s %a" #: app/Module/LoggedInUsersModule.php:51 app/Stats.php:5372 #, php-format -msgid "%d anonymous logged-in user" -msgid_plural "%d anonymous logged-in users" -msgstr[0] "%d ანონიმური მომხმარებელი" +msgid "%s anonymous logged-in user" +msgid_plural "%s anonymous logged-in users" +msgstr[0] "%s ანონიმური მომხმარებელი" #: app/Module/LoggedInUsersModule.php:57 app/Stats.php:5382 #, php-format -msgid "%d logged-in user" -msgid_plural "%d logged-in users" -msgstr[0] "%d დარეგისტრირებული იუზერი" +msgid "%s logged-in user" +msgid_plural "%s logged-in users" +msgstr[0] "%s დარეგისტრირებული იუზერი" #: app/Module/RelativesTabModule.php:62 #, php-format -msgid "%d month" -msgid_plural "%d months" -msgstr[0] "%d თვე" +msgid "%s month" +msgid_plural "%s months" +msgstr[0] "%s თვე" #: app/Module/RelativesTabModule.php:60 #, php-format -msgid "%d year" -msgid_plural "%d years" -msgstr[0] "%d წელი" +msgid "%s year" +msgid_plural "%s years" +msgstr[0] "%s წელი" #: includes/functions/functions.php:555 #, php-format msgctxt "FEMALE" -msgid "%d × cousin" -msgstr "(%d+1)-тиюродная сестра" +msgid "%s × cousin" +msgstr "(%s+1)-тиюродная сестра" #. I18N: Note that for Italian and Polish, “N’th cousins” are different from English “N’th cousins”, and the software has already generated the correct “N” for your language. You only need to translate - you do not need to convert. For other languages, if your cousin rules are different from English, please contact the developers. #: includes/functions/functions.php:520 #, php-format msgctxt "MALE" -msgid "%d × cousin" -msgstr "(%d+1)-тиюродная сестра" +msgid "%s × cousin" +msgstr "(%s+1)-тиюродная сестра" #: includes/functions/functions.php:590 #, php-format msgctxt "MALE/FEMALE" -msgid "%d × cousin" -msgstr "(%d+1)-тиюродная сестра" +msgid "%s × cousin" +msgstr "(%s+1)-тиюродная сестра" #. I18N: This is the format string for full dates. See http://php.net/date for codes #: app/Date.php:222 app/I18N.php:212 @@ -288,7 +288,7 @@ msgstr[0] "%s საათის წინ" #, php-format msgid "%s individual" msgid_plural "%s individuals" -msgstr[0] "%d პერსონა" +msgstr[0] "%s პერსონა" #: app/Module/GoogleMapsModule.php:907 #, php-format @@ -1245,7 +1245,7 @@ msgstr "ჩანაწერი კოპირებულია ბუფე #: modules_v3/GEDFact_assistant/_CENS/census_3_search_add.php:23 msgid "Add individuals" -msgstr "%d პერსონა" +msgstr "%s პერსონა" #: app/Module/ClippingsCartModule.php:84 #: app/Module/ClippingsCartModule.php:503 @@ -14265,8 +14265,8 @@ msgstr "" #: setup.php:183 #, php-format -msgid "This server’s memory limit is %d MB and its CPU time limit is %d seconds." -msgstr "Этот сервер имеет следующие качества:<br/> memory limit = %dMB (рабочая память для скриптов)<br/>CPU time limit = %d c. (максимальное время для исполнения скрипта)" +msgid "This server’s memory limit is %s MB and its CPU time limit is %s seconds." +msgstr "Этот сервер имеет следующие качества:<br/> memory limit = %sMB (рабочая память для скриптов)<br/>CPU time limit = %s c. (максимальное время для исполнения скрипта)" #. I18N: Help text for the “Other facts to show in charts” configuration setting #: admin_trees_config.php:1632 @@ -16937,145 +16937,145 @@ msgstr "რძალი (შვილიშვილის ცოლი)" #: includes/functions/functions.php:1639 includes/functions/functions.php:1654 #: includes/functions/functions.php:1667 #, php-format -msgid "great ×%d aunt" -msgstr "%dх დიდი ბაბუა" +msgid "great ×%s aunt" +msgstr "%sх დიდი ბაბუა" #: includes/functions/functions.php:1641 includes/functions/functions.php:1656 #: includes/functions/functions.php:1669 #, php-format -msgid "great ×%d aunt/uncle" +msgid "great ×%s aunt/uncle" msgstr "მამიდა/ბიძია მამის მხრიდან" #: includes/functions/functions.php:2042 includes/functions/functions.php:2057 #, php-format -msgid "great ×%d grandchild" +msgid "great ×%s grandchild" msgstr "пра-внук/внучка" #: includes/functions/functions.php:2040 includes/functions/functions.php:2055 #, php-format -msgid "great ×%d granddaughter" +msgid "great ×%s granddaughter" msgstr "пра(х7) внучка" -#. I18N: if you need a different number for %d, contact the developers, as a code-change is required +#. I18N: if you need a different number for %s, contact the developers, as a code-change is required #: includes/functions/functions.php:1912 includes/functions/functions.php:1922 #: includes/functions/functions.php:1932 includes/functions/functions.php:1942 #: includes/functions/functions.php:1954 #, php-format -msgid "great ×%d grandfather" -msgstr "%dх დიდი ბაბუა" +msgid "great ×%s grandfather" +msgstr "%sх დიდი ბაბუა" #: includes/functions/functions.php:1914 includes/functions/functions.php:1924 #: includes/functions/functions.php:1934 includes/functions/functions.php:1944 #: includes/functions/functions.php:1956 #, php-format -msgid "great ×%d grandmother" -msgstr "%dх დიდი ბებია" +msgid "great ×%s grandmother" +msgstr "%sх დიდი ბებია" #: includes/functions/functions.php:1916 includes/functions/functions.php:1926 #: includes/functions/functions.php:1936 includes/functions/functions.php:1946 #: includes/functions/functions.php:1958 #, php-format -msgid "great ×%d grandparent" +msgid "great ×%s grandparent" msgstr "пра(х7)-дед/бабушка" -#. I18N: if you need a different number for %d, contact the developers, as a code-change is required +#. I18N: if you need a different number for %s, contact the developers, as a code-change is required #: includes/functions/functions.php:2038 includes/functions/functions.php:2053 #, php-format -msgid "great ×%d grandson" +msgid "great ×%s grandson" msgstr "правнук" -#. I18N: if you need a different number for %d, contact the developers, as a code-change is required +#. I18N: if you need a different number for %s, contact the developers, as a code-change is required #: includes/functions/functions.php:1823 includes/functions/functions.php:1836 #, php-format -msgid "great ×%d nephew" -msgstr "%dх დიდი ბაბუა" +msgid "great ×%s nephew" +msgstr "%sх დიდი ბაბუა" #: includes/functions/functions.php:1797 #, php-format -msgctxt "(a man’s) brother’s great ×(%d-1) grandson" -msgid "great ×%d nephew" -msgstr "%dх დიდი ბაბუა" +msgctxt "(a man’s) brother’s great ×(%s-1) grandson" +msgid "great ×%s nephew" +msgstr "%sх დიდი ბაბუა" #: includes/functions/functions.php:1799 #, php-format -msgctxt "(a man’s) sister’s great ×(%d-1) grandson" -msgid "great ×%d nephew" -msgstr "%dх დიდი ბაბუა" +msgctxt "(a man’s) sister’s great ×(%s-1) grandson" +msgid "great ×%s nephew" +msgstr "%sх დიდი ბაბუა" #: includes/functions/functions.php:1801 #, php-format -msgctxt "(a woman’s) great ×%d nephew" -msgid "great ×%d nephew" -msgstr "%dх დიდი ბაბუა" +msgctxt "(a woman’s) great ×%s nephew" +msgid "great ×%s nephew" +msgstr "%sх დიდი ბაბუა" #: includes/functions/functions.php:1827 includes/functions/functions.php:1840 #, php-format -msgid "great ×%d nephew/niece" +msgid "great ×%s nephew/niece" msgstr "правнучатый племянник/племянница" #: includes/functions/functions.php:1813 #, php-format -msgctxt "(a man’s) brother’s great ×(%d-1) grandchild" -msgid "great ×%d nephew/niece" +msgctxt "(a man’s) brother’s great ×(%s-1) grandchild" +msgid "great ×%s nephew/niece" msgstr "правнучатый племянник/племянница" #: includes/functions/functions.php:1815 #, php-format -msgctxt "(a man’s) sister’s great ×(%d-1) grandchild" -msgid "great ×%d nephew/niece" +msgctxt "(a man’s) sister’s great ×(%s-1) grandchild" +msgid "great ×%s nephew/niece" msgstr "правнучатый племянник/племянница" #: includes/functions/functions.php:1817 #, php-format -msgctxt "(a woman’s) great ×%d nephew/niece" -msgid "great ×%d nephew/niece" +msgctxt "(a woman’s) great ×%s nephew/niece" +msgid "great ×%s nephew/niece" msgstr "правнучатый племянник/племянница" #: includes/functions/functions.php:1825 includes/functions/functions.php:1838 #, php-format -msgid "great ×%d niece" +msgid "great ×%s niece" msgstr "" #: includes/functions/functions.php:1805 #, php-format -msgctxt "(a man’s) brother’s great ×(%d-1) granddaughter" -msgid "great ×%d niece" +msgctxt "(a man’s) brother’s great ×(%s-1) granddaughter" +msgid "great ×%s niece" msgstr "" #: includes/functions/functions.php:1807 #, php-format -msgctxt "(a man’s) sister’s great ×(%d-1) granddaughter" -msgid "great ×%d niece" +msgctxt "(a man’s) sister’s great ×(%s-1) granddaughter" +msgid "great ×%s niece" msgstr "" #: includes/functions/functions.php:1809 #, php-format -msgctxt "(a woman’s) great ×%d niece" -msgid "great ×%d niece" +msgctxt "(a woman’s) great ×%s niece" +msgid "great ×%s niece" msgstr "" -#. I18N: if you need a different number for %d, contact the developers, as a code-change is required +#. I18N: if you need a different number for %s, contact the developers, as a code-change is required #: includes/functions/functions.php:1637 includes/functions/functions.php:1665 #, php-format -msgid "great ×%d uncle" +msgid "great ×%s uncle" msgstr "" #: includes/functions/functions.php:1647 #, php-format -msgctxt "great ×(%d-1) grandfather’s brother" -msgid "great ×%d uncle" +msgctxt "great ×(%s-1) grandfather’s brother" +msgid "great ×%s uncle" msgstr "" #: includes/functions/functions.php:1649 #, php-format -msgctxt "great ×(%d-1) grandmother’s brother" -msgid "great ×%d uncle" +msgctxt "great ×(%s-1) grandmother’s brother" +msgid "great ×%s uncle" msgstr "" #: includes/functions/functions.php:1651 #, php-format -msgctxt "great ×(%d-1) grandparent’s brother" -msgid "great ×%d uncle" +msgctxt "great ×(%s-1) grandparent’s brother" +msgid "great ×%s uncle" msgstr "" #: includes/functions/functions.php:1579 @@ -17096,11 +17096,11 @@ msgstr "пра(х7) внучка" #: includes/functions/functions.php:1870 msgid "great ×4 grandfather" -msgstr "%dх დიდი ბაბუა" +msgstr "%sх დიდი ბაბუა" #: includes/functions/functions.php:1872 msgid "great ×4 grandmother" -msgstr "%dх დიდი ბებია" +msgstr "%sх დიდი ბებია" #: includes/functions/functions.php:1874 msgid "great ×4 grandparent" @@ -17188,11 +17188,11 @@ msgstr "пра(х7) внучка" #: includes/functions/functions.php:1879 msgid "great ×5 grandfather" -msgstr "%dх დიდი ბაბუა" +msgstr "%sх დიდი ბაბუა" #: includes/functions/functions.php:1881 msgid "great ×5 grandmother" -msgstr "%dх დიდი ბებია" +msgstr "%sх დიდი ბებია" #: includes/functions/functions.php:1883 msgid "great ×5 grandparent" @@ -17280,11 +17280,11 @@ msgstr "пра(х7) внучка" #: includes/functions/functions.php:1888 msgid "great ×6 grandfather" -msgstr "%dх დიდი ბაბუა" +msgstr "%sх დიდი ბაბუა" #: includes/functions/functions.php:1890 msgid "great ×6 grandmother" -msgstr "%dх დიდი ბებია" +msgstr "%sх დიდი ბებია" #: includes/functions/functions.php:1892 msgid "great ×6 grandparent" @@ -17327,11 +17327,11 @@ msgstr "пра(х7) внучка" #: includes/functions/functions.php:1897 msgid "great ×7 grandfather" -msgstr "%dх დიდი ბაბუა" +msgstr "%sх დიდი ბაბუა" #: includes/functions/functions.php:1899 msgid "great ×7 grandmother" -msgstr "%dх დიდი ბებია" +msgstr "%sх დიდი ბებია" #: includes/functions/functions.php:1901 msgid "great ×7 grandparent" @@ -18525,9 +18525,9 @@ msgstr "მაქსიმუმი" #: app/Module/UpcomingAnniversariesModule.php:125 #: app/Module/YahrzeitModule.php:250 #, php-format -msgid "maximum %d day" -msgid_plural "maximum %d days" -msgstr[0] "მაქსიმალურად %d დღე" +msgid "maximum %s day" +msgid_plural "maximum %s days" +msgstr[0] "მაქსიმალურად %s დღე" #: admin_trees_config.php:404 admin_trees_config.php:428 #: admin_trees_config.php:468 admin_trees_config.php:508 @@ -19184,18 +19184,18 @@ msgstr "" #: includes/functions/functions.php:535 msgctxt "FEMALE" msgid "sixth cousin" -msgstr "(%d+1)-тиюродная сестра" +msgstr "(%s+1)-тиюродная сестра" #. I18N: Note that for Italian and Polish, “N’th cousins” are different from English “N’th cousins”, and the software has already generated the correct “N” for your language. You only need to translate - you do not need to convert. For other languages, if your cousin rules are different from English, please contact the developers. #: includes/functions/functions.php:490 msgctxt "MALE" msgid "sixth cousin" -msgstr "(%d+1)-тиюродная сестра" +msgstr "(%s+1)-тиюродная сестра" #: includes/functions/functions.php:570 msgctxt "MALE/FEMALE" msgid "sixth cousin" -msgstr "(%d+1)-тиюродная сестра" +msgstr "(%s+1)-тиюродная сестра" #: app/Module/GoogleMapsModule.php:2041 app/Module/GoogleMapsModule.php:2071 #: edit_interface.php:2039 includes/functions/functions.php:747 @@ -19744,7 +19744,7 @@ msgstr "უმცროსი და" #, php-format msgid "±%s year" msgid_plural "±%s years" -msgstr[0] "%d წელი" +msgstr[0] "%s წელი" #. I18N: Place a nickname in quotation marks #: app/Individual.php:1197 app/Individual.php:1215 @@ -19968,9 +19968,9 @@ msgstr "" #~ msgid "No contact method" #~ msgstr "არ მსურს შეტყობინებების მიღება" -#~ msgid "Note: “living” is defined (if no death or burial is known) as ending %d year after birth or estimated birth." -#~ msgid_plural "Note: “living” is defined (if no death or burial is known) as ending %d years after birth or estimated birth." -#~ msgstr[0] "Примечание: \"живой\" определяется (если факт о смерти или захоронения не известен), после %d года после рождения или примерного рождения." +#~ msgid "Note: “living” is defined (if no death or burial is known) as ending %s year after birth or estimated birth." +#~ msgid_plural "Note: “living” is defined (if no death or burial is known) as ending %s years after birth or estimated birth." +#~ msgstr[0] "Примечание: \"живой\" определяется (если факт о смерти или захоронения не известен), после %s года после рождения или примерного рождения." #~ msgid "Notes are free-form text and will appear in the Fact Details section of the page." #~ msgstr "Примечание - это текст в свободном стиле, который будет отображаться в подробностях факта." diff --git a/language/ko.po b/language/ko.po index 7ac97f8ed0..0ae39b7c41 100644 --- a/language/ko.po +++ b/language/ko.po @@ -184,45 +184,45 @@ msgstr "" #: app/Module/LoggedInUsersModule.php:51 app/Stats.php:5372 #, php-format -msgid "%d anonymous logged-in user" -msgid_plural "%d anonymous logged-in users" +msgid "%s anonymous logged-in user" +msgid_plural "%s anonymous logged-in users" msgstr[0] "" #: app/Module/LoggedInUsersModule.php:57 app/Stats.php:5382 #, php-format -msgid "%d logged-in user" -msgid_plural "%d logged-in users" +msgid "%s logged-in user" +msgid_plural "%s logged-in users" msgstr[0] "" #: app/Module/RelativesTabModule.php:62 #, php-format -msgid "%d month" -msgid_plural "%d months" +msgid "%s month" +msgid_plural "%s months" msgstr[0] "" #: app/Module/RelativesTabModule.php:60 #, php-format -msgid "%d year" -msgid_plural "%d years" +msgid "%s year" +msgid_plural "%s years" msgstr[0] "" #: includes/functions/functions.php:555 #, php-format msgctxt "FEMALE" -msgid "%d × cousin" +msgid "%s × cousin" msgstr "" #. I18N: Note that for Italian and Polish, “N’th cousins” are different from English “N’th cousins”, and the software has already generated the correct “N” for your language. You only need to translate - you do not need to convert. For other languages, if your cousin rules are different from English, please contact the developers. #: includes/functions/functions.php:520 #, php-format msgctxt "MALE" -msgid "%d × cousin" +msgid "%s × cousin" msgstr "" #: includes/functions/functions.php:590 #, php-format msgctxt "MALE/FEMALE" -msgid "%d × cousin" +msgid "%s × cousin" msgstr "" #. I18N: This is the format string for full dates. See http://php.net/date for codes @@ -14267,7 +14267,7 @@ msgstr "" #: setup.php:183 #, php-format -msgid "This server’s memory limit is %d MB and its CPU time limit is %d seconds." +msgid "This server’s memory limit is %s MB and its CPU time limit is %s seconds." msgstr "" #. I18N: Help text for the “Other facts to show in charts” configuration setting @@ -16939,145 +16939,145 @@ msgstr "" #: includes/functions/functions.php:1639 includes/functions/functions.php:1654 #: includes/functions/functions.php:1667 #, php-format -msgid "great ×%d aunt" +msgid "great ×%s aunt" msgstr "" #: includes/functions/functions.php:1641 includes/functions/functions.php:1656 #: includes/functions/functions.php:1669 #, php-format -msgid "great ×%d aunt/uncle" +msgid "great ×%s aunt/uncle" msgstr "" #: includes/functions/functions.php:2042 includes/functions/functions.php:2057 #, php-format -msgid "great ×%d grandchild" +msgid "great ×%s grandchild" msgstr "" #: includes/functions/functions.php:2040 includes/functions/functions.php:2055 #, php-format -msgid "great ×%d granddaughter" +msgid "great ×%s granddaughter" msgstr "" -#. I18N: if you need a different number for %d, contact the developers, as a code-change is required +#. I18N: if you need a different number for %s, contact the developers, as a code-change is required #: includes/functions/functions.php:1912 includes/functions/functions.php:1922 #: includes/functions/functions.php:1932 includes/functions/functions.php:1942 #: includes/functions/functions.php:1954 #, php-format -msgid "great ×%d grandfather" +msgid "great ×%s grandfather" msgstr "" #: includes/functions/functions.php:1914 includes/functions/functions.php:1924 #: includes/functions/functions.php:1934 includes/functions/functions.php:1944 #: includes/functions/functions.php:1956 #, php-format -msgid "great ×%d grandmother" +msgid "great ×%s grandmother" msgstr "" #: includes/functions/functions.php:1916 includes/functions/functions.php:1926 #: includes/functions/functions.php:1936 includes/functions/functions.php:1946 #: includes/functions/functions.php:1958 #, php-format -msgid "great ×%d grandparent" +msgid "great ×%s grandparent" msgstr "" -#. I18N: if you need a different number for %d, contact the developers, as a code-change is required +#. I18N: if you need a different number for %s, contact the developers, as a code-change is required #: includes/functions/functions.php:2038 includes/functions/functions.php:2053 #, php-format -msgid "great ×%d grandson" +msgid "great ×%s grandson" msgstr "" -#. I18N: if you need a different number for %d, contact the developers, as a code-change is required +#. I18N: if you need a different number for %s, contact the developers, as a code-change is required #: includes/functions/functions.php:1823 includes/functions/functions.php:1836 #, php-format -msgid "great ×%d nephew" +msgid "great ×%s nephew" msgstr "" #: includes/functions/functions.php:1797 #, php-format -msgctxt "(a man’s) brother’s great ×(%d-1) grandson" -msgid "great ×%d nephew" +msgctxt "(a man’s) brother’s great ×(%s-1) grandson" +msgid "great ×%s nephew" msgstr "" #: includes/functions/functions.php:1799 #, php-format -msgctxt "(a man’s) sister’s great ×(%d-1) grandson" -msgid "great ×%d nephew" +msgctxt "(a man’s) sister’s great ×(%s-1) grandson" +msgid "great ×%s nephew" msgstr "" #: includes/functions/functions.php:1801 #, php-format -msgctxt "(a woman’s) great ×%d nephew" -msgid "great ×%d nephew" +msgctxt "(a woman’s) great ×%s nephew" +msgid "great ×%s nephew" msgstr "" #: includes/functions/functions.php:1827 includes/functions/functions.php:1840 #, php-format -msgid "great ×%d nephew/niece" +msgid "great ×%s nephew/niece" msgstr "" #: includes/functions/functions.php:1813 #, php-format -msgctxt "(a man’s) brother’s great ×(%d-1) grandchild" -msgid "great ×%d nephew/niece" +msgctxt "(a man’s) brother’s great ×(%s-1) grandchild" +msgid "great ×%s nephew/niece" msgstr "" #: includes/functions/functions.php:1815 #, php-format -msgctxt "(a man’s) sister’s great ×(%d-1) grandchild" -msgid "great ×%d nephew/niece" +msgctxt "(a man’s) sister’s great ×(%s-1) grandchild" +msgid "great ×%s nephew/niece" msgstr "" #: includes/functions/functions.php:1817 #, php-format -msgctxt "(a woman’s) great ×%d nephew/niece" -msgid "great ×%d nephew/niece" +msgctxt "(a woman’s) great ×%s nephew/niece" +msgid "great ×%s nephew/niece" msgstr "" #: includes/functions/functions.php:1825 includes/functions/functions.php:1838 #, php-format -msgid "great ×%d niece" +msgid "great ×%s niece" msgstr "" #: includes/functions/functions.php:1805 #, php-format -msgctxt "(a man’s) brother’s great ×(%d-1) granddaughter" -msgid "great ×%d niece" +msgctxt "(a man’s) brother’s great ×(%s-1) granddaughter" +msgid "great ×%s niece" msgstr "" #: includes/functions/functions.php:1807 #, php-format -msgctxt "(a man’s) sister’s great ×(%d-1) granddaughter" -msgid "great ×%d niece" +msgctxt "(a man’s) sister’s great ×(%s-1) granddaughter" +msgid "great ×%s niece" msgstr "" #: includes/functions/functions.php:1809 #, php-format -msgctxt "(a woman’s) great ×%d niece" -msgid "great ×%d niece" +msgctxt "(a woman’s) great ×%s niece" +msgid "great ×%s niece" msgstr "" -#. I18N: if you need a different number for %d, contact the developers, as a code-change is required +#. I18N: if you need a different number for %s, contact the developers, as a code-change is required #: includes/functions/functions.php:1637 includes/functions/functions.php:1665 #, php-format -msgid "great ×%d uncle" +msgid "great ×%s uncle" msgstr "" #: includes/functions/functions.php:1647 #, php-format -msgctxt "great ×(%d-1) grandfather’s brother" -msgid "great ×%d uncle" +msgctxt "great ×(%s-1) grandfather’s brother" +msgid "great ×%s uncle" msgstr "" #: includes/functions/functions.php:1649 #, php-format -msgctxt "great ×(%d-1) grandmother’s brother" -msgid "great ×%d uncle" +msgctxt "great ×(%s-1) grandmother’s brother" +msgid "great ×%s uncle" msgstr "" #: includes/functions/functions.php:1651 #, php-format -msgctxt "great ×(%d-1) grandparent’s brother" -msgid "great ×%d uncle" +msgctxt "great ×(%s-1) grandparent’s brother" +msgid "great ×%s uncle" msgstr "" #: includes/functions/functions.php:1579 @@ -18527,8 +18527,8 @@ msgstr "" #: app/Module/UpcomingAnniversariesModule.php:125 #: app/Module/YahrzeitModule.php:250 #, php-format -msgid "maximum %d day" -msgid_plural "maximum %d days" +msgid "maximum %s day" +msgid_plural "maximum %s days" msgstr[0] "" #: admin_trees_config.php:404 admin_trees_config.php:428 diff --git a/language/lt.po b/language/lt.po index 732836fc1a..cf0611c9e6 100644 --- a/language/lt.po +++ b/language/lt.po @@ -196,54 +196,54 @@ msgstr "%H:%i:%s" #: app/Module/LoggedInUsersModule.php:51 app/Stats.php:5372 #, php-format -msgid "%d anonymous logged-in user" -msgid_plural "%d anonymous logged-in users" -msgstr[0] "%d anonimiškai prisijungęs naudotojas" -msgstr[1] "%d anonimiškai prisijungę naudotojai" -msgstr[2] "%d anonimiškai prisijungusių naudotojojų" +msgid "%s anonymous logged-in user" +msgid_plural "%s anonymous logged-in users" +msgstr[0] "%s anonimiškai prisijungęs naudotojas" +msgstr[1] "%s anonimiškai prisijungę naudotojai" +msgstr[2] "%s anonimiškai prisijungusių naudotojojų" #: app/Module/LoggedInUsersModule.php:57 app/Stats.php:5382 #, php-format -msgid "%d logged-in user" -msgid_plural "%d logged-in users" -msgstr[0] "%d prisijungęs naudotojas" -msgstr[1] "%d prisijungę naudotojai" -msgstr[2] "%d prisijungusių naudotojų" +msgid "%s logged-in user" +msgid_plural "%s logged-in users" +msgstr[0] "%s prisijungęs naudotojas" +msgstr[1] "%s prisijungę naudotojai" +msgstr[2] "%s prisijungusių naudotojų" #: app/Module/RelativesTabModule.php:62 #, php-format -msgid "%d month" -msgid_plural "%d months" -msgstr[0] "%d mėnesis" -msgstr[1] "%d mėnesiai" -msgstr[2] "%d mėnesių" +msgid "%s month" +msgid_plural "%s months" +msgstr[0] "%s mėnesis" +msgstr[1] "%s mėnesiai" +msgstr[2] "%s mėnesių" #: app/Module/RelativesTabModule.php:60 #, php-format -msgid "%d year" -msgid_plural "%d years" -msgstr[0] "%d metai" -msgstr[1] "%d metai" -msgstr[2] "%d metų" +msgid "%s year" +msgid_plural "%s years" +msgstr[0] "%s metai" +msgstr[1] "%s metai" +msgstr[2] "%s metų" #: includes/functions/functions.php:555 #, php-format msgctxt "FEMALE" -msgid "%d × cousin" -msgstr "%d × pusseserė" +msgid "%s × cousin" +msgstr "%s × pusseserė" #. I18N: Note that for Italian and Polish, “N’th cousins” are different from English “N’th cousins”, and the software has already generated the correct “N” for your language. You only need to translate - you do not need to convert. For other languages, if your cousin rules are different from English, please contact the developers. #: includes/functions/functions.php:520 #, php-format msgctxt "MALE" -msgid "%d × cousin" -msgstr "%d × pusbrolis" +msgid "%s × cousin" +msgstr "%s × pusbrolis" #: includes/functions/functions.php:590 #, php-format msgctxt "MALE/FEMALE" -msgid "%d × cousin" -msgstr "%d × pusbrolis/pusseserė" +msgid "%s × cousin" +msgstr "%s × pusbrolis/pusseserė" #. I18N: This is the format string for full dates. See http://php.net/date for codes #: app/Date.php:222 app/I18N.php:212 @@ -14357,8 +14357,8 @@ msgstr "Šis serveris nepalaiko saugaus parsisiuntimo naudojant HTTPS." #: setup.php:183 #, php-format -msgid "This server’s memory limit is %d MB and its CPU time limit is %d seconds." -msgstr "Šio serverio atminties riba yra %dMB ir CPU laiko limitas yra %d sekundžių." +msgid "This server’s memory limit is %s MB and its CPU time limit is %s seconds." +msgstr "Šio serverio atminties riba yra %sMB ir CPU laiko limitas yra %s sekundžių." #. I18N: Help text for the “Other facts to show in charts” configuration setting #: admin_trees_config.php:1632 @@ -17037,146 +17037,146 @@ msgstr "anūko žmona" #: includes/functions/functions.php:1639 includes/functions/functions.php:1654 #: includes/functions/functions.php:1667 #, php-format -msgid "great ×%d aunt" -msgstr "pro ×%d teta" +msgid "great ×%s aunt" +msgstr "pro ×%s teta" #: includes/functions/functions.php:1641 includes/functions/functions.php:1656 #: includes/functions/functions.php:1669 #, php-format -msgid "great ×%d aunt/uncle" -msgstr "pro ×%d dėdė/teta" +msgid "great ×%s aunt/uncle" +msgstr "pro ×%s dėdė/teta" #: includes/functions/functions.php:2042 includes/functions/functions.php:2057 #, php-format -msgid "great ×%d grandchild" -msgstr "pro ×%d anūkiai" +msgid "great ×%s grandchild" +msgstr "pro ×%s anūkiai" #: includes/functions/functions.php:2040 includes/functions/functions.php:2055 #, php-format -msgid "great ×%d granddaughter" -msgstr "pro ×%d anūkė" +msgid "great ×%s granddaughter" +msgstr "pro ×%s anūkė" -#. I18N: if you need a different number for %d, contact the developers, as a code-change is required +#. I18N: if you need a different number for %s, contact the developers, as a code-change is required #: includes/functions/functions.php:1912 includes/functions/functions.php:1922 #: includes/functions/functions.php:1932 includes/functions/functions.php:1942 #: includes/functions/functions.php:1954 #, php-format -msgid "great ×%d grandfather" -msgstr "pro ×%d senelis" +msgid "great ×%s grandfather" +msgstr "pro ×%s senelis" #: includes/functions/functions.php:1914 includes/functions/functions.php:1924 #: includes/functions/functions.php:1934 includes/functions/functions.php:1944 #: includes/functions/functions.php:1956 #, php-format -msgid "great ×%d grandmother" -msgstr "pro ×%d senelė" +msgid "great ×%s grandmother" +msgstr "pro ×%s senelė" #: includes/functions/functions.php:1916 includes/functions/functions.php:1926 #: includes/functions/functions.php:1936 includes/functions/functions.php:1946 #: includes/functions/functions.php:1958 #, php-format -msgid "great ×%d grandparent" -msgstr "pro ×%d seneliai" +msgid "great ×%s grandparent" +msgstr "pro ×%s seneliai" -#. I18N: if you need a different number for %d, contact the developers, as a code-change is required +#. I18N: if you need a different number for %s, contact the developers, as a code-change is required #: includes/functions/functions.php:2038 includes/functions/functions.php:2053 #, php-format -msgid "great ×%d grandson" -msgstr "pro ×%d anūkis" +msgid "great ×%s grandson" +msgstr "pro ×%s anūkis" -#. I18N: if you need a different number for %d, contact the developers, as a code-change is required +#. I18N: if you need a different number for %s, contact the developers, as a code-change is required #: includes/functions/functions.php:1823 includes/functions/functions.php:1836 #, php-format -msgid "great ×%d nephew" -msgstr "pro ×%d sūnėnas" +msgid "great ×%s nephew" +msgstr "pro ×%s sūnėnas" #: includes/functions/functions.php:1797 #, php-format -msgctxt "(a man’s) brother’s great ×(%d-1) grandson" -msgid "great ×%d nephew" -msgstr "pro ×%d brolėnas" +msgctxt "(a man’s) brother’s great ×(%s-1) grandson" +msgid "great ×%s nephew" +msgstr "pro ×%s brolėnas" #: includes/functions/functions.php:1799 #, php-format -msgctxt "(a man’s) sister’s great ×(%d-1) grandson" -msgid "great ×%d nephew" -msgstr "pro ×%d seserėnas" +msgctxt "(a man’s) sister’s great ×(%s-1) grandson" +msgid "great ×%s nephew" +msgstr "pro ×%s seserėnas" #: includes/functions/functions.php:1801 #, php-format -msgctxt "(a woman’s) great ×%d nephew" -msgid "great ×%d nephew" -msgstr "pro ×%d sūnėnas" +msgctxt "(a woman’s) great ×%s nephew" +msgid "great ×%s nephew" +msgstr "pro ×%s sūnėnas" #: includes/functions/functions.php:1827 includes/functions/functions.php:1840 #, php-format -msgid "great ×%d nephew/niece" -msgstr "pro ×%d sūnėnas/dukterėčia" +msgid "great ×%s nephew/niece" +msgstr "pro ×%s sūnėnas/dukterėčia" #: includes/functions/functions.php:1813 #, php-format -msgctxt "(a man’s) brother’s great ×(%d-1) grandchild" -msgid "great ×%d nephew/niece" -msgstr "pro ×%d brolėnas/dukterėčia" +msgctxt "(a man’s) brother’s great ×(%s-1) grandchild" +msgid "great ×%s nephew/niece" +msgstr "pro ×%s brolėnas/dukterėčia" #: includes/functions/functions.php:1815 #, php-format -msgctxt "(a man’s) sister’s great ×(%d-1) grandchild" -msgid "great ×%d nephew/niece" -msgstr "pro ×%d seserėnas/seserėčia" +msgctxt "(a man’s) sister’s great ×(%s-1) grandchild" +msgid "great ×%s nephew/niece" +msgstr "pro ×%s seserėnas/seserėčia" #: includes/functions/functions.php:1817 #, php-format -msgctxt "(a woman’s) great ×%d nephew/niece" -msgid "great ×%d nephew/niece" -msgstr "pro ×%d sūnėnas/dukterėčia" +msgctxt "(a woman’s) great ×%s nephew/niece" +msgid "great ×%s nephew/niece" +msgstr "pro ×%s sūnėnas/dukterėčia" #: includes/functions/functions.php:1825 includes/functions/functions.php:1838 #, php-format -msgid "great ×%d niece" -msgstr "pro ×%d dukterėčia" +msgid "great ×%s niece" +msgstr "pro ×%s dukterėčia" #: includes/functions/functions.php:1805 #, php-format -msgctxt "(a man’s) brother’s great ×(%d-1) granddaughter" -msgid "great ×%d niece" -msgstr "pro ×%d dukterėčia" +msgctxt "(a man’s) brother’s great ×(%s-1) granddaughter" +msgid "great ×%s niece" +msgstr "pro ×%s dukterėčia" #: includes/functions/functions.php:1807 #, php-format -msgctxt "(a man’s) sister’s great ×(%d-1) granddaughter" -msgid "great ×%d niece" -msgstr "pro ×%d seserėčia" +msgctxt "(a man’s) sister’s great ×(%s-1) granddaughter" +msgid "great ×%s niece" +msgstr "pro ×%s seserėčia" #: includes/functions/functions.php:1809 #, php-format -msgctxt "(a woman’s) great ×%d niece" -msgid "great ×%d niece" -msgstr "pro ×%d dukterėčia" +msgctxt "(a woman’s) great ×%s niece" +msgid "great ×%s niece" +msgstr "pro ×%s dukterėčia" -#. I18N: if you need a different number for %d, contact the developers, as a code-change is required +#. I18N: if you need a different number for %s, contact the developers, as a code-change is required #: includes/functions/functions.php:1637 includes/functions/functions.php:1665 #, php-format -msgid "great ×%d uncle" -msgstr "pro ×%d dėdė" +msgid "great ×%s uncle" +msgstr "pro ×%s dėdė" #: includes/functions/functions.php:1647 #, php-format -msgctxt "great ×(%d-1) grandfather’s brother" -msgid "great ×%d uncle" -msgstr "pro ×%d dėdė" +msgctxt "great ×(%s-1) grandfather’s brother" +msgid "great ×%s uncle" +msgstr "pro ×%s dėdė" #: includes/functions/functions.php:1649 #, php-format -msgctxt "great ×(%d-1) grandmother’s brother" -msgid "great ×%d uncle" -msgstr "pro ×%d dėdė" +msgctxt "great ×(%s-1) grandmother’s brother" +msgid "great ×%s uncle" +msgstr "pro ×%s dėdė" #: includes/functions/functions.php:1651 #, php-format -msgctxt "great ×(%d-1) grandparent’s brother" -msgid "great ×%d uncle" -msgstr "pro ×%d dėdė" +msgctxt "great ×(%s-1) grandparent’s brother" +msgid "great ×%s uncle" +msgstr "pro ×%s dėdė" #: includes/functions/functions.php:1579 msgid "great ×4 aunt" @@ -18627,11 +18627,11 @@ msgstr "didžiausias" #: app/Module/UpcomingAnniversariesModule.php:125 #: app/Module/YahrzeitModule.php:250 #, php-format -msgid "maximum %d day" -msgid_plural "maximum %d days" -msgstr[0] "maximum %d dieną" -msgstr[1] "maximum %d dienos" -msgstr[2] "maximum %d dienų" +msgid "maximum %s day" +msgid_plural "maximum %s days" +msgstr[0] "maximum %s dieną" +msgstr[1] "maximum %s dienos" +msgstr[2] "maximum %s dienų" #: admin_trees_config.php:404 admin_trees_config.php:428 #: admin_trees_config.php:468 admin_trees_config.php:508 @@ -20113,11 +20113,11 @@ msgstr "…" #~ msgid "No other link between the two individuals could be found." #~ msgstr "Jokio kito ryšio tarp dviejų asmenų nenustatyta." -#~ msgid "Note: “living” is defined (if no death or burial is known) as ending %d year after birth or estimated birth." -#~ msgid_plural "Note: “living” is defined (if no death or burial is known) as ending %d years after birth or estimated birth." -#~ msgstr[0] "Pastaba: „gyvenantis“ yra nustatytas jei jaunesnis nei %d metai nuo gimimo datos arba apskaičiuotos gimimo datos, jeigu nėra įrašyta mirtis ar laidotuvės " -#~ msgstr[1] "Pastaba: „gyvenantis“ yra nustatytas jei jaunesnis nei %d metai nuo gimimo datos arba apskaičiuotos gimimo datos, jeigu nėra įrašyta mirtis ar laidotuvės " -#~ msgstr[2] "Pastaba: „gyvenantis“ yra nustatytas jei jaunesnis nei %d metų nuo gimimo datos arba apskaičiuotos gimimo datos, jeigu nėra įrašyta mirtis ar laidotuvės " +#~ msgid "Note: “living” is defined (if no death or burial is known) as ending %s year after birth or estimated birth." +#~ msgid_plural "Note: “living” is defined (if no death or burial is known) as ending %s years after birth or estimated birth." +#~ msgstr[0] "Pastaba: „gyvenantis“ yra nustatytas jei jaunesnis nei %s metai nuo gimimo datos arba apskaičiuotos gimimo datos, jeigu nėra įrašyta mirtis ar laidotuvės " +#~ msgstr[1] "Pastaba: „gyvenantis“ yra nustatytas jei jaunesnis nei %s metai nuo gimimo datos arba apskaičiuotos gimimo datos, jeigu nėra įrašyta mirtis ar laidotuvės " +#~ msgstr[2] "Pastaba: „gyvenantis“ yra nustatytas jei jaunesnis nei %s metų nuo gimimo datos arba apskaičiuotos gimimo datos, jeigu nėra įrašyta mirtis ar laidotuvės " #~ msgid "Notes are free-form text and will appear in the Fact Details section of the page." #~ msgstr "Pastabos yra laisvos formos tekstas kuris rodomas Faktų išsami informacija puslapio skiltyje." diff --git a/language/lv.po b/language/lv.po index 34cc6c3a32..e4d0aa345e 100644 --- a/language/lv.po +++ b/language/lv.po @@ -190,32 +190,32 @@ msgstr "" #: app/Module/LoggedInUsersModule.php:51 app/Stats.php:5372 #, php-format -msgid "%d anonymous logged-in user" -msgid_plural "%d anonymous logged-in users" +msgid "%s anonymous logged-in user" +msgid_plural "%s anonymous logged-in users" msgstr[0] "" msgstr[1] "" msgstr[2] "" #: app/Module/LoggedInUsersModule.php:57 app/Stats.php:5382 #, php-format -msgid "%d logged-in user" -msgid_plural "%d logged-in users" +msgid "%s logged-in user" +msgid_plural "%s logged-in users" msgstr[0] "" msgstr[1] "" msgstr[2] "" #: app/Module/RelativesTabModule.php:62 #, php-format -msgid "%d month" -msgid_plural "%d months" +msgid "%s month" +msgid_plural "%s months" msgstr[0] "" msgstr[1] "" msgstr[2] "" #: app/Module/RelativesTabModule.php:60 #, php-format -msgid "%d year" -msgid_plural "%d years" +msgid "%s year" +msgid_plural "%s years" msgstr[0] "" msgstr[1] "" msgstr[2] "" @@ -223,20 +223,20 @@ msgstr[2] "" #: includes/functions/functions.php:555 #, php-format msgctxt "FEMALE" -msgid "%d × cousin" +msgid "%s × cousin" msgstr "" #. I18N: Note that for Italian and Polish, “N’th cousins” are different from English “N’th cousins”, and the software has already generated the correct “N” for your language. You only need to translate - you do not need to convert. For other languages, if your cousin rules are different from English, please contact the developers. #: includes/functions/functions.php:520 #, php-format msgctxt "MALE" -msgid "%d × cousin" +msgid "%s × cousin" msgstr "" #: includes/functions/functions.php:590 #, php-format msgctxt "MALE/FEMALE" -msgid "%d × cousin" +msgid "%s × cousin" msgstr "" #. I18N: This is the format string for full dates. See http://php.net/date for codes @@ -14333,7 +14333,7 @@ msgstr "" #: setup.php:183 #, php-format -msgid "This server’s memory limit is %d MB and its CPU time limit is %d seconds." +msgid "This server’s memory limit is %s MB and its CPU time limit is %s seconds." msgstr "" #. I18N: Help text for the “Other facts to show in charts” configuration setting @@ -17013,145 +17013,145 @@ msgstr "" #: includes/functions/functions.php:1639 includes/functions/functions.php:1654 #: includes/functions/functions.php:1667 #, php-format -msgid "great ×%d aunt" +msgid "great ×%s aunt" msgstr "" #: includes/functions/functions.php:1641 includes/functions/functions.php:1656 #: includes/functions/functions.php:1669 #, php-format -msgid "great ×%d aunt/uncle" +msgid "great ×%s aunt/uncle" msgstr "" #: includes/functions/functions.php:2042 includes/functions/functions.php:2057 #, php-format -msgid "great ×%d grandchild" +msgid "great ×%s grandchild" msgstr "" #: includes/functions/functions.php:2040 includes/functions/functions.php:2055 #, php-format -msgid "great ×%d granddaughter" +msgid "great ×%s granddaughter" msgstr "" -#. I18N: if you need a different number for %d, contact the developers, as a code-change is required +#. I18N: if you need a different number for %s, contact the developers, as a code-change is required #: includes/functions/functions.php:1912 includes/functions/functions.php:1922 #: includes/functions/functions.php:1932 includes/functions/functions.php:1942 #: includes/functions/functions.php:1954 #, php-format -msgid "great ×%d grandfather" +msgid "great ×%s grandfather" msgstr "" #: includes/functions/functions.php:1914 includes/functions/functions.php:1924 #: includes/functions/functions.php:1934 includes/functions/functions.php:1944 #: includes/functions/functions.php:1956 #, php-format -msgid "great ×%d grandmother" +msgid "great ×%s grandmother" msgstr "" #: includes/functions/functions.php:1916 includes/functions/functions.php:1926 #: includes/functions/functions.php:1936 includes/functions/functions.php:1946 #: includes/functions/functions.php:1958 #, php-format -msgid "great ×%d grandparent" +msgid "great ×%s grandparent" msgstr "" -#. I18N: if you need a different number for %d, contact the developers, as a code-change is required +#. I18N: if you need a different number for %s, contact the developers, as a code-change is required #: includes/functions/functions.php:2038 includes/functions/functions.php:2053 #, php-format -msgid "great ×%d grandson" +msgid "great ×%s grandson" msgstr "" -#. I18N: if you need a different number for %d, contact the developers, as a code-change is required +#. I18N: if you need a different number for %s, contact the developers, as a code-change is required #: includes/functions/functions.php:1823 includes/functions/functions.php:1836 #, php-format -msgid "great ×%d nephew" +msgid "great ×%s nephew" msgstr "" #: includes/functions/functions.php:1797 #, php-format -msgctxt "(a man’s) brother’s great ×(%d-1) grandson" -msgid "great ×%d nephew" +msgctxt "(a man’s) brother’s great ×(%s-1) grandson" +msgid "great ×%s nephew" msgstr "" #: includes/functions/functions.php:1799 #, php-format -msgctxt "(a man’s) sister’s great ×(%d-1) grandson" -msgid "great ×%d nephew" +msgctxt "(a man’s) sister’s great ×(%s-1) grandson" +msgid "great ×%s nephew" msgstr "" #: includes/functions/functions.php:1801 #, php-format -msgctxt "(a woman’s) great ×%d nephew" -msgid "great ×%d nephew" +msgctxt "(a woman’s) great ×%s nephew" +msgid "great ×%s nephew" msgstr "" #: includes/functions/functions.php:1827 includes/functions/functions.php:1840 #, php-format -msgid "great ×%d nephew/niece" +msgid "great ×%s nephew/niece" msgstr "" #: includes/functions/functions.php:1813 #, php-format -msgctxt "(a man’s) brother’s great ×(%d-1) grandchild" -msgid "great ×%d nephew/niece" +msgctxt "(a man’s) brother’s great ×(%s-1) grandchild" +msgid "great ×%s nephew/niece" msgstr "" #: includes/functions/functions.php:1815 #, php-format -msgctxt "(a man’s) sister’s great ×(%d-1) grandchild" -msgid "great ×%d nephew/niece" +msgctxt "(a man’s) sister’s great ×(%s-1) grandchild" +msgid "great ×%s nephew/niece" msgstr "" #: includes/functions/functions.php:1817 #, php-format -msgctxt "(a woman’s) great ×%d nephew/niece" -msgid "great ×%d nephew/niece" +msgctxt "(a woman’s) great ×%s nephew/niece" +msgid "great ×%s nephew/niece" msgstr "" #: includes/functions/functions.php:1825 includes/functions/functions.php:1838 #, php-format -msgid "great ×%d niece" +msgid "great ×%s niece" msgstr "" #: includes/functions/functions.php:1805 #, php-format -msgctxt "(a man’s) brother’s great ×(%d-1) granddaughter" -msgid "great ×%d niece" +msgctxt "(a man’s) brother’s great ×(%s-1) granddaughter" +msgid "great ×%s niece" msgstr "" #: includes/functions/functions.php:1807 #, php-format -msgctxt "(a man’s) sister’s great ×(%d-1) granddaughter" -msgid "great ×%d niece" +msgctxt "(a man’s) sister’s great ×(%s-1) granddaughter" +msgid "great ×%s niece" msgstr "" #: includes/functions/functions.php:1809 #, php-format -msgctxt "(a woman’s) great ×%d niece" -msgid "great ×%d niece" +msgctxt "(a woman’s) great ×%s niece" +msgid "great ×%s niece" msgstr "" -#. I18N: if you need a different number for %d, contact the developers, as a code-change is required +#. I18N: if you need a different number for %s, contact the developers, as a code-change is required #: includes/functions/functions.php:1637 includes/functions/functions.php:1665 #, php-format -msgid "great ×%d uncle" +msgid "great ×%s uncle" msgstr "" #: includes/functions/functions.php:1647 #, php-format -msgctxt "great ×(%d-1) grandfather’s brother" -msgid "great ×%d uncle" +msgctxt "great ×(%s-1) grandfather’s brother" +msgid "great ×%s uncle" msgstr "" #: includes/functions/functions.php:1649 #, php-format -msgctxt "great ×(%d-1) grandmother’s brother" -msgid "great ×%d uncle" +msgctxt "great ×(%s-1) grandmother’s brother" +msgid "great ×%s uncle" msgstr "" #: includes/functions/functions.php:1651 #, php-format -msgctxt "great ×(%d-1) grandparent’s brother" -msgid "great ×%d uncle" +msgctxt "great ×(%s-1) grandparent’s brother" +msgid "great ×%s uncle" msgstr "" #: includes/functions/functions.php:1579 @@ -18603,10 +18603,10 @@ msgstr "maksimums" #: app/Module/UpcomingAnniversariesModule.php:125 #: app/Module/YahrzeitModule.php:250 #, php-format -msgid "maximum %d day" -msgid_plural "maximum %d days" -msgstr[0] "maks. %d diena" -msgstr[1] "maks. %d dienas" +msgid "maximum %s day" +msgid_plural "maximum %s days" +msgstr[0] "maks. %s diena" +msgstr[1] "maks. %s dienas" msgstr[2] "" #: admin_trees_config.php:404 admin_trees_config.php:428 diff --git a/language/mi.po b/language/mi.po index 7f32e3e2eb..75d4b2df6d 100644 --- a/language/mi.po +++ b/language/mi.po @@ -185,49 +185,49 @@ msgstr "" #: app/Module/LoggedInUsersModule.php:51 app/Stats.php:5372 #, php-format -msgid "%d anonymous logged-in user" -msgid_plural "%d anonymous logged-in users" +msgid "%s anonymous logged-in user" +msgid_plural "%s anonymous logged-in users" msgstr[0] "" msgstr[1] "" #: app/Module/LoggedInUsersModule.php:57 app/Stats.php:5382 #, php-format -msgid "%d logged-in user" -msgid_plural "%d logged-in users" +msgid "%s logged-in user" +msgid_plural "%s logged-in users" msgstr[0] "" msgstr[1] "" #: app/Module/RelativesTabModule.php:62 #, php-format -msgid "%d month" -msgid_plural "%d months" +msgid "%s month" +msgid_plural "%s months" msgstr[0] "" msgstr[1] "" #: app/Module/RelativesTabModule.php:60 #, php-format -msgid "%d year" -msgid_plural "%d years" +msgid "%s year" +msgid_plural "%s years" msgstr[0] "" msgstr[1] "" #: includes/functions/functions.php:555 #, php-format msgctxt "FEMALE" -msgid "%d × cousin" +msgid "%s × cousin" msgstr "" #. I18N: Note that for Italian and Polish, “N’th cousins” are different from English “N’th cousins”, and the software has already generated the correct “N” for your language. You only need to translate - you do not need to convert. For other languages, if your cousin rules are different from English, please contact the developers. #: includes/functions/functions.php:520 #, php-format msgctxt "MALE" -msgid "%d × cousin" +msgid "%s × cousin" msgstr "" #: includes/functions/functions.php:590 #, php-format msgctxt "MALE/FEMALE" -msgid "%d × cousin" +msgid "%s × cousin" msgstr "" #. I18N: This is the format string for full dates. See http://php.net/date for codes @@ -14299,7 +14299,7 @@ msgstr "" #: setup.php:183 #, php-format -msgid "This server’s memory limit is %d MB and its CPU time limit is %d seconds." +msgid "This server’s memory limit is %s MB and its CPU time limit is %s seconds." msgstr "" #. I18N: Help text for the “Other facts to show in charts” configuration setting @@ -16975,145 +16975,145 @@ msgstr "" #: includes/functions/functions.php:1639 includes/functions/functions.php:1654 #: includes/functions/functions.php:1667 #, php-format -msgid "great ×%d aunt" +msgid "great ×%s aunt" msgstr "" #: includes/functions/functions.php:1641 includes/functions/functions.php:1656 #: includes/functions/functions.php:1669 #, php-format -msgid "great ×%d aunt/uncle" +msgid "great ×%s aunt/uncle" msgstr "" #: includes/functions/functions.php:2042 includes/functions/functions.php:2057 #, php-format -msgid "great ×%d grandchild" +msgid "great ×%s grandchild" msgstr "" #: includes/functions/functions.php:2040 includes/functions/functions.php:2055 #, php-format -msgid "great ×%d granddaughter" +msgid "great ×%s granddaughter" msgstr "" -#. I18N: if you need a different number for %d, contact the developers, as a code-change is required +#. I18N: if you need a different number for %s, contact the developers, as a code-change is required #: includes/functions/functions.php:1912 includes/functions/functions.php:1922 #: includes/functions/functions.php:1932 includes/functions/functions.php:1942 #: includes/functions/functions.php:1954 #, php-format -msgid "great ×%d grandfather" +msgid "great ×%s grandfather" msgstr "" #: includes/functions/functions.php:1914 includes/functions/functions.php:1924 #: includes/functions/functions.php:1934 includes/functions/functions.php:1944 #: includes/functions/functions.php:1956 #, php-format -msgid "great ×%d grandmother" +msgid "great ×%s grandmother" msgstr "" #: includes/functions/functions.php:1916 includes/functions/functions.php:1926 #: includes/functions/functions.php:1936 includes/functions/functions.php:1946 #: includes/functions/functions.php:1958 #, php-format -msgid "great ×%d grandparent" +msgid "great ×%s grandparent" msgstr "" -#. I18N: if you need a different number for %d, contact the developers, as a code-change is required +#. I18N: if you need a different number for %s, contact the developers, as a code-change is required #: includes/functions/functions.php:2038 includes/functions/functions.php:2053 #, php-format -msgid "great ×%d grandson" +msgid "great ×%s grandson" msgstr "" -#. I18N: if you need a different number for %d, contact the developers, as a code-change is required +#. I18N: if you need a different number for %s, contact the developers, as a code-change is required #: includes/functions/functions.php:1823 includes/functions/functions.php:1836 #, php-format -msgid "great ×%d nephew" +msgid "great ×%s nephew" msgstr "" #: includes/functions/functions.php:1797 #, php-format -msgctxt "(a man’s) brother’s great ×(%d-1) grandson" -msgid "great ×%d nephew" +msgctxt "(a man’s) brother’s great ×(%s-1) grandson" +msgid "great ×%s nephew" msgstr "" #: includes/functions/functions.php:1799 #, php-format -msgctxt "(a man’s) sister’s great ×(%d-1) grandson" -msgid "great ×%d nephew" +msgctxt "(a man’s) sister’s great ×(%s-1) grandson" +msgid "great ×%s nephew" msgstr "" #: includes/functions/functions.php:1801 #, php-format -msgctxt "(a woman’s) great ×%d nephew" -msgid "great ×%d nephew" +msgctxt "(a woman’s) great ×%s nephew" +msgid "great ×%s nephew" msgstr "" #: includes/functions/functions.php:1827 includes/functions/functions.php:1840 #, php-format -msgid "great ×%d nephew/niece" +msgid "great ×%s nephew/niece" msgstr "" #: includes/functions/functions.php:1813 #, php-format -msgctxt "(a man’s) brother’s great ×(%d-1) grandchild" -msgid "great ×%d nephew/niece" +msgctxt "(a man’s) brother’s great ×(%s-1) grandchild" +msgid "great ×%s nephew/niece" msgstr "" #: includes/functions/functions.php:1815 #, php-format -msgctxt "(a man’s) sister’s great ×(%d-1) grandchild" -msgid "great ×%d nephew/niece" +msgctxt "(a man’s) sister’s great ×(%s-1) grandchild" +msgid "great ×%s nephew/niece" msgstr "" #: includes/functions/functions.php:1817 #, php-format -msgctxt "(a woman’s) great ×%d nephew/niece" -msgid "great ×%d nephew/niece" +msgctxt "(a woman’s) great ×%s nephew/niece" +msgid "great ×%s nephew/niece" msgstr "" #: includes/functions/functions.php:1825 includes/functions/functions.php:1838 #, php-format -msgid "great ×%d niece" +msgid "great ×%s niece" msgstr "" #: includes/functions/functions.php:1805 #, php-format -msgctxt "(a man’s) brother’s great ×(%d-1) granddaughter" -msgid "great ×%d niece" +msgctxt "(a man’s) brother’s great ×(%s-1) granddaughter" +msgid "great ×%s niece" msgstr "" #: includes/functions/functions.php:1807 #, php-format -msgctxt "(a man’s) sister’s great ×(%d-1) granddaughter" -msgid "great ×%d niece" +msgctxt "(a man’s) sister’s great ×(%s-1) granddaughter" +msgid "great ×%s niece" msgstr "" #: includes/functions/functions.php:1809 #, php-format -msgctxt "(a woman’s) great ×%d niece" -msgid "great ×%d niece" +msgctxt "(a woman’s) great ×%s niece" +msgid "great ×%s niece" msgstr "" -#. I18N: if you need a different number for %d, contact the developers, as a code-change is required +#. I18N: if you need a different number for %s, contact the developers, as a code-change is required #: includes/functions/functions.php:1637 includes/functions/functions.php:1665 #, php-format -msgid "great ×%d uncle" +msgid "great ×%s uncle" msgstr "" #: includes/functions/functions.php:1647 #, php-format -msgctxt "great ×(%d-1) grandfather’s brother" -msgid "great ×%d uncle" +msgctxt "great ×(%s-1) grandfather’s brother" +msgid "great ×%s uncle" msgstr "" #: includes/functions/functions.php:1649 #, php-format -msgctxt "great ×(%d-1) grandmother’s brother" -msgid "great ×%d uncle" +msgctxt "great ×(%s-1) grandmother’s brother" +msgid "great ×%s uncle" msgstr "" #: includes/functions/functions.php:1651 #, php-format -msgctxt "great ×(%d-1) grandparent’s brother" -msgid "great ×%d uncle" +msgctxt "great ×(%s-1) grandparent’s brother" +msgid "great ×%s uncle" msgstr "" #: includes/functions/functions.php:1579 @@ -18564,8 +18564,8 @@ msgstr "" #: app/Module/UpcomingAnniversariesModule.php:125 #: app/Module/YahrzeitModule.php:250 #, php-format -msgid "maximum %d day" -msgid_plural "maximum %d days" +msgid "maximum %s day" +msgid_plural "maximum %s days" msgstr[0] "" msgstr[1] "" diff --git a/language/mr.po b/language/mr.po index 7cfea19146..cc49342a1e 100644 --- a/language/mr.po +++ b/language/mr.po @@ -185,49 +185,49 @@ msgstr "" #: app/Module/LoggedInUsersModule.php:51 app/Stats.php:5372 #, php-format -msgid "%d anonymous logged-in user" -msgid_plural "%d anonymous logged-in users" +msgid "%s anonymous logged-in user" +msgid_plural "%s anonymous logged-in users" msgstr[0] "" msgstr[1] "" #: app/Module/LoggedInUsersModule.php:57 app/Stats.php:5382 #, php-format -msgid "%d logged-in user" -msgid_plural "%d logged-in users" +msgid "%s logged-in user" +msgid_plural "%s logged-in users" msgstr[0] "" msgstr[1] "" #: app/Module/RelativesTabModule.php:62 #, php-format -msgid "%d month" -msgid_plural "%d months" +msgid "%s month" +msgid_plural "%s months" msgstr[0] "" msgstr[1] "" #: app/Module/RelativesTabModule.php:60 #, php-format -msgid "%d year" -msgid_plural "%d years" +msgid "%s year" +msgid_plural "%s years" msgstr[0] "" msgstr[1] "" #: includes/functions/functions.php:555 #, php-format msgctxt "FEMALE" -msgid "%d × cousin" +msgid "%s × cousin" msgstr "" #. I18N: Note that for Italian and Polish, “N’th cousins” are different from English “N’th cousins”, and the software has already generated the correct “N” for your language. You only need to translate - you do not need to convert. For other languages, if your cousin rules are different from English, please contact the developers. #: includes/functions/functions.php:520 #, php-format msgctxt "MALE" -msgid "%d × cousin" +msgid "%s × cousin" msgstr "" #: includes/functions/functions.php:590 #, php-format msgctxt "MALE/FEMALE" -msgid "%d × cousin" +msgid "%s × cousin" msgstr "" #. I18N: This is the format string for full dates. See http://php.net/date for codes @@ -14299,7 +14299,7 @@ msgstr "" #: setup.php:183 #, php-format -msgid "This server’s memory limit is %d MB and its CPU time limit is %d seconds." +msgid "This server’s memory limit is %s MB and its CPU time limit is %s seconds." msgstr "" #. I18N: Help text for the “Other facts to show in charts” configuration setting @@ -16975,145 +16975,145 @@ msgstr "" #: includes/functions/functions.php:1639 includes/functions/functions.php:1654 #: includes/functions/functions.php:1667 #, php-format -msgid "great ×%d aunt" +msgid "great ×%s aunt" msgstr "" #: includes/functions/functions.php:1641 includes/functions/functions.php:1656 #: includes/functions/functions.php:1669 #, php-format -msgid "great ×%d aunt/uncle" +msgid "great ×%s aunt/uncle" msgstr "" #: includes/functions/functions.php:2042 includes/functions/functions.php:2057 #, php-format -msgid "great ×%d grandchild" +msgid "great ×%s grandchild" msgstr "" #: includes/functions/functions.php:2040 includes/functions/functions.php:2055 #, php-format -msgid "great ×%d granddaughter" +msgid "great ×%s granddaughter" msgstr "" -#. I18N: if you need a different number for %d, contact the developers, as a code-change is required +#. I18N: if you need a different number for %s, contact the developers, as a code-change is required #: includes/functions/functions.php:1912 includes/functions/functions.php:1922 #: includes/functions/functions.php:1932 includes/functions/functions.php:1942 #: includes/functions/functions.php:1954 #, php-format -msgid "great ×%d grandfather" +msgid "great ×%s grandfather" msgstr "" #: includes/functions/functions.php:1914 includes/functions/functions.php:1924 #: includes/functions/functions.php:1934 includes/functions/functions.php:1944 #: includes/functions/functions.php:1956 #, php-format -msgid "great ×%d grandmother" +msgid "great ×%s grandmother" msgstr "" #: includes/functions/functions.php:1916 includes/functions/functions.php:1926 #: includes/functions/functions.php:1936 includes/functions/functions.php:1946 #: includes/functions/functions.php:1958 #, php-format -msgid "great ×%d grandparent" +msgid "great ×%s grandparent" msgstr "" -#. I18N: if you need a different number for %d, contact the developers, as a code-change is required +#. I18N: if you need a different number for %s, contact the developers, as a code-change is required #: includes/functions/functions.php:2038 includes/functions/functions.php:2053 #, php-format -msgid "great ×%d grandson" +msgid "great ×%s grandson" msgstr "" -#. I18N: if you need a different number for %d, contact the developers, as a code-change is required +#. I18N: if you need a different number for %s, contact the developers, as a code-change is required #: includes/functions/functions.php:1823 includes/functions/functions.php:1836 #, php-format -msgid "great ×%d nephew" +msgid "great ×%s nephew" msgstr "" #: includes/functions/functions.php:1797 #, php-format -msgctxt "(a man’s) brother’s great ×(%d-1) grandson" -msgid "great ×%d nephew" +msgctxt "(a man’s) brother’s great ×(%s-1) grandson" +msgid "great ×%s nephew" msgstr "" #: includes/functions/functions.php:1799 #, php-format -msgctxt "(a man’s) sister’s great ×(%d-1) grandson" -msgid "great ×%d nephew" +msgctxt "(a man’s) sister’s great ×(%s-1) grandson" +msgid "great ×%s nephew" msgstr "" #: includes/functions/functions.php:1801 #, php-format -msgctxt "(a woman’s) great ×%d nephew" -msgid "great ×%d nephew" +msgctxt "(a woman’s) great ×%s nephew" +msgid "great ×%s nephew" msgstr "" #: includes/functions/functions.php:1827 includes/functions/functions.php:1840 #, php-format -msgid "great ×%d nephew/niece" +msgid "great ×%s nephew/niece" msgstr "" #: includes/functions/functions.php:1813 #, php-format -msgctxt "(a man’s) brother’s great ×(%d-1) grandchild" -msgid "great ×%d nephew/niece" +msgctxt "(a man’s) brother’s great ×(%s-1) grandchild" +msgid "great ×%s nephew/niece" msgstr "" #: includes/functions/functions.php:1815 #, php-format -msgctxt "(a man’s) sister’s great ×(%d-1) grandchild" -msgid "great ×%d nephew/niece" +msgctxt "(a man’s) sister’s great ×(%s-1) grandchild" +msgid "great ×%s nephew/niece" msgstr "" #: includes/functions/functions.php:1817 #, php-format -msgctxt "(a woman’s) great ×%d nephew/niece" -msgid "great ×%d nephew/niece" +msgctxt "(a woman’s) great ×%s nephew/niece" +msgid "great ×%s nephew/niece" msgstr "" #: includes/functions/functions.php:1825 includes/functions/functions.php:1838 #, php-format -msgid "great ×%d niece" +msgid "great ×%s niece" msgstr "" #: includes/functions/functions.php:1805 #, php-format -msgctxt "(a man’s) brother’s great ×(%d-1) granddaughter" -msgid "great ×%d niece" +msgctxt "(a man’s) brother’s great ×(%s-1) granddaughter" +msgid "great ×%s niece" msgstr "" #: includes/functions/functions.php:1807 #, php-format -msgctxt "(a man’s) sister’s great ×(%d-1) granddaughter" -msgid "great ×%d niece" +msgctxt "(a man’s) sister’s great ×(%s-1) granddaughter" +msgid "great ×%s niece" msgstr "" #: includes/functions/functions.php:1809 #, php-format -msgctxt "(a woman’s) great ×%d niece" -msgid "great ×%d niece" +msgctxt "(a woman’s) great ×%s niece" +msgid "great ×%s niece" msgstr "" -#. I18N: if you need a different number for %d, contact the developers, as a code-change is required +#. I18N: if you need a different number for %s, contact the developers, as a code-change is required #: includes/functions/functions.php:1637 includes/functions/functions.php:1665 #, php-format -msgid "great ×%d uncle" +msgid "great ×%s uncle" msgstr "" #: includes/functions/functions.php:1647 #, php-format -msgctxt "great ×(%d-1) grandfather’s brother" -msgid "great ×%d uncle" +msgctxt "great ×(%s-1) grandfather’s brother" +msgid "great ×%s uncle" msgstr "" #: includes/functions/functions.php:1649 #, php-format -msgctxt "great ×(%d-1) grandmother’s brother" -msgid "great ×%d uncle" +msgctxt "great ×(%s-1) grandmother’s brother" +msgid "great ×%s uncle" msgstr "" #: includes/functions/functions.php:1651 #, php-format -msgctxt "great ×(%d-1) grandparent’s brother" -msgid "great ×%d uncle" +msgctxt "great ×(%s-1) grandparent’s brother" +msgid "great ×%s uncle" msgstr "" #: includes/functions/functions.php:1579 @@ -18564,8 +18564,8 @@ msgstr "कमाल" #: app/Module/UpcomingAnniversariesModule.php:125 #: app/Module/YahrzeitModule.php:250 #, php-format -msgid "maximum %d day" -msgid_plural "maximum %d days" +msgid "maximum %s day" +msgid_plural "maximum %s days" msgstr[0] "" msgstr[1] "" @@ -19883,10 +19883,10 @@ msgstr "" #~ msgid "No other link between the two individuals could be found." #~ msgstr "या दोन व्यक्तींमध्ये इतर नाते शोधू शकत नाही" -#~ msgid "Note: “living” is defined (if no death or burial is known) as ending %d year after birth or estimated birth." -#~ msgid_plural "Note: “living” is defined (if no death or burial is known) as ending %d years after birth or estimated birth." -#~ msgstr[0] "टिप: जिवंत या शब्दाची व्याख्या जन्मानंतर किंवा अंदाजे जन्मानंतर समाप्त %d वर्ष (मृत्यू किंवा दफन तारीख माहिती नसेल) अशी करता येईल." -#~ msgstr[1] "टिप: जिवंत या शब्दाची व्याख्या जन्मानंतर किंवा अंदाजे जन्मानंतर समाप्त %d वर्ष (मृत्यू किंवा दफन तारीख माहिती नसेल) अशी करता येईल." +#~ msgid "Note: “living” is defined (if no death or burial is known) as ending %s year after birth or estimated birth." +#~ msgid_plural "Note: “living” is defined (if no death or burial is known) as ending %s years after birth or estimated birth." +#~ msgstr[0] "टिप: जिवंत या शब्दाची व्याख्या जन्मानंतर किंवा अंदाजे जन्मानंतर समाप्त %s वर्ष (मृत्यू किंवा दफन तारीख माहिती नसेल) अशी करता येईल." +#~ msgstr[1] "टिप: जिवंत या शब्दाची व्याख्या जन्मानंतर किंवा अंदाजे जन्मानंतर समाप्त %s वर्ष (मृत्यू किंवा दफन तारीख माहिती नसेल) अशी करता येईल." #~ msgid "Notes are free-form text and will appear in the Fact Details section of the page." #~ msgstr "टिपा मुक्त फॉर्म मजकूर आहेत आणि पृष्ठाचे तथ्य तपशील विभागात दिसून येतील." diff --git a/language/ms.po b/language/ms.po index 3a4a9ffec5..f974de992a 100644 --- a/language/ms.po +++ b/language/ms.po @@ -187,49 +187,49 @@ msgstr "" #: app/Module/LoggedInUsersModule.php:51 app/Stats.php:5372 #, php-format -msgid "%d anonymous logged-in user" -msgid_plural "%d anonymous logged-in users" +msgid "%s anonymous logged-in user" +msgid_plural "%s anonymous logged-in users" msgstr[0] "" msgstr[1] "" #: app/Module/LoggedInUsersModule.php:57 app/Stats.php:5382 #, php-format -msgid "%d logged-in user" -msgid_plural "%d logged-in users" +msgid "%s logged-in user" +msgid_plural "%s logged-in users" msgstr[0] "" msgstr[1] "" #: app/Module/RelativesTabModule.php:62 #, php-format -msgid "%d month" -msgid_plural "%d months" +msgid "%s month" +msgid_plural "%s months" msgstr[0] "" msgstr[1] "" #: app/Module/RelativesTabModule.php:60 #, php-format -msgid "%d year" -msgid_plural "%d years" +msgid "%s year" +msgid_plural "%s years" msgstr[0] "" msgstr[1] "" #: includes/functions/functions.php:555 #, php-format msgctxt "FEMALE" -msgid "%d × cousin" +msgid "%s × cousin" msgstr "" #. I18N: Note that for Italian and Polish, “N’th cousins” are different from English “N’th cousins”, and the software has already generated the correct “N” for your language. You only need to translate - you do not need to convert. For other languages, if your cousin rules are different from English, please contact the developers. #: includes/functions/functions.php:520 #, php-format msgctxt "MALE" -msgid "%d × cousin" +msgid "%s × cousin" msgstr "" #: includes/functions/functions.php:590 #, php-format msgctxt "MALE/FEMALE" -msgid "%d × cousin" +msgid "%s × cousin" msgstr "" #. I18N: This is the format string for full dates. See http://php.net/date for codes @@ -14301,7 +14301,7 @@ msgstr "" #: setup.php:183 #, php-format -msgid "This server’s memory limit is %d MB and its CPU time limit is %d seconds." +msgid "This server’s memory limit is %s MB and its CPU time limit is %s seconds." msgstr "" #. I18N: Help text for the “Other facts to show in charts” configuration setting @@ -16977,145 +16977,145 @@ msgstr "" #: includes/functions/functions.php:1639 includes/functions/functions.php:1654 #: includes/functions/functions.php:1667 #, php-format -msgid "great ×%d aunt" +msgid "great ×%s aunt" msgstr "" #: includes/functions/functions.php:1641 includes/functions/functions.php:1656 #: includes/functions/functions.php:1669 #, php-format -msgid "great ×%d aunt/uncle" +msgid "great ×%s aunt/uncle" msgstr "" #: includes/functions/functions.php:2042 includes/functions/functions.php:2057 #, php-format -msgid "great ×%d grandchild" +msgid "great ×%s grandchild" msgstr "" #: includes/functions/functions.php:2040 includes/functions/functions.php:2055 #, php-format -msgid "great ×%d granddaughter" +msgid "great ×%s granddaughter" msgstr "" -#. I18N: if you need a different number for %d, contact the developers, as a code-change is required +#. I18N: if you need a different number for %s, contact the developers, as a code-change is required #: includes/functions/functions.php:1912 includes/functions/functions.php:1922 #: includes/functions/functions.php:1932 includes/functions/functions.php:1942 #: includes/functions/functions.php:1954 #, php-format -msgid "great ×%d grandfather" +msgid "great ×%s grandfather" msgstr "" #: includes/functions/functions.php:1914 includes/functions/functions.php:1924 #: includes/functions/functions.php:1934 includes/functions/functions.php:1944 #: includes/functions/functions.php:1956 #, php-format -msgid "great ×%d grandmother" +msgid "great ×%s grandmother" msgstr "" #: includes/functions/functions.php:1916 includes/functions/functions.php:1926 #: includes/functions/functions.php:1936 includes/functions/functions.php:1946 #: includes/functions/functions.php:1958 #, php-format -msgid "great ×%d grandparent" +msgid "great ×%s grandparent" msgstr "" -#. I18N: if you need a different number for %d, contact the developers, as a code-change is required +#. I18N: if you need a different number for %s, contact the developers, as a code-change is required #: includes/functions/functions.php:2038 includes/functions/functions.php:2053 #, php-format -msgid "great ×%d grandson" +msgid "great ×%s grandson" msgstr "" -#. I18N: if you need a different number for %d, contact the developers, as a code-change is required +#. I18N: if you need a different number for %s, contact the developers, as a code-change is required #: includes/functions/functions.php:1823 includes/functions/functions.php:1836 #, php-format -msgid "great ×%d nephew" +msgid "great ×%s nephew" msgstr "" #: includes/functions/functions.php:1797 #, php-format -msgctxt "(a man’s) brother’s great ×(%d-1) grandson" -msgid "great ×%d nephew" +msgctxt "(a man’s) brother’s great ×(%s-1) grandson" +msgid "great ×%s nephew" msgstr "" #: includes/functions/functions.php:1799 #, php-format -msgctxt "(a man’s) sister’s great ×(%d-1) grandson" -msgid "great ×%d nephew" +msgctxt "(a man’s) sister’s great ×(%s-1) grandson" +msgid "great ×%s nephew" msgstr "" #: includes/functions/functions.php:1801 #, php-format -msgctxt "(a woman’s) great ×%d nephew" -msgid "great ×%d nephew" +msgctxt "(a woman’s) great ×%s nephew" +msgid "great ×%s nephew" msgstr "" #: includes/functions/functions.php:1827 includes/functions/functions.php:1840 #, php-format -msgid "great ×%d nephew/niece" +msgid "great ×%s nephew/niece" msgstr "" #: includes/functions/functions.php:1813 #, php-format -msgctxt "(a man’s) brother’s great ×(%d-1) grandchild" -msgid "great ×%d nephew/niece" +msgctxt "(a man’s) brother’s great ×(%s-1) grandchild" +msgid "great ×%s nephew/niece" msgstr "" #: includes/functions/functions.php:1815 #, php-format -msgctxt "(a man’s) sister’s great ×(%d-1) grandchild" -msgid "great ×%d nephew/niece" +msgctxt "(a man’s) sister’s great ×(%s-1) grandchild" +msgid "great ×%s nephew/niece" msgstr "" #: includes/functions/functions.php:1817 #, php-format -msgctxt "(a woman’s) great ×%d nephew/niece" -msgid "great ×%d nephew/niece" +msgctxt "(a woman’s) great ×%s nephew/niece" +msgid "great ×%s nephew/niece" msgstr "" #: includes/functions/functions.php:1825 includes/functions/functions.php:1838 #, php-format -msgid "great ×%d niece" +msgid "great ×%s niece" msgstr "" #: includes/functions/functions.php:1805 #, php-format -msgctxt "(a man’s) brother’s great ×(%d-1) granddaughter" -msgid "great ×%d niece" +msgctxt "(a man’s) brother’s great ×(%s-1) granddaughter" +msgid "great ×%s niece" msgstr "" #: includes/functions/functions.php:1807 #, php-format -msgctxt "(a man’s) sister’s great ×(%d-1) granddaughter" -msgid "great ×%d niece" +msgctxt "(a man’s) sister’s great ×(%s-1) granddaughter" +msgid "great ×%s niece" msgstr "" #: includes/functions/functions.php:1809 #, php-format -msgctxt "(a woman’s) great ×%d niece" -msgid "great ×%d niece" +msgctxt "(a woman’s) great ×%s niece" +msgid "great ×%s niece" msgstr "" -#. I18N: if you need a different number for %d, contact the developers, as a code-change is required +#. I18N: if you need a different number for %s, contact the developers, as a code-change is required #: includes/functions/functions.php:1637 includes/functions/functions.php:1665 #, php-format -msgid "great ×%d uncle" +msgid "great ×%s uncle" msgstr "" #: includes/functions/functions.php:1647 #, php-format -msgctxt "great ×(%d-1) grandfather’s brother" -msgid "great ×%d uncle" +msgctxt "great ×(%s-1) grandfather’s brother" +msgid "great ×%s uncle" msgstr "" #: includes/functions/functions.php:1649 #, php-format -msgctxt "great ×(%d-1) grandmother’s brother" -msgid "great ×%d uncle" +msgctxt "great ×(%s-1) grandmother’s brother" +msgid "great ×%s uncle" msgstr "" #: includes/functions/functions.php:1651 #, php-format -msgctxt "great ×(%d-1) grandparent’s brother" -msgid "great ×%d uncle" +msgctxt "great ×(%s-1) grandparent’s brother" +msgid "great ×%s uncle" msgstr "" #: includes/functions/functions.php:1579 @@ -18566,8 +18566,8 @@ msgstr "" #: app/Module/UpcomingAnniversariesModule.php:125 #: app/Module/YahrzeitModule.php:250 #, php-format -msgid "maximum %d day" -msgid_plural "maximum %d days" +msgid "maximum %s day" +msgid_plural "maximum %s days" msgstr[0] "" msgstr[1] "" diff --git a/language/nb.po b/language/nb.po index a2fb526d64..d8790d3914 100644 --- a/language/nb.po +++ b/language/nb.po @@ -187,50 +187,50 @@ msgstr "%G:%i:%s" #: app/Module/LoggedInUsersModule.php:51 app/Stats.php:5372 #, php-format -msgid "%d anonymous logged-in user" -msgid_plural "%d anonymous logged-in users" -msgstr[0] "%d anonym innlogget bruker" -msgstr[1] "%d anonyme innloggede brukere" +msgid "%s anonymous logged-in user" +msgid_plural "%s anonymous logged-in users" +msgstr[0] "%s anonym innlogget bruker" +msgstr[1] "%s anonyme innloggede brukere" #: app/Module/LoggedInUsersModule.php:57 app/Stats.php:5382 #, php-format -msgid "%d logged-in user" -msgid_plural "%d logged-in users" -msgstr[0] "%d innlogget bruker" -msgstr[1] "%d innloggede brukere" +msgid "%s logged-in user" +msgid_plural "%s logged-in users" +msgstr[0] "%s innlogget bruker" +msgstr[1] "%s innloggede brukere" #: app/Module/RelativesTabModule.php:62 #, php-format -msgid "%d month" -msgid_plural "%d months" -msgstr[0] "%d måned" -msgstr[1] "%d måneder" +msgid "%s month" +msgid_plural "%s months" +msgstr[0] "%s måned" +msgstr[1] "%s måneder" #: app/Module/RelativesTabModule.php:60 #, php-format -msgid "%d year" -msgid_plural "%d years" -msgstr[0] "%d år" -msgstr[1] "%d år" +msgid "%s year" +msgid_plural "%s years" +msgstr[0] "%s år" +msgstr[1] "%s år" #: includes/functions/functions.php:555 #, php-format msgctxt "FEMALE" -msgid "%d × cousin" -msgstr "%d menning" +msgid "%s × cousin" +msgstr "%s menning" #. I18N: Note that for Italian and Polish, “N’th cousins” are different from English “N’th cousins”, and the software has already generated the correct “N” for your language. You only need to translate - you do not need to convert. For other languages, if your cousin rules are different from English, please contact the developers. #: includes/functions/functions.php:520 #, php-format msgctxt "MALE" -msgid "%d × cousin" -msgstr "%d menning" +msgid "%s × cousin" +msgstr "%s menning" #: includes/functions/functions.php:590 #, php-format msgctxt "MALE/FEMALE" -msgid "%d × cousin" -msgstr "%d menning" +msgid "%s × cousin" +msgstr "%s menning" #. I18N: This is the format string for full dates. See http://php.net/date for codes #: app/Date.php:222 app/I18N.php:212 @@ -14301,8 +14301,8 @@ msgstr "Serveren tilbyr ikke sikker nedlastning med HTTPS." #: setup.php:183 #, php-format -msgid "This server’s memory limit is %d MB and its CPU time limit is %d seconds." -msgstr "Serverens minnegrense er på %dMB og CPU-tidsgrensen er på %d sekunder." +msgid "This server’s memory limit is %s MB and its CPU time limit is %s seconds." +msgstr "Serverens minnegrense er på %sMB og CPU-tidsgrensen er på %s sekunder." #. I18N: Help text for the “Other facts to show in charts” configuration setting #: admin_trees_config.php:1632 @@ -16977,146 +16977,146 @@ msgstr "barnebarns hustru" #: includes/functions/functions.php:1639 includes/functions/functions.php:1654 #: includes/functions/functions.php:1667 #, php-format -msgid "great ×%d aunt" -msgstr "%d× grandtante" +msgid "great ×%s aunt" +msgstr "%s× grandtante" #: includes/functions/functions.php:1641 includes/functions/functions.php:1656 #: includes/functions/functions.php:1669 #, php-format -msgid "great ×%d aunt/uncle" -msgstr "%d× tipp-oldeforelders søsken" +msgid "great ×%s aunt/uncle" +msgstr "%s× tipp-oldeforelders søsken" #: includes/functions/functions.php:2042 includes/functions/functions.php:2057 #, php-format -msgid "great ×%d grandchild" -msgstr "%d× tip-oldebarn" +msgid "great ×%s grandchild" +msgstr "%s× tip-oldebarn" #: includes/functions/functions.php:2040 includes/functions/functions.php:2055 #, php-format -msgid "great ×%d granddaughter" -msgstr "%d× tip-oldebarn" +msgid "great ×%s granddaughter" +msgstr "%s× tip-oldebarn" -#. I18N: if you need a different number for %d, contact the developers, as a code-change is required +#. I18N: if you need a different number for %s, contact the developers, as a code-change is required #: includes/functions/functions.php:1912 includes/functions/functions.php:1922 #: includes/functions/functions.php:1932 includes/functions/functions.php:1942 #: includes/functions/functions.php:1954 #, php-format -msgid "great ×%d grandfather" -msgstr "%d× tippoldefar" +msgid "great ×%s grandfather" +msgstr "%s× tippoldefar" #: includes/functions/functions.php:1914 includes/functions/functions.php:1924 #: includes/functions/functions.php:1934 includes/functions/functions.php:1944 #: includes/functions/functions.php:1956 #, php-format -msgid "great ×%d grandmother" -msgstr "%d× tippoldemor" +msgid "great ×%s grandmother" +msgstr "%s× tippoldemor" #: includes/functions/functions.php:1916 includes/functions/functions.php:1926 #: includes/functions/functions.php:1936 includes/functions/functions.php:1946 #: includes/functions/functions.php:1958 #, php-format -msgid "great ×%d grandparent" -msgstr "%d× tip-oldeforelder" +msgid "great ×%s grandparent" +msgstr "%s× tip-oldeforelder" -#. I18N: if you need a different number for %d, contact the developers, as a code-change is required +#. I18N: if you need a different number for %s, contact the developers, as a code-change is required #: includes/functions/functions.php:2038 includes/functions/functions.php:2053 #, php-format -msgid "great ×%d grandson" -msgstr "%d× tip-oldebarn" +msgid "great ×%s grandson" +msgstr "%s× tip-oldebarn" -#. I18N: if you need a different number for %d, contact the developers, as a code-change is required +#. I18N: if you need a different number for %s, contact the developers, as a code-change is required #: includes/functions/functions.php:1823 includes/functions/functions.php:1836 #, php-format -msgid "great ×%d nephew" -msgstr "%d× grandnevø" +msgid "great ×%s nephew" +msgstr "%s× grandnevø" #: includes/functions/functions.php:1797 #, php-format -msgctxt "(a man’s) brother’s great ×(%d-1) grandson" -msgid "great ×%d nephew" -msgstr "%d× grandnevø" +msgctxt "(a man’s) brother’s great ×(%s-1) grandson" +msgid "great ×%s nephew" +msgstr "%s× grandnevø" #: includes/functions/functions.php:1799 #, php-format -msgctxt "(a man’s) sister’s great ×(%d-1) grandson" -msgid "great ×%d nephew" -msgstr "%d× grandnevø" +msgctxt "(a man’s) sister’s great ×(%s-1) grandson" +msgid "great ×%s nephew" +msgstr "%s× grandnevø" #: includes/functions/functions.php:1801 #, php-format -msgctxt "(a woman’s) great ×%d nephew" -msgid "great ×%d nephew" -msgstr "%d× grandnevø" +msgctxt "(a woman’s) great ×%s nephew" +msgid "great ×%s nephew" +msgstr "%s× grandnevø" #: includes/functions/functions.php:1827 includes/functions/functions.php:1840 #, php-format -msgid "great ×%d nephew/niece" -msgstr "%d× grandnevø/-niese" +msgid "great ×%s nephew/niece" +msgstr "%s× grandnevø/-niese" #: includes/functions/functions.php:1813 #, php-format -msgctxt "(a man’s) brother’s great ×(%d-1) grandchild" -msgid "great ×%d nephew/niece" -msgstr "%d× grandnevø/-niese" +msgctxt "(a man’s) brother’s great ×(%s-1) grandchild" +msgid "great ×%s nephew/niece" +msgstr "%s× grandnevø/-niese" #: includes/functions/functions.php:1815 #, php-format -msgctxt "(a man’s) sister’s great ×(%d-1) grandchild" -msgid "great ×%d nephew/niece" -msgstr "%d× grandnevø/-niese" +msgctxt "(a man’s) sister’s great ×(%s-1) grandchild" +msgid "great ×%s nephew/niece" +msgstr "%s× grandnevø/-niese" #: includes/functions/functions.php:1817 #, php-format -msgctxt "(a woman’s) great ×%d nephew/niece" -msgid "great ×%d nephew/niece" -msgstr "%d× grandnevø/-niese" +msgctxt "(a woman’s) great ×%s nephew/niece" +msgid "great ×%s nephew/niece" +msgstr "%s× grandnevø/-niese" #: includes/functions/functions.php:1825 includes/functions/functions.php:1838 #, php-format -msgid "great ×%d niece" -msgstr "%d× grandniese" +msgid "great ×%s niece" +msgstr "%s× grandniese" #: includes/functions/functions.php:1805 #, php-format -msgctxt "(a man’s) brother’s great ×(%d-1) granddaughter" -msgid "great ×%d niece" -msgstr "%d× grandniese" +msgctxt "(a man’s) brother’s great ×(%s-1) granddaughter" +msgid "great ×%s niece" +msgstr "%s× grandniese" #: includes/functions/functions.php:1807 #, php-format -msgctxt "(a man’s) sister’s great ×(%d-1) granddaughter" -msgid "great ×%d niece" -msgstr "%d× grandniese" +msgctxt "(a man’s) sister’s great ×(%s-1) granddaughter" +msgid "great ×%s niece" +msgstr "%s× grandniese" #: includes/functions/functions.php:1809 #, php-format -msgctxt "(a woman’s) great ×%d niece" -msgid "great ×%d niece" -msgstr "%d× grandniese" +msgctxt "(a woman’s) great ×%s niece" +msgid "great ×%s niece" +msgstr "%s× grandniese" -#. I18N: if you need a different number for %d, contact the developers, as a code-change is required +#. I18N: if you need a different number for %s, contact the developers, as a code-change is required #: includes/functions/functions.php:1637 includes/functions/functions.php:1665 #, php-format -msgid "great ×%d uncle" -msgstr "%d× grandonkel" +msgid "great ×%s uncle" +msgstr "%s× grandonkel" #: includes/functions/functions.php:1647 #, php-format -msgctxt "great ×(%d-1) grandfather’s brother" -msgid "great ×%d uncle" -msgstr "%d× tipp-oldeforelders bror" +msgctxt "great ×(%s-1) grandfather’s brother" +msgid "great ×%s uncle" +msgstr "%s× tipp-oldeforelders bror" #: includes/functions/functions.php:1649 #, php-format -msgctxt "great ×(%d-1) grandmother’s brother" -msgid "great ×%d uncle" -msgstr "%d× grandonkel" +msgctxt "great ×(%s-1) grandmother’s brother" +msgid "great ×%s uncle" +msgstr "%s× grandonkel" #: includes/functions/functions.php:1651 #, php-format -msgctxt "great ×(%d-1) grandparent’s brother" -msgid "great ×%d uncle" -msgstr "%d× grandonkel" +msgctxt "great ×(%s-1) grandparent’s brother" +msgid "great ×%s uncle" +msgstr "%s× grandonkel" #: includes/functions/functions.php:1579 msgid "great ×4 aunt" @@ -18566,10 +18566,10 @@ msgstr "maksimum" #: app/Module/UpcomingAnniversariesModule.php:125 #: app/Module/YahrzeitModule.php:250 #, php-format -msgid "maximum %d day" -msgid_plural "maximum %d days" -msgstr[0] "maks %d dag" -msgstr[1] "maks %d dager" +msgid "maximum %s day" +msgid_plural "maximum %s days" +msgstr[0] "maks %s dag" +msgstr[1] "maks %s dager" #: admin_trees_config.php:404 admin_trees_config.php:428 #: admin_trees_config.php:468 admin_trees_config.php:508 @@ -20086,10 +20086,10 @@ msgstr "…" #~ msgid "No other link between the two individuals could be found." #~ msgstr "Kan ikke finne noen annen forbindelse mellom de to personene." -#~ msgid "Note: “living” is defined (if no death or burial is known) as ending %d year after birth or estimated birth." -#~ msgid_plural "Note: “living” is defined (if no death or burial is known) as ending %d years after birth or estimated birth." -#~ msgstr[0] "NB: hvis ingen død eller begravelse er kjent, defineres “nålevende” som frem til %d år etter fødsel eller beregnet fødsel." -#~ msgstr[1] "NB: hvis ingen død eller begravelse er kjent, defineres “nålevende” som frem til %d år etter fødsel eller beregnet fødsel." +#~ msgid "Note: “living” is defined (if no death or burial is known) as ending %s year after birth or estimated birth." +#~ msgid_plural "Note: “living” is defined (if no death or burial is known) as ending %s years after birth or estimated birth." +#~ msgstr[0] "NB: hvis ingen død eller begravelse er kjent, defineres “nålevende” som frem til %s år etter fødsel eller beregnet fødsel." +#~ msgstr[1] "NB: hvis ingen død eller begravelse er kjent, defineres “nålevende” som frem til %s år etter fødsel eller beregnet fødsel." #~ msgid "Notes are free-form text and will appear in the Fact Details section of the page." #~ msgstr "Notater er tekst med fri form og vil vises i faktafeltene og under arkfanen Notater." diff --git a/language/ne.po b/language/ne.po index 7eb0dc434c..31e4d1c960 100644 --- a/language/ne.po +++ b/language/ne.po @@ -187,49 +187,49 @@ msgstr "" #: app/Module/LoggedInUsersModule.php:51 app/Stats.php:5372 #, php-format -msgid "%d anonymous logged-in user" -msgid_plural "%d anonymous logged-in users" +msgid "%s anonymous logged-in user" +msgid_plural "%s anonymous logged-in users" msgstr[0] "" msgstr[1] "" #: app/Module/LoggedInUsersModule.php:57 app/Stats.php:5382 #, php-format -msgid "%d logged-in user" -msgid_plural "%d logged-in users" +msgid "%s logged-in user" +msgid_plural "%s logged-in users" msgstr[0] "" msgstr[1] "" #: app/Module/RelativesTabModule.php:62 #, php-format -msgid "%d month" -msgid_plural "%d months" +msgid "%s month" +msgid_plural "%s months" msgstr[0] "" msgstr[1] "" #: app/Module/RelativesTabModule.php:60 #, php-format -msgid "%d year" -msgid_plural "%d years" +msgid "%s year" +msgid_plural "%s years" msgstr[0] "" msgstr[1] "" #: includes/functions/functions.php:555 #, php-format msgctxt "FEMALE" -msgid "%d × cousin" +msgid "%s × cousin" msgstr "" #. I18N: Note that for Italian and Polish, “N’th cousins” are different from English “N’th cousins”, and the software has already generated the correct “N” for your language. You only need to translate - you do not need to convert. For other languages, if your cousin rules are different from English, please contact the developers. #: includes/functions/functions.php:520 #, php-format msgctxt "MALE" -msgid "%d × cousin" +msgid "%s × cousin" msgstr "" #: includes/functions/functions.php:590 #, php-format msgctxt "MALE/FEMALE" -msgid "%d × cousin" +msgid "%s × cousin" msgstr "" #. I18N: This is the format string for full dates. See http://php.net/date for codes @@ -14301,7 +14301,7 @@ msgstr "" #: setup.php:183 #, php-format -msgid "This server’s memory limit is %d MB and its CPU time limit is %d seconds." +msgid "This server’s memory limit is %s MB and its CPU time limit is %s seconds." msgstr "" #. I18N: Help text for the “Other facts to show in charts” configuration setting @@ -16977,145 +16977,145 @@ msgstr "" #: includes/functions/functions.php:1639 includes/functions/functions.php:1654 #: includes/functions/functions.php:1667 #, php-format -msgid "great ×%d aunt" +msgid "great ×%s aunt" msgstr "" #: includes/functions/functions.php:1641 includes/functions/functions.php:1656 #: includes/functions/functions.php:1669 #, php-format -msgid "great ×%d aunt/uncle" +msgid "great ×%s aunt/uncle" msgstr "" #: includes/functions/functions.php:2042 includes/functions/functions.php:2057 #, php-format -msgid "great ×%d grandchild" +msgid "great ×%s grandchild" msgstr "" #: includes/functions/functions.php:2040 includes/functions/functions.php:2055 #, php-format -msgid "great ×%d granddaughter" +msgid "great ×%s granddaughter" msgstr "" -#. I18N: if you need a different number for %d, contact the developers, as a code-change is required +#. I18N: if you need a different number for %s, contact the developers, as a code-change is required #: includes/functions/functions.php:1912 includes/functions/functions.php:1922 #: includes/functions/functions.php:1932 includes/functions/functions.php:1942 #: includes/functions/functions.php:1954 #, php-format -msgid "great ×%d grandfather" +msgid "great ×%s grandfather" msgstr "" #: includes/functions/functions.php:1914 includes/functions/functions.php:1924 #: includes/functions/functions.php:1934 includes/functions/functions.php:1944 #: includes/functions/functions.php:1956 #, php-format -msgid "great ×%d grandmother" +msgid "great ×%s grandmother" msgstr "" #: includes/functions/functions.php:1916 includes/functions/functions.php:1926 #: includes/functions/functions.php:1936 includes/functions/functions.php:1946 #: includes/functions/functions.php:1958 #, php-format -msgid "great ×%d grandparent" +msgid "great ×%s grandparent" msgstr "" -#. I18N: if you need a different number for %d, contact the developers, as a code-change is required +#. I18N: if you need a different number for %s, contact the developers, as a code-change is required #: includes/functions/functions.php:2038 includes/functions/functions.php:2053 #, php-format -msgid "great ×%d grandson" +msgid "great ×%s grandson" msgstr "" -#. I18N: if you need a different number for %d, contact the developers, as a code-change is required +#. I18N: if you need a different number for %s, contact the developers, as a code-change is required #: includes/functions/functions.php:1823 includes/functions/functions.php:1836 #, php-format -msgid "great ×%d nephew" +msgid "great ×%s nephew" msgstr "" #: includes/functions/functions.php:1797 #, php-format -msgctxt "(a man’s) brother’s great ×(%d-1) grandson" -msgid "great ×%d nephew" +msgctxt "(a man’s) brother’s great ×(%s-1) grandson" +msgid "great ×%s nephew" msgstr "" #: includes/functions/functions.php:1799 #, php-format -msgctxt "(a man’s) sister’s great ×(%d-1) grandson" -msgid "great ×%d nephew" +msgctxt "(a man’s) sister’s great ×(%s-1) grandson" +msgid "great ×%s nephew" msgstr "" #: includes/functions/functions.php:1801 #, php-format -msgctxt "(a woman’s) great ×%d nephew" -msgid "great ×%d nephew" +msgctxt "(a woman’s) great ×%s nephew" +msgid "great ×%s nephew" msgstr "" #: includes/functions/functions.php:1827 includes/functions/functions.php:1840 #, php-format -msgid "great ×%d nephew/niece" +msgid "great ×%s nephew/niece" msgstr "" #: includes/functions/functions.php:1813 #, php-format -msgctxt "(a man’s) brother’s great ×(%d-1) grandchild" -msgid "great ×%d nephew/niece" +msgctxt "(a man’s) brother’s great ×(%s-1) grandchild" +msgid "great ×%s nephew/niece" msgstr "" #: includes/functions/functions.php:1815 #, php-format -msgctxt "(a man’s) sister’s great ×(%d-1) grandchild" -msgid "great ×%d nephew/niece" +msgctxt "(a man’s) sister’s great ×(%s-1) grandchild" +msgid "great ×%s nephew/niece" msgstr "" #: includes/functions/functions.php:1817 #, php-format -msgctxt "(a woman’s) great ×%d nephew/niece" -msgid "great ×%d nephew/niece" +msgctxt "(a woman’s) great ×%s nephew/niece" +msgid "great ×%s nephew/niece" msgstr "" #: includes/functions/functions.php:1825 includes/functions/functions.php:1838 #, php-format -msgid "great ×%d niece" +msgid "great ×%s niece" msgstr "" #: includes/functions/functions.php:1805 #, php-format -msgctxt "(a man’s) brother’s great ×(%d-1) granddaughter" -msgid "great ×%d niece" +msgctxt "(a man’s) brother’s great ×(%s-1) granddaughter" +msgid "great ×%s niece" msgstr "" #: includes/functions/functions.php:1807 #, php-format -msgctxt "(a man’s) sister’s great ×(%d-1) granddaughter" -msgid "great ×%d niece" +msgctxt "(a man’s) sister’s great ×(%s-1) granddaughter" +msgid "great ×%s niece" msgstr "" #: includes/functions/functions.php:1809 #, php-format -msgctxt "(a woman’s) great ×%d niece" -msgid "great ×%d niece" +msgctxt "(a woman’s) great ×%s niece" +msgid "great ×%s niece" msgstr "" -#. I18N: if you need a different number for %d, contact the developers, as a code-change is required +#. I18N: if you need a different number for %s, contact the developers, as a code-change is required #: includes/functions/functions.php:1637 includes/functions/functions.php:1665 #, php-format -msgid "great ×%d uncle" +msgid "great ×%s uncle" msgstr "" #: includes/functions/functions.php:1647 #, php-format -msgctxt "great ×(%d-1) grandfather’s brother" -msgid "great ×%d uncle" +msgctxt "great ×(%s-1) grandfather’s brother" +msgid "great ×%s uncle" msgstr "" #: includes/functions/functions.php:1649 #, php-format -msgctxt "great ×(%d-1) grandmother’s brother" -msgid "great ×%d uncle" +msgctxt "great ×(%s-1) grandmother’s brother" +msgid "great ×%s uncle" msgstr "" #: includes/functions/functions.php:1651 #, php-format -msgctxt "great ×(%d-1) grandparent’s brother" -msgid "great ×%d uncle" +msgctxt "great ×(%s-1) grandparent’s brother" +msgid "great ×%s uncle" msgstr "" #: includes/functions/functions.php:1579 @@ -18566,8 +18566,8 @@ msgstr "अधिकतम" #: app/Module/UpcomingAnniversariesModule.php:125 #: app/Module/YahrzeitModule.php:250 #, php-format -msgid "maximum %d day" -msgid_plural "maximum %d days" +msgid "maximum %s day" +msgid_plural "maximum %s days" msgstr[0] "" msgstr[1] "" diff --git a/language/nl.po b/language/nl.po index 32b3446a5c..588d2b8e47 100644 --- a/language/nl.po +++ b/language/nl.po @@ -191,50 +191,50 @@ msgstr "%H:%i:%s" #: app/Module/LoggedInUsersModule.php:51 app/Stats.php:5372 #, php-format -msgid "%d anonymous logged-in user" -msgid_plural "%d anonymous logged-in users" -msgstr[0] "%d anoniem ingelogde gebruiker" -msgstr[1] "%d anoniem ingelogde gebruikers" +msgid "%s anonymous logged-in user" +msgid_plural "%s anonymous logged-in users" +msgstr[0] "%s anoniem ingelogde gebruiker" +msgstr[1] "%s anoniem ingelogde gebruikers" #: app/Module/LoggedInUsersModule.php:57 app/Stats.php:5382 #, php-format -msgid "%d logged-in user" -msgid_plural "%d logged-in users" -msgstr[0] "%d aangemelde gebruiker" -msgstr[1] "%d aangemelde gebruikers" +msgid "%s logged-in user" +msgid_plural "%s logged-in users" +msgstr[0] "%s aangemelde gebruiker" +msgstr[1] "%s aangemelde gebruikers" #: app/Module/RelativesTabModule.php:62 #, php-format -msgid "%d month" -msgid_plural "%d months" -msgstr[0] "%d maand" -msgstr[1] "%d maanden" +msgid "%s month" +msgid_plural "%s months" +msgstr[0] "%s maand" +msgstr[1] "%s maanden" #: app/Module/RelativesTabModule.php:60 #, php-format -msgid "%d year" -msgid_plural "%d years" -msgstr[0] "%d jaar" -msgstr[1] "%d jaren" +msgid "%s year" +msgid_plural "%s years" +msgstr[0] "%s jaar" +msgstr[1] "%s jaren" #: includes/functions/functions.php:555 #, php-format msgctxt "FEMALE" -msgid "%d × cousin" -msgstr "%d × nicht" +msgid "%s × cousin" +msgstr "%s × nicht" #. I18N: Note that for Italian and Polish, “N’th cousins” are different from English “N’th cousins”, and the software has already generated the correct “N” for your language. You only need to translate - you do not need to convert. For other languages, if your cousin rules are different from English, please contact the developers. #: includes/functions/functions.php:520 #, php-format msgctxt "MALE" -msgid "%d × cousin" -msgstr "%d × neef" +msgid "%s × cousin" +msgstr "%s × neef" #: includes/functions/functions.php:590 #, php-format msgctxt "MALE/FEMALE" -msgid "%d × cousin" -msgstr "%d × neef/nicht" +msgid "%s × cousin" +msgstr "%s × neef/nicht" #. I18N: This is the format string for full dates. See http://php.net/date for codes #: app/Date.php:222 app/I18N.php:212 @@ -14305,8 +14305,8 @@ msgstr "Deze server ondersteund geen veilige downloads met HTTPS." #: setup.php:183 #, php-format -msgid "This server’s memory limit is %d MB and its CPU time limit is %d seconds." -msgstr "De geheugenlimiet van deze server is %dMB en de tijdslimiet van de processor is %d seconden." +msgid "This server’s memory limit is %s MB and its CPU time limit is %s seconds." +msgstr "De geheugenlimiet van deze server is %sMB en de tijdslimiet van de processor is %s seconden." #. I18N: Help text for the “Other facts to show in charts” configuration setting #: admin_trees_config.php:1632 @@ -16981,146 +16981,146 @@ msgstr "aangetrouwde kleindochter" #: includes/functions/functions.php:1639 includes/functions/functions.php:1654 #: includes/functions/functions.php:1667 #, php-format -msgid "great ×%d aunt" -msgstr "%dx oudtante" +msgid "great ×%s aunt" +msgstr "%sx oudtante" #: includes/functions/functions.php:1641 includes/functions/functions.php:1656 #: includes/functions/functions.php:1669 #, php-format -msgid "great ×%d aunt/uncle" -msgstr "%dx oudoom/oudtante" +msgid "great ×%s aunt/uncle" +msgstr "%sx oudoom/oudtante" #: includes/functions/functions.php:2042 includes/functions/functions.php:2057 #, php-format -msgid "great ×%d grandchild" -msgstr "%dx achterkleinkind" +msgid "great ×%s grandchild" +msgstr "%sx achterkleinkind" #: includes/functions/functions.php:2040 includes/functions/functions.php:2055 #, php-format -msgid "great ×%d granddaughter" -msgstr "%dx achterkleindochter" +msgid "great ×%s granddaughter" +msgstr "%sx achterkleindochter" -#. I18N: if you need a different number for %d, contact the developers, as a code-change is required +#. I18N: if you need a different number for %s, contact the developers, as a code-change is required #: includes/functions/functions.php:1912 includes/functions/functions.php:1922 #: includes/functions/functions.php:1932 includes/functions/functions.php:1942 #: includes/functions/functions.php:1954 #, php-format -msgid "great ×%d grandfather" -msgstr "%dx overgrootvader" +msgid "great ×%s grandfather" +msgstr "%sx overgrootvader" #: includes/functions/functions.php:1914 includes/functions/functions.php:1924 #: includes/functions/functions.php:1934 includes/functions/functions.php:1944 #: includes/functions/functions.php:1956 #, php-format -msgid "great ×%d grandmother" -msgstr "%dx overgrootmoeder" +msgid "great ×%s grandmother" +msgstr "%sx overgrootmoeder" #: includes/functions/functions.php:1916 includes/functions/functions.php:1926 #: includes/functions/functions.php:1936 includes/functions/functions.php:1946 #: includes/functions/functions.php:1958 #, php-format -msgid "great ×%d grandparent" -msgstr "%dx overgrootouder" +msgid "great ×%s grandparent" +msgstr "%sx overgrootouder" -#. I18N: if you need a different number for %d, contact the developers, as a code-change is required +#. I18N: if you need a different number for %s, contact the developers, as a code-change is required #: includes/functions/functions.php:2038 includes/functions/functions.php:2053 #, php-format -msgid "great ×%d grandson" -msgstr "%dx achterkleinzoon" +msgid "great ×%s grandson" +msgstr "%sx achterkleinzoon" -#. I18N: if you need a different number for %d, contact the developers, as a code-change is required +#. I18N: if you need a different number for %s, contact the developers, as a code-change is required #: includes/functions/functions.php:1823 includes/functions/functions.php:1836 #, php-format -msgid "great ×%d nephew" -msgstr "%dx achterneef" +msgid "great ×%s nephew" +msgstr "%sx achterneef" #: includes/functions/functions.php:1797 #, php-format -msgctxt "(a man’s) brother’s great ×(%d-1) grandson" -msgid "great ×%d nephew" -msgstr "%dx achterneef" +msgctxt "(a man’s) brother’s great ×(%s-1) grandson" +msgid "great ×%s nephew" +msgstr "%sx achterneef" #: includes/functions/functions.php:1799 #, php-format -msgctxt "(a man’s) sister’s great ×(%d-1) grandson" -msgid "great ×%d nephew" -msgstr "%dx achterneef" +msgctxt "(a man’s) sister’s great ×(%s-1) grandson" +msgid "great ×%s nephew" +msgstr "%sx achterneef" #: includes/functions/functions.php:1801 #, php-format -msgctxt "(a woman’s) great ×%d nephew" -msgid "great ×%d nephew" -msgstr "%dx achterneef" +msgctxt "(a woman’s) great ×%s nephew" +msgid "great ×%s nephew" +msgstr "%sx achterneef" #: includes/functions/functions.php:1827 includes/functions/functions.php:1840 #, php-format -msgid "great ×%d nephew/niece" -msgstr "%dx achterneef/achternicht" +msgid "great ×%s nephew/niece" +msgstr "%sx achterneef/achternicht" #: includes/functions/functions.php:1813 #, php-format -msgctxt "(a man’s) brother’s great ×(%d-1) grandchild" -msgid "great ×%d nephew/niece" -msgstr "%dx achterneef/achternicht" +msgctxt "(a man’s) brother’s great ×(%s-1) grandchild" +msgid "great ×%s nephew/niece" +msgstr "%sx achterneef/achternicht" #: includes/functions/functions.php:1815 #, php-format -msgctxt "(a man’s) sister’s great ×(%d-1) grandchild" -msgid "great ×%d nephew/niece" -msgstr "%dx achterneef/achternicht" +msgctxt "(a man’s) sister’s great ×(%s-1) grandchild" +msgid "great ×%s nephew/niece" +msgstr "%sx achterneef/achternicht" #: includes/functions/functions.php:1817 #, php-format -msgctxt "(a woman’s) great ×%d nephew/niece" -msgid "great ×%d nephew/niece" -msgstr "%dx achterneef/achternicht" +msgctxt "(a woman’s) great ×%s nephew/niece" +msgid "great ×%s nephew/niece" +msgstr "%sx achterneef/achternicht" #: includes/functions/functions.php:1825 includes/functions/functions.php:1838 #, php-format -msgid "great ×%d niece" -msgstr "%dx achternicht" +msgid "great ×%s niece" +msgstr "%sx achternicht" #: includes/functions/functions.php:1805 #, php-format -msgctxt "(a man’s) brother’s great ×(%d-1) granddaughter" -msgid "great ×%d niece" -msgstr "%dx achternicht" +msgctxt "(a man’s) brother’s great ×(%s-1) granddaughter" +msgid "great ×%s niece" +msgstr "%sx achternicht" #: includes/functions/functions.php:1807 #, php-format -msgctxt "(a man’s) sister’s great ×(%d-1) granddaughter" -msgid "great ×%d niece" -msgstr "%dx achternicht" +msgctxt "(a man’s) sister’s great ×(%s-1) granddaughter" +msgid "great ×%s niece" +msgstr "%sx achternicht" #: includes/functions/functions.php:1809 #, php-format -msgctxt "(a woman’s) great ×%d niece" -msgid "great ×%d niece" -msgstr "%dx achternicht" +msgctxt "(a woman’s) great ×%s niece" +msgid "great ×%s niece" +msgstr "%sx achternicht" -#. I18N: if you need a different number for %d, contact the developers, as a code-change is required +#. I18N: if you need a different number for %s, contact the developers, as a code-change is required #: includes/functions/functions.php:1637 includes/functions/functions.php:1665 #, php-format -msgid "great ×%d uncle" -msgstr "%dx oudoom" +msgid "great ×%s uncle" +msgstr "%sx oudoom" #: includes/functions/functions.php:1647 #, php-format -msgctxt "great ×(%d-1) grandfather’s brother" -msgid "great ×%d uncle" -msgstr "%dx oudoom" +msgctxt "great ×(%s-1) grandfather’s brother" +msgid "great ×%s uncle" +msgstr "%sx oudoom" #: includes/functions/functions.php:1649 #, php-format -msgctxt "great ×(%d-1) grandmother’s brother" -msgid "great ×%d uncle" -msgstr "%dx oudoom" +msgctxt "great ×(%s-1) grandmother’s brother" +msgid "great ×%s uncle" +msgstr "%sx oudoom" #: includes/functions/functions.php:1651 #, php-format -msgctxt "great ×(%d-1) grandparent’s brother" -msgid "great ×%d uncle" -msgstr "%dx oudoom" +msgctxt "great ×(%s-1) grandparent’s brother" +msgid "great ×%s uncle" +msgstr "%sx oudoom" #: includes/functions/functions.php:1579 msgid "great ×4 aunt" @@ -18570,10 +18570,10 @@ msgstr "maximum" #: app/Module/UpcomingAnniversariesModule.php:125 #: app/Module/YahrzeitModule.php:250 #, php-format -msgid "maximum %d day" -msgid_plural "maximum %d days" -msgstr[0] "maximum %d dag" -msgstr[1] "maximum %d dagen" +msgid "maximum %s day" +msgid_plural "maximum %s days" +msgstr[0] "maximum %s dag" +msgstr[1] "maximum %s dagen" #: admin_trees_config.php:404 admin_trees_config.php:428 #: admin_trees_config.php:468 admin_trees_config.php:508 diff --git a/language/nn.po b/language/nn.po index 24a227aa76..6adedb33eb 100644 --- a/language/nn.po +++ b/language/nn.po @@ -191,50 +191,50 @@ msgstr "%H:%i:%s" #: app/Module/LoggedInUsersModule.php:51 app/Stats.php:5372 #, php-format -msgid "%d anonymous logged-in user" -msgid_plural "%d anonymous logged-in users" -msgstr[0] "%d anonym brukar logga på" -msgstr[1] "%d anonyme brukarar logga på" +msgid "%s anonymous logged-in user" +msgid_plural "%s anonymous logged-in users" +msgstr[0] "%s anonym brukar logga på" +msgstr[1] "%s anonyme brukarar logga på" #: app/Module/LoggedInUsersModule.php:57 app/Stats.php:5382 #, php-format -msgid "%d logged-in user" -msgid_plural "%d logged-in users" -msgstr[0] "%d brukar logga inn" -msgstr[1] "%d brukarar logga inn" +msgid "%s logged-in user" +msgid_plural "%s logged-in users" +msgstr[0] "%s brukar logga inn" +msgstr[1] "%s brukarar logga inn" #: app/Module/RelativesTabModule.php:62 #, php-format -msgid "%d month" -msgid_plural "%d months" -msgstr[0] "%d månad" -msgstr[1] "%d månader" +msgid "%s month" +msgid_plural "%s months" +msgstr[0] "%s månad" +msgstr[1] "%s månader" #: app/Module/RelativesTabModule.php:60 #, php-format -msgid "%d year" -msgid_plural "%d years" -msgstr[0] "%d år" -msgstr[1] "%d år" +msgid "%s year" +msgid_plural "%s years" +msgstr[0] "%s år" +msgstr[1] "%s år" #: includes/functions/functions.php:555 #, php-format msgctxt "FEMALE" -msgid "%d × cousin" -msgstr "%d menning" +msgid "%s × cousin" +msgstr "%s menning" #. I18N: Note that for Italian and Polish, “N’th cousins” are different from English “N’th cousins”, and the software has already generated the correct “N” for your language. You only need to translate - you do not need to convert. For other languages, if your cousin rules are different from English, please contact the developers. #: includes/functions/functions.php:520 #, php-format msgctxt "MALE" -msgid "%d × cousin" -msgstr "%d menning" +msgid "%s × cousin" +msgstr "%s menning" #: includes/functions/functions.php:590 #, php-format msgctxt "MALE/FEMALE" -msgid "%d × cousin" -msgstr "%d menning" +msgid "%s × cousin" +msgstr "%s menning" #. I18N: This is the format string for full dates. See http://php.net/date for codes #: app/Date.php:222 app/I18N.php:212 @@ -14305,8 +14305,8 @@ msgstr "Denne serveren støttar ikkje sikker nedlasting via HTTPS." #: setup.php:183 #, php-format -msgid "This server’s memory limit is %d MB and its CPU time limit is %d seconds." -msgstr "Serveren si minnegrense er på %dMB og CPU-tidsgrensa er på %d sekund." +msgid "This server’s memory limit is %s MB and its CPU time limit is %s seconds." +msgstr "Serveren si minnegrense er på %sMB og CPU-tidsgrensa er på %s sekund." #. I18N: Help text for the “Other facts to show in charts” configuration setting #: admin_trees_config.php:1632 @@ -16981,146 +16981,146 @@ msgstr "sonesons hustru" #: includes/functions/functions.php:1639 includes/functions/functions.php:1654 #: includes/functions/functions.php:1667 #, php-format -msgid "great ×%d aunt" -msgstr "%d× grandtante" +msgid "great ×%s aunt" +msgstr "%s× grandtante" #: includes/functions/functions.php:1641 includes/functions/functions.php:1656 #: includes/functions/functions.php:1669 #, php-format -msgid "great ×%d aunt/uncle" -msgstr "%d× grandonkel/-tante" +msgid "great ×%s aunt/uncle" +msgstr "%s× grandonkel/-tante" #: includes/functions/functions.php:2042 includes/functions/functions.php:2057 #, php-format -msgid "great ×%d grandchild" -msgstr "%d× tippoldebarn" +msgid "great ×%s grandchild" +msgstr "%s× tippoldebarn" #: includes/functions/functions.php:2040 includes/functions/functions.php:2055 #, php-format -msgid "great ×%d granddaughter" -msgstr "%d× tippoldebarn" +msgid "great ×%s granddaughter" +msgstr "%s× tippoldebarn" -#. I18N: if you need a different number for %d, contact the developers, as a code-change is required +#. I18N: if you need a different number for %s, contact the developers, as a code-change is required #: includes/functions/functions.php:1912 includes/functions/functions.php:1922 #: includes/functions/functions.php:1932 includes/functions/functions.php:1942 #: includes/functions/functions.php:1954 #, php-format -msgid "great ×%d grandfather" -msgstr "%d× tippoldefar" +msgid "great ×%s grandfather" +msgstr "%s× tippoldefar" #: includes/functions/functions.php:1914 includes/functions/functions.php:1924 #: includes/functions/functions.php:1934 includes/functions/functions.php:1944 #: includes/functions/functions.php:1956 #, php-format -msgid "great ×%d grandmother" -msgstr "%d× tippoldemor" +msgid "great ×%s grandmother" +msgstr "%s× tippoldemor" #: includes/functions/functions.php:1916 includes/functions/functions.php:1926 #: includes/functions/functions.php:1936 includes/functions/functions.php:1946 #: includes/functions/functions.php:1958 #, php-format -msgid "great ×%d grandparent" -msgstr "%d× tippoldeforelder" +msgid "great ×%s grandparent" +msgstr "%s× tippoldeforelder" -#. I18N: if you need a different number for %d, contact the developers, as a code-change is required +#. I18N: if you need a different number for %s, contact the developers, as a code-change is required #: includes/functions/functions.php:2038 includes/functions/functions.php:2053 #, php-format -msgid "great ×%d grandson" -msgstr "%d× tippoldebarn" +msgid "great ×%s grandson" +msgstr "%s× tippoldebarn" -#. I18N: if you need a different number for %d, contact the developers, as a code-change is required +#. I18N: if you need a different number for %s, contact the developers, as a code-change is required #: includes/functions/functions.php:1823 includes/functions/functions.php:1836 #, php-format -msgid "great ×%d nephew" -msgstr "%d× grandnevø" +msgid "great ×%s nephew" +msgstr "%s× grandnevø" #: includes/functions/functions.php:1797 #, php-format -msgctxt "(a man’s) brother’s great ×(%d-1) grandson" -msgid "great ×%d nephew" -msgstr "%d× grandnevø" +msgctxt "(a man’s) brother’s great ×(%s-1) grandson" +msgid "great ×%s nephew" +msgstr "%s× grandnevø" #: includes/functions/functions.php:1799 #, php-format -msgctxt "(a man’s) sister’s great ×(%d-1) grandson" -msgid "great ×%d nephew" -msgstr "%d× grandnevø" +msgctxt "(a man’s) sister’s great ×(%s-1) grandson" +msgid "great ×%s nephew" +msgstr "%s× grandnevø" #: includes/functions/functions.php:1801 #, php-format -msgctxt "(a woman’s) great ×%d nephew" -msgid "great ×%d nephew" -msgstr "%d× grandnevø" +msgctxt "(a woman’s) great ×%s nephew" +msgid "great ×%s nephew" +msgstr "%s× grandnevø" #: includes/functions/functions.php:1827 includes/functions/functions.php:1840 #, php-format -msgid "great ×%d nephew/niece" -msgstr "%d× grandnevø/-niese" +msgid "great ×%s nephew/niece" +msgstr "%s× grandnevø/-niese" #: includes/functions/functions.php:1813 #, php-format -msgctxt "(a man’s) brother’s great ×(%d-1) grandchild" -msgid "great ×%d nephew/niece" -msgstr "%d× grandnevø/-niese" +msgctxt "(a man’s) brother’s great ×(%s-1) grandchild" +msgid "great ×%s nephew/niece" +msgstr "%s× grandnevø/-niese" #: includes/functions/functions.php:1815 #, php-format -msgctxt "(a man’s) sister’s great ×(%d-1) grandchild" -msgid "great ×%d nephew/niece" -msgstr "%d× grandnevø/-niese" +msgctxt "(a man’s) sister’s great ×(%s-1) grandchild" +msgid "great ×%s nephew/niece" +msgstr "%s× grandnevø/-niese" #: includes/functions/functions.php:1817 #, php-format -msgctxt "(a woman’s) great ×%d nephew/niece" -msgid "great ×%d nephew/niece" -msgstr "%d× grandnevø/-niese" +msgctxt "(a woman’s) great ×%s nephew/niece" +msgid "great ×%s nephew/niece" +msgstr "%s× grandnevø/-niese" #: includes/functions/functions.php:1825 includes/functions/functions.php:1838 #, php-format -msgid "great ×%d niece" -msgstr "%d× grandniese" +msgid "great ×%s niece" +msgstr "%s× grandniese" #: includes/functions/functions.php:1805 #, php-format -msgctxt "(a man’s) brother’s great ×(%d-1) granddaughter" -msgid "great ×%d niece" -msgstr "%d× grandniese" +msgctxt "(a man’s) brother’s great ×(%s-1) granddaughter" +msgid "great ×%s niece" +msgstr "%s× grandniese" #: includes/functions/functions.php:1807 #, php-format -msgctxt "(a man’s) sister’s great ×(%d-1) granddaughter" -msgid "great ×%d niece" -msgstr "%d× grandniese" +msgctxt "(a man’s) sister’s great ×(%s-1) granddaughter" +msgid "great ×%s niece" +msgstr "%s× grandniese" #: includes/functions/functions.php:1809 #, php-format -msgctxt "(a woman’s) great ×%d niece" -msgid "great ×%d niece" -msgstr "%d× grandniese" +msgctxt "(a woman’s) great ×%s niece" +msgid "great ×%s niece" +msgstr "%s× grandniese" -#. I18N: if you need a different number for %d, contact the developers, as a code-change is required +#. I18N: if you need a different number for %s, contact the developers, as a code-change is required #: includes/functions/functions.php:1637 includes/functions/functions.php:1665 #, php-format -msgid "great ×%d uncle" -msgstr "%d× grandonkel" +msgid "great ×%s uncle" +msgstr "%s× grandonkel" #: includes/functions/functions.php:1647 #, php-format -msgctxt "great ×(%d-1) grandfather’s brother" -msgid "great ×%d uncle" -msgstr "%d× grandonkel" +msgctxt "great ×(%s-1) grandfather’s brother" +msgid "great ×%s uncle" +msgstr "%s× grandonkel" #: includes/functions/functions.php:1649 #, php-format -msgctxt "great ×(%d-1) grandmother’s brother" -msgid "great ×%d uncle" -msgstr "%d× grandonkel" +msgctxt "great ×(%s-1) grandmother’s brother" +msgid "great ×%s uncle" +msgstr "%s× grandonkel" #: includes/functions/functions.php:1651 #, php-format -msgctxt "great ×(%d-1) grandparent’s brother" -msgid "great ×%d uncle" -msgstr "%d× grandonkel" +msgctxt "great ×(%s-1) grandparent’s brother" +msgid "great ×%s uncle" +msgstr "%s× grandonkel" #: includes/functions/functions.php:1579 msgid "great ×4 aunt" @@ -18570,10 +18570,10 @@ msgstr "maksimum" #: app/Module/UpcomingAnniversariesModule.php:125 #: app/Module/YahrzeitModule.php:250 #, php-format -msgid "maximum %d day" -msgid_plural "maximum %d days" -msgstr[0] "maks %d dag" -msgstr[1] "maks %d dagar" +msgid "maximum %s day" +msgid_plural "maximum %s days" +msgstr[0] "maks %s dag" +msgstr[1] "maks %s dagar" #: admin_trees_config.php:404 admin_trees_config.php:428 #: admin_trees_config.php:468 admin_trees_config.php:508 @@ -20093,10 +20093,10 @@ msgstr "…" #~ msgid "No other link between the two individuals could be found." #~ msgstr "Ingen annan forbindelse mellom dei to personane vart funne." -#~ msgid "Note: “living” is defined (if no death or burial is known) as ending %d year after birth or estimated birth." -#~ msgid_plural "Note: “living” is defined (if no death or burial is known) as ending %d years after birth or estimated birth." -#~ msgstr[0] "NB: “nolevande” vert definert (om død eller gravlegging ikkje er kjent) fram til %d år etter fødsel eller utrekna fødsel." -#~ msgstr[1] "NB: “nolevande” vert definert (om død eller gravlegging ikkje er kjent) fram til %d år etter fødsel eller utrekna fødsel." +#~ msgid "Note: “living” is defined (if no death or burial is known) as ending %s year after birth or estimated birth." +#~ msgid_plural "Note: “living” is defined (if no death or burial is known) as ending %s years after birth or estimated birth." +#~ msgstr[0] "NB: “nolevande” vert definert (om død eller gravlegging ikkje er kjent) fram til %s år etter fødsel eller utrekna fødsel." +#~ msgstr[1] "NB: “nolevande” vert definert (om død eller gravlegging ikkje er kjent) fram til %s år etter fødsel eller utrekna fødsel." #~ msgid "Notes are free-form text and will appear in the Fact Details section of the page." #~ msgstr "Notatar er tekst i fri form og vil synast i faktafelta og under fana Notatar." diff --git a/language/oc.po b/language/oc.po index 422f2c1f3b..60cd6f0734 100644 --- a/language/oc.po +++ b/language/oc.po @@ -187,49 +187,49 @@ msgstr "" #: app/Module/LoggedInUsersModule.php:51 app/Stats.php:5372 #, php-format -msgid "%d anonymous logged-in user" -msgid_plural "%d anonymous logged-in users" +msgid "%s anonymous logged-in user" +msgid_plural "%s anonymous logged-in users" msgstr[0] "" msgstr[1] "" #: app/Module/LoggedInUsersModule.php:57 app/Stats.php:5382 #, php-format -msgid "%d logged-in user" -msgid_plural "%d logged-in users" +msgid "%s logged-in user" +msgid_plural "%s logged-in users" msgstr[0] "" msgstr[1] "" #: app/Module/RelativesTabModule.php:62 #, php-format -msgid "%d month" -msgid_plural "%d months" +msgid "%s month" +msgid_plural "%s months" msgstr[0] "" msgstr[1] "" #: app/Module/RelativesTabModule.php:60 #, php-format -msgid "%d year" -msgid_plural "%d years" +msgid "%s year" +msgid_plural "%s years" msgstr[0] "" msgstr[1] "" #: includes/functions/functions.php:555 #, php-format msgctxt "FEMALE" -msgid "%d × cousin" +msgid "%s × cousin" msgstr "" #. I18N: Note that for Italian and Polish, “N’th cousins” are different from English “N’th cousins”, and the software has already generated the correct “N” for your language. You only need to translate - you do not need to convert. For other languages, if your cousin rules are different from English, please contact the developers. #: includes/functions/functions.php:520 #, php-format msgctxt "MALE" -msgid "%d × cousin" +msgid "%s × cousin" msgstr "" #: includes/functions/functions.php:590 #, php-format msgctxt "MALE/FEMALE" -msgid "%d × cousin" +msgid "%s × cousin" msgstr "" #. I18N: This is the format string for full dates. See http://php.net/date for codes @@ -14301,7 +14301,7 @@ msgstr "" #: setup.php:183 #, php-format -msgid "This server’s memory limit is %d MB and its CPU time limit is %d seconds." +msgid "This server’s memory limit is %s MB and its CPU time limit is %s seconds." msgstr "" #. I18N: Help text for the “Other facts to show in charts” configuration setting @@ -16977,145 +16977,145 @@ msgstr "" #: includes/functions/functions.php:1639 includes/functions/functions.php:1654 #: includes/functions/functions.php:1667 #, php-format -msgid "great ×%d aunt" +msgid "great ×%s aunt" msgstr "" #: includes/functions/functions.php:1641 includes/functions/functions.php:1656 #: includes/functions/functions.php:1669 #, php-format -msgid "great ×%d aunt/uncle" +msgid "great ×%s aunt/uncle" msgstr "" #: includes/functions/functions.php:2042 includes/functions/functions.php:2057 #, php-format -msgid "great ×%d grandchild" +msgid "great ×%s grandchild" msgstr "" #: includes/functions/functions.php:2040 includes/functions/functions.php:2055 #, php-format -msgid "great ×%d granddaughter" +msgid "great ×%s granddaughter" msgstr "" -#. I18N: if you need a different number for %d, contact the developers, as a code-change is required +#. I18N: if you need a different number for %s, contact the developers, as a code-change is required #: includes/functions/functions.php:1912 includes/functions/functions.php:1922 #: includes/functions/functions.php:1932 includes/functions/functions.php:1942 #: includes/functions/functions.php:1954 #, php-format -msgid "great ×%d grandfather" +msgid "great ×%s grandfather" msgstr "" #: includes/functions/functions.php:1914 includes/functions/functions.php:1924 #: includes/functions/functions.php:1934 includes/functions/functions.php:1944 #: includes/functions/functions.php:1956 #, php-format -msgid "great ×%d grandmother" +msgid "great ×%s grandmother" msgstr "" #: includes/functions/functions.php:1916 includes/functions/functions.php:1926 #: includes/functions/functions.php:1936 includes/functions/functions.php:1946 #: includes/functions/functions.php:1958 #, php-format -msgid "great ×%d grandparent" +msgid "great ×%s grandparent" msgstr "" -#. I18N: if you need a different number for %d, contact the developers, as a code-change is required +#. I18N: if you need a different number for %s, contact the developers, as a code-change is required #: includes/functions/functions.php:2038 includes/functions/functions.php:2053 #, php-format -msgid "great ×%d grandson" +msgid "great ×%s grandson" msgstr "" -#. I18N: if you need a different number for %d, contact the developers, as a code-change is required +#. I18N: if you need a different number for %s, contact the developers, as a code-change is required #: includes/functions/functions.php:1823 includes/functions/functions.php:1836 #, php-format -msgid "great ×%d nephew" +msgid "great ×%s nephew" msgstr "" #: includes/functions/functions.php:1797 #, php-format -msgctxt "(a man’s) brother’s great ×(%d-1) grandson" -msgid "great ×%d nephew" +msgctxt "(a man’s) brother’s great ×(%s-1) grandson" +msgid "great ×%s nephew" msgstr "" #: includes/functions/functions.php:1799 #, php-format -msgctxt "(a man’s) sister’s great ×(%d-1) grandson" -msgid "great ×%d nephew" +msgctxt "(a man’s) sister’s great ×(%s-1) grandson" +msgid "great ×%s nephew" msgstr "" #: includes/functions/functions.php:1801 #, php-format -msgctxt "(a woman’s) great ×%d nephew" -msgid "great ×%d nephew" +msgctxt "(a woman’s) great ×%s nephew" +msgid "great ×%s nephew" msgstr "" #: includes/functions/functions.php:1827 includes/functions/functions.php:1840 #, php-format -msgid "great ×%d nephew/niece" +msgid "great ×%s nephew/niece" msgstr "" #: includes/functions/functions.php:1813 #, php-format -msgctxt "(a man’s) brother’s great ×(%d-1) grandchild" -msgid "great ×%d nephew/niece" +msgctxt "(a man’s) brother’s great ×(%s-1) grandchild" +msgid "great ×%s nephew/niece" msgstr "" #: includes/functions/functions.php:1815 #, php-format -msgctxt "(a man’s) sister’s great ×(%d-1) grandchild" -msgid "great ×%d nephew/niece" +msgctxt "(a man’s) sister’s great ×(%s-1) grandchild" +msgid "great ×%s nephew/niece" msgstr "" #: includes/functions/functions.php:1817 #, php-format -msgctxt "(a woman’s) great ×%d nephew/niece" -msgid "great ×%d nephew/niece" +msgctxt "(a woman’s) great ×%s nephew/niece" +msgid "great ×%s nephew/niece" msgstr "" #: includes/functions/functions.php:1825 includes/functions/functions.php:1838 #, php-format -msgid "great ×%d niece" +msgid "great ×%s niece" msgstr "" #: includes/functions/functions.php:1805 #, php-format -msgctxt "(a man’s) brother’s great ×(%d-1) granddaughter" -msgid "great ×%d niece" +msgctxt "(a man’s) brother’s great ×(%s-1) granddaughter" +msgid "great ×%s niece" msgstr "" #: includes/functions/functions.php:1807 #, php-format -msgctxt "(a man’s) sister’s great ×(%d-1) granddaughter" -msgid "great ×%d niece" +msgctxt "(a man’s) sister’s great ×(%s-1) granddaughter" +msgid "great ×%s niece" msgstr "" #: includes/functions/functions.php:1809 #, php-format -msgctxt "(a woman’s) great ×%d niece" -msgid "great ×%d niece" +msgctxt "(a woman’s) great ×%s niece" +msgid "great ×%s niece" msgstr "" -#. I18N: if you need a different number for %d, contact the developers, as a code-change is required +#. I18N: if you need a different number for %s, contact the developers, as a code-change is required #: includes/functions/functions.php:1637 includes/functions/functions.php:1665 #, php-format -msgid "great ×%d uncle" +msgid "great ×%s uncle" msgstr "" #: includes/functions/functions.php:1647 #, php-format -msgctxt "great ×(%d-1) grandfather’s brother" -msgid "great ×%d uncle" +msgctxt "great ×(%s-1) grandfather’s brother" +msgid "great ×%s uncle" msgstr "" #: includes/functions/functions.php:1649 #, php-format -msgctxt "great ×(%d-1) grandmother’s brother" -msgid "great ×%d uncle" +msgctxt "great ×(%s-1) grandmother’s brother" +msgid "great ×%s uncle" msgstr "" #: includes/functions/functions.php:1651 #, php-format -msgctxt "great ×(%d-1) grandparent’s brother" -msgid "great ×%d uncle" +msgctxt "great ×(%s-1) grandparent’s brother" +msgid "great ×%s uncle" msgstr "" #: includes/functions/functions.php:1579 @@ -18566,8 +18566,8 @@ msgstr "" #: app/Module/UpcomingAnniversariesModule.php:125 #: app/Module/YahrzeitModule.php:250 #, php-format -msgid "maximum %d day" -msgid_plural "maximum %d days" +msgid "maximum %s day" +msgid_plural "maximum %s days" msgstr[0] "" msgstr[1] "" diff --git a/language/pl.po b/language/pl.po index eb2c936e59..6441abb031 100644 --- a/language/pl.po +++ b/language/pl.po @@ -193,54 +193,54 @@ msgstr "%G:%i:%s" #: app/Module/LoggedInUsersModule.php:51 app/Stats.php:5372 #, php-format -msgid "%d anonymous logged-in user" -msgid_plural "%d anonymous logged-in users" -msgstr[0] "%d zalogowany anoniomowo użytkownik" -msgstr[1] "%d zalogowanych anoniomowo użytkowników" -msgstr[2] "%d zalogowanych anoniomowo użytkowników" +msgid "%s anonymous logged-in user" +msgid_plural "%s anonymous logged-in users" +msgstr[0] "%s zalogowany anoniomowo użytkownik" +msgstr[1] "%s zalogowanych anoniomowo użytkowników" +msgstr[2] "%s zalogowanych anoniomowo użytkowników" #: app/Module/LoggedInUsersModule.php:57 app/Stats.php:5382 #, php-format -msgid "%d logged-in user" -msgid_plural "%d logged-in users" -msgstr[0] "%d zalogowany użytkownik" -msgstr[1] "%d zalogowanych użytkowników" -msgstr[2] "%d zalogowanych użytkowników" +msgid "%s logged-in user" +msgid_plural "%s logged-in users" +msgstr[0] "%s zalogowany użytkownik" +msgstr[1] "%s zalogowanych użytkowników" +msgstr[2] "%s zalogowanych użytkowników" #: app/Module/RelativesTabModule.php:62 #, php-format -msgid "%d month" -msgid_plural "%d months" -msgstr[0] "%d miesiąc" -msgstr[1] "%d miesiące" -msgstr[2] "%d miesięcy" +msgid "%s month" +msgid_plural "%s months" +msgstr[0] "%s miesiąc" +msgstr[1] "%s miesiące" +msgstr[2] "%s miesięcy" #: app/Module/RelativesTabModule.php:60 #, php-format -msgid "%d year" -msgid_plural "%d years" -msgstr[0] "%d rok" -msgstr[1] "%d lata" -msgstr[2] "%d lat" +msgid "%s year" +msgid_plural "%s years" +msgstr[0] "%s rok" +msgstr[1] "%s lata" +msgstr[2] "%s lat" #: includes/functions/functions.php:555 #, php-format msgctxt "FEMALE" -msgid "%d × cousin" -msgstr "kuzynka %d stopnia" +msgid "%s × cousin" +msgstr "kuzynka %s stopnia" #. I18N: Note that for Italian and Polish, “N’th cousins” are different from English “N’th cousins”, and the software has already generated the correct “N” for your language. You only need to translate - you do not need to convert. For other languages, if your cousin rules are different from English, please contact the developers. #: includes/functions/functions.php:520 #, php-format msgctxt "MALE" -msgid "%d × cousin" -msgstr "kuzyn %d stopnia" +msgid "%s × cousin" +msgstr "kuzyn %s stopnia" #: includes/functions/functions.php:590 #, php-format msgctxt "MALE/FEMALE" -msgid "%d × cousin" -msgstr "kuzyn(ka) %d stopnia" +msgid "%s × cousin" +msgstr "kuzyn(ka) %s stopnia" #. I18N: This is the format string for full dates. See http://php.net/date for codes #: app/Date.php:222 app/I18N.php:212 @@ -14339,8 +14339,8 @@ msgstr "Ten serwer nie obsługuje bezpiecznego pobierania za pomocą protokołu #: setup.php:183 #, php-format -msgid "This server’s memory limit is %d MB and its CPU time limit is %d seconds." -msgstr "Limit pamięci tego serwera wynosi %dMB, a limit czasu procesora wynosi %d sekund." +msgid "This server’s memory limit is %s MB and its CPU time limit is %s seconds." +msgstr "Limit pamięci tego serwera wynosi %sMB, a limit czasu procesora wynosi %s sekund." #. I18N: Help text for the “Other facts to show in charts” configuration setting #: admin_trees_config.php:1632 @@ -17020,146 +17020,146 @@ msgstr "żona wnuka" #: includes/functions/functions.php:1639 includes/functions/functions.php:1654 #: includes/functions/functions.php:1667 #, php-format -msgid "great ×%d aunt" -msgstr "%d× prababcia cioteczna" +msgid "great ×%s aunt" +msgstr "%s× prababcia cioteczna" #: includes/functions/functions.php:1641 includes/functions/functions.php:1656 #: includes/functions/functions.php:1669 #, php-format -msgid "great ×%d aunt/uncle" -msgstr "rodzeństwo %d× pradziadka/prababci" +msgid "great ×%s aunt/uncle" +msgstr "rodzeństwo %s× pradziadka/prababci" #: includes/functions/functions.php:2042 includes/functions/functions.php:2057 #, php-format -msgid "great ×%d grandchild" -msgstr "%d× prawnuczka/prawnuk" +msgid "great ×%s grandchild" +msgstr "%s× prawnuczka/prawnuk" #: includes/functions/functions.php:2040 includes/functions/functions.php:2055 #, php-format -msgid "great ×%d granddaughter" -msgstr "%d× prawnuczka" +msgid "great ×%s granddaughter" +msgstr "%s× prawnuczka" -#. I18N: if you need a different number for %d, contact the developers, as a code-change is required +#. I18N: if you need a different number for %s, contact the developers, as a code-change is required #: includes/functions/functions.php:1912 includes/functions/functions.php:1922 #: includes/functions/functions.php:1932 includes/functions/functions.php:1942 #: includes/functions/functions.php:1954 #, php-format -msgid "great ×%d grandfather" -msgstr "%d× pradziadek" +msgid "great ×%s grandfather" +msgstr "%s× pradziadek" #: includes/functions/functions.php:1914 includes/functions/functions.php:1924 #: includes/functions/functions.php:1934 includes/functions/functions.php:1944 #: includes/functions/functions.php:1956 #, php-format -msgid "great ×%d grandmother" -msgstr "%d× prababcia" +msgid "great ×%s grandmother" +msgstr "%s× prababcia" #: includes/functions/functions.php:1916 includes/functions/functions.php:1926 #: includes/functions/functions.php:1936 includes/functions/functions.php:1946 #: includes/functions/functions.php:1958 #, php-format -msgid "great ×%d grandparent" -msgstr "%d× prababcia/pradziadek" +msgid "great ×%s grandparent" +msgstr "%s× prababcia/pradziadek" -#. I18N: if you need a different number for %d, contact the developers, as a code-change is required +#. I18N: if you need a different number for %s, contact the developers, as a code-change is required #: includes/functions/functions.php:2038 includes/functions/functions.php:2053 #, php-format -msgid "great ×%d grandson" -msgstr "%d× prawnuk" +msgid "great ×%s grandson" +msgstr "%s× prawnuk" -#. I18N: if you need a different number for %d, contact the developers, as a code-change is required +#. I18N: if you need a different number for %s, contact the developers, as a code-change is required #: includes/functions/functions.php:1823 includes/functions/functions.php:1836 #, php-format -msgid "great ×%d nephew" -msgstr "%d× prawnuk stryjeczny/wujeczny/cioteczny" +msgid "great ×%s nephew" +msgstr "%s× prawnuk stryjeczny/wujeczny/cioteczny" #: includes/functions/functions.php:1797 #, php-format -msgctxt "(a man’s) brother’s great ×(%d-1) grandson" -msgid "great ×%d nephew" -msgstr "%d× prawnuk stryjeczny" +msgctxt "(a man’s) brother’s great ×(%s-1) grandson" +msgid "great ×%s nephew" +msgstr "%s× prawnuk stryjeczny" #: includes/functions/functions.php:1799 #, php-format -msgctxt "(a man’s) sister’s great ×(%d-1) grandson" -msgid "great ×%d nephew" -msgstr "%d× prawnuk wujeczny" +msgctxt "(a man’s) sister’s great ×(%s-1) grandson" +msgid "great ×%s nephew" +msgstr "%s× prawnuk wujeczny" #: includes/functions/functions.php:1801 #, php-format -msgctxt "(a woman’s) great ×%d nephew" -msgid "great ×%d nephew" -msgstr "%d× prawnuk cioteczny" +msgctxt "(a woman’s) great ×%s nephew" +msgid "great ×%s nephew" +msgstr "%s× prawnuk cioteczny" #: includes/functions/functions.php:1827 includes/functions/functions.php:1840 #, php-format -msgid "great ×%d nephew/niece" -msgstr "%d× pradziecko stryjeczne/wujeczne/cioteczne" +msgid "great ×%s nephew/niece" +msgstr "%s× pradziecko stryjeczne/wujeczne/cioteczne" #: includes/functions/functions.php:1813 #, php-format -msgctxt "(a man’s) brother’s great ×(%d-1) grandchild" -msgid "great ×%d nephew/niece" -msgstr "%d× pradziecko stryjeczne" +msgctxt "(a man’s) brother’s great ×(%s-1) grandchild" +msgid "great ×%s nephew/niece" +msgstr "%s× pradziecko stryjeczne" #: includes/functions/functions.php:1815 #, php-format -msgctxt "(a man’s) sister’s great ×(%d-1) grandchild" -msgid "great ×%d nephew/niece" -msgstr "%d× pradziecko wujeczne" +msgctxt "(a man’s) sister’s great ×(%s-1) grandchild" +msgid "great ×%s nephew/niece" +msgstr "%s× pradziecko wujeczne" #: includes/functions/functions.php:1817 #, php-format -msgctxt "(a woman’s) great ×%d nephew/niece" -msgid "great ×%d nephew/niece" -msgstr "%d× pradziecko cioteczne" +msgctxt "(a woman’s) great ×%s nephew/niece" +msgid "great ×%s nephew/niece" +msgstr "%s× pradziecko cioteczne" #: includes/functions/functions.php:1825 includes/functions/functions.php:1838 #, php-format -msgid "great ×%d niece" -msgstr "%d× prawnuczka stryjeczna/wujeczna/cioteczna" +msgid "great ×%s niece" +msgstr "%s× prawnuczka stryjeczna/wujeczna/cioteczna" #: includes/functions/functions.php:1805 #, php-format -msgctxt "(a man’s) brother’s great ×(%d-1) granddaughter" -msgid "great ×%d niece" -msgstr "%d× prawnuczka stryjeczna" +msgctxt "(a man’s) brother’s great ×(%s-1) granddaughter" +msgid "great ×%s niece" +msgstr "%s× prawnuczka stryjeczna" #: includes/functions/functions.php:1807 #, php-format -msgctxt "(a man’s) sister’s great ×(%d-1) granddaughter" -msgid "great ×%d niece" -msgstr "%d× prawnuczka wujeczna" +msgctxt "(a man’s) sister’s great ×(%s-1) granddaughter" +msgid "great ×%s niece" +msgstr "%s× prawnuczka wujeczna" #: includes/functions/functions.php:1809 #, php-format -msgctxt "(a woman’s) great ×%d niece" -msgid "great ×%d niece" -msgstr "%d× prawnuczka cioteczna" +msgctxt "(a woman’s) great ×%s niece" +msgid "great ×%s niece" +msgstr "%s× prawnuczka cioteczna" -#. I18N: if you need a different number for %d, contact the developers, as a code-change is required +#. I18N: if you need a different number for %s, contact the developers, as a code-change is required #: includes/functions/functions.php:1637 includes/functions/functions.php:1665 #, php-format -msgid "great ×%d uncle" -msgstr "%d× pradziadek stryjeczny/wujeczny" +msgid "great ×%s uncle" +msgstr "%s× pradziadek stryjeczny/wujeczny" #: includes/functions/functions.php:1647 #, php-format -msgctxt "great ×(%d-1) grandfather’s brother" -msgid "great ×%d uncle" -msgstr "%d× pradziadek stryjeczny" +msgctxt "great ×(%s-1) grandfather’s brother" +msgid "great ×%s uncle" +msgstr "%s× pradziadek stryjeczny" #: includes/functions/functions.php:1649 #, php-format -msgctxt "great ×(%d-1) grandmother’s brother" -msgid "great ×%d uncle" -msgstr "%d× pradziadek wujeczny" +msgctxt "great ×(%s-1) grandmother’s brother" +msgid "great ×%s uncle" +msgstr "%s× pradziadek wujeczny" #: includes/functions/functions.php:1651 #, php-format -msgctxt "great ×(%d-1) grandparent’s brother" -msgid "great ×%d uncle" -msgstr "%d× pradziadek stryjeczny/wujeczny" +msgctxt "great ×(%s-1) grandparent’s brother" +msgid "great ×%s uncle" +msgstr "%s× pradziadek stryjeczny/wujeczny" #: includes/functions/functions.php:1579 msgid "great ×4 aunt" @@ -18610,11 +18610,11 @@ msgstr "maksimum" #: app/Module/UpcomingAnniversariesModule.php:125 #: app/Module/YahrzeitModule.php:250 #, php-format -msgid "maximum %d day" -msgid_plural "maximum %d days" -msgstr[0] "maksymalnie %d dzień" -msgstr[1] "maksymalnie %d dni" -msgstr[2] "maksymalnie %d dni" +msgid "maximum %s day" +msgid_plural "maximum %s days" +msgstr[0] "maksymalnie %s dzień" +msgstr[1] "maksymalnie %s dni" +msgstr[2] "maksymalnie %s dni" #: admin_trees_config.php:404 admin_trees_config.php:428 #: admin_trees_config.php:468 admin_trees_config.php:508 @@ -20132,11 +20132,11 @@ msgstr "…" #~ msgid "No other link between the two individuals could be found." #~ msgstr "Nie znaleziono innego powiązania między tymi osobami." -#~ msgid "Note: “living” is defined (if no death or burial is known) as ending %d year after birth or estimated birth." -#~ msgid_plural "Note: “living” is defined (if no death or burial is known) as ending %d years after birth or estimated birth." -#~ msgstr[0] "Uwaga: za osoby żyjące (jeśli data śmierci lub pogrzebu nie jest znana) są uznane osoby, które urodziły się %d rok temu." -#~ msgstr[1] "Uwaga: za osoby żyjące (jeśli data śmierci lub pogrzebu nie jest znana) są uznane osoby, które urodziły się %d lata temu." -#~ msgstr[2] "Uwaga: za osoby żyjące (jeśli data śmierci lub pogrzebu nie jest znana) są uznane osoby, które urodziły się %d lat temu." +#~ msgid "Note: “living” is defined (if no death or burial is known) as ending %s year after birth or estimated birth." +#~ msgid_plural "Note: “living” is defined (if no death or burial is known) as ending %s years after birth or estimated birth." +#~ msgstr[0] "Uwaga: za osoby żyjące (jeśli data śmierci lub pogrzebu nie jest znana) są uznane osoby, które urodziły się %s rok temu." +#~ msgstr[1] "Uwaga: za osoby żyjące (jeśli data śmierci lub pogrzebu nie jest znana) są uznane osoby, które urodziły się %s lata temu." +#~ msgstr[2] "Uwaga: za osoby żyjące (jeśli data śmierci lub pogrzebu nie jest znana) są uznane osoby, które urodziły się %s lat temu." #~ msgid "Notes are free-form text and will appear in the Fact Details section of the page." #~ msgstr "Notatki są tekstem w dowolnej formie, który pojawi się w sekcji „Szczegóły faktu”." diff --git a/language/pt-BR.po b/language/pt-BR.po index 72e9a1e8fd..091aa30368 100644 --- a/language/pt-BR.po +++ b/language/pt-BR.po @@ -189,50 +189,50 @@ msgstr "%G:%i:%s" #: app/Module/LoggedInUsersModule.php:51 app/Stats.php:5372 #, php-format -msgid "%d anonymous logged-in user" -msgid_plural "%d anonymous logged-in users" -msgstr[0] "%d usuário anônimo conectado" -msgstr[1] "%d usuários anônimos conectados" +msgid "%s anonymous logged-in user" +msgid_plural "%s anonymous logged-in users" +msgstr[0] "%s usuário anônimo conectado" +msgstr[1] "%s usuários anônimos conectados" #: app/Module/LoggedInUsersModule.php:57 app/Stats.php:5382 #, php-format -msgid "%d logged-in user" -msgid_plural "%d logged-in users" -msgstr[0] "%d usuário conectado" -msgstr[1] "%d usuários conectados" +msgid "%s logged-in user" +msgid_plural "%s logged-in users" +msgstr[0] "%s usuário conectado" +msgstr[1] "%s usuários conectados" #: app/Module/RelativesTabModule.php:62 #, php-format -msgid "%d month" -msgid_plural "%d months" -msgstr[0] "%d mês" -msgstr[1] "%d meses" +msgid "%s month" +msgid_plural "%s months" +msgstr[0] "%s mês" +msgstr[1] "%s meses" #: app/Module/RelativesTabModule.php:60 #, php-format -msgid "%d year" -msgid_plural "%d years" -msgstr[0] "%d ano" -msgstr[1] "%d anos" +msgid "%s year" +msgid_plural "%s years" +msgstr[0] "%s ano" +msgstr[1] "%s anos" #: includes/functions/functions.php:555 #, php-format msgctxt "FEMALE" -msgid "%d × cousin" -msgstr "prima de %dº grau" +msgid "%s × cousin" +msgstr "prima de %sº grau" #. I18N: Note that for Italian and Polish, “N’th cousins” are different from English “N’th cousins”, and the software has already generated the correct “N” for your language. You only need to translate - you do not need to convert. For other languages, if your cousin rules are different from English, please contact the developers. #: includes/functions/functions.php:520 #, php-format msgctxt "MALE" -msgid "%d × cousin" -msgstr "primo de %dº grau" +msgid "%s × cousin" +msgstr "primo de %sº grau" #: includes/functions/functions.php:590 #, php-format msgctxt "MALE/FEMALE" -msgid "%d × cousin" -msgstr "primo de %dº grau" +msgid "%s × cousin" +msgstr "primo de %sº grau" #. I18N: This is the format string for full dates. See http://php.net/date for codes #: app/Date.php:222 app/I18N.php:212 @@ -14303,8 +14303,8 @@ msgstr "Este servidor não suporta downloads seguros usando HTTPS." #: setup.php:183 #, php-format -msgid "This server’s memory limit is %d MB and its CPU time limit is %d seconds." -msgstr "O limite de memória do servidor é de %dMB e o limite de tempo de processamento é de %d segundos." +msgid "This server’s memory limit is %s MB and its CPU time limit is %s seconds." +msgstr "O limite de memória do servidor é de %sMB e o limite de tempo de processamento é de %s segundos." #. I18N: Help text for the “Other facts to show in charts” configuration setting #: admin_trees_config.php:1632 @@ -16979,146 +16979,146 @@ msgstr "esposa do neto" #: includes/functions/functions.php:1639 includes/functions/functions.php:1654 #: includes/functions/functions.php:1667 #, php-format -msgid "great ×%d aunt" -msgstr "tia %d°-avó" +msgid "great ×%s aunt" +msgstr "tia %s°-avó" #: includes/functions/functions.php:1641 includes/functions/functions.php:1656 #: includes/functions/functions.php:1669 #, php-format -msgid "great ×%d aunt/uncle" -msgstr "tio(a) ×%d avô(ó)" +msgid "great ×%s aunt/uncle" +msgstr "tio(a) ×%s avô(ó)" #: includes/functions/functions.php:2042 includes/functions/functions.php:2057 #, php-format -msgid "great ×%d grandchild" -msgstr "%d° neto" +msgid "great ×%s grandchild" +msgstr "%s° neto" #: includes/functions/functions.php:2040 includes/functions/functions.php:2055 #, php-format -msgid "great ×%d granddaughter" -msgstr "%d° neta" +msgid "great ×%s granddaughter" +msgstr "%s° neta" -#. I18N: if you need a different number for %d, contact the developers, as a code-change is required +#. I18N: if you need a different number for %s, contact the developers, as a code-change is required #: includes/functions/functions.php:1912 includes/functions/functions.php:1922 #: includes/functions/functions.php:1932 includes/functions/functions.php:1942 #: includes/functions/functions.php:1954 #, php-format -msgid "great ×%d grandfather" -msgstr "%d° avô" +msgid "great ×%s grandfather" +msgstr "%s° avô" #: includes/functions/functions.php:1914 includes/functions/functions.php:1924 #: includes/functions/functions.php:1934 includes/functions/functions.php:1944 #: includes/functions/functions.php:1956 #, php-format -msgid "great ×%d grandmother" -msgstr "%d° avó" +msgid "great ×%s grandmother" +msgstr "%s° avó" #: includes/functions/functions.php:1916 includes/functions/functions.php:1926 #: includes/functions/functions.php:1936 includes/functions/functions.php:1946 #: includes/functions/functions.php:1958 #, php-format -msgid "great ×%d grandparent" -msgstr "%d° avô" +msgid "great ×%s grandparent" +msgstr "%s° avô" -#. I18N: if you need a different number for %d, contact the developers, as a code-change is required +#. I18N: if you need a different number for %s, contact the developers, as a code-change is required #: includes/functions/functions.php:2038 includes/functions/functions.php:2053 #, php-format -msgid "great ×%d grandson" -msgstr "×%d neto" +msgid "great ×%s grandson" +msgstr "×%s neto" -#. I18N: if you need a different number for %d, contact the developers, as a code-change is required +#. I18N: if you need a different number for %s, contact the developers, as a code-change is required #: includes/functions/functions.php:1823 includes/functions/functions.php:1836 #, php-format -msgid "great ×%d nephew" -msgstr "sobrinho %d°-neto" +msgid "great ×%s nephew" +msgstr "sobrinho %s°-neto" #: includes/functions/functions.php:1797 #, php-format -msgctxt "(a man’s) brother’s great ×(%d-1) grandson" -msgid "great ×%d nephew" -msgstr "sobrinho %d° neto" +msgctxt "(a man’s) brother’s great ×(%s-1) grandson" +msgid "great ×%s nephew" +msgstr "sobrinho %s° neto" #: includes/functions/functions.php:1799 #, php-format -msgctxt "(a man’s) sister’s great ×(%d-1) grandson" -msgid "great ×%d nephew" -msgstr "sobrinho %d° neto" +msgctxt "(a man’s) sister’s great ×(%s-1) grandson" +msgid "great ×%s nephew" +msgstr "sobrinho %s° neto" #: includes/functions/functions.php:1801 #, php-format -msgctxt "(a woman’s) great ×%d nephew" -msgid "great ×%d nephew" -msgstr "sobrinho %d° neto" +msgctxt "(a woman’s) great ×%s nephew" +msgid "great ×%s nephew" +msgstr "sobrinho %s° neto" #: includes/functions/functions.php:1827 includes/functions/functions.php:1840 #, php-format -msgid "great ×%d nephew/niece" -msgstr "sobrinho(a) %d° neto(a)" +msgid "great ×%s nephew/niece" +msgstr "sobrinho(a) %s° neto(a)" #: includes/functions/functions.php:1813 #, php-format -msgctxt "(a man’s) brother’s great ×(%d-1) grandchild" -msgid "great ×%d nephew/niece" -msgstr "sobrinho(a) %d° neto(a)" +msgctxt "(a man’s) brother’s great ×(%s-1) grandchild" +msgid "great ×%s nephew/niece" +msgstr "sobrinho(a) %s° neto(a)" #: includes/functions/functions.php:1815 #, php-format -msgctxt "(a man’s) sister’s great ×(%d-1) grandchild" -msgid "great ×%d nephew/niece" -msgstr "sobrinho(a) %d° neto(a)" +msgctxt "(a man’s) sister’s great ×(%s-1) grandchild" +msgid "great ×%s nephew/niece" +msgstr "sobrinho(a) %s° neto(a)" #: includes/functions/functions.php:1817 #, php-format -msgctxt "(a woman’s) great ×%d nephew/niece" -msgid "great ×%d nephew/niece" -msgstr "sobrinho(a) %d° neto(a)" +msgctxt "(a woman’s) great ×%s nephew/niece" +msgid "great ×%s nephew/niece" +msgstr "sobrinho(a) %s° neto(a)" #: includes/functions/functions.php:1825 includes/functions/functions.php:1838 #, php-format -msgid "great ×%d niece" -msgstr "sobrinha %d°-neta" +msgid "great ×%s niece" +msgstr "sobrinha %s°-neta" #: includes/functions/functions.php:1805 #, php-format -msgctxt "(a man’s) brother’s great ×(%d-1) granddaughter" -msgid "great ×%d niece" -msgstr "sobrinha %d° neta" +msgctxt "(a man’s) brother’s great ×(%s-1) granddaughter" +msgid "great ×%s niece" +msgstr "sobrinha %s° neta" #: includes/functions/functions.php:1807 #, php-format -msgctxt "(a man’s) sister’s great ×(%d-1) granddaughter" -msgid "great ×%d niece" -msgstr "sobrinha %d° neta" +msgctxt "(a man’s) sister’s great ×(%s-1) granddaughter" +msgid "great ×%s niece" +msgstr "sobrinha %s° neta" #: includes/functions/functions.php:1809 #, php-format -msgctxt "(a woman’s) great ×%d niece" -msgid "great ×%d niece" -msgstr "sobrinha %d° neta" +msgctxt "(a woman’s) great ×%s niece" +msgid "great ×%s niece" +msgstr "sobrinha %s° neta" -#. I18N: if you need a different number for %d, contact the developers, as a code-change is required +#. I18N: if you need a different number for %s, contact the developers, as a code-change is required #: includes/functions/functions.php:1637 includes/functions/functions.php:1665 #, php-format -msgid "great ×%d uncle" -msgstr "tio %d°-avô" +msgid "great ×%s uncle" +msgstr "tio %s°-avô" #: includes/functions/functions.php:1647 #, php-format -msgctxt "great ×(%d-1) grandfather’s brother" -msgid "great ×%d uncle" -msgstr "tio ×%d avô" +msgctxt "great ×(%s-1) grandfather’s brother" +msgid "great ×%s uncle" +msgstr "tio ×%s avô" #: includes/functions/functions.php:1649 #, php-format -msgctxt "great ×(%d-1) grandmother’s brother" -msgid "great ×%d uncle" -msgstr "tia ×%d avó" +msgctxt "great ×(%s-1) grandmother’s brother" +msgid "great ×%s uncle" +msgstr "tia ×%s avó" #: includes/functions/functions.php:1651 #, php-format -msgctxt "great ×(%d-1) grandparent’s brother" -msgid "great ×%d uncle" -msgstr "tio ×%d avô" +msgctxt "great ×(%s-1) grandparent’s brother" +msgid "great ×%s uncle" +msgstr "tio ×%s avô" #: includes/functions/functions.php:1579 msgid "great ×4 aunt" @@ -18568,10 +18568,10 @@ msgstr "máximo" #: app/Module/UpcomingAnniversariesModule.php:125 #: app/Module/YahrzeitModule.php:250 #, php-format -msgid "maximum %d day" -msgid_plural "maximum %d days" -msgstr[0] "máximo de %d dia" -msgstr[1] "máximo de %d dias" +msgid "maximum %s day" +msgid_plural "maximum %s days" +msgstr[0] "máximo de %s dia" +msgstr[1] "máximo de %s dias" #: admin_trees_config.php:404 admin_trees_config.php:428 #: admin_trees_config.php:468 admin_trees_config.php:508 @@ -20082,10 +20082,10 @@ msgstr "…" #~ msgid "No other link between the two individuals could be found." #~ msgstr "Nenhuma ligação foi localizada entre estas duas pessoas." -#~ msgid "Note: “living” is defined (if no death or burial is known) as ending %d year after birth or estimated birth." -#~ msgid_plural "Note: “living” is defined (if no death or burial is known) as ending %d years after birth or estimated birth." -#~ msgstr[0] "Nota: “vivo” é definido (se não é conhecido falecimento ou sepultamento) como findo %d ano após o nascimento ou estimativa de nascimento." -#~ msgstr[1] "Nota: “vivo” é definido (se não é conhecido falecimento ou sepultamento) como findo %d anos após o nascimento ou estimativa de nascimento." +#~ msgid "Note: “living” is defined (if no death or burial is known) as ending %s year after birth or estimated birth." +#~ msgid_plural "Note: “living” is defined (if no death or burial is known) as ending %s years after birth or estimated birth." +#~ msgstr[0] "Nota: “vivo” é definido (se não é conhecido falecimento ou sepultamento) como findo %s ano após o nascimento ou estimativa de nascimento." +#~ msgstr[1] "Nota: “vivo” é definido (se não é conhecido falecimento ou sepultamento) como findo %s anos após o nascimento ou estimativa de nascimento." #~ msgid "Notes are free-form text and will appear in the Fact Details section of the page." #~ msgstr "Notas é um texto livre que é exibido na seção Detalhes do Fato." diff --git a/language/pt.po b/language/pt.po index d833088a1e..81c2383fa9 100644 --- a/language/pt.po +++ b/language/pt.po @@ -190,50 +190,50 @@ msgstr "%G:%i:%s" #: app/Module/LoggedInUsersModule.php:51 app/Stats.php:5372 #, php-format -msgid "%d anonymous logged-in user" -msgid_plural "%d anonymous logged-in users" -msgstr[0] "%d usuário anônimo conectado" -msgstr[1] "%d usuários anônimos conectados" +msgid "%s anonymous logged-in user" +msgid_plural "%s anonymous logged-in users" +msgstr[0] "%s usuário anônimo conectado" +msgstr[1] "%s usuários anônimos conectados" #: app/Module/LoggedInUsersModule.php:57 app/Stats.php:5382 #, php-format -msgid "%d logged-in user" -msgid_plural "%d logged-in users" -msgstr[0] "%d usuário conectado" -msgstr[1] "%d usuários conectados" +msgid "%s logged-in user" +msgid_plural "%s logged-in users" +msgstr[0] "%s usuário conectado" +msgstr[1] "%s usuários conectados" #: app/Module/RelativesTabModule.php:62 #, php-format -msgid "%d month" -msgid_plural "%d months" -msgstr[0] "%d mês" -msgstr[1] "%d meses" +msgid "%s month" +msgid_plural "%s months" +msgstr[0] "%s mês" +msgstr[1] "%s meses" #: app/Module/RelativesTabModule.php:60 #, php-format -msgid "%d year" -msgid_plural "%d years" -msgstr[0] "%d ano" -msgstr[1] "%d anos" +msgid "%s year" +msgid_plural "%s years" +msgstr[0] "%s ano" +msgstr[1] "%s anos" #: includes/functions/functions.php:555 #, php-format msgctxt "FEMALE" -msgid "%d × cousin" -msgstr "prima de %dº grau" +msgid "%s × cousin" +msgstr "prima de %sº grau" #. I18N: Note that for Italian and Polish, “N’th cousins” are different from English “N’th cousins”, and the software has already generated the correct “N” for your language. You only need to translate - you do not need to convert. For other languages, if your cousin rules are different from English, please contact the developers. #: includes/functions/functions.php:520 #, php-format msgctxt "MALE" -msgid "%d × cousin" -msgstr "primo de %dº grau" +msgid "%s × cousin" +msgstr "primo de %sº grau" #: includes/functions/functions.php:590 #, php-format msgctxt "MALE/FEMALE" -msgid "%d × cousin" -msgstr "primo de %dº grau" +msgid "%s × cousin" +msgstr "primo de %sº grau" #. I18N: This is the format string for full dates. See http://php.net/date for codes #: app/Date.php:222 app/I18N.php:212 @@ -14304,8 +14304,8 @@ msgstr "" #: setup.php:183 #, php-format -msgid "This server’s memory limit is %d MB and its CPU time limit is %d seconds." -msgstr "O limite de memória do servidor é de %dMB e o limite de tempo de processamento é de %d segundos." +msgid "This server’s memory limit is %s MB and its CPU time limit is %s seconds." +msgstr "O limite de memória do servidor é de %sMB e o limite de tempo de processamento é de %s segundos." #. I18N: Help text for the “Other facts to show in charts” configuration setting #: admin_trees_config.php:1632 @@ -16980,146 +16980,146 @@ msgstr "esposa do neto" #: includes/functions/functions.php:1639 includes/functions/functions.php:1654 #: includes/functions/functions.php:1667 #, php-format -msgid "great ×%d aunt" -msgstr "tia %d°-avó" +msgid "great ×%s aunt" +msgstr "tia %s°-avó" #: includes/functions/functions.php:1641 includes/functions/functions.php:1656 #: includes/functions/functions.php:1669 #, php-format -msgid "great ×%d aunt/uncle" -msgstr "tio(a) ×%d avô(ó)" +msgid "great ×%s aunt/uncle" +msgstr "tio(a) ×%s avô(ó)" #: includes/functions/functions.php:2042 includes/functions/functions.php:2057 #, php-format -msgid "great ×%d grandchild" -msgstr "%d° neto" +msgid "great ×%s grandchild" +msgstr "%s° neto" #: includes/functions/functions.php:2040 includes/functions/functions.php:2055 #, php-format -msgid "great ×%d granddaughter" -msgstr "%d° neta" +msgid "great ×%s granddaughter" +msgstr "%s° neta" -#. I18N: if you need a different number for %d, contact the developers, as a code-change is required +#. I18N: if you need a different number for %s, contact the developers, as a code-change is required #: includes/functions/functions.php:1912 includes/functions/functions.php:1922 #: includes/functions/functions.php:1932 includes/functions/functions.php:1942 #: includes/functions/functions.php:1954 #, php-format -msgid "great ×%d grandfather" -msgstr "%d° avô" +msgid "great ×%s grandfather" +msgstr "%s° avô" #: includes/functions/functions.php:1914 includes/functions/functions.php:1924 #: includes/functions/functions.php:1934 includes/functions/functions.php:1944 #: includes/functions/functions.php:1956 #, php-format -msgid "great ×%d grandmother" -msgstr "%d° avó" +msgid "great ×%s grandmother" +msgstr "%s° avó" #: includes/functions/functions.php:1916 includes/functions/functions.php:1926 #: includes/functions/functions.php:1936 includes/functions/functions.php:1946 #: includes/functions/functions.php:1958 #, php-format -msgid "great ×%d grandparent" -msgstr "%d° avô" +msgid "great ×%s grandparent" +msgstr "%s° avô" -#. I18N: if you need a different number for %d, contact the developers, as a code-change is required +#. I18N: if you need a different number for %s, contact the developers, as a code-change is required #: includes/functions/functions.php:2038 includes/functions/functions.php:2053 #, php-format -msgid "great ×%d grandson" -msgstr "×%d neto" +msgid "great ×%s grandson" +msgstr "×%s neto" -#. I18N: if you need a different number for %d, contact the developers, as a code-change is required +#. I18N: if you need a different number for %s, contact the developers, as a code-change is required #: includes/functions/functions.php:1823 includes/functions/functions.php:1836 #, php-format -msgid "great ×%d nephew" -msgstr "sobrinho %d°-neto" +msgid "great ×%s nephew" +msgstr "sobrinho %s°-neto" #: includes/functions/functions.php:1797 #, php-format -msgctxt "(a man’s) brother’s great ×(%d-1) grandson" -msgid "great ×%d nephew" -msgstr "sobrinho %d° neto" +msgctxt "(a man’s) brother’s great ×(%s-1) grandson" +msgid "great ×%s nephew" +msgstr "sobrinho %s° neto" #: includes/functions/functions.php:1799 #, php-format -msgctxt "(a man’s) sister’s great ×(%d-1) grandson" -msgid "great ×%d nephew" -msgstr "sobrinho %d° neto" +msgctxt "(a man’s) sister’s great ×(%s-1) grandson" +msgid "great ×%s nephew" +msgstr "sobrinho %s° neto" #: includes/functions/functions.php:1801 #, php-format -msgctxt "(a woman’s) great ×%d nephew" -msgid "great ×%d nephew" -msgstr "sobrinho %d° neto" +msgctxt "(a woman’s) great ×%s nephew" +msgid "great ×%s nephew" +msgstr "sobrinho %s° neto" #: includes/functions/functions.php:1827 includes/functions/functions.php:1840 #, php-format -msgid "great ×%d nephew/niece" -msgstr "sobrinho(a) %d° neto(a)" +msgid "great ×%s nephew/niece" +msgstr "sobrinho(a) %s° neto(a)" #: includes/functions/functions.php:1813 #, php-format -msgctxt "(a man’s) brother’s great ×(%d-1) grandchild" -msgid "great ×%d nephew/niece" -msgstr "sobrinho(a) %d° neto(a)" +msgctxt "(a man’s) brother’s great ×(%s-1) grandchild" +msgid "great ×%s nephew/niece" +msgstr "sobrinho(a) %s° neto(a)" #: includes/functions/functions.php:1815 #, php-format -msgctxt "(a man’s) sister’s great ×(%d-1) grandchild" -msgid "great ×%d nephew/niece" -msgstr "sobrinho(a) %d° neto(a)" +msgctxt "(a man’s) sister’s great ×(%s-1) grandchild" +msgid "great ×%s nephew/niece" +msgstr "sobrinho(a) %s° neto(a)" #: includes/functions/functions.php:1817 #, php-format -msgctxt "(a woman’s) great ×%d nephew/niece" -msgid "great ×%d nephew/niece" -msgstr "sobrinho(a) %d° neto(a)" +msgctxt "(a woman’s) great ×%s nephew/niece" +msgid "great ×%s nephew/niece" +msgstr "sobrinho(a) %s° neto(a)" #: includes/functions/functions.php:1825 includes/functions/functions.php:1838 #, php-format -msgid "great ×%d niece" -msgstr "sobrinha %d°-neta" +msgid "great ×%s niece" +msgstr "sobrinha %s°-neta" #: includes/functions/functions.php:1805 #, php-format -msgctxt "(a man’s) brother’s great ×(%d-1) granddaughter" -msgid "great ×%d niece" -msgstr "sobrinha %d° neta" +msgctxt "(a man’s) brother’s great ×(%s-1) granddaughter" +msgid "great ×%s niece" +msgstr "sobrinha %s° neta" #: includes/functions/functions.php:1807 #, php-format -msgctxt "(a man’s) sister’s great ×(%d-1) granddaughter" -msgid "great ×%d niece" -msgstr "sobrinha %d° neta" +msgctxt "(a man’s) sister’s great ×(%s-1) granddaughter" +msgid "great ×%s niece" +msgstr "sobrinha %s° neta" #: includes/functions/functions.php:1809 #, php-format -msgctxt "(a woman’s) great ×%d niece" -msgid "great ×%d niece" -msgstr "sobrinha %d° neta" +msgctxt "(a woman’s) great ×%s niece" +msgid "great ×%s niece" +msgstr "sobrinha %s° neta" -#. I18N: if you need a different number for %d, contact the developers, as a code-change is required +#. I18N: if you need a different number for %s, contact the developers, as a code-change is required #: includes/functions/functions.php:1637 includes/functions/functions.php:1665 #, php-format -msgid "great ×%d uncle" -msgstr "tio %d°-avô" +msgid "great ×%s uncle" +msgstr "tio %s°-avô" #: includes/functions/functions.php:1647 #, php-format -msgctxt "great ×(%d-1) grandfather’s brother" -msgid "great ×%d uncle" -msgstr "tio ×%d avô" +msgctxt "great ×(%s-1) grandfather’s brother" +msgid "great ×%s uncle" +msgstr "tio ×%s avô" #: includes/functions/functions.php:1649 #, php-format -msgctxt "great ×(%d-1) grandmother’s brother" -msgid "great ×%d uncle" -msgstr "tia ×%d avó" +msgctxt "great ×(%s-1) grandmother’s brother" +msgid "great ×%s uncle" +msgstr "tia ×%s avó" #: includes/functions/functions.php:1651 #, php-format -msgctxt "great ×(%d-1) grandparent’s brother" -msgid "great ×%d uncle" -msgstr "tio ×%d avô" +msgctxt "great ×(%s-1) grandparent’s brother" +msgid "great ×%s uncle" +msgstr "tio ×%s avô" #: includes/functions/functions.php:1579 msgid "great ×4 aunt" @@ -18569,10 +18569,10 @@ msgstr "máximo" #: app/Module/UpcomingAnniversariesModule.php:125 #: app/Module/YahrzeitModule.php:250 #, php-format -msgid "maximum %d day" -msgid_plural "maximum %d days" -msgstr[0] "máximo de %d dia" -msgstr[1] "máximo de %d dias" +msgid "maximum %s day" +msgid_plural "maximum %s days" +msgstr[0] "máximo de %s dia" +msgstr[1] "máximo de %s dias" #: admin_trees_config.php:404 admin_trees_config.php:428 #: admin_trees_config.php:468 admin_trees_config.php:508 @@ -20002,10 +20002,10 @@ msgstr "…" #~ msgid "No other link between the two individuals could be found." #~ msgstr "Nenhuma ligação foi localizada entre estas duas pessoas." -#~ msgid "Note: “living” is defined (if no death or burial is known) as ending %d year after birth or estimated birth." -#~ msgid_plural "Note: “living” is defined (if no death or burial is known) as ending %d years after birth or estimated birth." -#~ msgstr[0] "Nota: «vivo» é definido (se não é conhecido falecimento ou sepultamento) como findo %d ano após o nascimento ou estimativa de nascimento." -#~ msgstr[1] "Nota: «vivo» é definido (se não é conhecido falecimento ou sepultamento) como findo %d anos após o nascimento ou estimativa de nascimento." +#~ msgid "Note: “living” is defined (if no death or burial is known) as ending %s year after birth or estimated birth." +#~ msgid_plural "Note: “living” is defined (if no death or burial is known) as ending %s years after birth or estimated birth." +#~ msgstr[0] "Nota: «vivo» é definido (se não é conhecido falecimento ou sepultamento) como findo %s ano após o nascimento ou estimativa de nascimento." +#~ msgstr[1] "Nota: «vivo» é definido (se não é conhecido falecimento ou sepultamento) como findo %s anos após o nascimento ou estimativa de nascimento." #~ msgid "Notes are free-form text and will appear in the Fact Details section of the page." #~ msgstr "Notas é um texto livre que é exibido na seção Detalhes do Fato." diff --git a/language/ro.po b/language/ro.po index 831d2b6592..da8efb67bf 100644 --- a/language/ro.po +++ b/language/ro.po @@ -193,32 +193,32 @@ msgstr "" #: app/Module/LoggedInUsersModule.php:51 app/Stats.php:5372 #, php-format -msgid "%d anonymous logged-in user" -msgid_plural "%d anonymous logged-in users" +msgid "%s anonymous logged-in user" +msgid_plural "%s anonymous logged-in users" msgstr[0] "" msgstr[1] "" msgstr[2] "" #: app/Module/LoggedInUsersModule.php:57 app/Stats.php:5382 #, php-format -msgid "%d logged-in user" -msgid_plural "%d logged-in users" +msgid "%s logged-in user" +msgid_plural "%s logged-in users" msgstr[0] "" msgstr[1] "" msgstr[2] "" #: app/Module/RelativesTabModule.php:62 #, php-format -msgid "%d month" -msgid_plural "%d months" +msgid "%s month" +msgid_plural "%s months" msgstr[0] "" msgstr[1] "" msgstr[2] "" #: app/Module/RelativesTabModule.php:60 #, php-format -msgid "%d year" -msgid_plural "%d years" +msgid "%s year" +msgid_plural "%s years" msgstr[0] "" msgstr[1] "" msgstr[2] "" @@ -226,20 +226,20 @@ msgstr[2] "" #: includes/functions/functions.php:555 #, php-format msgctxt "FEMALE" -msgid "%d × cousin" +msgid "%s × cousin" msgstr "" #. I18N: Note that for Italian and Polish, “N’th cousins” are different from English “N’th cousins”, and the software has already generated the correct “N” for your language. You only need to translate - you do not need to convert. For other languages, if your cousin rules are different from English, please contact the developers. #: includes/functions/functions.php:520 #, php-format msgctxt "MALE" -msgid "%d × cousin" +msgid "%s × cousin" msgstr "" #: includes/functions/functions.php:590 #, php-format msgctxt "MALE/FEMALE" -msgid "%d × cousin" +msgid "%s × cousin" msgstr "" #. I18N: This is the format string for full dates. See http://php.net/date for codes @@ -14335,7 +14335,7 @@ msgstr "" #: setup.php:183 #, php-format -msgid "This server’s memory limit is %d MB and its CPU time limit is %d seconds." +msgid "This server’s memory limit is %s MB and its CPU time limit is %s seconds." msgstr "" #. I18N: Help text for the “Other facts to show in charts” configuration setting @@ -17014,145 +17014,145 @@ msgstr "" #: includes/functions/functions.php:1639 includes/functions/functions.php:1654 #: includes/functions/functions.php:1667 #, php-format -msgid "great ×%d aunt" +msgid "great ×%s aunt" msgstr "" #: includes/functions/functions.php:1641 includes/functions/functions.php:1656 #: includes/functions/functions.php:1669 #, php-format -msgid "great ×%d aunt/uncle" +msgid "great ×%s aunt/uncle" msgstr "" #: includes/functions/functions.php:2042 includes/functions/functions.php:2057 #, php-format -msgid "great ×%d grandchild" +msgid "great ×%s grandchild" msgstr "" #: includes/functions/functions.php:2040 includes/functions/functions.php:2055 #, php-format -msgid "great ×%d granddaughter" +msgid "great ×%s granddaughter" msgstr "" -#. I18N: if you need a different number for %d, contact the developers, as a code-change is required +#. I18N: if you need a different number for %s, contact the developers, as a code-change is required #: includes/functions/functions.php:1912 includes/functions/functions.php:1922 #: includes/functions/functions.php:1932 includes/functions/functions.php:1942 #: includes/functions/functions.php:1954 #, php-format -msgid "great ×%d grandfather" +msgid "great ×%s grandfather" msgstr "" #: includes/functions/functions.php:1914 includes/functions/functions.php:1924 #: includes/functions/functions.php:1934 includes/functions/functions.php:1944 #: includes/functions/functions.php:1956 #, php-format -msgid "great ×%d grandmother" +msgid "great ×%s grandmother" msgstr "" #: includes/functions/functions.php:1916 includes/functions/functions.php:1926 #: includes/functions/functions.php:1936 includes/functions/functions.php:1946 #: includes/functions/functions.php:1958 #, php-format -msgid "great ×%d grandparent" +msgid "great ×%s grandparent" msgstr "" -#. I18N: if you need a different number for %d, contact the developers, as a code-change is required +#. I18N: if you need a different number for %s, contact the developers, as a code-change is required #: includes/functions/functions.php:2038 includes/functions/functions.php:2053 #, php-format -msgid "great ×%d grandson" +msgid "great ×%s grandson" msgstr "" -#. I18N: if you need a different number for %d, contact the developers, as a code-change is required +#. I18N: if you need a different number for %s, contact the developers, as a code-change is required #: includes/functions/functions.php:1823 includes/functions/functions.php:1836 #, php-format -msgid "great ×%d nephew" +msgid "great ×%s nephew" msgstr "" #: includes/functions/functions.php:1797 #, php-format -msgctxt "(a man’s) brother’s great ×(%d-1) grandson" -msgid "great ×%d nephew" +msgctxt "(a man’s) brother’s great ×(%s-1) grandson" +msgid "great ×%s nephew" msgstr "" #: includes/functions/functions.php:1799 #, php-format -msgctxt "(a man’s) sister’s great ×(%d-1) grandson" -msgid "great ×%d nephew" +msgctxt "(a man’s) sister’s great ×(%s-1) grandson" +msgid "great ×%s nephew" msgstr "" #: includes/functions/functions.php:1801 #, php-format -msgctxt "(a woman’s) great ×%d nephew" -msgid "great ×%d nephew" +msgctxt "(a woman’s) great ×%s nephew" +msgid "great ×%s nephew" msgstr "" #: includes/functions/functions.php:1827 includes/functions/functions.php:1840 #, php-format -msgid "great ×%d nephew/niece" +msgid "great ×%s nephew/niece" msgstr "" #: includes/functions/functions.php:1813 #, php-format -msgctxt "(a man’s) brother’s great ×(%d-1) grandchild" -msgid "great ×%d nephew/niece" +msgctxt "(a man’s) brother’s great ×(%s-1) grandchild" +msgid "great ×%s nephew/niece" msgstr "" #: includes/functions/functions.php:1815 #, php-format -msgctxt "(a man’s) sister’s great ×(%d-1) grandchild" -msgid "great ×%d nephew/niece" +msgctxt "(a man’s) sister’s great ×(%s-1) grandchild" +msgid "great ×%s nephew/niece" msgstr "" #: includes/functions/functions.php:1817 #, php-format -msgctxt "(a woman’s) great ×%d nephew/niece" -msgid "great ×%d nephew/niece" +msgctxt "(a woman’s) great ×%s nephew/niece" +msgid "great ×%s nephew/niece" msgstr "" #: includes/functions/functions.php:1825 includes/functions/functions.php:1838 #, php-format -msgid "great ×%d niece" +msgid "great ×%s niece" msgstr "" #: includes/functions/functions.php:1805 #, php-format -msgctxt "(a man’s) brother’s great ×(%d-1) granddaughter" -msgid "great ×%d niece" +msgctxt "(a man’s) brother’s great ×(%s-1) granddaughter" +msgid "great ×%s niece" msgstr "" #: includes/functions/functions.php:1807 #, php-format -msgctxt "(a man’s) sister’s great ×(%d-1) granddaughter" -msgid "great ×%d niece" +msgctxt "(a man’s) sister’s great ×(%s-1) granddaughter" +msgid "great ×%s niece" msgstr "" #: includes/functions/functions.php:1809 #, php-format -msgctxt "(a woman’s) great ×%d niece" -msgid "great ×%d niece" +msgctxt "(a woman’s) great ×%s niece" +msgid "great ×%s niece" msgstr "" -#. I18N: if you need a different number for %d, contact the developers, as a code-change is required +#. I18N: if you need a different number for %s, contact the developers, as a code-change is required #: includes/functions/functions.php:1637 includes/functions/functions.php:1665 #, php-format -msgid "great ×%d uncle" +msgid "great ×%s uncle" msgstr "" #: includes/functions/functions.php:1647 #, php-format -msgctxt "great ×(%d-1) grandfather’s brother" -msgid "great ×%d uncle" +msgctxt "great ×(%s-1) grandfather’s brother" +msgid "great ×%s uncle" msgstr "" #: includes/functions/functions.php:1649 #, php-format -msgctxt "great ×(%d-1) grandmother’s brother" -msgid "great ×%d uncle" +msgctxt "great ×(%s-1) grandmother’s brother" +msgid "great ×%s uncle" msgstr "" #: includes/functions/functions.php:1651 #, php-format -msgctxt "great ×(%d-1) grandparent’s brother" -msgid "great ×%d uncle" +msgctxt "great ×(%s-1) grandparent’s brother" +msgid "great ×%s uncle" msgstr "" #: includes/functions/functions.php:1579 @@ -18604,10 +18604,10 @@ msgstr "maxim" #: app/Module/UpcomingAnniversariesModule.php:125 #: app/Module/YahrzeitModule.php:250 #, php-format -msgid "maximum %d day" -msgid_plural "maximum %d days" -msgstr[0] "maxim %d zi" -msgstr[1] "maxim %d zile" +msgid "maximum %s day" +msgid_plural "maximum %s days" +msgstr[0] "maxim %s zi" +msgstr[1] "maxim %s zile" #: admin_trees_config.php:404 admin_trees_config.php:428 #: admin_trees_config.php:468 admin_trees_config.php:508 diff --git a/language/ru.po b/language/ru.po index 392df09662..fb046dcb02 100644 --- a/language/ru.po +++ b/language/ru.po @@ -199,54 +199,54 @@ msgstr "%g:%i:%s %a" #: app/Module/LoggedInUsersModule.php:51 app/Stats.php:5372 #, php-format -msgid "%d anonymous logged-in user" -msgid_plural "%d anonymous logged-in users" -msgstr[0] "%d анонимный пользователь" -msgstr[1] "%d анонимных пользователей" -msgstr[2] "%d анонимных пользователей" +msgid "%s anonymous logged-in user" +msgid_plural "%s anonymous logged-in users" +msgstr[0] "%s анонимный пользователь" +msgstr[1] "%s анонимных пользователей" +msgstr[2] "%s анонимных пользователей" #: app/Module/LoggedInUsersModule.php:57 app/Stats.php:5382 #, php-format -msgid "%d logged-in user" -msgid_plural "%d logged-in users" -msgstr[0] "%d зарегистрированный пользователь" -msgstr[1] "%d зарегистрированных пользователей" -msgstr[2] "%d зарегистрированных пользователей" +msgid "%s logged-in user" +msgid_plural "%s logged-in users" +msgstr[0] "%s зарегистрированный пользователь" +msgstr[1] "%s зарегистрированных пользователей" +msgstr[2] "%s зарегистрированных пользователей" #: app/Module/RelativesTabModule.php:62 #, php-format -msgid "%d month" -msgid_plural "%d months" -msgstr[0] "%d месяц" -msgstr[1] "%d месяца" -msgstr[2] "%d месяцев" +msgid "%s month" +msgid_plural "%s months" +msgstr[0] "%s месяц" +msgstr[1] "%s месяца" +msgstr[2] "%s месяцев" #: app/Module/RelativesTabModule.php:60 #, php-format -msgid "%d year" -msgid_plural "%d years" -msgstr[0] "%d год" -msgstr[1] "%d года" -msgstr[2] "%d лет" +msgid "%s year" +msgid_plural "%s years" +msgstr[0] "%s год" +msgstr[1] "%s года" +msgstr[2] "%s лет" #: includes/functions/functions.php:555 #, php-format msgctxt "FEMALE" -msgid "%d × cousin" -msgstr "(%d+1)-тиюродная сестра" +msgid "%s × cousin" +msgstr "(%s+1)-тиюродная сестра" #. I18N: Note that for Italian and Polish, “N’th cousins” are different from English “N’th cousins”, and the software has already generated the correct “N” for your language. You only need to translate - you do not need to convert. For other languages, if your cousin rules are different from English, please contact the developers. #: includes/functions/functions.php:520 #, php-format msgctxt "MALE" -msgid "%d × cousin" -msgstr "(%d+1)-тиюродный брат" +msgid "%s × cousin" +msgstr "(%s+1)-тиюродный брат" #: includes/functions/functions.php:590 #, php-format msgctxt "MALE/FEMALE" -msgid "%d × cousin" -msgstr "(%d+1)-тиюродный брат/сестра" +msgid "%s × cousin" +msgstr "(%s+1)-тиюродный брат/сестра" #. I18N: This is the format string for full dates. See http://php.net/date for codes #: app/Date.php:222 app/I18N.php:212 @@ -14344,8 +14344,8 @@ msgstr "Этот сервер не поддерживает безопасные #: setup.php:183 #, php-format -msgid "This server’s memory limit is %d MB and its CPU time limit is %d seconds." -msgstr "Этот сервер имеет следующие настройки:<br> memory limit = %dMB (рабочая память для скриптов)<br>CPU time limit = %d c. (максимальное время для исполнения скрипта)" +msgid "This server’s memory limit is %s MB and its CPU time limit is %s seconds." +msgstr "Этот сервер имеет следующие настройки:<br> memory limit = %sMB (рабочая память для скриптов)<br>CPU time limit = %s c. (максимальное время для исполнения скрипта)" #. I18N: Help text for the “Other facts to show in charts” configuration setting #: admin_trees_config.php:1632 @@ -17024,146 +17024,146 @@ msgstr "супруга внука" #: includes/functions/functions.php:1639 includes/functions/functions.php:1654 #: includes/functions/functions.php:1667 #, php-format -msgid "great ×%d aunt" -msgstr "двоюродная (%d-1)xпра-бабушка" +msgid "great ×%s aunt" +msgstr "двоюродная (%s-1)xпра-бабушка" #: includes/functions/functions.php:1641 includes/functions/functions.php:1656 #: includes/functions/functions.php:1669 #, php-format -msgid "great ×%d aunt/uncle" -msgstr "двоюродный (%d-1)xпра-дед/babушка" +msgid "great ×%s aunt/uncle" +msgstr "двоюродный (%s-1)xпра-дед/babушка" #: includes/functions/functions.php:2042 includes/functions/functions.php:2057 #, php-format -msgid "great ×%d grandchild" -msgstr "пра(х%d) внук/внучка" +msgid "great ×%s grandchild" +msgstr "пра(х%s) внук/внучка" #: includes/functions/functions.php:2040 includes/functions/functions.php:2055 #, php-format -msgid "great ×%d granddaughter" -msgstr "пра(х%d) внучка" +msgid "great ×%s granddaughter" +msgstr "пра(х%s) внучка" -#. I18N: if you need a different number for %d, contact the developers, as a code-change is required +#. I18N: if you need a different number for %s, contact the developers, as a code-change is required #: includes/functions/functions.php:1912 includes/functions/functions.php:1922 #: includes/functions/functions.php:1932 includes/functions/functions.php:1942 #: includes/functions/functions.php:1954 #, php-format -msgid "great ×%d grandfather" -msgstr "%dх пра-дед" +msgid "great ×%s grandfather" +msgstr "%sх пра-дед" #: includes/functions/functions.php:1914 includes/functions/functions.php:1924 #: includes/functions/functions.php:1934 includes/functions/functions.php:1944 #: includes/functions/functions.php:1956 #, php-format -msgid "great ×%d grandmother" -msgstr "%dх пра-бабушка" +msgid "great ×%s grandmother" +msgstr "%sх пра-бабушка" #: includes/functions/functions.php:1916 includes/functions/functions.php:1926 #: includes/functions/functions.php:1936 includes/functions/functions.php:1946 #: includes/functions/functions.php:1958 #, php-format -msgid "great ×%d grandparent" -msgstr "пра(х%d)-дед/бабушка" +msgid "great ×%s grandparent" +msgstr "пра(х%s)-дед/бабушка" -#. I18N: if you need a different number for %d, contact the developers, as a code-change is required +#. I18N: if you need a different number for %s, contact the developers, as a code-change is required #: includes/functions/functions.php:2038 includes/functions/functions.php:2053 #, php-format -msgid "great ×%d grandson" -msgstr "пра(х%d) внук" +msgid "great ×%s grandson" +msgstr "пра(х%s) внук" -#. I18N: if you need a different number for %d, contact the developers, as a code-change is required +#. I18N: if you need a different number for %s, contact the developers, as a code-change is required #: includes/functions/functions.php:1823 includes/functions/functions.php:1836 #, php-format -msgid "great ×%d nephew" -msgstr "пра(х(%d-1))-внучатый племянник" +msgid "great ×%s nephew" +msgstr "пра(х(%s-1))-внучатый племянник" #: includes/functions/functions.php:1797 #, php-format -msgctxt "(a man’s) brother’s great ×(%d-1) grandson" -msgid "great ×%d nephew" -msgstr "пра(х(%d-1))-внучатый племянник" +msgctxt "(a man’s) brother’s great ×(%s-1) grandson" +msgid "great ×%s nephew" +msgstr "пра(х(%s-1))-внучатый племянник" #: includes/functions/functions.php:1799 #, php-format -msgctxt "(a man’s) sister’s great ×(%d-1) grandson" -msgid "great ×%d nephew" -msgstr "пра(х(%d-1))-внучатый племянник" +msgctxt "(a man’s) sister’s great ×(%s-1) grandson" +msgid "great ×%s nephew" +msgstr "пра(х(%s-1))-внучатый племянник" #: includes/functions/functions.php:1801 #, php-format -msgctxt "(a woman’s) great ×%d nephew" -msgid "great ×%d nephew" -msgstr "пра(х(%d-1))-внучатый племянник" +msgctxt "(a woman’s) great ×%s nephew" +msgid "great ×%s nephew" +msgstr "пра(х(%s-1))-внучатый племянник" #: includes/functions/functions.php:1827 includes/functions/functions.php:1840 #, php-format -msgid "great ×%d nephew/niece" -msgstr "пра(х(%d-1))-внучатый племянник/племянница" +msgid "great ×%s nephew/niece" +msgstr "пра(х(%s-1))-внучатый племянник/племянница" #: includes/functions/functions.php:1813 #, php-format -msgctxt "(a man’s) brother’s great ×(%d-1) grandchild" -msgid "great ×%d nephew/niece" -msgstr "пра(х(%d-1))-внучатый племянник/племянница" +msgctxt "(a man’s) brother’s great ×(%s-1) grandchild" +msgid "great ×%s nephew/niece" +msgstr "пра(х(%s-1))-внучатый племянник/племянница" #: includes/functions/functions.php:1815 #, php-format -msgctxt "(a man’s) sister’s great ×(%d-1) grandchild" -msgid "great ×%d nephew/niece" -msgstr "пра(х(%d-1))-внучатый племянник/племянница" +msgctxt "(a man’s) sister’s great ×(%s-1) grandchild" +msgid "great ×%s nephew/niece" +msgstr "пра(х(%s-1))-внучатый племянник/племянница" #: includes/functions/functions.php:1817 #, php-format -msgctxt "(a woman’s) great ×%d nephew/niece" -msgid "great ×%d nephew/niece" -msgstr "пра(х(%d-1))-внучатый племянник/племянница" +msgctxt "(a woman’s) great ×%s nephew/niece" +msgid "great ×%s nephew/niece" +msgstr "пра(х(%s-1))-внучатый племянник/племянница" #: includes/functions/functions.php:1825 includes/functions/functions.php:1838 #, php-format -msgid "great ×%d niece" -msgstr "пра(х(%d-1))-внучатая племянница" +msgid "great ×%s niece" +msgstr "пра(х(%s-1))-внучатая племянница" #: includes/functions/functions.php:1805 #, php-format -msgctxt "(a man’s) brother’s great ×(%d-1) granddaughter" -msgid "great ×%d niece" -msgstr "пра(х(%d-1))-внучатая племянница" +msgctxt "(a man’s) brother’s great ×(%s-1) granddaughter" +msgid "great ×%s niece" +msgstr "пра(х(%s-1))-внучатая племянница" #: includes/functions/functions.php:1807 #, php-format -msgctxt "(a man’s) sister’s great ×(%d-1) granddaughter" -msgid "great ×%d niece" -msgstr "пра(х(%d-1))-внучатая племянница" +msgctxt "(a man’s) sister’s great ×(%s-1) granddaughter" +msgid "great ×%s niece" +msgstr "пра(х(%s-1))-внучатая племянница" #: includes/functions/functions.php:1809 #, php-format -msgctxt "(a woman’s) great ×%d niece" -msgid "great ×%d niece" -msgstr "пра(х(%d-1))-внучатая племянница" +msgctxt "(a woman’s) great ×%s niece" +msgid "great ×%s niece" +msgstr "пра(х(%s-1))-внучатая племянница" -#. I18N: if you need a different number for %d, contact the developers, as a code-change is required +#. I18N: if you need a different number for %s, contact the developers, as a code-change is required #: includes/functions/functions.php:1637 includes/functions/functions.php:1665 #, php-format -msgid "great ×%d uncle" -msgstr "двоюродный (%d-1)xпра-дедушка" +msgid "great ×%s uncle" +msgstr "двоюродный (%s-1)xпра-дедушка" #: includes/functions/functions.php:1647 #, php-format -msgctxt "great ×(%d-1) grandfather’s brother" -msgid "great ×%d uncle" -msgstr "двоюродный (%d-1)xпра-дедушка" +msgctxt "great ×(%s-1) grandfather’s brother" +msgid "great ×%s uncle" +msgstr "двоюродный (%s-1)xпра-дедушка" #: includes/functions/functions.php:1649 #, php-format -msgctxt "great ×(%d-1) grandmother’s brother" -msgid "great ×%d uncle" -msgstr "двоюродный (%d-1)xпра-дедушка" +msgctxt "great ×(%s-1) grandmother’s brother" +msgid "great ×%s uncle" +msgstr "двоюродный (%s-1)xпра-дедушка" #: includes/functions/functions.php:1651 #, php-format -msgctxt "great ×(%d-1) grandparent’s brother" -msgid "great ×%d uncle" -msgstr "двоюродный (%d-1)xпра-дедушка" +msgctxt "great ×(%s-1) grandparent’s brother" +msgid "great ×%s uncle" +msgstr "двоюродный (%s-1)xпра-дедушка" #: includes/functions/functions.php:1579 msgid "great ×4 aunt" @@ -18614,11 +18614,11 @@ msgstr "Максимум" #: app/Module/UpcomingAnniversariesModule.php:125 #: app/Module/YahrzeitModule.php:250 #, php-format -msgid "maximum %d day" -msgid_plural "maximum %d days" -msgstr[0] "максимально %d день" -msgstr[1] "максимально %d дня" -msgstr[2] "максимально %d дней" +msgid "maximum %s day" +msgid_plural "maximum %s days" +msgstr[0] "максимально %s день" +msgstr[1] "максимально %s дня" +msgstr[2] "максимально %s дней" #: admin_trees_config.php:404 admin_trees_config.php:428 #: admin_trees_config.php:468 admin_trees_config.php:508 @@ -20136,11 +20136,11 @@ msgstr "…" #~ msgid "No other link between the two individuals could be found." #~ msgstr "Других связей между двумя персонами не найдено." -#~ msgid "Note: “living” is defined (if no death or burial is known) as ending %d year after birth or estimated birth." -#~ msgid_plural "Note: “living” is defined (if no death or burial is known) as ending %d years after birth or estimated birth." -#~ msgstr[0] "Примечание: «живой» определяется (если факт о смерти или захоронения не известен), после %d года после рождения или примерного рождения." -#~ msgstr[1] "Примечание: «живой» определяется (если факт о смерти или захоронения не известен), после %d лет после рождения или примерного рождения." -#~ msgstr[2] "Примечание: «живой» определяется (если факт о смерти или захоронения не известен), после %d лет после рождения или примерного рождения." +#~ msgid "Note: “living” is defined (if no death or burial is known) as ending %s year after birth or estimated birth." +#~ msgid_plural "Note: “living” is defined (if no death or burial is known) as ending %s years after birth or estimated birth." +#~ msgstr[0] "Примечание: «живой» определяется (если факт о смерти или захоронения не известен), после %s года после рождения или примерного рождения." +#~ msgstr[1] "Примечание: «живой» определяется (если факт о смерти или захоронения не известен), после %s лет после рождения или примерного рождения." +#~ msgstr[2] "Примечание: «живой» определяется (если факт о смерти или захоронения не известен), после %s лет после рождения или примерного рождения." #~ msgid "Notes are free-form text and will appear in the Fact Details section of the page." #~ msgstr "Примечание - это текст в свободном стиле, который будет отображаться в разделе «Подробности факта»." diff --git a/language/sk.po b/language/sk.po index 063a9c8d83..5fbc199a6a 100644 --- a/language/sk.po +++ b/language/sk.po @@ -195,54 +195,54 @@ msgstr "%G:%i:%s" #: app/Module/LoggedInUsersModule.php:51 app/Stats.php:5372 #, php-format -msgid "%d anonymous logged-in user" -msgid_plural "%d anonymous logged-in users" -msgstr[0] "%d prihlásených anonymných užívateľov" -msgstr[1] "%d prihlásený anonymný užívateľ" -msgstr[2] "%d prihlásení anonymní užívatelia" +msgid "%s anonymous logged-in user" +msgid_plural "%s anonymous logged-in users" +msgstr[0] "%s prihlásených anonymných užívateľov" +msgstr[1] "%s prihlásený anonymný užívateľ" +msgstr[2] "%s prihlásení anonymní užívatelia" #: app/Module/LoggedInUsersModule.php:57 app/Stats.php:5382 #, php-format -msgid "%d logged-in user" -msgid_plural "%d logged-in users" -msgstr[0] "%d prihlásených užívateľov" -msgstr[1] "%d prihlásený užívateľ" -msgstr[2] "%d prihlásení užívatelia" +msgid "%s logged-in user" +msgid_plural "%s logged-in users" +msgstr[0] "%s prihlásených užívateľov" +msgstr[1] "%s prihlásený užívateľ" +msgstr[2] "%s prihlásení užívatelia" #: app/Module/RelativesTabModule.php:62 #, php-format -msgid "%d month" -msgid_plural "%d months" -msgstr[0] "%d mesiac" -msgstr[1] "%d mesiace" -msgstr[2] "%d mesiacov" +msgid "%s month" +msgid_plural "%s months" +msgstr[0] "%s mesiac" +msgstr[1] "%s mesiace" +msgstr[2] "%s mesiacov" #: app/Module/RelativesTabModule.php:60 #, php-format -msgid "%d year" -msgid_plural "%d years" -msgstr[0] "%d rok" -msgstr[1] "%d roky" -msgstr[2] "%d rokov" +msgid "%s year" +msgid_plural "%s years" +msgstr[0] "%s rok" +msgstr[1] "%s roky" +msgstr[2] "%s rokov" #: includes/functions/functions.php:555 #, php-format msgctxt "FEMALE" -msgid "%d × cousin" -msgstr "sesternica z %d. kolena" +msgid "%s × cousin" +msgstr "sesternica z %s. kolena" #. I18N: Note that for Italian and Polish, “N’th cousins” are different from English “N’th cousins”, and the software has already generated the correct “N” for your language. You only need to translate - you do not need to convert. For other languages, if your cousin rules are different from English, please contact the developers. #: includes/functions/functions.php:520 #, php-format msgctxt "MALE" -msgid "%d × cousin" -msgstr "bratranec z %d. kolena" +msgid "%s × cousin" +msgstr "bratranec z %s. kolena" #: includes/functions/functions.php:590 #, php-format msgctxt "MALE/FEMALE" -msgid "%d × cousin" -msgstr "bratranec/sesternica z %d. kolena" +msgid "%s × cousin" +msgstr "bratranec/sesternica z %s. kolena" #. I18N: This is the format string for full dates. See http://php.net/date for codes #: app/Date.php:222 app/I18N.php:212 @@ -14340,8 +14340,8 @@ msgstr "" #: setup.php:183 #, php-format -msgid "This server’s memory limit is %d MB and its CPU time limit is %d seconds." -msgstr "Limit pamäte pre tento server je %d MB a limit pre procesorový čas je %d sekúnd." +msgid "This server’s memory limit is %s MB and its CPU time limit is %s seconds." +msgstr "Limit pamäte pre tento server je %s MB a limit pre procesorový čas je %s sekúnd." #. I18N: Help text for the “Other facts to show in charts” configuration setting #: admin_trees_config.php:1632 @@ -17020,146 +17020,146 @@ msgstr "manželka vnuka" #: includes/functions/functions.php:1639 includes/functions/functions.php:1654 #: includes/functions/functions.php:1667 #, php-format -msgid "great ×%d aunt" -msgstr "%d× prateta" +msgid "great ×%s aunt" +msgstr "%s× prateta" #: includes/functions/functions.php:1641 includes/functions/functions.php:1656 #: includes/functions/functions.php:1669 #, php-format -msgid "great ×%d aunt/uncle" -msgstr "%d× prateta/prastrýc" +msgid "great ×%s aunt/uncle" +msgstr "%s× prateta/prastrýc" #: includes/functions/functions.php:2042 includes/functions/functions.php:2057 #, php-format -msgid "great ×%d grandchild" -msgstr "%d× pravnúča" +msgid "great ×%s grandchild" +msgstr "%s× pravnúča" #: includes/functions/functions.php:2040 includes/functions/functions.php:2055 #, php-format -msgid "great ×%d granddaughter" -msgstr "%d× pravnučka" +msgid "great ×%s granddaughter" +msgstr "%s× pravnučka" -#. I18N: if you need a different number for %d, contact the developers, as a code-change is required +#. I18N: if you need a different number for %s, contact the developers, as a code-change is required #: includes/functions/functions.php:1912 includes/functions/functions.php:1922 #: includes/functions/functions.php:1932 includes/functions/functions.php:1942 #: includes/functions/functions.php:1954 #, php-format -msgid "great ×%d grandfather" -msgstr "%d× pra-starý otec" +msgid "great ×%s grandfather" +msgstr "%s× pra-starý otec" #: includes/functions/functions.php:1914 includes/functions/functions.php:1924 #: includes/functions/functions.php:1934 includes/functions/functions.php:1944 #: includes/functions/functions.php:1956 #, php-format -msgid "great ×%d grandmother" -msgstr "%d× prastará matka" +msgid "great ×%s grandmother" +msgstr "%s× prastará matka" #: includes/functions/functions.php:1916 includes/functions/functions.php:1926 #: includes/functions/functions.php:1936 includes/functions/functions.php:1946 #: includes/functions/functions.php:1958 #, php-format -msgid "great ×%d grandparent" -msgstr "%d× prarodičia" +msgid "great ×%s grandparent" +msgstr "%s× prarodičia" -#. I18N: if you need a different number for %d, contact the developers, as a code-change is required +#. I18N: if you need a different number for %s, contact the developers, as a code-change is required #: includes/functions/functions.php:2038 includes/functions/functions.php:2053 #, php-format -msgid "great ×%d grandson" -msgstr "%d× pravnuk" +msgid "great ×%s grandson" +msgstr "%s× pravnuk" -#. I18N: if you need a different number for %d, contact the developers, as a code-change is required +#. I18N: if you need a different number for %s, contact the developers, as a code-change is required #: includes/functions/functions.php:1823 includes/functions/functions.php:1836 #, php-format -msgid "great ×%d nephew" -msgstr "%d× prasynovec" +msgid "great ×%s nephew" +msgstr "%s× prasynovec" #: includes/functions/functions.php:1797 #, php-format -msgctxt "(a man’s) brother’s great ×(%d-1) grandson" -msgid "great ×%d nephew" -msgstr "%d× prasynovec" +msgctxt "(a man’s) brother’s great ×(%s-1) grandson" +msgid "great ×%s nephew" +msgstr "%s× prasynovec" #: includes/functions/functions.php:1799 #, php-format -msgctxt "(a man’s) sister’s great ×(%d-1) grandson" -msgid "great ×%d nephew" -msgstr "%d× prasynovec" +msgctxt "(a man’s) sister’s great ×(%s-1) grandson" +msgid "great ×%s nephew" +msgstr "%s× prasynovec" #: includes/functions/functions.php:1801 #, php-format -msgctxt "(a woman’s) great ×%d nephew" -msgid "great ×%d nephew" -msgstr "%d× prasynovec" +msgctxt "(a woman’s) great ×%s nephew" +msgid "great ×%s nephew" +msgstr "%s× prasynovec" #: includes/functions/functions.php:1827 includes/functions/functions.php:1840 #, php-format -msgid "great ×%d nephew/niece" -msgstr "%d× prasynovec/praneter" +msgid "great ×%s nephew/niece" +msgstr "%s× prasynovec/praneter" #: includes/functions/functions.php:1813 #, php-format -msgctxt "(a man’s) brother’s great ×(%d-1) grandchild" -msgid "great ×%d nephew/niece" -msgstr "%d× prasynovec/praneter" +msgctxt "(a man’s) brother’s great ×(%s-1) grandchild" +msgid "great ×%s nephew/niece" +msgstr "%s× prasynovec/praneter" #: includes/functions/functions.php:1815 #, php-format -msgctxt "(a man’s) sister’s great ×(%d-1) grandchild" -msgid "great ×%d nephew/niece" -msgstr "%d× prasynovec/praneter" +msgctxt "(a man’s) sister’s great ×(%s-1) grandchild" +msgid "great ×%s nephew/niece" +msgstr "%s× prasynovec/praneter" #: includes/functions/functions.php:1817 #, php-format -msgctxt "(a woman’s) great ×%d nephew/niece" -msgid "great ×%d nephew/niece" -msgstr "%d× prasynovec/praneter" +msgctxt "(a woman’s) great ×%s nephew/niece" +msgid "great ×%s nephew/niece" +msgstr "%s× prasynovec/praneter" #: includes/functions/functions.php:1825 includes/functions/functions.php:1838 #, php-format -msgid "great ×%d niece" -msgstr "%d× praneter" +msgid "great ×%s niece" +msgstr "%s× praneter" #: includes/functions/functions.php:1805 #, php-format -msgctxt "(a man’s) brother’s great ×(%d-1) granddaughter" -msgid "great ×%d niece" -msgstr "%d× praneter" +msgctxt "(a man’s) brother’s great ×(%s-1) granddaughter" +msgid "great ×%s niece" +msgstr "%s× praneter" #: includes/functions/functions.php:1807 #, php-format -msgctxt "(a man’s) sister’s great ×(%d-1) granddaughter" -msgid "great ×%d niece" -msgstr "%d× praneter" +msgctxt "(a man’s) sister’s great ×(%s-1) granddaughter" +msgid "great ×%s niece" +msgstr "%s× praneter" #: includes/functions/functions.php:1809 #, php-format -msgctxt "(a woman’s) great ×%d niece" -msgid "great ×%d niece" -msgstr "%d× praneter" +msgctxt "(a woman’s) great ×%s niece" +msgid "great ×%s niece" +msgstr "%s× praneter" -#. I18N: if you need a different number for %d, contact the developers, as a code-change is required +#. I18N: if you need a different number for %s, contact the developers, as a code-change is required #: includes/functions/functions.php:1637 includes/functions/functions.php:1665 #, php-format -msgid "great ×%d uncle" -msgstr "%d× prastrýc" +msgid "great ×%s uncle" +msgstr "%s× prastrýc" #: includes/functions/functions.php:1647 #, php-format -msgctxt "great ×(%d-1) grandfather’s brother" -msgid "great ×%d uncle" -msgstr "%d× prastrýc" +msgctxt "great ×(%s-1) grandfather’s brother" +msgid "great ×%s uncle" +msgstr "%s× prastrýc" #: includes/functions/functions.php:1649 #, php-format -msgctxt "great ×(%d-1) grandmother’s brother" -msgid "great ×%d uncle" -msgstr "%d× prastrýc" +msgctxt "great ×(%s-1) grandmother’s brother" +msgid "great ×%s uncle" +msgstr "%s× prastrýc" #: includes/functions/functions.php:1651 #, php-format -msgctxt "great ×(%d-1) grandparent’s brother" -msgid "great ×%d uncle" -msgstr "%d× prastrýc" +msgctxt "great ×(%s-1) grandparent’s brother" +msgid "great ×%s uncle" +msgstr "%s× prastrýc" #: includes/functions/functions.php:1579 msgid "great ×4 aunt" @@ -18610,11 +18610,11 @@ msgstr "maximum" #: app/Module/UpcomingAnniversariesModule.php:125 #: app/Module/YahrzeitModule.php:250 #, php-format -msgid "maximum %d day" -msgid_plural "maximum %d days" -msgstr[0] "maximum %d deň" -msgstr[1] "maximum %d dni" -msgstr[2] "maximum %d dní" +msgid "maximum %s day" +msgid_plural "maximum %s days" +msgstr[0] "maximum %s deň" +msgstr[1] "maximum %s dni" +msgstr[2] "maximum %s dní" #: admin_trees_config.php:404 admin_trees_config.php:428 #: admin_trees_config.php:468 admin_trees_config.php:508 @@ -20120,11 +20120,11 @@ msgstr "…" #~ msgid "No other link between the two individuals could be found." #~ msgstr "Medzi týmito dvomi osobami nebyl nájdený žiadny ďalší vzťah." -#~ msgid "Note: “living” is defined (if no death or burial is known) as ending %d year after birth or estimated birth." -#~ msgid_plural "Note: “living” is defined (if no death or burial is known) as ending %d years after birth or estimated birth." -#~ msgstr[0] "Poznámka: „žijúci“ je definovaný (ak nie je známe úmrtie alebo pohreb) ako doba %d roku po narodení alebo odhadovaného roku narodenia." -#~ msgstr[1] "Poznámka: „žijúci“ je definovaný (ak nie je známe úmrtie alebo pohreb) ako doba %d rokov po narodení alebo odhadovaného roku narodenia." -#~ msgstr[2] "Poznámka: „žijúci“ je definovaný (ak nie je známe úmrtie alebo pohreb) ako doba %d rokov po narodení alebo odhadovaného roku narodenia." +#~ msgid "Note: “living” is defined (if no death or burial is known) as ending %s year after birth or estimated birth." +#~ msgid_plural "Note: “living” is defined (if no death or burial is known) as ending %s years after birth or estimated birth." +#~ msgstr[0] "Poznámka: „žijúci“ je definovaný (ak nie je známe úmrtie alebo pohreb) ako doba %s roku po narodení alebo odhadovaného roku narodenia." +#~ msgstr[1] "Poznámka: „žijúci“ je definovaný (ak nie je známe úmrtie alebo pohreb) ako doba %s rokov po narodení alebo odhadovaného roku narodenia." +#~ msgstr[2] "Poznámka: „žijúci“ je definovaný (ak nie je známe úmrtie alebo pohreb) ako doba %s rokov po narodení alebo odhadovaného roku narodenia." #~ msgid "Notes are free-form text and will appear in the Fact Details section of the page." #~ msgstr "Poznámky sú neformátované texty, ktoré sa zobrazia na stránke v sekcii Detaily faktov." diff --git a/language/sl.po b/language/sl.po index 461cbefbad..4aceb66f33 100644 --- a/language/sl.po +++ b/language/sl.po @@ -198,8 +198,8 @@ msgstr "%G:%i:%s" #: app/Module/LoggedInUsersModule.php:51 app/Stats.php:5372 #, php-format -msgid "%d anonymous logged-in user" -msgid_plural "%d anonymous logged-in users" +msgid "%s anonymous logged-in user" +msgid_plural "%s anonymous logged-in users" msgstr[0] "" msgstr[1] "" msgstr[2] "" @@ -207,8 +207,8 @@ msgstr[3] "" #: app/Module/LoggedInUsersModule.php:57 app/Stats.php:5382 #, php-format -msgid "%d logged-in user" -msgid_plural "%d logged-in users" +msgid "%s logged-in user" +msgid_plural "%s logged-in users" msgstr[0] "" msgstr[1] "" msgstr[2] "" @@ -216,8 +216,8 @@ msgstr[3] "" #: app/Module/RelativesTabModule.php:62 #, php-format -msgid "%d month" -msgid_plural "%d months" +msgid "%s month" +msgid_plural "%s months" msgstr[0] "" msgstr[1] "" msgstr[2] "" @@ -225,8 +225,8 @@ msgstr[3] "" #: app/Module/RelativesTabModule.php:60 #, php-format -msgid "%d year" -msgid_plural "%d years" +msgid "%s year" +msgid_plural "%s years" msgstr[0] "" msgstr[1] "" msgstr[2] "" @@ -235,20 +235,20 @@ msgstr[3] "" #: includes/functions/functions.php:555 #, php-format msgctxt "FEMALE" -msgid "%d × cousin" +msgid "%s × cousin" msgstr "" #. I18N: Note that for Italian and Polish, “N’th cousins” are different from English “N’th cousins”, and the software has already generated the correct “N” for your language. You only need to translate - you do not need to convert. For other languages, if your cousin rules are different from English, please contact the developers. #: includes/functions/functions.php:520 #, php-format msgctxt "MALE" -msgid "%d × cousin" +msgid "%s × cousin" msgstr "" #: includes/functions/functions.php:590 #, php-format msgctxt "MALE/FEMALE" -msgid "%d × cousin" +msgid "%s × cousin" msgstr "" #. I18N: This is the format string for full dates. See http://php.net/date for codes @@ -14374,7 +14374,7 @@ msgstr "" #: setup.php:183 #, php-format -msgid "This server’s memory limit is %d MB and its CPU time limit is %d seconds." +msgid "This server’s memory limit is %s MB and its CPU time limit is %s seconds." msgstr "" #. I18N: Help text for the “Other facts to show in charts” configuration setting @@ -17058,145 +17058,145 @@ msgstr "" #: includes/functions/functions.php:1639 includes/functions/functions.php:1654 #: includes/functions/functions.php:1667 #, php-format -msgid "great ×%d aunt" +msgid "great ×%s aunt" msgstr "" #: includes/functions/functions.php:1641 includes/functions/functions.php:1656 #: includes/functions/functions.php:1669 #, php-format -msgid "great ×%d aunt/uncle" +msgid "great ×%s aunt/uncle" msgstr "" #: includes/functions/functions.php:2042 includes/functions/functions.php:2057 #, php-format -msgid "great ×%d grandchild" +msgid "great ×%s grandchild" msgstr "" #: includes/functions/functions.php:2040 includes/functions/functions.php:2055 #, php-format -msgid "great ×%d granddaughter" +msgid "great ×%s granddaughter" msgstr "" -#. I18N: if you need a different number for %d, contact the developers, as a code-change is required +#. I18N: if you need a different number for %s, contact the developers, as a code-change is required #: includes/functions/functions.php:1912 includes/functions/functions.php:1922 #: includes/functions/functions.php:1932 includes/functions/functions.php:1942 #: includes/functions/functions.php:1954 #, php-format -msgid "great ×%d grandfather" +msgid "great ×%s grandfather" msgstr "" #: includes/functions/functions.php:1914 includes/functions/functions.php:1924 #: includes/functions/functions.php:1934 includes/functions/functions.php:1944 #: includes/functions/functions.php:1956 #, php-format -msgid "great ×%d grandmother" +msgid "great ×%s grandmother" msgstr "" #: includes/functions/functions.php:1916 includes/functions/functions.php:1926 #: includes/functions/functions.php:1936 includes/functions/functions.php:1946 #: includes/functions/functions.php:1958 #, php-format -msgid "great ×%d grandparent" +msgid "great ×%s grandparent" msgstr "" -#. I18N: if you need a different number for %d, contact the developers, as a code-change is required +#. I18N: if you need a different number for %s, contact the developers, as a code-change is required #: includes/functions/functions.php:2038 includes/functions/functions.php:2053 #, php-format -msgid "great ×%d grandson" +msgid "great ×%s grandson" msgstr "" -#. I18N: if you need a different number for %d, contact the developers, as a code-change is required +#. I18N: if you need a different number for %s, contact the developers, as a code-change is required #: includes/functions/functions.php:1823 includes/functions/functions.php:1836 #, php-format -msgid "great ×%d nephew" +msgid "great ×%s nephew" msgstr "" #: includes/functions/functions.php:1797 #, php-format -msgctxt "(a man’s) brother’s great ×(%d-1) grandson" -msgid "great ×%d nephew" +msgctxt "(a man’s) brother’s great ×(%s-1) grandson" +msgid "great ×%s nephew" msgstr "" #: includes/functions/functions.php:1799 #, php-format -msgctxt "(a man’s) sister’s great ×(%d-1) grandson" -msgid "great ×%d nephew" +msgctxt "(a man’s) sister’s great ×(%s-1) grandson" +msgid "great ×%s nephew" msgstr "" #: includes/functions/functions.php:1801 #, php-format -msgctxt "(a woman’s) great ×%d nephew" -msgid "great ×%d nephew" +msgctxt "(a woman’s) great ×%s nephew" +msgid "great ×%s nephew" msgstr "" #: includes/functions/functions.php:1827 includes/functions/functions.php:1840 #, php-format -msgid "great ×%d nephew/niece" +msgid "great ×%s nephew/niece" msgstr "" #: includes/functions/functions.php:1813 #, php-format -msgctxt "(a man’s) brother’s great ×(%d-1) grandchild" -msgid "great ×%d nephew/niece" +msgctxt "(a man’s) brother’s great ×(%s-1) grandchild" +msgid "great ×%s nephew/niece" msgstr "" #: includes/functions/functions.php:1815 #, php-format -msgctxt "(a man’s) sister’s great ×(%d-1) grandchild" -msgid "great ×%d nephew/niece" +msgctxt "(a man’s) sister’s great ×(%s-1) grandchild" +msgid "great ×%s nephew/niece" msgstr "" #: includes/functions/functions.php:1817 #, php-format -msgctxt "(a woman’s) great ×%d nephew/niece" -msgid "great ×%d nephew/niece" +msgctxt "(a woman’s) great ×%s nephew/niece" +msgid "great ×%s nephew/niece" msgstr "" #: includes/functions/functions.php:1825 includes/functions/functions.php:1838 #, php-format -msgid "great ×%d niece" +msgid "great ×%s niece" msgstr "" #: includes/functions/functions.php:1805 #, php-format -msgctxt "(a man’s) brother’s great ×(%d-1) granddaughter" -msgid "great ×%d niece" +msgctxt "(a man’s) brother’s great ×(%s-1) granddaughter" +msgid "great ×%s niece" msgstr "" #: includes/functions/functions.php:1807 #, php-format -msgctxt "(a man’s) sister’s great ×(%d-1) granddaughter" -msgid "great ×%d niece" +msgctxt "(a man’s) sister’s great ×(%s-1) granddaughter" +msgid "great ×%s niece" msgstr "" #: includes/functions/functions.php:1809 #, php-format -msgctxt "(a woman’s) great ×%d niece" -msgid "great ×%d niece" +msgctxt "(a woman’s) great ×%s niece" +msgid "great ×%s niece" msgstr "" -#. I18N: if you need a different number for %d, contact the developers, as a code-change is required +#. I18N: if you need a different number for %s, contact the developers, as a code-change is required #: includes/functions/functions.php:1637 includes/functions/functions.php:1665 #, php-format -msgid "great ×%d uncle" +msgid "great ×%s uncle" msgstr "" #: includes/functions/functions.php:1647 #, php-format -msgctxt "great ×(%d-1) grandfather’s brother" -msgid "great ×%d uncle" +msgctxt "great ×(%s-1) grandfather’s brother" +msgid "great ×%s uncle" msgstr "" #: includes/functions/functions.php:1649 #, php-format -msgctxt "great ×(%d-1) grandmother’s brother" -msgid "great ×%d uncle" +msgctxt "great ×(%s-1) grandmother’s brother" +msgid "great ×%s uncle" msgstr "" #: includes/functions/functions.php:1651 #, php-format -msgctxt "great ×(%d-1) grandparent’s brother" -msgid "great ×%d uncle" +msgctxt "great ×(%s-1) grandparent’s brother" +msgid "great ×%s uncle" msgstr "" #: includes/functions/functions.php:1579 @@ -18649,8 +18649,8 @@ msgstr "" #: app/Module/UpcomingAnniversariesModule.php:125 #: app/Module/YahrzeitModule.php:250 #, php-format -msgid "maximum %d day" -msgid_plural "maximum %d days" +msgid "maximum %s day" +msgid_plural "maximum %s days" msgstr[0] "" msgstr[1] "" msgstr[2] "" diff --git a/language/sr-Latn.po b/language/sr-Latn.po index 506de13c4e..7947f9137e 100644 --- a/language/sr-Latn.po +++ b/language/sr-Latn.po @@ -195,32 +195,32 @@ msgstr "" #: app/Module/LoggedInUsersModule.php:51 app/Stats.php:5372 #, php-format -msgid "%d anonymous logged-in user" -msgid_plural "%d anonymous logged-in users" +msgid "%s anonymous logged-in user" +msgid_plural "%s anonymous logged-in users" msgstr[0] "" msgstr[1] "" msgstr[2] "" #: app/Module/LoggedInUsersModule.php:57 app/Stats.php:5382 #, php-format -msgid "%d logged-in user" -msgid_plural "%d logged-in users" +msgid "%s logged-in user" +msgid_plural "%s logged-in users" msgstr[0] "" msgstr[1] "" msgstr[2] "" #: app/Module/RelativesTabModule.php:62 #, php-format -msgid "%d month" -msgid_plural "%d months" +msgid "%s month" +msgid_plural "%s months" msgstr[0] "" msgstr[1] "" msgstr[2] "" #: app/Module/RelativesTabModule.php:60 #, php-format -msgid "%d year" -msgid_plural "%d years" +msgid "%s year" +msgid_plural "%s years" msgstr[0] "" msgstr[1] "" msgstr[2] "" @@ -228,20 +228,20 @@ msgstr[2] "" #: includes/functions/functions.php:555 #, php-format msgctxt "FEMALE" -msgid "%d × cousin" +msgid "%s × cousin" msgstr "" #. I18N: Note that for Italian and Polish, “N’th cousins” are different from English “N’th cousins”, and the software has already generated the correct “N” for your language. You only need to translate - you do not need to convert. For other languages, if your cousin rules are different from English, please contact the developers. #: includes/functions/functions.php:520 #, php-format msgctxt "MALE" -msgid "%d × cousin" +msgid "%s × cousin" msgstr "" #: includes/functions/functions.php:590 #, php-format msgctxt "MALE/FEMALE" -msgid "%d × cousin" +msgid "%s × cousin" msgstr "" #. I18N: This is the format string for full dates. See http://php.net/date for codes @@ -14340,7 +14340,7 @@ msgstr "" #: setup.php:183 #, php-format -msgid "This server’s memory limit is %d MB and its CPU time limit is %d seconds." +msgid "This server’s memory limit is %s MB and its CPU time limit is %s seconds." msgstr "" #. I18N: Help text for the “Other facts to show in charts” configuration setting @@ -17020,145 +17020,145 @@ msgstr "" #: includes/functions/functions.php:1639 includes/functions/functions.php:1654 #: includes/functions/functions.php:1667 #, php-format -msgid "great ×%d aunt" +msgid "great ×%s aunt" msgstr "" #: includes/functions/functions.php:1641 includes/functions/functions.php:1656 #: includes/functions/functions.php:1669 #, php-format -msgid "great ×%d aunt/uncle" +msgid "great ×%s aunt/uncle" msgstr "" #: includes/functions/functions.php:2042 includes/functions/functions.php:2057 #, php-format -msgid "great ×%d grandchild" +msgid "great ×%s grandchild" msgstr "" #: includes/functions/functions.php:2040 includes/functions/functions.php:2055 #, php-format -msgid "great ×%d granddaughter" +msgid "great ×%s granddaughter" msgstr "" -#. I18N: if you need a different number for %d, contact the developers, as a code-change is required +#. I18N: if you need a different number for %s, contact the developers, as a code-change is required #: includes/functions/functions.php:1912 includes/functions/functions.php:1922 #: includes/functions/functions.php:1932 includes/functions/functions.php:1942 #: includes/functions/functions.php:1954 #, php-format -msgid "great ×%d grandfather" +msgid "great ×%s grandfather" msgstr "" #: includes/functions/functions.php:1914 includes/functions/functions.php:1924 #: includes/functions/functions.php:1934 includes/functions/functions.php:1944 #: includes/functions/functions.php:1956 #, php-format -msgid "great ×%d grandmother" +msgid "great ×%s grandmother" msgstr "" #: includes/functions/functions.php:1916 includes/functions/functions.php:1926 #: includes/functions/functions.php:1936 includes/functions/functions.php:1946 #: includes/functions/functions.php:1958 #, php-format -msgid "great ×%d grandparent" +msgid "great ×%s grandparent" msgstr "" -#. I18N: if you need a different number for %d, contact the developers, as a code-change is required +#. I18N: if you need a different number for %s, contact the developers, as a code-change is required #: includes/functions/functions.php:2038 includes/functions/functions.php:2053 #, php-format -msgid "great ×%d grandson" +msgid "great ×%s grandson" msgstr "" -#. I18N: if you need a different number for %d, contact the developers, as a code-change is required +#. I18N: if you need a different number for %s, contact the developers, as a code-change is required #: includes/functions/functions.php:1823 includes/functions/functions.php:1836 #, php-format -msgid "great ×%d nephew" +msgid "great ×%s nephew" msgstr "" #: includes/functions/functions.php:1797 #, php-format -msgctxt "(a man’s) brother’s great ×(%d-1) grandson" -msgid "great ×%d nephew" +msgctxt "(a man’s) brother’s great ×(%s-1) grandson" +msgid "great ×%s nephew" msgstr "" #: includes/functions/functions.php:1799 #, php-format -msgctxt "(a man’s) sister’s great ×(%d-1) grandson" -msgid "great ×%d nephew" +msgctxt "(a man’s) sister’s great ×(%s-1) grandson" +msgid "great ×%s nephew" msgstr "" #: includes/functions/functions.php:1801 #, php-format -msgctxt "(a woman’s) great ×%d nephew" -msgid "great ×%d nephew" +msgctxt "(a woman’s) great ×%s nephew" +msgid "great ×%s nephew" msgstr "" #: includes/functions/functions.php:1827 includes/functions/functions.php:1840 #, php-format -msgid "great ×%d nephew/niece" +msgid "great ×%s nephew/niece" msgstr "" #: includes/functions/functions.php:1813 #, php-format -msgctxt "(a man’s) brother’s great ×(%d-1) grandchild" -msgid "great ×%d nephew/niece" +msgctxt "(a man’s) brother’s great ×(%s-1) grandchild" +msgid "great ×%s nephew/niece" msgstr "" #: includes/functions/functions.php:1815 #, php-format -msgctxt "(a man’s) sister’s great ×(%d-1) grandchild" -msgid "great ×%d nephew/niece" +msgctxt "(a man’s) sister’s great ×(%s-1) grandchild" +msgid "great ×%s nephew/niece" msgstr "" #: includes/functions/functions.php:1817 #, php-format -msgctxt "(a woman’s) great ×%d nephew/niece" -msgid "great ×%d nephew/niece" +msgctxt "(a woman’s) great ×%s nephew/niece" +msgid "great ×%s nephew/niece" msgstr "" #: includes/functions/functions.php:1825 includes/functions/functions.php:1838 #, php-format -msgid "great ×%d niece" +msgid "great ×%s niece" msgstr "" #: includes/functions/functions.php:1805 #, php-format -msgctxt "(a man’s) brother’s great ×(%d-1) granddaughter" -msgid "great ×%d niece" +msgctxt "(a man’s) brother’s great ×(%s-1) granddaughter" +msgid "great ×%s niece" msgstr "" #: includes/functions/functions.php:1807 #, php-format -msgctxt "(a man’s) sister’s great ×(%d-1) granddaughter" -msgid "great ×%d niece" +msgctxt "(a man’s) sister’s great ×(%s-1) granddaughter" +msgid "great ×%s niece" msgstr "" #: includes/functions/functions.php:1809 #, php-format -msgctxt "(a woman’s) great ×%d niece" -msgid "great ×%d niece" +msgctxt "(a woman’s) great ×%s niece" +msgid "great ×%s niece" msgstr "" -#. I18N: if you need a different number for %d, contact the developers, as a code-change is required +#. I18N: if you need a different number for %s, contact the developers, as a code-change is required #: includes/functions/functions.php:1637 includes/functions/functions.php:1665 #, php-format -msgid "great ×%d uncle" +msgid "great ×%s uncle" msgstr "" #: includes/functions/functions.php:1647 #, php-format -msgctxt "great ×(%d-1) grandfather’s brother" -msgid "great ×%d uncle" +msgctxt "great ×(%s-1) grandfather’s brother" +msgid "great ×%s uncle" msgstr "" #: includes/functions/functions.php:1649 #, php-format -msgctxt "great ×(%d-1) grandmother’s brother" -msgid "great ×%d uncle" +msgctxt "great ×(%s-1) grandmother’s brother" +msgid "great ×%s uncle" msgstr "" #: includes/functions/functions.php:1651 #, php-format -msgctxt "great ×(%d-1) grandparent’s brother" -msgid "great ×%d uncle" +msgctxt "great ×(%s-1) grandparent’s brother" +msgid "great ×%s uncle" msgstr "" #: includes/functions/functions.php:1579 @@ -18610,8 +18610,8 @@ msgstr "" #: app/Module/UpcomingAnniversariesModule.php:125 #: app/Module/YahrzeitModule.php:250 #, php-format -msgid "maximum %d day" -msgid_plural "maximum %d days" +msgid "maximum %s day" +msgid_plural "maximum %s days" msgstr[0] "" msgstr[1] "" msgstr[2] "" diff --git a/language/sr.po b/language/sr.po index 3521c20620..32d37e4bbc 100644 --- a/language/sr.po +++ b/language/sr.po @@ -195,32 +195,32 @@ msgstr "" #: app/Module/LoggedInUsersModule.php:51 app/Stats.php:5372 #, php-format -msgid "%d anonymous logged-in user" -msgid_plural "%d anonymous logged-in users" +msgid "%s anonymous logged-in user" +msgid_plural "%s anonymous logged-in users" msgstr[0] "" msgstr[1] "" msgstr[2] "" #: app/Module/LoggedInUsersModule.php:57 app/Stats.php:5382 #, php-format -msgid "%d logged-in user" -msgid_plural "%d logged-in users" +msgid "%s logged-in user" +msgid_plural "%s logged-in users" msgstr[0] "" msgstr[1] "" msgstr[2] "" #: app/Module/RelativesTabModule.php:62 #, php-format -msgid "%d month" -msgid_plural "%d months" +msgid "%s month" +msgid_plural "%s months" msgstr[0] "" msgstr[1] "" msgstr[2] "" #: app/Module/RelativesTabModule.php:60 #, php-format -msgid "%d year" -msgid_plural "%d years" +msgid "%s year" +msgid_plural "%s years" msgstr[0] "" msgstr[1] "" msgstr[2] "" @@ -228,20 +228,20 @@ msgstr[2] "" #: includes/functions/functions.php:555 #, php-format msgctxt "FEMALE" -msgid "%d × cousin" +msgid "%s × cousin" msgstr "" #. I18N: Note that for Italian and Polish, “N’th cousins” are different from English “N’th cousins”, and the software has already generated the correct “N” for your language. You only need to translate - you do not need to convert. For other languages, if your cousin rules are different from English, please contact the developers. #: includes/functions/functions.php:520 #, php-format msgctxt "MALE" -msgid "%d × cousin" +msgid "%s × cousin" msgstr "" #: includes/functions/functions.php:590 #, php-format msgctxt "MALE/FEMALE" -msgid "%d × cousin" +msgid "%s × cousin" msgstr "" #. I18N: This is the format string for full dates. See http://php.net/date for codes @@ -14340,7 +14340,7 @@ msgstr "" #: setup.php:183 #, php-format -msgid "This server’s memory limit is %d MB and its CPU time limit is %d seconds." +msgid "This server’s memory limit is %s MB and its CPU time limit is %s seconds." msgstr "" #. I18N: Help text for the “Other facts to show in charts” configuration setting @@ -17020,145 +17020,145 @@ msgstr "" #: includes/functions/functions.php:1639 includes/functions/functions.php:1654 #: includes/functions/functions.php:1667 #, php-format -msgid "great ×%d aunt" +msgid "great ×%s aunt" msgstr "" #: includes/functions/functions.php:1641 includes/functions/functions.php:1656 #: includes/functions/functions.php:1669 #, php-format -msgid "great ×%d aunt/uncle" +msgid "great ×%s aunt/uncle" msgstr "" #: includes/functions/functions.php:2042 includes/functions/functions.php:2057 #, php-format -msgid "great ×%d grandchild" +msgid "great ×%s grandchild" msgstr "" #: includes/functions/functions.php:2040 includes/functions/functions.php:2055 #, php-format -msgid "great ×%d granddaughter" +msgid "great ×%s granddaughter" msgstr "" -#. I18N: if you need a different number for %d, contact the developers, as a code-change is required +#. I18N: if you need a different number for %s, contact the developers, as a code-change is required #: includes/functions/functions.php:1912 includes/functions/functions.php:1922 #: includes/functions/functions.php:1932 includes/functions/functions.php:1942 #: includes/functions/functions.php:1954 #, php-format -msgid "great ×%d grandfather" +msgid "great ×%s grandfather" msgstr "" #: includes/functions/functions.php:1914 includes/functions/functions.php:1924 #: includes/functions/functions.php:1934 includes/functions/functions.php:1944 #: includes/functions/functions.php:1956 #, php-format -msgid "great ×%d grandmother" +msgid "great ×%s grandmother" msgstr "" #: includes/functions/functions.php:1916 includes/functions/functions.php:1926 #: includes/functions/functions.php:1936 includes/functions/functions.php:1946 #: includes/functions/functions.php:1958 #, php-format -msgid "great ×%d grandparent" +msgid "great ×%s grandparent" msgstr "" -#. I18N: if you need a different number for %d, contact the developers, as a code-change is required +#. I18N: if you need a different number for %s, contact the developers, as a code-change is required #: includes/functions/functions.php:2038 includes/functions/functions.php:2053 #, php-format -msgid "great ×%d grandson" +msgid "great ×%s grandson" msgstr "" -#. I18N: if you need a different number for %d, contact the developers, as a code-change is required +#. I18N: if you need a different number for %s, contact the developers, as a code-change is required #: includes/functions/functions.php:1823 includes/functions/functions.php:1836 #, php-format -msgid "great ×%d nephew" +msgid "great ×%s nephew" msgstr "" #: includes/functions/functions.php:1797 #, php-format -msgctxt "(a man’s) brother’s great ×(%d-1) grandson" -msgid "great ×%d nephew" +msgctxt "(a man’s) brother’s great ×(%s-1) grandson" +msgid "great ×%s nephew" msgstr "" #: includes/functions/functions.php:1799 #, php-format -msgctxt "(a man’s) sister’s great ×(%d-1) grandson" -msgid "great ×%d nephew" +msgctxt "(a man’s) sister’s great ×(%s-1) grandson" +msgid "great ×%s nephew" msgstr "" #: includes/functions/functions.php:1801 #, php-format -msgctxt "(a woman’s) great ×%d nephew" -msgid "great ×%d nephew" +msgctxt "(a woman’s) great ×%s nephew" +msgid "great ×%s nephew" msgstr "" #: includes/functions/functions.php:1827 includes/functions/functions.php:1840 #, php-format -msgid "great ×%d nephew/niece" +msgid "great ×%s nephew/niece" msgstr "" #: includes/functions/functions.php:1813 #, php-format -msgctxt "(a man’s) brother’s great ×(%d-1) grandchild" -msgid "great ×%d nephew/niece" +msgctxt "(a man’s) brother’s great ×(%s-1) grandchild" +msgid "great ×%s nephew/niece" msgstr "" #: includes/functions/functions.php:1815 #, php-format -msgctxt "(a man’s) sister’s great ×(%d-1) grandchild" -msgid "great ×%d nephew/niece" +msgctxt "(a man’s) sister’s great ×(%s-1) grandchild" +msgid "great ×%s nephew/niece" msgstr "" #: includes/functions/functions.php:1817 #, php-format -msgctxt "(a woman’s) great ×%d nephew/niece" -msgid "great ×%d nephew/niece" +msgctxt "(a woman’s) great ×%s nephew/niece" +msgid "great ×%s nephew/niece" msgstr "" #: includes/functions/functions.php:1825 includes/functions/functions.php:1838 #, php-format -msgid "great ×%d niece" +msgid "great ×%s niece" msgstr "" #: includes/functions/functions.php:1805 #, php-format -msgctxt "(a man’s) brother’s great ×(%d-1) granddaughter" -msgid "great ×%d niece" +msgctxt "(a man’s) brother’s great ×(%s-1) granddaughter" +msgid "great ×%s niece" msgstr "" #: includes/functions/functions.php:1807 #, php-format -msgctxt "(a man’s) sister’s great ×(%d-1) granddaughter" -msgid "great ×%d niece" +msgctxt "(a man’s) sister’s great ×(%s-1) granddaughter" +msgid "great ×%s niece" msgstr "" #: includes/functions/functions.php:1809 #, php-format -msgctxt "(a woman’s) great ×%d niece" -msgid "great ×%d niece" +msgctxt "(a woman’s) great ×%s niece" +msgid "great ×%s niece" msgstr "" -#. I18N: if you need a different number for %d, contact the developers, as a code-change is required +#. I18N: if you need a different number for %s, contact the developers, as a code-change is required #: includes/functions/functions.php:1637 includes/functions/functions.php:1665 #, php-format -msgid "great ×%d uncle" +msgid "great ×%s uncle" msgstr "" #: includes/functions/functions.php:1647 #, php-format -msgctxt "great ×(%d-1) grandfather’s brother" -msgid "great ×%d uncle" +msgctxt "great ×(%s-1) grandfather’s brother" +msgid "great ×%s uncle" msgstr "" #: includes/functions/functions.php:1649 #, php-format -msgctxt "great ×(%d-1) grandmother’s brother" -msgid "great ×%d uncle" +msgctxt "great ×(%s-1) grandmother’s brother" +msgid "great ×%s uncle" msgstr "" #: includes/functions/functions.php:1651 #, php-format -msgctxt "great ×(%d-1) grandparent’s brother" -msgid "great ×%d uncle" +msgctxt "great ×(%s-1) grandparent’s brother" +msgid "great ×%s uncle" msgstr "" #: includes/functions/functions.php:1579 @@ -18610,8 +18610,8 @@ msgstr "" #: app/Module/UpcomingAnniversariesModule.php:125 #: app/Module/YahrzeitModule.php:250 #, php-format -msgid "maximum %d day" -msgid_plural "maximum %d days" +msgid "maximum %s day" +msgid_plural "maximum %s days" msgstr[0] "" msgstr[1] "" msgstr[2] "" diff --git a/language/sv.po b/language/sv.po index f35e17e017..f04e045cbf 100644 --- a/language/sv.po +++ b/language/sv.po @@ -189,50 +189,50 @@ msgstr "%H:%i:%s" #: app/Module/LoggedInUsersModule.php:51 app/Stats.php:5372 #, php-format -msgid "%d anonymous logged-in user" -msgid_plural "%d anonymous logged-in users" -msgstr[0] "%d anonym inloggad användare" -msgstr[1] "%d anonymt inloggade användare" +msgid "%s anonymous logged-in user" +msgid_plural "%s anonymous logged-in users" +msgstr[0] "%s anonym inloggad användare" +msgstr[1] "%s anonymt inloggade användare" #: app/Module/LoggedInUsersModule.php:57 app/Stats.php:5382 #, php-format -msgid "%d logged-in user" -msgid_plural "%d logged-in users" -msgstr[0] "%d inloggad användare" -msgstr[1] "%d inloggade användare" +msgid "%s logged-in user" +msgid_plural "%s logged-in users" +msgstr[0] "%s inloggad användare" +msgstr[1] "%s inloggade användare" #: app/Module/RelativesTabModule.php:62 #, php-format -msgid "%d month" -msgid_plural "%d months" -msgstr[0] "%d månad" -msgstr[1] "%d månader" +msgid "%s month" +msgid_plural "%s months" +msgstr[0] "%s månad" +msgstr[1] "%s månader" #: app/Module/RelativesTabModule.php:60 #, php-format -msgid "%d year" -msgid_plural "%d years" -msgstr[0] "%d år" -msgstr[1] "%d år" +msgid "%s year" +msgid_plural "%s years" +msgstr[0] "%s år" +msgstr[1] "%s år" #: includes/functions/functions.php:555 #, php-format msgctxt "FEMALE" -msgid "%d × cousin" -msgstr "%d. kusin" +msgid "%s × cousin" +msgstr "%s. kusin" #. I18N: Note that for Italian and Polish, “N’th cousins” are different from English “N’th cousins”, and the software has already generated the correct “N” for your language. You only need to translate - you do not need to convert. For other languages, if your cousin rules are different from English, please contact the developers. #: includes/functions/functions.php:520 #, php-format msgctxt "MALE" -msgid "%d × cousin" -msgstr "%d. kusin" +msgid "%s × cousin" +msgstr "%s. kusin" #: includes/functions/functions.php:590 #, php-format msgctxt "MALE/FEMALE" -msgid "%d × cousin" -msgstr "%d. kusin" +msgid "%s × cousin" +msgstr "%s. kusin" #. I18N: This is the format string for full dates. See http://php.net/date for codes #: app/Date.php:222 app/I18N.php:212 @@ -14303,8 +14303,8 @@ msgstr "Den här servern stödjer inte säkra nedladdningar med HTTPS." #: setup.php:183 #, php-format -msgid "This server’s memory limit is %d MB and its CPU time limit is %d seconds." -msgstr "Denna servers minnesgräns är %dMB och dess CPU-tidsgräns är %d sekunder." +msgid "This server’s memory limit is %s MB and its CPU time limit is %s seconds." +msgstr "Denna servers minnesgräns är %sMB och dess CPU-tidsgräns är %s sekunder." #. I18N: Help text for the “Other facts to show in charts” configuration setting #: admin_trees_config.php:1632 @@ -16979,146 +16979,146 @@ msgstr "sonsons maka" #: includes/functions/functions.php:1639 includes/functions/functions.php:1654 #: includes/functions/functions.php:1667 #, php-format -msgid "great ×%d aunt" -msgstr "%d. generations tant" +msgid "great ×%s aunt" +msgstr "%s. generations tant" #: includes/functions/functions.php:1641 includes/functions/functions.php:1656 #: includes/functions/functions.php:1669 #, php-format -msgid "great ×%d aunt/uncle" -msgstr "%d. generations tant/onkel" +msgid "great ×%s aunt/uncle" +msgstr "%s. generations tant/onkel" #: includes/functions/functions.php:2042 includes/functions/functions.php:2057 #, php-format -msgid "great ×%d grandchild" -msgstr "barnbarn %d generationer fram" +msgid "great ×%s grandchild" +msgstr "barnbarn %s generationer fram" #: includes/functions/functions.php:2040 includes/functions/functions.php:2055 #, php-format -msgid "great ×%d granddaughter" -msgstr "barnets dotter %d generationer fram" +msgid "great ×%s granddaughter" +msgstr "barnets dotter %s generationer fram" -#. I18N: if you need a different number for %d, contact the developers, as a code-change is required +#. I18N: if you need a different number for %s, contact the developers, as a code-change is required #: includes/functions/functions.php:1912 includes/functions/functions.php:1922 #: includes/functions/functions.php:1932 includes/functions/functions.php:1942 #: includes/functions/functions.php:1954 #, php-format -msgid "great ×%d grandfather" -msgstr "gammelfar %d generationer bak" +msgid "great ×%s grandfather" +msgstr "gammelfar %s generationer bak" #: includes/functions/functions.php:1914 includes/functions/functions.php:1924 #: includes/functions/functions.php:1934 includes/functions/functions.php:1944 #: includes/functions/functions.php:1956 #, php-format -msgid "great ×%d grandmother" -msgstr "gammelmor %d generationer bak" +msgid "great ×%s grandmother" +msgstr "gammelmor %s generationer bak" #: includes/functions/functions.php:1916 includes/functions/functions.php:1926 #: includes/functions/functions.php:1936 includes/functions/functions.php:1946 #: includes/functions/functions.php:1958 #, php-format -msgid "great ×%d grandparent" -msgstr "gammelförälder %d generationer bak" +msgid "great ×%s grandparent" +msgstr "gammelförälder %s generationer bak" -#. I18N: if you need a different number for %d, contact the developers, as a code-change is required +#. I18N: if you need a different number for %s, contact the developers, as a code-change is required #: includes/functions/functions.php:2038 includes/functions/functions.php:2053 #, php-format -msgid "great ×%d grandson" -msgstr "barnson %d generationer fram" +msgid "great ×%s grandson" +msgstr "barnson %s generationer fram" -#. I18N: if you need a different number for %d, contact the developers, as a code-change is required +#. I18N: if you need a different number for %s, contact the developers, as a code-change is required #: includes/functions/functions.php:1823 includes/functions/functions.php:1836 #, php-format -msgid "great ×%d nephew" -msgstr "%d. generations nevö" +msgid "great ×%s nephew" +msgstr "%s. generations nevö" #: includes/functions/functions.php:1797 #, php-format -msgctxt "(a man’s) brother’s great ×(%d-1) grandson" -msgid "great ×%d nephew" -msgstr "%d. generations brorson" +msgctxt "(a man’s) brother’s great ×(%s-1) grandson" +msgid "great ×%s nephew" +msgstr "%s. generations brorson" #: includes/functions/functions.php:1799 #, php-format -msgctxt "(a man’s) sister’s great ×(%d-1) grandson" -msgid "great ×%d nephew" -msgstr "%d. generations systerson" +msgctxt "(a man’s) sister’s great ×(%s-1) grandson" +msgid "great ×%s nephew" +msgstr "%s. generations systerson" #: includes/functions/functions.php:1801 #, php-format -msgctxt "(a woman’s) great ×%d nephew" -msgid "great ×%d nephew" -msgstr "%d. generations syskonson" +msgctxt "(a woman’s) great ×%s nephew" +msgid "great ×%s nephew" +msgstr "%s. generations syskonson" #: includes/functions/functions.php:1827 includes/functions/functions.php:1840 #, php-format -msgid "great ×%d nephew/niece" -msgstr "%d. generations nevö/niece" +msgid "great ×%s nephew/niece" +msgstr "%s. generations nevö/niece" #: includes/functions/functions.php:1813 #, php-format -msgctxt "(a man’s) brother’s great ×(%d-1) grandchild" -msgid "great ×%d nephew/niece" -msgstr "%d. generations brorbarn" +msgctxt "(a man’s) brother’s great ×(%s-1) grandchild" +msgid "great ×%s nephew/niece" +msgstr "%s. generations brorbarn" #: includes/functions/functions.php:1815 #, php-format -msgctxt "(a man’s) sister’s great ×(%d-1) grandchild" -msgid "great ×%d nephew/niece" -msgstr "%d. generations systerbarn" +msgctxt "(a man’s) sister’s great ×(%s-1) grandchild" +msgid "great ×%s nephew/niece" +msgstr "%s. generations systerbarn" #: includes/functions/functions.php:1817 #, php-format -msgctxt "(a woman’s) great ×%d nephew/niece" -msgid "great ×%d nephew/niece" -msgstr "%d. generations syskonbarn" +msgctxt "(a woman’s) great ×%s nephew/niece" +msgid "great ×%s nephew/niece" +msgstr "%s. generations syskonbarn" #: includes/functions/functions.php:1825 includes/functions/functions.php:1838 #, php-format -msgid "great ×%d niece" -msgstr "%d. generations niece" +msgid "great ×%s niece" +msgstr "%s. generations niece" #: includes/functions/functions.php:1805 #, php-format -msgctxt "(a man’s) brother’s great ×(%d-1) granddaughter" -msgid "great ×%d niece" -msgstr "%d. generations brorsdotter" +msgctxt "(a man’s) brother’s great ×(%s-1) granddaughter" +msgid "great ×%s niece" +msgstr "%s. generations brorsdotter" #: includes/functions/functions.php:1807 #, php-format -msgctxt "(a man’s) sister’s great ×(%d-1) granddaughter" -msgid "great ×%d niece" -msgstr "%d. generations systerdotter" +msgctxt "(a man’s) sister’s great ×(%s-1) granddaughter" +msgid "great ×%s niece" +msgstr "%s. generations systerdotter" #: includes/functions/functions.php:1809 #, php-format -msgctxt "(a woman’s) great ×%d niece" -msgid "great ×%d niece" -msgstr "%d. generations syskondotter" +msgctxt "(a woman’s) great ×%s niece" +msgid "great ×%s niece" +msgstr "%s. generations syskondotter" -#. I18N: if you need a different number for %d, contact the developers, as a code-change is required +#. I18N: if you need a different number for %s, contact the developers, as a code-change is required #: includes/functions/functions.php:1637 includes/functions/functions.php:1665 #, php-format -msgid "great ×%d uncle" -msgstr "%d. generations onkel" +msgid "great ×%s uncle" +msgstr "%s. generations onkel" #: includes/functions/functions.php:1647 #, php-format -msgctxt "great ×(%d-1) grandfather’s brother" -msgid "great ×%d uncle" -msgstr "%d. generations farbror" +msgctxt "great ×(%s-1) grandfather’s brother" +msgid "great ×%s uncle" +msgstr "%s. generations farbror" #: includes/functions/functions.php:1649 #, php-format -msgctxt "great ×(%d-1) grandmother’s brother" -msgid "great ×%d uncle" -msgstr "%d. generations morbror" +msgctxt "great ×(%s-1) grandmother’s brother" +msgid "great ×%s uncle" +msgstr "%s. generations morbror" #: includes/functions/functions.php:1651 #, php-format -msgctxt "great ×(%d-1) grandparent’s brother" -msgid "great ×%d uncle" -msgstr "%d. generations onkel" +msgctxt "great ×(%s-1) grandparent’s brother" +msgid "great ×%s uncle" +msgstr "%s. generations onkel" #: includes/functions/functions.php:1579 msgid "great ×4 aunt" @@ -18568,10 +18568,10 @@ msgstr "maximum" #: app/Module/UpcomingAnniversariesModule.php:125 #: app/Module/YahrzeitModule.php:250 #, php-format -msgid "maximum %d day" -msgid_plural "maximum %d days" -msgstr[0] "maximum %d dag" -msgstr[1] "maximum %d dagar" +msgid "maximum %s day" +msgid_plural "maximum %s days" +msgstr[0] "maximum %s dag" +msgstr[1] "maximum %s dagar" #: admin_trees_config.php:404 admin_trees_config.php:428 #: admin_trees_config.php:468 admin_trees_config.php:508 @@ -20082,10 +20082,10 @@ msgstr "…" #~ msgid "No other link between the two individuals could be found." #~ msgstr "Ingen annan förbindelse mellan de två personerna kunde hittas." -#~ msgid "Note: “living” is defined (if no death or burial is known) as ending %d year after birth or estimated birth." -#~ msgid_plural "Note: “living” is defined (if no death or burial is known) as ending %d years after birth or estimated birth." -#~ msgstr[0] "Anm.: Definitionen ”levande” (ifall ingen döds- eller begravningstid är känd) slutar %d år efter födelse eller uppskattad födelse." -#~ msgstr[1] "Anm.: Definitionen ”levande” (ifall ingen döds- eller begravningstid är känd) slutar %d år efter födelse eller uppskattad födelse." +#~ msgid "Note: “living” is defined (if no death or burial is known) as ending %s year after birth or estimated birth." +#~ msgid_plural "Note: “living” is defined (if no death or burial is known) as ending %s years after birth or estimated birth." +#~ msgstr[0] "Anm.: Definitionen ”levande” (ifall ingen döds- eller begravningstid är känd) slutar %s år efter födelse eller uppskattad födelse." +#~ msgstr[1] "Anm.: Definitionen ”levande” (ifall ingen döds- eller begravningstid är känd) slutar %s år efter födelse eller uppskattad födelse." #~ msgid "Notes are free-form text and will appear in the Fact Details section of the page." #~ msgstr "Anteckningar är ett fritt textfält och kommer att visas i faktadetaljsektionen på sidan." diff --git a/language/ta.po b/language/ta.po index 927d05a802..311e2f7a40 100644 --- a/language/ta.po +++ b/language/ta.po @@ -185,49 +185,49 @@ msgstr "" #: app/Module/LoggedInUsersModule.php:51 app/Stats.php:5372 #, php-format -msgid "%d anonymous logged-in user" -msgid_plural "%d anonymous logged-in users" +msgid "%s anonymous logged-in user" +msgid_plural "%s anonymous logged-in users" msgstr[0] "" msgstr[1] "" #: app/Module/LoggedInUsersModule.php:57 app/Stats.php:5382 #, php-format -msgid "%d logged-in user" -msgid_plural "%d logged-in users" +msgid "%s logged-in user" +msgid_plural "%s logged-in users" msgstr[0] "" msgstr[1] "" #: app/Module/RelativesTabModule.php:62 #, php-format -msgid "%d month" -msgid_plural "%d months" +msgid "%s month" +msgid_plural "%s months" msgstr[0] "" msgstr[1] "" #: app/Module/RelativesTabModule.php:60 #, php-format -msgid "%d year" -msgid_plural "%d years" +msgid "%s year" +msgid_plural "%s years" msgstr[0] "" msgstr[1] "" #: includes/functions/functions.php:555 #, php-format msgctxt "FEMALE" -msgid "%d × cousin" +msgid "%s × cousin" msgstr "" #. I18N: Note that for Italian and Polish, “N’th cousins” are different from English “N’th cousins”, and the software has already generated the correct “N” for your language. You only need to translate - you do not need to convert. For other languages, if your cousin rules are different from English, please contact the developers. #: includes/functions/functions.php:520 #, php-format msgctxt "MALE" -msgid "%d × cousin" +msgid "%s × cousin" msgstr "" #: includes/functions/functions.php:590 #, php-format msgctxt "MALE/FEMALE" -msgid "%d × cousin" +msgid "%s × cousin" msgstr "" #. I18N: This is the format string for full dates. See http://php.net/date for codes @@ -14299,7 +14299,7 @@ msgstr "" #: setup.php:183 #, php-format -msgid "This server’s memory limit is %d MB and its CPU time limit is %d seconds." +msgid "This server’s memory limit is %s MB and its CPU time limit is %s seconds." msgstr "" #. I18N: Help text for the “Other facts to show in charts” configuration setting @@ -16975,145 +16975,145 @@ msgstr "" #: includes/functions/functions.php:1639 includes/functions/functions.php:1654 #: includes/functions/functions.php:1667 #, php-format -msgid "great ×%d aunt" +msgid "great ×%s aunt" msgstr "" #: includes/functions/functions.php:1641 includes/functions/functions.php:1656 #: includes/functions/functions.php:1669 #, php-format -msgid "great ×%d aunt/uncle" +msgid "great ×%s aunt/uncle" msgstr "" #: includes/functions/functions.php:2042 includes/functions/functions.php:2057 #, php-format -msgid "great ×%d grandchild" +msgid "great ×%s grandchild" msgstr "" #: includes/functions/functions.php:2040 includes/functions/functions.php:2055 #, php-format -msgid "great ×%d granddaughter" +msgid "great ×%s granddaughter" msgstr "" -#. I18N: if you need a different number for %d, contact the developers, as a code-change is required +#. I18N: if you need a different number for %s, contact the developers, as a code-change is required #: includes/functions/functions.php:1912 includes/functions/functions.php:1922 #: includes/functions/functions.php:1932 includes/functions/functions.php:1942 #: includes/functions/functions.php:1954 #, php-format -msgid "great ×%d grandfather" +msgid "great ×%s grandfather" msgstr "" #: includes/functions/functions.php:1914 includes/functions/functions.php:1924 #: includes/functions/functions.php:1934 includes/functions/functions.php:1944 #: includes/functions/functions.php:1956 #, php-format -msgid "great ×%d grandmother" +msgid "great ×%s grandmother" msgstr "" #: includes/functions/functions.php:1916 includes/functions/functions.php:1926 #: includes/functions/functions.php:1936 includes/functions/functions.php:1946 #: includes/functions/functions.php:1958 #, php-format -msgid "great ×%d grandparent" +msgid "great ×%s grandparent" msgstr "" -#. I18N: if you need a different number for %d, contact the developers, as a code-change is required +#. I18N: if you need a different number for %s, contact the developers, as a code-change is required #: includes/functions/functions.php:2038 includes/functions/functions.php:2053 #, php-format -msgid "great ×%d grandson" +msgid "great ×%s grandson" msgstr "" -#. I18N: if you need a different number for %d, contact the developers, as a code-change is required +#. I18N: if you need a different number for %s, contact the developers, as a code-change is required #: includes/functions/functions.php:1823 includes/functions/functions.php:1836 #, php-format -msgid "great ×%d nephew" +msgid "great ×%s nephew" msgstr "" #: includes/functions/functions.php:1797 #, php-format -msgctxt "(a man’s) brother’s great ×(%d-1) grandson" -msgid "great ×%d nephew" +msgctxt "(a man’s) brother’s great ×(%s-1) grandson" +msgid "great ×%s nephew" msgstr "" #: includes/functions/functions.php:1799 #, php-format -msgctxt "(a man’s) sister’s great ×(%d-1) grandson" -msgid "great ×%d nephew" +msgctxt "(a man’s) sister’s great ×(%s-1) grandson" +msgid "great ×%s nephew" msgstr "" #: includes/functions/functions.php:1801 #, php-format -msgctxt "(a woman’s) great ×%d nephew" -msgid "great ×%d nephew" +msgctxt "(a woman’s) great ×%s nephew" +msgid "great ×%s nephew" msgstr "" #: includes/functions/functions.php:1827 includes/functions/functions.php:1840 #, php-format -msgid "great ×%d nephew/niece" +msgid "great ×%s nephew/niece" msgstr "" #: includes/functions/functions.php:1813 #, php-format -msgctxt "(a man’s) brother’s great ×(%d-1) grandchild" -msgid "great ×%d nephew/niece" +msgctxt "(a man’s) brother’s great ×(%s-1) grandchild" +msgid "great ×%s nephew/niece" msgstr "" #: includes/functions/functions.php:1815 #, php-format -msgctxt "(a man’s) sister’s great ×(%d-1) grandchild" -msgid "great ×%d nephew/niece" +msgctxt "(a man’s) sister’s great ×(%s-1) grandchild" +msgid "great ×%s nephew/niece" msgstr "" #: includes/functions/functions.php:1817 #, php-format -msgctxt "(a woman’s) great ×%d nephew/niece" -msgid "great ×%d nephew/niece" +msgctxt "(a woman’s) great ×%s nephew/niece" +msgid "great ×%s nephew/niece" msgstr "" #: includes/functions/functions.php:1825 includes/functions/functions.php:1838 #, php-format -msgid "great ×%d niece" +msgid "great ×%s niece" msgstr "" #: includes/functions/functions.php:1805 #, php-format -msgctxt "(a man’s) brother’s great ×(%d-1) granddaughter" -msgid "great ×%d niece" +msgctxt "(a man’s) brother’s great ×(%s-1) granddaughter" +msgid "great ×%s niece" msgstr "" #: includes/functions/functions.php:1807 #, php-format -msgctxt "(a man’s) sister’s great ×(%d-1) granddaughter" -msgid "great ×%d niece" +msgctxt "(a man’s) sister’s great ×(%s-1) granddaughter" +msgid "great ×%s niece" msgstr "" #: includes/functions/functions.php:1809 #, php-format -msgctxt "(a woman’s) great ×%d niece" -msgid "great ×%d niece" +msgctxt "(a woman’s) great ×%s niece" +msgid "great ×%s niece" msgstr "" -#. I18N: if you need a different number for %d, contact the developers, as a code-change is required +#. I18N: if you need a different number for %s, contact the developers, as a code-change is required #: includes/functions/functions.php:1637 includes/functions/functions.php:1665 #, php-format -msgid "great ×%d uncle" +msgid "great ×%s uncle" msgstr "" #: includes/functions/functions.php:1647 #, php-format -msgctxt "great ×(%d-1) grandfather’s brother" -msgid "great ×%d uncle" +msgctxt "great ×(%s-1) grandfather’s brother" +msgid "great ×%s uncle" msgstr "" #: includes/functions/functions.php:1649 #, php-format -msgctxt "great ×(%d-1) grandmother’s brother" -msgid "great ×%d uncle" +msgctxt "great ×(%s-1) grandmother’s brother" +msgid "great ×%s uncle" msgstr "" #: includes/functions/functions.php:1651 #, php-format -msgctxt "great ×(%d-1) grandparent’s brother" -msgid "great ×%d uncle" +msgctxt "great ×(%s-1) grandparent’s brother" +msgid "great ×%s uncle" msgstr "" #: includes/functions/functions.php:1579 @@ -18564,8 +18564,8 @@ msgstr "" #: app/Module/UpcomingAnniversariesModule.php:125 #: app/Module/YahrzeitModule.php:250 #, php-format -msgid "maximum %d day" -msgid_plural "maximum %d days" +msgid "maximum %s day" +msgid_plural "maximum %s days" msgstr[0] "" msgstr[1] "" diff --git a/language/tr.po b/language/tr.po index 8862dd09b0..1385797a49 100644 --- a/language/tr.po +++ b/language/tr.po @@ -182,51 +182,51 @@ msgstr "%H:%i" #: app/Module/LoggedInUsersModule.php:51 app/Stats.php:5372 #, php-format -msgid "%d anonymous logged-in user" -msgid_plural "%d anonymous logged-in users" -msgstr[0] "%d anonim kullanıcı çevrimiçi" +msgid "%s anonymous logged-in user" +msgid_plural "%s anonymous logged-in users" +msgstr[0] "%s anonim kullanıcı çevrimiçi" #: app/Module/LoggedInUsersModule.php:57 app/Stats.php:5382 #, php-format -msgid "%d logged-in user" -msgid_plural "%d logged-in users" -msgstr[0] "%d kullanıcı çevrimiçi" +msgid "%s logged-in user" +msgid_plural "%s logged-in users" +msgstr[0] "%s kullanıcı çevrimiçi" #: app/Module/RelativesTabModule.php:62 #, php-format -msgid "%d month" -msgid_plural "%d months" -msgstr[0] "%d ay" +msgid "%s month" +msgid_plural "%s months" +msgstr[0] "%s ay" #: app/Module/RelativesTabModule.php:60 #, php-format -msgid "%d year" -msgid_plural "%d years" -msgstr[0] "%d yıl" +msgid "%s year" +msgid_plural "%s years" +msgstr[0] "%s yıl" #: includes/functions/functions.php:555 #, php-format msgctxt "FEMALE" -msgid "%d × cousin" -msgstr "%d × kuzen" +msgid "%s × cousin" +msgstr "%s × kuzen" #. I18N: Note that for Italian and Polish, “N’th cousins” are different from English “N’th cousins”, and the software has already generated the correct “N” for your language. You only need to translate - you do not need to convert. For other languages, if your cousin rules are different from English, please contact the developers. #: includes/functions/functions.php:520 #, php-format msgctxt "MALE" -msgid "%d × cousin" -msgstr "%d × kuzen" +msgid "%s × cousin" +msgstr "%s × kuzen" #: includes/functions/functions.php:590 #, php-format msgctxt "MALE/FEMALE" -msgid "%d × cousin" -msgstr "%d × kuzen" +msgid "%s × cousin" +msgstr "%s × kuzen" #. I18N: This is the format string for full dates. See http://php.net/date for codes #: app/Date.php:222 app/I18N.php:212 msgid "%j %F %Y" -msgstr "%d-%M-%Y" +msgstr "%s-%M-%Y" #. I18N: BCE=Before the Common Era, for Julian years < 0. See http://en.wikipedia.org/wiki/Common_Era #: app/Stats.php:6341 @@ -14265,8 +14265,8 @@ msgstr "Bu sunucu HTTPS üzerinden güvenli indirmeyi desteklemiyor." #: setup.php:183 #, php-format -msgid "This server’s memory limit is %d MB and its CPU time limit is %d seconds." -msgstr "Bu sunucunun bellek sınırı %dMB ve CPU zaman sınırı %d saniyedir." +msgid "This server’s memory limit is %s MB and its CPU time limit is %s seconds." +msgstr "Bu sunucunun bellek sınırı %sMB ve CPU zaman sınırı %s saniyedir." #. I18N: Help text for the “Other facts to show in charts” configuration setting #: admin_trees_config.php:1632 @@ -16937,146 +16937,146 @@ msgstr "oğlunun gelini" #: includes/functions/functions.php:1639 includes/functions/functions.php:1654 #: includes/functions/functions.php:1667 #, php-format -msgid "great ×%d aunt" -msgstr "×%d göbek teyze" +msgid "great ×%s aunt" +msgstr "×%s göbek teyze" #: includes/functions/functions.php:1641 includes/functions/functions.php:1656 #: includes/functions/functions.php:1669 #, php-format -msgid "great ×%d aunt/uncle" -msgstr "×%d göbek hala/amca" +msgid "great ×%s aunt/uncle" +msgstr "×%s göbek hala/amca" #: includes/functions/functions.php:2042 includes/functions/functions.php:2057 #, php-format -msgid "great ×%d grandchild" -msgstr "büyük ×%d torunu" +msgid "great ×%s grandchild" +msgstr "büyük ×%s torunu" #: includes/functions/functions.php:2040 includes/functions/functions.php:2055 #, php-format -msgid "great ×%d granddaughter" -msgstr "büyük ×%d kız torunu" +msgid "great ×%s granddaughter" +msgstr "büyük ×%s kız torunu" -#. I18N: if you need a different number for %d, contact the developers, as a code-change is required +#. I18N: if you need a different number for %s, contact the developers, as a code-change is required #: includes/functions/functions.php:1912 includes/functions/functions.php:1922 #: includes/functions/functions.php:1932 includes/functions/functions.php:1942 #: includes/functions/functions.php:1954 #, php-format -msgid "great ×%d grandfather" -msgstr "büyük ×%d büyükbabası" +msgid "great ×%s grandfather" +msgstr "büyük ×%s büyükbabası" #: includes/functions/functions.php:1914 includes/functions/functions.php:1924 #: includes/functions/functions.php:1934 includes/functions/functions.php:1944 #: includes/functions/functions.php:1956 #, php-format -msgid "great ×%d grandmother" -msgstr "büyük ×%d büyükannesi" +msgid "great ×%s grandmother" +msgstr "büyük ×%s büyükannesi" #: includes/functions/functions.php:1916 includes/functions/functions.php:1926 #: includes/functions/functions.php:1936 includes/functions/functions.php:1946 #: includes/functions/functions.php:1958 #, php-format -msgid "great ×%d grandparent" -msgstr "büyük ×%d büyük ebeveyni" +msgid "great ×%s grandparent" +msgstr "büyük ×%s büyük ebeveyni" -#. I18N: if you need a different number for %d, contact the developers, as a code-change is required +#. I18N: if you need a different number for %s, contact the developers, as a code-change is required #: includes/functions/functions.php:2038 includes/functions/functions.php:2053 #, php-format -msgid "great ×%d grandson" -msgstr "büyük ×%d erkek torunu" +msgid "great ×%s grandson" +msgstr "büyük ×%s erkek torunu" -#. I18N: if you need a different number for %d, contact the developers, as a code-change is required +#. I18N: if you need a different number for %s, contact the developers, as a code-change is required #: includes/functions/functions.php:1823 includes/functions/functions.php:1836 #, php-format -msgid "great ×%d nephew" -msgstr "×%d göbek yeğen" +msgid "great ×%s nephew" +msgstr "×%s göbek yeğen" #: includes/functions/functions.php:1797 #, php-format -msgctxt "(a man’s) brother’s great ×(%d-1) grandson" -msgid "great ×%d nephew" -msgstr "×%d göbek yeğen" +msgctxt "(a man’s) brother’s great ×(%s-1) grandson" +msgid "great ×%s nephew" +msgstr "×%s göbek yeğen" #: includes/functions/functions.php:1799 #, php-format -msgctxt "(a man’s) sister’s great ×(%d-1) grandson" -msgid "great ×%d nephew" -msgstr "×%d göbek yeğen" +msgctxt "(a man’s) sister’s great ×(%s-1) grandson" +msgid "great ×%s nephew" +msgstr "×%s göbek yeğen" #: includes/functions/functions.php:1801 #, php-format -msgctxt "(a woman’s) great ×%d nephew" -msgid "great ×%d nephew" -msgstr "×%d göbek yeğen" +msgctxt "(a woman’s) great ×%s nephew" +msgid "great ×%s nephew" +msgstr "×%s göbek yeğen" #: includes/functions/functions.php:1827 includes/functions/functions.php:1840 #, php-format -msgid "great ×%d nephew/niece" -msgstr "×%d göbek yeğen" +msgid "great ×%s nephew/niece" +msgstr "×%s göbek yeğen" #: includes/functions/functions.php:1813 #, php-format -msgctxt "(a man’s) brother’s great ×(%d-1) grandchild" -msgid "great ×%d nephew/niece" -msgstr "×%d göbek yeğen" +msgctxt "(a man’s) brother’s great ×(%s-1) grandchild" +msgid "great ×%s nephew/niece" +msgstr "×%s göbek yeğen" #: includes/functions/functions.php:1815 #, php-format -msgctxt "(a man’s) sister’s great ×(%d-1) grandchild" -msgid "great ×%d nephew/niece" -msgstr "×%d göbek yeğen" +msgctxt "(a man’s) sister’s great ×(%s-1) grandchild" +msgid "great ×%s nephew/niece" +msgstr "×%s göbek yeğen" #: includes/functions/functions.php:1817 #, php-format -msgctxt "(a woman’s) great ×%d nephew/niece" -msgid "great ×%d nephew/niece" -msgstr "×%d göbek yeğen" +msgctxt "(a woman’s) great ×%s nephew/niece" +msgid "great ×%s nephew/niece" +msgstr "×%s göbek yeğen" #: includes/functions/functions.php:1825 includes/functions/functions.php:1838 #, php-format -msgid "great ×%d niece" -msgstr "×%d göbek yeğen" +msgid "great ×%s niece" +msgstr "×%s göbek yeğen" #: includes/functions/functions.php:1805 #, php-format -msgctxt "(a man’s) brother’s great ×(%d-1) granddaughter" -msgid "great ×%d niece" -msgstr "×%d göbek yeğen" +msgctxt "(a man’s) brother’s great ×(%s-1) granddaughter" +msgid "great ×%s niece" +msgstr "×%s göbek yeğen" #: includes/functions/functions.php:1807 #, php-format -msgctxt "(a man’s) sister’s great ×(%d-1) granddaughter" -msgid "great ×%d niece" -msgstr "×%d göbek yeğen" +msgctxt "(a man’s) sister’s great ×(%s-1) granddaughter" +msgid "great ×%s niece" +msgstr "×%s göbek yeğen" #: includes/functions/functions.php:1809 #, php-format -msgctxt "(a woman’s) great ×%d niece" -msgid "great ×%d niece" -msgstr "×%d göbek yeğen" +msgctxt "(a woman’s) great ×%s niece" +msgid "great ×%s niece" +msgstr "×%s göbek yeğen" -#. I18N: if you need a different number for %d, contact the developers, as a code-change is required +#. I18N: if you need a different number for %s, contact the developers, as a code-change is required #: includes/functions/functions.php:1637 includes/functions/functions.php:1665 #, php-format -msgid "great ×%d uncle" -msgstr "×%d göbek amca" +msgid "great ×%s uncle" +msgstr "×%s göbek amca" #: includes/functions/functions.php:1647 #, php-format -msgctxt "great ×(%d-1) grandfather’s brother" -msgid "great ×%d uncle" -msgstr "×%d göbek amca" +msgctxt "great ×(%s-1) grandfather’s brother" +msgid "great ×%s uncle" +msgstr "×%s göbek amca" #: includes/functions/functions.php:1649 #, php-format -msgctxt "great ×(%d-1) grandmother’s brother" -msgid "great ×%d uncle" -msgstr "×%d göbek amca" +msgctxt "great ×(%s-1) grandmother’s brother" +msgid "great ×%s uncle" +msgstr "×%s göbek amca" #: includes/functions/functions.php:1651 #, php-format -msgctxt "great ×(%d-1) grandparent’s brother" -msgid "great ×%d uncle" -msgstr "×%d göbek amca" +msgctxt "great ×(%s-1) grandparent’s brother" +msgid "great ×%s uncle" +msgstr "×%s göbek amca" #: includes/functions/functions.php:1579 msgid "great ×4 aunt" @@ -18525,9 +18525,9 @@ msgstr "enfazla" #: app/Module/UpcomingAnniversariesModule.php:125 #: app/Module/YahrzeitModule.php:250 #, php-format -msgid "maximum %d day" -msgid_plural "maximum %d days" -msgstr[0] "enfazla %d gün" +msgid "maximum %s day" +msgid_plural "maximum %s days" +msgstr[0] "enfazla %s gün" #: admin_trees_config.php:404 admin_trees_config.php:428 #: admin_trees_config.php:468 admin_trees_config.php:508 diff --git a/language/tt.po b/language/tt.po index e11f9993ef..586c86c020 100644 --- a/language/tt.po +++ b/language/tt.po @@ -185,45 +185,45 @@ msgstr "" #: app/Module/LoggedInUsersModule.php:51 app/Stats.php:5372 #, php-format -msgid "%d anonymous logged-in user" -msgid_plural "%d anonymous logged-in users" -msgstr[0] "%d аноним кулланучы" +msgid "%s anonymous logged-in user" +msgid_plural "%s anonymous logged-in users" +msgstr[0] "%s аноним кулланучы" #: app/Module/LoggedInUsersModule.php:57 app/Stats.php:5382 #, php-format -msgid "%d logged-in user" -msgid_plural "%d logged-in users" -msgstr[0] "%d кулланучы" +msgid "%s logged-in user" +msgid_plural "%s logged-in users" +msgstr[0] "%s кулланучы" #: app/Module/RelativesTabModule.php:62 #, php-format -msgid "%d month" -msgid_plural "%d months" -msgstr[0] "%d ай" +msgid "%s month" +msgid_plural "%s months" +msgstr[0] "%s ай" #: app/Module/RelativesTabModule.php:60 #, php-format -msgid "%d year" -msgid_plural "%d years" -msgstr[0] "%d ел" +msgid "%s year" +msgid_plural "%s years" +msgstr[0] "%s ел" #: includes/functions/functions.php:555 #, php-format msgctxt "FEMALE" -msgid "%d × cousin" +msgid "%s × cousin" msgstr "" #. I18N: Note that for Italian and Polish, “N’th cousins” are different from English “N’th cousins”, and the software has already generated the correct “N” for your language. You only need to translate - you do not need to convert. For other languages, if your cousin rules are different from English, please contact the developers. #: includes/functions/functions.php:520 #, php-format msgctxt "MALE" -msgid "%d × cousin" +msgid "%s × cousin" msgstr "" #: includes/functions/functions.php:590 #, php-format msgctxt "MALE/FEMALE" -msgid "%d × cousin" +msgid "%s × cousin" msgstr "" #. I18N: This is the format string for full dates. See http://php.net/date for codes @@ -14275,7 +14275,7 @@ msgstr "" #: setup.php:183 #, php-format -msgid "This server’s memory limit is %d MB and its CPU time limit is %d seconds." +msgid "This server’s memory limit is %s MB and its CPU time limit is %s seconds." msgstr "" #. I18N: Help text for the “Other facts to show in charts” configuration setting @@ -16950,145 +16950,145 @@ msgstr "улының улының хатыны" #: includes/functions/functions.php:1639 includes/functions/functions.php:1654 #: includes/functions/functions.php:1667 #, php-format -msgid "great ×%d aunt" +msgid "great ×%s aunt" msgstr "" #: includes/functions/functions.php:1641 includes/functions/functions.php:1656 #: includes/functions/functions.php:1669 #, php-format -msgid "great ×%d aunt/uncle" +msgid "great ×%s aunt/uncle" msgstr "" #: includes/functions/functions.php:2042 includes/functions/functions.php:2057 #, php-format -msgid "great ×%d grandchild" +msgid "great ×%s grandchild" msgstr "" #: includes/functions/functions.php:2040 includes/functions/functions.php:2055 #, php-format -msgid "great ×%d granddaughter" +msgid "great ×%s granddaughter" msgstr "" -#. I18N: if you need a different number for %d, contact the developers, as a code-change is required +#. I18N: if you need a different number for %s, contact the developers, as a code-change is required #: includes/functions/functions.php:1912 includes/functions/functions.php:1922 #: includes/functions/functions.php:1932 includes/functions/functions.php:1942 #: includes/functions/functions.php:1954 #, php-format -msgid "great ×%d grandfather" +msgid "great ×%s grandfather" msgstr "" #: includes/functions/functions.php:1914 includes/functions/functions.php:1924 #: includes/functions/functions.php:1934 includes/functions/functions.php:1944 #: includes/functions/functions.php:1956 #, php-format -msgid "great ×%d grandmother" +msgid "great ×%s grandmother" msgstr "" #: includes/functions/functions.php:1916 includes/functions/functions.php:1926 #: includes/functions/functions.php:1936 includes/functions/functions.php:1946 #: includes/functions/functions.php:1958 #, php-format -msgid "great ×%d grandparent" +msgid "great ×%s grandparent" msgstr "" -#. I18N: if you need a different number for %d, contact the developers, as a code-change is required +#. I18N: if you need a different number for %s, contact the developers, as a code-change is required #: includes/functions/functions.php:2038 includes/functions/functions.php:2053 #, php-format -msgid "great ×%d grandson" +msgid "great ×%s grandson" msgstr "" -#. I18N: if you need a different number for %d, contact the developers, as a code-change is required +#. I18N: if you need a different number for %s, contact the developers, as a code-change is required #: includes/functions/functions.php:1823 includes/functions/functions.php:1836 #, php-format -msgid "great ×%d nephew" +msgid "great ×%s nephew" msgstr "" #: includes/functions/functions.php:1797 #, php-format -msgctxt "(a man’s) brother’s great ×(%d-1) grandson" -msgid "great ×%d nephew" +msgctxt "(a man’s) brother’s great ×(%s-1) grandson" +msgid "great ×%s nephew" msgstr "" #: includes/functions/functions.php:1799 #, php-format -msgctxt "(a man’s) sister’s great ×(%d-1) grandson" -msgid "great ×%d nephew" +msgctxt "(a man’s) sister’s great ×(%s-1) grandson" +msgid "great ×%s nephew" msgstr "" #: includes/functions/functions.php:1801 #, php-format -msgctxt "(a woman’s) great ×%d nephew" -msgid "great ×%d nephew" +msgctxt "(a woman’s) great ×%s nephew" +msgid "great ×%s nephew" msgstr "" #: includes/functions/functions.php:1827 includes/functions/functions.php:1840 #, php-format -msgid "great ×%d nephew/niece" +msgid "great ×%s nephew/niece" msgstr "" #: includes/functions/functions.php:1813 #, php-format -msgctxt "(a man’s) brother’s great ×(%d-1) grandchild" -msgid "great ×%d nephew/niece" +msgctxt "(a man’s) brother’s great ×(%s-1) grandchild" +msgid "great ×%s nephew/niece" msgstr "" #: includes/functions/functions.php:1815 #, php-format -msgctxt "(a man’s) sister’s great ×(%d-1) grandchild" -msgid "great ×%d nephew/niece" +msgctxt "(a man’s) sister’s great ×(%s-1) grandchild" +msgid "great ×%s nephew/niece" msgstr "" #: includes/functions/functions.php:1817 #, php-format -msgctxt "(a woman’s) great ×%d nephew/niece" -msgid "great ×%d nephew/niece" +msgctxt "(a woman’s) great ×%s nephew/niece" +msgid "great ×%s nephew/niece" msgstr "" #: includes/functions/functions.php:1825 includes/functions/functions.php:1838 #, php-format -msgid "great ×%d niece" +msgid "great ×%s niece" msgstr "" #: includes/functions/functions.php:1805 #, php-format -msgctxt "(a man’s) brother’s great ×(%d-1) granddaughter" -msgid "great ×%d niece" +msgctxt "(a man’s) brother’s great ×(%s-1) granddaughter" +msgid "great ×%s niece" msgstr "" #: includes/functions/functions.php:1807 #, php-format -msgctxt "(a man’s) sister’s great ×(%d-1) granddaughter" -msgid "great ×%d niece" +msgctxt "(a man’s) sister’s great ×(%s-1) granddaughter" +msgid "great ×%s niece" msgstr "" #: includes/functions/functions.php:1809 #, php-format -msgctxt "(a woman’s) great ×%d niece" -msgid "great ×%d niece" +msgctxt "(a woman’s) great ×%s niece" +msgid "great ×%s niece" msgstr "" -#. I18N: if you need a different number for %d, contact the developers, as a code-change is required +#. I18N: if you need a different number for %s, contact the developers, as a code-change is required #: includes/functions/functions.php:1637 includes/functions/functions.php:1665 #, php-format -msgid "great ×%d uncle" +msgid "great ×%s uncle" msgstr "" #: includes/functions/functions.php:1647 #, php-format -msgctxt "great ×(%d-1) grandfather’s brother" -msgid "great ×%d uncle" +msgctxt "great ×(%s-1) grandfather’s brother" +msgid "great ×%s uncle" msgstr "" #: includes/functions/functions.php:1649 #, php-format -msgctxt "great ×(%d-1) grandmother’s brother" -msgid "great ×%d uncle" +msgctxt "great ×(%s-1) grandmother’s brother" +msgid "great ×%s uncle" msgstr "" #: includes/functions/functions.php:1651 #, php-format -msgctxt "great ×(%d-1) grandparent’s brother" -msgid "great ×%d uncle" +msgctxt "great ×(%s-1) grandparent’s brother" +msgid "great ×%s uncle" msgstr "" #: includes/functions/functions.php:1579 @@ -18539,9 +18539,9 @@ msgstr "максимум" #: app/Module/UpcomingAnniversariesModule.php:125 #: app/Module/YahrzeitModule.php:250 #, php-format -msgid "maximum %d day" -msgid_plural "maximum %d days" -msgstr[0] "Иң күбе %d көн" +msgid "maximum %s day" +msgid_plural "maximum %s days" +msgstr[0] "Иң күбе %s көн" #: admin_trees_config.php:404 admin_trees_config.php:428 #: admin_trees_config.php:468 admin_trees_config.php:508 @@ -19758,7 +19758,7 @@ msgstr "" #, fuzzy, php-format msgid "±%s year" msgid_plural "±%s years" -msgstr[0] "±%d ел" +msgstr[0] "±%s ел" #. I18N: Place a nickname in quotation marks #: app/Individual.php:1197 app/Individual.php:1215 diff --git a/language/uk.po b/language/uk.po index cbca27417e..4b6808d528 100644 --- a/language/uk.po +++ b/language/uk.po @@ -190,54 +190,54 @@ msgstr "%g:%i:%s %a" #: app/Module/LoggedInUsersModule.php:51 app/Stats.php:5372 #, php-format -msgid "%d anonymous logged-in user" -msgid_plural "%d anonymous logged-in users" -msgstr[0] "%d анонімний користувач" -msgstr[1] "%d анонімних користувачів" -msgstr[2] "%d анонімних користувачів" +msgid "%s anonymous logged-in user" +msgid_plural "%s anonymous logged-in users" +msgstr[0] "%s анонімний користувач" +msgstr[1] "%s анонімних користувачів" +msgstr[2] "%s анонімних користувачів" #: app/Module/LoggedInUsersModule.php:57 app/Stats.php:5382 #, php-format -msgid "%d logged-in user" -msgid_plural "%d logged-in users" -msgstr[0] "%d зареєстрований користувач" -msgstr[1] "%d зареєстрованих користувачів" -msgstr[2] "%d зареєстрованих користувачів" +msgid "%s logged-in user" +msgid_plural "%s logged-in users" +msgstr[0] "%s зареєстрований користувач" +msgstr[1] "%s зареєстрованих користувачів" +msgstr[2] "%s зареєстрованих користувачів" #: app/Module/RelativesTabModule.php:62 #, php-format -msgid "%d month" -msgid_plural "%d months" -msgstr[0] "%d місяць" -msgstr[1] "%d місяця" -msgstr[2] "%d місяців" +msgid "%s month" +msgid_plural "%s months" +msgstr[0] "%s місяць" +msgstr[1] "%s місяця" +msgstr[2] "%s місяців" #: app/Module/RelativesTabModule.php:60 #, php-format -msgid "%d year" -msgid_plural "%d years" -msgstr[0] "%d рік" -msgstr[1] "%d року" -msgstr[2] "%d років" +msgid "%s year" +msgid_plural "%s years" +msgstr[0] "%s рік" +msgstr[1] "%s року" +msgstr[2] "%s років" #: includes/functions/functions.php:555 #, php-format msgctxt "FEMALE" -msgid "%d × cousin" -msgstr "двоюрідна сестра (в %d коліні)" +msgid "%s × cousin" +msgstr "двоюрідна сестра (в %s коліні)" #. I18N: Note that for Italian and Polish, “N’th cousins” are different from English “N’th cousins”, and the software has already generated the correct “N” for your language. You only need to translate - you do not need to convert. For other languages, if your cousin rules are different from English, please contact the developers. #: includes/functions/functions.php:520 #, php-format msgctxt "MALE" -msgid "%d × cousin" -msgstr "двоюрідний брат (в %d коліні)" +msgid "%s × cousin" +msgstr "двоюрідний брат (в %s коліні)" #: includes/functions/functions.php:590 #, php-format msgctxt "MALE/FEMALE" -msgid "%d × cousin" -msgstr "двоюрідний брат/сестра (в %d коліні)" +msgid "%s × cousin" +msgstr "двоюрідний брат/сестра (в %s коліні)" #. I18N: This is the format string for full dates. See http://php.net/date for codes #: app/Date.php:222 app/I18N.php:212 @@ -14335,8 +14335,8 @@ msgstr "Цей сервер не підтримує безпечні заван #: setup.php:183 #, php-format -msgid "This server’s memory limit is %d MB and its CPU time limit is %d seconds." -msgstr "Цей сервер має наступні налаштування:<br> обмеження по пам'яті =%dMB (робоча пам'ять для скриптів)<br>межа процесорного часу =%d (максимальний час для виконання скрипта)" +msgid "This server’s memory limit is %s MB and its CPU time limit is %s seconds." +msgstr "Цей сервер має наступні налаштування:<br> обмеження по пам'яті =%sMB (робоча пам'ять для скриптів)<br>межа процесорного часу =%s (максимальний час для виконання скрипта)" #. I18N: Help text for the “Other facts to show in charts” configuration setting #: admin_trees_config.php:1632 @@ -17015,146 +17015,146 @@ msgstr "дружина онука" #: includes/functions/functions.php:1639 includes/functions/functions.php:1654 #: includes/functions/functions.php:1667 #, php-format -msgid "great ×%d aunt" -msgstr "%dх прабабуся" +msgid "great ×%s aunt" +msgstr "%sх прабабуся" #: includes/functions/functions.php:1641 includes/functions/functions.php:1656 #: includes/functions/functions.php:1669 #, php-format -msgid "great ×%d aunt/uncle" -msgstr "%dх прадід/прабабуся" +msgid "great ×%s aunt/uncle" +msgstr "%sх прадід/прабабуся" #: includes/functions/functions.php:2042 includes/functions/functions.php:2057 #, php-format -msgid "great ×%d grandchild" -msgstr "%dх праонук/онучка" +msgid "great ×%s grandchild" +msgstr "%sх праонук/онучка" #: includes/functions/functions.php:2040 includes/functions/functions.php:2055 #, php-format -msgid "great ×%d granddaughter" -msgstr "%dх праонучка" +msgid "great ×%s granddaughter" +msgstr "%sх праонучка" -#. I18N: if you need a different number for %d, contact the developers, as a code-change is required +#. I18N: if you need a different number for %s, contact the developers, as a code-change is required #: includes/functions/functions.php:1912 includes/functions/functions.php:1922 #: includes/functions/functions.php:1932 includes/functions/functions.php:1942 #: includes/functions/functions.php:1954 #, php-format -msgid "great ×%d grandfather" -msgstr "%dх прадід" +msgid "great ×%s grandfather" +msgstr "%sх прадід" #: includes/functions/functions.php:1914 includes/functions/functions.php:1924 #: includes/functions/functions.php:1934 includes/functions/functions.php:1944 #: includes/functions/functions.php:1956 #, php-format -msgid "great ×%d grandmother" -msgstr "%dх прабабуся" +msgid "great ×%s grandmother" +msgstr "%sх прабабуся" #: includes/functions/functions.php:1916 includes/functions/functions.php:1926 #: includes/functions/functions.php:1936 includes/functions/functions.php:1946 #: includes/functions/functions.php:1958 #, php-format -msgid "great ×%d grandparent" -msgstr "%dх прадід/прабабуся" +msgid "great ×%s grandparent" +msgstr "%sх прадід/прабабуся" -#. I18N: if you need a different number for %d, contact the developers, as a code-change is required +#. I18N: if you need a different number for %s, contact the developers, as a code-change is required #: includes/functions/functions.php:2038 includes/functions/functions.php:2053 #, php-format -msgid "great ×%d grandson" -msgstr "%dх праонук" +msgid "great ×%s grandson" +msgstr "%sх праонук" -#. I18N: if you need a different number for %d, contact the developers, as a code-change is required +#. I18N: if you need a different number for %s, contact the developers, as a code-change is required #: includes/functions/functions.php:1823 includes/functions/functions.php:1836 #, php-format -msgid "great ×%d nephew" -msgstr "%dх праплемінник" +msgid "great ×%s nephew" +msgstr "%sх праплемінник" #: includes/functions/functions.php:1797 #, php-format -msgctxt "(a man’s) brother’s great ×(%d-1) grandson" -msgid "great ×%d nephew" -msgstr "%dх праплемінник" +msgctxt "(a man’s) brother’s great ×(%s-1) grandson" +msgid "great ×%s nephew" +msgstr "%sх праплемінник" #: includes/functions/functions.php:1799 #, php-format -msgctxt "(a man’s) sister’s great ×(%d-1) grandson" -msgid "great ×%d nephew" -msgstr "%dх праплемінник" +msgctxt "(a man’s) sister’s great ×(%s-1) grandson" +msgid "great ×%s nephew" +msgstr "%sх праплемінник" #: includes/functions/functions.php:1801 #, php-format -msgctxt "(a woman’s) great ×%d nephew" -msgid "great ×%d nephew" -msgstr "%dх праплемінник" +msgctxt "(a woman’s) great ×%s nephew" +msgid "great ×%s nephew" +msgstr "%sх праплемінник" #: includes/functions/functions.php:1827 includes/functions/functions.php:1840 #, php-format -msgid "great ×%d nephew/niece" -msgstr "%dх праплемінник/праплемінниця" +msgid "great ×%s nephew/niece" +msgstr "%sх праплемінник/праплемінниця" #: includes/functions/functions.php:1813 #, php-format -msgctxt "(a man’s) brother’s great ×(%d-1) grandchild" -msgid "great ×%d nephew/niece" -msgstr "%dх праплемінник/праплемінниця" +msgctxt "(a man’s) brother’s great ×(%s-1) grandchild" +msgid "great ×%s nephew/niece" +msgstr "%sх праплемінник/праплемінниця" #: includes/functions/functions.php:1815 #, php-format -msgctxt "(a man’s) sister’s great ×(%d-1) grandchild" -msgid "great ×%d nephew/niece" -msgstr "%dх праплемінник/праплемінниця" +msgctxt "(a man’s) sister’s great ×(%s-1) grandchild" +msgid "great ×%s nephew/niece" +msgstr "%sх праплемінник/праплемінниця" #: includes/functions/functions.php:1817 #, php-format -msgctxt "(a woman’s) great ×%d nephew/niece" -msgid "great ×%d nephew/niece" -msgstr "%dх праплемінник/праплемінниця" +msgctxt "(a woman’s) great ×%s nephew/niece" +msgid "great ×%s nephew/niece" +msgstr "%sх праплемінник/праплемінниця" #: includes/functions/functions.php:1825 includes/functions/functions.php:1838 #, php-format -msgid "great ×%d niece" -msgstr "%dх праплемінниця" +msgid "great ×%s niece" +msgstr "%sх праплемінниця" #: includes/functions/functions.php:1805 #, php-format -msgctxt "(a man’s) brother’s great ×(%d-1) granddaughter" -msgid "great ×%d niece" -msgstr "%dх праплемінниця" +msgctxt "(a man’s) brother’s great ×(%s-1) granddaughter" +msgid "great ×%s niece" +msgstr "%sх праплемінниця" #: includes/functions/functions.php:1807 #, php-format -msgctxt "(a man’s) sister’s great ×(%d-1) granddaughter" -msgid "great ×%d niece" -msgstr "%dх праплемінниця" +msgctxt "(a man’s) sister’s great ×(%s-1) granddaughter" +msgid "great ×%s niece" +msgstr "%sх праплемінниця" #: includes/functions/functions.php:1809 #, php-format -msgctxt "(a woman’s) great ×%d niece" -msgid "great ×%d niece" -msgstr "%dх праплемінниця" +msgctxt "(a woman’s) great ×%s niece" +msgid "great ×%s niece" +msgstr "%sх праплемінниця" -#. I18N: if you need a different number for %d, contact the developers, as a code-change is required +#. I18N: if you need a different number for %s, contact the developers, as a code-change is required #: includes/functions/functions.php:1637 includes/functions/functions.php:1665 #, php-format -msgid "great ×%d uncle" -msgstr "%dх прадід" +msgid "great ×%s uncle" +msgstr "%sх прадід" #: includes/functions/functions.php:1647 #, php-format -msgctxt "great ×(%d-1) grandfather’s brother" -msgid "great ×%d uncle" -msgstr "%dх прадід" +msgctxt "great ×(%s-1) grandfather’s brother" +msgid "great ×%s uncle" +msgstr "%sх прадід" #: includes/functions/functions.php:1649 #, php-format -msgctxt "great ×(%d-1) grandmother’s brother" -msgid "great ×%d uncle" -msgstr "%dх прадід" +msgctxt "great ×(%s-1) grandmother’s brother" +msgid "great ×%s uncle" +msgstr "%sх прадід" #: includes/functions/functions.php:1651 #, php-format -msgctxt "great ×(%d-1) grandparent’s brother" -msgid "great ×%d uncle" -msgstr "%dх прадід" +msgctxt "great ×(%s-1) grandparent’s brother" +msgid "great ×%s uncle" +msgstr "%sх прадід" #: includes/functions/functions.php:1579 msgid "great ×4 aunt" @@ -18605,11 +18605,11 @@ msgstr "максимум" #: app/Module/UpcomingAnniversariesModule.php:125 #: app/Module/YahrzeitModule.php:250 #, php-format -msgid "maximum %d day" -msgid_plural "maximum %d days" -msgstr[0] "максимально %d день" -msgstr[1] "максимально %d дня" -msgstr[2] "максимально %d день" +msgid "maximum %s day" +msgid_plural "maximum %s days" +msgstr[0] "максимально %s день" +msgstr[1] "максимально %s дня" +msgstr[2] "максимально %s день" #: admin_trees_config.php:404 admin_trees_config.php:428 #: admin_trees_config.php:468 admin_trees_config.php:508 @@ -20067,11 +20067,11 @@ msgstr "…" #~ msgid "No other link between the two individuals could be found." #~ msgstr "Інших зв'язків між двома персонами не знайдено." -#~ msgid "Note: “living” is defined (if no death or burial is known) as ending %d year after birth or estimated birth." -#~ msgid_plural "Note: “living” is defined (if no death or burial is known) as ending %d years after birth or estimated birth." -#~ msgstr[0] "Примітка: «живий» визначається (якщо факт про смерть або поховання не відомий), після %d року після народження або зразкового народження." -#~ msgstr[1] "Примітка: «живий» визначається (якщо факт про смерть або поховання не відомий), після %d років після народження або зразкового народження." -#~ msgstr[2] "Примітка: «живий» визначається (якщо факт про смерть або поховання не відомий), після %d років після народження або зразкового народження." +#~ msgid "Note: “living” is defined (if no death or burial is known) as ending %s year after birth or estimated birth." +#~ msgid_plural "Note: “living” is defined (if no death or burial is known) as ending %s years after birth or estimated birth." +#~ msgstr[0] "Примітка: «живий» визначається (якщо факт про смерть або поховання не відомий), після %s року після народження або зразкового народження." +#~ msgstr[1] "Примітка: «живий» визначається (якщо факт про смерть або поховання не відомий), після %s років після народження або зразкового народження." +#~ msgstr[2] "Примітка: «живий» визначається (якщо факт про смерть або поховання не відомий), після %s років після народження або зразкового народження." #~ msgid "Notes are free-form text and will appear in the Fact Details section of the page." #~ msgstr "Примітка - це текст у вільному стилі, який буде відображатися в подробицях факту." diff --git a/language/vi.po b/language/vi.po index 3fd39ce17e..cf628fc78b 100644 --- a/language/vi.po +++ b/language/vi.po @@ -186,46 +186,46 @@ msgstr "%g:%i:%s %a" #: app/Module/LoggedInUsersModule.php:51 app/Stats.php:5372 #, php-format -msgid "%d anonymous logged-in user" -msgid_plural "%d anonymous logged-in users" -msgstr[0] "%d người dùng nặc danh đang dùng" +msgid "%s anonymous logged-in user" +msgid_plural "%s anonymous logged-in users" +msgstr[0] "%s người dùng nặc danh đang dùng" #: app/Module/LoggedInUsersModule.php:57 app/Stats.php:5382 #, php-format -msgid "%d logged-in user" -msgid_plural "%d logged-in users" -msgstr[0] "%d người dung đang đăng nhập" +msgid "%s logged-in user" +msgid_plural "%s logged-in users" +msgstr[0] "%s người dung đang đăng nhập" #: app/Module/RelativesTabModule.php:62 #, php-format -msgid "%d month" -msgid_plural "%d months" -msgstr[0] "%d tháng" +msgid "%s month" +msgid_plural "%s months" +msgstr[0] "%s tháng" #: app/Module/RelativesTabModule.php:60 #, php-format -msgid "%d year" -msgid_plural "%d years" -msgstr[0] "%d năm" +msgid "%s year" +msgid_plural "%s years" +msgstr[0] "%s năm" #: includes/functions/functions.php:555 #, php-format msgctxt "FEMALE" -msgid "%d × cousin" -msgstr "bà con họ %d × đời" +msgid "%s × cousin" +msgstr "bà con họ %s × đời" #. I18N: Note that for Italian and Polish, “N’th cousins” are different from English “N’th cousins”, and the software has already generated the correct “N” for your language. You only need to translate - you do not need to convert. For other languages, if your cousin rules are different from English, please contact the developers. #: includes/functions/functions.php:520 #, php-format msgctxt "MALE" -msgid "%d × cousin" -msgstr "bà con họ %d × đời" +msgid "%s × cousin" +msgstr "bà con họ %s × đời" #: includes/functions/functions.php:590 #, php-format msgctxt "MALE/FEMALE" -msgid "%d × cousin" -msgstr "%d × anh chị em họ" +msgid "%s × cousin" +msgstr "%s × anh chị em họ" #. I18N: This is the format string for full dates. See http://php.net/date for codes #: app/Date.php:222 app/I18N.php:212 @@ -14269,8 +14269,8 @@ msgstr "Máy chủ này không cung cấp bảo mật sử dụng HTTPS." #: setup.php:183 #, php-format -msgid "This server’s memory limit is %d MB and its CPU time limit is %d seconds." -msgstr "Giới hạn bộ nhớ máy phục vụ là %dMB và đồng hồ CPU của nó giới hạn ở %d giây." +msgid "This server’s memory limit is %s MB and its CPU time limit is %s seconds." +msgstr "Giới hạn bộ nhớ máy phục vụ là %sMB và đồng hồ CPU của nó giới hạn ở %s giây." #. I18N: Help text for the “Other facts to show in charts” configuration setting #: admin_trees_config.php:1632 @@ -16941,146 +16941,146 @@ msgstr "vợ cháu trai" #: includes/functions/functions.php:1639 includes/functions/functions.php:1654 #: includes/functions/functions.php:1667 #, php-format -msgid "great ×%d aunt" -msgstr "bà cô/dì/thím/ mợ/ bác ×%d đời" +msgid "great ×%s aunt" +msgstr "bà cô/dì/thím/ mợ/ bác ×%s đời" #: includes/functions/functions.php:1641 includes/functions/functions.php:1656 #: includes/functions/functions.php:1669 #, php-format -msgid "great ×%d aunt/uncle" -msgstr "ông chú/bác/cậu/dượng- bà cô/dì/thím/bác/mợ ×%d đời" +msgid "great ×%s aunt/uncle" +msgstr "ông chú/bác/cậu/dượng- bà cô/dì/thím/bác/mợ ×%s đời" #: includes/functions/functions.php:2042 includes/functions/functions.php:2057 #, php-format -msgid "great ×%d grandchild" -msgstr "cháu ×%d đời" +msgid "great ×%s grandchild" +msgstr "cháu ×%s đời" #: includes/functions/functions.php:2040 includes/functions/functions.php:2055 #, php-format -msgid "great ×%d granddaughter" -msgstr "cháu gái ×%d đời" +msgid "great ×%s granddaughter" +msgstr "cháu gái ×%s đời" -#. I18N: if you need a different number for %d, contact the developers, as a code-change is required +#. I18N: if you need a different number for %s, contact the developers, as a code-change is required #: includes/functions/functions.php:1912 includes/functions/functions.php:1922 #: includes/functions/functions.php:1932 includes/functions/functions.php:1942 #: includes/functions/functions.php:1954 #, php-format -msgid "great ×%d grandfather" -msgstr "ông ×%d đời" +msgid "great ×%s grandfather" +msgstr "ông ×%s đời" #: includes/functions/functions.php:1914 includes/functions/functions.php:1924 #: includes/functions/functions.php:1934 includes/functions/functions.php:1944 #: includes/functions/functions.php:1956 #, php-format -msgid "great ×%d grandmother" -msgstr "bả ×%d đời" +msgid "great ×%s grandmother" +msgstr "bả ×%s đời" #: includes/functions/functions.php:1916 includes/functions/functions.php:1926 #: includes/functions/functions.php:1936 includes/functions/functions.php:1946 #: includes/functions/functions.php:1958 #, php-format -msgid "great ×%d grandparent" -msgstr "ông bà ×%d đời" +msgid "great ×%s grandparent" +msgstr "ông bà ×%s đời" -#. I18N: if you need a different number for %d, contact the developers, as a code-change is required +#. I18N: if you need a different number for %s, contact the developers, as a code-change is required #: includes/functions/functions.php:2038 includes/functions/functions.php:2053 #, php-format -msgid "great ×%d grandson" -msgstr "cháu trai ×%d đời" +msgid "great ×%s grandson" +msgstr "cháu trai ×%s đời" -#. I18N: if you need a different number for %d, contact the developers, as a code-change is required +#. I18N: if you need a different number for %s, contact the developers, as a code-change is required #: includes/functions/functions.php:1823 includes/functions/functions.php:1836 #, php-format -msgid "great ×%d nephew" -msgstr "cháu trai ×%d đời" +msgid "great ×%s nephew" +msgstr "cháu trai ×%s đời" #: includes/functions/functions.php:1797 #, php-format -msgctxt "(a man’s) brother’s great ×(%d-1) grandson" -msgid "great ×%d nephew" -msgstr "cháu trai ×%d đời" +msgctxt "(a man’s) brother’s great ×(%s-1) grandson" +msgid "great ×%s nephew" +msgstr "cháu trai ×%s đời" #: includes/functions/functions.php:1799 #, php-format -msgctxt "(a man’s) sister’s great ×(%d-1) grandson" -msgid "great ×%d nephew" -msgstr "cháu trai ×%d đời" +msgctxt "(a man’s) sister’s great ×(%s-1) grandson" +msgid "great ×%s nephew" +msgstr "cháu trai ×%s đời" #: includes/functions/functions.php:1801 #, php-format -msgctxt "(a woman’s) great ×%d nephew" -msgid "great ×%d nephew" -msgstr "cháu trai ×%d đời" +msgctxt "(a woman’s) great ×%s nephew" +msgid "great ×%s nephew" +msgstr "cháu trai ×%s đời" #: includes/functions/functions.php:1827 includes/functions/functions.php:1840 #, php-format -msgid "great ×%d nephew/niece" -msgstr "cháu trai/ gái ×%d đời" +msgid "great ×%s nephew/niece" +msgstr "cháu trai/ gái ×%s đời" #: includes/functions/functions.php:1813 #, php-format -msgctxt "(a man’s) brother’s great ×(%d-1) grandchild" -msgid "great ×%d nephew/niece" -msgstr "cháu trai/ gái ×%d đời" +msgctxt "(a man’s) brother’s great ×(%s-1) grandchild" +msgid "great ×%s nephew/niece" +msgstr "cháu trai/ gái ×%s đời" #: includes/functions/functions.php:1815 #, php-format -msgctxt "(a man’s) sister’s great ×(%d-1) grandchild" -msgid "great ×%d nephew/niece" -msgstr "cháu trai/ gái ×%d đời" +msgctxt "(a man’s) sister’s great ×(%s-1) grandchild" +msgid "great ×%s nephew/niece" +msgstr "cháu trai/ gái ×%s đời" #: includes/functions/functions.php:1817 #, php-format -msgctxt "(a woman’s) great ×%d nephew/niece" -msgid "great ×%d nephew/niece" -msgstr "cháu trai/ gái ×%d đời" +msgctxt "(a woman’s) great ×%s nephew/niece" +msgid "great ×%s nephew/niece" +msgstr "cháu trai/ gái ×%s đời" #: includes/functions/functions.php:1825 includes/functions/functions.php:1838 #, php-format -msgid "great ×%d niece" -msgstr "cháu gái ×%d đời" +msgid "great ×%s niece" +msgstr "cháu gái ×%s đời" #: includes/functions/functions.php:1805 #, php-format -msgctxt "(a man’s) brother’s great ×(%d-1) granddaughter" -msgid "great ×%d niece" -msgstr "cháu gái ×%d đời" +msgctxt "(a man’s) brother’s great ×(%s-1) granddaughter" +msgid "great ×%s niece" +msgstr "cháu gái ×%s đời" #: includes/functions/functions.php:1807 #, php-format -msgctxt "(a man’s) sister’s great ×(%d-1) granddaughter" -msgid "great ×%d niece" -msgstr "cháu gái ×%d đời" +msgctxt "(a man’s) sister’s great ×(%s-1) granddaughter" +msgid "great ×%s niece" +msgstr "cháu gái ×%s đời" #: includes/functions/functions.php:1809 #, php-format -msgctxt "(a woman’s) great ×%d niece" -msgid "great ×%d niece" -msgstr "cháu gái ×%d đời" +msgctxt "(a woman’s) great ×%s niece" +msgid "great ×%s niece" +msgstr "cháu gái ×%s đời" -#. I18N: if you need a different number for %d, contact the developers, as a code-change is required +#. I18N: if you need a different number for %s, contact the developers, as a code-change is required #: includes/functions/functions.php:1637 includes/functions/functions.php:1665 #, php-format -msgid "great ×%d uncle" -msgstr "ông chú/bác/cậu/dượng ×%d đời" +msgid "great ×%s uncle" +msgstr "ông chú/bác/cậu/dượng ×%s đời" #: includes/functions/functions.php:1647 #, php-format -msgctxt "great ×(%d-1) grandfather’s brother" -msgid "great ×%d uncle" -msgstr "ông chú/bác/cậu/dượng ×%d đời" +msgctxt "great ×(%s-1) grandfather’s brother" +msgid "great ×%s uncle" +msgstr "ông chú/bác/cậu/dượng ×%s đời" #: includes/functions/functions.php:1649 #, php-format -msgctxt "great ×(%d-1) grandmother’s brother" -msgid "great ×%d uncle" -msgstr "ông chú/bác/cậu/dượng ×%d đời" +msgctxt "great ×(%s-1) grandmother’s brother" +msgid "great ×%s uncle" +msgstr "ông chú/bác/cậu/dượng ×%s đời" #: includes/functions/functions.php:1651 #, php-format -msgctxt "great ×(%d-1) grandparent’s brother" -msgid "great ×%d uncle" -msgstr "ông chú/bác/cậu/dượng ×%d đời" +msgctxt "great ×(%s-1) grandparent’s brother" +msgid "great ×%s uncle" +msgstr "ông chú/bác/cậu/dượng ×%s đời" #: includes/functions/functions.php:1579 msgid "great ×4 aunt" @@ -18529,9 +18529,9 @@ msgstr "tối đa" #: app/Module/UpcomingAnniversariesModule.php:125 #: app/Module/YahrzeitModule.php:250 #, php-format -msgid "maximum %d day" -msgid_plural "maximum %d days" -msgstr[0] "tối đa %d ngày." +msgid "maximum %s day" +msgid_plural "maximum %s days" +msgstr[0] "tối đa %s ngày." #: admin_trees_config.php:404 admin_trees_config.php:428 #: admin_trees_config.php:468 admin_trees_config.php:508 @@ -20041,9 +20041,9 @@ msgstr "…" #~ msgid "No other link between the two individuals could be found." #~ msgstr "Không có liên kết nào giữa hai người được tìm thấy." -#~ msgid "Note: “living” is defined (if no death or burial is known) as ending %d year after birth or estimated birth." -#~ msgid_plural "Note: “living” is defined (if no death or burial is known) as ending %d years after birth or estimated birth." -#~ msgstr[0] "Ghi chú: “sống” được định nghĩa là (nếu không biết họ chết hay chôn ở đâu) đã hết %d năm sau khi sinh, hay ngày sinh phỏng đoán." +#~ msgid "Note: “living” is defined (if no death or burial is known) as ending %s year after birth or estimated birth." +#~ msgid_plural "Note: “living” is defined (if no death or burial is known) as ending %s years after birth or estimated birth." +#~ msgstr[0] "Ghi chú: “sống” được định nghĩa là (nếu không biết họ chết hay chôn ở đâu) đã hết %s năm sau khi sinh, hay ngày sinh phỏng đoán." #~ msgid "Notes are free-form text and will appear in the Fact Details section of the page." #~ msgstr "Ghi chú là văn bản tự do và sẽ hiện ở chi tiết Sự kiện của trang." diff --git a/language/yi.po b/language/yi.po index 13750c8b2a..a1549e4d73 100644 --- a/language/yi.po +++ b/language/yi.po @@ -187,49 +187,49 @@ msgstr "" #: app/Module/LoggedInUsersModule.php:51 app/Stats.php:5372 #, php-format -msgid "%d anonymous logged-in user" -msgid_plural "%d anonymous logged-in users" +msgid "%s anonymous logged-in user" +msgid_plural "%s anonymous logged-in users" msgstr[0] "" msgstr[1] "" #: app/Module/LoggedInUsersModule.php:57 app/Stats.php:5382 #, php-format -msgid "%d logged-in user" -msgid_plural "%d logged-in users" +msgid "%s logged-in user" +msgid_plural "%s logged-in users" msgstr[0] "" msgstr[1] "" #: app/Module/RelativesTabModule.php:62 #, php-format -msgid "%d month" -msgid_plural "%d months" -msgstr[0] "%d חודש" -msgstr[1] "%d חדשים" +msgid "%s month" +msgid_plural "%s months" +msgstr[0] "%s חודש" +msgstr[1] "%s חדשים" #: app/Module/RelativesTabModule.php:60 #, php-format -msgid "%d year" -msgid_plural "%d years" -msgstr[0] "%d יאָר" -msgstr[1] "%d יאָרן" +msgid "%s year" +msgid_plural "%s years" +msgstr[0] "%s יאָר" +msgstr[1] "%s יאָרן" #: includes/functions/functions.php:555 #, php-format msgctxt "FEMALE" -msgid "%d × cousin" +msgid "%s × cousin" msgstr "" #. I18N: Note that for Italian and Polish, “N’th cousins” are different from English “N’th cousins”, and the software has already generated the correct “N” for your language. You only need to translate - you do not need to convert. For other languages, if your cousin rules are different from English, please contact the developers. #: includes/functions/functions.php:520 #, php-format msgctxt "MALE" -msgid "%d × cousin" +msgid "%s × cousin" msgstr "" #: includes/functions/functions.php:590 #, php-format msgctxt "MALE/FEMALE" -msgid "%d × cousin" +msgid "%s × cousin" msgstr "" #. I18N: This is the format string for full dates. See http://php.net/date for codes @@ -14301,7 +14301,7 @@ msgstr "" #: setup.php:183 #, php-format -msgid "This server’s memory limit is %d MB and its CPU time limit is %d seconds." +msgid "This server’s memory limit is %s MB and its CPU time limit is %s seconds." msgstr "" #. I18N: Help text for the “Other facts to show in charts” configuration setting @@ -16977,145 +16977,145 @@ msgstr "ייניקלס ווייַב" #: includes/functions/functions.php:1639 includes/functions/functions.php:1654 #: includes/functions/functions.php:1667 #, php-format -msgid "great ×%d aunt" +msgid "great ×%s aunt" msgstr "" #: includes/functions/functions.php:1641 includes/functions/functions.php:1656 #: includes/functions/functions.php:1669 #, php-format -msgid "great ×%d aunt/uncle" +msgid "great ×%s aunt/uncle" msgstr "" #: includes/functions/functions.php:2042 includes/functions/functions.php:2057 #, php-format -msgid "great ×%d grandchild" +msgid "great ×%s grandchild" msgstr "" #: includes/functions/functions.php:2040 includes/functions/functions.php:2055 #, php-format -msgid "great ×%d granddaughter" +msgid "great ×%s granddaughter" msgstr "" -#. I18N: if you need a different number for %d, contact the developers, as a code-change is required +#. I18N: if you need a different number for %s, contact the developers, as a code-change is required #: includes/functions/functions.php:1912 includes/functions/functions.php:1922 #: includes/functions/functions.php:1932 includes/functions/functions.php:1942 #: includes/functions/functions.php:1954 #, php-format -msgid "great ×%d grandfather" +msgid "great ×%s grandfather" msgstr "" #: includes/functions/functions.php:1914 includes/functions/functions.php:1924 #: includes/functions/functions.php:1934 includes/functions/functions.php:1944 #: includes/functions/functions.php:1956 #, php-format -msgid "great ×%d grandmother" +msgid "great ×%s grandmother" msgstr "" #: includes/functions/functions.php:1916 includes/functions/functions.php:1926 #: includes/functions/functions.php:1936 includes/functions/functions.php:1946 #: includes/functions/functions.php:1958 #, php-format -msgid "great ×%d grandparent" +msgid "great ×%s grandparent" msgstr "" -#. I18N: if you need a different number for %d, contact the developers, as a code-change is required +#. I18N: if you need a different number for %s, contact the developers, as a code-change is required #: includes/functions/functions.php:2038 includes/functions/functions.php:2053 #, php-format -msgid "great ×%d grandson" +msgid "great ×%s grandson" msgstr "" -#. I18N: if you need a different number for %d, contact the developers, as a code-change is required +#. I18N: if you need a different number for %s, contact the developers, as a code-change is required #: includes/functions/functions.php:1823 includes/functions/functions.php:1836 #, php-format -msgid "great ×%d nephew" +msgid "great ×%s nephew" msgstr "" #: includes/functions/functions.php:1797 #, php-format -msgctxt "(a man’s) brother’s great ×(%d-1) grandson" -msgid "great ×%d nephew" +msgctxt "(a man’s) brother’s great ×(%s-1) grandson" +msgid "great ×%s nephew" msgstr "" #: includes/functions/functions.php:1799 #, php-format -msgctxt "(a man’s) sister’s great ×(%d-1) grandson" -msgid "great ×%d nephew" +msgctxt "(a man’s) sister’s great ×(%s-1) grandson" +msgid "great ×%s nephew" msgstr "" #: includes/functions/functions.php:1801 #, php-format -msgctxt "(a woman’s) great ×%d nephew" -msgid "great ×%d nephew" +msgctxt "(a woman’s) great ×%s nephew" +msgid "great ×%s nephew" msgstr "" #: includes/functions/functions.php:1827 includes/functions/functions.php:1840 #, php-format -msgid "great ×%d nephew/niece" +msgid "great ×%s nephew/niece" msgstr "" #: includes/functions/functions.php:1813 #, php-format -msgctxt "(a man’s) brother’s great ×(%d-1) grandchild" -msgid "great ×%d nephew/niece" +msgctxt "(a man’s) brother’s great ×(%s-1) grandchild" +msgid "great ×%s nephew/niece" msgstr "" #: includes/functions/functions.php:1815 #, php-format -msgctxt "(a man’s) sister’s great ×(%d-1) grandchild" -msgid "great ×%d nephew/niece" +msgctxt "(a man’s) sister’s great ×(%s-1) grandchild" +msgid "great ×%s nephew/niece" msgstr "" #: includes/functions/functions.php:1817 #, php-format -msgctxt "(a woman’s) great ×%d nephew/niece" -msgid "great ×%d nephew/niece" +msgctxt "(a woman’s) great ×%s nephew/niece" +msgid "great ×%s nephew/niece" msgstr "" #: includes/functions/functions.php:1825 includes/functions/functions.php:1838 #, php-format -msgid "great ×%d niece" +msgid "great ×%s niece" msgstr "" #: includes/functions/functions.php:1805 #, php-format -msgctxt "(a man’s) brother’s great ×(%d-1) granddaughter" -msgid "great ×%d niece" +msgctxt "(a man’s) brother’s great ×(%s-1) granddaughter" +msgid "great ×%s niece" msgstr "" #: includes/functions/functions.php:1807 #, php-format -msgctxt "(a man’s) sister’s great ×(%d-1) granddaughter" -msgid "great ×%d niece" +msgctxt "(a man’s) sister’s great ×(%s-1) granddaughter" +msgid "great ×%s niece" msgstr "" #: includes/functions/functions.php:1809 #, php-format -msgctxt "(a woman’s) great ×%d niece" -msgid "great ×%d niece" +msgctxt "(a woman’s) great ×%s niece" +msgid "great ×%s niece" msgstr "" -#. I18N: if you need a different number for %d, contact the developers, as a code-change is required +#. I18N: if you need a different number for %s, contact the developers, as a code-change is required #: includes/functions/functions.php:1637 includes/functions/functions.php:1665 #, php-format -msgid "great ×%d uncle" +msgid "great ×%s uncle" msgstr "" #: includes/functions/functions.php:1647 #, php-format -msgctxt "great ×(%d-1) grandfather’s brother" -msgid "great ×%d uncle" +msgctxt "great ×(%s-1) grandfather’s brother" +msgid "great ×%s uncle" msgstr "" #: includes/functions/functions.php:1649 #, php-format -msgctxt "great ×(%d-1) grandmother’s brother" -msgid "great ×%d uncle" +msgctxt "great ×(%s-1) grandmother’s brother" +msgid "great ×%s uncle" msgstr "" #: includes/functions/functions.php:1651 #, php-format -msgctxt "great ×(%d-1) grandparent’s brother" -msgid "great ×%d uncle" +msgctxt "great ×(%s-1) grandparent’s brother" +msgid "great ×%s uncle" msgstr "" #: includes/functions/functions.php:1579 @@ -18566,10 +18566,10 @@ msgstr "מאַקסימום" #: app/Module/UpcomingAnniversariesModule.php:125 #: app/Module/YahrzeitModule.php:250 #, php-format -msgid "maximum %d day" -msgid_plural "maximum %d days" -msgstr[0] "מאַקסימום %d טאָג" -msgstr[1] "מאַקסימום %d טעג" +msgid "maximum %s day" +msgid_plural "maximum %s days" +msgstr[0] "מאַקסימום %s טאָג" +msgstr[1] "מאַקסימום %s טעג" #: admin_trees_config.php:404 admin_trees_config.php:428 #: admin_trees_config.php:468 admin_trees_config.php:508 diff --git a/language/zh-Hans.po b/language/zh-Hans.po index 43af01d8c7..8a7f6a8127 100644 --- a/language/zh-Hans.po +++ b/language/zh-Hans.po @@ -187,51 +187,51 @@ msgstr "%H:%i:%s" #: app/Module/LoggedInUsersModule.php:51 app/Stats.php:5372 #, php-format -msgid "%d anonymous logged-in user" -msgid_plural "%d anonymous logged-in users" -msgstr[0] "%d 匿名登录的用户" +msgid "%s anonymous logged-in user" +msgid_plural "%s anonymous logged-in users" +msgstr[0] "%s 匿名登录的用户" #: app/Module/LoggedInUsersModule.php:57 app/Stats.php:5382 #, php-format -msgid "%d logged-in user" -msgid_plural "%d logged-in users" -msgstr[0] "%d 登录的用户" +msgid "%s logged-in user" +msgid_plural "%s logged-in users" +msgstr[0] "%s 登录的用户" #: app/Module/RelativesTabModule.php:62 #, php-format -msgid "%d month" -msgid_plural "%d months" -msgstr[0] "%d 月" +msgid "%s month" +msgid_plural "%s months" +msgstr[0] "%s 月" #: app/Module/RelativesTabModule.php:60 #, php-format -msgid "%d year" -msgid_plural "%d years" -msgstr[0] "%d 年" +msgid "%s year" +msgid_plural "%s years" +msgstr[0] "%s 年" #: includes/functions/functions.php:555 #, php-format msgctxt "FEMALE" -msgid "%d × cousin" -msgstr "隔 %d 代的表兄(妹)" +msgid "%s × cousin" +msgstr "隔 %s 代的表兄(妹)" #. I18N: Note that for Italian and Polish, “N’th cousins” are different from English “N’th cousins”, and the software has already generated the correct “N” for your language. You only need to translate - you do not need to convert. For other languages, if your cousin rules are different from English, please contact the developers. #: includes/functions/functions.php:520 #, php-format msgctxt "MALE" -msgid "%d × cousin" -msgstr "隔 %d 代的堂(表)兄妹" +msgid "%s × cousin" +msgstr "隔 %s 代的堂(表)兄妹" #: includes/functions/functions.php:590 #, php-format msgctxt "MALE/FEMALE" -msgid "%d × cousin" -msgstr "隔 %d 代的堂(表)兄(妹)" +msgid "%s × cousin" +msgstr "隔 %s 代的堂(表)兄(妹)" #. I18N: This is the format string for full dates. See http://php.net/date for codes #: app/Date.php:222 app/I18N.php:212 msgid "%j %F %Y" -msgstr "%Y年 %m月 %d日" +msgstr "%Y年 %m月 %s日" #. I18N: BCE=Before the Common Era, for Julian years < 0. See http://en.wikipedia.org/wiki/Common_Era #: app/Stats.php:6341 @@ -14270,8 +14270,8 @@ msgstr "" #: setup.php:183 #, php-format -msgid "This server’s memory limit is %d MB and its CPU time limit is %d seconds." -msgstr "这个服务器的内存限制是 %d MB和它的CPU时间限制是 %d 秒。" +msgid "This server’s memory limit is %s MB and its CPU time limit is %s seconds." +msgstr "这个服务器的内存限制是 %s MB和它的CPU时间限制是 %s 秒。" #. I18N: Help text for the “Other facts to show in charts” configuration setting #: admin_trees_config.php:1632 @@ -16942,146 +16942,146 @@ msgstr "孙媳" #: includes/functions/functions.php:1639 includes/functions/functions.php:1654 #: includes/functions/functions.php:1667 #, php-format -msgid "great ×%d aunt" -msgstr "距 %d 代的阿姨" +msgid "great ×%s aunt" +msgstr "距 %s 代的阿姨" #: includes/functions/functions.php:1641 includes/functions/functions.php:1656 #: includes/functions/functions.php:1669 #, php-format -msgid "great ×%d aunt/uncle" -msgstr "距 %d 代的阿姨/叔叔" +msgid "great ×%s aunt/uncle" +msgstr "距 %s 代的阿姨/叔叔" #: includes/functions/functions.php:2042 includes/functions/functions.php:2057 #, php-format -msgid "great ×%d grandchild" -msgstr "距 %d 代的孙子" +msgid "great ×%s grandchild" +msgstr "距 %s 代的孙子" #: includes/functions/functions.php:2040 includes/functions/functions.php:2055 #, php-format -msgid "great ×%d granddaughter" -msgstr "距 %d 代的孙女" +msgid "great ×%s granddaughter" +msgstr "距 %s 代的孙女" -#. I18N: if you need a different number for %d, contact the developers, as a code-change is required +#. I18N: if you need a different number for %s, contact the developers, as a code-change is required #: includes/functions/functions.php:1912 includes/functions/functions.php:1922 #: includes/functions/functions.php:1932 includes/functions/functions.php:1942 #: includes/functions/functions.php:1954 #, php-format -msgid "great ×%d grandfather" -msgstr "距 %d 代的祖父" +msgid "great ×%s grandfather" +msgstr "距 %s 代的祖父" #: includes/functions/functions.php:1914 includes/functions/functions.php:1924 #: includes/functions/functions.php:1934 includes/functions/functions.php:1944 #: includes/functions/functions.php:1956 #, php-format -msgid "great ×%d grandmother" -msgstr "距 %d 代的祖母" +msgid "great ×%s grandmother" +msgstr "距 %s 代的祖母" #: includes/functions/functions.php:1916 includes/functions/functions.php:1926 #: includes/functions/functions.php:1936 includes/functions/functions.php:1946 #: includes/functions/functions.php:1958 #, php-format -msgid "great ×%d grandparent" -msgstr "距 %d 代的祖父母" +msgid "great ×%s grandparent" +msgstr "距 %s 代的祖父母" -#. I18N: if you need a different number for %d, contact the developers, as a code-change is required +#. I18N: if you need a different number for %s, contact the developers, as a code-change is required #: includes/functions/functions.php:2038 includes/functions/functions.php:2053 #, php-format -msgid "great ×%d grandson" -msgstr "距 %d 代的孙子" +msgid "great ×%s grandson" +msgstr "距 %s 代的孙子" -#. I18N: if you need a different number for %d, contact the developers, as a code-change is required +#. I18N: if you need a different number for %s, contact the developers, as a code-change is required #: includes/functions/functions.php:1823 includes/functions/functions.php:1836 #, php-format -msgid "great ×%d nephew" -msgstr "%d 代侄子" +msgid "great ×%s nephew" +msgstr "%s 代侄子" #: includes/functions/functions.php:1797 #, php-format -msgctxt "(a man’s) brother’s great ×(%d-1) grandson" -msgid "great ×%d nephew" -msgstr "%d 代侄子" +msgctxt "(a man’s) brother’s great ×(%s-1) grandson" +msgid "great ×%s nephew" +msgstr "%s 代侄子" #: includes/functions/functions.php:1799 #, php-format -msgctxt "(a man’s) sister’s great ×(%d-1) grandson" -msgid "great ×%d nephew" -msgstr "距 %d 代的外甥子" +msgctxt "(a man’s) sister’s great ×(%s-1) grandson" +msgid "great ×%s nephew" +msgstr "距 %s 代的外甥子" #: includes/functions/functions.php:1801 #, php-format -msgctxt "(a woman’s) great ×%d nephew" -msgid "great ×%d nephew" -msgstr "距 %d 代的侄子" +msgctxt "(a woman’s) great ×%s nephew" +msgid "great ×%s nephew" +msgstr "距 %s 代的侄子" #: includes/functions/functions.php:1827 includes/functions/functions.php:1840 #, php-format -msgid "great ×%d nephew/niece" -msgstr "距 %d 代的侄子/侄女" +msgid "great ×%s nephew/niece" +msgstr "距 %s 代的侄子/侄女" #: includes/functions/functions.php:1813 #, php-format -msgctxt "(a man’s) brother’s great ×(%d-1) grandchild" -msgid "great ×%d nephew/niece" -msgstr "%d 代侄子/侄女" +msgctxt "(a man’s) brother’s great ×(%s-1) grandchild" +msgid "great ×%s nephew/niece" +msgstr "%s 代侄子/侄女" #: includes/functions/functions.php:1815 #, php-format -msgctxt "(a man’s) sister’s great ×(%d-1) grandchild" -msgid "great ×%d nephew/niece" -msgstr "距 %d 代的外甥子/外甥女" +msgctxt "(a man’s) sister’s great ×(%s-1) grandchild" +msgid "great ×%s nephew/niece" +msgstr "距 %s 代的外甥子/外甥女" #: includes/functions/functions.php:1817 #, php-format -msgctxt "(a woman’s) great ×%d nephew/niece" -msgid "great ×%d nephew/niece" -msgstr "距 %d 代的侄子/侄女" +msgctxt "(a woman’s) great ×%s nephew/niece" +msgid "great ×%s nephew/niece" +msgstr "距 %s 代的侄子/侄女" #: includes/functions/functions.php:1825 includes/functions/functions.php:1838 #, php-format -msgid "great ×%d niece" -msgstr "距 %d 代的外甥女" +msgid "great ×%s niece" +msgstr "距 %s 代的外甥女" #: includes/functions/functions.php:1805 #, php-format -msgctxt "(a man’s) brother’s great ×(%d-1) granddaughter" -msgid "great ×%d niece" -msgstr "%d 代侄女" +msgctxt "(a man’s) brother’s great ×(%s-1) granddaughter" +msgid "great ×%s niece" +msgstr "%s 代侄女" #: includes/functions/functions.php:1807 #, php-format -msgctxt "(a man’s) sister’s great ×(%d-1) granddaughter" -msgid "great ×%d niece" -msgstr "距 %d 代的外甥女" +msgctxt "(a man’s) sister’s great ×(%s-1) granddaughter" +msgid "great ×%s niece" +msgstr "距 %s 代的外甥女" #: includes/functions/functions.php:1809 #, php-format -msgctxt "(a woman’s) great ×%d niece" -msgid "great ×%d niece" -msgstr "距 %d 代的侄女" +msgctxt "(a woman’s) great ×%s niece" +msgid "great ×%s niece" +msgstr "距 %s 代的侄女" -#. I18N: if you need a different number for %d, contact the developers, as a code-change is required +#. I18N: if you need a different number for %s, contact the developers, as a code-change is required #: includes/functions/functions.php:1637 includes/functions/functions.php:1665 #, php-format -msgid "great ×%d uncle" -msgstr "距 %d 代的叔叔" +msgid "great ×%s uncle" +msgstr "距 %s 代的叔叔" #: includes/functions/functions.php:1647 #, php-format -msgctxt "great ×(%d-1) grandfather’s brother" -msgid "great ×%d uncle" -msgstr "距 %d 代的叔叔" +msgctxt "great ×(%s-1) grandfather’s brother" +msgid "great ×%s uncle" +msgstr "距 %s 代的叔叔" #: includes/functions/functions.php:1649 #, php-format -msgctxt "great ×(%d-1) grandmother’s brother" -msgid "great ×%d uncle" -msgstr "距 %d 代的叔叔" +msgctxt "great ×(%s-1) grandmother’s brother" +msgid "great ×%s uncle" +msgstr "距 %s 代的叔叔" #: includes/functions/functions.php:1651 #, php-format -msgctxt "great ×(%d-1) grandparent’s brother" -msgid "great ×%d uncle" -msgstr "距 %d 代的叔叔" +msgctxt "great ×(%s-1) grandparent’s brother" +msgid "great ×%s uncle" +msgstr "距 %s 代的叔叔" #: includes/functions/functions.php:1579 msgid "great ×4 aunt" @@ -18530,9 +18530,9 @@ msgstr "最大" #: app/Module/UpcomingAnniversariesModule.php:125 #: app/Module/YahrzeitModule.php:250 #, php-format -msgid "maximum %d day" -msgid_plural "maximum %d days" -msgstr[0] "最大 %d 天" +msgid "maximum %s day" +msgid_plural "maximum %s days" +msgstr[0] "最大 %s 天" #: admin_trees_config.php:404 admin_trees_config.php:428 #: admin_trees_config.php:468 admin_trees_config.php:508 @@ -20036,9 +20036,9 @@ msgstr "缺少姓氏" #~ msgid "No other link between the two individuals could be found." #~ msgstr "两个人之间没有其他的关系可以找到。" -#~ msgid "Note: “living” is defined (if no death or burial is known) as ending %d year after birth or estimated birth." -#~ msgid_plural "Note: “living” is defined (if no death or burial is known) as ending %d years after birth or estimated birth." -#~ msgstr[0] "注:“活着”的定义是如果没有死亡和埋葬做为出生或估计出生后%d年后的结果。" +#~ msgid "Note: “living” is defined (if no death or burial is known) as ending %s year after birth or estimated birth." +#~ msgid_plural "Note: “living” is defined (if no death or burial is known) as ending %s years after birth or estimated birth." +#~ msgstr[0] "注:“活着”的定义是如果没有死亡和埋葬做为出生或估计出生后%s年后的结果。" #~ msgid "Notes are free-form text and will appear in the Fact Details section of the page." #~ msgstr "记事是自由格式的文本,也会出现在事实细节部分的页面。" diff --git a/language/zh-Hant.po b/language/zh-Hant.po index b09a20d922..2952503558 100644 --- a/language/zh-Hant.po +++ b/language/zh-Hant.po @@ -184,45 +184,45 @@ msgstr "" #: app/Module/LoggedInUsersModule.php:51 app/Stats.php:5372 #, php-format -msgid "%d anonymous logged-in user" -msgid_plural "%d anonymous logged-in users" +msgid "%s anonymous logged-in user" +msgid_plural "%s anonymous logged-in users" msgstr[0] "" #: app/Module/LoggedInUsersModule.php:57 app/Stats.php:5382 #, php-format -msgid "%d logged-in user" -msgid_plural "%d logged-in users" +msgid "%s logged-in user" +msgid_plural "%s logged-in users" msgstr[0] "" #: app/Module/RelativesTabModule.php:62 #, php-format -msgid "%d month" -msgid_plural "%d months" +msgid "%s month" +msgid_plural "%s months" msgstr[0] "" #: app/Module/RelativesTabModule.php:60 #, php-format -msgid "%d year" -msgid_plural "%d years" +msgid "%s year" +msgid_plural "%s years" msgstr[0] "" #: includes/functions/functions.php:555 #, php-format msgctxt "FEMALE" -msgid "%d × cousin" +msgid "%s × cousin" msgstr "" #. I18N: Note that for Italian and Polish, “N’th cousins” are different from English “N’th cousins”, and the software has already generated the correct “N” for your language. You only need to translate - you do not need to convert. For other languages, if your cousin rules are different from English, please contact the developers. #: includes/functions/functions.php:520 #, php-format msgctxt "MALE" -msgid "%d × cousin" +msgid "%s × cousin" msgstr "" #: includes/functions/functions.php:590 #, php-format msgctxt "MALE/FEMALE" -msgid "%d × cousin" +msgid "%s × cousin" msgstr "" #. I18N: This is the format string for full dates. See http://php.net/date for codes @@ -14267,8 +14267,8 @@ msgstr "" #: setup.php:183 #, php-format -msgid "This server’s memory limit is %d MB and its CPU time limit is %d seconds." -msgstr "此伺服器的記憶體限制是%dMB和它的CPU時間上限是%d秒。" +msgid "This server’s memory limit is %s MB and its CPU time limit is %s seconds." +msgstr "此伺服器的記憶體限制是%sMB和它的CPU時間上限是%s秒。" #. I18N: Help text for the “Other facts to show in charts” configuration setting #: admin_trees_config.php:1632 @@ -16939,145 +16939,145 @@ msgstr "" #: includes/functions/functions.php:1639 includes/functions/functions.php:1654 #: includes/functions/functions.php:1667 #, php-format -msgid "great ×%d aunt" +msgid "great ×%s aunt" msgstr "" #: includes/functions/functions.php:1641 includes/functions/functions.php:1656 #: includes/functions/functions.php:1669 #, php-format -msgid "great ×%d aunt/uncle" +msgid "great ×%s aunt/uncle" msgstr "" #: includes/functions/functions.php:2042 includes/functions/functions.php:2057 #, php-format -msgid "great ×%d grandchild" +msgid "great ×%s grandchild" msgstr "" #: includes/functions/functions.php:2040 includes/functions/functions.php:2055 #, php-format -msgid "great ×%d granddaughter" +msgid "great ×%s granddaughter" msgstr "" -#. I18N: if you need a different number for %d, contact the developers, as a code-change is required +#. I18N: if you need a different number for %s, contact the developers, as a code-change is required #: includes/functions/functions.php:1912 includes/functions/functions.php:1922 #: includes/functions/functions.php:1932 includes/functions/functions.php:1942 #: includes/functions/functions.php:1954 #, php-format -msgid "great ×%d grandfather" +msgid "great ×%s grandfather" msgstr "" #: includes/functions/functions.php:1914 includes/functions/functions.php:1924 #: includes/functions/functions.php:1934 includes/functions/functions.php:1944 #: includes/functions/functions.php:1956 #, php-format -msgid "great ×%d grandmother" +msgid "great ×%s grandmother" msgstr "" #: includes/functions/functions.php:1916 includes/functions/functions.php:1926 #: includes/functions/functions.php:1936 includes/functions/functions.php:1946 #: includes/functions/functions.php:1958 #, php-format -msgid "great ×%d grandparent" +msgid "great ×%s grandparent" msgstr "" -#. I18N: if you need a different number for %d, contact the developers, as a code-change is required +#. I18N: if you need a different number for %s, contact the developers, as a code-change is required #: includes/functions/functions.php:2038 includes/functions/functions.php:2053 #, php-format -msgid "great ×%d grandson" +msgid "great ×%s grandson" msgstr "" -#. I18N: if you need a different number for %d, contact the developers, as a code-change is required +#. I18N: if you need a different number for %s, contact the developers, as a code-change is required #: includes/functions/functions.php:1823 includes/functions/functions.php:1836 #, php-format -msgid "great ×%d nephew" +msgid "great ×%s nephew" msgstr "" #: includes/functions/functions.php:1797 #, php-format -msgctxt "(a man’s) brother’s great ×(%d-1) grandson" -msgid "great ×%d nephew" +msgctxt "(a man’s) brother’s great ×(%s-1) grandson" +msgid "great ×%s nephew" msgstr "" #: includes/functions/functions.php:1799 #, php-format -msgctxt "(a man’s) sister’s great ×(%d-1) grandson" -msgid "great ×%d nephew" +msgctxt "(a man’s) sister’s great ×(%s-1) grandson" +msgid "great ×%s nephew" msgstr "" #: includes/functions/functions.php:1801 #, php-format -msgctxt "(a woman’s) great ×%d nephew" -msgid "great ×%d nephew" +msgctxt "(a woman’s) great ×%s nephew" +msgid "great ×%s nephew" msgstr "" #: includes/functions/functions.php:1827 includes/functions/functions.php:1840 #, php-format -msgid "great ×%d nephew/niece" +msgid "great ×%s nephew/niece" msgstr "" #: includes/functions/functions.php:1813 #, php-format -msgctxt "(a man’s) brother’s great ×(%d-1) grandchild" -msgid "great ×%d nephew/niece" +msgctxt "(a man’s) brother’s great ×(%s-1) grandchild" +msgid "great ×%s nephew/niece" msgstr "" #: includes/functions/functions.php:1815 #, php-format -msgctxt "(a man’s) sister’s great ×(%d-1) grandchild" -msgid "great ×%d nephew/niece" +msgctxt "(a man’s) sister’s great ×(%s-1) grandchild" +msgid "great ×%s nephew/niece" msgstr "" #: includes/functions/functions.php:1817 #, php-format -msgctxt "(a woman’s) great ×%d nephew/niece" -msgid "great ×%d nephew/niece" +msgctxt "(a woman’s) great ×%s nephew/niece" +msgid "great ×%s nephew/niece" msgstr "" #: includes/functions/functions.php:1825 includes/functions/functions.php:1838 #, php-format -msgid "great ×%d niece" +msgid "great ×%s niece" msgstr "" #: includes/functions/functions.php:1805 #, php-format -msgctxt "(a man’s) brother’s great ×(%d-1) granddaughter" -msgid "great ×%d niece" +msgctxt "(a man’s) brother’s great ×(%s-1) granddaughter" +msgid "great ×%s niece" msgstr "" #: includes/functions/functions.php:1807 #, php-format -msgctxt "(a man’s) sister’s great ×(%d-1) granddaughter" -msgid "great ×%d niece" +msgctxt "(a man’s) sister’s great ×(%s-1) granddaughter" +msgid "great ×%s niece" msgstr "" #: includes/functions/functions.php:1809 #, php-format -msgctxt "(a woman’s) great ×%d niece" -msgid "great ×%d niece" +msgctxt "(a woman’s) great ×%s niece" +msgid "great ×%s niece" msgstr "" -#. I18N: if you need a different number for %d, contact the developers, as a code-change is required +#. I18N: if you need a different number for %s, contact the developers, as a code-change is required #: includes/functions/functions.php:1637 includes/functions/functions.php:1665 #, php-format -msgid "great ×%d uncle" +msgid "great ×%s uncle" msgstr "" #: includes/functions/functions.php:1647 #, php-format -msgctxt "great ×(%d-1) grandfather’s brother" -msgid "great ×%d uncle" +msgctxt "great ×(%s-1) grandfather’s brother" +msgid "great ×%s uncle" msgstr "" #: includes/functions/functions.php:1649 #, php-format -msgctxt "great ×(%d-1) grandmother’s brother" -msgid "great ×%d uncle" +msgctxt "great ×(%s-1) grandmother’s brother" +msgid "great ×%s uncle" msgstr "" #: includes/functions/functions.php:1651 #, php-format -msgctxt "great ×(%d-1) grandparent’s brother" -msgid "great ×%d uncle" +msgctxt "great ×(%s-1) grandparent’s brother" +msgid "great ×%s uncle" msgstr "" #: includes/functions/functions.php:1579 @@ -18527,8 +18527,8 @@ msgstr "" #: app/Module/UpcomingAnniversariesModule.php:125 #: app/Module/YahrzeitModule.php:250 #, php-format -msgid "maximum %d day" -msgid_plural "maximum %d days" +msgid "maximum %s day" +msgid_plural "maximum %s days" msgstr[0] "" #: admin_trees_config.php:404 admin_trees_config.php:428 @@ -180,7 +180,7 @@ if (!isset($_POST['lang'])) { I18N::translate('Large systems (50,000 individuals): 64–128 MB, 40–80 seconds'), '</p>', ($memory_limit < 32 || $max_execution_time > 0 && $max_execution_time < 20) ? '<p class="bad">' : '<p class="good">', - I18N::translate('This server’s memory limit is %d MB and its CPU time limit is %d seconds.', $memory_limit, $max_execution_time), + I18N::translate('This server’s memory limit is %s MB and its CPU time limit is %s seconds.', I18N::number($memory_limit), I18N::number($max_execution_time)), '</p><p>', I18N::translate('If you try to exceed these limits, you may experience server time-outs and blank pages.'), '</p><p>', diff --git a/statisticsplot.php b/statisticsplot.php index 8be8753fed..b3886d37ca 100644 --- a/statisticsplot.php +++ b/statisticsplot.php @@ -812,7 +812,6 @@ function calculate_legend($boundaries_z_axis) { // calculate the legend values $hulpar = explode(',', $boundaries_z_axis); $i = 1; - // I18N: %d is a year $date = new Date('BEF ' . $hulpar[0]); $legend[0] = strip_tags($date->display()); $z_boundaries[0] = $hulpar[0] - 1; @@ -825,7 +824,6 @@ function calculate_legend($boundaries_z_axis) { } $zmax = $i; $zmax1 = $zmax - 1; - // I18N: %d is a year $date = new Date('AFT ' . $hulpar[$zmax1]); $legend[$zmax] = strip_tags($date->display()); $z_boundaries[$zmax] = 10000; |
