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
Model registry
Operate
Environments
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
John Smith
gajim
Commits
42ec6b60
Commit
42ec6b60
authored
13 years ago
by
Dicson
Browse files
Options
Downloads
Patches
Plain Diff
set new translation domaine for plugins
parent
2b11c7f8
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
plugins/banner_tweaks/plugin.py
+1
-2
1 addition, 2 deletions
plugins/banner_tweaks/plugin.py
plugins/length_notifier/length_notifier.py
+1
-2
1 addition, 2 deletions
plugins/length_notifier/length_notifier.py
plugins/roster_buttons/plugin.py
+1
-2
1 addition, 2 deletions
plugins/roster_buttons/plugin.py
with
3 additions
and
6 deletions
plugins/banner_tweaks/plugin.py
+
1
−
2
View file @
42ec6b60
...
...
@@ -34,7 +34,6 @@ import sys
import
gtk
import
gobject
import
message_control
from
common
import
i18n
from
common
import
gajim
from
common
import
helpers
...
...
@@ -159,7 +158,7 @@ class BannerTweaksPluginConfigDialog(GajimPluginConfigDialog):
self
.
GTK_BUILDER_FILE_PATH
=
self
.
plugin
.
local_file_path
(
'
config_dialog.ui
'
)
self
.
xml
=
gtk
.
Builder
()
self
.
xml
.
set_translation_domain
(
i18n
.
APP
)
self
.
xml
.
set_translation_domain
(
'
gajim_plugins
'
)
self
.
xml
.
add_objects_from_file
(
self
.
GTK_BUILDER_FILE_PATH
,
[
'
banner_tweaks_config_vbox
'
])
self
.
config_vbox
=
self
.
xml
.
get_object
(
'
banner_tweaks_config_vbox
'
)
...
...
This diff is collapsed.
Click to expand it.
plugins/length_notifier/length_notifier.py
+
1
−
2
View file @
42ec6b60
...
...
@@ -27,7 +27,6 @@ Message length notifier plugin.
import
sys
import
gtk
from
common
import
i18n
from
plugins
import
GajimPlugin
from
plugins.helpers
import
log
,
log_calls
...
...
@@ -112,7 +111,7 @@ class LengthNotifierPluginConfigDialog(GajimPluginConfigDialog):
self
.
GTK_BUILDER_FILE_PATH
=
self
.
plugin
.
local_file_path
(
'
config_dialog.ui
'
)
self
.
xml
=
gtk
.
Builder
()
self
.
xml
.
set_translation_domain
(
i18n
.
APP
)
self
.
xml
.
set_translation_domain
(
'
gajim_plugins
'
)
self
.
xml
.
add_objects_from_file
(
self
.
GTK_BUILDER_FILE_PATH
,
[
'
length_notifier_config_table
'
])
self
.
config_table
=
self
.
xml
.
get_object
(
'
length_notifier_config_table
'
)
...
...
This diff is collapsed.
Click to expand it.
plugins/roster_buttons/plugin.py
+
1
−
2
View file @
42ec6b60
...
...
@@ -27,7 +27,6 @@ Roster buttons plug-in.
import
sys
import
gtk
from
common
import
i18n
from
common
import
gajim
from
plugins
import
GajimPlugin
...
...
@@ -46,7 +45,7 @@ class RosterButtonsPlugin(GajimPlugin):
@log_calls
(
'
RosterButtonsPlugin
'
)
def
activate
(
self
):
self
.
xml
=
gtk
.
Builder
()
self
.
xml
.
set_translation_domain
(
i18n
.
APP
)
self
.
xml
.
set_translation_domain
(
'
gajim_plugins
'
)
self
.
xml
.
add_objects_from_file
(
self
.
GTK_BUILDER_FILE_PATH
,
[
'
roster_buttons_buttonbox
'
])
self
.
buttonbox
=
self
.
xml
.
get_object
(
'
roster_buttons_buttonbox
'
)
...
...
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