1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81
|
<?php
/*
* 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.
*
* $Id: metadataOnUpload.php 13338 2006-03-27 15:32:14Z jenst $
*/
?><?php
require_once(dirname(dirname(__FILE__)) . '/init.php');
printPopupStart(_("Metadata on Upload Help"),'', langLeft());
?>
<style>
li.top { font-weight: bold; color: red;}
</style>
<ul>
<li class="top"><?php echo _("What is meant with metadata in this context ?"); ?></li>
<p>
<?php echo _("Photos in Gallery have descriptive fields, like caption, title and other data fields. You can also define your own custom fields."); ?>
<br><?php echo _("This information is called Metadata."); ?>
</p>
<p>
<?php echo _("Normally this info is added manually inside the Gallery for each photo."); ?>
<br><?php echo _("You can also do this automatically during your uploads."); ?>
</p>
</ul>
<ul>
<li class="top"><?php echo _("How can i add the metadata?"); ?></li>
<p>
<?php printf(_("Create a %s'csv-file (Comma Separated Values)'%s which contains the data you want associated with the files you are uploading."), '<a href="http://en.wikipedia.org/wiki/Comma-separated_values">', '</a>'); ?>
<br><?php echo _("Upload this file at the same time as you upload your files, you cannot upload it later and expect Gallery to import the metadata from it."); ?>
</p>
</ul>
<ul>
<li class="top"><?php echo _("In which format has the data to be?"); ?></li>
<p>
<?php echo _("The first row must be the fieldnames, there is one mandatory field, some predefined fields and you can use your own custom fields."); ?>
<?php echo _("Order does not matter, but you have to you a <b>;</b> (Semicolon) as separator."); ?>
<ul><li><?php printf(_("Mandatory: %s"), "'Filename'"); ?>
<li><?php printf(_("Predefined: %s, %s, %s"), "'Caption'", "'Title'", "'Description'"); ?>
</ul>
<br><?php echo _("Then follow the lines containing the info it self"); ?>
</ul>
<b><?php echo _("Example:"); ?></b>
<div style="padding: 2px; border: 1px solid black">Filename;Caption;Title;Note
<br>madonna.jpg;Madonna in Concert;Madonna Picture;Live in Concert in NYC
<br>myExGirlfriend.jpg;Joan;Joan;I miss her so
<br>car.jpg;Mercedes 200D/8;Mercedes Benz Diesel built in 1976;Some day i will own it
</div>
</p>
<div align="center">
<input type="button" value="<?php echo _("Back to upload"); ?>" onclick="history.back()">
</div>
</div>
</body>
</html>
|