module/0000755000175100000410000000000010455013405013375 5ustar robcoswww-data00000000000000module/exlide/0000755000175100000410000000000010455014330014645 5ustar robcoswww-data00000000000000module/exlide/classes/0000755000175100000410000000000010455012333016303 5ustar robcoswww-data00000000000000module/exlide/classes/ExlideImpl.class0000644000175100000410000000273710444215770021407 0ustar robcoswww-data00000000000000 */ /** * Load the parent class */ GalleryCoreApi::requireOnce('modules/exlide/classes/ExlideInterface_1_0.class'); /** * Implementation of the ExlideInterface for displaying photos in a exlide * * @package Exlide * @subpackage Classes */ class ExlideImpl extends ExlideInterface_1_0 { /** * @see ExlideInterface_1_0::getLinkData() */ function getLinkData($itemIds) { return array(null, array( 'view' => 'exlide.Expose', 'itemList' => implode('|', $itemIds) )); } } ?> module/exlide/classes/ExlideInterface_1_0.class0000644000175100000410000000304410444215770023035 0ustar robcoswww-data00000000000000 */ /** * This is an interface for the exlide module. Modules that wish to display * photos in a exlide can utilize an implementation of this interface. * * @package Exlide * @subpackage Classes */ class ExlideInterface_1_0 { /** * Get parameters for jumping to exlide display * * @param array of GalleryDataItem ids * @return array(object GalleryStatus a status code, * array(parameter=>value) ) */ function getLinkData($itemIds) { return array(GalleryCoreApi::error(ERROR_UNIMPLEMENTED, __FILE__, __LINE__), null, null); } } ?> module/exlide/Albums.inc0000644000175100000410000000573110444215770016602 0ustar robcoswww-data00000000000000 */ GalleryCoreApi::requireOnce('modules/exlide/SmartyView.inc'); /** * * @package Exlide * @subpackage UserInterface */ class AlbumsView extends SmartyView { function getTemplateName() { return basename(__FILE__, ".inc") . '.tpl'; } function fillModel($smarty) { $id = GalleryUtilities::getRequestVariables('itemId'); if($id <= 0) $id = null; list ($ret, $album_ids) = GalleryCoreApi::fetchAlbumTree($id); if ($ret) { return $ret->wrap(__FILE__, __LINE__); } if(count($album_ids) == 0) { $album_ids[$id] = "dummy"; }; //print_r (array_keys($album_ids)); $items = array(); foreach ( $album_ids as $id =>$value ){ $dummy = array(); $dummy[]=$id; //print "current id $id"; //print "current value $value"; list ($ret, $perm) = GalleryCoreApi::hasItemPermission($id, 'core.view'); //print "loading $id"; if ($perm) { list ($ret, $album) = GalleryCoreApi::loadEntitiesById($id); list ($ret, $count) = GalleryCoreApi::fetchChildCounts($dummy); list ($ret, $thumb) = GalleryCoreApi::fetchThumbnailsByItemIds($dummy); //print_r ((array_keys((array)$count))); //print_r($thumb); $item['album']=$album; $item['contentnumber']=current($count); $item['thumb']=$this->getThumbUrl(current($thumb)); $items[]=$item; } } $smarty->assign("items", $items); } function getThumbUrl($thumb) { global $gallery; $urlGenerator =& $gallery->getUrlGenerator(); $small = $urlGenerator->generateUrl( array( 'view' => 'core.DownloadItem', 'itemId' => $thumb->getId()), array( 'forceSessionId' => false, 'forceFullUrl' => false)); return trim($small, '/'); } } ?> module/exlide/Expose.inc0000644000175100000410000000273610444215770016624 0ustar robcoswww-data00000000000000 */ GalleryCoreApi::requireOnce('modules/exlide/SmartyView.inc'); /** * @package Exlide * @subpackage UserInterface */ class ExposeView extends SmartyView { function getTemplateName() { return basename(__FILE__, ".inc") . '.tpl'; } /** * @see GalleryView::loadTemplate() */ function fillModel($smarty) { $itemId = GalleryUtilities::getRequestVariables('itemId'); $smarty->assign("itemId", $itemId); } function getContentType() { return "text/html; charset=utf-8"; } } ?> module/exlide/Pictures.inc0000644000175100000410000001106710455013425017147 0ustar robcoswww-data00000000000000 */ GalleryCoreApi::requireOnce('modules/exlide/SmartyView.inc'); /** * * @package Exlide * @subpackage UserInterface */ class PicturesView extends SmartyView { function getTemplateName() { return basename(__FILE__, ".inc") . '.tpl'; } function fillModel($smarty) { global $gallery; $itemId = GalleryUtilities::getRequestVariables('itemId'); //print $itemId; list ($ret, $perm) = GalleryCoreApi::hasItemPermission($itemId, 'core.view'); //print $perm; if ($perm) { list ($ret, $album) = GalleryCoreApi::loadEntitiesById($itemId); list ($ret, $ids) = GalleryCoreApi::fetchChildDataItemIds($album); //print "album:" ;print_r ((((array)$album))); //print "ids:" ;print_r ((((array)$ids))); //print "aids:" ;print_r ((((array)$aids))); //print "items: " ; print_r ((((array)$items))); /* retrieve gallery thumbnail */ if(!$ids) { // try to read subalbums //print "no ids found, check for subalbum"; list ($ret, $ids) = GalleryCoreApi::fetchChildItemIds($album); //print "subalbum ids:" ;print_r ((((array)$ids))); } list ($ret, $items) = GalleryCoreApi::loadEntitiesById($ids); $urlGenerator =& $gallery->getUrlGenerator(); $pictures = array(); foreach($items as $item) { list ($ret, $thumb) = GalleryCoreApi::fetchThumbnailsByItemIds((array)$item->id); list ($ret, $resize) = GalleryCoreApi::fetchResizesByItemIds((array)$item->id); #print_r ((($thumb))); #print_r ((($resize))); #$thumb = (array)$thumb; reset($thumb); reset($resize);; $thumb = current($thumb); $resize = current($resize); if($resize) $resize = current($resize); #print_r ((($resize))); #print $thumb; #print $resize; #print_r ((($resize))); #print ((($resize->id))); #return; #print $thumb[4152]; #return; #print_r ((((array)$thumb))); $large = $urlGenerator->generateUrl( array( 'view' => 'core.DownloadItem', 'itemId' => $item->getId()), array( 'forceSessionId' => false, 'forceFullUrl' => false)); if(!$resize ) { $resize = $item; } $resize = $urlGenerator->generateUrl( array( 'view' => 'core.DownloadItem', 'itemId' => $resize->getId()), array( 'forceSessionId' => false, 'forceFullUrl' => false)); $small = $urlGenerator->generateUrl( array( 'view' => 'core.DownloadItem', 'itemId' => $thumb->getId()), array( 'forceSessionId' => false, 'forceFullUrl' => false)); $temp['title'] = $item->title; //$temp['date'] = $item->id; //$temp['location'] = $item->id; $temp['image'] = trim($resize, '/'); $temp['small'] = trim($small, '/'); $temp['large'] = trim($large, '/'); $pictures[] = $temp; } } #print_r ($pictures); $smarty->assign("items", (array)$pictures); } } ?> module/exlide/SmartyView.inc0000644000175100000410000000407510444215770017471 0ustar robcoswww-data00000000000000 */ GalleryCoreApi::requireOnce('lib/smarty/Smarty.class.php', true); /** * * @package Exlide */ class SmartyView extends GalleryView { /** * @see GalleryView::isImmediate */ function isImmediate() { return true; } /** * @see GalleryView::renderImmediate */ function renderImmediate($status, $error) { global $gallery; header("Content-Type: " . $this->getContentType()); $BASE_PATH = dirname(__FILE__); $smarty = new Smarty; $smarty->template_dir = $BASE_PATH . '/templates/'; $smarty->compile_dir = $BASE_PATH . '/smarty/templates_c/'; $smarty->config_dir = $BASE_PATH . '/smarty/configs/'; $smarty->cache_dir = $BASE_PATH . '/smarty/cache/'; $this->fillModel(&$smarty); $smarty->display("Header.tpl"); $smarty->display($this->getTemplateName()); return null; } function getTemplateName() { return null; } function getContentType() { return "text/xml; charset=utf-8"; } function fillModel($smarty) { $smarty->assign("name", "Roberto"); } } ?> module/exlide/module.inc0000644000175100000410000000652510455014330016635 0ustar robcoswww-data00000000000000 */ /** * The implementation of the Exlide module * * @package Exlide */ class ExlideModule extends GalleryModule { function ExlideModule() { global $gallery; $this->setId('exlide'); $this->setName($gallery->i18n('Exlide')); $this->setDescription($gallery->i18n('Flash slideshow a la Expose')); $this->setVersion('0.10'); $this->setGroup('display', $gallery->i18n('Display')); $this->setCallbacks('getItemLinks'); $this->setRequiredCoreApi(array(7, 0)); $this->setRequiredModuleApi(array(3, 0)); } /** * @see GalleryModule::performFactoryRegistrations() */ function performFactoryRegistrations() { $ret = GalleryCoreApi::registerFactoryImplementation( 'ExlideInterface_1_0', 'ExlideImpl', 'Exlide', 'modules/exlide/classes/ExlideImpl.class', 'exlide', null); if ($ret) { return $ret->wrap(__FILE__, __LINE__); } return null; } /** * @see GalleryModule::getItemLinks() */ function getItemLinks($items, $wantsDetailedLinks, $permissions) { $links = array(); foreach ($items as $item) { $itemId = $item->getId(); if (isset($wantsDetailedLinks[$itemId])) { $links[$itemId][] = array('text' => $this->translate('View flash slideshow'), 'params' => array( 'view' => 'exlide.Expose', 'itemId' => $itemId)); } } return array(null, $links); } /** * @see GalleryModule::getRewriteRules */ function getRewriteRules() { $rules = array(); $rule = array(); $rule['match'] = array('view' => 'exlide.Albums'); $rule['pattern'] = 'exlide/xml/%itemId%/albums.xml'; $rule['comment'] = $this->translate('Generate xml for albums'); $rules[] = $rule; $rule['match'] = array('view' => 'exlide.Pictures'); $rule['pattern'] = 'exlide/xml/%itemId%/pictures.xml'; $rule['comment'] = $this->translate('Generate xml for pictures'); $rules[] = $rule; $rule['match'] = array('view' => 'exlide.Expose'); $rule['pattern'] = 'exlide/%itemId%'; $rule['comment'] = $this->translate('Expose slideshow'); $rules[] = $rule; return $rules; } } ?> module/exlide/po/0000755000175100000410000000000010455012333015264 5ustar robcoswww-data00000000000000module/exlide/po/GNUmakefile0000644000175100000410000000014210444215770017343 0ustar robcoswww-data00000000000000GALLERYDIR ?= ../../.. TOOLDIR ?= $(GALLERYDIR)/lib/tools include $(TOOLDIR)/po/GNUmakefile.inc module/exlide/po/af.po0000644000175100000410000000673110444215770016231 0ustar robcoswww-data00000000000000# $Id: af.po,v 1.1.1.1 2006/06/15 08:36:08 robcos Exp $ # # Gallery - a web based photo album viewer and editor # Copyright (C) 2000-2006 Bharat Mediratta # # 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., 51 Franklin Street - Fifth Floor, Boston, MA 02110-1301, USA. # # Previous translators: msgid "" msgstr "" "Project-Id-Version: Gallery: Expose 1.0.3\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2005-02-03 20:12+0100\n" "PO-Revision-Date: 2006-03-16 10:23+0200\n" "Last-Translator: Renier \n" "Language-Team: Afrikaans \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-Poedit-Language: Afrikaans\n" "X-Poedit-Country: SOUTH AFRICA\n" msgid "Expose" msgstr "Skyfievertoning" #, c-format msgid "Expose for %s" msgstr "Skyfievertoning vir %s" msgid "Display" msgstr "Vertoon" msgid "View Expose" msgstr "Wys Skyfievertoning" msgid "Path to an item (eg, /album/image.jpg.html)" msgstr "Pad na 'n item (bv, /album/afbeelding.jpg.html)" msgid "Blend" msgstr "Meng" msgid "Blinds" msgstr "Blinders horisontaal" msgid "Checkerboard" msgstr "Dambord na regs" msgid "Diagonal" msgstr "Diagonaal" msgid "Doors" msgstr "Deure" msgid "Gradient" msgstr "Gradiënt" msgid "Iris" msgstr "Iris" msgid "Pinwheel" msgstr "Draaiwiel" msgid "Pixelate" msgstr "Pixels" msgid "Radial" msgstr "Radiaal" msgid "Rain" msgstr "Reën" msgid "Slide" msgstr "Skyfie" msgid "Snow" msgstr "Sneeu" msgid "Spiral" msgstr "Spiraal" msgid "Stretch" msgstr "Uitrek" msgid "RANDOM" msgstr "WILLEKEURIG" msgid "This album has no photos to show in a expose." msgstr "Die album bevat geen beelde om in 'n skyfievertoning te wys nie." msgid "Back to Album View" msgstr "Terug na die Albumvertoning" #, c-format msgid "Date: %s" msgstr "Datum: %s" msgid "Hide More Info" msgstr "Versteek Meer Inligting" msgid "Show More Info" msgstr "Wys Meer Inligting" msgid "Resume" msgstr "Hervat" msgid "Pause" msgstr "Pouse" msgid "[-]" msgstr "[-]" msgid "[+]" msgstr "[+]" msgid "Stop" msgstr "Stop" msgid "Back One Image" msgstr "Eén Beeld terug" msgid "delay: " msgstr "vertraging: " msgid "1 seconds" msgstr "1 sekonde" msgid "3 seconds" msgstr "3 sekondes" msgid "5 seconds" msgstr "5 sekondes" msgid "10 seconds" msgstr "10 sekondes" msgid "15 seconds" msgstr "15 sekondes" msgid "20 seconds" msgstr "20 sekondes" msgid "direction: " msgstr "rigting:" msgid "forward" msgstr "vorentoe" msgid "reverse" msgstr "terug" msgid "random" msgstr "willekeurig" msgid "max size: " msgstr "maksimum grootte" msgid "320x320" msgstr "320x320" msgid "640x640" msgstr "640x640" msgid "800x800" msgstr "800x600" msgid "1024x1024" msgstr "1024x1024" msgid "1280x1280" msgstr "1280x1280" msgid "no limit" msgstr "geen limiet" msgid "fade: " msgstr "wasige oorgang: " #~ msgid "view expose" #~ msgstr "diashow weergeven" module/exlide/po/bg.po0000644000175100000410000000712210444215770016226 0ustar robcoswww-data00000000000000# $Id: bg.po,v 1.1.1.1 2006/06/15 08:36:08 robcos Exp $ # # Gallery - a web based photo album viewer and editor # Copyright (C) 2000-2006 Bharat Mediratta # # 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., 51 Franklin Street - Fifth Floor, Boston, MA 02110-1301, USA. # # Previous translators (as far as known, add yourself here, please): # # # Bisser Dobrev , 2003-2005 # msgid "" msgstr "" "Project-Id-Version: Gallery: Expose 1.0.3\n" "Report-Msgid-Bugs-To: gallery-translations@lists.sourceforge.net\n" "POT-Creation-Date: 2003-02-11 03:09-0800\n" "PO-Revision-Date: 2005-08-01 08:08-0500\n" "Last-Translator: Bisser Dobrev \n" "Language-Team: Bisser Dobrev \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=CP1251\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Poedit-Language: Bulgarian\n" "X-Poedit-Country: BULGARIA\n" msgid "Expose" msgstr "" #, c-format msgid "Expose for %s" msgstr " %s" msgid "Display" msgstr "" msgid "View Expose" msgstr "" msgid "Path to an item (eg, /album/image.jpg.html)" msgstr " ( /album/snimka.jpg.html)" msgid "Blend" msgstr "" msgid "Blinds" msgstr "" msgid "Checkerboard" msgstr "" msgid "Diagonal" msgstr "" msgid "Doors" msgstr "" msgid "Gradient" msgstr "" msgid "Iris" msgstr "" msgid "Pinwheel" msgstr "" msgid "Pixelate" msgstr "" msgid "Radial" msgstr "" msgid "Rain" msgstr "" msgid "Slide" msgstr "" msgid "Snow" msgstr "" msgid "Spiral" msgstr "" msgid "Stretch" msgstr "" msgid "RANDOM" msgstr "" msgid "This album has no photos to show in a expose." msgstr " ." msgid "Back to Album View" msgstr " " #, c-format msgid "Date: %s" msgstr ": %s" msgid "Hide More Info" msgstr "- " msgid "Show More Info" msgstr " " msgid "Resume" msgstr "" msgid "Pause" msgstr "" msgid "[-]" msgstr "[-]" msgid "[+]" msgstr "[+]" msgid "Stop" msgstr "" msgid "Back One Image" msgstr " " msgid "delay: " msgstr ":" msgid "1 seconds" msgstr "1 " msgid "3 seconds" msgstr "3 " msgid "5 seconds" msgstr "5 " msgid "10 seconds" msgstr "10 " msgid "15 seconds" msgstr "15 " msgid "20 seconds" msgstr "20 " msgid "direction: " msgstr ":" msgid "forward" msgstr "" msgid "reverse" msgstr "" msgid "random" msgstr "" msgid "max size: " msgstr " :" msgid "320x320" msgstr "320x320" msgid "640x640" msgstr "640x640" msgid "800x800" msgstr "800x800" msgid "1024x1024" msgstr "1024x1024" msgid "1280x1280" msgstr "1280x1280" msgid "no limit" msgstr " " msgid "fade: " msgstr ":" #~ msgid "view expose" #~ msgstr "" module/exlide/po/cs.po0000644000175100000410000000672110444215770016247 0ustar robcoswww-data00000000000000# $Id: cs.po,v 1.1.1.1 2006/06/15 08:36:08 robcos Exp $ # # Gallery - a web based photo album viewer and editor # Copyright (C) 2000-2006 Bharat Mediratta # # 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., 51 Franklin Street - Fifth Floor, Boston, MA 02110-1301, USA. # msgid "" msgstr "" "Project-Id-Version: Gallery: Expose 1.0.3\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2005-01-30 22:44+0100\n" "PO-Revision-Date: 2005-09-11 16:23+0200\n" "Last-Translator: Jan Korbel \n" "Language-Team: Czech \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 " "|| n%100>=20) ? 1 : 2);\n" "X-Poedit-Language: Czech\n" "X-Poedit-Country: CZECH REPUBLIC\n" msgid "Expose" msgstr "Prezentace (expose)" #, c-format msgid "Expose for %s" msgstr "Prezentace %s" msgid "Display" msgstr "Zobrazení" msgid "View Expose" msgstr "Zobrazit prezentaci" msgid "Path to an item (eg, /album/image.jpg.html)" msgstr "Cesta k položce (např. /album/image.jpg.html)" msgid "Blend" msgstr "Směs" msgid "Blinds" msgstr "Clony" msgid "Checkerboard" msgstr "Plocha s výběrem" msgid "Diagonal" msgstr "Úhlopříčně" msgid "Doors" msgstr "Dveře" msgid "Gradient" msgstr "Odstupnění" msgid "Iris" msgstr "Duhovka" msgid "Pinwheel" msgstr "Kolo" msgid "Pixelate" msgstr "Pixelovaný" msgid "Radial" msgstr "Paprskovitě" msgid "Rain" msgstr "Déšť" msgid "Slide" msgstr "Snímek" msgid "Snow" msgstr "Sníh" msgid "Spiral" msgstr "Spirála" msgid "Stretch" msgstr "Roztáhnout" msgid "RANDOM" msgstr "NÁHODNĚ" msgid "This album has no photos to show in a expose." msgstr "Toto album neobsahuje žádné fotografie pro prezentaci." msgid "Back to Album View" msgstr "Zpět k pohledu na album " #, c-format msgid "Date: %s" msgstr "Datum: %s" msgid "Hide More Info" msgstr "Schovat detaily" msgid "Show More Info" msgstr "Zobrazit detaily" msgid "Resume" msgstr "Pokračovat" msgid "Pause" msgstr "Pauza" msgid "[-]" msgstr "[-]" msgid "[+]" msgstr "[+]" msgid "Stop" msgstr "Zastavit" msgid "Back One Image" msgstr "Jeden obrázek zpět" msgid "delay: " msgstr "prodleva:" msgid "1 seconds" msgstr "1 sekunda" msgid "3 seconds" msgstr "3 sekundy" msgid "5 seconds" msgstr "5 sekund" msgid "10 seconds" msgstr "10 sekund" msgid "15 seconds" msgstr "15 sekund" msgid "20 seconds" msgstr "20 sekund" msgid "direction: " msgstr "směr:" msgid "forward" msgstr "dopředu" msgid "reverse" msgstr "dozadu" msgid "random" msgstr "náhodně" msgid "max size: " msgstr "max. velikost:" msgid "320x320" msgstr "320x320" msgid "640x640" msgstr "640x640" msgid "800x800" msgstr "800x800" msgid "1024x1024" msgstr "1024x1024" msgid "1280x1280" msgstr "1280x1280" msgid "no limit" msgstr "bez omezení" msgid "fade: " msgstr "prolínání:" module/exlide/po/da.po0000644000175100000410000000647010444215770016227 0ustar robcoswww-data00000000000000# $Id: da.po,v 1.1.1.1 2006/06/15 08:36:08 robcos Exp $ # # Gallery - a web based photo album viewer and editor # Copyright (C) 2000-2006 Bharat Mediratta # # 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., 51 Franklin Street - Fifth Floor, Boston, MA 02110-1301, USA. # msgid "" msgstr "" "Project-Id-Version: Gallery: Expose 1.0.3\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2005-06-12 16:51+0200\n" "PO-Revision-Date: 2005-07-25 18:30+0200\n" "Last-Translator: Allan Beaufour \n" "Language-Team: Danish \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" msgid "Expose" msgstr "Fremviser" #, c-format msgid "Expose for %s" msgstr "Fremvisning af %s" msgid "Display" msgstr "Vis" msgid "View Expose" msgstr "Start Fremvisning" msgid "Path to an item (eg, /album/image.jpg.html)" msgstr "Sti til et element (f.x. /album/billede.jpg.html)" msgid "Blend" msgstr "Bland" msgid "Blinds" msgstr "Persienner" msgid "Checkerboard" msgstr "Skaktern" msgid "Diagonal" msgstr "Diagonal" msgid "Doors" msgstr "Døre" msgid "Gradient" msgstr "Gradueret" msgid "Iris" msgstr "Iris" msgid "Pinwheel" msgstr "Fyrværkerisol" msgid "Pixelate" msgstr "Pixelér" msgid "Radial" msgstr "Radial" msgid "Rain" msgstr "Regn" msgid "Slide" msgstr "Skub" msgid "Snow" msgstr "Sne" msgid "Spiral" msgstr "Spiral" msgid "Stretch" msgstr "Stræk" msgid "RANDOM" msgstr "TILFÆLDIG" msgid "This album has no photos to show in a expose." msgstr "Dette album har ingen billeder der kan vises i en fremvisning" msgid "Back to Album View" msgstr "Tilbage til albumvisningen" #, c-format msgid "Date: %s" msgstr "Dato: %s" msgid "Hide More Info" msgstr "Skjul detaljer" msgid "Show More Info" msgstr "Vis detaljer" msgid "Resume" msgstr "Fortsæt" msgid "Pause" msgstr "Pause" msgid "[-]" msgstr "[-]" msgid "[+]" msgstr "[+]" msgid "Stop" msgstr "Stop" msgid "Back One Image" msgstr "Tilbage til forrige billede" msgid "delay: " msgstr "pause: " msgid "1 seconds" msgstr "1 sekund" msgid "3 seconds" msgstr "3 sekunder" msgid "5 seconds" msgstr "5 sekunder" msgid "10 seconds" msgstr "10 sekunder" msgid "15 seconds" msgstr "15 sekunder" msgid "20 seconds" msgstr "20 sekunder" msgid "direction: " msgstr "retning: " msgid "forward" msgstr "fremad" msgid "reverse" msgstr "tilbage" msgid "random" msgstr "tilfældig" msgid "max size: " msgstr "maks. størrelse" msgid "320x320" msgstr "320x320" msgid "640x640" msgstr "640x640" msgid "800x800" msgstr "800x800" msgid "1024x1024" msgstr "1024x1024" msgid "1280x1280" msgstr "1280x1280" msgid "no limit" msgstr "ubegrænset" msgid "fade: " msgstr "effekt: " module/exlide/po/de.po0000644000175100000410000000675210444215770016236 0ustar robcoswww-data00000000000000# $Id: de.po,v 1.1.1.1 2006/06/15 08:36:08 robcos Exp $ # # Gallery - a web based photo album viewer and editor # Copyright (C) 2000-2006 Bharat Mediratta # # 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., 51 Franklin Street - Fifth Floor, Boston, MA 02110-1301, USA. # # Previous translators (as far as known, add yourself here, please): # - Jens Tkotz # - Frederik Kunz # msgid "" msgstr "" "Project-Id-Version: Gallery: Expose 1.0.3\n" "POT-Creation-Date: 2003-02-11 03:09-0800\n" "PO-Revision-Date: 2005-06-15 03:59+0200\n" "Last-Translator: Frederik Kunz \n" "Language-Team: German \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Generator: KBabel 1.10\n" msgid "Expose" msgstr "Diashow" #, c-format msgid "Expose for %s" msgstr "Diashow für %s" msgid "Display" msgstr "Anzeige" msgid "View Expose" msgstr "Diashow ansehen" msgid "Path to an item (eg, /album/image.jpg.html)" msgstr "Pfad zu einem Element (z.B. /album/bild.jpg.html)" msgid "Blend" msgstr "Überblenden" msgid "Blinds" msgstr "Jalousie" msgid "Checkerboard" msgstr "Schachbrett" msgid "Diagonal" msgstr "Diagonal" msgid "Doors" msgstr "Türen" msgid "Gradient" msgstr "Verlauf" msgid "Iris" msgstr "Iris" msgid "Pinwheel" msgstr "Windrad" msgid "Pixelate" msgstr "Verpixeln" msgid "Radial" msgstr "Radial" msgid "Rain" msgstr "Regen" msgid "Slide" msgstr "Schiebung" msgid "Snow" msgstr "Schnee" msgid "Spiral" msgstr "Spirale" msgid "Stretch" msgstr "Dehnung" msgid "RANDOM" msgstr "Zufällig" msgid "This album has no photos to show in a expose." msgstr "Dieses Album enthält keine Photos für eine Diashow." msgid "Back to Album View" msgstr "Zurück zur Albenübersicht" #, c-format msgid "Date: %s" msgstr "Datum %s" msgid "Hide More Info" msgstr "Zeige nur Minimalinfo an" msgid "Show More Info" msgstr "Zeige mehr Informationen" msgid "Resume" msgstr "Wiederholen" msgid "Pause" msgstr "Pause" msgid "[-]" msgstr "[-]" msgid "[+]" msgstr "[+]" msgid "Stop" msgstr "Stop" msgid "Back One Image" msgstr "Ein Bild zurück" msgid "delay: " msgstr "Pause:" msgid "1 seconds" msgstr "1 Sekunde" msgid "3 seconds" msgstr "3 Sekunden" msgid "5 seconds" msgstr "5 Sekunden" msgid "10 seconds" msgstr "10 Sekunden" msgid "15 seconds" msgstr "15 Sekunden" msgid "20 seconds" msgstr "20 Sekunden" msgid "direction: " msgstr "Richtung:" msgid "forward" msgstr "vorwärts" msgid "reverse" msgstr "rückwärts" msgid "random" msgstr "zufällig" msgid "max size: " msgstr "Maximale Größe:" msgid "320x320" msgstr "320x320" msgid "640x640" msgstr "640x640" msgid "800x800" msgstr "800x800" msgid "1024x1024" msgstr "1024x1024" msgid "1280x1280" msgstr "1280x1280" msgid "no limit" msgstr "Kein Limit" msgid "fade: " msgstr "Ein-/Ausblendung:" module/exlide/po/es.po0000644000175100000410000000707210444215770016251 0ustar robcoswww-data00000000000000# $Id: es.po,v 1.1.1.1 2006/06/15 08:36:08 robcos Exp $ # # Gallery - a web based photo album viewer and editor # Copyright (C) 2000-2006 Bharat Mediratta # # 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., 51 Franklin Street - Fifth Floor, Boston, MA 02110-1301, USA. # # Previous translators (as far as known, add yourself here, please): # - Oscar Garcia Amor # msgid "" msgstr "" "Project-Id-Version: Gallery: Expose 1.0.3\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2005-10-30 02:56+0200\n" "PO-Revision-Date: 2005-10-30 02:34+0200\n" "Last-Translator: Oscar Garcia Amor \n" "Language-Team: Spanish \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" msgid "Expose" msgstr "Presentación" #, c-format msgid "Expose for %s" msgstr "Presentación para %s" msgid "Display" msgstr "Mostrar" msgid "View Expose" msgstr "Ver Presentación" msgid "Path to an item (eg, /album/image.jpg.html)" msgstr "Ruta al elemento (ej, /album/image.jpg.html)" msgid "Blend" msgstr "Fundido" msgid "Blinds" msgstr "Persiana" msgid "Checkerboard" msgstr "Tablero de Ajedrez" msgid "Diagonal" msgstr "Diagonal" msgid "Doors" msgstr "Puertas" msgid "Gradient" msgstr "Gradiente" msgid "Iris" msgstr "Iris" msgid "Pinwheel" msgstr "Molinete" msgid "Pixelate" msgstr "Mosaico" msgid "Radial" msgstr "Radial" msgid "Rain" msgstr "Lluvia" msgid "Slide" msgstr "Deslizar" msgid "Snow" msgstr "Nieve" msgid "Spiral" msgstr "Espiral" msgid "Stretch" msgstr "Estirar" msgid "RANDOM" msgstr "ALEATORIO" msgid "This album has no photos to show in a expose." msgstr "Este álbum no contiene fotos para mostrar en una Presentación." msgid "Back to Album View" msgstr "Volver a la Vista del Álbum" #, c-format msgid "Date: %s" msgstr "Fecha: %s" msgid "Hide More Info" msgstr "Ocultar Mas Información" msgid "Show More Info" msgstr "Mostrar Mas Información" msgid "Resume" msgstr "Reanudar" msgid "Pause" msgstr "Pausar" msgid "[-]" msgstr "[-]" msgid "[+]" msgstr "[+]" msgid "Stop" msgstr "Parar" msgid "Back One Image" msgstr "Volver Una Imagen" msgid "delay: " msgstr "demora: " msgid "1 seconds" msgstr "1 segundo" msgid "3 seconds" msgstr "3 segundos" msgid "5 seconds" msgstr "5 segundos" msgid "10 seconds" msgstr "10 segundos" msgid "15 seconds" msgstr "15 segundos" msgid "20 seconds" msgstr "20 segundos" msgid "direction: " msgstr "dirección: " msgid "forward" msgstr "hacia delante" msgid "reverse" msgstr "marcha atrás" msgid "random" msgstr "aleatoria" msgid "max size: " msgstr "tamaño máximo: " msgid "320x320" msgstr "320x320" msgid "640x640" msgstr "640x640" msgid "800x800" msgstr "800x800" msgid "1024x1024" msgstr "1024x1024" msgid "1280x1280" msgstr "1280x1280" msgid "no limit" msgstr "sin limite" msgid "fade: " msgstr "transición: " module/exlide/po/eu.po0000644000175100000410000000666210444215770016257 0ustar robcoswww-data00000000000000# $Id: eu.po,v 1.1.1.1 2006/06/15 08:36:08 robcos Exp $ # # Gallery - a web based photo album viewer and editor # Copyright (C) 2000-2006 Bharat Mediratta # # 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., 51 Franklin Street - Fifth Floor, Boston, MA 02110-1301, USA. # Piarres Beobide , 2005. # msgid "" msgstr "" "Project-Id-Version: Gallery: Expose 1.0.3\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2005-11-03 22:19+0100\n" "PO-Revision-Date: 2006-02-10 12:16+0100\n" "Last-Translator: Piarres Beobide \n" "Language-Team: librezale.org \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-Generator: Pootle 0.6.3.20060126\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" msgid "Expose" msgstr "Aukezpena" #, c-format msgid "Expose for %s" msgstr "%s-ren aurkezpena" msgid "Display" msgstr "Bistaratzea" msgid "View Expose" msgstr "Aukezpena Ikusi" msgid "Path to an item (eg, /album/image.jpg.html)" msgstr "elementuari bidea (adib /album/image.jpg.html)" msgid "Blend" msgstr "Nahastura" msgid "Blinds" msgstr "Itsuak" msgid "Checkerboard" msgstr "Dama-jokoa" msgid "Diagonal" msgstr "Diagonala" msgid "Doors" msgstr "Ateak" msgid "Gradient" msgstr "Gradiantea" msgid "Iris" msgstr "Irisa" msgid "Pinwheel" msgstr "Pinwheel" msgid "Pixelate" msgstr "Pixelatua" msgid "Radial" msgstr "Erradiala" msgid "Rain" msgstr "Euria" msgid "Slide" msgstr "Alboraka" msgid "Snow" msgstr "Elurra" msgid "Spiral" msgstr "Espirala" msgid "Stretch" msgstr "Luzatua" msgid "RANDOM" msgstr "AUSAZKOA" msgid "This album has no photos to show in a expose." msgstr "Album honek ez du aurkezpen batetan bistaratzeko argazkirik." msgid "Back to Album View" msgstr "Album Ikuspegira Itzuli" #, c-format msgid "Date: %s" msgstr "Dala: %s" msgid "Hide More Info" msgstr "Argibide gehiago ezkutatu" msgid "Show More Info" msgstr "Argibide gehiago bistarazi" msgid "Resume" msgstr "Labuirpena" msgid "Pause" msgstr "Pausatu" msgid "[-]" msgstr "[-]" msgid "[+]" msgstr "[+]" msgid "Stop" msgstr "Gelditu" msgid "Back One Image" msgstr "Irusi bat atzera" msgid "delay: " msgstr "atzerapena: " msgid "1 seconds" msgstr "segundu 1" msgid "3 seconds" msgstr "3 segundu" msgid "5 seconds" msgstr "5 segundu" msgid "10 seconds" msgstr "10 segundu" msgid "15 seconds" msgstr "15 segundu" msgid "20 seconds" msgstr "20 segundu" msgid "direction: " msgstr "norabidea: " msgid "forward" msgstr "birbidali" msgid "reverse" msgstr "alderantziz" msgid "random" msgstr "ausazkoa" msgid "max size: " msgstr "gehienezko tamaina: " msgid "320x320" msgstr "320x320" msgid "640x640" msgstr "640x640" msgid "800x800" msgstr "800x800" msgid "1024x1024" msgstr "1024x1024" msgid "1280x1280" msgstr "1280x1280" msgid "no limit" msgstr "mugarik gabe" msgid "fade: " msgstr "iluntzea: " module/exlide/po/fi.po0000644000175100000410000000653710444215770016245 0ustar robcoswww-data00000000000000# $Id: fi.po,v 1.1.1.1 2006/06/15 08:36:08 robcos Exp $ # # Gallery - a web based photo album viewer and editor # Copyright (C) 2000-2006 Bharat Mediratta # # 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., 51 Franklin Street - Fifth Floor, Boston, MA 02110-1301, USA. # # Previous translators: # - 2005 Marko Kohtala # msgid "" msgstr "" "Project-Id-Version: Gallery: Expose 1.0.3\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2005-12-02 22:27+0200\n" "PO-Revision-Date: 2005-12-03 12:09+0200\n" "Last-Translator: Marko Kohtala \n" "Language-Team: Finnish \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" msgid "Expose" msgstr "Diaesitys" #, c-format msgid "Expose for %s" msgstr "Diaesitys kohteelle %s" msgid "Display" msgstr "Näytä" msgid "View Expose" msgstr "Katso Diaesitys" msgid "Path to an item (eg, /album/image.jpg.html)" msgstr "Kohteen polku (esim. /albumi/kuva.jpg.html)" msgid "Blend" msgstr "Sekoitus" msgid "Blinds" msgstr "Kaihtimet" msgid "Checkerboard" msgstr "Shakkilauta" msgid "Diagonal" msgstr "Viisto" msgid "Doors" msgstr "Ovet" msgid "Gradient" msgstr "Gradientti" msgid "Iris" msgstr "Iiris" msgid "Pinwheel" msgstr "Tappihammaspyörästö" msgid "Pixelate" msgstr "Pisteittäin" msgid "Radial" msgstr "Säteittäin" msgid "Rain" msgstr "Sade" msgid "Slide" msgstr "Liukuen" msgid "Snow" msgstr "Lumi" msgid "Spiral" msgstr "Spiraali" msgid "Stretch" msgstr "Venytys" msgid "RANDOM" msgstr "SATUNNAINEN" msgid "This album has no photos to show in a expose." msgstr "Tässä albumissa ei ole kuvia diaesitykseen." msgid "Back to Album View" msgstr "Takaisin Albumiin" #, c-format msgid "Date: %s" msgstr "Päiväys: %s" msgid "Hide More Info" msgstr "Piilota Lisätiedot" msgid "Show More Info" msgstr "Näytä Lisätiedot" msgid "Resume" msgstr "Jatka" msgid "Pause" msgstr "Tauko" msgid "[-]" msgstr "[-]" msgid "[+]" msgstr "[+]" msgid "Stop" msgstr "Lopeta" msgid "Back One Image" msgstr "Edellinen Kuva" msgid "delay: " msgstr "viive: " msgid "1 seconds" msgstr "1 sekunti" msgid "3 seconds" msgstr "3 sekuntia" msgid "5 seconds" msgstr "5 sekuntia" msgid "10 seconds" msgstr "10 sekuntia" msgid "15 seconds" msgstr "15 sekuntia" msgid "20 seconds" msgstr "20 sekuntia" msgid "direction: " msgstr "suunta: " msgid "forward" msgstr "eteen" msgid "reverse" msgstr "taakse" msgid "random" msgstr "satunnainen" msgid "max size: " msgstr "suurin koko: " msgid "320x320" msgstr "320x320" msgid "640x640" msgstr "640x640" msgid "800x800" msgstr "800x800" msgid "1024x1024" msgstr "1024x1024" msgid "1280x1280" msgstr "1280x1280" msgid "no limit" msgstr "ei rajaa" msgid "fade: " msgstr "häivytys: " module/exlide/po/fr.po0000644000175100000410000000662110444215770016250 0ustar robcoswww-data00000000000000# $Id: fr.po,v 1.1.1.1 2006/06/15 08:36:08 robcos Exp $ # # Gallery - a web based photo album viewer and editor # Copyright (C) 2000-2006 Bharat Mediratta # # 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., 51 Franklin Street - Fifth Floor, Boston, MA 02110-1301, USA. # msgid "" msgstr "" "Project-Id-Version: Gallery: Expose 1.0.3\n" "POT-Creation-Date: 2003-02-11 03:09-0800\n" "PO-Revision-Date: 2006-02-20 00:00+0100\n" "Last-Translator: Arnaud MOURONVAL \n" "Language-Team: French \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" msgid "Expose" msgstr "Diaporama" #, c-format msgid "Expose for %s" msgstr "Diaporama pour %s" msgid "Display" msgstr "Affichage" msgid "View Expose" msgstr "Lancer un diaporama" msgid "Path to an item (eg, /album/image.jpg.html)" msgstr "Chemin vers un élément (exemple : /album/image.jpg.html)" msgid "Blend" msgstr "Mélangeur" msgid "Blinds" msgstr "Volets" msgid "Checkerboard" msgstr "Damier" msgid "Diagonal" msgstr "Diagonal" msgid "Doors" msgstr "Portes" msgid "Gradient" msgstr "Dégradé" msgid "Iris" msgstr "Iris" msgid "Pinwheel" msgstr "Etoile" msgid "Pixelate" msgstr "Pixéliser" msgid "Radial" msgstr "Radial" msgid "Rain" msgstr "Pluie" msgid "Slide" msgstr "Glissement" msgid "Snow" msgstr "Neige" msgid "Spiral" msgstr "Spirale" msgid "Stretch" msgstr "Étendre" msgid "RANDOM" msgstr "Effet aléatoire" msgid "This album has no photos to show in a expose." msgstr "Cet album n'a pas de photo à montrer dans un diaporama." msgid "Back to Album View" msgstr "Retour à la vue de l'album" #, c-format msgid "Date: %s" msgstr "Date : %s" msgid "Hide More Info" msgstr "Cacher le supplément d'information" msgid "Show More Info" msgstr "Montrer le supplément d'information" msgid "Resume" msgstr "Reprendre" msgid "Pause" msgstr "Pause" msgid "[-]" msgstr "[-]" msgid "[+]" msgstr "[+]" msgid "Stop" msgstr "Arrêt" msgid "Back One Image" msgstr "Revenir d'une image" msgid "delay: " msgstr "délai : " msgid "1 seconds" msgstr "1 seconde" msgid "3 seconds" msgstr "3 secondes" msgid "5 seconds" msgstr "5 secondes" msgid "10 seconds" msgstr "10 secondes" msgid "15 seconds" msgstr "15 secondes" msgid "20 seconds" msgstr "20 secondes" msgid "direction: " msgstr "sens : " msgid "forward" msgstr "avant" msgid "reverse" msgstr "arrière" msgid "random" msgstr "aléatoire" msgid "max size: " msgstr "taille max : " msgid "320x320" msgstr "320x320" msgid "640x640" msgstr "640x640" msgid "800x800" msgstr "800x800" msgid "1024x1024" msgstr "1024x1024" msgid "1280x1280" msgstr "1280x1280" msgid "no limit" msgstr "pas de limite" msgid "fade: " msgstr "estomper : " module/exlide/po/hu.po0000644000175100000410000000675210444215770016262 0ustar robcoswww-data00000000000000# $Id: hu.po,v 1.1.1.1 2006/06/15 08:36:08 robcos Exp $ # # Gallery - a web based photo album viewer and editor # Copyright (C) 2000-2006 Bharat Mediratta # # 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., 51 Franklin Street - Fifth Floor, Boston, MA 02110-1301, USA. # # Previous translators (as far as known, add yourself here, please): # - Gergely Dömsödi # msgid "" msgstr "" "Project-Id-Version: Gallery: Expose 1.0.3\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2005-03-23 11:29+0100\n" "PO-Revision-Date: 2006-01-06 16:52+0100\n" "Last-Translator: Jozsef R.Nagy \n" "Language-Team: Hungarian \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" msgid "Expose" msgstr "Diavetítés" #, c-format msgid "Expose for %s" msgstr "%s diavetítése" #, fuzzy msgid "Display" msgstr "Kijelzés" msgid "View Expose" msgstr "Diavetítés Megtekintése" msgid "Path to an item (eg, /album/image.jpg.html)" msgstr "Egy elem elérési útja (pl: /album/image.jpg.html)" msgid "Blend" msgstr "Keverés" #, fuzzy msgid "Blinds" msgstr "Rolók" msgid "Checkerboard" msgstr "Sakktábla" msgid "Diagonal" msgstr "Átlós" msgid "Doors" msgstr "Ajtók" msgid "Gradient" msgstr "Fényes" msgid "Iris" msgstr "" msgid "Pinwheel" msgstr "" msgid "Pixelate" msgstr "" msgid "Radial" msgstr "" msgid "Rain" msgstr "Eső" #, fuzzy msgid "Slide" msgstr "Dia" msgid "Snow" msgstr "Hó" msgid "Spiral" msgstr "Spirál" msgid "Stretch" msgstr "Nyújtás" msgid "RANDOM" msgstr "Véletlenszerű" msgid "This album has no photos to show in a expose." msgstr "Az album nem tartalmaz képeket." msgid "Back to Album View" msgstr "Visszalépés az album nézethez" #, c-format msgid "Date: %s" msgstr "Dátum: %s" msgid "Hide More Info" msgstr "További információk elrejtése" msgid "Show More Info" msgstr "További információk" msgid "Resume" msgstr "Folytatás" msgid "Pause" msgstr "Szünet" msgid "[-]" msgstr "[-]" msgid "[+]" msgstr "[+]" msgid "Stop" msgstr "Megállítás" msgid "Back One Image" msgstr "Vissza" msgid "delay: " msgstr "késleltetés: " msgid "1 seconds" msgstr "1 másodperc" msgid "3 seconds" msgstr "3 másodperc" msgid "5 seconds" msgstr "5 másodperc" msgid "10 seconds" msgstr "10 másodperc" msgid "15 seconds" msgstr "15 másodperc" msgid "20 seconds" msgstr "20 másodperc" msgid "direction: " msgstr "irány: " msgid "forward" msgstr "előre" msgid "reverse" msgstr "visszafelé" msgid "random" msgstr "véletlenszerű" msgid "max size: " msgstr "max méret: " msgid "320x320" msgstr "320x320" msgid "640x640" msgstr "640x640" msgid "800x800" msgstr "800x800" msgid "1024x1024" msgstr "1024x1024" msgid "1280x1280" msgstr "1280x1280" msgid "no limit" msgstr "nincs limit" msgid "fade: " msgstr "áthatás: " #~ msgid "view expose" #~ msgstr "diavetítés megtekintése" module/exlide/po/is.po0000644000175100000410000000535710444215770016261 0ustar robcoswww-data00000000000000# $Id: is.po,v 1.1.1.1 2006/06/15 08:36:08 robcos Exp $ # # Gallery - a web based photo album viewer and editor # Copyright (C) 2000-2006 Bharat Mediratta # # 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., 51 Franklin Street - Fifth Floor, Boston, MA 02110-1301, USA. # msgid "" msgstr "" "Project-Id-Version: Gallery: Expose 1.0.3\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2005-03-31 19:37+0200\n" "PO-Revision-Date: 2005-04-01 17:00+0200\n" "Last-Translator: Johann S Jonsson \n" "Language-Team: Icelandic \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" msgid "Expose" msgstr "" #, c-format msgid "Expose for %s" msgstr "" msgid "Display" msgstr "" msgid "View Expose" msgstr "" msgid "Path to an item (eg, /album/image.jpg.html)" msgstr "" msgid "Blend" msgstr "" msgid "Blinds" msgstr "" msgid "Checkerboard" msgstr "" msgid "Diagonal" msgstr "" msgid "Doors" msgstr "" msgid "Gradient" msgstr "" msgid "Iris" msgstr "" msgid "Pinwheel" msgstr "" msgid "Pixelate" msgstr "" msgid "Radial" msgstr "" msgid "Rain" msgstr "" msgid "Slide" msgstr "" msgid "Snow" msgstr "" msgid "Spiral" msgstr "" msgid "Stretch" msgstr "" msgid "RANDOM" msgstr "" msgid "This album has no photos to show in a expose." msgstr "" msgid "Back to Album View" msgstr "" #, c-format msgid "Date: %s" msgstr "" msgid "Hide More Info" msgstr "" msgid "Show More Info" msgstr "" msgid "Resume" msgstr "" msgid "Pause" msgstr "" msgid "[-]" msgstr "" msgid "[+]" msgstr "" msgid "Stop" msgstr "" msgid "Back One Image" msgstr "" msgid "delay: " msgstr "" msgid "1 seconds" msgstr "" msgid "3 seconds" msgstr "" msgid "5 seconds" msgstr "" msgid "10 seconds" msgstr "" msgid "15 seconds" msgstr "" msgid "20 seconds" msgstr "" msgid "direction: " msgstr "" msgid "forward" msgstr "" msgid "reverse" msgstr "" msgid "random" msgstr "" msgid "max size: " msgstr "" msgid "320x320" msgstr "" msgid "640x640" msgstr "" msgid "800x800" msgstr "" msgid "1024x1024" msgstr "" msgid "1280x1280" msgstr "" msgid "no limit" msgstr "" msgid "fade: " msgstr "" module/exlide/po/it.po0000644000175100000410000000655310444215770016261 0ustar robcoswww-data00000000000000# $Id: it.po,v 1.1.1.1 2006/06/15 08:36:08 robcos Exp $ # # Gallery - a web based photo album viewer and editor # Copyright (C) 2000-2006 Bharat Mediratta # # 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., 51 Franklin Street - Fifth Floor, Boston, MA 02110-1301, USA. # msgid "" msgstr "" "Project-Id-Version: Gallery: Expose 1.0.3\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2005-09-16 11:54+0000\n" "PO-Revision-Date: 2005-10-13 11:32+0100\n" "Last-Translator: Ermanno Baschiera \n" "Language-Team: Italian \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-Poedit-Language: Italian\n" "X-Poedit-Country: ITALY\n" msgid "Expose" msgstr "Expose" #, c-format msgid "Expose for %s" msgstr "Expose per %s" msgid "Display" msgstr "Visualizzazione" msgid "View Expose" msgstr "Mostra Expose" msgid "Path to an item (eg, /album/image.jpg.html)" msgstr "Percorso di un oggetto (ad es. /album/immagine.jpg.html)" msgid "Blend" msgstr "Fusione" msgid "Blinds" msgstr "Tendina" msgid "Checkerboard" msgstr "Caselle" msgid "Diagonal" msgstr "Diagonale" msgid "Doors" msgstr "Porte" msgid "Gradient" msgstr "Gradiente" msgid "Iris" msgstr "Quadri dal Centro" msgid "Pinwheel" msgstr "Ruota" msgid "Pixelate" msgstr "Pixel" msgid "Radial" msgstr "Radiale" msgid "Rain" msgstr "Pioggia" msgid "Slide" msgstr "Scivolamento" msgid "Snow" msgstr "Neve" msgid "Spiral" msgstr "Spirale" msgid "Stretch" msgstr "Stringi" msgid "RANDOM" msgstr "CASUALE" msgid "This album has no photos to show in a expose." msgstr "Questo album non ha foto da mostrare in un expose" msgid "Back to Album View" msgstr "Torna alla Veduta Album" #, c-format msgid "Date: %s" msgstr "Data: %s" msgid "Hide More Info" msgstr "Nascondi Altri Informazioni" msgid "Show More Info" msgstr "Mostra Altre Informazioni" msgid "Resume" msgstr "Riprendi" msgid "Pause" msgstr "Pausa" msgid "[-]" msgstr "[-]" msgid "[+]" msgstr "[+]" msgid "Stop" msgstr "Stop" msgid "Back One Image" msgstr "Indietro di una Immagine" msgid "delay: " msgstr "attesa:" msgid "1 seconds" msgstr "1 secondo" msgid "3 seconds" msgstr "3 secondi" msgid "5 seconds" msgstr "5 secondi" msgid "10 seconds" msgstr "10 secondi" msgid "15 seconds" msgstr "15 secondi" msgid "20 seconds" msgstr "20 secondi" msgid "direction: " msgstr "direzione:" msgid "forward" msgstr "avanti" msgid "reverse" msgstr "indietro" msgid "random" msgstr "casuale" msgid "max size: " msgstr "dimensione massima:" msgid "320x320" msgstr "320x320" msgid "640x640" msgstr "640x640" msgid "800x800" msgstr "800x800" msgid "1024x1024" msgstr "1024x1024" msgid "1280x1280" msgstr "1280x1280" msgid "no limit" msgstr "nessun limite" msgid "fade: " msgstr "transizione:" module/exlide/po/ja.po0000644000175100000410000000650510444215770016234 0ustar robcoswww-data00000000000000# $Id: ja.po,v 1.1.1.1 2006/06/15 08:36:08 robcos Exp $ # # Gallery - a web based photo album viewer and editor # Copyright (C) 2000-2006 Bharat Mediratta # # 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., 51 Franklin Street - Fifth Floor, Boston, MA 02110-1301, USA. # msgid "" msgstr "" "Project-Id-Version: Gallery: Expose 1.0.3\n" "POT-Creation-Date: 2004-09-16 17:50+0900\n" "PO-Revision-Date: 2005-12-09 01:23+0900\n" "Last-Translator: Kennichi Uehara \n" "Language-Team: Japanese \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" msgid "Expose" msgstr "スライドショー" #, c-format msgid "Expose for %s" msgstr "%s のスライドショー" msgid "Display" msgstr "表示" msgid "View Expose" msgstr "スライドショーを見る" msgid "Path to an item (eg, /album/image.jpg.html)" msgstr "アイテムへのパス (例 /album/image.jpg.html)" msgid "Blend" msgstr "ブレンド" msgid "Blinds" msgstr "ブラインド" msgid "Checkerboard" msgstr "市松模様" msgid "Diagonal" msgstr "対角線" msgid "Doors" msgstr "ドア" msgid "Gradient" msgstr "" msgid "Iris" msgstr "" msgid "Pinwheel" msgstr "" msgid "Pixelate" msgstr "" msgid "Radial" msgstr "" msgid "Rain" msgstr "雨" msgid "Slide" msgstr "スライド" msgid "Snow" msgstr "雪" msgid "Spiral" msgstr "" msgid "Stretch" msgstr "伸ばす" msgid "RANDOM" msgstr "ランダム" msgid "This album has no photos to show in a expose." msgstr "このアルバムにはスライドショーで表示する画像がありません。" msgid "Back to Album View" msgstr "アルバムビューへ戻る" #, c-format msgid "Date: %s" msgstr "日付: %s" msgid "Hide More Info" msgstr "追加情報を隠す" msgid "Show More Info" msgstr "追加情報を表示" msgid "Resume" msgstr "再開" msgid "Pause" msgstr "一時停止" msgid "[-]" msgstr "[-]" msgid "[+]" msgstr "[+]" msgid "Stop" msgstr "停止(アルバムに戻る)" msgid "Back One Image" msgstr "ひとつ戻る" msgid "delay: " msgstr "ディレイ: " msgid "1 seconds" msgstr "1 秒" msgid "3 seconds" msgstr "3 秒" msgid "5 seconds" msgstr "5 秒" msgid "10 seconds" msgstr "10 秒" msgid "15 seconds" msgstr "15 秒" msgid "20 seconds" msgstr "20 秒" msgid "direction: " msgstr "方向: " msgid "forward" msgstr "進む" msgid "reverse" msgstr "逆転" msgid "random" msgstr "ランダム" msgid "max size: " msgstr "最大サイズ: " msgid "320x320" msgstr "320x320" msgid "640x640" msgstr "640x640" msgid "800x800" msgstr "800x800" msgid "1024x1024" msgstr "1024x1024" msgid "1280x1280" msgstr "1280x1280" msgid "no limit" msgstr "制限なし" msgid "fade: " msgstr "フェード: " module/exlide/po/lt.po0000644000175100000410000000705610444215770016263 0ustar robcoswww-data00000000000000# $Id: lt.po,v 1.1.1.1 2006/06/15 08:36:08 robcos Exp $ # # Gallery - a web based photo album viewer and editor # Copyright (C) 2000-2006 Bharat Mediratta # # 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., 51 Franklin Street - Fifth Floor, Boston, MA 02110-1301, USA. # Darius Žitkevičius , 2006. msgid "" msgstr "" "Project-Id-Version: Gallery: Expose 1.0.3\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2006-03-12 23:33+0200\n" "PO-Revision-Date: 2006-03-12 23:34+0200\n" "Last-Translator: Darius Žitkevičius \n" "Language-Team: Lithuanian \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && (n%100<10 || n%100>=20) ? 1 : 2);\n" "X-Generator: KBabel 1.11.1\n" msgid "Expose" msgstr "Skaidrių peržiūra" #, c-format msgid "Expose for %s" msgstr "%s skaidrių peržiūra" msgid "Display" msgstr "Vaizdas" msgid "View Expose" msgstr "Rodyti skaidrių peržiūrą" msgid "Path to an item (eg, /album/image.jpg.html)" msgstr "Kelias iki elemento (pvz.: /albumas/vaizdas.jpg.html)" msgid "Blend" msgstr "Išmaišyti" msgid "Blinds" msgstr "Aklai" msgid "Checkerboard" msgstr "Šaškių lenta" msgid "Diagonal" msgstr "Įstrižinis" msgid "Doors" msgstr "Durys" msgid "Gradient" msgstr "Gradientas" msgid "Iris" msgstr "Iris" msgid "Pinwheel" msgstr "Pinwheel" msgid "Pixelate" msgstr "Pixelate" msgid "Radial" msgstr "Radial" msgid "Rain" msgstr "Lietus" msgid "Slide" msgstr "Skaidrė" msgid "Snow" msgstr "Sniegas" msgid "Spiral" msgstr "Spiralė" msgid "Stretch" msgstr "Ištempimas" msgid "RANDOM" msgstr "ATSITIKTINIS" msgid "This album has no photos to show in a expose." msgstr "Šiame albume nėra fotografijų skaidrių peržiūrai" msgid "Back to Album View" msgstr "Atgal į albumo vaizdą" #, c-format msgid "Date: %s" msgstr "Data: %s" msgid "Hide More Info" msgstr "Neberodyti papildomos informacijos" msgid "Show More Info" msgstr "Rodyti papildomą informaciją" msgid "Resume" msgstr "Tęsti" msgid "Pause" msgstr "Pauzė" msgid "[-]" msgstr "[-]" msgid "[+]" msgstr "[+]" msgid "Stop" msgstr "Stop" msgid "Back One Image" msgstr "Vienu atgal" msgid "delay: " msgstr "Užlaikyti: " msgid "1 seconds" msgstr "1 sekundę" msgid "3 seconds" msgstr "3 sekundes" msgid "5 seconds" msgstr "5 sekundes" msgid "10 seconds" msgstr "10 sekundžių" msgid "15 seconds" msgstr "15 sekundžių" msgid "20 seconds" msgstr "20 sekundžių" msgid "direction: " msgstr "kryptis: " msgid "forward" msgstr "pirmyn" msgid "reverse" msgstr "atgal" msgid "random" msgstr "atsitiktinis" msgid "max size: " msgstr "maksimalus dydis: " msgid "320x320" msgstr "320x320" msgid "640x640" msgstr "640x640" msgid "800x800" msgstr "800x800" msgid "1024x1024" msgstr "1024x1024" msgid "1280x1280" msgstr "1280x1280" msgid "no limit" msgstr "be ribos" msgid "fade: " msgstr "Atsirasti palaipsniui: " module/exlide/po/nl.po0000644000175100000410000000701210444215770016245 0ustar robcoswww-data00000000000000# $Id: nl.po,v 1.1.1.1 2006/06/15 08:36:08 robcos Exp $ # # Gallery - a web based photo album viewer and editor # Copyright (C) 2000-2006 Bharat Mediratta # # 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., 51 Franklin Street - Fifth Floor, Boston, MA 02110-1301, USA. # # Previous translators: # Gidie , 2005 msgid "" msgstr "" "Project-Id-Version: Gallery: Expose 1.0.3\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2005-02-03 20:12+0100\n" "PO-Revision-Date: 2005-02-03 20:30+0100\n" "Last-Translator: Gidie \n" "Language-Team: Dutch \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" msgid "Expose" msgstr "Diashow" #, c-format msgid "Expose for %s" msgstr "Diashow voor %s" msgid "Display" msgstr "Weergave" msgid "View Expose" msgstr "Diashow Weergeven" msgid "Path to an item (eg, /album/image.jpg.html)" msgstr "Pad naar een item (bijv, /album/afbeelding.jpg.html)" msgid "Blend" msgstr "Oplossen" msgid "Blinds" msgstr "Blindering horizontaal" msgid "Checkerboard" msgstr "Dambord naar rechts" msgid "Diagonal" msgstr "Oprollen naar rechtsonder" msgid "Doors" msgstr "Openslaande deuren" msgid "Gradient" msgstr "Overgang van links naar rechts" msgid "Iris" msgstr "Naar alle hoeken" msgid "Pinwheel" msgstr "Draaiwiel" msgid "Pixelate" msgstr "Pixels" msgid "Radial" msgstr "Rondgang" msgid "Rain" msgstr "Willekeurige balken verticaal" msgid "Slide" msgstr "Dia" msgid "Snow" msgstr "Sneeuw" msgid "Spiral" msgstr "Spiraal" msgid "Stretch" msgstr "Uitstrekken" msgid "RANDOM" msgstr "WILLEKEURIG" msgid "This album has no photos to show in a expose." msgstr "Dit album bevat geen albeelding om in een diashow weer te geven." msgid "Back to Album View" msgstr "Terug naar de Album Weergave" #, c-format msgid "Date: %s" msgstr "Datum: %s" msgid "Hide More Info" msgstr "Verberg Meer Info" msgid "Show More Info" msgstr "Meer Info Weergeven" msgid "Resume" msgstr "Hervatten" msgid "Pause" msgstr "Pauze" msgid "[-]" msgstr "[-]" msgid "[+]" msgstr "[+]" msgid "Stop" msgstr "Stop" msgid "Back One Image" msgstr "Eén Afbeelding terug" msgid "delay: " msgstr "vertraging: " msgid "1 seconds" msgstr "1 seconde" msgid "3 seconds" msgstr "3 seconden" msgid "5 seconds" msgstr "5 seconden" msgid "10 seconds" msgstr "10 seconden" msgid "15 seconds" msgstr "15 seconden" msgid "20 seconds" msgstr "20 seconden" msgid "direction: " msgstr "richting:" msgid "forward" msgstr "voorwaarts" msgid "reverse" msgstr "achterwaarts" msgid "random" msgstr "willekeurig" msgid "max size: " msgstr "maximale groote" msgid "320x320" msgstr "320x320" msgid "640x640" msgstr "640x640" msgid "800x800" msgstr "800x600" msgid "1024x1024" msgstr "1024x1024" msgid "1280x1280" msgstr "1280x1280" msgid "no limit" msgstr "geen limiet" msgid "fade: " msgstr "overgang: " module/exlide/po/no.po0000644000175100000410000000671510444215770016261 0ustar robcoswww-data00000000000000# $Id: no.po,v 1.1.1.1 2006/06/15 08:36:08 robcos Exp $ # # Gallery - a web based photo album viewer and editor # Copyright (C) 2000-2006 Bharat Mediratta # # 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., 51 Franklin Street - Fifth Floor, Boston, MA 02110-1301, USA. # # Previous translators (as far as known, add yourself here, please): # - Sverre M. Vikan msgid "" msgstr "" "Project-Id-Version: Gallery: Expose 1.0.3\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2005-01-10 11:05+0100\n" "PO-Revision-Date: 2006-03-10 12:45+0100\n" "Last-Translator: Sverre M. Vikan \n" "Language-Team: Norwegian \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=utf-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" msgid "Expose" msgstr "Lysbildevisning" #, c-format msgid "Expose for %s" msgstr "Lysbildevisning for %s" msgid "Display" msgstr "Visning" msgid "View Expose" msgstr "Start lysbildevisning" msgid "Path to an item (eg, /album/image.jpg.html)" msgstr "Sti til et objekt (f.eks. /album/bilde.jpg.html)" msgid "Blend" msgstr "Blande" msgid "Blinds" msgstr "Rullegardin" msgid "Checkerboard" msgstr "Sjakkbrett" msgid "Diagonal" msgstr "Diagonal" msgid "Doors" msgstr "Dører" msgid "Gradient" msgstr "Overgang" msgid "Iris" msgstr "Iris" msgid "Pinwheel" msgstr "Vindmølle" msgid "Pixelate" msgstr "Pikselere" msgid "Radial" msgstr "Radial" msgid "Rain" msgstr "Regn" msgid "Slide" msgstr "Glidende" msgid "Snow" msgstr "Snø" msgid "Spiral" msgstr "Spiral" msgid "Stretch" msgstr "Strekk" msgid "RANDOM" msgstr "TILFELDIG" msgid "This album has no photos to show in a expose." msgstr "Dette albumet har ingen bilder å vise i en lysbildevisning." msgid "Back to Album View" msgstr "Tilbake til albumvisning" #, c-format msgid "Date: %s" msgstr "Dato: %s" msgid "Hide More Info" msgstr "Skjul mer info" msgid "Show More Info" msgstr "Vis mer info" msgid "Resume" msgstr "Gjenoppta" msgid "Pause" msgstr "Pause" msgid "[-]" msgstr "[-]" msgid "[+]" msgstr "[+]" msgid "Stop" msgstr "Stopp" msgid "Back One Image" msgstr "Tilbake ett bilde" msgid "delay: " msgstr "forsinkelse: " msgid "1 seconds" msgstr "1 sekund" msgid "3 seconds" msgstr "3 sekunder" msgid "5 seconds" msgstr "5 sekunder" msgid "10 seconds" msgstr "10 sekunder" msgid "15 seconds" msgstr "15 sekunder" msgid "20 seconds" msgstr "20 sekunder" msgid "direction: " msgstr "retning: " msgid "forward" msgstr "fremover" msgid "reverse" msgstr "bakover" msgid "random" msgstr "tilfeldig" msgid "max size: " msgstr "største størrelse: " msgid "320x320" msgstr "320x320" msgid "640x640" msgstr "640x640" msgid "800x800" msgstr "800x800" msgid "1024x1024" msgstr "1024x1024" msgid "1280x1280" msgstr "1280x1280" msgid "no limit" msgstr "ingen grense" msgid "fade: " msgstr "dempe: " module/exlide/po/pl.po0000644000175100000410000000667110444215770016261 0ustar robcoswww-data00000000000000# $Id: pl.po,v 1.1.1.1 2006/06/15 08:36:08 robcos Exp $ # # Gallery - a web based photo album viewer and editor # Copyright (C) 2000-2006 Bharat Mediratta # # 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., 51 Franklin Street - Fifth Floor, Boston, MA 02110-1301, USA. msgid "" msgstr "" "Project-Id-Version: Gallery: Expose 1.0.3\n" "POT-Creation-Date: 2006-02-23 10:15+0100\n" "PO-Revision-Date: 2006-03-02 13:30+0100\n" "Last-Translator: Kappana\n" "Language-Team: Polish \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=3; plural=(n==1 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" "X-Poedit-Language: Polish\n" "X-Poedit-Country: POLAND\n" msgid "Expose" msgstr "Pokaz slajdów" #, c-format msgid "Expose for %s" msgstr "Pokaz slajdów dla %s" msgid "Display" msgstr "Wygląd" msgid "View Expose" msgstr "Pokaz slajdów" msgid "Path to an item (eg, /album/image.jpg.html)" msgstr "Ścieżka dostępu do pozycji (np. /album/image.jpg.html)" msgid "Blend" msgstr "Przenikanie" msgid "Blinds" msgstr "Żaluzje" msgid "Checkerboard" msgstr "Szachownica" msgid "Diagonal" msgstr "Ukośnie" msgid "Doors" msgstr "Drzwi" msgid "Gradient" msgstr "Przejście" msgid "Iris" msgstr "Na zewnątrz" msgid "Pinwheel" msgstr "Spirala" msgid "Pixelate" msgstr "Pikseloza" msgid "Radial" msgstr "Zegar" msgid "Rain" msgstr "Deszcz" msgid "Slide" msgstr "Slajd" msgid "Snow" msgstr "Śnieg" msgid "Spiral" msgstr "Do środka" msgid "Stretch" msgstr "Kostka" msgid "RANDOM" msgstr "PRZYPADKOWY" msgid "This album has no photos to show in a expose." msgstr "W tym albumie nie ma żadnych zdjęć do pokazania." msgid "Back to Album View" msgstr "Powróć do przeglądania albumu" #, c-format msgid "Date: %s" msgstr "Data: %s" msgid "Hide More Info" msgstr "Ukryj szczegóły" msgid "Show More Info" msgstr "Pokaż szczegóły" msgid "Resume" msgstr "Wznów pokaz" msgid "Pause" msgstr "Wstrzymaj pokaz" msgid "[-]" msgstr "[-]" msgid "[+]" msgstr "[+]" msgid "Stop" msgstr "Zatrzymaj pokaz" msgid "Back One Image" msgstr "Jedno zdjęcie wstecz" msgid "delay: " msgstr "opóźnienie:" msgid "1 seconds" msgstr "1 sekunda" msgid "3 seconds" msgstr "3 sekundy" msgid "5 seconds" msgstr "5 sekund" msgid "10 seconds" msgstr "10 sekund" msgid "15 seconds" msgstr "15 sekund" msgid "20 seconds" msgstr "20 sekund" msgid "direction: " msgstr "kierunek:" msgid "forward" msgstr "do przodu" msgid "reverse" msgstr "wstecz" msgid "random" msgstr "przypadkowy" msgid "max size: " msgstr "max rozmiar:" msgid "320x320" msgstr "320x320" msgid "640x640" msgstr "640x640" msgid "800x800" msgstr "800x800" msgid "1024x1024" msgstr "1024x1024" msgid "1280x1280" msgstr "1280x1280" msgid "no limit" msgstr "bez ograniczeń" msgid "fade: " msgstr "przejście: " module/exlide/po/pt.po0000644000175100000410000000567610444215771016276 0ustar robcoswww-data00000000000000# $Id: pt.po,v 1.1.1.1 2006/06/15 08:36:09 robcos Exp $ # # Gallery - a web based photo album viewer and editor # Copyright (C) 2000-2006 Bharat Mediratta # # 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., 51 Franklin Street - Fifth Floor, Boston, MA 02110-1301, USA. # msgid "" msgstr "" "Project-Id-Version: Gallery: Expose 1.0.3\n" "POT-Creation-Date: 2006-02-01 15:09+0100\n" "PO-Revision-Date: 2006-02-26 17:03-0500\n" "Last-Translator: Alex\n" "Language-Team: Portuguese \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" msgid "Expose" msgstr "Expose" #, c-format msgid "Expose for %s" msgstr "Expose para %s" msgid "Display" msgstr "" msgid "View Expose" msgstr "Ver Expose" msgid "Path to an item (eg, /album/image.jpg.html)" msgstr "" msgid "Blend" msgstr "" msgid "Blinds" msgstr "" msgid "Checkerboard" msgstr "" msgid "Diagonal" msgstr "" msgid "Doors" msgstr "" msgid "Gradient" msgstr "" msgid "Iris" msgstr "" msgid "Pinwheel" msgstr "" msgid "Pixelate" msgstr "" msgid "Radial" msgstr "" msgid "Rain" msgstr "" msgid "Slide" msgstr "" msgid "Snow" msgstr "" msgid "Spiral" msgstr "" msgid "Stretch" msgstr "" msgid "RANDOM" msgstr "" msgid "This album has no photos to show in a expose." msgstr "" msgid "Back to Album View" msgstr "" #, c-format msgid "Date: %s" msgstr "Data: %s" msgid "Hide More Info" msgstr "" msgid "Show More Info" msgstr "" msgid "Resume" msgstr "Resumir" msgid "Pause" msgstr "Pausar" msgid "[-]" msgstr "[-]" msgid "[+]" msgstr "[+]" msgid "Stop" msgstr "" msgid "Back One Image" msgstr "" msgid "delay: " msgstr "" msgid "1 seconds" msgstr "1 segundo" msgid "3 seconds" msgstr "3 segundos" msgid "5 seconds" msgstr "5 segundos" msgid "10 seconds" msgstr "10 segundos" msgid "15 seconds" msgstr "15 segundos" msgid "20 seconds" msgstr "20 segundos" msgid "direction: " msgstr "direção:" msgid "forward" msgstr "para frente" msgid "reverse" msgstr "para trás" msgid "random" msgstr "aleatório" msgid "max size: " msgstr "tamanho máximo" msgid "320x320" msgstr "320x320" msgid "640x640" msgstr "640x640" msgid "800x800" msgstr "800x600" msgid "1024x1024" msgstr "1024x1024" msgid "1280x1280" msgstr "1280x1280" msgid "no limit" msgstr "sem limite" msgid "fade: " msgstr "" module/exlide/po/pt_BR.po0000644000175100000410000000627310444215771016653 0ustar robcoswww-data00000000000000# $Id: pt_BR.po,v 1.1.1.1 2006/06/15 08:36:09 robcos Exp $ # # Gallery - a web based photo album viewer and editor # Copyright (C) 2000-2006 Bharat Mediratta # # 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., 51 Franklin Street - Fifth Floor, Boston, MA 02110-1301, USA. # msgid "" msgstr "" "Project-Id-Version: Gallery: Expose 1.0.3\n" "POT-Creation-Date: 2006-02-01 15:09+0100\n" "PO-Revision-Date: 2006-02-26 17:03-0500\n" "Last-Translator: Alex\n" "Language-Team: Brazilian Portuguese \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" msgid "Expose" msgstr "Expose" #, c-format msgid "Expose for %s" msgstr "Expose para %s" msgid "Display" msgstr "Mostrar" msgid "View Expose" msgstr "Ver Expose" msgid "Path to an item (eg, /album/image.jpg.html)" msgstr "Caminho para um item (exemplo, /album/imagem.jpg.html)" msgid "Blend" msgstr "" msgid "Blinds" msgstr "" msgid "Checkerboard" msgstr "" msgid "Diagonal" msgstr "" msgid "Doors" msgstr "" msgid "Gradient" msgstr "" msgid "Iris" msgstr "" msgid "Pinwheel" msgstr "" msgid "Pixelate" msgstr "" msgid "Radial" msgstr "" msgid "Rain" msgstr "" msgid "Slide" msgstr "" msgid "Snow" msgstr "" msgid "Spiral" msgstr "" msgid "Stretch" msgstr "" msgid "RANDOM" msgstr "ALEATÓRIO" msgid "This album has no photos to show in a expose." msgstr "Este álbum não contém fotos para mostrar no expose." msgid "Back to Album View" msgstr "Voltar para o Álbum" #, c-format msgid "Date: %s" msgstr "Data: %s" msgid "Hide More Info" msgstr "Esconder Mais Informações" msgid "Show More Info" msgstr "Mostrar Mais Informações" msgid "Resume" msgstr "Resumir" msgid "Pause" msgstr "Pausar" msgid "[-]" msgstr "[-]" msgid "[+]" msgstr "[+]" msgid "Stop" msgstr "Parar" msgid "Back One Image" msgstr "Voltar Uma Imagem" msgid "delay: " msgstr "atraso: " msgid "1 seconds" msgstr "1 segundo" msgid "3 seconds" msgstr "3 segundos" msgid "5 seconds" msgstr "5 segundos" msgid "10 seconds" msgstr "10 segundos" msgid "15 seconds" msgstr "15 segundos" msgid "20 seconds" msgstr "20 segundos" msgid "direction: " msgstr "direção:" msgid "forward" msgstr "para frente" msgid "reverse" msgstr "para trás" msgid "random" msgstr "aleatório" msgid "max size: " msgstr "tamanho máximo" msgid "320x320" msgstr "320x320" msgid "640x640" msgstr "640x640" msgid "800x800" msgstr "800x600" msgid "1024x1024" msgstr "1024x1024" msgid "1280x1280" msgstr "1280x1280" msgid "no limit" msgstr "sem limite" msgid "fade: " msgstr "transição:" module/exlide/po/ru.po0000644000175100000410000000770310444215771016272 0ustar robcoswww-data00000000000000# $Id: ru.po,v 1.1.1.1 2006/06/15 08:36:09 robcos Exp $ # # Gallery - a web based photo album viewer and editor # Copyright (C) 2000-2006 Bharat Mediratta # # 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., 51 Franklin Street - Fifth Floor, Boston, MA 02110-1301, USA. # # Previous translators (as far as known, add yourself here, please): # - Konstantin Ivanov # msgid "" msgstr "" "Project-Id-Version: Gallery: Expose 1.0.3\n" "POT-Creation-Date: 2003-02-11 03:09-0800\n" "PO-Revision-Date: 2006-03-17 17:37+0300\n" "Last-Translator: Konstantin Ivanov \n" "Language-Team: Russian \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-Poedit-Language: Russian\n" "X-Poedit-Country: RUSSIAN FEDERATION\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" msgid "Expose" msgstr "Слайд-шоу" #, c-format msgid "Expose for %s" msgstr "Слайд-шоу для %s" msgid "Display" msgstr "Отображение" msgid "View Expose" msgstr "Слайд-шоу" msgid "Path to an item (eg, /album/image.jpg.html)" msgstr "Путь к элементу (например, /album/image.jpg.html)" msgid "Blend" msgstr "Затемнение" msgid "Blinds" msgstr "Жалюзи" msgid "Checkerboard" msgstr "Шахматная доска" msgid "Diagonal" msgstr "Диагональ" msgid "Doors" msgstr "Двери" msgid "Gradient" msgstr "Градиент" msgid "Iris" msgstr "Диафрагма" msgid "Pinwheel" msgstr "Вертушка" msgid "Pixelate" msgstr "Пиксели" msgid "Radial" msgstr "Круг" msgid "Rain" msgstr "Дождь" msgid "Slide" msgstr "Слайд" msgid "Snow" msgstr "Снег" msgid "Spiral" msgstr "Спираль" msgid "Stretch" msgstr "Кубик" msgid "RANDOM" msgstr "СЛУЧАЙНО" msgid "This album has no photos to show in a expose." msgstr "Этот альбом не содержит фотографий для просмотра в слайд-шоу." msgid "Back to Album View" msgstr "Вернуться в Альбомный вид." #, c-format msgid "Date: %s" msgstr "Дата: %s" msgid "Hide More Info" msgstr "Спрятать подробную информацию" msgid "Show More Info" msgstr "Показать больше информации" msgid "Resume" msgstr "Возобновить" msgid "Pause" msgstr "Пауза" msgid "[-]" msgstr "[-]" msgid "[+]" msgstr "[+]" msgid "Stop" msgstr "Стоп" msgid "Back One Image" msgstr "Одно Изображение Назад" msgid "delay: " msgstr "Зарержка:" msgid "1 seconds" msgstr "1 секунда" msgid "3 seconds" msgstr "3 секунды" msgid "5 seconds" msgstr "5 секунд" msgid "10 seconds" msgstr "10 секунд" msgid "15 seconds" msgstr "15 секунд" msgid "20 seconds" msgstr "20 секунд" msgid "direction: " msgstr "направление:" msgid "forward" msgstr "прямое" msgid "reverse" msgstr "обратное" msgid "random" msgstr "случайно" msgid "max size: " msgstr "макс. размер:" msgid "320x320" msgstr "320x320" msgid "640x640" msgstr "640x640" msgid "800x800" msgstr "800x800" msgid "1024x1024" msgstr "1024x1024" msgid "1280x1280" msgstr "1280x1280" msgid "no limit" msgstr "без ограничений " msgid "fade: " msgstr "переход:" module/exlide/po/sr.po0000644000175100000410000000651510444215771016270 0ustar robcoswww-data00000000000000# $Id: sr.po,v 1.1.1.1 2006/06/15 08:36:09 robcos Exp $ # # Gallery - a web based photo album viewer and editor # Copyright (C) 2000-2006 Bharat Mediratta # # 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., 51 Franklin Street - Fifth Floor, Boston, MA 02110-1301, USA. # msgid "" msgstr "" "Project-Id-Version: Gallery: Expose 1.0.3\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2005-08-14 16:53+0200\n" "PO-Revision-Date: 2005-09-05 07:03+0200\n" "Last-Translator: Jozef Selesi \n" "Language-Team: Srpski \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-Generator: KBabel 1.10\n" msgid "Expose" msgstr "Projekcija slika" #, c-format msgid "Expose for %s" msgstr "Projekcija za %s" msgid "Display" msgstr "Prikaz" msgid "View Expose" msgstr "Prikaz projekcije" msgid "Path to an item (eg, /album/image.jpg.html)" msgstr "Putanja do objekta (npr. /album/slika.jpg.html)" msgid "Blend" msgstr "Preliv" msgid "Blinds" msgstr "Roletna" msgid "Checkerboard" msgstr "Šahovska tabla" msgid "Diagonal" msgstr "Dijagonalan" msgid "Doors" msgstr "Vrata" msgid "Gradient" msgstr "Gradijent" msgid "Iris" msgstr "Iris" msgid "Pinwheel" msgstr "Točak" msgid "Pixelate" msgstr "Pikselisanje" msgid "Radial" msgstr "Radjalan" msgid "Rain" msgstr "Kiša" msgid "Slide" msgstr "Slajd" msgid "Snow" msgstr "Sneg" msgid "Spiral" msgstr "Spirala" msgid "Stretch" msgstr "Razvlačenje" msgid "RANDOM" msgstr "SLUČAJAN" msgid "This album has no photos to show in a expose." msgstr "Ovaj album nema fotografija za prikaz u projekciji." msgid "Back to Album View" msgstr "Povratak u albumski prikaz" #, c-format msgid "Date: %s" msgstr "Datum: %s" msgid "Hide More Info" msgstr "Sakrij dodatne informacije" msgid "Show More Info" msgstr "Prikaži dodatne informacije" msgid "Resume" msgstr "Nastavi" msgid "Pause" msgstr "Pauziraj" msgid "[-]" msgstr "[-]" msgid "[+]" msgstr "[+]" msgid "Stop" msgstr "Zaustavi" msgid "Back One Image" msgstr "Jedna slika u nazad" msgid "delay: " msgstr "interval: " msgid "1 seconds" msgstr "1 sekunda" msgid "3 seconds" msgstr "3 sekunde" msgid "5 seconds" msgstr "5 sekundi" msgid "10 seconds" msgstr "10 sekundi" msgid "15 seconds" msgstr "15 sekundi" msgid "20 seconds" msgstr "20 sekundi" msgid "direction: " msgstr "smer:" msgid "forward" msgstr "napred" msgid "reverse" msgstr "nazad" msgid "random" msgstr "slučajan" msgid "max size: " msgstr "max veličina: " msgid "320x320" msgstr "320x320" msgid "640x640" msgstr "640x640" msgid "800x800" msgstr "800x800" msgid "1024x1024" msgstr "1024x1024" msgid "1280x1280" msgstr "1280x1280" msgid "no limit" msgstr "bez ograničenja" msgid "fade: " msgstr "prelaz: " module/exlide/po/strings.raw0000644000175100000410000000037110444215771017502 0ustar robcoswww-data00000000000000# $Id: strings.raw,v 1.1.1.1 2006/06/15 08:36:09 robcos Exp $ /* module.inc */ gettext("Exlide") gettext("Display") gettext("View flash slideshow") gettext("Generate xml for albums") gettext("Generate xml for pictures") gettext("Expose slideshow") module/exlide/po/sv.po0000644000175100000410000000737710444215771016303 0ustar robcoswww-data00000000000000# $Id: sv.po,v 1.1.1.1 2006/06/15 08:36:09 robcos Exp $ # # Gallery - a web based photo album viewer and editor # Copyright (C) 2000-2006 Bharat Mediratta # # 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., 51 Franklin Street - Fifth Floor, Boston, MA 02110-1301, USA. # # Swedish translation # Christian Wallin , 2002-2005. # Mikael Gustafsson , 2003-2005. # Peter Liversten , 2003-2005. # Hampus Nygren , 2005. # # Changed the translation from html to UTF-8 # Anders Lindquist , 2005 # msgid "" msgstr "" "Project-Id-Version: Gallery: Expose 1.0.3\n" "Report-Msgid-Bugs-To: gallery-translations@lists.sourceforge.net\n" "POT-Creation-Date: 2003-02-11 03:09-0800\n" "PO-Revision-Date: 2005-10-29 12:40+0200\n" "Last-Translator: Anders Lindquist \n" "Language-Team: Swedish \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-Poedit-Language: Swedish\n" "X-Poedit-Country: SWEDEN\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" msgid "Expose" msgstr "Bildspel" #, c-format msgid "Expose for %s" msgstr "Bildspel för %s" msgid "Display" msgstr "Visa" msgid "View Expose" msgstr "Visa Bildspel" msgid "Path to an item (eg, /album/image.jpg.html)" msgstr "Sökväg till ett objekt (t.ex. /album/image.jpg.html)" msgid "Blend" msgstr "Sammansmältning" msgid "Blinds" msgstr "Persiennränder" msgid "Checkerboard" msgstr "Rutbräde" msgid "Diagonal" msgstr "Diagonal" msgid "Doors" msgstr "Dörrar" msgid "Gradient" msgstr "Svep" msgid "Iris" msgstr "Kors" msgid "Pinwheel" msgstr "Ekerhjul" msgid "Pixelate" msgstr "Pixlar" msgid "Radial" msgstr "Klocka" msgid "Rain" msgstr "Regn" msgid "Slide" msgstr "Dia" msgid "Snow" msgstr "Snö" msgid "Spiral" msgstr "Spirale" msgid "Stretch" msgstr "Dragning" msgid "RANDOM" msgstr "SLUMPMÄSSIGT" msgid "This album has no photos to show in a expose." msgstr "Detta album har inga foton att visa i ett bildspel." msgid "Back to Album View" msgstr "Tillbaka till albumvisning" #, c-format msgid "Date: %s" msgstr "Datum: %s" msgid "Hide More Info" msgstr "Göm mer information" msgid "Show More Info" msgstr "Visa mer information" msgid "Resume" msgstr "Summering" msgid "Pause" msgstr "Paus" msgid "[-]" msgstr "[-]" msgid "[+]" msgstr "[+]" msgid "Stop" msgstr "Stopp" msgid "Back One Image" msgstr "Backa en bild" msgid "delay: " msgstr "fördröj: " msgid "1 seconds" msgstr "1 sekund" msgid "3 seconds" msgstr "3 sekunder" msgid "5 seconds" msgstr "5 sekunder" msgid "10 seconds" msgstr "10 sekunder" msgid "15 seconds" msgstr "15 sekunder" msgid "20 seconds" msgstr "20 sekunder" msgid "direction: " msgstr "riktning: " msgid "forward" msgstr "framåt" msgid "reverse" msgstr "bakåt" msgid "random" msgstr "slumpmässigt" msgid "max size: " msgstr "maximal storlek: " msgid "320x320" msgstr "320x320" msgid "640x640" msgstr "640x640" msgid "800x800" msgstr "800x800" msgid "1024x1024" msgstr "1024x1024" msgid "1280x1280" msgstr "1280x1280" msgid "no limit" msgstr "ingen begränsning" msgid "fade: " msgstr "tona: " module/exlide/po/tr.po0000644000175100000410000000676110444215771016274 0ustar robcoswww-data00000000000000# $Id: tr.po,v 1.1.1.1 2006/06/15 08:36:09 robcos Exp $ # # Gallery - a web based photo album viewer and editor # Copyright (C) 2000-2006 Bharat Mediratta # # 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., 51 Franklin Street - Fifth Floor, Boston, MA 02110-1301, USA. # # Previous translators (as far as known, add yourself here, please): # - Jens Tkotz # - Frederik Kunz # msgid "" msgstr "" "Project-Id-Version: Gallery: Expose 1.0.3\n" "POT-Creation-Date: 2003-02-11 03:09-0800\n" "PO-Revision-Date: 2005-10-06 06:14+0200\n" "Last-Translator: Goker ISIK \n" "Language-Team: Turkish \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Poedit-Language: Turkish\n" "X-Poedit-Country: TURKEY\n" msgid "Expose" msgstr "Slaytgösterisi" #, c-format msgid "Expose for %s" msgstr "%s Slaytgösterisi" msgid "Display" msgstr "Görüntüle" msgid "View Expose" msgstr "Slaytgösterisini Görüntüle" msgid "Path to an item (eg, /album/image.jpg.html)" msgstr "Ögeye klasör yolu (ör, /album/image.jpg.html)" msgid "Blend" msgstr "Blend" msgid "Blinds" msgstr "Blinds" msgid "Checkerboard" msgstr "Checkerboard" msgid "Diagonal" msgstr "Diagonal" msgid "Doors" msgstr "Doors" msgid "Gradient" msgstr "Gradient" msgid "Iris" msgstr "Iris" msgid "Pinwheel" msgstr "Pinwheel" msgid "Pixelate" msgstr "Pixelate" msgid "Radial" msgstr "Radial" msgid "Rain" msgstr "Rain" msgid "Slide" msgstr "Slayt" msgid "Snow" msgstr "Snow" msgid "Spiral" msgstr "Spiral" msgid "Stretch" msgstr "Stretch" msgid "RANDOM" msgstr "RASTGELE" msgid "This album has no photos to show in a expose." msgstr "Bu albüm slaygöstersinde görüntülenecek hiçbir foto içermiyor." msgid "Back to Album View" msgstr "Albüm Görüntülemeye Geri Dön" #, c-format msgid "Date: %s" msgstr "Tarih: %s" msgid "Hide More Info" msgstr "Daha Fazla Bilgiyi Sakla" msgid "Show More Info" msgstr "Daha Fazla Bilgi Göster" msgid "Resume" msgstr "Devam ET" msgid "Pause" msgstr "Duraklat" msgid "[-]" msgstr "[-]" msgid "[+]" msgstr "[+]" msgid "Stop" msgstr "Dur" msgid "Back One Image" msgstr "Tek Resime Dön" msgid "delay: " msgstr "gecikme:" msgid "1 seconds" msgstr "1 saniye" msgid "3 seconds" msgstr "3 saniye" msgid "5 seconds" msgstr "5 saniye" msgid "10 seconds" msgstr "10 saniye" msgid "15 seconds" msgstr "15 saniye" msgid "20 seconds" msgstr "20 saniye" msgid "direction: " msgstr "yön:" msgid "forward" msgstr "ileri" msgid "reverse" msgstr "tersden" msgid "random" msgstr "rastgele" msgid "max size: " msgstr "maks boyut:" msgid "320x320" msgstr "320x320" msgid "640x640" msgstr "640x640" msgid "800x800" msgstr "800x800" msgid "1024x1024" msgstr "1024x1024" msgid "1280x1280" msgstr "1280x1280" msgid "no limit" msgstr "limit yok" msgid "fade: " msgstr "kaybolarak:" module/exlide/po/vi.po0000644000175100000410000000666110444215771016264 0ustar robcoswww-data00000000000000# $Id: vi.po,v 1.1.1.1 2006/06/15 08:36:09 robcos Exp $ # # Gallery - a web based photo album viewer and editor # Copyright (C) 2000-2006 Bharat Mediratta # # 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., 51 Franklin Street - Fifth Floor, Boston, MA 02110-1301, USA. # msgid "" msgstr "" "Project-Id-Version: Gallery: Expose 1.0.3\n" "POT-Creation-Date: 2005-05-23 11:25-0400\n" "PO-Revision-Date: 2005-08-02 12:41+0100\n" "Last-Translator: Trung Dong Huynh \n" "Language-Team: Vietnamese \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" msgid "Expose" msgstr "Trình chiếu" #, c-format msgid "Expose for %s" msgstr "Trình chiếu cho %s" msgid "Display" msgstr "Hiển thị" msgid "View Expose" msgstr "Xem trình chiếu" msgid "Path to an item (eg, /album/image.jpg.html)" msgstr "Đường dẫn đến một đối tượng (ví dụ như /album/image.jpg.html)" msgid "Blend" msgstr "Trộn lẫn" msgid "Blinds" msgstr "Màn sáo" msgid "Checkerboard" msgstr "Ô bàn cờ" msgid "Diagonal" msgstr "Xéo" msgid "Doors" msgstr "Cửa" msgid "Gradient" msgstr "Chuyển dần" msgid "Iris" msgstr "Con ngươi" msgid "Pinwheel" msgstr "Bánh xe" msgid "Pixelate" msgstr "Ô hóa" msgid "Radial" msgstr "Tỏa tròn" msgid "Rain" msgstr "Mưa" msgid "Slide" msgstr "Trượt" msgid "Snow" msgstr "Tuyết" msgid "Spiral" msgstr "Xoắn ốc" msgid "Stretch" msgstr "Kéo dãn" msgid "RANDOM" msgstr "Chọn ngẫu nhiên" msgid "This album has no photos to show in a expose." msgstr "Album này không có ảnh để trình chiếu." msgid "Back to Album View" msgstr "Quay lại album" #, c-format msgid "Date: %s" msgstr "Ngày: %s" msgid "Hide More Info" msgstr "Dấu bớt thông tin" msgid "Show More Info" msgstr "Hiển thị thêm thông tin" msgid "Resume" msgstr "Chạy tiếp" msgid "Pause" msgstr "Tạm dừng" msgid "[-]" msgstr "[-]" msgid "[+]" msgstr "[+]" msgid "Stop" msgstr "Dừng lại" msgid "Back One Image" msgstr "Quay lại một ảnh" msgid "delay: " msgstr "độ trễ:" msgid "1 seconds" msgstr "1 giây" msgid "3 seconds" msgstr "3 giây" msgid "5 seconds" msgstr "5 giây" msgid "10 seconds" msgstr "10 giây" msgid "15 seconds" msgstr "15 giây" msgid "20 seconds" msgstr "20 giây" msgid "direction: " msgstr "hướng:" msgid "forward" msgstr "đi tới" msgid "reverse" msgstr "đi lui" msgid "random" msgstr "ngẫu nhiên" msgid "max size: " msgstr "kích thước tối đa:" msgid "320x320" msgstr "320x320" msgid "640x640" msgstr "640x640" msgid "800x800" msgstr "800x800" msgid "1024x1024" msgstr "1024x1024" msgid "1280x1280" msgstr "1280x1280" msgid "no limit" msgstr "không giới hạn" msgid "fade: " msgstr "mờ dần:" #~ msgid "view expose" #~ msgstr "xem trình chiếu" module/exlide/po/zh_CN.po0000644000175100000410000000647510444215771016652 0ustar robcoswww-data00000000000000# $Id: zh_CN.po,v 1.1.1.1 2006/06/15 08:36:09 robcos Exp $ # # Gallery - a web based photo album viewer and editor # Copyright (C) 2000-2006 Bharat Mediratta # # 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., 51 Franklin Street - Fifth Floor, Boston, MA 02110-1301, USA. # msgid "" msgstr "" "Project-Id-Version: Gallery: Expose 1.0.3\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2005-03-28 14:00+0800\n" "PO-Revision-Date: 2005-03-31 14:00+0800\n" "Last-Translator: Wayne Zhang \n" "Language-Team: Chinese Simplified \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n != 1;\n" msgid "Expose" msgstr "幻灯片放映" #, c-format msgid "Expose for %s" msgstr "%s 的幻灯片放映" msgid "Display" msgstr "显示" #, fuzzy msgid "View Expose" msgstr "查看幻灯片放映" msgid "Path to an item (eg, /album/image.jpg.html)" msgstr "" msgid "Blend" msgstr "混合" msgid "Blinds" msgstr "百叶窗" msgid "Checkerboard" msgstr "棋盘" msgid "Diagonal" msgstr "对角线" msgid "Doors" msgstr "门状" msgid "Gradient" msgstr "梯形" msgid "Iris" msgstr "彩虹" msgid "Pinwheel" msgstr "风车" msgid "Pixelate" msgstr "点状" msgid "Radial" msgstr "放射状" msgid "Rain" msgstr "雨" msgid "Slide" msgstr "幻灯片" msgid "Snow" msgstr "雪" msgid "Spiral" msgstr "螺旋形" msgid "Stretch" msgstr "拉伸" msgid "RANDOM" msgstr "随机" msgid "This album has no photos to show in a expose." msgstr "此相册没有可在幻灯片放映中使用的照片。" msgid "Back to Album View" msgstr "返回相册查看" #, c-format msgid "Date: %s" msgstr "日期: %s" msgid "Hide More Info" msgstr "隐藏更多信息" msgid "Show More Info" msgstr "显示更多信息" msgid "Resume" msgstr "继续" msgid "Pause" msgstr "暂停" msgid "[-]" msgstr "[-]" msgid "[+]" msgstr "[+]" msgid "Stop" msgstr "停止" msgid "Back One Image" msgstr "返回单个图片显示" msgid "delay: " msgstr "延时:" msgid "1 seconds" msgstr "1秒" msgid "3 seconds" msgstr "3秒" msgid "5 seconds" msgstr "5秒" msgid "10 seconds" msgstr "10秒" msgid "15 seconds" msgstr "15秒" msgid "20 seconds" msgstr "20秒" msgid "direction: " msgstr "方向:" msgid "forward" msgstr "向前" msgid "reverse" msgstr "向后" msgid "random" msgstr "随机" msgid "max size: " msgstr "最大尺寸:" msgid "320x320" msgstr "320 x 320" msgid "640x640" msgstr "640 x 640" msgid "800x800" msgstr "800 x 800" msgid "1024x1024" msgstr "1024 x 1024" msgid "1280x1280" msgstr "1280 x 1280" msgid "no limit" msgstr "无限制" msgid "fade: " msgstr "淡出:" #~ msgid "view expose" #~ msgstr "查看幻灯片放映" module/exlide/po/zh_TW.po0000644000175100000410000000645710444215771016704 0ustar robcoswww-data00000000000000# $Id: zh_TW.po,v 1.1.1.1 2006/06/15 08:36:09 robcos Exp $ # # Gallery - a web based photo album viewer and editor # Copyright (C) 2000-2006 Bharat Mediratta # # 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., 51 Franklin Street - Fifth Floor, Boston, MA 02110-1301, USA. # msgid "" msgstr "" "Project-Id-Version: Gallery: Expose 1.0.3\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2005-03-28 14:00+0800\n" "PO-Revision-Date: 2005-03-31 14:00+0800\n" "Last-Translator: Stephen Chu \n" "Language-Team: Chinese Traditional \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=1; plural=0;\n" msgid "Expose" msgstr "幻燈片放映" #, c-format msgid "Expose for %s" msgstr "%s 的幻燈片放映" msgid "Display" msgstr "顯示" msgid "View Expose" msgstr "觀賞幻燈片" msgid "Path to an item (eg, /album/image.jpg.html)" msgstr "項目的路徑(如 /album/image.jpg.html)" msgid "Blend" msgstr "混合" msgid "Blinds" msgstr "百葉窗" msgid "Checkerboard" msgstr "棋盤" msgid "Diagonal" msgstr "對角線" msgid "Doors" msgstr "門" msgid "Gradient" msgstr "漸層" msgid "Iris" msgstr "虹" msgid "Pinwheel" msgstr "風車" msgid "Pixelate" msgstr "點狀" msgid "Radial" msgstr "放射狀" msgid "Rain" msgstr "雨" msgid "Slide" msgstr "幻燈片" msgid "Snow" msgstr "雪" msgid "Spiral" msgstr "螺旋形" msgid "Stretch" msgstr "拉伸" msgid "RANDOM" msgstr "隨機" msgid "This album has no photos to show in a expose." msgstr "這個相簿沒有可在幻燈片放映中使用的照片。" msgid "Back to Album View" msgstr "返回相簿顯示方式" #, c-format msgid "Date: %s" msgstr "日期: %s" msgid "Hide More Info" msgstr "隱藏更多資訊" msgid "Show More Info" msgstr "顯示更多資訊" msgid "Resume" msgstr "繼續" msgid "Pause" msgstr "暫停" msgid "[-]" msgstr "[-]" msgid "[+]" msgstr "[+]" msgid "Stop" msgstr "停止" msgid "Back One Image" msgstr "往回一個圖片" msgid "delay: " msgstr "延遲:" msgid "1 seconds" msgstr "一秒鐘" msgid "3 seconds" msgstr "三秒鐘" msgid "5 seconds" msgstr "五秒鐘" msgid "10 seconds" msgstr "十秒鐘" msgid "15 seconds" msgstr "15秒鐘" msgid "20 seconds" msgstr "20秒鐘" msgid "direction: " msgstr "方向:" msgid "forward" msgstr "向前" msgid "reverse" msgstr "向後" msgid "random" msgstr "隨機" msgid "max size: " msgstr "最大尺寸:" msgid "320x320" msgstr "320x320" msgid "640x640" msgstr "640x640" msgid "800x800" msgstr "800x800" msgid "1024x1024" msgstr "1024x1024" msgid "1280x1280" msgstr "1280x1280" msgid "no limit" msgstr "無限制" msgid "fade: " msgstr "淡出:" module/exlide/smarty/0000755000175100000410000000000010455012333016165 5ustar robcoswww-data00000000000000module/exlide/smarty/templates_c/0000755000175100000410000000000010455012333020465 5ustar robcoswww-data00000000000000module/exlide/smarty/templates_c/dummy0000644000175100000410000000010010444513123021533 0ustar robcoswww-data00000000000000This file is here only so that CVS keeps this (empty) directory module/exlide/templates/0000755000175100000410000000000010476023621016651 5ustar robcoswww-data00000000000000module/exlide/templates/Albums.tpl0000644000175100000410000000132410444215771020621 0ustar robcoswww-data00000000000000{* * $Revision: 1.1.1.1 $ * If you want to customize this file, do not edit it directly since future upgrades * may overwrite it. Instead, copy it into a new directory called "local" and edit that * version. Gallery will look for that file first and use it if it exists. *} {foreach from=$items item=item} {if isset($item.album->title)} {$item.album->title} {else } Album {$item.album->id} {/if } {$item.thumb} xml/{$item.album->id}/pictures.xml {$item.contentnumber} {/foreach} module/exlide/templates/Expose.tpl0000755000175100017510000000763110476023621020414 0ustar robcosrobcos00000000000000{* * $Revision: 1.4 $ * If you want to customize this file, do not edit it directly since future upgrades * may overwrite it. Instead, copy it into a new directory called "local" and edit that * version. Gallery will look for that file first and use it if it exists. *} Photos

exposé 4.4 by Ivan Dramaliev, www.slooz.com, ©2003-2005

Exlide; by Roberto Cosenza, robcos.com, ©2006
module/exlide/templates/Expose.tpl.specialflash0000644000175100000410000000445110444215771023302 0ustar robcoswww-data00000000000000{* * $Revision: 1.1.1.1 $ * If you want to customize this file, do not edit it directly since future upgrades * may overwrite it. Instead, copy it into a new directory called "local" and edit that * version. Gallery will look for that file first and use it if it exists. *} SWFObject embed by Geoff Stearns (full page) @ deconcept
You need to upgrade your Flash Player This is replaced by the Flash content. Place your alternate content here and users without the Flash plugin or with Javascript turned off will see this. Content here allows you to leave out noscript tags. Include a link to bypass the detection if you wish.
module/exlide/templates/Header.tpl0000644000175100000410000000050110444215771020562 0ustar robcoswww-data00000000000000{* * $Revision: 1.1.1.1 $ * If you want to customize this file, do not edit it directly since future upgrades * may overwrite it. Instead, copy it into a new directory called "local" and edit that * version. Gallery will look for that file first and use it if it exists. *} module/exlide/templates/Pictures.tpl0000644000175100000410000000121010444215771021166 0ustar robcoswww-data00000000000000{* * $Revision: 1.1.1.1 $ * If you want to customize this file, do not edit it directly since future upgrades * may overwrite it. Instead, copy it into a new directory called "local" and edit that * version. Gallery will look for that file first and use it if it exists. *} {foreach from=$items item=item} {$item.title} {$item.date} {$item.location} {$item.image} {$item.small} {$item.large} {/foreach} README0000644000175100000410000000424610444215770013005 0ustar robcoswww-data00000000000000EXLIDE 0.9 - A Expose 4 (flash) slideshow module for Gallery2 INTRODUCTION Tired of the boring javascript slideshow bundled with Gallery I decided to integrate a nicer flash slideshow into its own module. Expose uses an xml source to show one or more albums, with thumnails, comment and, of course, a nice transaction between the pictures. INSTALLATION & REQUIREMENTS Gallery2 with mod_rewrite enabled should work. Set up the module: Copy the content of the archive into your gallery2/modules directory. The final path should look like $GALLERYPATH/modules/exlide. Set up the flash: Download Expose from http://www.slooz.com/download.php?f=expose4_r4.zip Unzio the archive and copy the "expose" folder and the "showpic.html" file into your "$docroot/exlide" (f.i public_html/exlide) in so that the folder exlide is visible through your webserver. If your Gallery installation is visible at http://mywebserver.com than the content of the exlide folder should be accessible at http://mywebserver.com/exlide If you did all correctly, http://mywebserver.com/exlide/expose/swf/expose.swf should show a "Expose 4" flash icon. Make sure the webserver has write access to the directory $GALLERYPATH/modules/exlide/smarty/templates_c (you may need to run chmod 775 templates_c) Install the module from the Gallery2 administration panel and activate URL rewriting for the module (you need to activate all three options that you will find in the Exlide URL Rewriting menu) http://mywebserver.com/exlide/0 will now show all your albums :-D Using an album id instead of 0, will restrict the slideshow to only the given album! Have fun! LINKS Expose 4 - http://www.slooz.com/trinkets.php?proj=expose DEMO SITE 1 - http://foto.viaggiarenelpollino.com DEMO SITE 2 - http://photo.robcos.com Gallery 2 - http://gallery.menalto.com/ TODO - Add support for nested albums - Add support for Gallery2 description, date and comments - Finish internationalization LICENSE This program is free. I will spare you all the "legalese". Of course, there is no guarantee but I will be happy to help if you need. EXPOSE is NOT free!! Please consult http://www.slooz.com/trinkets.php?proj=expose before using the slideshow!