Skip to content

Commit

Permalink
[ADD] theme 9.0
Browse files Browse the repository at this point in the history
  • Loading branch information
OdooDesign authored and JKE-be committed May 11, 2021
0 parents commit ab6e6bb
Show file tree
Hide file tree
Showing 3,795 changed files with 143,023 additions and 0 deletions.
The diff you're trying to view is too large. We only load the first 3000 changed files.
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
*.pyc
27 changes: 27 additions & 0 deletions snippet_google_map/LICENSE
Original file line number Diff line number Diff line change
@@ -0,0 +1,27 @@
Odoo Proprietary License v1.0

This software and associated files (the "Software") may only be used (executed,
modified, executed after modifications) if you have purchased a valid license
from the authors, typically via Odoo Apps, or if you have received a written
agreement from the authors of the Software (see the COPYRIGHT file).

You may develop Odoo modules that use the Software as a library (typically
by depending on it, importing it and using its resources), but without copying
any source code or material from the Software. You may distribute those
modules under the license of your choice, provided that this license is
compatible with the terms of the Odoo Proprietary License (For example:
LGPL, MIT, or proprietary licenses similar to this one).

It is forbidden to publish, distribute, sublicense, or sell copies of the Software
or modified copies of the Software.

The above copyright notice and this permission notice must be included in all
copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM,
DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE,
ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
DEALINGS IN THE SOFTWARE.
1 change: 1 addition & 0 deletions snippet_google_map/__init__.py
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
import controllers
12 changes: 12 additions & 0 deletions snippet_google_map/__openerp__.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
{
'name':'Google Map Snippet',
'description':'Google Map Snippet',
'category': 'Website',
'version':'1.1',
'author':'Odoo S.A.',
'data': [
'views/assets.xml',
'views/s_google_map.xml',
],
'depends': ['theme_common'],
}
1 change: 1 addition & 0 deletions snippet_google_map/controllers/__init__.py
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
import main
17 changes: 17 additions & 0 deletions snippet_google_map/controllers/main.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
# -*- coding: utf-8 -*-
# Part of Odoo. See LICENSE file for full copyright and licensing details.

import json

from openerp import http
from openerp.http import request


class SnipperGoogleMap(http.Controller):
@http.route('/website/google_maps_api_key', type='json', auth='public', website=True)
def google_maps_api_key(self, **post):
google_maps_api_key = request.env['ir.config_parameter'].sudo().get_param('google_maps_api_key')
data = {
'google_maps_api_key': google_maps_api_key or ''
}
return json.dumps(data)
134 changes: 134 additions & 0 deletions snippet_google_map/i18n/de.po
Original file line number Diff line number Diff line change
@@ -0,0 +1,134 @@
# Translation of Odoo Server.
# This file contains the translation of the following modules:
# * snippet_google_map
#
# Translators:
# Ermin Trevisan <trevi@twanda.com>, 2017
msgid ""
msgstr ""
"Project-Id-Version: Odoo Server 10.0+e\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2017-04-21 12:26+0000\n"
"PO-Revision-Date: 2017-03-24 12:48+0000\n"
"Last-Translator: Ermin Trevisan <trevi@twanda.com>, 2017\n"
"Language-Team: German (https://www.transifex.com/odoo/teams/41243/de/)\n"
"Language: de\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: \n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"

#. module: snippet_google_map
#: model:ir.ui.view,arch_db:snippet_google_map.s_google_map
msgid ""
"<font>Visit us:</font>\n"
" <span> Our office is located in the northeast of Brussels. TEL (555) "
"432 2365 </span>"
msgstr ""
"<font>Besuchen Sie uns:</font>\n"
"<span>Sie finden uns im Norden von Brüssel. TEL (555) 432 2365 </span>"

#. module: snippet_google_map
#: model:ir.ui.view,arch_db:snippet_google_map.s_google_map_option
msgid "<i class=\"fa fa-fw fa-cog\"/>Map Options"
msgstr "<i class=\"fa fa-fw fa-cog\"/>Karten-Optionen"

#. module: snippet_google_map
#: model:ir.ui.view,arch_db:snippet_google_map.s_google_map_option
msgid "<i class=\"fa fa-fw fa-road\"/>Type"
msgstr "<i class=\"fa fa-fw fa-road\"/>Typ"

#. module: snippet_google_map
#: model:ir.ui.view,arch_db:snippet_google_map.s_google_map_option
msgid "<i class=\"fa fa-fw fa-search\"/>Zoom"
msgstr "<i class=\"fa fa-fw fa-search\"/>Zoom"

#. module: snippet_google_map
#. openerp-web
#: code:addons/snippet_google_map/static/src/xml/s_google_map_modal.xml:16
#, python-format
msgid "Address"
msgstr "Adresse"

#. module: snippet_google_map
#. openerp-web
#: code:addons/snippet_google_map/static/src/xml/s_google_map_modal.xml:37
#, python-format
msgid "Cancel"
msgstr "Abbrechen"

#. module: snippet_google_map
#. openerp-web
#: code:addons/snippet_google_map/static/src/xml/s_google_map_modal.xml:10
#, python-format
msgid "Close"
msgstr ""

#. module: snippet_google_map
#. openerp-web
#: code:addons/snippet_google_map/static/src/xml/s_google_map_modal.xml:12
#, python-format
msgid "Customize your map"
msgstr "Passen Sie Ihre Karte an"

#. module: snippet_google_map
#. openerp-web
#: code:addons/snippet_google_map/static/src/xml/s_google_map_modal.xml:31
#, python-format
msgid "Default"
msgstr "Standard"

#. module: snippet_google_map
#. openerp-web
#: code:addons/snippet_google_map/static/src/xml/s_google_map_modal.xml:30
#, python-format
msgid "Flat"
msgstr "Minimalistisch"

#. module: snippet_google_map
#: model:ir.ui.view,arch_db:snippet_google_map.s_google_map_option
msgid "Hybrid"
msgstr "Hybrid"

#. module: snippet_google_map
#. openerp-web
#: code:addons/snippet_google_map/static/src/xml/s_google_map_modal.xml:27
#, python-format
msgid "Marker Style"
msgstr "Marker-Stil"

#. module: snippet_google_map
#: model:ir.ui.view,arch_db:snippet_google_map.s_google_map_option
msgid "RoadMap"
msgstr "Straßenkarte"

#. module: snippet_google_map
#: model:ir.ui.view,arch_db:snippet_google_map.s_google_map_option
msgid "Satellite"
msgstr "Satellit"

#. module: snippet_google_map
#. openerp-web
#: code:addons/snippet_google_map/static/src/xml/s_google_map_modal.xml:38
#, python-format
msgid "Save"
msgstr "Speichern"

#. module: snippet_google_map
#: model:ir.ui.view,arch_db:snippet_google_map.s_google_map_option
msgid "Terrain"
msgstr "Gelände"

#. module: snippet_google_map
#. openerp-web
#: code:addons/snippet_google_map/static/src/xml/s_google_map_modal.xml:19
#, python-format
msgid "Your address"
msgstr "Ihre Adresse"

#. module: snippet_google_map
#. openerp-web
#: code:addons/snippet_google_map/static/src/xml/s_google_map_modal.xml:23
#, python-format
msgid "e.g. De Brouckere, Brussels, Belgium"
msgstr "z.B. De Brouckere, Brüssel, Belgien"
135 changes: 135 additions & 0 deletions snippet_google_map/i18n/es.po
Original file line number Diff line number Diff line change
@@ -0,0 +1,135 @@
# Translation of Odoo Server.
# This file contains the translation of the following modules:
# * snippet_google_map
#
# Translators:
# Daniel Blanco <daniel@blancomartin.com.ar>, 2017
msgid ""
msgstr ""
"Project-Id-Version: Odoo Server 10.0+e\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2017-04-21 12:26+0000\n"
"PO-Revision-Date: 2017-03-24 12:48+0000\n"
"Last-Translator: Daniel Blanco <daniel@blancomartin.com.ar>, 2017\n"
"Language-Team: Spanish (https://www.transifex.com/odoo/teams/41243/es/)\n"
"Language: es\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: \n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"

#. module: snippet_google_map
#: model:ir.ui.view,arch_db:snippet_google_map.s_google_map
msgid ""
"<font>Visit us:</font>\n"
" <span> Our office is located in the northeast of Brussels. TEL (555) "
"432 2365 </span>"
msgstr ""
"<font>Visítenos:</font>\n"
" <span> Nuestra oficina está ubicada al noreste de Bruselas. TEL "
"(555) 432 2365 </span>"

#. module: snippet_google_map
#: model:ir.ui.view,arch_db:snippet_google_map.s_google_map_option
msgid "<i class=\"fa fa-fw fa-cog\"/>Map Options"
msgstr "<i class=\"fa fa-fw fa-cog\"/>Opciones de Mapas"

#. module: snippet_google_map
#: model:ir.ui.view,arch_db:snippet_google_map.s_google_map_option
msgid "<i class=\"fa fa-fw fa-road\"/>Type"
msgstr "<i class=\"fa fa-fw fa-road\"/>Tipo"

#. module: snippet_google_map
#: model:ir.ui.view,arch_db:snippet_google_map.s_google_map_option
msgid "<i class=\"fa fa-fw fa-search\"/>Zoom"
msgstr "<i class=\"fa fa-fw fa-search\"/>Acercar"

#. module: snippet_google_map
#. openerp-web
#: code:addons/snippet_google_map/static/src/xml/s_google_map_modal.xml:16
#, python-format
msgid "Address"
msgstr "Dirección"

#. module: snippet_google_map
#. openerp-web
#: code:addons/snippet_google_map/static/src/xml/s_google_map_modal.xml:37
#, python-format
msgid "Cancel"
msgstr "Cancelar"

#. module: snippet_google_map
#. openerp-web
#: code:addons/snippet_google_map/static/src/xml/s_google_map_modal.xml:10
#, python-format
msgid "Close"
msgstr ""

#. module: snippet_google_map
#. openerp-web
#: code:addons/snippet_google_map/static/src/xml/s_google_map_modal.xml:12
#, python-format
msgid "Customize your map"
msgstr "Personalizar su mapa"

#. module: snippet_google_map
#. openerp-web
#: code:addons/snippet_google_map/static/src/xml/s_google_map_modal.xml:31
#, python-format
msgid "Default"
msgstr "Por defecto"

#. module: snippet_google_map
#. openerp-web
#: code:addons/snippet_google_map/static/src/xml/s_google_map_modal.xml:30
#, python-format
msgid "Flat"
msgstr "Plano"

#. module: snippet_google_map
#: model:ir.ui.view,arch_db:snippet_google_map.s_google_map_option
msgid "Hybrid"
msgstr "Híbrido"

#. module: snippet_google_map
#. openerp-web
#: code:addons/snippet_google_map/static/src/xml/s_google_map_modal.xml:27
#, python-format
msgid "Marker Style"
msgstr "Estilo del marcador"

#. module: snippet_google_map
#: model:ir.ui.view,arch_db:snippet_google_map.s_google_map_option
msgid "RoadMap"
msgstr "Mapa de ruta"

#. module: snippet_google_map
#: model:ir.ui.view,arch_db:snippet_google_map.s_google_map_option
msgid "Satellite"
msgstr "Satelite"

#. module: snippet_google_map
#. openerp-web
#: code:addons/snippet_google_map/static/src/xml/s_google_map_modal.xml:38
#, python-format
msgid "Save"
msgstr "Guardar"

#. module: snippet_google_map
#: model:ir.ui.view,arch_db:snippet_google_map.s_google_map_option
msgid "Terrain"
msgstr "Terreno"

#. module: snippet_google_map
#. openerp-web
#: code:addons/snippet_google_map/static/src/xml/s_google_map_modal.xml:19
#, python-format
msgid "Your address"
msgstr "Su dirección"

#. module: snippet_google_map
#. openerp-web
#: code:addons/snippet_google_map/static/src/xml/s_google_map_modal.xml:23
#, python-format
msgid "e.g. De Brouckere, Brussels, Belgium"
msgstr "P. Ej. De Brouckere, Bruselas, Bélgica"

0 comments on commit ab6e6bb

Please sign in to comment.