forked from OCA/web
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Signed-off-by pedrobaeza
- Loading branch information
Showing
34 changed files
with
55,164 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
../../../../web_timeline |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
import setuptools | ||
|
||
setuptools.setup( | ||
setup_requires=['setuptools-odoo'], | ||
odoo_addon=True, | ||
) |
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
# Copyright 2016 ACSONE SA/NV (<http://acsone.eu>) | ||
# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl.html). | ||
|
||
from . import models |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,36 @@ | ||
# Copyright 2016 ACSONE SA/NV (<http://acsone.eu>) | ||
# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl.html). | ||
|
||
{ | ||
"name": "Web timeline", | ||
"summary": "Interactive visualization chart to show events in time", | ||
"version": "15.0.1.0.0", | ||
"development_status": "Production/Stable", | ||
"author": "ACSONE SA/NV, " | ||
"Tecnativa, " | ||
"Monk Software, " | ||
"Onestein, " | ||
"Trobz, " | ||
"Odoo Community Association (OCA)", | ||
"category": "web", | ||
"license": "AGPL-3", | ||
"website": "https://github.com/OCA/web", | ||
"depends": ["web"], | ||
"data": [], | ||
"maintainers": ["tarteo"], | ||
"application": False, | ||
"installable": True, | ||
"assets": { | ||
"web.assets_backend": [ | ||
"web_timeline/static/src/scss/web_timeline.scss", | ||
"web_timeline/static/src/js/timeline_view.js", | ||
"web_timeline/static/src/js/timeline_renderer.js", | ||
"web_timeline/static/src/js/timeline_controller.js", | ||
"web_timeline/static/src/js/timeline_model.js", | ||
"web_timeline/static/src/js/timeline_canvas.js", | ||
], | ||
"web.assets_qweb": [ | ||
"web_timeline/static/src/xml/web_timeline.xml", | ||
], | ||
}, | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,122 @@ | ||
# Translation of Odoo Server. | ||
# This file contains the translation of the following modules: | ||
# * web_timeline | ||
# | ||
msgid "" | ||
msgstr "" | ||
"Project-Id-Version: Odoo Server 14.0\n" | ||
"Report-Msgid-Bugs-To: \n" | ||
"PO-Revision-Date: 2021-10-13 20:46+0000\n" | ||
"Last-Translator: Corneliuus <[email protected]>\n" | ||
"Language-Team: none\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" | ||
"X-Generator: Weblate 4.3.2\n" | ||
|
||
#. module: web_timeline | ||
#. openerp-web | ||
#: code:addons/web_timeline/static/src/js/timeline_renderer.js:0 | ||
#, python-format | ||
msgid "<b>UNASSIGNED</b>" | ||
msgstr "<b>NICHT ZUGEWIESEN</b>" | ||
|
||
#. module: web_timeline | ||
#. openerp-web | ||
#: code:addons/web_timeline/static/src/js/timeline_controller.js:0 | ||
#, python-format | ||
msgid "Are you sure you want to delete this record?" | ||
msgstr "Sind Sie sicher, dass Sie diesen Datensatz löschen wollen?" | ||
|
||
#. module: web_timeline | ||
#. openerp-web | ||
#: code:addons/web_timeline/static/src/xml/web_timeline.xml:0 | ||
#, python-format | ||
msgid "Day" | ||
msgstr "Tag" | ||
|
||
#. module: web_timeline | ||
#: model:ir.model.fields,field_description:web_timeline.field_ir_ui_view__display_name | ||
msgid "Display Name" | ||
msgstr "Anzeigename" | ||
|
||
#. module: web_timeline | ||
#: model:ir.model.fields,field_description:web_timeline.field_ir_ui_view__id | ||
msgid "ID" | ||
msgstr "ID" | ||
|
||
#. module: web_timeline | ||
#: model:ir.model.fields,field_description:web_timeline.field_ir_ui_view____last_update | ||
msgid "Last Modified on" | ||
msgstr "Zuletzt bearbeitet am" | ||
|
||
#. module: web_timeline | ||
#. openerp-web | ||
#: code:addons/web_timeline/static/src/xml/web_timeline.xml:0 | ||
#, python-format | ||
msgid "Month" | ||
msgstr "Monat" | ||
|
||
#. module: web_timeline | ||
#. openerp-web | ||
#: code:addons/web_timeline/static/src/js/timeline_renderer.js:0 | ||
#, python-format | ||
msgid "Template \"timeline-item\" not present in timeline view definition." | ||
msgstr "" | ||
"Vorlage \"timeline-item\" nicht in der Definition der Zeitachsenansicht " | ||
"vorhanden." | ||
|
||
#. module: web_timeline | ||
#. openerp-web | ||
#: code:addons/web_timeline/static/src/js/timeline_view.js:0 | ||
#: model:ir.model.fields.selection,name:web_timeline.selection__ir_ui_view__type__timeline | ||
#, python-format | ||
msgid "Timeline" | ||
msgstr "Zeitachse" | ||
|
||
#. module: web_timeline | ||
#. openerp-web | ||
#: code:addons/web_timeline/static/src/js/timeline_renderer.js:0 | ||
#, python-format | ||
msgid "Timeline view has not defined 'date_start' attribute." | ||
msgstr "Die Zeitachsenansicht hat das Attribut \"date_start\" nicht definiert." | ||
|
||
#. module: web_timeline | ||
#. openerp-web | ||
#: code:addons/web_timeline/static/src/xml/web_timeline.xml:0 | ||
#, python-format | ||
msgid "Today" | ||
msgstr "Heute" | ||
|
||
#. module: web_timeline | ||
#: model:ir.model,name:web_timeline.model_ir_ui_view | ||
msgid "View" | ||
msgstr "Ansicht" | ||
|
||
#. module: web_timeline | ||
#: model:ir.model.fields,field_description:web_timeline.field_ir_ui_view__type | ||
msgid "View Type" | ||
msgstr "Ansichtstyp" | ||
|
||
#. module: web_timeline | ||
#. openerp-web | ||
#: code:addons/web_timeline/static/src/js/timeline_controller.js:0 | ||
#, python-format | ||
msgid "Warning" | ||
msgstr "Warnung" | ||
|
||
#. module: web_timeline | ||
#. openerp-web | ||
#: code:addons/web_timeline/static/src/xml/web_timeline.xml:0 | ||
#, python-format | ||
msgid "Week" | ||
msgstr "Woche" | ||
|
||
#. module: web_timeline | ||
#. openerp-web | ||
#: code:addons/web_timeline/static/src/xml/web_timeline.xml:0 | ||
#, python-format | ||
msgid "Year" | ||
msgstr "Jahr" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,111 @@ | ||
# Translation of Odoo Server. | ||
# This file contains the translation of the following modules: | ||
# * web_timeline | ||
# | ||
# Translators: | ||
# Pedro M. Baeza <[email protected]>, 2017 | ||
msgid "" | ||
msgstr "" | ||
"Project-Id-Version: Odoo Server 10.0\n" | ||
"Report-Msgid-Bugs-To: \n" | ||
"POT-Creation-Date: 2018-01-03 03:50+0000\n" | ||
"PO-Revision-Date: 2018-01-03 03:50+0000\n" | ||
"Last-Translator: Pedro M. Baeza <[email protected]>, 2017\n" | ||
"Language-Team: Spanish (https://www.transifex.com/oca/teams/23907/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: web_timeline | ||
#. openerp-web | ||
#: code:addons/web_timeline/static/src/js/timeline_renderer.js:0 | ||
#, python-format | ||
msgid "<b>UNASSIGNED</b>" | ||
msgstr "" | ||
|
||
#. module: web_timeline | ||
#. openerp-web | ||
#: code:addons/web_timeline/static/src/js/timeline_controller.js:0 | ||
#, fuzzy, python-format | ||
msgid "Are you sure you want to delete this record?" | ||
msgstr "¿Está seguro que desea eliminar este registro?" | ||
|
||
#. module: web_timeline | ||
#. openerp-web | ||
#: code:addons/web_timeline/static/src/xml/web_timeline.xml:0 | ||
#, python-format | ||
msgid "Day" | ||
msgstr "Día" | ||
|
||
#. module: web_timeline | ||
#. openerp-web | ||
#: code:addons/web_timeline/static/src/xml/web_timeline.xml:0 | ||
#, python-format | ||
msgid "Month" | ||
msgstr "Mes" | ||
|
||
#. module: web_timeline | ||
#. openerp-web | ||
#: code:addons/web_timeline/static/src/js/timeline_renderer.js:0 | ||
#, python-format | ||
msgid "Template \"timeline-item\" not present in timeline view definition." | ||
msgstr "" | ||
|
||
#. module: web_timeline | ||
#. openerp-web | ||
#: code:addons/web_timeline/static/src/js/timeline_view.js:0 | ||
#: model:ir.model.fields.selection,name:web_timeline.selection__ir_ui_view__type__timeline | ||
#, python-format | ||
msgid "Timeline" | ||
msgstr "Línea de tiempo" | ||
|
||
#. module: web_timeline | ||
#. openerp-web | ||
#: code:addons/web_timeline/static/src/js/timeline_renderer.js:0 | ||
#, python-format | ||
msgid "Timeline view has not defined 'date_start' attribute." | ||
msgstr "" | ||
"La vista de línea de tiempo no tiene definido el atributo 'date_start'." | ||
|
||
#. module: web_timeline | ||
#. openerp-web | ||
#: code:addons/web_timeline/static/src/xml/web_timeline.xml:0 | ||
#, python-format | ||
msgid "Today" | ||
msgstr "Hoy" | ||
|
||
#. module: web_timeline | ||
#: model:ir.model,name:web_timeline.model_ir_ui_view | ||
msgid "View" | ||
msgstr "" | ||
|
||
#. module: web_timeline | ||
#: model:ir.model.fields,field_description:web_timeline.field_ir_ui_view__type | ||
msgid "View Type" | ||
msgstr "" | ||
|
||
#. module: web_timeline | ||
#. openerp-web | ||
#: code:addons/web_timeline/static/src/js/timeline_controller.js:0 | ||
#, python-format | ||
msgid "Warning" | ||
msgstr "" | ||
|
||
#. module: web_timeline | ||
#. openerp-web | ||
#: code:addons/web_timeline/static/src/xml/web_timeline.xml:0 | ||
#, python-format | ||
msgid "Week" | ||
msgstr "Semana" | ||
|
||
#. module: web_timeline | ||
#. openerp-web | ||
#: code:addons/web_timeline/static/src/xml/web_timeline.xml:0 | ||
#, python-format | ||
msgid "Year" | ||
msgstr "Año" | ||
|
||
#~ msgid "ir.ui.view" | ||
#~ msgstr "ir.ui.view" |
Oops, something went wrong.