Skip to content
Snippets Groups Projects
Commit 3697aa91 authored by Goffin Simon's avatar Goffin Simon
Browse files

[FIX] website_slides: Missing translation


opw:2765730

closes odoo/odoo#86987

X-original-commit: 5982d2e9
Signed-off-by: default avatarSimon Goffin <sig@odoo.com>
parent 0aeb0030
No related branches found
No related tags found
No related merge requests found
......@@ -4294,6 +4294,12 @@ msgstr ""
msgid "Security Token"
msgstr ""
#. module: website_slides
#: code:addons/website_slides/models/res_users.py:0
#, python-format
msgid "See our eLearning"
msgstr ""
#. module: website_slides
#. openerp-web
#: code:addons/website_slides/static/src/js/tours/slides_tour.js:0
......
# -*- coding: utf-8 -*-
# Part of Odoo. See LICENSE file for full copyright and licensing details.
from odoo import api, models
from odoo import api, models, _
class Users(models.Model):
......@@ -30,6 +30,6 @@ class Users(models.Model):
res = super(Users, self).get_gamification_redirection_data()
res.append({
'url': '/slides',
'label': 'See our eLearning'
'label': _('See our eLearning')
})
return res
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment