diff options
77 files changed, 1187 insertions, 45 deletions
diff --git a/admin_site_clean.php b/admin_site_clean.php index 68c70f652c..384ba1c6c2 100644 --- a/admin_site_clean.php +++ b/admin_site_clean.php @@ -112,6 +112,6 @@ sort($entries); </fieldset> <button class="btn btn-danger" type="submit"> <i class="fa fa-trash-o"></i> - <?php echo /* I18N: A button label */ I18N::translate('delete'); ?> + <?php echo /* I18N: A button label. */ I18N::translate('delete'); ?> </button> </form> diff --git a/admin_trees_config.php b/admin_trees_config.php index b29b16c41e..a433d40ac0 100644 --- a/admin_trees_config.php +++ b/admin_trees_config.php @@ -535,7 +535,7 @@ $controller <th> <button class="btn btn-primary" id="add-resn" type="button"> <i class="fa fa-plus"></i> - <?php echo /* I18N: A button label. Add an item. */ I18N::translate('Add'); ?> + <?php echo /* I18N: A button label. */ I18N::translate('add'); ?> </button> </th> </tr> @@ -1363,7 +1363,7 @@ $controller <div class="input-group-btn"> <a class="btn btn-default" onclick="return findFact('CHART_BOX_TAGS', 'INDI');"> <i class="fa fa-pencil"></i> - <?php echo /* I18N: A button label */ I18N::translate('edit'); ?> + <?php echo /* I18N: A button label. */ I18N::translate('edit'); ?> </a> </div> </div> diff --git a/admin_trees_download.php b/admin_trees_download.php index 83592622b4..b35a38b7b7 100644 --- a/admin_trees_download.php +++ b/admin_trees_download.php @@ -116,7 +116,7 @@ $controller->pageHeader(); </label> <div class="col-sm-9"> <button id="submit-export" type="submit" class="btn btn-primary"> - <?php echo /* I18N: A button label */ I18N::translate('continue'); ?> + <?php echo /* I18N: A button label. */ I18N::translate('continue'); ?> </button> </div> </div> @@ -201,7 +201,7 @@ $controller->pageHeader(); </label> <div class="col-sm-9"> <button id="submit-export" type="submit" class="btn btn-primary"> - <?php echo /* I18N: A button label */ I18N::translate('continue'); ?> + <?php echo /* I18N: A button label. */ I18N::translate('continue'); ?> </button> </div> </div> diff --git a/admin_trees_manage.php b/admin_trees_manage.php index 2804736ddf..00e65b244b 100644 --- a/admin_trees_manage.php +++ b/admin_trees_manage.php @@ -306,7 +306,7 @@ case 'importform': <div class="form-group"> <div class="col-sm-offset-3 col-sm-9"> <button type="submit" class="btn btn-primary"> - <?php echo /* I18N: A button label */ I18N::translate('continue'); ?> + <?php echo /* I18N: A button label. */ I18N::translate('continue'); ?> </button> </div> </div> @@ -675,7 +675,7 @@ if (count($all_trees) >= $multiple_tree_threshold) { <div class="col-sm-offset-2 col-sm-10"> <button type="submit" class="btn btn-primary"> <i class="fa fa-check"></i> - <?php echo /* I18N: A button label */ I18N::translate('create'); ?> + <?php echo /* I18N: A button label. */ I18N::translate('create'); ?> </button> <p class="small text-muted"> <?php echo I18N::translate('After creating the family tree, you will be able to import data from a GEDCOM file.'); ?> @@ -751,7 +751,7 @@ if (count($all_trees) >= $multiple_tree_threshold) { <input type="hidden" name="action" value="synchronize"> <button type="submit" class="btn btn-danger"> <i class="fa fa-refresh"></i> - <?php echo /* I18N: A button label */ I18N::translate('continue'); ?> + <?php echo /* I18N: A button label. */ I18N::translate('continue'); ?> </button> <p class="small text-muted"> <?php echo I18N::translate('Caution! This may take a long time. Be patient.'); ?> diff --git a/admin_trees_merge.php b/admin_trees_merge.php index 5398c029e9..fbef3c7c00 100644 --- a/admin_trees_merge.php +++ b/admin_trees_merge.php @@ -199,7 +199,7 @@ if ($tree1_id && $tree2_id != $tree1_id) { '</p>'; echo '<button type="submit" class="btn btn-primary">'; - echo '<i class="fa fa-check"></i> ', /* I18N: A button label */ I18N::translate('continue'); + echo '<i class="fa fa-check"></i> ', /* I18N: A button label. */ I18N::translate('continue'); echo '</button>'; echo '</form>'; } diff --git a/admin_trees_places.php b/admin_trees_places.php index 72dd3b6e76..f9f9dcbd87 100644 --- a/admin_trees_places.php +++ b/admin_trees_places.php @@ -104,8 +104,8 @@ $controller <dt><label for="replace"><?php echo I18N::translate('Replace with'); ?></label></dt> <dd><input name="replace" id="replace" type="text" size="30" value="<?php echo Filter::escapeHtml($replace); ?>" required></dd> </dl> - <button type="submit" value="preview"><?php echo /* I18N: A button label */ I18N::translate('preview'); ?></button> - <button type="submit" value="update" name="confirm"><?php echo /* I18N: A button label */ I18N::translate('update'); ?></button> + <button type="submit" value="preview"><?php echo /* I18N: A button label. */ I18N::translate('preview'); ?></button> + <button type="submit" value="update" name="confirm"><?php echo /* I18N: A button label. */ I18N::translate('update'); ?></button> </form> <?php if ($search && $replace) { ?> diff --git a/admin_trees_renumber.php b/admin_trees_renumber.php index 43eca448fa..4fcfc9eeb9 100644 --- a/admin_trees_renumber.php +++ b/admin_trees_renumber.php @@ -278,7 +278,7 @@ if ($xrefs) { echo '<form>'; echo '<p>', I18N::translate('You can renumber this family tree.'), '</p>'; echo '<button type="submit" class="btn btn-primary">'; - echo '<i class="fa fa-check"></i> ', /* I18N: A button label */ I18N::translate('continue'); + echo '<i class="fa fa-check"></i> ', /* I18N: A button label. */ I18N::translate('continue'); echo '</button>'; echo '<input type="hidden" name="action" value="renumber">'; echo '<input type="hidden" name="ged" value="', $WT_TREE->getNameHtml(), '">'; diff --git a/app/Functions/FunctionsPrint.php b/app/Functions/FunctionsPrint.php index eceffdc10e..6669bd5700 100644 --- a/app/Functions/FunctionsPrint.php +++ b/app/Functions/FunctionsPrint.php @@ -571,7 +571,7 @@ class FunctionsPrint { } if (!$newRow) { echo '</select>'; - echo ' <input type="button" value="', I18N::translate('Add'), "\" onclick=\"return paste_fact('$id', '#newClipboardFact');\"> "; + echo ' <input type="button" value="', /* I18N: A button label. */ I18N::translate('add'), "\" onclick=\"return paste_fact('$id', '#newClipboardFact');\"> "; echo '</form></td></tr>', "\n"; } } @@ -630,7 +630,7 @@ class FunctionsPrint { echo '<option value="EVEN">', I18N::translate('Custom event'), '</option>'; } echo '</select>'; - echo '<input type="button" value="', I18N::translate('Add'), '" onclick="add_record(\'' . $id . '\', \'newfact\');">'; + echo '<input type="button" value="', /* I18N: A button label. */ I18N::translate('add'), '" onclick="add_record(\'' . $id . '\', \'newfact\');">'; echo '<span class="quickfacts">'; foreach ($quickfacts as $fact) { echo '<a href="#" onclick="add_new_record(\'' . $id . '\', \'' . $fact . '\');return false;">', GedcomTag::getLabel($fact), '</a>'; diff --git a/app/Module/ClippingsCartModule.php b/app/Module/ClippingsCartModule.php index 7557d685ef..ad8a20dbc3 100644 --- a/app/Module/ClippingsCartModule.php +++ b/app/Module/ClippingsCartModule.php @@ -331,7 +331,7 @@ class ClippingsCartModule extends AbstractModule implements ModuleMenuInterface, <?php echo FunctionsPrint::printFindIndividualLink('cart_item_id'); ?> <?php echo FunctionsPrint::printFindFamilyLink('cart_item_id'); ?> <?php echo FunctionsPrint::printFindSourceLink('cart_item_id', ''); ?> - <input type="submit" value="<?php echo I18N::translate('Add'); ?>"> + <input type="submit" value="<?php echo /* I18N: A button label. */ I18N::translate('add'); ?>"> </td> </tr> </tbody> @@ -457,7 +457,7 @@ class ClippingsCartModule extends AbstractModule implements ModuleMenuInterface, <?php echo FunctionsPrint::printFindIndividualLink('cart_item_id'); ?> <?php echo FunctionsPrint::printFindFamilyLink('cart_item_id'); ?> <?php echo FunctionsPrint::printFindSourceLink('cart_item_id'); ?> - <input type="submit" value="<?php echo I18N::translate('Add'); ?>"> + <input type="submit" value="<?php echo /* I18N: A button label. */ I18N::translate('add'); ?>"> </td> </tr> </tbody> diff --git a/app/Module/FamilyTreeFavoritesModule.php b/app/Module/FamilyTreeFavoritesModule.php index dc6cdb9015..1276b51629 100644 --- a/app/Module/FamilyTreeFavoritesModule.php +++ b/app/Module/FamilyTreeFavoritesModule.php @@ -225,7 +225,7 @@ class FamilyTreeFavoritesModule extends AbstractModule implements ModuleBlockInt $content .= '<p>' . I18N::translate('Enter an optional note about this favorite') . '</p>'; $content .= '<textarea name="favnote" rows="6" cols="50"></textarea>'; $content .= '</div>'; - $content .= '<input type="submit" value="' . I18N::translate('Add') . '">'; + $content .= '<input type="submit" value="' . /* I18N: A button label. */ I18N::translate('add') . '">'; $content .= '</form></div>'; } diff --git a/app/Module/GoogleMapsModule.php b/app/Module/GoogleMapsModule.php index b0a5fa91bc..00f9880b9c 100644 --- a/app/Module/GoogleMapsModule.php +++ b/app/Module/GoogleMapsModule.php @@ -4366,7 +4366,7 @@ class GoogleMapsModule extends AbstractModule implements ModuleConfigInterface, </div> <button type="submit" class="btn btn-default"> <i class="fa fa-plus"></i> - <?php echo I18N::translate('Add') ?> + <?php echo /* I18N: A button label. */ I18N::translate('add') ?> </button> </div> </div> diff --git a/app/Module/LoginBlockModule.php b/app/Module/LoginBlockModule.php index 29da93dbcd..92fc7f1387 100644 --- a/app/Module/LoginBlockModule.php +++ b/app/Module/LoginBlockModule.php @@ -61,7 +61,7 @@ class LoginBlockModule extends AbstractModule implements ModuleBlockInterface { $title = I18N::translate('Sign out'); $content = '<div class="center"><form method="post" action="logout.php" name="logoutform" onsubmit="return true;">'; $content .= '<br>' . I18N::translate('You are signed in as %s.', '<a href="edituser.php" class="name2">' . Auth::user()->getRealNameHtml() . '</a>') . '<br><br>'; - $content .= '<input type="submit" value="' . I18N::translate('Sign out') . '">'; + $content .= '<input type="submit" value="' . /* I18N: A button label. */ I18N::translate('sign out') . '">'; $content .= '<br><br></form></div>'; } else { @@ -80,7 +80,7 @@ class LoginBlockModule extends AbstractModule implements ModuleBlockInterface { </label> </div> <div> - <input type="submit" value="' . I18N::translate('Sign in') . '"> + <input type="submit" value="' . /* I18N: A button label. */ I18N::translate('sign in') . '"> </div> <div> <a href="#" id="passwd_click">' . I18N::translate('Forgot password?') . '</a> diff --git a/edit_interface.php b/edit_interface.php index 2489b58fcf..23aff62072 100644 --- a/edit_interface.php +++ b/edit_interface.php @@ -2590,11 +2590,11 @@ function print_indi_form($nextaction, Individual $person = null, Family $family } echo '<p id="save-cancel">'; - echo '<input type="submit" class="save" value="', /* I18N: A button label */ I18N::translate('save'), '">'; + echo '<input type="submit" class="save" value="', /* I18N: A button label. */ I18N::translate('save'), '">'; if (preg_match('/^add_(child|spouse|parent|unlinked_indi)/', $nextaction)) { - echo '<input type="submit" class="save" value="', /* I18N: A button label */ I18N::translate('go to new individual'), '" onclick="document.addchildform.goto.value=\'new\';">'; + echo '<input type="submit" class="save" value="', /* I18N: A button label. */ I18N::translate('go to new individual'), '" onclick="document.addchildform.goto.value=\'new\';">'; } - echo '<input type="button" class="cancel" value="', /* I18N: A button label */ I18N::translate('close'), '" onclick="window.close();">'; + echo '<input type="button" class="cancel" value="', /* I18N: A button label. */ I18N::translate('close'), '" onclick="window.close();">'; echo '</p>'; echo '</form>'; $controller->addInlineJavascript(' diff --git a/language/af.po b/language/af.po index 4a6b77cdc7..999288d273 100644 --- a/language/af.po +++ b/language/af.po @@ -1259,6 +1259,10 @@ msgstr "Adar II" msgid "Add" msgstr "Voeg by" +msgid "add" +msgstr "voeg by" +#, fuzzy + #: app/Module/ClippingsCartModule.php:724 #, php-format msgid "Add %s to the clippings cart" @@ -11634,6 +11638,10 @@ msgstr "Hernommer die stamboom" #. I18N: A button label #: search.php:217 +msgid "replace" +msgstr "vervang" +#, fuzzy + msgid "Replace" msgstr "Vervang" @@ -11994,6 +12002,10 @@ msgstr "Verseëling herroep (egskeiding)" msgid "Search" msgstr "Soek" +msgid "search" +msgstr "soek" +#, fuzzy + #: app/Controller/SearchController.php:202 #: app/Module/BatchUpdate/BatchUpdateSearchReplacePlugin.php:50 #: app/Theme/AbstractTheme.php:1717 @@ -12924,13 +12936,25 @@ msgstr "Sierra Leone" #: app/Module/LoginBlockModule.php:29 app/Module/LoginBlockModule.php:68 #: app/Module/LoginBlockModule.php:83 app/Theme/AbstractTheme.php:1557 #: login.php:150 login.php:199 +msgid "sign in" +msgstr "meld aan" +#, fuzzy + +#: app/Module/LoginBlockModule.php:61 app/Module/LoginBlockModule.php:64 +#: app/Theme/AbstractTheme.php:1568 +msgid "sign out" +msgstr "meld af" +#, fuzzy + msgid "Sign in" msgstr "Meld aan" +#, fuzzy #: app/Module/LoginBlockModule.php:61 app/Module/LoginBlockModule.php:64 #: app/Theme/AbstractTheme.php:1568 msgid "Sign out" msgstr "Meld af" +#, fuzzy #. I18N: A configuration setting #: admin_site_config.php:447 diff --git a/language/ar.po b/language/ar.po index 9f6c1bbfc8..e1b5ae1847 100644 --- a/language/ar.po +++ b/language/ar.po @@ -1376,6 +1376,10 @@ msgstr "أدار الثاني" msgid "Add" msgstr "إضافة" +msgid "add" +msgstr "إضافة" +#, fuzzy + #: app/Module/ClippingsCartModule.php:724 #, php-format msgid "Add %s to the clippings cart" @@ -12103,6 +12107,9 @@ msgstr "إحكام ملغى (طلاق)" msgid "Search" msgstr "بحث" +msgid "search" +msgstr "بحث" + #: app/Controller/SearchController.php:202 #: app/Module/BatchUpdate/BatchUpdateSearchReplacePlugin.php:50 #: app/Theme/AbstractTheme.php:1717 @@ -13033,13 +13040,25 @@ msgstr "سيراليون" #: app/Module/LoginBlockModule.php:29 app/Module/LoginBlockModule.php:68 #: app/Module/LoginBlockModule.php:83 app/Theme/AbstractTheme.php:1557 #: login.php:150 login.php:199 +msgid "sign in" +msgstr "تسجيل دخول" +#, fuzzy + +#: app/Module/LoginBlockModule.php:61 app/Module/LoginBlockModule.php:64 +#: app/Theme/AbstractTheme.php:1568 +msgid "sign out" +msgstr "خروج" +#, fuzzy + msgid "Sign in" msgstr "تسجيل دخول" +#, fuzzy #: app/Module/LoginBlockModule.php:61 app/Module/LoginBlockModule.php:64 #: app/Theme/AbstractTheme.php:1568 msgid "Sign out" msgstr "خروج" +#, fuzzy #. I18N: A configuration setting #: admin_site_config.php:447 diff --git a/language/bg.po b/language/bg.po index 580df36170..1ffe6f0503 100644 --- a/language/bg.po +++ b/language/bg.po @@ -1259,6 +1259,10 @@ msgstr "" msgid "Add" msgstr "Добави" +msgid "add" +msgstr "добави" +#, fuzzy + #: app/Module/ClippingsCartModule.php:724 #, php-format msgid "Add %s to the clippings cart" @@ -11994,6 +11998,10 @@ msgstr "" msgid "Search" msgstr "Търси" +msgid "search" +msgstr "търси" +#, fuzzy + #: app/Controller/SearchController.php:202 #: app/Module/BatchUpdate/BatchUpdateSearchReplacePlugin.php:50 #: app/Theme/AbstractTheme.php:1717 @@ -12924,13 +12932,25 @@ msgstr "" #: app/Module/LoginBlockModule.php:29 app/Module/LoginBlockModule.php:68 #: app/Module/LoginBlockModule.php:83 app/Theme/AbstractTheme.php:1557 #: login.php:150 login.php:199 +msgid "sign in" +msgstr "вход" +#, fuzzy + +#: app/Module/LoginBlockModule.php:61 app/Module/LoginBlockModule.php:64 +#: app/Theme/AbstractTheme.php:1568 +msgid "sign out" +msgstr "изход" +#, fuzzy + msgid "Sign in" msgstr "Вход" +#, fuzzy #: app/Module/LoginBlockModule.php:61 app/Module/LoginBlockModule.php:64 #: app/Theme/AbstractTheme.php:1568 msgid "Sign out" msgstr "Изход" +#, fuzzy #. I18N: A configuration setting #: admin_site_config.php:447 diff --git a/language/bs.po b/language/bs.po index 4d6339f107..0232e55a17 100644 --- a/language/bs.po +++ b/language/bs.po @@ -1287,6 +1287,10 @@ msgstr "" msgid "Add" msgstr "Dodaj" +msgid "add" +msgstr "dodaj" +#, fuzzy + #: app/Module/ClippingsCartModule.php:724 #, php-format msgid "Add %s to the clippings cart" @@ -12002,6 +12006,10 @@ msgstr "Pečat raskinut (razvod)" msgid "Search" msgstr "Pretraga" +msgid "search" +msgstr "pretraga" +#, fuzzy + #: app/Controller/SearchController.php:202 #: app/Module/BatchUpdate/BatchUpdateSearchReplacePlugin.php:50 #: app/Theme/AbstractTheme.php:1717 @@ -12932,13 +12940,25 @@ msgstr "Sijera Leone" #: app/Module/LoginBlockModule.php:29 app/Module/LoginBlockModule.php:68 #: app/Module/LoginBlockModule.php:83 app/Theme/AbstractTheme.php:1557 #: login.php:150 login.php:199 +msgid "sign in" +msgstr "prijava" +#, fuzzy + +#: app/Module/LoginBlockModule.php:61 app/Module/LoginBlockModule.php:64 +#: app/Theme/AbstractTheme.php:1568 +msgid "sign out" +msgstr "odjava" +#, fuzzy + msgid "Sign in" msgstr "Prijava" +#, fuzzy #: app/Module/LoginBlockModule.php:61 app/Module/LoginBlockModule.php:64 #: app/Theme/AbstractTheme.php:1568 msgid "Sign out" msgstr "Odjava" +#, fuzzy #. I18N: A configuration setting #: admin_site_config.php:447 diff --git a/language/ca.po b/language/ca.po index e586a2b960..fce36ce08d 100644 --- a/language/ca.po +++ b/language/ca.po @@ -1263,6 +1263,10 @@ msgstr "Adar II" msgid "Add" msgstr "Afegeix" +msgid "add" +msgstr "afegeix" +#, fuzzy + #: app/Module/ClippingsCartModule.php:724 #, php-format msgid "Add %s to the clippings cart" @@ -11638,6 +11642,10 @@ msgstr "Renumera l'arbre genealògic" #. I18N: A button label #: search.php:217 +msgid "replace" +msgstr "substitueix" +#, fuzzy + msgid "Replace" msgstr "Substitueix" @@ -11998,6 +12006,10 @@ msgstr "Segellament cancel·lat (divorci)" msgid "Search" msgstr "Cerca" +msgid "search" +msgstr "cerca" +#, fuzzy + #: app/Controller/SearchController.php:202 #: app/Module/BatchUpdate/BatchUpdateSearchReplacePlugin.php:50 #: app/Theme/AbstractTheme.php:1717 @@ -12928,13 +12940,25 @@ msgstr "Serra Lleona" #: app/Module/LoginBlockModule.php:29 app/Module/LoginBlockModule.php:68 #: app/Module/LoginBlockModule.php:83 app/Theme/AbstractTheme.php:1557 #: login.php:150 login.php:199 +msgid "sign in" +msgstr "accés" +#, fuzzy + +#: app/Module/LoginBlockModule.php:61 app/Module/LoginBlockModule.php:64 +#: app/Theme/AbstractTheme.php:1568 +msgid "sign out" +msgstr "surt" +#, fuzzy + msgid "Sign in" msgstr "Accés" +#, fuzzy #: app/Module/LoginBlockModule.php:61 app/Module/LoginBlockModule.php:64 #: app/Theme/AbstractTheme.php:1568 msgid "Sign out" msgstr "Surt" +#, fuzzy #. I18N: A configuration setting #: admin_site_config.php:447 diff --git a/language/cs.po b/language/cs.po index 1018f79115..2b96f3ef4a 100644 --- a/language/cs.po +++ b/language/cs.po @@ -1294,6 +1294,10 @@ msgstr "Adar II" msgid "Add" msgstr "Přidat" +msgid "add" +msgstr "přidat" +#, fuzzy + #: app/Module/ClippingsCartModule.php:724 #, php-format msgid "Add %s to the clippings cart" @@ -11673,6 +11677,10 @@ msgstr "Přečíslovat rodokmen" #. I18N: A button label #: search.php:217 +msgid "replace" +msgstr "nahradit" +#, fuzzy + msgid "Replace" msgstr "Nahradit" @@ -12033,6 +12041,10 @@ msgstr "Zrušené manželství (rozvod)" msgid "Search" msgstr "Hledat" +msgid "search" +msgstr "hledat" +#, fuzzy + #: app/Controller/SearchController.php:202 #: app/Module/BatchUpdate/BatchUpdateSearchReplacePlugin.php:50 #: app/Theme/AbstractTheme.php:1717 @@ -12963,13 +12975,25 @@ msgstr "Sierra Leone" #: app/Module/LoginBlockModule.php:29 app/Module/LoginBlockModule.php:68 #: app/Module/LoginBlockModule.php:83 app/Theme/AbstractTheme.php:1557 #: login.php:150 login.php:199 +msgid "sign in" +msgstr "přihlásit se" +#, fuzzy + +#: app/Module/LoginBlockModule.php:61 app/Module/LoginBlockModule.php:64 +#: app/Theme/AbstractTheme.php:1568 +msgid "sign out" +msgstr "odhlásit se" +#, fuzzy + msgid "Sign in" msgstr "Přihlásit se" +#, fuzzy #: app/Module/LoginBlockModule.php:61 app/Module/LoginBlockModule.php:64 #: app/Theme/AbstractTheme.php:1568 msgid "Sign out" msgstr "Odhlásit se" +#, fuzzy #. I18N: A configuration setting #: admin_site_config.php:447 diff --git a/language/da.po b/language/da.po index ebdbfee3ae..882d3e67f8 100644 --- a/language/da.po +++ b/language/da.po @@ -1263,6 +1263,10 @@ msgstr "Adar Sheni" msgid "Add" msgstr "Tilføj" +msgid "add" +msgstr "tilføj" +#, fuzzy + #: app/Module/ClippingsCartModule.php:724 #, php-format msgid "Add %s to the clippings cart" @@ -11614,6 +11618,10 @@ msgstr "Gen-nummerer familietræet" #. I18N: A button label #: search.php:217 +msgid "replace" +msgstr "erstat" +#, fuzzy + msgid "Replace" msgstr "Erstat" @@ -11974,6 +11982,10 @@ msgstr "Besegling annulleret (skilsmisse)" msgid "Search" msgstr "Søg" +msgid "search" +msgstr "søg" +#, fuzzy + #: app/Controller/SearchController.php:202 #: app/Module/BatchUpdate/BatchUpdateSearchReplacePlugin.php:50 #: app/Theme/AbstractTheme.php:1717 @@ -12904,13 +12916,25 @@ msgstr "Sierra Leone" #: app/Module/LoginBlockModule.php:29 app/Module/LoginBlockModule.php:68 #: app/Module/LoginBlockModule.php:83 app/Theme/AbstractTheme.php:1557 #: login.php:150 login.php:199 +msgid "sign in" +msgstr "log ind" +#, fuzzy + +#: app/Module/LoginBlockModule.php:61 app/Module/LoginBlockModule.php:64 +#: app/Theme/AbstractTheme.php:1568 +msgid "sign out" +msgstr "log ud" +#, fuzzy + msgid "Sign in" msgstr "Log ind" +#, fuzzy #: app/Module/LoginBlockModule.php:61 app/Module/LoginBlockModule.php:64 #: app/Theme/AbstractTheme.php:1568 msgid "Sign out" msgstr "Log ud" +#, fuzzy #. I18N: A configuration setting #: admin_site_config.php:447 diff --git a/language/de.po b/language/de.po index 883590d74a..cc471968bb 100644 --- a/language/de.po +++ b/language/de.po @@ -1259,6 +1259,10 @@ msgstr "Adar II" msgid "Add" msgstr "Hinzufügen" +msgid "add" +msgstr "hinzufügen" +#, fuzzy + #: app/Module/ClippingsCartModule.php:724 #, php-format msgid "Add %s to the clippings cart" @@ -11634,6 +11638,10 @@ msgstr "Stammbaum neu nummerieren" #. I18N: A button label #: search.php:217 +msgid "replace" +msgstr "ersetzen" +#, fuzzy + msgid "Replace" msgstr "Ersetzen" @@ -11994,6 +12002,10 @@ msgstr "Siegelung annuliert (geschieden)" msgid "Search" msgstr "Suche" +msgid "search" +msgstr "suche" +#, fuzzy + #: app/Controller/SearchController.php:202 #: app/Module/BatchUpdate/BatchUpdateSearchReplacePlugin.php:50 #: app/Theme/AbstractTheme.php:1717 @@ -12924,13 +12936,25 @@ msgstr "Sierra Leone" #: app/Module/LoginBlockModule.php:29 app/Module/LoginBlockModule.php:68 #: app/Module/LoginBlockModule.php:83 app/Theme/AbstractTheme.php:1557 #: login.php:150 login.php:199 +msgid "sign in" +msgstr "anmeldung" +#, fuzzy + +#: app/Module/LoginBlockModule.php:61 app/Module/LoginBlockModule.php:64 +#: app/Theme/AbstractTheme.php:1568 +msgid "sign out" +msgstr "abmelden" +#, fuzzy + msgid "Sign in" msgstr "Anmeldung" +#, fuzzy #: app/Module/LoginBlockModule.php:61 app/Module/LoginBlockModule.php:64 #: app/Theme/AbstractTheme.php:1568 msgid "Sign out" msgstr "Abmelden" +#, fuzzy #. I18N: A configuration setting #: admin_site_config.php:447 diff --git a/language/el.po b/language/el.po index e50aff8e4e..eb1214acb0 100644 --- a/language/el.po +++ b/language/el.po @@ -1263,6 +1263,10 @@ msgstr "" msgid "Add" msgstr "Προσθήκη" +msgid "add" +msgstr "προσθήκη" +#, fuzzy + #: app/Module/ClippingsCartModule.php:724 #, php-format msgid "Add %s to the clippings cart" @@ -11998,6 +12002,10 @@ msgstr "" msgid "Search" msgstr "Αναζήτηση" +msgid "search" +msgstr "αναζήτηση" +#, fuzzy + #: app/Controller/SearchController.php:202 #: app/Module/BatchUpdate/BatchUpdateSearchReplacePlugin.php:50 #: app/Theme/AbstractTheme.php:1717 @@ -12929,13 +12937,25 @@ msgstr "" #: app/Module/LoginBlockModule.php:29 app/Module/LoginBlockModule.php:68 #: app/Module/LoginBlockModule.php:83 app/Theme/AbstractTheme.php:1557 #: login.php:150 login.php:199 +msgid "sign in" +msgstr "σύνδεση" +#, fuzzy + +#: app/Module/LoginBlockModule.php:61 app/Module/LoginBlockModule.php:64 +#: app/Theme/AbstractTheme.php:1568 +msgid "sign out" +msgstr "αποσύνδεση" +#, fuzzy + msgid "Sign in" msgstr "Σύνδεση" +#, fuzzy #: app/Module/LoginBlockModule.php:61 app/Module/LoginBlockModule.php:64 #: app/Theme/AbstractTheme.php:1568 msgid "Sign out" msgstr "Αποσύνδεση" +#, fuzzy #. I18N: A configuration setting #: admin_site_config.php:447 diff --git a/language/en-AU.po b/language/en-AU.po index 8506eaf4df..c6211aba3a 100644 --- a/language/en-AU.po +++ b/language/en-AU.po @@ -1259,6 +1259,9 @@ msgstr "Adar II" msgid "Add" msgstr "Add" +msgid "add" +msgstr "add" + #: app/Module/ClippingsCartModule.php:724 #, php-format msgid "Add %s to the clippings cart" @@ -11633,6 +11636,9 @@ msgstr "Renumber family tree" #. I18N: A button label #: search.php:217 +msgid "replace" +msgstr "replace" + msgid "Replace" msgstr "Replace" @@ -11993,6 +11999,9 @@ msgstr "Sealing cancelled (divorce)" msgid "Search" msgstr "Search" +msgid "search" +msgstr "search" + #: app/Controller/SearchController.php:202 #: app/Module/BatchUpdate/BatchUpdateSearchReplacePlugin.php:50 #: app/Theme/AbstractTheme.php:1717 @@ -12923,6 +12932,14 @@ msgstr "Sierra Leone" #: app/Module/LoginBlockModule.php:29 app/Module/LoginBlockModule.php:68 #: app/Module/LoginBlockModule.php:83 app/Theme/AbstractTheme.php:1557 #: login.php:150 login.php:199 +msgid "sign in" +msgstr "sign in" + +#: app/Module/LoginBlockModule.php:61 app/Module/LoginBlockModule.php:64 +#: app/Theme/AbstractTheme.php:1568 +msgid "sign out" +msgstr "sign out" + msgid "Sign in" msgstr "Sign in" diff --git a/language/en-GB.po b/language/en-GB.po index 377fbb6bc8..788ccc300f 100644 --- a/language/en-GB.po +++ b/language/en-GB.po @@ -1259,6 +1259,9 @@ msgstr "Adar II" msgid "Add" msgstr "Add" +msgid "add" +msgstr "add" + #: app/Module/ClippingsCartModule.php:724 #, php-format msgid "Add %s to the clippings cart" @@ -11633,6 +11636,9 @@ msgstr "Renumber family tree" #. I18N: A button label #: search.php:217 +msgid "replace" +msgstr "replace" + msgid "Replace" msgstr "Replace" @@ -11993,6 +11999,9 @@ msgstr "Sealing cancelled (divorce)" msgid "Search" msgstr "Search" +msgid "search" +msgstr "search" + #: app/Controller/SearchController.php:202 #: app/Module/BatchUpdate/BatchUpdateSearchReplacePlugin.php:50 #: app/Theme/AbstractTheme.php:1717 @@ -12923,6 +12932,14 @@ msgstr "Sierra Leone" #: app/Module/LoginBlockModule.php:29 app/Module/LoginBlockModule.php:68 #: app/Module/LoginBlockModule.php:83 app/Theme/AbstractTheme.php:1557 #: login.php:150 login.php:199 +msgid "sign in" +msgstr "sign in" + +#: app/Module/LoginBlockModule.php:61 app/Module/LoginBlockModule.php:64 +#: app/Theme/AbstractTheme.php:1568 +msgid "sign out" +msgstr "sign out" + msgid "Sign in" msgstr "Sign in" diff --git a/language/es.po b/language/es.po index 6975f165af..8b0a8dcb6f 100644 --- a/language/es.po +++ b/language/es.po @@ -1264,6 +1264,10 @@ msgstr "adar II" msgid "Add" msgstr "Añadir" +msgid "add" +msgstr "añadir" +#, fuzzy + #: app/Module/ClippingsCartModule.php:724 #, php-format msgid "Add %s to the clippings cart" @@ -11639,6 +11643,10 @@ msgstr "Volver a numerar el árbol genealógico" #. I18N: A button label #: search.php:217 +msgid "replace" +msgstr "reemplace" +#, fuzzy + msgid "Replace" msgstr "Reemplace" @@ -11999,6 +12007,10 @@ msgstr "Sellamiento cancelado (divorcio)" msgid "Search" msgstr "Buscar" +msgid "search" +msgstr "buscar" +#, fuzzy + #: app/Controller/SearchController.php:202 #: app/Module/BatchUpdate/BatchUpdateSearchReplacePlugin.php:50 #: app/Theme/AbstractTheme.php:1717 @@ -12929,13 +12941,25 @@ msgstr "Sierra Leona" #: app/Module/LoginBlockModule.php:29 app/Module/LoginBlockModule.php:68 #: app/Module/LoginBlockModule.php:83 app/Theme/AbstractTheme.php:1557 #: login.php:150 login.php:199 +msgid "sign in" +msgstr "iniciar sesión" +#, fuzzy + +#: app/Module/LoginBlockModule.php:61 app/Module/LoginBlockModule.php:64 +#: app/Theme/AbstractTheme.php:1568 +msgid "sign out" +msgstr "salir" +#, fuzzy + msgid "Sign in" msgstr "Iniciar sesión" +#, fuzzy #: app/Module/LoginBlockModule.php:61 app/Module/LoginBlockModule.php:64 #: app/Theme/AbstractTheme.php:1568 msgid "Sign out" msgstr "Salir" +#, fuzzy #. I18N: A configuration setting #: admin_site_config.php:447 diff --git a/language/et.po b/language/et.po index c4bf101bb3..84a936d635 100644 --- a/language/et.po +++ b/language/et.po @@ -1264,6 +1264,10 @@ msgstr "Adar II" msgid "Add" msgstr "Lisa" +msgid "add" +msgstr "lisa" +#, fuzzy + #: app/Module/ClippingsCartModule.php:724 #, php-format msgid "Add %s to the clippings cart" @@ -11639,6 +11643,10 @@ msgstr "Nummerda sugupuu ümber" #. I18N: A button label #: search.php:217 +msgid "replace" +msgstr "asenda" +#, fuzzy + msgid "Replace" msgstr "Asenda" @@ -11999,6 +12007,10 @@ msgstr "\"Sealing\" tühistatud (lahutus)" msgid "Search" msgstr "Otsi" +msgid "search" +msgstr "otsi" +#, fuzzy + #: app/Controller/SearchController.php:202 #: app/Module/BatchUpdate/BatchUpdateSearchReplacePlugin.php:50 #: app/Theme/AbstractTheme.php:1717 @@ -12929,13 +12941,25 @@ msgstr "Sierra Leone" #: app/Module/LoginBlockModule.php:29 app/Module/LoginBlockModule.php:68 #: app/Module/LoginBlockModule.php:83 app/Theme/AbstractTheme.php:1557 #: login.php:150 login.php:199 +msgid "sign in" +msgstr "logi sisse" +#, fuzzy + +#: app/Module/LoginBlockModule.php:61 app/Module/LoginBlockModule.php:64 +#: app/Theme/AbstractTheme.php:1568 +msgid "sign out" +msgstr "logi välja" +#, fuzzy + msgid "Sign in" msgstr "Logi sisse" +#, fuzzy #: app/Module/LoginBlockModule.php:61 app/Module/LoginBlockModule.php:64 #: app/Theme/AbstractTheme.php:1568 msgid "Sign out" msgstr "Logi välja" +#, fuzzy #. I18N: A configuration setting #: admin_site_config.php:447 diff --git a/language/fa.po b/language/fa.po index 7a8e95f7a4..bb48d41d18 100644 --- a/language/fa.po +++ b/language/fa.po @@ -1239,6 +1239,10 @@ msgstr "ادار II" msgid "Add" msgstr "افزودن" +msgid "add" +msgstr "افزودن" +#, fuzzy + #: app/Module/ClippingsCartModule.php:724 #, php-format msgid "Add %s to the clippings cart" @@ -11948,6 +11952,9 @@ msgstr "" msgid "Search" msgstr "جستجو" +msgid "search" +msgstr "جستجو" + #: app/Controller/SearchController.php:202 #: app/Module/BatchUpdate/BatchUpdateSearchReplacePlugin.php:50 #: app/Theme/AbstractTheme.php:1717 @@ -12879,6 +12886,14 @@ msgstr "" #: app/Module/LoginBlockModule.php:29 app/Module/LoginBlockModule.php:68 #: app/Module/LoginBlockModule.php:83 app/Theme/AbstractTheme.php:1557 #: login.php:150 login.php:199 +msgid "sign in" +msgstr "ورود به سیستم" + +#: app/Module/LoginBlockModule.php:61 app/Module/LoginBlockModule.php:64 +#: app/Theme/AbstractTheme.php:1568 +msgid "sign out" +msgstr "خروج" + msgid "Sign in" msgstr "ورود به سیستم" diff --git a/language/fi.po b/language/fi.po index c0a1eb9c12..5395e6d995 100644 --- a/language/fi.po +++ b/language/fi.po @@ -1259,6 +1259,10 @@ msgstr "adar II-kuu" msgid "Add" msgstr "Lisää" +msgid "add" +msgstr "lisää" +#, fuzzy + #: app/Module/ClippingsCartModule.php:724 #, php-format msgid "Add %s to the clippings cart" @@ -11634,6 +11638,10 @@ msgstr "Numeroi sukupuu uudelleen" #. I18N: A button label #: search.php:217 +msgid "replace" +msgstr "korvaa" +#, fuzzy + msgid "Replace" msgstr "Korvaa" @@ -11994,6 +12002,10 @@ msgstr "Sinetöinnin mitätöinti (avioero)" msgid "Search" msgstr "Etsi" +msgid "search" +msgstr "etsi" +#, fuzzy + #: app/Controller/SearchController.php:202 #: app/Module/BatchUpdate/BatchUpdateSearchReplacePlugin.php:50 #: app/Theme/AbstractTheme.php:1717 @@ -12924,13 +12936,25 @@ msgstr "Sierra Leone" #: app/Module/LoginBlockModule.php:29 app/Module/LoginBlockModule.php:68 #: app/Module/LoginBlockModule.php:83 app/Theme/AbstractTheme.php:1557 #: login.php:150 login.php:199 +msgid "sign in" +msgstr "kirjaudu sisään" +#, fuzzy + +#: app/Module/LoginBlockModule.php:61 app/Module/LoginBlockModule.php:64 +#: app/Theme/AbstractTheme.php:1568 +msgid "sign out" +msgstr "kirjaudu ulos" +#, fuzzy + msgid "Sign in" msgstr "Kirjaudu sisään" +#, fuzzy #: app/Module/LoginBlockModule.php:61 app/Module/LoginBlockModule.php:64 #: app/Theme/AbstractTheme.php:1568 msgid "Sign out" msgstr "Kirjaudu ulos" +#, fuzzy #. I18N: A configuration setting #: admin_site_config.php:447 diff --git a/language/fo.po b/language/fo.po index 762a2061cd..258ab3b2a0 100644 --- a/language/fo.po +++ b/language/fo.po @@ -11993,6 +11993,10 @@ msgstr "" msgid "Search" msgstr "Leita" +msgid "search" +msgstr "leita" +#, fuzzy + #: app/Controller/SearchController.php:202 #: app/Module/BatchUpdate/BatchUpdateSearchReplacePlugin.php:50 #: app/Theme/AbstractTheme.php:1717 @@ -12924,13 +12928,25 @@ msgstr "" #: app/Module/LoginBlockModule.php:29 app/Module/LoginBlockModule.php:68 #: app/Module/LoginBlockModule.php:83 app/Theme/AbstractTheme.php:1557 #: login.php:150 login.php:199 +msgid "sign in" +msgstr "innrita" +#, fuzzy + +#: app/Module/LoginBlockModule.php:61 app/Module/LoginBlockModule.php:64 +#: app/Theme/AbstractTheme.php:1568 +msgid "sign out" +msgstr "útrita" +#, fuzzy + msgid "Sign in" msgstr "Innrita" +#, fuzzy #: app/Module/LoginBlockModule.php:61 app/Module/LoginBlockModule.php:64 #: app/Theme/AbstractTheme.php:1568 msgid "Sign out" msgstr "Útrita" +#, fuzzy #. I18N: A configuration setting #: admin_site_config.php:447 diff --git a/language/fr-CA.po b/language/fr-CA.po index 4968155427..1d0b517c84 100644 --- a/language/fr-CA.po +++ b/language/fr-CA.po @@ -1261,6 +1261,9 @@ msgstr "Adar II" msgid "Add" msgstr "Ajouter" +msgid "add" +msgstr "ajouter" + #: app/Module/ClippingsCartModule.php:724 #, php-format msgid "Add %s to the clippings cart" @@ -11635,6 +11638,9 @@ msgstr "Renumérote l’arbre généalogique" #. I18N: A button label #: search.php:217 +msgid "replace" +msgstr "remplacer" + msgid "Replace" msgstr "Remplacer" @@ -11995,6 +12001,10 @@ msgstr "Signature de l’annulation (divorce)" msgid "Search" msgstr "Recherche" +msgid "search" +msgstr "recherche" +#, fuzzy + #: app/Controller/SearchController.php:202 #: app/Module/BatchUpdate/BatchUpdateSearchReplacePlugin.php:50 #: app/Theme/AbstractTheme.php:1717 @@ -12925,13 +12935,25 @@ msgstr "Sierra Leone" #: app/Module/LoginBlockModule.php:29 app/Module/LoginBlockModule.php:68 #: app/Module/LoginBlockModule.php:83 app/Theme/AbstractTheme.php:1557 #: login.php:150 login.php:199 +msgid "sign in" +msgstr "connexion" +#, fuzzy + +#: app/Module/LoginBlockModule.php:61 app/Module/LoginBlockModule.php:64 +#: app/Theme/AbstractTheme.php:1568 +msgid "sign out" +msgstr "déconnexion" +#, fuzzy + msgid "Sign in" msgstr "Connexion" +#, fuzzy #: app/Module/LoginBlockModule.php:61 app/Module/LoginBlockModule.php:64 #: app/Theme/AbstractTheme.php:1568 msgid "Sign out" msgstr "Déconnexion" +#, fuzzy #. I18N: A configuration setting #: admin_site_config.php:447 diff --git a/language/fr.po b/language/fr.po index 4fa81ba42a..8775cae15c 100644 --- a/language/fr.po +++ b/language/fr.po @@ -1263,6 +1263,9 @@ msgstr "Adar II" msgid "Add" msgstr "Ajouter" +msgid "add" +msgstr "ajouter" + #: app/Module/ClippingsCartModule.php:724 #, php-format msgid "Add %s to the clippings cart" @@ -11637,6 +11640,10 @@ msgstr "Renumérote l’arbre généalogique" #. I18N: A button label #: search.php:217 +msgid "replace" +msgstr "remplacer" +#, fuzzy + msgid "Replace" msgstr "Remplacer" @@ -11997,6 +12004,10 @@ msgstr "Signature de l’annulation (divorce)" msgid "Search" msgstr "Recherche" +msgid "search" +msgstr "recherche" +#, fuzzy + #: app/Controller/SearchController.php:202 #: app/Module/BatchUpdate/BatchUpdateSearchReplacePlugin.php:50 #: app/Theme/AbstractTheme.php:1717 @@ -12927,13 +12938,25 @@ msgstr "Sierra Leone" #: app/Module/LoginBlockModule.php:29 app/Module/LoginBlockModule.php:68 #: app/Module/LoginBlockModule.php:83 app/Theme/AbstractTheme.php:1557 #: login.php:150 login.php:199 +msgid "sign in" +msgstr "connexion" +#, fuzzy + +#: app/Module/LoginBlockModule.php:61 app/Module/LoginBlockModule.php:64 +#: app/Theme/AbstractTheme.php:1568 +msgid "sign out" +msgstr "déconnexion" +#, fuzzy + msgid "Sign in" msgstr "Connexion" +#, fuzzy #: app/Module/LoginBlockModule.php:61 app/Module/LoginBlockModule.php:64 #: app/Theme/AbstractTheme.php:1568 msgid "Sign out" msgstr "Déconnexion" +#, fuzzy #. I18N: A configuration setting #: admin_site_config.php:447 diff --git a/language/gl.po b/language/gl.po index 5d14ccb863..81b256337a 100644 --- a/language/gl.po +++ b/language/gl.po @@ -1259,6 +1259,10 @@ msgstr "" msgid "Add" msgstr "Engadir" +msgid "add" +msgstr "engadir" +#, fuzzy + #: app/Module/ClippingsCartModule.php:724 #, php-format msgid "Add %s to the clippings cart" @@ -11969,6 +11973,10 @@ msgstr "" msgid "Search" msgstr "Procurar" +msgid "search" +msgstr "procurar" +#, fuzzy + #: app/Controller/SearchController.php:202 #: app/Module/BatchUpdate/BatchUpdateSearchReplacePlugin.php:50 #: app/Theme/AbstractTheme.php:1717 @@ -12899,13 +12907,25 @@ msgstr "" #: app/Module/LoginBlockModule.php:29 app/Module/LoginBlockModule.php:68 #: app/Module/LoginBlockModule.php:83 app/Theme/AbstractTheme.php:1557 #: login.php:150 login.php:199 +msgid "sign in" +msgstr "iniciar a sesión" +#, fuzzy + +#: app/Module/LoginBlockModule.php:61 app/Module/LoginBlockModule.php:64 +#: app/Theme/AbstractTheme.php:1568 +msgid "sign out" +msgstr "sair" +#, fuzzy + msgid "Sign in" msgstr "Iniciar a sesión" +#, fuzzy #: app/Module/LoginBlockModule.php:61 app/Module/LoginBlockModule.php:64 #: app/Theme/AbstractTheme.php:1568 msgid "Sign out" msgstr "Sair" +#, fuzzy #. I18N: A configuration setting #: admin_site_config.php:447 diff --git a/language/he.po b/language/he.po index 84b3f54319..a8b368f00e 100644 --- a/language/he.po +++ b/language/he.po @@ -1263,6 +1263,10 @@ msgstr "אדר ב׳" msgid "Add" msgstr "הוסף" +msgid "add" +msgstr "הוסף" +#, fuzzy + #: app/Module/ClippingsCartModule.php:724 #, php-format msgid "Add %s to the clippings cart" @@ -11638,6 +11642,10 @@ msgstr "מספר מחדש עץ משפחה" #. I18N: A button label #: search.php:217 +msgid "replace" +msgstr "החלף" +#, fuzzy + msgid "Replace" msgstr "החלף" @@ -11998,6 +12006,9 @@ msgstr "ביטול חותמת מורמונים (גירושין)" msgid "Search" msgstr "חפש" +msgid "search" +msgstr "חפש" + #: app/Controller/SearchController.php:202 #: app/Module/BatchUpdate/BatchUpdateSearchReplacePlugin.php:50 #: app/Theme/AbstractTheme.php:1717 @@ -12928,6 +12939,14 @@ msgstr "סיירה לאונה" #: app/Module/LoginBlockModule.php:29 app/Module/LoginBlockModule.php:68 #: app/Module/LoginBlockModule.php:83 app/Theme/AbstractTheme.php:1557 #: login.php:150 login.php:199 +msgid "sign in" +msgstr "התחבר" + +#: app/Module/LoginBlockModule.php:61 app/Module/LoginBlockModule.php:64 +#: app/Theme/AbstractTheme.php:1568 +msgid "sign out" +msgstr "התנתק" + msgid "Sign in" msgstr "התחבר" diff --git a/language/hr.po b/language/hr.po index fc057d354e..710a281c2e 100644 --- a/language/hr.po +++ b/language/hr.po @@ -1291,6 +1291,10 @@ msgstr "" msgid "Add" msgstr "Dodaj" +msgid "add" +msgstr "dodaj" +#, fuzzy + #: app/Module/ClippingsCartModule.php:724 #, php-format msgid "Add %s to the clippings cart" @@ -11670,6 +11674,10 @@ msgstr "Renumeriraj obiteljsko stablo" #. I18N: A button label #: search.php:217 +msgid "replace" +msgstr "zamijeni" +#, fuzzy + msgid "Replace" msgstr "Zamijeni" @@ -12030,6 +12038,10 @@ msgstr "" msgid "Search" msgstr "Pretraži" +msgid "search" +msgstr "pretraži" +#, fuzzy + #: app/Controller/SearchController.php:202 #: app/Module/BatchUpdate/BatchUpdateSearchReplacePlugin.php:50 #: app/Theme/AbstractTheme.php:1717 @@ -12960,13 +12972,25 @@ msgstr "" #: app/Module/LoginBlockModule.php:29 app/Module/LoginBlockModule.php:68 #: app/Module/LoginBlockModule.php:83 app/Theme/AbstractTheme.php:1557 #: login.php:150 login.php:199 +msgid "sign in" +msgstr "prijava" +#, fuzzy + +#: app/Module/LoginBlockModule.php:61 app/Module/LoginBlockModule.php:64 +#: app/Theme/AbstractTheme.php:1568 +msgid "sign out" +msgstr "odjava" +#, fuzzy + msgid "Sign in" msgstr "Prijava" +#, fuzzy #: app/Module/LoginBlockModule.php:61 app/Module/LoginBlockModule.php:64 #: app/Theme/AbstractTheme.php:1568 msgid "Sign out" msgstr "Odjava" +#, fuzzy #. I18N: A configuration setting #: admin_site_config.php:447 diff --git a/language/hu.po b/language/hu.po index c64a4f91fb..036fbd2561 100644 --- a/language/hu.po +++ b/language/hu.po @@ -1264,6 +1264,10 @@ msgstr "Ádár séni" msgid "Add" msgstr "Felvétel" +msgid "add" +msgstr "felvétel" +#, fuzzy + #: app/Module/ClippingsCartModule.php:724 #, php-format msgid "Add %s to the clippings cart" @@ -11639,6 +11643,10 @@ msgstr "A családfa átszámozása" #. I18N: A button label #: search.php:217 +msgid "replace" +msgstr "csere" +#, fuzzy + msgid "Replace" msgstr "Csere" @@ -11999,6 +12007,10 @@ msgstr "Érvénytelenített pecsételés (válás)" msgid "Search" msgstr "Keresés" +msgid "search" +msgstr "keresés" +#, fuzzy + #: app/Controller/SearchController.php:202 #: app/Module/BatchUpdate/BatchUpdateSearchReplacePlugin.php:50 #: app/Theme/AbstractTheme.php:1717 @@ -12929,13 +12941,25 @@ msgstr "Sierra Leone" #: app/Module/LoginBlockModule.php:29 app/Module/LoginBlockModule.php:68 #: app/Module/LoginBlockModule.php:83 app/Theme/AbstractTheme.php:1557 #: login.php:150 login.php:199 +msgid "sign in" +msgstr "bejelentkezés" +#, fuzzy + +#: app/Module/LoginBlockModule.php:61 app/Module/LoginBlockModule.php:64 +#: app/Theme/AbstractTheme.php:1568 +msgid "sign out" +msgstr "kijelentkezés" +#, fuzzy + msgid "Sign in" msgstr "Bejelentkezés" +#, fuzzy #: app/Module/LoginBlockModule.php:61 app/Module/LoginBlockModule.php:64 #: app/Theme/AbstractTheme.php:1568 msgid "Sign out" msgstr "Kijelentkezés" +#, fuzzy #. I18N: A configuration setting #: admin_site_config.php:447 diff --git a/language/id.po b/language/id.po index d909466244..17f1caebbe 100644 --- a/language/id.po +++ b/language/id.po @@ -1236,6 +1236,10 @@ msgstr "" msgid "Add" msgstr "Tambahkan" +msgid "add" +msgstr "tambahkan" +#, fuzzy + #: app/Module/ClippingsCartModule.php:724 #, php-format msgid "Add %s to the clippings cart" @@ -11966,6 +11970,10 @@ msgstr "" msgid "Search" msgstr "Cari" +msgid "search" +msgstr "cari" +#, fuzzy + #: app/Controller/SearchController.php:202 #: app/Module/BatchUpdate/BatchUpdateSearchReplacePlugin.php:50 #: app/Theme/AbstractTheme.php:1717 @@ -12896,13 +12904,25 @@ msgstr "" #: app/Module/LoginBlockModule.php:29 app/Module/LoginBlockModule.php:68 #: app/Module/LoginBlockModule.php:83 app/Theme/AbstractTheme.php:1557 #: login.php:150 login.php:199 +msgid "sign in" +msgstr "masuk" +#, fuzzy + +#: app/Module/LoginBlockModule.php:61 app/Module/LoginBlockModule.php:64 +#: app/Theme/AbstractTheme.php:1568 +msgid "sign out" +msgstr "keluar" +#, fuzzy + msgid "Sign in" msgstr "Masuk" +#, fuzzy #: app/Module/LoginBlockModule.php:61 app/Module/LoginBlockModule.php:64 #: app/Theme/AbstractTheme.php:1568 msgid "Sign out" msgstr "Keluar" +#, fuzzy #. I18N: A configuration setting #: admin_site_config.php:447 diff --git a/language/is.po b/language/is.po index 7ce6a379c7..40ba11bd83 100644 --- a/language/is.po +++ b/language/is.po @@ -1259,6 +1259,10 @@ msgstr "Adar II" msgid "Add" msgstr "Bæta við" +msgid "add" +msgstr "bæta við" +#, fuzzy + #: app/Module/ClippingsCartModule.php:724 #, php-format msgid "Add %s to the clippings cart" @@ -11970,6 +11974,10 @@ msgstr "Staðfestingu aflétt (skilnaður)" msgid "Search" msgstr "Leita" +msgid "search" +msgstr "leita" +#, fuzzy + #: app/Controller/SearchController.php:202 #: app/Module/BatchUpdate/BatchUpdateSearchReplacePlugin.php:50 #: app/Theme/AbstractTheme.php:1717 @@ -12900,13 +12908,25 @@ msgstr "Síerra Leóne" #: app/Module/LoginBlockModule.php:29 app/Module/LoginBlockModule.php:68 #: app/Module/LoginBlockModule.php:83 app/Theme/AbstractTheme.php:1557 #: login.php:150 login.php:199 +msgid "sign in" +msgstr "innskráning" +#, fuzzy + +#: app/Module/LoginBlockModule.php:61 app/Module/LoginBlockModule.php:64 +#: app/Theme/AbstractTheme.php:1568 +msgid "sign out" +msgstr "útskráning" +#, fuzzy + msgid "Sign in" msgstr "Innskráning" +#, fuzzy #: app/Module/LoginBlockModule.php:61 app/Module/LoginBlockModule.php:64 #: app/Theme/AbstractTheme.php:1568 msgid "Sign out" msgstr "Útskráning" +#, fuzzy #. I18N: A configuration setting #: admin_site_config.php:447 diff --git a/language/it.po b/language/it.po index 3039c32424..b6bc8a7f31 100644 --- a/language/it.po +++ b/language/it.po @@ -1265,6 +1265,10 @@ msgstr "Adar II" msgid "Add" msgstr "Aggiungi" +msgid "add" +msgstr "aggiungi" +#, fuzzy + #: app/Module/ClippingsCartModule.php:724 #, php-format msgid "Add %s to the clippings cart" @@ -11973,8 +11977,9 @@ msgstr "Sigillatura annullata (divorzio)" #: modules_v3/GEDFact_assistant/MEDIA_ctrl.php:89 #: modules_v3/GEDFact_assistant/census/census-edit.php:104 search.php:143 #: search.php:185 search.php:300 search_advanced.php:288 -msgid "Search" -msgstr "Cerca" +msgid "search" +msgstr "cerca" +#, fuzzy #: app/Controller/SearchController.php:202 #: app/Module/BatchUpdate/BatchUpdateSearchReplacePlugin.php:50 @@ -12906,13 +12911,25 @@ msgstr "Sierra Leone" #: app/Module/LoginBlockModule.php:29 app/Module/LoginBlockModule.php:68 #: app/Module/LoginBlockModule.php:83 app/Theme/AbstractTheme.php:1557 #: login.php:150 login.php:199 +msgid "sign in" +msgstr "accedi" +#, fuzzy + +#: app/Module/LoginBlockModule.php:61 app/Module/LoginBlockModule.php:64 +#: app/Theme/AbstractTheme.php:1568 +msgid "sign out" +msgstr "esci" +#, fuzzy + msgid "Sign in" msgstr "Accedi" +#, fuzzy #: app/Module/LoginBlockModule.php:61 app/Module/LoginBlockModule.php:64 #: app/Theme/AbstractTheme.php:1568 msgid "Sign out" msgstr "Esci" +#, fuzzy #. I18N: A configuration setting #: admin_site_config.php:447 diff --git a/language/ja.po b/language/ja.po index 76802a156b..6c3197c2e6 100644 --- a/language/ja.po +++ b/language/ja.po @@ -1231,6 +1231,10 @@ msgstr "" msgid "Add" msgstr "追加" +msgid "add" +msgstr "追加" +#, fuzzy + #: app/Module/ClippingsCartModule.php:724 #, php-format msgid "Add %s to the clippings cart" @@ -11937,6 +11941,9 @@ msgstr "" msgid "Search" msgstr "検索" +msgid "search" +msgstr "検索" + #: app/Controller/SearchController.php:202 #: app/Module/BatchUpdate/BatchUpdateSearchReplacePlugin.php:50 #: app/Theme/AbstractTheme.php:1717 @@ -12867,6 +12874,14 @@ msgstr "" #: app/Module/LoginBlockModule.php:29 app/Module/LoginBlockModule.php:68 #: app/Module/LoginBlockModule.php:83 app/Theme/AbstractTheme.php:1557 #: login.php:150 login.php:199 +msgid "sign in" +msgstr "ログイン" + +#: app/Module/LoginBlockModule.php:61 app/Module/LoginBlockModule.php:64 +#: app/Theme/AbstractTheme.php:1568 +msgid "sign out" +msgstr "ログアウト" + msgid "Sign in" msgstr "ログイン" diff --git a/language/ka.po b/language/ka.po index ee54d681f6..faaf9872ed 100644 --- a/language/ka.po +++ b/language/ka.po @@ -1231,6 +1231,10 @@ msgstr "" msgid "Add" msgstr "დამატება" +msgid "add" +msgstr "დამატება" +#, fuzzy + #: app/Module/ClippingsCartModule.php:724 #, php-format msgid "Add %s to the clippings cart" @@ -11938,6 +11942,10 @@ msgstr "" msgid "Search" msgstr "ძიება" +msgid "search" +msgstr "ძიება" +#, fuzzy + #: app/Controller/SearchController.php:202 #: app/Module/BatchUpdate/BatchUpdateSearchReplacePlugin.php:50 #: app/Theme/AbstractTheme.php:1717 @@ -12868,13 +12876,25 @@ msgstr "სიერა-ლეონე" #: app/Module/LoginBlockModule.php:29 app/Module/LoginBlockModule.php:68 #: app/Module/LoginBlockModule.php:83 app/Theme/AbstractTheme.php:1557 #: login.php:150 login.php:199 +msgid "sign in" +msgstr "ავტორიზაცია" +#, fuzzy + +#: app/Module/LoginBlockModule.php:61 app/Module/LoginBlockModule.php:64 +#: app/Theme/AbstractTheme.php:1568 +msgid "sign out" +msgstr "გასვლა" +#, fuzzy + msgid "Sign in" msgstr "ავტორიზაცია" +#, fuzzy #: app/Module/LoginBlockModule.php:61 app/Module/LoginBlockModule.php:64 #: app/Theme/AbstractTheme.php:1568 msgid "Sign out" msgstr "გასვლა" +#, fuzzy #. I18N: A configuration setting #: admin_site_config.php:447 diff --git a/language/ko.po b/language/ko.po index fec0e35431..ef23a6a001 100644 --- a/language/ko.po +++ b/language/ko.po @@ -11937,6 +11937,9 @@ msgstr "" msgid "Search" msgstr "" +msgid "search" +msgstr "" + #: app/Controller/SearchController.php:202 #: app/Module/BatchUpdate/BatchUpdateSearchReplacePlugin.php:50 #: app/Theme/AbstractTheme.php:1717 @@ -12867,6 +12870,14 @@ msgstr "" #: app/Module/LoginBlockModule.php:29 app/Module/LoginBlockModule.php:68 #: app/Module/LoginBlockModule.php:83 app/Theme/AbstractTheme.php:1557 #: login.php:150 login.php:199 +msgid "sign in" +msgstr "로그인" + +#: app/Module/LoginBlockModule.php:61 app/Module/LoginBlockModule.php:64 +#: app/Theme/AbstractTheme.php:1568 +msgid "sign out" +msgstr "로그아웃" + msgid "Sign in" msgstr "로그인" diff --git a/language/lt.po b/language/lt.po index dd87afd094..a22d979d73 100644 --- a/language/lt.po +++ b/language/lt.po @@ -1291,6 +1291,10 @@ msgstr "Adar II" msgid "Add" msgstr "Pridėti" +msgid "add" +msgstr "pridėti" +#, fuzzy + #: app/Module/ClippingsCartModule.php:724 #, php-format msgid "Add %s to the clippings cart" @@ -11670,6 +11674,10 @@ msgstr "Pernumeruoti šeimos medį" #. I18N: A button label #: search.php:217 +msgid "replace" +msgstr "pakeisti" +#, fuzzy + msgid "Replace" msgstr "Pakeisti" @@ -12030,6 +12038,10 @@ msgstr "Mormonų skirybos" msgid "Search" msgstr "Ieškoti" +msgid "search" +msgstr "ieškoti" +#, fuzzy + #: app/Controller/SearchController.php:202 #: app/Module/BatchUpdate/BatchUpdateSearchReplacePlugin.php:50 #: app/Theme/AbstractTheme.php:1717 @@ -12960,13 +12972,25 @@ msgstr "Siera Leonė" #: app/Module/LoginBlockModule.php:29 app/Module/LoginBlockModule.php:68 #: app/Module/LoginBlockModule.php:83 app/Theme/AbstractTheme.php:1557 #: login.php:150 login.php:199 +msgid "sign in" +msgstr "prisijungti" +#, fuzzy + +#: app/Module/LoginBlockModule.php:61 app/Module/LoginBlockModule.php:64 +#: app/Theme/AbstractTheme.php:1568 +msgid "sign out" +msgstr "atsijungti" +#, fuzzy + msgid "Sign in" msgstr "Prisijungti" +#, fuzzy #: app/Module/LoginBlockModule.php:61 app/Module/LoginBlockModule.php:64 #: app/Theme/AbstractTheme.php:1568 msgid "Sign out" msgstr "Atsijungti" +#, fuzzy #. I18N: A configuration setting #: admin_site_config.php:447 diff --git a/language/lv.po b/language/lv.po index 6504996fbb..89489f573a 100644 --- a/language/lv.po +++ b/language/lv.po @@ -1285,6 +1285,10 @@ msgstr "" msgid "Add" msgstr "Pievienot" +msgid "add" +msgstr "pievienot" +#, fuzzy + #: app/Module/ClippingsCartModule.php:724 #, php-format msgid "Add %s to the clippings cart" @@ -11999,6 +12003,10 @@ msgstr "" msgid "Search" msgstr "Meklēt" +msgid "search" +msgstr "meklēt" +#, fuzzy + #: app/Controller/SearchController.php:202 #: app/Module/BatchUpdate/BatchUpdateSearchReplacePlugin.php:50 #: app/Theme/AbstractTheme.php:1717 @@ -12929,13 +12937,25 @@ msgstr "" #: app/Module/LoginBlockModule.php:29 app/Module/LoginBlockModule.php:68 #: app/Module/LoginBlockModule.php:83 app/Theme/AbstractTheme.php:1557 #: login.php:150 login.php:199 +msgid "sign in" +msgstr "pieslēgties" +#, fuzzy + +#: app/Module/LoginBlockModule.php:61 app/Module/LoginBlockModule.php:64 +#: app/Theme/AbstractTheme.php:1568 +msgid "sign out" +msgstr "atslēgties" +#, fuzzy + msgid "Sign in" msgstr "Pieslēgties" +#, fuzzy #: app/Module/LoginBlockModule.php:61 app/Module/LoginBlockModule.php:64 #: app/Theme/AbstractTheme.php:1568 msgid "Sign out" msgstr "Atslēgties" +#, fuzzy #. I18N: A configuration setting #: admin_site_config.php:447 diff --git a/language/mi.po b/language/mi.po index d7d894df89..11f69fa61b 100644 --- a/language/mi.po +++ b/language/mi.po @@ -12897,13 +12897,25 @@ msgstr "" #: app/Module/LoginBlockModule.php:29 app/Module/LoginBlockModule.php:68 #: app/Module/LoginBlockModule.php:83 app/Theme/AbstractTheme.php:1557 #: login.php:150 login.php:199 +msgid "sign in" +msgstr "takiuru" +#, fuzzy + +#: app/Module/LoginBlockModule.php:61 app/Module/LoginBlockModule.php:64 +#: app/Theme/AbstractTheme.php:1568 +msgid "sign out" +msgstr "takiputa" +#, fuzzy + msgid "Sign in" msgstr "Takiuru" +#, fuzzy #: app/Module/LoginBlockModule.php:61 app/Module/LoginBlockModule.php:64 #: app/Theme/AbstractTheme.php:1568 msgid "Sign out" msgstr "Takiputa" +#, fuzzy #. I18N: A configuration setting #: admin_site_config.php:447 diff --git a/language/mr.po b/language/mr.po index 0a9d7be672..01475adf9b 100644 --- a/language/mr.po +++ b/language/mr.po @@ -1259,6 +1259,10 @@ msgstr "" msgid "Add" msgstr "समाविष्ट करा" +msgid "add" +msgstr "समाविष्ट करा" +#, fuzzy + #: app/Module/ClippingsCartModule.php:724 #, php-format msgid "Add %s to the clippings cart" @@ -11970,6 +11974,9 @@ msgstr "" msgid "Search" msgstr "शोधा" +msgid "search" +msgstr "शोधा" + #: app/Controller/SearchController.php:202 #: app/Module/BatchUpdate/BatchUpdateSearchReplacePlugin.php:50 #: app/Theme/AbstractTheme.php:1717 @@ -12900,6 +12907,14 @@ msgstr "सीएर्रा लेओन" #: app/Module/LoginBlockModule.php:29 app/Module/LoginBlockModule.php:68 #: app/Module/LoginBlockModule.php:83 app/Theme/AbstractTheme.php:1557 #: login.php:150 login.php:199 +msgid "sign in" +msgstr "लॉग इन करा" + +#: app/Module/LoginBlockModule.php:61 app/Module/LoginBlockModule.php:64 +#: app/Theme/AbstractTheme.php:1568 +msgid "sign out" +msgstr "लॉगआउट" + msgid "Sign in" msgstr "लॉग इन करा" diff --git a/language/ms.po b/language/ms.po index 30aefadf0a..e55ae50ca9 100644 --- a/language/ms.po +++ b/language/ms.po @@ -1234,6 +1234,10 @@ msgstr "" msgid "Add" msgstr "Tambah" +msgid "add" +msgstr "tambah" +#, fuzzy + #: app/Module/ClippingsCartModule.php:724 #, php-format msgid "Add %s to the clippings cart" @@ -12874,13 +12878,25 @@ msgstr "" #: app/Module/LoginBlockModule.php:29 app/Module/LoginBlockModule.php:68 #: app/Module/LoginBlockModule.php:83 app/Theme/AbstractTheme.php:1557 #: login.php:150 login.php:199 +msgid "sign in" +msgstr "log masuk" +#, fuzzy + +#: app/Module/LoginBlockModule.php:61 app/Module/LoginBlockModule.php:64 +#: app/Theme/AbstractTheme.php:1568 +msgid "sign out" +msgstr "log keluar" +#, fuzzy + msgid "Sign in" -msgstr "Log Masuk" +msgstr "Log masuk" +#, fuzzy #: app/Module/LoginBlockModule.php:61 app/Module/LoginBlockModule.php:64 #: app/Theme/AbstractTheme.php:1568 msgid "Sign out" -msgstr "Log Keluar" +msgstr "Log keluar" +#, fuzzy #. I18N: A configuration setting #: admin_site_config.php:447 diff --git a/language/nb.po b/language/nb.po index d3665d16d0..5a248d3004 100644 --- a/language/nb.po +++ b/language/nb.po @@ -1259,6 +1259,10 @@ msgstr "Adar II" msgid "Add" msgstr "Legg til" +msgid "add" +msgstr "legg til" +#, fuzzy + #: app/Module/ClippingsCartModule.php:724 #, php-format msgid "Add %s to the clippings cart" @@ -11634,6 +11638,10 @@ msgstr "Gi postene i slektstreet nye referansenumre" #. I18N: A button label #: search.php:217 +msgid "replace" +msgstr "erstatt" +#, fuzzy + msgid "Replace" msgstr "Erstatt" @@ -11994,6 +12002,10 @@ msgstr "Besegling annullert (skilsmisse)" msgid "Search" msgstr "Søk" +msgid "search" +msgstr "søk" +#, fuzzy + #: app/Controller/SearchController.php:202 #: app/Module/BatchUpdate/BatchUpdateSearchReplacePlugin.php:50 #: app/Theme/AbstractTheme.php:1717 @@ -12924,13 +12936,25 @@ msgstr "Sierra Leone" #: app/Module/LoginBlockModule.php:29 app/Module/LoginBlockModule.php:68 #: app/Module/LoginBlockModule.php:83 app/Theme/AbstractTheme.php:1557 #: login.php:150 login.php:199 +msgid "sign in" +msgstr "logg inn" +#, fuzzy + +#: app/Module/LoginBlockModule.php:61 app/Module/LoginBlockModule.php:64 +#: app/Theme/AbstractTheme.php:1568 +msgid "sign out" +msgstr "logg ut" +#, fuzzy + msgid "Sign in" msgstr "Logg inn" +#, fuzzy #: app/Module/LoginBlockModule.php:61 app/Module/LoginBlockModule.php:64 #: app/Theme/AbstractTheme.php:1568 msgid "Sign out" msgstr "Logg ut" +#, fuzzy #. I18N: A configuration setting #: admin_site_config.php:447 diff --git a/language/ne.po b/language/ne.po index 0b5dd9117f..192397b262 100644 --- a/language/ne.po +++ b/language/ne.po @@ -1259,6 +1259,10 @@ msgstr "" msgid "Add" msgstr "थप्नुहोस्" +msgid "add" +msgstr "थप्नुहोस्" +#, fuzzy + #: app/Module/ClippingsCartModule.php:724 #, php-format msgid "Add %s to the clippings cart" @@ -11969,6 +11973,9 @@ msgstr "" msgid "Search" msgstr "खोज्नुहोस्" +msgid "search" +msgstr "खोज्नुहोस्" + #: app/Controller/SearchController.php:202 #: app/Module/BatchUpdate/BatchUpdateSearchReplacePlugin.php:50 #: app/Theme/AbstractTheme.php:1717 @@ -12899,6 +12906,14 @@ msgstr "सिरिया लिवन" #: app/Module/LoginBlockModule.php:29 app/Module/LoginBlockModule.php:68 #: app/Module/LoginBlockModule.php:83 app/Theme/AbstractTheme.php:1557 #: login.php:150 login.php:199 +msgid "sign in" +msgstr "लगईन" + +#: app/Module/LoginBlockModule.php:61 app/Module/LoginBlockModule.php:64 +#: app/Theme/AbstractTheme.php:1568 +msgid "sign out" +msgstr "लगआउट" + msgid "Sign in" msgstr "लगईन" diff --git a/language/nl.po b/language/nl.po index 2ec820bbfc..6804def439 100644 --- a/language/nl.po +++ b/language/nl.po @@ -1263,6 +1263,10 @@ msgstr "Adar II" msgid "Add" msgstr "Toevoegen" +msgid "add" +msgstr "toevoegen" +#, fuzzy + #: app/Module/ClippingsCartModule.php:724 #, php-format msgid "Add %s to the clippings cart" @@ -11641,6 +11645,10 @@ msgstr "Stamboom hernummeren" msgid "Replace" msgstr "Vervang" +msgid "replace" +msgstr "vervang" +#, fuzzy + #: admin_trees_places.php:104 search.php:162 msgid "Replace with" msgstr "Vervang door" @@ -11998,6 +12006,10 @@ msgstr "Verzegeling afgezegd (echtscheiding)" msgid "Search" msgstr "Zoek" +msgid "search" +msgstr "zoek" +#, fuzzy + #: app/Controller/SearchController.php:202 #: app/Module/BatchUpdate/BatchUpdateSearchReplacePlugin.php:50 #: app/Theme/AbstractTheme.php:1717 @@ -12928,13 +12940,25 @@ msgstr "Sierra Leone" #: app/Module/LoginBlockModule.php:29 app/Module/LoginBlockModule.php:68 #: app/Module/LoginBlockModule.php:83 app/Theme/AbstractTheme.php:1557 #: login.php:150 login.php:199 +msgid "sign in" +msgstr "aanmelden" +#, fuzzy + +#: app/Module/LoginBlockModule.php:61 app/Module/LoginBlockModule.php:64 +#: app/Theme/AbstractTheme.php:1568 +msgid "sign out" +msgstr "afmelden" +#, fuzzy + msgid "Sign in" msgstr "Aanmelden" +#, fuzzy #: app/Module/LoginBlockModule.php:61 app/Module/LoginBlockModule.php:64 #: app/Theme/AbstractTheme.php:1568 msgid "Sign out" msgstr "Afmelden" +#, fuzzy #. I18N: A configuration setting #: admin_site_config.php:447 diff --git a/language/nn.po b/language/nn.po index f9602e47e1..b6ec475544 100644 --- a/language/nn.po +++ b/language/nn.po @@ -1263,6 +1263,10 @@ msgstr "Adar II" msgid "Add" msgstr "Legg til" +msgid "add" +msgstr "legg til" +#, fuzzy + #: app/Module/ClippingsCartModule.php:724 #, php-format msgid "Add %s to the clippings cart" @@ -11638,6 +11642,10 @@ msgstr "Gi postane i slektstreet nye referansenummer" #. I18N: A button label #: search.php:217 +msgid "replace" +msgstr "erstatt" +#, fuzzy + msgid "Replace" msgstr "Erstatt" @@ -11998,6 +12006,10 @@ msgstr "Besegling annullert (skilsmisse)" msgid "Search" msgstr "Søk" +msgid "search" +msgstr "søk" +#, fuzzy + #: app/Controller/SearchController.php:202 #: app/Module/BatchUpdate/BatchUpdateSearchReplacePlugin.php:50 #: app/Theme/AbstractTheme.php:1717 @@ -12928,13 +12940,25 @@ msgstr "Sierra Leone" #: app/Module/LoginBlockModule.php:29 app/Module/LoginBlockModule.php:68 #: app/Module/LoginBlockModule.php:83 app/Theme/AbstractTheme.php:1557 #: login.php:150 login.php:199 +msgid "sign in" +msgstr "logg inn" +#, fuzzy + +#: app/Module/LoginBlockModule.php:61 app/Module/LoginBlockModule.php:64 +#: app/Theme/AbstractTheme.php:1568 +msgid "sign out" +msgstr "logg ut" +#, fuzzy + msgid "Sign in" msgstr "Logg inn" +#, fuzzy #: app/Module/LoginBlockModule.php:61 app/Module/LoginBlockModule.php:64 #: app/Theme/AbstractTheme.php:1568 msgid "Sign out" msgstr "Logg ut" +#, fuzzy #. I18N: A configuration setting #: admin_site_config.php:447 diff --git a/language/oc.po b/language/oc.po index a0bfbdea1c..b896065d22 100644 --- a/language/oc.po +++ b/language/oc.po @@ -1274,6 +1274,10 @@ msgstr "Adar II" msgid "Add" msgstr "Apondre" +msgid "add" +msgstr "apondre" +#, fuzzy + #: app/Module/ClippingsCartModule.php:724 #, php-format msgid "Add %s to the clippings cart" @@ -11781,6 +11785,10 @@ msgstr "Renumerotar l'arbre genealogic" #. I18N: A button label #: search.php:217 +msgid "replace" +msgstr "remplaçar" +#, fuzzy + msgid "Replace" msgstr "Remplaçar" @@ -12153,6 +12161,10 @@ msgstr "" msgid "Search" msgstr "Recercar" +msgid "search" +msgstr "recercar" +#, fuzzy + #: app/Controller/SearchController.php:202 #: app/Module/BatchUpdate/BatchUpdateSearchReplacePlugin.php:50 #: app/Theme/AbstractTheme.php:1717 @@ -13100,13 +13112,25 @@ msgstr "" #: app/Module/LoginBlockModule.php:29 app/Module/LoginBlockModule.php:68 #: app/Module/LoginBlockModule.php:83 app/Theme/AbstractTheme.php:1557 #: login.php:150 login.php:199 +msgid "sign in" +msgstr "connexion" +#, fuzzy + +#: app/Module/LoginBlockModule.php:61 app/Module/LoginBlockModule.php:64 +#: app/Theme/AbstractTheme.php:1568 +msgid "sign out" +msgstr "desconnexion" +#, fuzzy + msgid "Sign in" -msgstr "" +msgstr "Connexion" +#, fuzzy #: app/Module/LoginBlockModule.php:61 app/Module/LoginBlockModule.php:64 #: app/Theme/AbstractTheme.php:1568 msgid "Sign out" -msgstr "desconnexion" +msgstr "Desconnexion" +#, fuzzy #. I18N: A configuration setting #: admin_site_config.php:447 diff --git a/language/pl.po b/language/pl.po index e64b2cae59..eaf9cb2a0e 100644 --- a/language/pl.po +++ b/language/pl.po @@ -1292,6 +1292,10 @@ msgstr "adar II" msgid "Add" msgstr "Dodaj" +msgid "add" +msgstr "dodaj" +#, fuzzy + #: app/Module/ClippingsCartModule.php:724 #, php-format msgid "Add %s to the clippings cart" @@ -11671,6 +11675,10 @@ msgstr "Zmienić numerację drzewa genealogicznego" #. I18N: A button label #: search.php:217 +msgid "replace" +msgstr "zamień" +#, fuzzy + msgid "Replace" msgstr "Zamień" @@ -12031,6 +12039,10 @@ msgstr "Naznaczenie anulowane (rozwód)" msgid "Search" msgstr "Szukaj" +msgid "search" +msgstr "szukaj" +#, fuzzy + #: app/Controller/SearchController.php:202 #: app/Module/BatchUpdate/BatchUpdateSearchReplacePlugin.php:50 #: app/Theme/AbstractTheme.php:1717 @@ -12961,13 +12973,25 @@ msgstr "Sierra Leone" #: app/Module/LoginBlockModule.php:29 app/Module/LoginBlockModule.php:68 #: app/Module/LoginBlockModule.php:83 app/Theme/AbstractTheme.php:1557 #: login.php:150 login.php:199 +msgid "sign in" +msgstr "logowanie" +#, fuzzy + +#: app/Module/LoginBlockModule.php:61 app/Module/LoginBlockModule.php:64 +#: app/Theme/AbstractTheme.php:1568 +msgid "sign out" +msgstr "wyloguj" +#, fuzzy + msgid "Sign in" msgstr "Logowanie" +#, fuzzy #: app/Module/LoginBlockModule.php:61 app/Module/LoginBlockModule.php:64 #: app/Theme/AbstractTheme.php:1568 msgid "Sign out" msgstr "Wyloguj" +#, fuzzy #. I18N: A configuration setting #: admin_site_config.php:447 diff --git a/language/pt-BR.po b/language/pt-BR.po index a8cfc0f5f7..34cdaf0053 100644 --- a/language/pt-BR.po +++ b/language/pt-BR.po @@ -1263,6 +1263,10 @@ msgstr "Adar II" msgid "Add" msgstr "Adicionar" +msgid "add" +msgstr "adicionar" +#, fuzzy + #: app/Module/ClippingsCartModule.php:724 #, php-format msgid "Add %s to the clippings cart" @@ -11614,6 +11618,10 @@ msgstr "Renumerar árvore genealógica" #. I18N: A button label #: search.php:217 +msgid "replace" +msgstr "substituir" +#, fuzzy + msgid "Replace" msgstr "Substituir" @@ -11974,6 +11982,10 @@ msgstr "Selamento cancelado (divórcio)" msgid "Search" msgstr "Pesquisar" +msgid "search" +msgstr "pesquisar" +#, fuzzy + #: app/Controller/SearchController.php:202 #: app/Module/BatchUpdate/BatchUpdateSearchReplacePlugin.php:50 #: app/Theme/AbstractTheme.php:1717 @@ -12904,13 +12916,25 @@ msgstr "Serra-Leoa" #: app/Module/LoginBlockModule.php:29 app/Module/LoginBlockModule.php:68 #: app/Module/LoginBlockModule.php:83 app/Theme/AbstractTheme.php:1557 #: login.php:150 login.php:199 +msgid "sign in" +msgstr "conectar" +#, fuzzy + +#: app/Module/LoginBlockModule.php:61 app/Module/LoginBlockModule.php:64 +#: app/Theme/AbstractTheme.php:1568 +msgid "sign out" +msgstr "desconectar" +#, fuzzy + msgid "Sign in" msgstr "Conectar" +#, fuzzy #: app/Module/LoginBlockModule.php:61 app/Module/LoginBlockModule.php:64 #: app/Theme/AbstractTheme.php:1568 msgid "Sign out" msgstr "Desconectar" +#, fuzzy #. I18N: A configuration setting #: admin_site_config.php:447 diff --git a/language/pt.po b/language/pt.po index 58c7a82f2f..ca614aeb0b 100644 --- a/language/pt.po +++ b/language/pt.po @@ -1264,6 +1264,10 @@ msgstr "Adar II" msgid "Add" msgstr "Adicionar" +msgid "add" +msgstr "adicionar" +#, fuzzy + #: app/Module/ClippingsCartModule.php:724 #, php-format msgid "Add %s to the clippings cart" @@ -11975,6 +11979,10 @@ msgstr "Selamento cancelado (divórcio)" msgid "Search" msgstr "Pesquisar" +msgid "search" +msgstr "pesquisar" +#, fuzzy + #: app/Controller/SearchController.php:202 #: app/Module/BatchUpdate/BatchUpdateSearchReplacePlugin.php:50 #: app/Theme/AbstractTheme.php:1717 @@ -12905,13 +12913,25 @@ msgstr "Serra-Leoa" #: app/Module/LoginBlockModule.php:29 app/Module/LoginBlockModule.php:68 #: app/Module/LoginBlockModule.php:83 app/Theme/AbstractTheme.php:1557 #: login.php:150 login.php:199 +msgid "sign in" +msgstr "conectar" +#, fuzzy + +#: app/Module/LoginBlockModule.php:61 app/Module/LoginBlockModule.php:64 +#: app/Theme/AbstractTheme.php:1568 +msgid "sign out" +msgstr "desconectar" +#, fuzzy + msgid "Sign in" msgstr "Conectar" +#, fuzzy #: app/Module/LoginBlockModule.php:61 app/Module/LoginBlockModule.php:64 #: app/Theme/AbstractTheme.php:1568 msgid "Sign out" msgstr "Desconectar" +#, fuzzy #. I18N: A configuration setting #: admin_site_config.php:447 diff --git a/language/ro.po b/language/ro.po index 0adad81d72..e37aee8a81 100644 --- a/language/ro.po +++ b/language/ro.po @@ -1288,6 +1288,10 @@ msgstr "" msgid "Add" msgstr "Adaugă" +msgid "add" +msgstr "adaugă" +#, fuzzy + #: app/Module/ClippingsCartModule.php:724 #, php-format msgid "Add %s to the clippings cart" @@ -12003,6 +12007,10 @@ msgstr "" msgid "Search" msgstr "Caută" +msgid "search" +msgstr "caută" +#, fuzzy + #: app/Controller/SearchController.php:202 #: app/Module/BatchUpdate/BatchUpdateSearchReplacePlugin.php:50 #: app/Theme/AbstractTheme.php:1717 @@ -12933,13 +12941,25 @@ msgstr "" #: app/Module/LoginBlockModule.php:29 app/Module/LoginBlockModule.php:68 #: app/Module/LoginBlockModule.php:83 app/Theme/AbstractTheme.php:1557 #: login.php:150 login.php:199 +msgid "sign in" +msgstr "autentificare" +#, fuzzy + +#: app/Module/LoginBlockModule.php:61 app/Module/LoginBlockModule.php:64 +#: app/Theme/AbstractTheme.php:1568 +msgid "sign out" +msgstr "deconectare" +#, fuzzy + msgid "Sign in" msgstr "Autentificare" +#, fuzzy #: app/Module/LoginBlockModule.php:61 app/Module/LoginBlockModule.php:64 #: app/Theme/AbstractTheme.php:1568 msgid "Sign out" msgstr "Deconectare" +#, fuzzy #. I18N: A configuration setting #: admin_site_config.php:447 diff --git a/language/ru.po b/language/ru.po index df667bdd7d..cbbc593d5d 100644 --- a/language/ru.po +++ b/language/ru.po @@ -1296,6 +1296,10 @@ msgstr "адар II" msgid "Add" msgstr "Добавить" +msgid "add" +msgstr "добавить" +#, fuzzy + #: app/Module/ClippingsCartModule.php:724 #, php-format msgid "Add %s to the clippings cart" @@ -11675,6 +11679,10 @@ msgstr "Перенумеровать генеалогическое дерево #. I18N: A button label #: search.php:217 +msgid "replace" +msgstr "заменить" +#, fuzzy + msgid "Replace" msgstr "Заменить" @@ -12035,6 +12043,10 @@ msgstr "Запечатывание отменено - разведены (мор msgid "Search" msgstr "Поиск" +msgid "search" +msgstr "поиск" +#, fuzzy + #: app/Controller/SearchController.php:202 #: app/Module/BatchUpdate/BatchUpdateSearchReplacePlugin.php:50 #: app/Theme/AbstractTheme.php:1717 @@ -12965,13 +12977,25 @@ msgstr "Сьерра-Леоне" #: app/Module/LoginBlockModule.php:29 app/Module/LoginBlockModule.php:68 #: app/Module/LoginBlockModule.php:83 app/Theme/AbstractTheme.php:1557 #: login.php:150 login.php:199 +msgid "sign in" +msgstr "вход" +#, fuzzy + +#: app/Module/LoginBlockModule.php:61 app/Module/LoginBlockModule.php:64 +#: app/Theme/AbstractTheme.php:1568 +msgid "sign out" +msgstr "выход" +#, fuzzy + msgid "Sign in" msgstr "Вход" +#, fuzzy #: app/Module/LoginBlockModule.php:61 app/Module/LoginBlockModule.php:64 #: app/Theme/AbstractTheme.php:1568 msgid "Sign out" msgstr "Выход" +#, fuzzy #. I18N: A configuration setting #: admin_site_config.php:447 diff --git a/language/sk.po b/language/sk.po index 9df133601d..ce5ae5fbaf 100644 --- a/language/sk.po +++ b/language/sk.po @@ -1292,6 +1292,10 @@ msgstr "Adar Sheni" msgid "Add" msgstr "Pridať" +msgid "add" +msgstr "pridať" +#, fuzzy + #: app/Module/ClippingsCartModule.php:724 #, php-format msgid "Add %s to the clippings cart" @@ -11647,6 +11651,10 @@ msgstr "" #. I18N: A button label #: search.php:217 +msgid "replace" +msgstr "nahradiť" +#, fuzzy + msgid "Replace" msgstr "Nahradiť" @@ -12007,6 +12015,10 @@ msgstr "Manželstvo zrušené (rozvod)" msgid "Search" msgstr "Hľadať" +msgid "search" +msgstr "hľadať" +#, fuzzy + #: app/Controller/SearchController.php:202 #: app/Module/BatchUpdate/BatchUpdateSearchReplacePlugin.php:50 #: app/Theme/AbstractTheme.php:1717 @@ -12937,13 +12949,25 @@ msgstr "Sierra Leone" #: app/Module/LoginBlockModule.php:29 app/Module/LoginBlockModule.php:68 #: app/Module/LoginBlockModule.php:83 app/Theme/AbstractTheme.php:1557 #: login.php:150 login.php:199 +msgid "sign in" +msgstr "prihlásiť sa" +#, fuzzy + +#: app/Module/LoginBlockModule.php:61 app/Module/LoginBlockModule.php:64 +#: app/Theme/AbstractTheme.php:1568 +msgid "sign out" +msgstr "odhlásiť sa" +#, fuzzy + msgid "Sign in" msgstr "Prihlásiť sa" +#, fuzzy #: app/Module/LoginBlockModule.php:61 app/Module/LoginBlockModule.php:64 #: app/Theme/AbstractTheme.php:1568 msgid "Sign out" msgstr "Odhlásiť sa" +#, fuzzy #. I18N: A configuration setting #: admin_site_config.php:447 diff --git a/language/sl.po b/language/sl.po index 87fb688c46..94d366006e 100644 --- a/language/sl.po +++ b/language/sl.po @@ -1320,6 +1320,10 @@ msgstr "" msgid "Add" msgstr "Dodaj" +msgid "add" +msgstr "dodaj" +#, fuzzy + #: app/Module/ClippingsCartModule.php:724 #, php-format msgid "Add %s to the clippings cart" @@ -12062,6 +12066,10 @@ msgstr "" msgid "Search" msgstr "Išči" +msgid "search" +msgstr "išči" +#, fuzzy + #: app/Controller/SearchController.php:202 #: app/Module/BatchUpdate/BatchUpdateSearchReplacePlugin.php:50 #: app/Theme/AbstractTheme.php:1717 @@ -12992,13 +13000,25 @@ msgstr "" #: app/Module/LoginBlockModule.php:29 app/Module/LoginBlockModule.php:68 #: app/Module/LoginBlockModule.php:83 app/Theme/AbstractTheme.php:1557 #: login.php:150 login.php:199 +msgid "sign in" +msgstr "prijava" +#, fuzzy + +#: app/Module/LoginBlockModule.php:61 app/Module/LoginBlockModule.php:64 +#: app/Theme/AbstractTheme.php:1568 +msgid "sign out" +msgstr "odjava" +#, fuzzy + msgid "Sign in" msgstr "Prijava" +#, fuzzy #: app/Module/LoginBlockModule.php:61 app/Module/LoginBlockModule.php:64 #: app/Theme/AbstractTheme.php:1568 msgid "Sign out" msgstr "Odjava" +#, fuzzy #. I18N: A configuration setting #: admin_site_config.php:447 diff --git a/language/sq.po b/language/sq.po index ade280ff45..399d2cc7f9 100644 --- a/language/sq.po +++ b/language/sq.po @@ -1259,6 +1259,10 @@ msgstr "Adar II" msgid "Add" msgstr "Shto" +msgid "add" +msgstr "shto" +#, fuzzy + #: app/Module/ClippingsCartModule.php:724 #, php-format msgid "Add %s to the clippings cart" @@ -11634,6 +11638,10 @@ msgstr "Rinumëro trungun familjar" #. I18N: A button label #: search.php:217 +msgid "replace" +msgstr "zëvendëso" +#, fuzzy + msgid "Replace" msgstr "Zëvendëso" @@ -11994,6 +12002,10 @@ msgstr "" msgid "Search" msgstr "Kërko" +msgid "search" +msgstr "kërko" +#, fuzzy + #: app/Controller/SearchController.php:202 #: app/Module/BatchUpdate/BatchUpdateSearchReplacePlugin.php:50 #: app/Theme/AbstractTheme.php:1717 @@ -12924,13 +12936,25 @@ msgstr "" #: app/Module/LoginBlockModule.php:29 app/Module/LoginBlockModule.php:68 #: app/Module/LoginBlockModule.php:83 app/Theme/AbstractTheme.php:1557 #: login.php:150 login.php:199 +msgid "sign in" +msgstr "hyr" +#, fuzzy + +#: app/Module/LoginBlockModule.php:61 app/Module/LoginBlockModule.php:64 +#: app/Theme/AbstractTheme.php:1568 +msgid "sign out" +msgstr "dil" +#, fuzzy + msgid "Sign in" msgstr "Hyr" +#, fuzzy #: app/Module/LoginBlockModule.php:61 app/Module/LoginBlockModule.php:64 #: app/Theme/AbstractTheme.php:1568 msgid "Sign out" msgstr "Dil" +#, fuzzy #. I18N: A configuration setting #: admin_site_config.php:447 diff --git a/language/sr-Latn.po b/language/sr-Latn.po index 41b299cc24..af15ad4bb5 100644 --- a/language/sr-Latn.po +++ b/language/sr-Latn.po @@ -1292,6 +1292,10 @@ msgstr "" msgid "Add" msgstr "Dodaj" +msgid "add" +msgstr "dodaj" +#, fuzzy + #: app/Module/ClippingsCartModule.php:724 #, php-format msgid "Add %s to the clippings cart" @@ -12936,13 +12940,25 @@ msgstr "" #: app/Module/LoginBlockModule.php:29 app/Module/LoginBlockModule.php:68 #: app/Module/LoginBlockModule.php:83 app/Theme/AbstractTheme.php:1557 #: login.php:150 login.php:199 -msgid "Sign in" -msgstr "Prijava" +msgid "sign in" +msgstr "prijava" +#, fuzzy + +#: app/Module/LoginBlockModule.php:61 app/Module/LoginBlockModule.php:64 +#: app/Theme/AbstractTheme.php:1568 +msgid "sign out" +msgstr "odjava" +#, fuzzy + +msgid "sign in" +msgstr "prijava" +#, fuzzy #: app/Module/LoginBlockModule.php:61 app/Module/LoginBlockModule.php:64 #: app/Theme/AbstractTheme.php:1568 msgid "Sign out" msgstr "Odjava" +#, fuzzy #. I18N: A configuration setting #: admin_site_config.php:447 diff --git a/language/sr.po b/language/sr.po index da0c43cccc..133f6de294 100644 --- a/language/sr.po +++ b/language/sr.po @@ -1292,6 +1292,10 @@ msgstr "" msgid "Add" msgstr "Dodaj" +msgid "add" +msgstr "dodaj" +#, fuzzy + #: app/Module/ClippingsCartModule.php:724 #, php-format msgid "Add %s to the clippings cart" @@ -12936,13 +12940,25 @@ msgstr "" #: app/Module/LoginBlockModule.php:29 app/Module/LoginBlockModule.php:68 #: app/Module/LoginBlockModule.php:83 app/Theme/AbstractTheme.php:1557 #: login.php:150 login.php:199 +msgid "sign in" +msgstr "prijava" +#, fuzzy + +#: app/Module/LoginBlockModule.php:61 app/Module/LoginBlockModule.php:64 +#: app/Theme/AbstractTheme.php:1568 +msgid "sign out" +msgstr "odjava" +#, fuzzy + msgid "Sign in" msgstr "Prijava" +#, fuzzy #: app/Module/LoginBlockModule.php:61 app/Module/LoginBlockModule.php:64 #: app/Theme/AbstractTheme.php:1568 msgid "Sign out" msgstr "Odjava" +#, fuzzy #. I18N: A configuration setting #: admin_site_config.php:447 diff --git a/language/sv.po b/language/sv.po index 9d60234bf2..b4a7e21226 100644 --- a/language/sv.po +++ b/language/sv.po @@ -1263,6 +1263,10 @@ msgstr "adar II" msgid "Add" msgstr "Lägg till" +msgid "add" +msgstr "lägg till" +#, fuzzy + #: app/Module/ClippingsCartModule.php:724 #, php-format msgid "Add %s to the clippings cart" @@ -11638,6 +11642,10 @@ msgstr "Numrera om släktträdet" #. I18N: A button label #: search.php:217 +msgid "replace" +msgstr "ersätt" +#, fuzzy + msgid "Replace" msgstr "Ersätt" @@ -11998,6 +12006,10 @@ msgstr "(mormon) Besegling upphävd (skilsmässa)" msgid "Search" msgstr "Sök" +msgid "search" +msgstr "sök" +#, fuzzy + #: app/Controller/SearchController.php:202 #: app/Module/BatchUpdate/BatchUpdateSearchReplacePlugin.php:50 #: app/Theme/AbstractTheme.php:1717 @@ -12928,13 +12940,25 @@ msgstr "Sierra Leone" #: app/Module/LoginBlockModule.php:29 app/Module/LoginBlockModule.php:68 #: app/Module/LoginBlockModule.php:83 app/Theme/AbstractTheme.php:1557 #: login.php:150 login.php:199 +msgid "sign in" +msgstr "logga in" +#, fuzzy + +#: app/Module/LoginBlockModule.php:61 app/Module/LoginBlockModule.php:64 +#: app/Theme/AbstractTheme.php:1568 +msgid "sign out" +msgstr "logga ut" +#, fuzzy + msgid "Sign in" msgstr "Logga in" +#, fuzzy #: app/Module/LoginBlockModule.php:61 app/Module/LoginBlockModule.php:64 #: app/Theme/AbstractTheme.php:1568 msgid "Sign out" msgstr "Logga ut" +#, fuzzy #. I18N: A configuration setting #: admin_site_config.php:447 diff --git a/language/ta.po b/language/ta.po index d8953ffaea..8040c4c1f5 100644 --- a/language/ta.po +++ b/language/ta.po @@ -12897,6 +12897,14 @@ msgstr "" #: app/Module/LoginBlockModule.php:29 app/Module/LoginBlockModule.php:68 #: app/Module/LoginBlockModule.php:83 app/Theme/AbstractTheme.php:1557 #: login.php:150 login.php:199 +msgid "sign in" +msgstr "புகுபதிகை" + +#: app/Module/LoginBlockModule.php:61 app/Module/LoginBlockModule.php:64 +#: app/Theme/AbstractTheme.php:1568 +msgid "sign out" +msgstr "விடுபதிகை" + msgid "Sign in" msgstr "புகுபதிகை" diff --git a/language/tr.po b/language/tr.po index d74b9a5aa3..e209b6a282 100644 --- a/language/tr.po +++ b/language/tr.po @@ -1235,6 +1235,10 @@ msgstr "Adar II" msgid "Add" msgstr "Ekle" +msgid "add" +msgstr "ekle" +#, fuzzy + #: app/Module/ClippingsCartModule.php:724 #, php-format msgid "Add %s to the clippings cart" @@ -11606,6 +11610,10 @@ msgstr "soyağacını yeniden numaralandır" #. I18N: A button label #: search.php:217 +msgid "replace" +msgstr "değiştir" +#, fuzzy + msgid "Replace" msgstr "Değiştir" @@ -11966,6 +11974,10 @@ msgstr "Kapatma iptalı (boşanma)" msgid "Search" msgstr "Ara" +msgid "search" +msgstr "ara" +#, fuzzy + #: app/Controller/SearchController.php:202 #: app/Module/BatchUpdate/BatchUpdateSearchReplacePlugin.php:50 #: app/Theme/AbstractTheme.php:1717 @@ -12896,13 +12908,25 @@ msgstr "Sierra Leone" #: app/Module/LoginBlockModule.php:29 app/Module/LoginBlockModule.php:68 #: app/Module/LoginBlockModule.php:83 app/Theme/AbstractTheme.php:1557 #: login.php:150 login.php:199 +msgid "sign in" +msgstr "giriş" +#, fuzzy + +#: app/Module/LoginBlockModule.php:61 app/Module/LoginBlockModule.php:64 +#: app/Theme/AbstractTheme.php:1568 +msgid "sign out" +msgstr "çıkış" +#, fuzzy + msgid "Sign in" msgstr "Giriş" +#, fuzzy #: app/Module/LoginBlockModule.php:61 app/Module/LoginBlockModule.php:64 #: app/Theme/AbstractTheme.php:1568 msgid "Sign out" msgstr "Çıkış" +#, fuzzy #. I18N: A configuration setting #: admin_site_config.php:447 diff --git a/language/tt.po b/language/tt.po index 11bb562afb..2c0cbd7c82 100644 --- a/language/tt.po +++ b/language/tt.po @@ -1233,6 +1233,10 @@ msgstr "" msgid "Add" msgstr "Өстәргә" +msgid "add" +msgstr "өстәргә" +#, fuzzy + #: app/Module/ClippingsCartModule.php:724 #, php-format msgid "Add %s to the clippings cart" @@ -11966,6 +11970,10 @@ msgstr "" msgid "Search" msgstr "Эзләү" +msgid "search" +msgstr "эзләү" +#, fuzzy + #: app/Controller/SearchController.php:202 #: app/Module/BatchUpdate/BatchUpdateSearchReplacePlugin.php:50 #: app/Theme/AbstractTheme.php:1717 @@ -12896,13 +12904,25 @@ msgstr "" #: app/Module/LoginBlockModule.php:29 app/Module/LoginBlockModule.php:68 #: app/Module/LoginBlockModule.php:83 app/Theme/AbstractTheme.php:1557 #: login.php:150 login.php:199 +msgid "sign in" +msgstr "системага керү блогы" +#, fuzzy + +#: app/Module/LoginBlockModule.php:61 app/Module/LoginBlockModule.php:64 +#: app/Theme/AbstractTheme.php:1568 +msgid "sign out" +msgstr "системадан чыгу" +#, fuzzy + msgid "Sign in" -msgstr "Системага Керү блогы" +msgstr "Системага керү блогы" +#, fuzzy #: app/Module/LoginBlockModule.php:61 app/Module/LoginBlockModule.php:64 #: app/Theme/AbstractTheme.php:1568 msgid "Sign out" msgstr "Системадан чыгу" +#, fuzzy #. I18N: A configuration setting #: admin_site_config.php:447 diff --git a/language/uk.po b/language/uk.po index b49e84e3a3..9cbfde2f37 100644 --- a/language/uk.po +++ b/language/uk.po @@ -1287,6 +1287,10 @@ msgstr "Адар II" msgid "Add" msgstr "Додати" +msgid "add" +msgstr "додати" +#, fuzzy + #: app/Module/ClippingsCartModule.php:724 #, php-format msgid "Add %s to the clippings cart" @@ -11666,6 +11670,10 @@ msgstr "Перенумерувати генеалогічне дерево" #. I18N: A button label #: search.php:217 +msgid "replace" +msgstr "замінити" +#, fuzzy + msgid "Replace" msgstr "Замінити" @@ -12026,6 +12034,10 @@ msgstr "Запечатування скасоване - розведені (мо msgid "Search" msgstr "Пошук" +msgid "search" +msgstr "пошук" +#, fuzzy + #: app/Controller/SearchController.php:202 #: app/Module/BatchUpdate/BatchUpdateSearchReplacePlugin.php:50 #: app/Theme/AbstractTheme.php:1717 @@ -12956,13 +12968,25 @@ msgstr "Сьєрра-Леоне" #: app/Module/LoginBlockModule.php:29 app/Module/LoginBlockModule.php:68 #: app/Module/LoginBlockModule.php:83 app/Theme/AbstractTheme.php:1557 #: login.php:150 login.php:199 +msgid "sign in" +msgstr "вхід в систему" +#, fuzzy + +#: app/Module/LoginBlockModule.php:61 app/Module/LoginBlockModule.php:64 +#: app/Theme/AbstractTheme.php:1568 +msgid "sign out" +msgstr "вихід" +#, fuzzy + msgid "Sign in" msgstr "Вхід в систему" +#, fuzzy #: app/Module/LoginBlockModule.php:61 app/Module/LoginBlockModule.php:64 #: app/Theme/AbstractTheme.php:1568 msgid "Sign out" msgstr "Вихід" +#, fuzzy #. I18N: A configuration setting #: admin_site_config.php:447 diff --git a/language/vi.po b/language/vi.po index f574f444dc..830727647e 100644 --- a/language/vi.po +++ b/language/vi.po @@ -1235,6 +1235,10 @@ msgstr "Adar II" msgid "Add" msgstr "Thêm" +msgid "add" +msgstr "thêm" +#, fuzzy + #: app/Module/ClippingsCartModule.php:724 #, php-format msgid "Add %s to the clippings cart" @@ -11582,6 +11586,10 @@ msgstr "Đánh số lại cây gia đình" #. I18N: A button label #: search.php:217 +msgid "replace" +msgstr "thay thế" +#, fuzzy + msgid "Replace" msgstr "Thay thế" @@ -11942,6 +11950,10 @@ msgstr "Sealing canceled (divorce)" msgid "Search" msgstr "Truy tìm" +msgid "search" +msgstr "truy tìm" +#, fuzzy + #: app/Controller/SearchController.php:202 #: app/Module/BatchUpdate/BatchUpdateSearchReplacePlugin.php:50 #: app/Theme/AbstractTheme.php:1717 @@ -12872,13 +12884,25 @@ msgstr "Sierra Leone" #: app/Module/LoginBlockModule.php:29 app/Module/LoginBlockModule.php:68 #: app/Module/LoginBlockModule.php:83 app/Theme/AbstractTheme.php:1557 #: login.php:150 login.php:199 +msgid "sign in" +msgstr "đăng nhập" +#, fuzzy + +#: app/Module/LoginBlockModule.php:61 app/Module/LoginBlockModule.php:64 +#: app/Theme/AbstractTheme.php:1568 +msgid "sign out" +msgstr "thoát" +#, fuzzy + msgid "Sign in" msgstr "Đăng nhập" +#, fuzzy #: app/Module/LoginBlockModule.php:61 app/Module/LoginBlockModule.php:64 #: app/Theme/AbstractTheme.php:1568 msgid "Sign out" msgstr "Thoát" +#, fuzzy #. I18N: A configuration setting #: admin_site_config.php:447 diff --git a/language/yi.po b/language/yi.po index 7b1324d039..e01fe90984 100644 --- a/language/yi.po +++ b/language/yi.po @@ -1259,6 +1259,10 @@ msgstr "אדר ב'" msgid "Add" msgstr "שטעלן" +msgid "add" +msgstr "שטעלן" +#, fuzzy + #: app/Module/ClippingsCartModule.php:724 #, php-format msgid "Add %s to the clippings cart" @@ -11994,6 +11998,9 @@ msgstr "" msgid "Search" msgstr "זוך" +msgid "search" +msgstr "זוך" + #: app/Controller/SearchController.php:202 #: app/Module/BatchUpdate/BatchUpdateSearchReplacePlugin.php:50 #: app/Theme/AbstractTheme.php:1717 @@ -12924,6 +12931,14 @@ msgstr "סיערע לעאנע" #: app/Module/LoginBlockModule.php:29 app/Module/LoginBlockModule.php:68 #: app/Module/LoginBlockModule.php:83 app/Theme/AbstractTheme.php:1557 #: login.php:150 login.php:199 +msgid "sign in" +msgstr "ארײַנלאָגירן" + +#: app/Module/LoginBlockModule.php:61 app/Module/LoginBlockModule.php:64 +#: app/Theme/AbstractTheme.php:1568 +msgid "sign out" +msgstr "אַרויסלאָגירן" + msgid "Sign in" msgstr "ארײַנלאָגירן" diff --git a/language/zh-Hans.po b/language/zh-Hans.po index e020c5767f..d336514535 100644 --- a/language/zh-Hans.po +++ b/language/zh-Hans.po @@ -1236,6 +1236,10 @@ msgstr "第六月" msgid "Add" msgstr "添加" +msgid "add" +msgstr "添加" +#, fuzzy + #: app/Module/ClippingsCartModule.php:724 #, php-format msgid "Add %s to the clippings cart" @@ -11583,6 +11587,9 @@ msgstr "重新编号家谱" #. I18N: A button label #: search.php:217 +msgid "replace" +msgstr "替换" + msgid "Replace" msgstr "替换" @@ -11943,6 +11950,9 @@ msgstr "密封取消(离婚)" msgid "Search" msgstr "搜索" +msgid "search" +msgstr "搜索" + #: app/Controller/SearchController.php:202 #: app/Module/BatchUpdate/BatchUpdateSearchReplacePlugin.php:50 #: app/Theme/AbstractTheme.php:1717 @@ -12873,6 +12883,14 @@ msgstr "塞拉利昂" #: app/Module/LoginBlockModule.php:29 app/Module/LoginBlockModule.php:68 #: app/Module/LoginBlockModule.php:83 app/Theme/AbstractTheme.php:1557 #: login.php:150 login.php:199 +msgid "sign in" +msgstr "登录" + +#: app/Module/LoginBlockModule.php:61 app/Module/LoginBlockModule.php:64 +#: app/Theme/AbstractTheme.php:1568 +msgid "sign out" +msgstr "注销" + msgid "Sign in" msgstr "登录" diff --git a/language/zh-Hant.po b/language/zh-Hant.po index a3ac31b3b1..9bcf28e2cf 100644 --- a/language/zh-Hant.po +++ b/language/zh-Hant.po @@ -1231,6 +1231,10 @@ msgstr "" msgid "Add" msgstr "加入" +msgid "add" +msgstr "加入" +#, fuzzy + #: app/Module/ClippingsCartModule.php:724 #, php-format msgid "Add %s to the clippings cart" diff --git a/lifespan.php b/lifespan.php index d7ee36869b..ec6edceb41 100644 --- a/lifespan.php +++ b/lifespan.php @@ -106,8 +106,8 @@ $controller </td> <th class="descriptionbox" colspan="2"> <input id="clear" type="hidden" name="clear" value=0> - <input type="reset" value="<?php echo /* I18N: A button label */ I18N::translate('reset') ?>"> - <input type="submit" value="<?php echo /* I18N: A button label */ I18N::translate('show') ?>"> + <input type="reset" value="<?php echo /* I18N: A button label. */ I18N::translate('reset') ?>"> + <input type="submit" value="<?php echo /* I18N: A button label. */ I18N::translate('show') ?>"> </th> </tr> </tbody> @@ -196,7 +196,7 @@ default: </label> </div> <div> - <input type="submit" value="', I18N::translate('Sign in'), '"> + <input type="submit" value="', /* I18N: A button label. */ I18N::translate('sign in'), '"> </div> '; // Emails are sent from a TREE, not from a SITE. Therefore if there is no @@ -222,7 +222,7 @@ default: '<input type="text" id="new_passwd_username" name="new_passwd_username" value=""> </label> </div> - <div><input type="submit" value="', /* I18N: A button label */ I18N::translate('continue'), '"></div> + <div><input type="submit" value="', /* I18N: A button label. */ I18N::translate('continue'), '"></div> </form> </div>'; echo '</div>'; diff --git a/medialist.php b/medialist.php index b50add065c..5b78bb71e1 100644 --- a/medialist.php +++ b/medialist.php @@ -190,10 +190,10 @@ $medialist = QueryMedia::mediaList( <td class="descriptionbox wrap"></td> <td class="optionbox wrap"> <button type="submit" name="action" value="submit"> - <?php echo I18N::translate('Search'); ?> + <?php echo /* I18N: A button label. */ I18N::translate('search'); ?> </button> <button type="submit" name="action" value="reset"> - <?php echo I18N::translate('reset'); ?> + <?php echo /* I18N: A button label. */ I18N::translate('reset'); ?> </button> </td> </tr> diff --git a/modules_v3/GEDFact_assistant/MEDIA_ctrl.php b/modules_v3/GEDFact_assistant/MEDIA_ctrl.php index 4657786d36..c669106b6f 100644 --- a/modules_v3/GEDFact_assistant/MEDIA_ctrl.php +++ b/modules_v3/GEDFact_assistant/MEDIA_ctrl.php @@ -80,7 +80,7 @@ global $controller; if (txt === "") { alert("<?php echo I18N::translate('You must enter a name'); ?>"); } else { - window.open("module.php?mod=GEDFact_assistant&mod_action=media_find&callback=paste_id&action=filter&type=indi&multiple=&filter=" + txt, "win02", "resizable=1, menubar=0, scrollbars=1, top=180, left=600, HEIGHT=600, WIDTH=450 ").focus(); + window.open("module.php?mod=GEDFact_assistant&mod_action=media_find&callback=paste_id&action=filter&type=indi&multiple=&filter=" + txt, "win02", "resizable=1, menubar=0, scrollbars=1, top=180, left=600, height=600, width=450 ").focus(); } } </script> diff --git a/search.php b/search.php index 1e35acf075..872668ea69 100644 --- a/search.php +++ b/search.php @@ -140,7 +140,7 @@ function checknames(frm) { <div class="label"></div> <div class="value"> - <input type="submit" value="<?php echo /* I18N: A button label */ I18N::translate('Search'); ?>"> + <input type="submit" value="<?php echo /* I18N: A button label. */ I18N::translate('search'); ?>"> </div> </div> </form> @@ -182,7 +182,7 @@ function checknames(frm) { } </script> <div class="label"> - <?php echo I18N::translate('Search'); ?> + <?php echo /* I18N: A button label. */ I18N::translate('search'); ?> </div> <div class="value"> <p> @@ -214,7 +214,7 @@ function checknames(frm) { <div class="label"></div> <div class="value"> - <input type="submit" value="<?php echo /* I18N: A button label */ I18N::translate('Replace'); ?>"> + <input type="submit" value="<?php echo /* I18N: A button label. */ I18N::translate('replace'); ?>"> </div> </div> </form> @@ -297,7 +297,7 @@ function checknames(frm) { <div class="label"></div> <div class="value"> - <input type="submit" value="<?php echo /* I18N: A button label */ I18N::translate('Search'); ?>"> + <input type="submit" value="<?php echo /* I18N: A button label. */ I18N::translate('search'); ?>"> </div> </div> </form> diff --git a/search_advanced.php b/search_advanced.php index 534202e421..f99a86773f 100644 --- a/search_advanced.php +++ b/search_advanced.php @@ -285,7 +285,7 @@ echo '</script>'; </table> </div> <div class="center" style="margin-top:10px;"> - <p><input type="submit" value="<?php echo I18N::translate('Search'); ?>"></p> + <p><input type="submit" value="<?php echo /* I18N: A button label. */ I18N::translate('search'); ?>"></p> </div> </form> </div> @@ -184,7 +184,7 @@ if (!isset($_POST['lang'])) { I18N::translate('If your server’s security policy permits it, you will be able to request increased memory or CPU time using the webtrees administration page. Otherwise, you will need to contact your server’s administrator.'), '</p>'; if (!$errors) { - echo '<br><hr><input type="submit" id="btncontinue" value="', /* I18N: A button label */ I18N::translate('continue'), '">'; + echo '<br><hr><input type="submit" id="btncontinue" value="', /* I18N: A button label. */ I18N::translate('continue'), '">'; } echo '</form></body></html>'; |
