Skip to content
This repository has been archived by the owner on Nov 27, 2019. It is now read-only.

Mark plugins module for translation #266

Open
wants to merge 1 commit into
base: develop
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
2 changes: 1 addition & 1 deletion cmsplugin_filer_file/cms_plugins.py
Expand Up @@ -15,7 +15,7 @@

class FilerFilePlugin(CMSPluginBase):
form = FilerFileForm
module = 'Filer'
module = _('Filer')
model = FilerFile
name = _("File")
TEMPLATE_NAME = 'cmsplugin_filer_file/plugins/file/%s.html'
Expand Down
2 changes: 1 addition & 1 deletion cmsplugin_filer_folder/cms_plugins.py
Expand Up @@ -11,7 +11,7 @@


class FilerFolderPlugin(CMSPluginBase):
module = 'Filer'
module = _('Filer')
model = models.FilerFolder
name = _("Folder")
TEMPLATE_NAME = 'cmsplugin_filer_folder/plugins/folder/%s.html'
Expand Down
2 changes: 1 addition & 1 deletion cmsplugin_filer_image/cms_plugins.py
Expand Up @@ -17,7 +17,7 @@ class FilerImagePlugin(CMSPluginBase):
admin_preview = False
form = FilerImageForm
model = FilerImage
module = 'Filer'
module = _('Filer')
name = _("Image")
raw_id_fields = ('image', 'page_link')
text_enabled = True
Expand Down
2 changes: 1 addition & 1 deletion cmsplugin_filer_link/cms_plugins.py
Expand Up @@ -14,7 +14,7 @@
class FilerLinkPlugin(CMSPluginBase):
form = FilerLinkForm
model = FilerLinkPluginModel
module = 'Filer'
module = _('Filer')
name = _("Link")
raw_id_fields = ('page_link', )
render_template = "cmsplugin_filer_link/link.html"
Expand Down
2 changes: 1 addition & 1 deletion cmsplugin_filer_teaser/cms_plugins.py
Expand Up @@ -11,7 +11,7 @@ class FilerTeaserPlugin(CMSPluginBase):
TODO: this plugin is becoming very similar to the image plugin... code
should be re-used somehow.
"""
module = 'Filer'
module = _('Filer')
model = models.FilerTeaser
raw_id_fields = ('page_link',)
name = _("Teaser")
Expand Down
2 changes: 1 addition & 1 deletion cmsplugin_filer_video/cms_plugins.py
Expand Up @@ -10,7 +10,7 @@


class FilerVideoPlugin(CMSPluginBase):
module = 'Filer'
module = _('Filer')
model = FilerVideo
name = _("Video")
form = VideoForm
Expand Down