~daniel-mehrmann/lightdm-gtk-greeter/master

« back to all changes in this revision

Viewing changes to src/lightdm-gtk-greeter.c

  • Committer: Package Import Robot
  • Author(s): Sean Davis
  • Date: 2014-03-13 06:35:23 UTC
  • mfrom: (1.1.11)
  • Revision ID: package-import@ubuntu.com-20140313063523-xd8k88h85b7e53v2
Tags: 1.8.3-0ubuntu1
* New upstream release (LP: #1291913)
  - Now correctly exits when logging in (LP: #1290575)

Show diffs side-by-side

added added

removed removed

Lines of Context:
1263
1263
 
1264
1264
    if (g_strcmp0 (username, "*guest") == 0)
1265
1265
    {
1266
 
        user_tooltip = g_strdup(_("Guest Account"));
 
1266
        user_tooltip = g_strdup(_("Guest Session"));
1267
1267
    }
1268
1268
 
1269
1269
    set_login_button_label (greeter, username);
1815
1815
sigterm_cb (int signum)
1816
1816
{
1817
1817
    gtk_main_quit();
1818
 
    exit (0);
1819
1818
}
1820
1819
 
1821
1820
static void
1850
1849
        gtk_list_store_append (GTK_LIST_STORE (model), &iter);
1851
1850
        gtk_list_store_set (GTK_LIST_STORE (model), &iter,
1852
1851
                            0, "*guest",
1853
 
                            1, _("Guest Account"),
 
1852
                            1, _("Guest Session"),
1854
1853
                            2, PANGO_WEIGHT_NORMAL,
1855
1854
                            -1);
1856
1855
    }