From 41eef4959b79aa425dec147e7adfc7f0410f480a Mon Sep 17 00:00:00 2001 From: Jorg Schuler Date: Tue, 31 Oct 2006 12:52:09 +0000 Subject: * src/itdb_photoalbum.c: fixed typo (Libarary -> Library). git-svn-id: https://gtkpod.svn.sf.net/svnroot/gtkpod/libgpod/trunk@1332 f01d2545-417e-4e96-918e-98f8d0dbbcb6 --- ChangeLog | 4 ++++ src/itdb_photoalbum.c | 9 +++++---- 2 files changed, 9 insertions(+), 4 deletions(-) diff --git a/ChangeLog b/ChangeLog index 70c75f2..20524fb 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,7 @@ +2006-10-29 Jorg Schuler + + * src/itdb_photoalbum.c: fixed typo (Libarary -> Library). + 2006-10-29 Jorg Schuler Major rework of picture support. diff --git a/src/itdb_photoalbum.c b/src/itdb_photoalbum.c index be74a28..edc1004 100644 --- a/src/itdb_photoalbum.c +++ b/src/itdb_photoalbum.c @@ -1,4 +1,4 @@ -/* Time-stamp: <2006-10-30 01:15:39 jcs> +/* Time-stamp: <2006-10-31 21:49:36 jcs> | | Copyright (C) 2002-2006 Jorg Schuler | Part of the gtkpod project. @@ -71,7 +71,8 @@ Free all memory taken by the PhotoDB. itdb_photodb_photoalbum_by_name(): - Find the first photoalbum with a given name. + Find the first photoalbum with a given name or the Photo + Library Album if called with no name. If you cannot add photos because your iPod is not recognized, you @@ -243,7 +244,7 @@ Itdb_PhotoDB *itdb_photodb_create (const gchar *mountpoint) Itdb_PhotoDB *photodb = itdb_photodb_new (); Itdb_PhotoAlbum *album; - album = itdb_photodb_photoalbum_create (photodb, _("Photo Libarary"), -1); + album = itdb_photodb_photoalbum_create (photodb, _("Photo Library"), -1); album->album_type = 1; /* Photo Library */ if (mountpoint) @@ -433,7 +434,7 @@ static Itdb_Artwork *itdb_photodb_add_photo_internal (Itdb_PhotoDB *db, album = itdb_photodb_photoalbum_by_name (db, NULL); if (!album) { - album = itdb_photodb_photoalbum_create (db, _("Photo Libarary"), -1); + album = itdb_photodb_photoalbum_create (db, _("Photo Library"), -1); album->album_type = 1; /* Photo Library */ } itdb_photodb_photoalbum_add_photo (db, album, artwork); -- cgit