Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
gajim
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package Registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
TSRh
gajim
Commits
9065e17d
Commit
9065e17d
authored
19 years ago
by
nkour
Browse files
Options
Downloads
Patches
Plain Diff
better strings; remove double import
parent
0cbb37e8
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
src/config.py
+3
-6
3 additions, 6 deletions
src/config.py
with
3 additions
and
6 deletions
src/config.py
+
3
−
6
View file @
9065e17d
...
...
@@ -28,7 +28,6 @@
import
gtkgui_helpers
import
dialogs
import
cell_renderer_image
import
cell_renderer_image
try
:
import
gtkspell
...
...
@@ -2886,13 +2885,14 @@ def on_forward_button_clicked(self, widget):
register_new
=
False
#FIXME: pango me
finish_text
=
_
(
'
Account has been added successfully.
\n
'
'
You can set advanced options by
using
"
Edit->Accounts
"
from the main window.
'
)
'
You can set advanced
account
options by
clicking in Accounts menuitem under Edit menu
from the main window.
'
)
elif
cur_page
==
2
:
widgets
=
self
.
get_widgets
(
'
register_
'
)
register_new
=
True
#FIXME: pango me
finish_text
=
_
(
'
Your new account has been created successfully.
\n
'
'
You can set advanced account options using
"
Edit->Accounts
"
in the main window menu.
'
)
'
You can set advanced account options by clicking in Accounts menuitem under Edit menu from the main window.
'
)
user
=
widgets
[
'
nick_entry
'
].
get_text
().
decode
(
'
utf-8
'
)
server
=
widgets
[
'
server_comboboxentry
'
].
child
.
get_text
()
...
...
@@ -2946,9 +2946,6 @@ def on_server_comboboxentry_key_press_event(self, widget, event):
widgets
[
'
nick_entry
'
].
set_position
(
-
1
)
return
True
def
on_useproxy_expander_activate
(
self
,
widget
):
widgets
=
self
.
get_matching_widgets
(
widget
)
def
update_jid
(
self
,
widget
):
widgets
=
self
.
get_matching_widgets
(
widget
)
name
=
widgets
[
'
nick_entry
'
].
get_text
().
decode
(
'
utf-8
'
)
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment