Skip to content
GitLab
Menu
Projects
Groups
Snippets
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in / Register
Toggle navigation
Menu
Open sidebar
savoirfairelinux
jami-daemon
Commits
93b7a5a1
Commit
93b7a5a1
authored
Feb 09, 2009
by
Emmanuel Milou
Browse files
Complete description text in the assistant manager
parent
55233da1
Changes
1
Hide whitespace changes
Inline
Side-by-side
sflphone-gtk/src/assistant.c
View file @
93b7a5a1
...
...
@@ -208,11 +208,11 @@ GtkWidget* build_sfl_or_account()
GtkWidget
*
sfl
;
GtkWidget
*
cus
;
wiz
->
sflphone_org
=
create_vbox
(
GTK_ASSISTANT_PAGE_CONTENT
,
_
(
"Account"
)
,
_
(
"
Choose SFLphone an account or a custom one
"
));
wiz
->
sflphone_org
=
create_vbox
(
GTK_ASSISTANT_PAGE_CONTENT
,
_
(
"Account"
)
,
_
(
"
Please select one of the following option:
"
));
sfl
=
gtk_radio_button_new_with_label
(
NULL
,
"sflphone.org
account
"
);
sfl
=
gtk_radio_button_new_with_label
(
NULL
,
"
Create a free SIP/IAX2 account on
sflphone.org"
);
gtk_box_pack_start
(
GTK_BOX
(
wiz
->
sflphone_org
)
,
sfl
,
TRUE
,
TRUE
,
0
);
cus
=
gtk_radio_button_new_with_label_from_widget
(
GTK_RADIO_BUTTON
(
sfl
),
"
Custom
SIP or IAX2 account"
);
cus
=
gtk_radio_button_new_with_label_from_widget
(
GTK_RADIO_BUTTON
(
sfl
),
"
Register an existing
SIP or IAX2 account"
);
gtk_box_pack_start
(
GTK_BOX
(
wiz
->
sflphone_org
)
,
cus
,
TRUE
,
TRUE
,
0
);
g_signal_connect
(
G_OBJECT
(
sfl
)
,
"clicked"
,
G_CALLBACK
(
set_sflphone_org
)
,
NULL
);
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment