diff options
| author | fisharebest <fisharebest@gmail.com> | 2011-06-10 13:06:43 +0000 |
|---|---|---|
| committer | fisharebest <fisharebest@gmail.com> | 2011-06-10 13:06:43 +0000 |
| commit | 3ebecad78cf0ee7f3109d9b36da648d17b9fe85c (patch) | |
| tree | d8bc1478af45b1ea0cd7fc84044cde9e374e9fa8 /find.php | |
| parent | d36581447c2d5b37bf067c6f7d05eb1983471290 (diff) | |
| download | webtrees-3ebecad78cf0ee7f3109d9b36da648d17b9fe85c.tar.gz webtrees-3ebecad78cf0ee7f3109d9b36da648d17b9fe85c.tar.bz2 webtrees-3ebecad78cf0ee7f3109d9b36da648d17b9fe85c.zip | |
I18N - use consistent markup for "label: value"
Diffstat (limited to 'find.php')
| -rw-r--r-- | find.php | 52 |
1 files changed, 24 insertions, 28 deletions
@@ -1,31 +1,27 @@ <?php -/** - * Popup window that will allow a user to search for a family id, person id - * - * webtrees: Web based Family History software - * Copyright (C) 2010 webtrees development team. - * - * Derived from PhpGedView - * Copyright (C) 2002 to 2009 PGV Development Team. All rights reserved. - * - * This program is free software; you can redistribute it and/or modify - * it under the terms of the GNU General Public License as published by - * the Free Software Foundation; either version 2 of the License, or - * (at your option) any later version. - * - * This program is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - * GNU General Public License for more details. - * - * You should have received a copy of the GNU General Public License - * along with this program; if not, write to the Free Software - * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA - * - * @package webtrees - * @subpackage Display - * @version $Id$ - */ +// Popup window that will allow a user to search for a family id, person id +// +// webtrees: Web based Family History software +// Copyright (C) 2011 webtrees development team. +// +// Derived from PhpGedView +// Copyright (C) 2002 to 2009 PGV Development Team. All rights reserved. +// +// This program is free software; you can redistribute it and/or modify +// it under the terms of the GNU General Public License as published by +// the Free Software Foundation; either version 2 of the License, or +// (at your option) any later version. +// +// This program is distributed in the hope that it will be useful, +// but WITHOUT ANY WARRANTY; without even the implied warranty of +// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +// GNU General Public License for more details. +// +// You should have received a copy of the GNU General Public License +// along with this program; if not, write to the Free Software +// Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA +// +// $Id$ define('WT_SCRIPT_NAME', 'find.php'); require './includes/session.php'; @@ -782,7 +778,7 @@ if ($action=="filter") { echo "<a href=\"javascript:;\" onclick=\"return openImage('", rawurlencode($media["FILE"]), "', $imgwidth, $imgheight);\">", WT_I18N::translate('View'), "</a><br />"; if (!$media["EXISTS"] && !isFileExternal($media["FILE"])) echo $media["FILE"], "<br /><span class=\"error\">", WT_I18N::translate('The filename entered does not exist.'), "</span><br />"; else if (!isFileExternal($media["FILE"]) && !empty($imgsize[0])) { - echo "<br /><sub> ", WT_I18N::translate('Image Dimensions'), " -- ", $imgsize[0], "x", $imgsize[1], "</sub><br />"; + echo WT_Gedcom_Tag::getLabelValue('__IMAGE_SIZE__', $imgsize[0].' × '.$imgsize[1]); } if ($media["LINKED"]) { echo WT_I18N::translate('This media object is linked to the following:'), "<br />"; |
