diff options
author | Jorg Schuler <jcsjcs@users.sourceforge.net> | 2007-01-14 13:34:07 +0000 |
---|---|---|
committer | Jorg Schuler <jcsjcs@users.sourceforge.net> | 2007-01-14 13:34:07 +0000 |
commit | ba3bfa8a68ec01b32340a7c29065a58ce833946b (patch) | |
tree | eef77addeba41163e995306cbfb022bfb932c834 | |
parent | a16684f1e47dadec1e6896cdbb87553b042c6599 (diff) | |
download | libgpod-ba3bfa8a68ec01b32340a7c29065a58ce833946b.tar.gz libgpod-ba3bfa8a68ec01b32340a7c29065a58ce833946b.tar.xz libgpod-ba3bfa8a68ec01b32340a7c29065a58ce833946b.zip |
* tests/test-photos.c:
src/itdb_photoalbum.c: fixed two typos in message strings.
git-svn-id: https://gtkpod.svn.sf.net/svnroot/gtkpod/libgpod/trunk@1362 f01d2545-417e-4e96-918e-98f8d0dbbcb6
-rw-r--r-- | ChangeLog | 5 | ||||
-rw-r--r-- | src/itdb_photoalbum.c | 4 | ||||
-rw-r--r-- | tests/test-photos.c | 2 |
3 files changed, 8 insertions, 3 deletions
@@ -1,3 +1,8 @@ +2007-01-14 Jorg Schuler <jcsjcs at users.sourceforge.net> + + * tests/test-photos.c: + src/itdb_photoalbum.c: fixed two typos in message strings. + 2007-01-13 Todd Zullinger <tmzullinger at users.sourceforge.net> * bindings/python/Makefile.am: don't include any swig built diff --git a/src/itdb_photoalbum.c b/src/itdb_photoalbum.c index 108ae76..f9aa048 100644 --- a/src/itdb_photoalbum.c +++ b/src/itdb_photoalbum.c @@ -1,4 +1,4 @@ -/* Time-stamp: <2006-11-24 12:59:36 jcs> +/* Time-stamp: <2007-01-15 01:02:46 jcs> | | Copyright (C) 2002-2006 Jorg Schuler <jcsjcs at users sourceforge net> | Part of the gtkpod project. @@ -447,7 +447,7 @@ static Itdb_Artwork *itdb_photodb_add_photo_internal (Itdb_PhotoDB *db, return artwork; #else g_set_error (error, 0, -1, - _("Library compiled without gkdpixbuf support. Picture support is disabled.")); + _("Library compiled without gdk-pixbuf support. Picture support is disabled.")); return NULL; #endif } diff --git a/tests/test-photos.c b/tests/test-photos.c index e288525..af9b2df 100644 --- a/tests/test-photos.c +++ b/tests/test-photos.c @@ -340,7 +340,7 @@ static int do_remove (int argc, char **argv) /* Remove photoalbum altogether, but preserve pics */ if (album == NULL) { - g_print (_("Cannot remove Photo Libarary playlist. Aborting.\n")); + g_print (_("Cannot remove Photo Library playlist. Aborting.\n")); itdb_photodb_free (db); return 1; } |