pidgin/gtkaccount.c

changeset 24594
b2da1decae23
parent 24578
4b0fd98a170c
child 24636
7de30a65dead
equal deleted inserted replaced
24593:b4e54ce1116e 24594:b2da1decae23
2147 /* Translators: Please maintain the use of -> or <- to represent the menu heirarchy */ 2147 /* Translators: Please maintain the use of -> or <- to represent the menu heirarchy */
2148 tmp = g_strdup_printf(_( 2148 tmp = g_strdup_printf(_(
2149 "<span size='larger' weight='bold'>Welcome to %s!</span>\n\n" 2149 "<span size='larger' weight='bold'>Welcome to %s!</span>\n\n"
2150 2150
2151 "You have no IM accounts configured. To start connecting with %s " 2151 "You have no IM accounts configured. To start connecting with %s "
2152 "press the <b>Add</b> button below and configure your first " 2152 "press the <b>Add...</b> button below and configure your first "
2153 "account. If you want %s to connect to multiple IM accounts, " 2153 "account. If you want %s to connect to multiple IM accounts, "
2154 "press <b>Add</b> again to configure them all.\n\n" 2154 "press <b>Add...</b> again to configure them all.\n\n"
2155 2155
2156 "You can come back to this window to add, edit, or remove " 2156 "You can come back to this window to add, edit, or remove "
2157 "accounts from <b>Accounts->Manage Accounts</b> in the Buddy " 2157 "accounts from <b>Accounts->Manage Accounts</b> in the Buddy "
2158 "List window"), PIDGIN_NAME, PIDGIN_NAME, PIDGIN_NAME); 2158 "List window"), PIDGIN_NAME, PIDGIN_NAME, PIDGIN_NAME);
2159 pretty = pidgin_make_pretty_arrows(tmp); 2159 pretty = pidgin_make_pretty_arrows(tmp);
2283 sw = create_accounts_list(dialog); 2283 sw = create_accounts_list(dialog);
2284 gtk_box_pack_start(GTK_BOX(vbox), sw, TRUE, TRUE, 0); 2284 gtk_box_pack_start(GTK_BOX(vbox), sw, TRUE, TRUE, 0);
2285 gtk_widget_show(sw); 2285 gtk_widget_show(sw);
2286 2286
2287 /* Add button */ 2287 /* Add button */
2288 pidgin_dialog_add_button(GTK_DIALOG(win), GTK_STOCK_ADD, G_CALLBACK(add_account_cb), dialog); 2288 pidgin_dialog_add_button(GTK_DIALOG(win), PIDGIN_STOCK_ADD, G_CALLBACK(add_account_cb), dialog);
2289 2289
2290 /* Modify button */ 2290 /* Modify button */
2291 button = pidgin_dialog_add_button(GTK_DIALOG(win), PIDGIN_STOCK_MODIFY, G_CALLBACK(modify_account_cb), dialog); 2291 button = pidgin_dialog_add_button(GTK_DIALOG(win), PIDGIN_STOCK_MODIFY, G_CALLBACK(modify_account_cb), dialog);
2292 dialog->modify_button = button; 2292 dialog->modify_button = button;
2293 gtk_widget_set_sensitive(button, FALSE); 2293 gtk_widget_set_sensitive(button, FALSE);

mercurial