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
|
===== What is this app? =====
gallery-uploader is a script that allows you to easily upload pictures to a
remote Gallery (http://gallery.menalto.com/) installation. It is particularly
suggested for use from Nautilus, the default (GNOME) filemanager.
Last version of gallery-uploader can always be found at
http://www.pietrobattiston.it/gallery_uploader.
===== How do I install it? =====
There two ways to install gallery-uploader:
1) Single-user, as Nautilus script: just move into the extracted folder and
double-click "install.sh". This will uninstall previous versions if detected.
2) System-wide, as standalone program: open a terminal into the extracted folder
and run "sudo python setup.py install". Notice this will install it also as a
system-wide nautilus script: single users can enable it using for instance
nautilus-scripts-manager
(see http://www.pietrobattiston.it/nautilus-scripts-manager )
===== What are its requirements? =====
You need python (tested only with 2.6) and pygtk (2.12 or later should work),
both present in standard Linux installations.
Gallery-uploader was created to be used from Nautilus, GNOME's default
filemanager, but it is in no way tied to it: if you prefer, you can use it from
shell, by giving the names of the images to load as arguments. If it doesn't get
any argument, it will open a small browser which can be used to select the
desired pictures. This browser, which makes gallery-uploader a real standalone
program, requires the additional dependence python-gnome in order to work.
Gallery-uploader uses a slightly reorganized version of the gup library, by
Julio Biason (http://code.google.com/p/galleryuploader/), which is included in
the folder "guplib" of the distributed archive. The difference from the original
is that it doesn't include the gup.py script, but part of its contents are
contained in the newly created guplib.py.
===== Who should I blame if this sucks? =====
Pietro Battiston - <toobaz@email.it>
===== How to translate to my language? =====
Take the file po/messages.pot, copy it to "yourlanguagecode.po" (e.g. "fr.po"),
edit it with poedit.
Then, from the base directory, give the following command (replace "fr" with
your language code):
msgmft po/fr.po -o locale/fr/LC_MESSAGES/gallery_uploader.mo
Finally, send me the .po file so I can include it in the distribution.
|