commit 7f98309ef99feb47a8847c395a8f5b5f46c5dde4 Author: phantomjinx <p.g.richard...@phantomjinx.co.uk> Date: Mon Jul 5 22:16:46 2010 +0100
Rehash of the "No ext database" message * Attempt to improve the message to make it more informative. Still think it could be further improved. src/file_itunesdb.c | 10 +++++++++- 1 files changed, 9 insertions(+), 1 deletions(-) --- diff --git a/src/file_itunesdb.c b/src/file_itunesdb.c index d33c948..1c058be 100644 --- a/src/file_itunesdb.c +++ b/src/file_itunesdb.c @@ -474,7 +474,15 @@ iTunesDB *gp_import_itdb (iTunesDB *old_itdb, const gint type, { if (!read_extended_info (name_ext, name_db)) { - gtkpod_warning (_("Extended info will not be used. If you have non-transferred tracks,\nthese will be lost.\n")); + gchar *msg = g_strdup_printf(_("The repository %s does not have a readable extended database.\n"), name_db); + msg = g_strconcat(msg, + _("This database identifies the track on disk with the track data in the repository database."), + _("Any tracks already in the database cannot be transferred between repositories without the extended database."), + _("A new extended database will be created upon saving but existing tracks will need to be reimported to be linked to the file on disk."), + NULL); + + gtkpod_warning (msg); + g_free(msg); } } itdb = itdb_parse_file (name_db, &error); ------------------------------------------------------------------------------ This SF.net email is sponsored by Sprint What will you do first with EVO, the first 4G phone? Visit sprint.com/first -- http://p.sf.net/sfu/sprint-com-first _______________________________________________ gtkpod-cvs2 mailing list gtkpod-cvs2@lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/gtkpod-cvs2