~drbob/+junk/diary-main

« back to all changes in this revision

Viewing changes to src/links/picasa.c

  • Committer: Philip Withnall
  • Date: 2008-03-23 12:35:24 UTC
  • Revision ID: philip@tecnocode.co.uk-20080323123524-eziv3p2dz11uyzgz
Fixed test profiling in the Makefile.
Some comments moved to stop them showing up in the POT file unnecessarily.
Improvements to the debug code.

Show diffs side-by-side

added added

removed removed

Lines of Context:
26
26
#include <gtk/gtk.h>
27
27
#include <glib/gi18n.h>
28
28
 
 
29
#include "../interface.h"
29
30
#include "../main.h"
30
31
#include "../link.h"
31
32
 
37
38
gchar *
38
39
link_picasa_format_value (const DiaryLink *link)
39
40
{
 
41
        /* Translators: First argument is the album name, second is the Google username. */
40
42
        return g_strdup_printf (_("Picasa: %s by %s"), link->value2, link->value);
41
43
}
42
44
 
47
49
        gchar *uri = g_strconcat ("http://picasaweb.google.com/", link->value2, "/", link->value, NULL);
48
50
 
49
51
        return_value = g_app_info_launch_default_for_uri (uri, NULL, NULL);
 
52
 
 
53
        if (return_value == FALSE)
 
54
                diary_interface_error (_("Due to an unknown error the URI cannot be opened."), diary->main_window);
 
55
 
50
56
        g_free (uri);
51
57
 
52
58
        return return_value;