Use absolute imports on all plugins
This is necessary because Gajim is with 0.16.11 a python package
This commit is contained in:
@@ -1,9 +1,9 @@
|
||||
[info]
|
||||
name: Google Translation
|
||||
short_name: google_translation
|
||||
version: 0.3.2
|
||||
version: 0.3.3
|
||||
description: Translates (currently only incoming) messages using Google Translate.
|
||||
authors: Mateusz Biliński <mateusz@bilinski.it>
|
||||
mrDoctorWho <mrdoctorwho@gmail.com>
|
||||
homepage: http://trac-plugins.gajim.org/wiki/GoogleTranslationPlugin
|
||||
min_gajim_version: 0.16.10
|
||||
min_gajim_version: 0.16.11
|
||||
|
||||
@@ -32,15 +32,12 @@ import urllib
|
||||
from gi.repository import Gtk
|
||||
from sys import getfilesystemencoding
|
||||
|
||||
import chat_control
|
||||
import groupchat_control
|
||||
from gajim import chat_control
|
||||
from gajim import groupchat_control
|
||||
|
||||
from common import helpers
|
||||
from common import gajim
|
||||
|
||||
from plugins import GajimPlugin
|
||||
from plugins.helpers import log_calls
|
||||
from common import ged
|
||||
from gajim.plugins import GajimPlugin
|
||||
from gajim.plugins.helpers import log_calls
|
||||
from gajim.common import ged
|
||||
|
||||
languages = {
|
||||
_('Afrikaans'): 'af',
|
||||
|
||||
Reference in New Issue
Block a user