diff options
author | Jorg Schuler <jcsjcs@users.sourceforge.net> | 2006-10-31 12:52:09 +0000 |
---|---|---|
committer | Jorg Schuler <jcsjcs@users.sourceforge.net> | 2006-10-31 12:52:09 +0000 |
commit | 41eef4959b79aa425dec147e7adfc7f0410f480a (patch) | |
tree | b234f1cd42c0bd9aa1f4b6f28a55ef1de840ea5c /src | |
parent | 985268ed8c1400174f2d7e1abeb90f30abaac278 (diff) | |
download | libgpod-41eef4959b79aa425dec147e7adfc7f0410f480a.tar.gz libgpod-41eef4959b79aa425dec147e7adfc7f0410f480a.tar.xz libgpod-41eef4959b79aa425dec147e7adfc7f0410f480a.zip |
* 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
Diffstat (limited to 'src')
-rw-r--r-- | src/itdb_photoalbum.c | 9 |
1 files changed, 5 insertions, 4 deletions
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 <jcsjcs at users sourceforge net> | 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); |