Compare commits

...

No commits in common. '12.0' and '8.0' have entirely different histories.
12.0 ... 8.0

  1. 1
      .gitignore
  2. 12
      .travis.yml
  3. 101
      README.md
  4. 22
      help_online/__init__.py
  5. 68
      help_online/__openerp__.py
  6. 21
      help_online/controllers/__init__.py
  7. 32
      help_online/controllers/help_online_controllers.py
  8. 9
      help_online/data/help_auto_backup.sample
  9. 25
      help_online/data/ir_config_parameter_data.xml
  10. 238
      help_online/i18n/am.po
  11. 263
      help_online/i18n/ar.po
  12. 238
      help_online/i18n/bg.po
  13. 239
      help_online/i18n/bs.po
  14. 238
      help_online/i18n/ca.po
  15. 238
      help_online/i18n/ca_ES.po
  16. 238
      help_online/i18n/cs.po
  17. 238
      help_online/i18n/da.po
  18. 256
      help_online/i18n/de.po
  19. 238
      help_online/i18n/el_GR.po
  20. 238
      help_online/i18n/en_AU.po
  21. 238
      help_online/i18n/en_GB.po
  22. 264
      help_online/i18n/es.po
  23. 238
      help_online/i18n/es_AR.po
  24. 238
      help_online/i18n/es_CL.po
  25. 238
      help_online/i18n/es_CO.po
  26. 238
      help_online/i18n/es_CR.po
  27. 238
      help_online/i18n/es_DO.po
  28. 238
      help_online/i18n/es_EC.po
  29. 238
      help_online/i18n/es_ES.po
  30. 238
      help_online/i18n/es_MX.po
  31. 238
      help_online/i18n/es_PE.po
  32. 238
      help_online/i18n/es_PY.po
  33. 238
      help_online/i18n/es_VE.po
  34. 238
      help_online/i18n/et.po
  35. 239
      help_online/i18n/eu.po
  36. 238
      help_online/i18n/fa.po
  37. 251
      help_online/i18n/fi.po
  38. 260
      help_online/i18n/fr.po
  39. 238
      help_online/i18n/fr_CA.po
  40. 238
      help_online/i18n/fr_CH.po
  41. 238
      help_online/i18n/fr_FR.po
  42. 238
      help_online/i18n/gl.po
  43. 238
      help_online/i18n/gl_ES.po
  44. 238
      help_online/i18n/he.po
  45. 238
      help_online/i18n/help_online.pot
  46. 238
      help_online/i18n/hi.po
  47. 240
      help_online/i18n/hr.po
  48. 239
      help_online/i18n/hr_HR.po
  49. 238
      help_online/i18n/hu.po
  50. 238
      help_online/i18n/id.po
  51. 247
      help_online/i18n/it.po
  52. 238
      help_online/i18n/ja.po
  53. 238
      help_online/i18n/ko.po
  54. 237
      help_online/i18n/lo.po
  55. 239
      help_online/i18n/lt.po
  56. 239
      help_online/i18n/lt_LT.po
  57. 239
      help_online/i18n/lv.po
  58. 238
      help_online/i18n/mk.po
  59. 238
      help_online/i18n/mn.po
  60. 238
      help_online/i18n/nb.po
  61. 238
      help_online/i18n/nb_NO.po
  62. 239
      help_online/i18n/nl.po
  63. 238
      help_online/i18n/nl_BE.po
  64. 238
      help_online/i18n/nl_NL.po
  65. 240
      help_online/i18n/pl.po
  66. 238
      help_online/i18n/pt.po
  67. 268
      help_online/i18n/pt_BR.po
  68. 238
      help_online/i18n/pt_PT.po
  69. 239
      help_online/i18n/ro.po
  70. 240
      help_online/i18n/ru.po
  71. 238
      help_online/i18n/sk.po
  72. 262
      help_online/i18n/sl.po
  73. 239
      help_online/i18n/sr.po
  74. 239
      help_online/i18n/sr@latin.po
  75. 238
      help_online/i18n/sv.po
  76. 237
      help_online/i18n/th.po
  77. 261
      help_online/i18n/tr.po
  78. 238
      help_online/i18n/tr_TR.po
  79. 239
      help_online/i18n/uk.po
  80. 238
      help_online/i18n/vi.po
  81. 238
      help_online/i18n/vi_VN.po
  82. 238
      help_online/i18n/zh_CN.po
  83. 238
      help_online/i18n/zh_TW.po
  84. 24
      help_online/models/__init__.py
  85. 299
      help_online/models/export_help_wizard.py
  86. 62
      help_online/models/help_online.py
  87. 50
      help_online/models/import_help_wizard.py
  88. 73
      help_online/models/ir_model.py
  89. 16
      help_online/security/help_online_groups.xml
  90. 32
      help_online/security/help_online_rules.xml
  91. BIN
      help_online/static/description/help_online_create_page.png
  92. BIN
      help_online/static/description/help_online_view_page.png
  93. BIN
      help_online/static/description/icon.png
  94. 17
      help_online/static/description/index.html
  95. 12
      help_online/static/src/css/help_online.css
  96. BIN
      help_online/static/src/img/snippet/snippet_thumbs.png
  97. 125
      help_online/static/src/js/help_online.js
  98. 21
      help_online/static/src/js/website_help_online.editor.js
  99. 13
      help_online/static/src/xml/help_online.xml
  100. 27
      help_online/tests/__init__.py

1
.gitignore

@ -20,7 +20,6 @@ var/
*.egg-info/
.installed.cfg
*.egg
*.eggs
# Installer logs
pip-log.txt

12
.travis.yml

@ -1,13 +1,12 @@
language: python
python:
- "3.5"
- "2.7"
sudo: false
cache: pip
addons:
postgresql: "9.6"
apt:
packages:
- expect-dev # provides unbuffer utility
@ -15,13 +14,18 @@ addons:
env:
global:
- VERSION="12.0" TESTS="0" LINT_CHECK="0" TRANSIFEX="0"
- VERSION="8.0" TESTS="0" LINT_CHECK="0" TRANSIFEX="0"
- TRANSIFEX_USER='transbot@odoo-community.org'
- secure: GzvUeJ2NRqb1+zQFgBcWmKqa9i3GtwD0XJP05UTGVYIBQ1oCuieB20LF8YhbXE/yI5fbbsc6AEfp3BJ579eD1vkcPFT2jyKawbVEi9NIaoKt/0KBhJJMjcLWqdCookEjdZvzRjOPbQav2o45guVZQNuxVuyIuR2gBJb8kIQ24VM=
matrix:
- LINT_CHECK="1"
- TRANSIFEX="1"
- TESTS="1" ODOO_REPO="odoo/odoo"
- TESTS="1" ODOO_REPO="OCA/OCB"
- TESTS="1" ODOO_REPO="odoo/odoo" MAKEPOT="1"
virtualenv:
system_site_packages: true
install:
- pip install anybox.testing.openerp

101
README.md

@ -1,6 +1,6 @@
[![Runbot Status](https://runbot.odoo-community.org/runbot/badge/flat/162/12.0.svg)](https://runbot.odoo-community.org/runbot/repo/github-com-oca-web-162)
[![Build Status](https://travis-ci.org/OCA/web.svg?branch=12.0)](https://travis-ci.org/OCA/web)
[![Coverage Status](https://coveralls.io/repos/OCA/web/badge.png?branch=12.0)](https://coveralls.io/r/OCA/web?branch=12.0)
[![Runbot Status](https://runbot.odoo-community.org/runbot/badge/flat/162/8.0.svg)](https://runbot.odoo-community.org/runbot/repo/github-com-oca-web-162)
[![Build Status](https://travis-ci.org/OCA/web.svg?branch=8.0)](https://travis-ci.org/OCA/web)
[![Coverage Status](https://coveralls.io/repos/OCA/web/badge.png?branch=8.0)](https://coveralls.io/r/OCA/web?branch=8.0)
Web addons for Odoo
===================
@ -12,4 +12,99 @@ This project aims to deal with modules related to the webclient of Odoo. You'll
- Ease the import/export features
- Generally add clientside functionality
[//]: # (addons)
Available addons
----------------
addon | version | summary
--- | --- | ---
[help_online](help_online/) | 8.0.1.0.0 | Help Online
[help_popup](help_popup/) | 8.0.0.5.0 | Help Popup
[support_branding](support_branding/) | 8.0.2.0.0 | Adds your branding to an Odoo instance
[web_action_conditionable](web_action_conditionable/) | 8.0.1.1.1 | web_action_conditionable
[web_advanced_search_wildcard](web_advanced_search_wildcard/) | 8.0.1.0.0 | Webmodule to add wildcard operators in advanced search field
[web_advanced_search_x2x](web_advanced_search_x2x/) | 8.0.1.0.0 | Use a search widget in advanced search for x2x fields
[web_ckeditor4](web_ckeditor4/) | 8.0.1.0.0 | Provides a widget for editing HTML fields using CKEditor 4.x
[web_clean_navbar](web_clean_navbar/) | 8.0.1.0.0 | Better visibility for the backend's main menu
[web_context_in_colors](web_context_in_colors/) | 8.0.1.1.0 | Use the context in a tree view's colors and fonts attribute
[web_copy_confirm](web_copy_confirm/) | 8.0.1.0.0 | Show confirmation dialogue before copying records
[web_dashboard_open_action](web_dashboard_open_action/) | 8.0.1.0.0 | Adds a button to open a dashboard in full mode
[web_dashboard_tile](web_dashboard_tile/) | 8.0.4.0.0 | Add Tiles to Dashboard
[web_decimal_numpad_dot](web_decimal_numpad_dot/) | 8.0.1.0.0 | Web - Numpad Dot as decimal separator
[web_dialog_size](web_dialog_size/) | 8.0.0.1.0 | A module that lets the user expand a dialog box to the full screen width.
[web_dom_model_classes](web_dom_model_classes/) | 8.0.1.0.0 | Allows small UI changes with simple CSS
[web_easy_switch_company](web_easy_switch_company/) | 8.0.1.0.0 | Multicompany - Easy Switch Company
[web_environment_ribbon](web_environment_ribbon/) | 8.0.1.0.0 | Web Environment Ribbon
[web_export_view](web_export_view/) | 8.0.1.3.1 | Export Current View
[web_favicon](web_favicon/) | 8.0.1.0.0 | Allows to set a custom shortcut icon (aka favicon)
[web_form_sticky_header](web_form_sticky_header/) | 8.0.1.0.0 | Web Fixed Header
[web_graph_improved](web_graph_improved/) | 8.0.0.1.0 | Improves graph views.
[web_graph_sort](web_graph_sort/) | 8.0.1.0.0 | Web Graph Sort
[web_group_expand](web_group_expand/) | 8.0.1.0.0 | Group Expand Buttons
[web_hide_db_manager_link](web_hide_db_manager_link/) | 8.0.1.0.0 | Hide link to database manager in login screen
[web_hideleftmenu](web_hideleftmenu/) | 8.0.1.0.0 | Hide Left Menu in Web Interface
[web_invalid_tab](web_invalid_tab/) | 8.0.1.0.0 | Highlight tab when fields inside are invalid.
[web_ir_actions_act_window_message](web_ir_actions_act_window_message/) | 8.0.1.0.0 | Show a message box to users
[web_ir_actions_act_window_none](web_ir_actions_act_window_none/) | 8.0.1.0.0 | Execute nothing
[web_ir_actions_act_window_page](web_ir_actions_act_window_page/) | 8.0.1.0.0 | Allows a developer to trigger a pager to show the previous or next next record in the form view
[web_last_viewed_records](web_last_viewed_records/) | 8.0.1.0.0 | Last viewed records
[web_list_html_widget](web_list_html_widget/) | 8.0.1.0.0 | This module allows to use a widget='html' for fields in list (tree) views
[web_listview_custom_column](web_listview_custom_column/) | 8.0.1.0.0 | Remove or add columns to list views
[web_listview_custom_element_number](web_listview_custom_element_number/) | 8.0.1.0.0 | Allow users to set manually a quantity of items to display in a tree view
[web_listview_show_advanced_search](web_listview_show_advanced_search/) | 8.0.1.0.0 | Web Show Advanced Search by default on list view
[web_m2x_options](web_m2x_options/) | 8.0.0.2.0 | web_m2x_options
[web_menu_autohide](web_menu_autohide/) | 8.0.1.0.0 | Hide top and left menu bar
[web_menu_collapsible](web_menu_collapsible/) | 8.0.1.0.0 | Foldable second level Odoo menu
[web_menu_navbar_needaction](web_menu_navbar_needaction/) | 8.0.1.0.0 | Show the sum of submenus' needaction counters in main menu
[web_no_crawler](web_no_crawler/) | 8.0.1.0.0 | Disallow indexing completely via robots.txt
[web_offline_warning](web_offline_warning/) | 8.0.1.0.0 | User-friendly Offline Warning
[web_onchange_action](web_onchange_action/) | 8.0.1.0.0 | Run actions from onchange handlers
[web_one2many_list_action](web_one2many_list_action/) | 8.0.1.0.0 | Enable tree_but_open action for One2ManyListView rows.
[web_option_auto_color](web_option_auto_color/) | 8.0.0.1.0 | Web Option Auto Color
[web_readonly_bypass](web_readonly_bypass/) | 8.0.1.0.1 | Allow to save onchange modifications to readonly fields
[web_recipients_uncheck](web_recipients_uncheck/) | 8.0.0.3.0 | Uncheck recipients on res.partner
[web_search_autocomplete_prefetch](web_search_autocomplete_prefetch/) | 8.0.1.0.0 | Offer only items on autocompletion that will yield results
[web_search_datetime_completion](web_search_datetime_completion/) | 8.0.1.0.0 | Offer more completion options for datetime fields while searching
[web_search_with_and](web_search_with_and/) | 8.0.1.0.0 | Use AND conditions on omnibar search
[web_searchbar_full_width](web_searchbar_full_width/) | 8.0.1.0.0 | Show search bar in full screen width
[web_sheet_full_width](web_sheet_full_width/) | 8.0.1.0.0 | Use the whole available screen width when displaying sheets
[web_sheet_full_width_selective](web_sheet_full_width_selective/) | 8.0.0.1.0 | Show selected sheets with full width
[web_shortcuts](web_shortcuts/) | 8.0.1.0.0 | Web Shortcuts
[web_switch_company_warning](web_switch_company_warning/) | 8.0.0.1.0 | Show a warning if current company has been switched in another tab or window.
[web_timeline](web_timeline/) | 8.0.1.0.0 | Interactive visualization chart to show events in time
[web_translate_dialog](web_translate_dialog/) | 8.0.1.0.0 | Easy-to-use pop-up to translate fields in several languages
[web_tree_dynamic_colored_field](web_tree_dynamic_colored_field/) | 8.0.2.0.0 | Allows you to dynamically color fields on tree views
[web_tree_image](web_tree_image/) | 8.0.1.1.0 | Show images in tree views
[web_tree_many2one_clickable](web_tree_many2one_clickable/) | 8.0.1.0.0 | Clickable many2one fields for tree views
[web_widget_color](web_widget_color/) | 8.0.1.0.0 | Web Widget Color
[web_widget_datepicker_options](web_widget_datepicker_options/) | 8.0.1.0.0 | web_widget_datepicker_options
[web_widget_digitized_signature](web_widget_digitized_signature/) | 8.0.1.0.0 | Web Widget Digitized Signature
[web_widget_digitized_signature_user](web_widget_digitized_signature_user/) | 8.0.1.0.0 | Web Digitized Signature for users
[web_widget_float_formula](web_widget_float_formula/) | 8.0.1.0.0 | Web Widget - Formulas in Float fields
[web_widget_image_download](web_widget_image_download/) | 8.0.1.0.1 | Allows to download any image from its widget
[web_widget_mail_send_odoo](web_widget_mail_send_odoo/) | 8.0.1.0.0 | Send mail using internal composition wizard.
[web_widget_many2many_tags_multi_selection](web_widget_many2many_tags_multi_selection/) | 8.0.0.1.0 | Tags multiple selection
[web_widget_one2many_tags](web_widget_one2many_tags/) | 8.0.1.0.0 | Provides a widget similar to many2many_tags for one2many fields
[web_widget_pattern](web_widget_pattern/) | 8.0.1.0.0 | Enforce a pattern on an input field
[web_widget_radio_tree](web_widget_radio_tree/) | 8.0.1.0.0 | Add radio buttons for records in tree.
[web_widget_text_markdown](web_widget_text_markdown/) | 8.0.1.0.0 | web_widget_text_markdown
[web_widget_url_listview](web_widget_url_listview/) | 8.0.1.0.0 | Web Widget ListView Url
[web_widget_x2many_2d_matrix](web_widget_x2many_2d_matrix/) | 8.0.1.1.0 | Show list fields as a matrix
[web_x2m_defaults_from_previous](web_x2m_defaults_from_previous/) | 8.0.1.0.0 | Use previous input as default for next line
[web_x2m_filter](web_x2m_filter/) | 8.0.1.0.0 | Allows to define filters in x2many list fields
[web_x2many_add_button_position](web_x2many_add_button_position/) | 8.0.1.0.0 | Configurable position for the 'Add an Item' button
[web_x2many_delete_all](web_x2many_delete_all/) | 8.0.1.0.0 | Adds a button to x2many fields that removes all linked records
Unported addons
---------------
addon | version | summary
--- | --- | ---
[web_color](web_color/) | 1.0 (unported) | Web Color
[web_confirm_window_close](web_confirm_window_close/) | 7.0.1 (unported) | Check for unsaved data when closing browser window
[web_polymorphic_many2one](web_polymorphic_many2one/) | 0.2 (unported) | Web Polymorphic Many2One
[web_popup_large](web_popup_large/) | 7.0.1.0 (unported) | Large pop-ups in web client
[web_search_alphabetic](web_search_alphabetic/) | 1.0 (unported) | Web Alphabetical Search
[web_send_message_popup](web_send_message_popup/) | 1.0 (unported) | Web Send Message as Popup
[//]: # (end addons)

22
help_online/__init__.py

@ -0,0 +1,22 @@
# -*- coding: utf-8 -*-
##############################################################################
#
# Authors: Nemry Jonathan
# Copyright (c) 2014 Acsone SA/NV (http://www.acsone.eu)
#
# This program is free software: you can redistribute it and/or modify
# it under the terms of the GNU Affero General Public License as published
# by the Free Software Foundation, either version 3 of the License, or
# (at your option) any later version.
#
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU Affero General Public License for more details.
#
# You should have received a copy of the GNU Affero General Public License
# along with this program. If not, see <http://www.gnu.org/licenses/>.
#
##############################################################################
from . import controllers
from . import models

68
help_online/__openerp__.py

@ -0,0 +1,68 @@
# -*- coding: utf-8 -*-
##############################################################################
#
# Authors: Nemry Jonathan
# Copyright (c) 2014 Acsone SA/NV (http://www.acsone.eu)
#
# This program is free software: you can redistribute it and/or modify
# it under the terms of the GNU Affero General Public License as published
# by the Free Software Foundation, either version 3 of the License, or
# (at your option) any later version.
#
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU Affero General Public License for more details.
#
# You should have received a copy of the GNU Affero General Public License
# along with this program. If not, see <http://www.gnu.org/licenses/>.
#
##############################################################################
{
'name': 'Help Online',
'version': '8.0.1.0.0',
'author': "ACSONE SA/NV,Odoo Community Association (OCA)",
'maintainer': 'ACSONE SA/NV',
'website': 'http://www.acsone.eu',
'category': 'Documentation',
'depends': [
'base',
'website',
'web',
'web_kanban',
],
'description': """
Help Online
===========
This module allows the creation of an online help available from the lists
and forms in Odoo.
When loading a view, the module generates a button allowing access to an help
page for the related model if the page exists and the user is member of the
group 'Help reader'. If the page doesn't exist and the user is member of
the group 'Help writer', the module generate a button allowing the creation an
help page.
The help pages are created and managed via the website Module.
Note: When updating the page prefix parameters, the record rules must be
adapted.
""",
'data': [
'security/help_online_groups.xml',
'security/help_online_rules.xml',
'views/export_help_wizard_view.xml',
'views/import_help_wizard_view.xml',
'views/ir_ui_view_view.xml',
'views/help_online_view.xml',
'views/website_help_online.xml',
'data/ir_config_parameter_data.xml',
],
'qweb': [
'static/src/xml/help_online.xml',
],
'installable': True,
'auto_install': False,
'license': 'AGPL-3',
}

21
help_online/controllers/__init__.py

@ -0,0 +1,21 @@
# -*- coding: utf-8 -*-
##############################################################################
#
# Authors: Laurent Mignon
# Copyright (c) 2014 Acsone SA/NV (http://www.acsone.eu)
#
# This program is free software: you can redistribute it and/or modify
# it under the terms of the GNU Affero General Public License as published
# by the Free Software Foundation, either version 3 of the License, or
# (at your option) any later version.
#
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU Affero General Public License for more details.
#
# You should have received a copy of the GNU Affero General Public License
# along with this program. If not, see <http://www.gnu.org/licenses/>.
#
##############################################################################
from .import help_online_controllers

32
help_online/controllers/help_online_controllers.py

@ -0,0 +1,32 @@
# -*- coding: utf-8 -*-
##############################################################################
#
# Authors: Laurent Mignon
# Copyright (c) 2014 Acsone SA/NV (http://www.acsone.eu)
#
# This program is free software: you can redistribute it and/or modify
# it under the terms of the GNU Affero General Public License as published
# by the Free Software Foundation, either version 3 of the License, or
# (at your option) any later version.
#
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU Affero General Public License for more details.
#
# You should have received a copy of the GNU Affero General Public License
# along with this program. If not, see <http://www.gnu.org/licenses/>.
#
##############################################################################
import openerp.http as http
from openerp.http import request
class HelpOnlineController(http.Controller):
@http.route('/help_online/build_url', type='json', auth='user')
def build_url(self, model, view_type, domain=None, context=None):
help_online_model = request.env['help.online']
return help_online_model.get_page_url(
model, view_type, domain=domain, context=context)

9
help_online/data/help_auto_backup.sample

@ -0,0 +1,9 @@
<?xml version="1.0" encoding="utf-8"?>
<openerp>
<data noupdate="0">
<record id="wz_auto_backup" model="export.help.wizard">
</record>
<function model="export.help.wizard" name="auto_backup"/>
</data>
</openerp>

25
help_online/data/ir_config_parameter_data.xml

@ -0,0 +1,25 @@
<?xml version='1.0' encoding='UTF-8' ?>
<openerp>
<data noupdate="1">
<record id="help_online_autobackup_path" model="ir.config_parameter">
<field name="key">help_online_autobackup_path</field>
<field name="value">False</field>
</record>
</data>
<data noupdate="1">
<record id="help_online_page_prefix" model="ir.config_parameter">
<field name="key">help_online_page_prefix</field>
<field name="value">help</field>
</record>
</data>
<data noupdate="1">
<record id="help_online_template_prefix" model="ir.config_parameter">
<field name="key">help_online_template_prefix</field>
<field name="value">help-template</field>
</record>
</data>
</openerp>

238
help_online/i18n/am.po

@ -0,0 +1,238 @@
# Translation of Odoo Server.
# This file contains the translation of the following modules:
# * help_online
#
# Translators:
msgid ""
msgstr ""
"Project-Id-Version: web (8.0)\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2016-11-26 01:59+0000\n"
"PO-Revision-Date: 2016-11-25 14:57+0000\n"
"Last-Translator: OCA Transbot <transbot@odoo-community.org>\n"
"Language-Team: Amharic (http://www.transifex.com/oca/OCA-web-8-0/language/"
"am/)\n"
"Language: am\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: help_online
#. openerp-web
#: code:addons/help_online/static/src/js/help_online.js:93
#, python-format
msgid "Cancel"
msgstr "Cancelar"
#. module: help_online
#: view:export.help.wizard:help_online.export_help_wizard_view
#: view:import.help.wizard:help_online.import_help_wizard_view
msgid "Close"
msgstr ""
#. module: help_online
#. openerp-web
#: code:addons/help_online/static/src/js/help_online.js:91
#, python-format
msgid "Confirm"
msgstr ""
#. module: help_online
#: code:addons/help_online/models/help_online.py:57
#, python-format
msgid "Create Help page for %s"
msgstr ""
#. module: help_online
#: field:export.help.wizard,create_uid:0 field:help.online,create_uid:0
#: field:import.help.wizard,create_uid:0
msgid "Created by"
msgstr "Creado por"
#. module: help_online
#: field:export.help.wizard,create_date:0 field:help.online,create_date:0
#: field:import.help.wizard,create_date:0
msgid "Created on"
msgstr "Creado en"
#. module: help_online
#: field:export.help.wizard,display_name:0 field:help.online,display_name:0
#: field:import.help.wizard,display_name:0
msgid "Display Name"
msgstr ""
#. module: help_online
#: view:export.help.wizard:help_online.export_help_wizard_view
msgid "Export"
msgstr ""
#. module: help_online
#: code:addons/help_online/models/export_help_wizard.py:267
#: model:ir.actions.act_window,name:help_online.action_export_help_wizard
#, python-format
msgid "Export Help"
msgstr ""
#. module: help_online
#: view:export.help.wizard:help_online.export_help_wizard_view
msgid "Export Help Data"
msgstr ""
#. module: help_online
#: model:ir.model,name:help_online.model_export_help_wizard
#: model:ir.ui.menu,name:help_online.menu_help_export
msgid "Export Help Online"
msgstr ""
#. module: help_online
#: field:export.help.wizard,export_filename:0
msgid "Export XML Filename"
msgstr ""
#. module: help_online
#: model:ir.ui.menu,name:help_online.menu_help
#: model:ir.ui.menu,name:help_online.menu_help_main
msgid "Help Online"
msgstr ""
#. module: help_online
#: code:addons/help_online/models/help_online.py:52
#, python-format
msgid "Help on %s"
msgstr ""
#. module: help_online
#: model:res.groups,name:help_online.help_online_group_reader
msgid "Help reader"
msgstr ""
#. module: help_online
#: model:res.groups,name:help_online.help_online_group_writer
msgid "Help writer"
msgstr ""
#. module: help_online
#: field:export.help.wizard,id:0 field:help.online,id:0
#: field:import.help.wizard,id:0
msgid "ID"
msgstr "ID"
#. module: help_online
#: view:import.help.wizard:help_online.import_help_wizard_view
msgid "Import"
msgstr ""
#. module: help_online
#: model:ir.actions.act_window,name:help_online.action_import_help_wizard
msgid "Import Help"
msgstr ""
#. module: help_online
#: view:import.help.wizard:help_online.import_help_wizard_view
msgid "Import Help Data"
msgstr ""
#. module: help_online
#: model:ir.ui.menu,name:help_online.menu_help_import
msgid "Import Help Online"
msgstr ""
#. module: help_online
#: field:export.help.wizard,__last_update:0 field:help.online,__last_update:0
#: field:import.help.wizard,__last_update:0
msgid "Last Modified on"
msgstr ""
#. module: help_online
#: field:export.help.wizard,write_uid:0 field:help.online,write_uid:0
#: field:import.help.wizard,write_uid:0
msgid "Last Updated by"
msgstr "Última actualización por"
#. module: help_online
#: field:export.help.wizard,write_date:0 field:help.online,write_date:0
#: field:import.help.wizard,write_date:0
msgid "Last Updated on"
msgstr "Última actualización en"
#. module: help_online
#: code:addons/help_online/models/export_help_wizard.py:260
#, python-format
msgid "No data to export !"
msgstr ""
#. module: help_online
#: code:addons/help_online/models/help_online.py:33
#, python-format
msgid "No page prefix parameter specified !"
msgstr ""
#. module: help_online
#. openerp-web
#: code:addons/help_online/static/src/js/help_online.js:98
#, python-format
msgid "Ok"
msgstr ""
#. module: help_online
#. openerp-web
#: code:addons/help_online/static/src/js/help_online.js:117
#, python-format
msgid "Page does not exist. Do you want to create?"
msgstr ""
#. module: help_online
#: field:import.help.wizard,source_file:0
msgid "Source File"
msgstr ""
#. module: help_online
#: view:export.help.wizard:help_online.export_help_wizard_view
msgid ""
"This wizard allow you to export all QWeb views\n"
" related to help online. The result will be an Odoo\n"
" data xml file."
msgstr ""
#. module: help_online
#: view:import.help.wizard:help_online.import_help_wizard_view
msgid ""
"This wizard allow you to import QWeb views\n"
" related to help online. The required file format is "
"an Odoo\n"
" data xml file."
msgstr ""
#. module: help_online
#: code:addons/help_online/models/export_help_wizard.py:297
#, python-format
msgid "Unable to write autobackup file in given directory: %s"
msgstr ""
#. module: help_online
#: view:ir.ui.view:help_online.view_view_search
msgid "Website Page"
msgstr ""
#. module: help_online
#: view:ir.ui.view:help_online.view_view_form
msgid "Website Page?"
msgstr ""
#. module: help_online
#: model:ir.actions.act_window,name:help_online.action_website_pages
#: model:ir.ui.menu,name:help_online.menu_help_pages
msgid "Website Pages"
msgstr ""
#. module: help_online
#: field:export.help.wizard,data:0
msgid "XML"
msgstr ""
#. module: help_online
#: view:export.help.wizard:help_online.export_help_wizard_view
#: view:import.help.wizard:help_online.import_help_wizard_view
msgid "or"
msgstr "o"

263
help_online/i18n/ar.po

@ -0,0 +1,263 @@
# Translation of Odoo Server.
# This file contains the translation of the following modules:
# * help_online
#
# Translators:
# Ahmet Altinisik <aaltinisik@altinkaya.com.tr>, 2015-2016
# Antonio Trueba, 2016
# Armando Vulcano Junior <vulcano@uol.com.br>, 2015
# Carles Antoli <carlesantoli@hotmail.com>, 2015
# Carles Antoli <carlesantoli@hotmail.com>, 2015
# Christophe CHAUVET <christophe.chauvet@gmail.com>, 2015
# Christophe CHAUVET <christophe.chauvet@gmail.com>, 2015
# FIRST AUTHOR <EMAIL@ADDRESS>, 2012,2014
# Giacomo <giacomo.spettoli@gmail.com>, 2015
# Matjaž Mozetič <m.mozetic@matmoz.si>, 2015
# Mohamed HABOU <m.habou@agoradeveloppement.com>, 2016
# Paolo Valier, 2016
# Pedro M. Baeza <pedro.baeza@gmail.com>, 2015
# Rudolf Schnapka <rs@techno-flex.de>, 2016
# SaFi J. <safi2266@gmail.com>, 2015
# Thomas A. Jaeger, 2015
msgid ""
msgstr ""
"Project-Id-Version: web (8.0)\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2016-11-26 01:59+0000\n"
"PO-Revision-Date: 2016-11-25 14:57+0000\n"
"Last-Translator: OCA Transbot <transbot@odoo-community.org>\n"
"Language-Team: Arabic (http://www.transifex.com/oca/OCA-web-8-0/language/"
"ar/)\n"
"Language: ar\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: \n"
"Plural-Forms: nplurals=6; plural=n==0 ? 0 : n==1 ? 1 : n==2 ? 2 : n%100>=3 "
"&& n%100<=10 ? 3 : n%100>=11 && n%100<=99 ? 4 : 5;\n"
#. module: help_online
#. openerp-web
#: code:addons/help_online/static/src/js/help_online.js:93
#, python-format
msgid "Cancel"
msgstr "إلغاء"
#. module: help_online
#: view:export.help.wizard:help_online.export_help_wizard_view
#: view:import.help.wizard:help_online.import_help_wizard_view
msgid "Close"
msgstr "إغلاق"
#. module: help_online
#. openerp-web
#: code:addons/help_online/static/src/js/help_online.js:91
#, python-format
msgid "Confirm"
msgstr "تأكييد"
#. module: help_online
#: code:addons/help_online/models/help_online.py:57
#, python-format
msgid "Create Help page for %s"
msgstr "إنشاء صفحة دعم إلى %s"
#. module: help_online
#: field:export.help.wizard,create_uid:0 field:help.online,create_uid:0
#: field:import.help.wizard,create_uid:0
msgid "Created by"
msgstr "تم الإنشاء بواسطة"
#. module: help_online
#: field:export.help.wizard,create_date:0 field:help.online,create_date:0
#: field:import.help.wizard,create_date:0
msgid "Created on"
msgstr "تم الإنشاء في"
#. module: help_online
#: field:export.help.wizard,display_name:0 field:help.online,display_name:0
#: field:import.help.wizard,display_name:0
msgid "Display Name"
msgstr "اسم العرض"
#. module: help_online
#: view:export.help.wizard:help_online.export_help_wizard_view
msgid "Export"
msgstr "تصدير"
#. module: help_online
#: code:addons/help_online/models/export_help_wizard.py:267
#: model:ir.actions.act_window,name:help_online.action_export_help_wizard
#, python-format
msgid "Export Help"
msgstr "تصدير المساعدة"
#. module: help_online
#: view:export.help.wizard:help_online.export_help_wizard_view
msgid "Export Help Data"
msgstr "تصدير بيانات المساعدة"
#. module: help_online
#: model:ir.model,name:help_online.model_export_help_wizard
#: model:ir.ui.menu,name:help_online.menu_help_export
msgid "Export Help Online"
msgstr "تصدير المساعدة الحية"
#. module: help_online
#: field:export.help.wizard,export_filename:0
msgid "Export XML Filename"
msgstr "اسم ملف XML المصدر"
#. module: help_online
#: model:ir.ui.menu,name:help_online.menu_help
#: model:ir.ui.menu,name:help_online.menu_help_main
msgid "Help Online"
msgstr "المساعدة الحية"
#. module: help_online
#: code:addons/help_online/models/help_online.py:52
#, python-format
msgid "Help on %s"
msgstr "المساعدة الى %s"
#. module: help_online
#: model:res.groups,name:help_online.help_online_group_reader
msgid "Help reader"
msgstr "قارئ المساعدة"
#. module: help_online
#: model:res.groups,name:help_online.help_online_group_writer
msgid "Help writer"
msgstr "كاتب المساعدة"
#. module: help_online
#: field:export.help.wizard,id:0 field:help.online,id:0
#: field:import.help.wizard,id:0
msgid "ID"
msgstr "المعرف"
#. module: help_online
#: view:import.help.wizard:help_online.import_help_wizard_view
msgid "Import"
msgstr "إستيراد"
#. module: help_online
#: model:ir.actions.act_window,name:help_online.action_import_help_wizard
msgid "Import Help"
msgstr "استراد المساعدة"
#. module: help_online
#: view:import.help.wizard:help_online.import_help_wizard_view
msgid "Import Help Data"
msgstr "استيراد بيانات المساعدة"
#. module: help_online
#: model:ir.ui.menu,name:help_online.menu_help_import
msgid "Import Help Online"
msgstr "استيراد المساعدة الحية"
#. module: help_online
#: field:export.help.wizard,__last_update:0 field:help.online,__last_update:0
#: field:import.help.wizard,__last_update:0
msgid "Last Modified on"
msgstr "آخر تعديل في"
#. module: help_online
#: field:export.help.wizard,write_uid:0 field:help.online,write_uid:0
#: field:import.help.wizard,write_uid:0
msgid "Last Updated by"
msgstr "آخر تحديث بواسطة"
#. module: help_online
#: field:export.help.wizard,write_date:0 field:help.online,write_date:0
#: field:import.help.wizard,write_date:0
msgid "Last Updated on"
msgstr "آخر تحديث في"
#. module: help_online
#: code:addons/help_online/models/export_help_wizard.py:260
#, python-format
msgid "No data to export !"
msgstr "لا بيانات لتصديرها !"
#. module: help_online
#: code:addons/help_online/models/help_online.py:33
#, python-format
msgid "No page prefix parameter specified !"
msgstr "لاتوجد معلمة بادئة محددة للصفحة ! "
#. module: help_online
#. openerp-web
#: code:addons/help_online/static/src/js/help_online.js:98
#, python-format
msgid "Ok"
msgstr "موافق"
#. module: help_online
#. openerp-web
#: code:addons/help_online/static/src/js/help_online.js:117
#, python-format
msgid "Page does not exist. Do you want to create?"
msgstr "الصفحة غير موجودة. هل تريد الإنشاء ؟"
#. module: help_online
#: field:import.help.wizard,source_file:0
msgid "Source File"
msgstr "الملف المصدر"
#. module: help_online
#: view:export.help.wizard:help_online.export_help_wizard_view
msgid ""
"This wizard allow you to export all QWeb views\n"
" related to help online. The result will be an Odoo\n"
" data xml file."
msgstr ""
"هذا المعالج يسمح لك بتصدير كل عروض QWeb \n"
" المرتبطة بالمساعدة الحية. النتيجة ستكون ملف بيانات "
"xml\n"
" لأودو."
#. module: help_online
#: view:import.help.wizard:help_online.import_help_wizard_view
msgid ""
"This wizard allow you to import QWeb views\n"
" related to help online. The required file format is "
"an Odoo\n"
" data xml file."
msgstr ""
"هذا المعالج يسمح لك بإستيراد عروض QWeb \n"
" المرتبطة بالمساعدة الحية. تنسيق الملف المطلوب هو ملف "
"بيانات xml\n"
" في أودو."
#. module: help_online
#: code:addons/help_online/models/export_help_wizard.py:297
#, python-format
msgid "Unable to write autobackup file in given directory: %s"
msgstr "تعذر كتابة ملف النسخ الاحتياطي التلقائي في الدليل المعين : %s"
#. module: help_online
#: view:ir.ui.view:help_online.view_view_search
msgid "Website Page"
msgstr "صفحة موقع الانترنت"
#. module: help_online
#: view:ir.ui.view:help_online.view_view_form
msgid "Website Page?"
msgstr "هل هي صفحة لموقع الانترنت ؟"
#. module: help_online
#: model:ir.actions.act_window,name:help_online.action_website_pages
#: model:ir.ui.menu,name:help_online.menu_help_pages
msgid "Website Pages"
msgstr "صفحات موقع الانترنت"
#. module: help_online
#: field:export.help.wizard,data:0
msgid "XML"
msgstr "XML"
#. module: help_online
#: view:export.help.wizard:help_online.export_help_wizard_view
#: view:import.help.wizard:help_online.import_help_wizard_view
msgid "or"
msgstr "أو"

238
help_online/i18n/bg.po

@ -0,0 +1,238 @@
# Translation of Odoo Server.
# This file contains the translation of the following modules:
# * help_online
#
# Translators:
msgid ""
msgstr ""
"Project-Id-Version: web (8.0)\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2016-11-26 01:59+0000\n"
"PO-Revision-Date: 2016-11-25 14:57+0000\n"
"Last-Translator: OCA Transbot <transbot@odoo-community.org>\n"
"Language-Team: Bulgarian (http://www.transifex.com/oca/OCA-web-8-0/language/"
"bg/)\n"
"Language: bg\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: help_online
#. openerp-web
#: code:addons/help_online/static/src/js/help_online.js:93
#, python-format
msgid "Cancel"
msgstr "Откажи"
#. module: help_online
#: view:export.help.wizard:help_online.export_help_wizard_view
#: view:import.help.wizard:help_online.import_help_wizard_view
msgid "Close"
msgstr ""
#. module: help_online
#. openerp-web
#: code:addons/help_online/static/src/js/help_online.js:91
#, python-format
msgid "Confirm"
msgstr ""
#. module: help_online
#: code:addons/help_online/models/help_online.py:57
#, python-format
msgid "Create Help page for %s"
msgstr ""
#. module: help_online
#: field:export.help.wizard,create_uid:0 field:help.online,create_uid:0
#: field:import.help.wizard,create_uid:0
msgid "Created by"
msgstr "Създадено от"
#. module: help_online
#: field:export.help.wizard,create_date:0 field:help.online,create_date:0
#: field:import.help.wizard,create_date:0
msgid "Created on"
msgstr "Създадено на"
#. module: help_online
#: field:export.help.wizard,display_name:0 field:help.online,display_name:0
#: field:import.help.wizard,display_name:0
msgid "Display Name"
msgstr "Име за Показване"
#. module: help_online
#: view:export.help.wizard:help_online.export_help_wizard_view
msgid "Export"
msgstr ""
#. module: help_online
#: code:addons/help_online/models/export_help_wizard.py:267
#: model:ir.actions.act_window,name:help_online.action_export_help_wizard
#, python-format
msgid "Export Help"
msgstr ""
#. module: help_online
#: view:export.help.wizard:help_online.export_help_wizard_view
msgid "Export Help Data"
msgstr ""
#. module: help_online
#: model:ir.model,name:help_online.model_export_help_wizard
#: model:ir.ui.menu,name:help_online.menu_help_export
msgid "Export Help Online"
msgstr ""
#. module: help_online
#: field:export.help.wizard,export_filename:0
msgid "Export XML Filename"
msgstr ""
#. module: help_online
#: model:ir.ui.menu,name:help_online.menu_help
#: model:ir.ui.menu,name:help_online.menu_help_main
msgid "Help Online"
msgstr ""
#. module: help_online
#: code:addons/help_online/models/help_online.py:52
#, python-format
msgid "Help on %s"
msgstr ""
#. module: help_online
#: model:res.groups,name:help_online.help_online_group_reader
msgid "Help reader"
msgstr ""
#. module: help_online
#: model:res.groups,name:help_online.help_online_group_writer
msgid "Help writer"
msgstr ""
#. module: help_online
#: field:export.help.wizard,id:0 field:help.online,id:0
#: field:import.help.wizard,id:0
msgid "ID"
msgstr "ID"
#. module: help_online
#: view:import.help.wizard:help_online.import_help_wizard_view
msgid "Import"
msgstr ""
#. module: help_online
#: model:ir.actions.act_window,name:help_online.action_import_help_wizard
msgid "Import Help"
msgstr ""
#. module: help_online
#: view:import.help.wizard:help_online.import_help_wizard_view
msgid "Import Help Data"
msgstr ""
#. module: help_online
#: model:ir.ui.menu,name:help_online.menu_help_import
msgid "Import Help Online"
msgstr ""
#. module: help_online
#: field:export.help.wizard,__last_update:0 field:help.online,__last_update:0
#: field:import.help.wizard,__last_update:0
msgid "Last Modified on"
msgstr "Последно обновено на"
#. module: help_online
#: field:export.help.wizard,write_uid:0 field:help.online,write_uid:0
#: field:import.help.wizard,write_uid:0
msgid "Last Updated by"
msgstr "Последно обновено от"
#. module: help_online
#: field:export.help.wizard,write_date:0 field:help.online,write_date:0
#: field:import.help.wizard,write_date:0
msgid "Last Updated on"
msgstr "Последно обновено на"
#. module: help_online
#: code:addons/help_online/models/export_help_wizard.py:260
#, python-format
msgid "No data to export !"
msgstr ""
#. module: help_online
#: code:addons/help_online/models/help_online.py:33
#, python-format
msgid "No page prefix parameter specified !"
msgstr ""
#. module: help_online
#. openerp-web
#: code:addons/help_online/static/src/js/help_online.js:98
#, python-format
msgid "Ok"
msgstr ""
#. module: help_online
#. openerp-web
#: code:addons/help_online/static/src/js/help_online.js:117
#, python-format
msgid "Page does not exist. Do you want to create?"
msgstr ""
#. module: help_online
#: field:import.help.wizard,source_file:0
msgid "Source File"
msgstr ""
#. module: help_online
#: view:export.help.wizard:help_online.export_help_wizard_view
msgid ""
"This wizard allow you to export all QWeb views\n"
" related to help online. The result will be an Odoo\n"
" data xml file."
msgstr ""
#. module: help_online
#: view:import.help.wizard:help_online.import_help_wizard_view
msgid ""
"This wizard allow you to import QWeb views\n"
" related to help online. The required file format is "
"an Odoo\n"
" data xml file."
msgstr ""
#. module: help_online
#: code:addons/help_online/models/export_help_wizard.py:297
#, python-format
msgid "Unable to write autobackup file in given directory: %s"
msgstr ""
#. module: help_online
#: view:ir.ui.view:help_online.view_view_search
msgid "Website Page"
msgstr ""
#. module: help_online
#: view:ir.ui.view:help_online.view_view_form
msgid "Website Page?"
msgstr ""
#. module: help_online
#: model:ir.actions.act_window,name:help_online.action_website_pages
#: model:ir.ui.menu,name:help_online.menu_help_pages
msgid "Website Pages"
msgstr ""
#. module: help_online
#: field:export.help.wizard,data:0
msgid "XML"
msgstr ""
#. module: help_online
#: view:export.help.wizard:help_online.export_help_wizard_view
#: view:import.help.wizard:help_online.import_help_wizard_view
msgid "or"
msgstr "или"

239
help_online/i18n/bs.po

@ -0,0 +1,239 @@
# Translation of Odoo Server.
# This file contains the translation of the following modules:
# * help_online
#
# Translators:
msgid ""
msgstr ""
"Project-Id-Version: web (8.0)\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2018-01-16 08:57+0000\n"
"PO-Revision-Date: 2017-11-23 23:25+0000\n"
"Last-Translator: OCA Transbot <transbot@odoo-community.org>\n"
"Language-Team: Bosnian (http://www.transifex.com/oca/OCA-web-8-0/language/"
"bs/)\n"
"Language: bs\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: \n"
"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n"
"%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n"
#. module: help_online
#. openerp-web
#: code:addons/help_online/static/src/js/help_online.js:93
#, python-format
msgid "Cancel"
msgstr "Otkaži"
#. module: help_online
#: view:export.help.wizard:help_online.export_help_wizard_view
#: view:import.help.wizard:help_online.import_help_wizard_view
msgid "Close"
msgstr "Zatvori"
#. module: help_online
#. openerp-web
#: code:addons/help_online/static/src/js/help_online.js:91
#, python-format
msgid "Confirm"
msgstr ""
#. module: help_online
#: code:addons/help_online/models/help_online.py:57
#, python-format
msgid "Create Help page for %s"
msgstr ""
#. module: help_online
#: field:export.help.wizard,create_uid:0 field:help.online,create_uid:0
#: field:import.help.wizard,create_uid:0
msgid "Created by"
msgstr "Kreirao"
#. module: help_online
#: field:export.help.wizard,create_date:0 field:help.online,create_date:0
#: field:import.help.wizard,create_date:0
msgid "Created on"
msgstr "Kreirano"
#. module: help_online
#: field:export.help.wizard,display_name:0 field:help.online,display_name:0
#: field:import.help.wizard,display_name:0
msgid "Display Name"
msgstr "Prikaži naziv"
#. module: help_online
#: view:export.help.wizard:help_online.export_help_wizard_view
msgid "Export"
msgstr ""
#. module: help_online
#: code:addons/help_online/models/export_help_wizard.py:267
#: model:ir.actions.act_window,name:help_online.action_export_help_wizard
#, python-format
msgid "Export Help"
msgstr ""
#. module: help_online
#: view:export.help.wizard:help_online.export_help_wizard_view
msgid "Export Help Data"
msgstr ""
#. module: help_online
#: model:ir.model,name:help_online.model_export_help_wizard
#: model:ir.ui.menu,name:help_online.menu_help_export
msgid "Export Help Online"
msgstr ""
#. module: help_online
#: field:export.help.wizard,export_filename:0
msgid "Export XML Filename"
msgstr ""
#. module: help_online
#: model:ir.ui.menu,name:help_online.menu_help
#: model:ir.ui.menu,name:help_online.menu_help_main
msgid "Help Online"
msgstr ""
#. module: help_online
#: code:addons/help_online/models/help_online.py:52
#, python-format
msgid "Help on %s"
msgstr ""
#. module: help_online
#: model:res.groups,name:help_online.help_online_group_reader
msgid "Help reader"
msgstr ""
#. module: help_online
#: model:res.groups,name:help_online.help_online_group_writer
msgid "Help writer"
msgstr ""
#. module: help_online
#: field:export.help.wizard,id:0 field:help.online,id:0
#: field:import.help.wizard,id:0
msgid "ID"
msgstr "ID"
#. module: help_online
#: view:import.help.wizard:help_online.import_help_wizard_view
msgid "Import"
msgstr ""
#. module: help_online
#: model:ir.actions.act_window,name:help_online.action_import_help_wizard
msgid "Import Help"
msgstr ""
#. module: help_online
#: view:import.help.wizard:help_online.import_help_wizard_view
msgid "Import Help Data"
msgstr ""
#. module: help_online
#: model:ir.ui.menu,name:help_online.menu_help_import
msgid "Import Help Online"
msgstr ""
#. module: help_online
#: field:export.help.wizard,__last_update:0 field:help.online,__last_update:0
#: field:import.help.wizard,__last_update:0
msgid "Last Modified on"
msgstr "Zadnje mijenjano"
#. module: help_online
#: field:export.help.wizard,write_uid:0 field:help.online,write_uid:0
#: field:import.help.wizard,write_uid:0
msgid "Last Updated by"
msgstr "Zadnji ažurirao"
#. module: help_online
#: field:export.help.wizard,write_date:0 field:help.online,write_date:0
#: field:import.help.wizard,write_date:0
msgid "Last Updated on"
msgstr "Zadnje ažurirano"
#. module: help_online
#: code:addons/help_online/models/export_help_wizard.py:260
#, python-format
msgid "No data to export !"
msgstr ""
#. module: help_online
#: code:addons/help_online/models/help_online.py:33
#, python-format
msgid "No page prefix parameter specified !"
msgstr ""
#. module: help_online
#. openerp-web
#: code:addons/help_online/static/src/js/help_online.js:98
#, python-format
msgid "Ok"
msgstr ""
#. module: help_online
#. openerp-web
#: code:addons/help_online/static/src/js/help_online.js:117
#, python-format
msgid "Page does not exist. Do you want to create?"
msgstr ""
#. module: help_online
#: field:import.help.wizard,source_file:0
msgid "Source File"
msgstr ""
#. module: help_online
#: view:export.help.wizard:help_online.export_help_wizard_view
msgid ""
"This wizard allow you to export all QWeb views\n"
" related to help online. The result will be an Odoo\n"
" data xml file."
msgstr ""
#. module: help_online
#: view:import.help.wizard:help_online.import_help_wizard_view
msgid ""
"This wizard allow you to import QWeb views\n"
" related to help online. The required file format is "
"an Odoo\n"
" data xml file."
msgstr ""
#. module: help_online
#: code:addons/help_online/models/export_help_wizard.py:297
#, python-format
msgid "Unable to write autobackup file in given directory: %s"
msgstr ""
#. module: help_online
#: view:ir.ui.view:help_online.view_view_search
msgid "Website Page"
msgstr ""
#. module: help_online
#: view:ir.ui.view:help_online.view_view_form
msgid "Website Page?"
msgstr ""
#. module: help_online
#: model:ir.actions.act_window,name:help_online.action_website_pages
#: model:ir.ui.menu,name:help_online.menu_help_pages
msgid "Website Pages"
msgstr ""
#. module: help_online
#: field:export.help.wizard,data:0
msgid "XML"
msgstr ""
#. module: help_online
#: view:export.help.wizard:help_online.export_help_wizard_view
#: view:import.help.wizard:help_online.import_help_wizard_view
msgid "or"
msgstr "ili"

238
help_online/i18n/ca.po

@ -0,0 +1,238 @@
# Translation of Odoo Server.
# This file contains the translation of the following modules:
# * help_online
#
# Translators:
msgid ""
msgstr ""
"Project-Id-Version: web (8.0)\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2018-01-16 08:57+0000\n"
"PO-Revision-Date: 2017-11-23 23:27+0000\n"
"Last-Translator: OCA Transbot <transbot@odoo-community.org>\n"
"Language-Team: Catalan (http://www.transifex.com/oca/OCA-web-8-0/language/"
"ca/)\n"
"Language: ca\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: help_online
#. openerp-web
#: code:addons/help_online/static/src/js/help_online.js:93
#, python-format
msgid "Cancel"
msgstr "Cancel·la"
#. module: help_online
#: view:export.help.wizard:help_online.export_help_wizard_view
#: view:import.help.wizard:help_online.import_help_wizard_view
msgid "Close"
msgstr "Tanca"
#. module: help_online
#. openerp-web
#: code:addons/help_online/static/src/js/help_online.js:91
#, python-format
msgid "Confirm"
msgstr ""
#. module: help_online
#: code:addons/help_online/models/help_online.py:57
#, python-format
msgid "Create Help page for %s"
msgstr ""
#. module: help_online
#: field:export.help.wizard,create_uid:0 field:help.online,create_uid:0
#: field:import.help.wizard,create_uid:0
msgid "Created by"
msgstr "Creat per"
#. module: help_online
#: field:export.help.wizard,create_date:0 field:help.online,create_date:0
#: field:import.help.wizard,create_date:0
msgid "Created on"
msgstr "Creat el"
#. module: help_online
#: field:export.help.wizard,display_name:0 field:help.online,display_name:0
#: field:import.help.wizard,display_name:0
msgid "Display Name"
msgstr "Veure el nom"
#. module: help_online
#: view:export.help.wizard:help_online.export_help_wizard_view
msgid "Export"
msgstr "Exportar "
#. module: help_online
#: code:addons/help_online/models/export_help_wizard.py:267
#: model:ir.actions.act_window,name:help_online.action_export_help_wizard
#, python-format
msgid "Export Help"
msgstr ""
#. module: help_online
#: view:export.help.wizard:help_online.export_help_wizard_view
msgid "Export Help Data"
msgstr ""
#. module: help_online
#: model:ir.model,name:help_online.model_export_help_wizard
#: model:ir.ui.menu,name:help_online.menu_help_export
msgid "Export Help Online"
msgstr ""
#. module: help_online
#: field:export.help.wizard,export_filename:0
msgid "Export XML Filename"
msgstr ""
#. module: help_online
#: model:ir.ui.menu,name:help_online.menu_help
#: model:ir.ui.menu,name:help_online.menu_help_main
msgid "Help Online"
msgstr ""
#. module: help_online
#: code:addons/help_online/models/help_online.py:52
#, python-format
msgid "Help on %s"
msgstr ""
#. module: help_online
#: model:res.groups,name:help_online.help_online_group_reader
msgid "Help reader"
msgstr ""
#. module: help_online
#: model:res.groups,name:help_online.help_online_group_writer
msgid "Help writer"
msgstr ""
#. module: help_online
#: field:export.help.wizard,id:0 field:help.online,id:0
#: field:import.help.wizard,id:0
msgid "ID"
msgstr "ID"
#. module: help_online
#: view:import.help.wizard:help_online.import_help_wizard_view
msgid "Import"
msgstr ""
#. module: help_online
#: model:ir.actions.act_window,name:help_online.action_import_help_wizard
msgid "Import Help"
msgstr ""
#. module: help_online
#: view:import.help.wizard:help_online.import_help_wizard_view
msgid "Import Help Data"
msgstr ""
#. module: help_online
#: model:ir.ui.menu,name:help_online.menu_help_import
msgid "Import Help Online"
msgstr ""
#. module: help_online
#: field:export.help.wizard,__last_update:0 field:help.online,__last_update:0
#: field:import.help.wizard,__last_update:0
msgid "Last Modified on"
msgstr "Darrera modificació el"
#. module: help_online
#: field:export.help.wizard,write_uid:0 field:help.online,write_uid:0
#: field:import.help.wizard,write_uid:0
msgid "Last Updated by"
msgstr "Darrera Actualització per"
#. module: help_online
#: field:export.help.wizard,write_date:0 field:help.online,write_date:0
#: field:import.help.wizard,write_date:0
msgid "Last Updated on"
msgstr "Darrera Actualització el"
#. module: help_online
#: code:addons/help_online/models/export_help_wizard.py:260
#, python-format
msgid "No data to export !"
msgstr ""
#. module: help_online
#: code:addons/help_online/models/help_online.py:33
#, python-format
msgid "No page prefix parameter specified !"
msgstr ""
#. module: help_online
#. openerp-web
#: code:addons/help_online/static/src/js/help_online.js:98
#, python-format
msgid "Ok"
msgstr ""
#. module: help_online
#. openerp-web
#: code:addons/help_online/static/src/js/help_online.js:117
#, python-format
msgid "Page does not exist. Do you want to create?"
msgstr ""
#. module: help_online
#: field:import.help.wizard,source_file:0
msgid "Source File"
msgstr ""
#. module: help_online
#: view:export.help.wizard:help_online.export_help_wizard_view
msgid ""
"This wizard allow you to export all QWeb views\n"
" related to help online. The result will be an Odoo\n"
" data xml file."
msgstr ""
#. module: help_online
#: view:import.help.wizard:help_online.import_help_wizard_view
msgid ""
"This wizard allow you to import QWeb views\n"
" related to help online. The required file format is "
"an Odoo\n"
" data xml file."
msgstr ""
#. module: help_online
#: code:addons/help_online/models/export_help_wizard.py:297
#, python-format
msgid "Unable to write autobackup file in given directory: %s"
msgstr ""
#. module: help_online
#: view:ir.ui.view:help_online.view_view_search
msgid "Website Page"
msgstr ""
#. module: help_online
#: view:ir.ui.view:help_online.view_view_form
msgid "Website Page?"
msgstr ""
#. module: help_online
#: model:ir.actions.act_window,name:help_online.action_website_pages
#: model:ir.ui.menu,name:help_online.menu_help_pages
msgid "Website Pages"
msgstr ""
#. module: help_online
#: field:export.help.wizard,data:0
msgid "XML"
msgstr ""
#. module: help_online
#: view:export.help.wizard:help_online.export_help_wizard_view
#: view:import.help.wizard:help_online.import_help_wizard_view
msgid "or"
msgstr "o"

238
help_online/i18n/ca_ES.po

@ -0,0 +1,238 @@
# Translation of Odoo Server.
# This file contains the translation of the following modules:
# * help_online
#
# Translators:
msgid ""
msgstr ""
"Project-Id-Version: web (8.0)\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2016-11-26 01:59+0000\n"
"PO-Revision-Date: 2016-11-22 16:25+0000\n"
"Last-Translator: OCA Transbot <transbot@odoo-community.org>\n"
"Language-Team: Catalan (Spain) (http://www.transifex.com/oca/OCA-web-8-0/"
"language/ca_ES/)\n"
"Language: ca_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: help_online
#. openerp-web
#: code:addons/help_online/static/src/js/help_online.js:93
#, python-format
msgid "Cancel"
msgstr "Cancel·la"
#. module: help_online
#: view:export.help.wizard:help_online.export_help_wizard_view
#: view:import.help.wizard:help_online.import_help_wizard_view
msgid "Close"
msgstr ""
#. module: help_online
#. openerp-web
#: code:addons/help_online/static/src/js/help_online.js:91
#, python-format
msgid "Confirm"
msgstr ""
#. module: help_online
#: code:addons/help_online/models/help_online.py:57
#, python-format
msgid "Create Help page for %s"
msgstr ""
#. module: help_online
#: field:export.help.wizard,create_uid:0 field:help.online,create_uid:0
#: field:import.help.wizard,create_uid:0
msgid "Created by"
msgstr ""
#. module: help_online
#: field:export.help.wizard,create_date:0 field:help.online,create_date:0
#: field:import.help.wizard,create_date:0
msgid "Created on"
msgstr ""
#. module: help_online
#: field:export.help.wizard,display_name:0 field:help.online,display_name:0
#: field:import.help.wizard,display_name:0
msgid "Display Name"
msgstr ""
#. module: help_online
#: view:export.help.wizard:help_online.export_help_wizard_view
msgid "Export"
msgstr ""
#. module: help_online
#: code:addons/help_online/models/export_help_wizard.py:267
#: model:ir.actions.act_window,name:help_online.action_export_help_wizard
#, python-format
msgid "Export Help"
msgstr ""
#. module: help_online
#: view:export.help.wizard:help_online.export_help_wizard_view
msgid "Export Help Data"
msgstr ""
#. module: help_online
#: model:ir.model,name:help_online.model_export_help_wizard
#: model:ir.ui.menu,name:help_online.menu_help_export
msgid "Export Help Online"
msgstr ""
#. module: help_online
#: field:export.help.wizard,export_filename:0
msgid "Export XML Filename"
msgstr ""
#. module: help_online
#: model:ir.ui.menu,name:help_online.menu_help
#: model:ir.ui.menu,name:help_online.menu_help_main
msgid "Help Online"
msgstr ""
#. module: help_online
#: code:addons/help_online/models/help_online.py:52
#, python-format
msgid "Help on %s"
msgstr ""
#. module: help_online
#: model:res.groups,name:help_online.help_online_group_reader
msgid "Help reader"
msgstr ""
#. module: help_online
#: model:res.groups,name:help_online.help_online_group_writer
msgid "Help writer"
msgstr ""
#. module: help_online
#: field:export.help.wizard,id:0 field:help.online,id:0
#: field:import.help.wizard,id:0
msgid "ID"
msgstr ""
#. module: help_online
#: view:import.help.wizard:help_online.import_help_wizard_view
msgid "Import"
msgstr ""
#. module: help_online
#: model:ir.actions.act_window,name:help_online.action_import_help_wizard
msgid "Import Help"
msgstr ""
#. module: help_online
#: view:import.help.wizard:help_online.import_help_wizard_view
msgid "Import Help Data"
msgstr ""
#. module: help_online
#: model:ir.ui.menu,name:help_online.menu_help_import
msgid "Import Help Online"
msgstr ""
#. module: help_online
#: field:export.help.wizard,__last_update:0 field:help.online,__last_update:0
#: field:import.help.wizard,__last_update:0
msgid "Last Modified on"
msgstr ""
#. module: help_online
#: field:export.help.wizard,write_uid:0 field:help.online,write_uid:0
#: field:import.help.wizard,write_uid:0
msgid "Last Updated by"
msgstr ""
#. module: help_online
#: field:export.help.wizard,write_date:0 field:help.online,write_date:0
#: field:import.help.wizard,write_date:0
msgid "Last Updated on"
msgstr ""
#. module: help_online
#: code:addons/help_online/models/export_help_wizard.py:260
#, python-format
msgid "No data to export !"
msgstr ""
#. module: help_online
#: code:addons/help_online/models/help_online.py:33
#, python-format
msgid "No page prefix parameter specified !"
msgstr ""
#. module: help_online
#. openerp-web
#: code:addons/help_online/static/src/js/help_online.js:98
#, python-format
msgid "Ok"
msgstr ""
#. module: help_online
#. openerp-web
#: code:addons/help_online/static/src/js/help_online.js:117
#, python-format
msgid "Page does not exist. Do you want to create?"
msgstr ""
#. module: help_online
#: field:import.help.wizard,source_file:0
msgid "Source File"
msgstr ""
#. module: help_online
#: view:export.help.wizard:help_online.export_help_wizard_view
msgid ""
"This wizard allow you to export all QWeb views\n"
" related to help online. The result will be an Odoo\n"
" data xml file."
msgstr ""
#. module: help_online
#: view:import.help.wizard:help_online.import_help_wizard_view
msgid ""
"This wizard allow you to import QWeb views\n"
" related to help online. The required file format is "
"an Odoo\n"
" data xml file."
msgstr ""
#. module: help_online
#: code:addons/help_online/models/export_help_wizard.py:297
#, python-format
msgid "Unable to write autobackup file in given directory: %s"
msgstr ""
#. module: help_online
#: view:ir.ui.view:help_online.view_view_search
msgid "Website Page"
msgstr ""
#. module: help_online
#: view:ir.ui.view:help_online.view_view_form
msgid "Website Page?"
msgstr ""
#. module: help_online
#: model:ir.actions.act_window,name:help_online.action_website_pages
#: model:ir.ui.menu,name:help_online.menu_help_pages
msgid "Website Pages"
msgstr ""
#. module: help_online
#: field:export.help.wizard,data:0
msgid "XML"
msgstr ""
#. module: help_online
#: view:export.help.wizard:help_online.export_help_wizard_view
#: view:import.help.wizard:help_online.import_help_wizard_view
msgid "or"
msgstr ""

238
help_online/i18n/cs.po

@ -0,0 +1,238 @@
# Translation of Odoo Server.
# This file contains the translation of the following modules:
# * help_online
#
# Translators:
msgid ""
msgstr ""
"Project-Id-Version: web (8.0)\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2018-01-16 08:57+0000\n"
"PO-Revision-Date: 2017-11-23 23:26+0000\n"
"Last-Translator: OCA Transbot <transbot@odoo-community.org>\n"
"Language-Team: Czech (http://www.transifex.com/oca/OCA-web-8-0/language/"
"cs/)\n"
"Language: cs\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: \n"
"Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;\n"
#. module: help_online
#. openerp-web
#: code:addons/help_online/static/src/js/help_online.js:93
#, python-format
msgid "Cancel"
msgstr "Zrušit"
#. module: help_online
#: view:export.help.wizard:help_online.export_help_wizard_view
#: view:import.help.wizard:help_online.import_help_wizard_view
msgid "Close"
msgstr "Zavřít"
#. module: help_online
#. openerp-web
#: code:addons/help_online/static/src/js/help_online.js:91
#, python-format
msgid "Confirm"
msgstr ""
#. module: help_online
#: code:addons/help_online/models/help_online.py:57
#, python-format
msgid "Create Help page for %s"
msgstr ""
#. module: help_online
#: field:export.help.wizard,create_uid:0 field:help.online,create_uid:0
#: field:import.help.wizard,create_uid:0
msgid "Created by"
msgstr "Vytvořil(a)"
#. module: help_online
#: field:export.help.wizard,create_date:0 field:help.online,create_date:0
#: field:import.help.wizard,create_date:0
msgid "Created on"
msgstr "Vytvořeno"
#. module: help_online
#: field:export.help.wizard,display_name:0 field:help.online,display_name:0
#: field:import.help.wizard,display_name:0
msgid "Display Name"
msgstr "Zobrazovaný název"
#. module: help_online
#: view:export.help.wizard:help_online.export_help_wizard_view
msgid "Export"
msgstr ""
#. module: help_online
#: code:addons/help_online/models/export_help_wizard.py:267
#: model:ir.actions.act_window,name:help_online.action_export_help_wizard
#, python-format
msgid "Export Help"
msgstr ""
#. module: help_online
#: view:export.help.wizard:help_online.export_help_wizard_view
msgid "Export Help Data"
msgstr ""
#. module: help_online
#: model:ir.model,name:help_online.model_export_help_wizard
#: model:ir.ui.menu,name:help_online.menu_help_export
msgid "Export Help Online"
msgstr ""
#. module: help_online
#: field:export.help.wizard,export_filename:0
msgid "Export XML Filename"
msgstr ""
#. module: help_online
#: model:ir.ui.menu,name:help_online.menu_help
#: model:ir.ui.menu,name:help_online.menu_help_main
msgid "Help Online"
msgstr ""
#. module: help_online
#: code:addons/help_online/models/help_online.py:52
#, python-format
msgid "Help on %s"
msgstr ""
#. module: help_online
#: model:res.groups,name:help_online.help_online_group_reader
msgid "Help reader"
msgstr ""
#. module: help_online
#: model:res.groups,name:help_online.help_online_group_writer
msgid "Help writer"
msgstr ""
#. module: help_online
#: field:export.help.wizard,id:0 field:help.online,id:0
#: field:import.help.wizard,id:0
msgid "ID"
msgstr "ID"
#. module: help_online
#: view:import.help.wizard:help_online.import_help_wizard_view
msgid "Import"
msgstr ""
#. module: help_online
#: model:ir.actions.act_window,name:help_online.action_import_help_wizard
msgid "Import Help"
msgstr ""
#. module: help_online
#: view:import.help.wizard:help_online.import_help_wizard_view
msgid "Import Help Data"
msgstr ""
#. module: help_online
#: model:ir.ui.menu,name:help_online.menu_help_import
msgid "Import Help Online"
msgstr ""
#. module: help_online
#: field:export.help.wizard,__last_update:0 field:help.online,__last_update:0
#: field:import.help.wizard,__last_update:0
msgid "Last Modified on"
msgstr "Naposled upraveno"
#. module: help_online
#: field:export.help.wizard,write_uid:0 field:help.online,write_uid:0
#: field:import.help.wizard,write_uid:0
msgid "Last Updated by"
msgstr "Naposled upraveno"
#. module: help_online
#: field:export.help.wizard,write_date:0 field:help.online,write_date:0
#: field:import.help.wizard,write_date:0
msgid "Last Updated on"
msgstr "Naposled upraveno"
#. module: help_online
#: code:addons/help_online/models/export_help_wizard.py:260
#, python-format
msgid "No data to export !"
msgstr ""
#. module: help_online
#: code:addons/help_online/models/help_online.py:33
#, python-format
msgid "No page prefix parameter specified !"
msgstr ""
#. module: help_online
#. openerp-web
#: code:addons/help_online/static/src/js/help_online.js:98
#, python-format
msgid "Ok"
msgstr ""
#. module: help_online
#. openerp-web
#: code:addons/help_online/static/src/js/help_online.js:117
#, python-format
msgid "Page does not exist. Do you want to create?"
msgstr ""
#. module: help_online
#: field:import.help.wizard,source_file:0
msgid "Source File"
msgstr ""
#. module: help_online
#: view:export.help.wizard:help_online.export_help_wizard_view
msgid ""
"This wizard allow you to export all QWeb views\n"
" related to help online. The result will be an Odoo\n"
" data xml file."
msgstr ""
#. module: help_online
#: view:import.help.wizard:help_online.import_help_wizard_view
msgid ""
"This wizard allow you to import QWeb views\n"
" related to help online. The required file format is "
"an Odoo\n"
" data xml file."
msgstr ""
#. module: help_online
#: code:addons/help_online/models/export_help_wizard.py:297
#, python-format
msgid "Unable to write autobackup file in given directory: %s"
msgstr ""
#. module: help_online
#: view:ir.ui.view:help_online.view_view_search
msgid "Website Page"
msgstr ""
#. module: help_online
#: view:ir.ui.view:help_online.view_view_form
msgid "Website Page?"
msgstr ""
#. module: help_online
#: model:ir.actions.act_window,name:help_online.action_website_pages
#: model:ir.ui.menu,name:help_online.menu_help_pages
msgid "Website Pages"
msgstr ""
#. module: help_online
#: field:export.help.wizard,data:0
msgid "XML"
msgstr ""
#. module: help_online
#: view:export.help.wizard:help_online.export_help_wizard_view
#: view:import.help.wizard:help_online.import_help_wizard_view
msgid "or"
msgstr "nebo"

238
help_online/i18n/da.po

@ -0,0 +1,238 @@
# Translation of Odoo Server.
# This file contains the translation of the following modules:
# * help_online
#
# Translators:
msgid ""
msgstr ""
"Project-Id-Version: web (8.0)\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2016-12-29 03:45+0000\n"
"PO-Revision-Date: 2016-12-22 14:08+0000\n"
"Last-Translator: OCA Transbot <transbot@odoo-community.org>\n"
"Language-Team: Danish (http://www.transifex.com/oca/OCA-web-8-0/language/"
"da/)\n"
"Language: da\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: help_online
#. openerp-web
#: code:addons/help_online/static/src/js/help_online.js:93
#, python-format
msgid "Cancel"
msgstr "Annuller"
#. module: help_online
#: view:export.help.wizard:help_online.export_help_wizard_view
#: view:import.help.wizard:help_online.import_help_wizard_view
msgid "Close"
msgstr ""
#. module: help_online
#. openerp-web
#: code:addons/help_online/static/src/js/help_online.js:91
#, python-format
msgid "Confirm"
msgstr ""
#. module: help_online
#: code:addons/help_online/models/help_online.py:57
#, python-format
msgid "Create Help page for %s"
msgstr ""
#. module: help_online
#: field:export.help.wizard,create_uid:0 field:help.online,create_uid:0
#: field:import.help.wizard,create_uid:0
msgid "Created by"
msgstr "Oprettet af"
#. module: help_online
#: field:export.help.wizard,create_date:0 field:help.online,create_date:0
#: field:import.help.wizard,create_date:0
msgid "Created on"
msgstr "Oprettet den"
#. module: help_online
#: field:export.help.wizard,display_name:0 field:help.online,display_name:0
#: field:import.help.wizard,display_name:0
msgid "Display Name"
msgstr "Vist navn"
#. module: help_online
#: view:export.help.wizard:help_online.export_help_wizard_view
msgid "Export"
msgstr ""
#. module: help_online
#: code:addons/help_online/models/export_help_wizard.py:267
#: model:ir.actions.act_window,name:help_online.action_export_help_wizard
#, python-format
msgid "Export Help"
msgstr ""
#. module: help_online
#: view:export.help.wizard:help_online.export_help_wizard_view
msgid "Export Help Data"
msgstr ""
#. module: help_online
#: model:ir.model,name:help_online.model_export_help_wizard
#: model:ir.ui.menu,name:help_online.menu_help_export
msgid "Export Help Online"
msgstr ""
#. module: help_online
#: field:export.help.wizard,export_filename:0
msgid "Export XML Filename"
msgstr ""
#. module: help_online
#: model:ir.ui.menu,name:help_online.menu_help
#: model:ir.ui.menu,name:help_online.menu_help_main
msgid "Help Online"
msgstr ""
#. module: help_online
#: code:addons/help_online/models/help_online.py:52
#, python-format
msgid "Help on %s"
msgstr ""
#. module: help_online
#: model:res.groups,name:help_online.help_online_group_reader
msgid "Help reader"
msgstr ""
#. module: help_online
#: model:res.groups,name:help_online.help_online_group_writer
msgid "Help writer"
msgstr ""
#. module: help_online
#: field:export.help.wizard,id:0 field:help.online,id:0
#: field:import.help.wizard,id:0
msgid "ID"
msgstr "Id"
#. module: help_online
#: view:import.help.wizard:help_online.import_help_wizard_view
msgid "Import"
msgstr ""
#. module: help_online
#: model:ir.actions.act_window,name:help_online.action_import_help_wizard
msgid "Import Help"
msgstr ""
#. module: help_online
#: view:import.help.wizard:help_online.import_help_wizard_view
msgid "Import Help Data"
msgstr ""
#. module: help_online
#: model:ir.ui.menu,name:help_online.menu_help_import
msgid "Import Help Online"
msgstr ""
#. module: help_online
#: field:export.help.wizard,__last_update:0 field:help.online,__last_update:0
#: field:import.help.wizard,__last_update:0
msgid "Last Modified on"
msgstr "Sidst ændret den"
#. module: help_online
#: field:export.help.wizard,write_uid:0 field:help.online,write_uid:0
#: field:import.help.wizard,write_uid:0
msgid "Last Updated by"
msgstr "Sidst opdateret af"
#. module: help_online
#: field:export.help.wizard,write_date:0 field:help.online,write_date:0
#: field:import.help.wizard,write_date:0
msgid "Last Updated on"
msgstr "Sidst opdateret den"
#. module: help_online
#: code:addons/help_online/models/export_help_wizard.py:260
#, python-format
msgid "No data to export !"
msgstr ""
#. module: help_online
#: code:addons/help_online/models/help_online.py:33
#, python-format
msgid "No page prefix parameter specified !"
msgstr ""
#. module: help_online
#. openerp-web
#: code:addons/help_online/static/src/js/help_online.js:98
#, python-format
msgid "Ok"
msgstr ""
#. module: help_online
#. openerp-web
#: code:addons/help_online/static/src/js/help_online.js:117
#, python-format
msgid "Page does not exist. Do you want to create?"
msgstr ""
#. module: help_online
#: field:import.help.wizard,source_file:0
msgid "Source File"
msgstr ""
#. module: help_online
#: view:export.help.wizard:help_online.export_help_wizard_view
msgid ""
"This wizard allow you to export all QWeb views\n"
" related to help online. The result will be an Odoo\n"
" data xml file."
msgstr ""
#. module: help_online
#: view:import.help.wizard:help_online.import_help_wizard_view
msgid ""
"This wizard allow you to import QWeb views\n"
" related to help online. The required file format is "
"an Odoo\n"
" data xml file."
msgstr ""
#. module: help_online
#: code:addons/help_online/models/export_help_wizard.py:297
#, python-format
msgid "Unable to write autobackup file in given directory: %s"
msgstr ""
#. module: help_online
#: view:ir.ui.view:help_online.view_view_search
msgid "Website Page"
msgstr ""
#. module: help_online
#: view:ir.ui.view:help_online.view_view_form
msgid "Website Page?"
msgstr ""
#. module: help_online
#: model:ir.actions.act_window,name:help_online.action_website_pages
#: model:ir.ui.menu,name:help_online.menu_help_pages
msgid "Website Pages"
msgstr ""
#. module: help_online
#: field:export.help.wizard,data:0
msgid "XML"
msgstr ""
#. module: help_online
#: view:export.help.wizard:help_online.export_help_wizard_view
#: view:import.help.wizard:help_online.import_help_wizard_view
msgid "or"
msgstr "eller"

256
help_online/i18n/de.po

@ -0,0 +1,256 @@
# Translation of Odoo Server.
# This file contains the translation of the following modules:
# * help_online
#
# Translators:
# Ahmet Altinisik <aaltinisik@altinkaya.com.tr>, 2015-2016
# Alejandro Santana <alejandrosantana@anubia.es>, 2015
# Antonio Trueba, 2016
# Artūras Griškonis <ArtX38@gmail.com>, 2012,2015-2016
# Artūras Griškonis <xbmc.lt@gmail.com>, 2012
# Carles Antoli <carlesantoli@hotmail.com>, 2015-2016
# danimaribeiro <danimaribeiro@gmail.com>, 2016
# Dorin Hongu <dhongu@gmail.com>, 2015
# FIRST AUTHOR <EMAIL@ADDRESS>, 2010,2012
# Matjaž Mozetič <m.mozetic@matmoz.si>, 2015-2016
# Rudolf Schnapka <rs@techno-flex.de>, 2016
# SaFi J. <safi2266@gmail.com>, 2015
# Zapata11 <raimondas.duzinskas@gmail.com>, 2015
msgid ""
msgstr ""
"Project-Id-Version: web (8.0)\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2016-09-17 12:06+0000\n"
"PO-Revision-Date: 2016-09-18 08:13+0000\n"
"Last-Translator: OCA Transbot <transbot@odoo-community.org>\n"
"Language-Team: German (http://www.transifex.com/oca/OCA-web-8-0/language/"
"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: help_online
#. openerp-web
#: code:addons/help_online/static/src/js/help_online.js:93
#, python-format
msgid "Cancel"
msgstr "Abbrechen"
#. module: help_online
#: view:export.help.wizard:help_online.export_help_wizard_view
#: view:import.help.wizard:help_online.import_help_wizard_view
msgid "Close"
msgstr "Schließen"
#. module: help_online
#. openerp-web
#: code:addons/help_online/static/src/js/help_online.js:91
#, python-format
msgid "Confirm"
msgstr "Bestätigen"
#. module: help_online
#: code:addons/help_online/models/help_online.py:57
#, python-format
msgid "Create Help page for %s"
msgstr "Hilfe-Seite für %s anlegen"
#. module: help_online
#: field:export.help.wizard,create_uid:0 field:help.online,create_uid:0
#: field:import.help.wizard,create_uid:0
msgid "Created by"
msgstr "Angelegt durch"
#. module: help_online
#: field:export.help.wizard,create_date:0 field:help.online,create_date:0
#: field:import.help.wizard,create_date:0
msgid "Created on"
msgstr "Angelegt am"
#. module: help_online
#: field:export.help.wizard,display_name:0 field:help.online,display_name:0
#: field:import.help.wizard,display_name:0
msgid "Display Name"
msgstr "Anzeigename"
#. module: help_online
#: view:export.help.wizard:help_online.export_help_wizard_view
msgid "Export"
msgstr "Export"
#. module: help_online
#: code:addons/help_online/models/export_help_wizard.py:267
#: model:ir.actions.act_window,name:help_online.action_export_help_wizard
#, python-format
msgid "Export Help"
msgstr "Export-Hilfe"
#. module: help_online
#: view:export.help.wizard:help_online.export_help_wizard_view
msgid "Export Help Data"
msgstr "Daten der Export-Hilfe"
#. module: help_online
#: model:ir.model,name:help_online.model_export_help_wizard
#: model:ir.ui.menu,name:help_online.menu_help_export
msgid "Export Help Online"
msgstr "Export-Hilfe online"
#. module: help_online
#: field:export.help.wizard,export_filename:0
msgid "Export XML Filename"
msgstr "Export XML-Dateiname"
#. module: help_online
#: model:ir.ui.menu,name:help_online.menu_help
#: model:ir.ui.menu,name:help_online.menu_help_main
msgid "Help Online"
msgstr "Online-Hilfe"
#. module: help_online
#: code:addons/help_online/models/help_online.py:52
#, python-format
msgid "Help on %s"
msgstr "Hilfe zu %s"
#. module: help_online
#: model:res.groups,name:help_online.help_online_group_reader
msgid "Help reader"
msgstr "Hilfeanzeiger"
#. module: help_online
#: model:res.groups,name:help_online.help_online_group_writer
msgid "Help writer"
msgstr "Hilfe-Schreiber"
#. module: help_online
#: field:export.help.wizard,id:0 field:help.online,id:0
#: field:import.help.wizard,id:0
msgid "ID"
msgstr "ID"
#. module: help_online
#: view:import.help.wizard:help_online.import_help_wizard_view
msgid "Import"
msgstr "Import"
#. module: help_online
#: model:ir.actions.act_window,name:help_online.action_import_help_wizard
msgid "Import Help"
msgstr "Import-Hilfe"
#. module: help_online
#: view:import.help.wizard:help_online.import_help_wizard_view
msgid "Import Help Data"
msgstr "Import Hilfedaten"
#. module: help_online
#: model:ir.ui.menu,name:help_online.menu_help_import
msgid "Import Help Online"
msgstr "Import Online-Hilfe"
#. module: help_online
#: field:export.help.wizard,__last_update:0 field:help.online,__last_update:0
#: field:import.help.wizard,__last_update:0
msgid "Last Modified on"
msgstr "Zuletzt geändert am"
#. module: help_online
#: field:export.help.wizard,write_uid:0 field:help.online,write_uid:0
#: field:import.help.wizard,write_uid:0
msgid "Last Updated by"
msgstr "Zuletzt aktualisiert durch"
#. module: help_online
#: field:export.help.wizard,write_date:0 field:help.online,write_date:0
#: field:import.help.wizard,write_date:0
msgid "Last Updated on"
msgstr "Zuletzt aktualisiert am"
#. module: help_online
#: code:addons/help_online/models/export_help_wizard.py:260
#, python-format
msgid "No data to export !"
msgstr "Keine Daten zum exportieren."
#. module: help_online
#: code:addons/help_online/models/help_online.py:33
#, python-format
msgid "No page prefix parameter specified !"
msgstr "Kein Seiten-Präfix festgelegt."
#. module: help_online
#. openerp-web
#: code:addons/help_online/static/src/js/help_online.js:98
#, python-format
msgid "Ok"
msgstr "Ok"
#. module: help_online
#. openerp-web
#: code:addons/help_online/static/src/js/help_online.js:117
#, python-format
msgid "Page does not exist. Do you want to create?"
msgstr "Seite existiert nicht. Wollen Sie diese anlegen?"
#. module: help_online
#: field:import.help.wizard,source_file:0
msgid "Source File"
msgstr "Quelldatei"
#. module: help_online
#: view:export.help.wizard:help_online.export_help_wizard_view
msgid ""
"This wizard allow you to export all QWeb views\n"
" related to help online. The result will be an Odoo\n"
" data xml file."
msgstr ""
"Dieser Assistent ermöglicht Ihnen den Export aller QWeb-Sichten\n"
"mit Bezug auf Online-Hilfe. Das Ergebnis ist eine \n"
"Odoo-Daten-XML-Datei."
#. module: help_online
#: view:import.help.wizard:help_online.import_help_wizard_view
msgid ""
"This wizard allow you to import QWeb views\n"
" related to help online. The required file format is "
"an Odoo\n"
" data xml file."
msgstr ""
"Dieser Assistent ermöglicht Ihnen den Import von QWeb-Sichten mit Bezug auf "
"Online-Hilfe. Das erforderliche Format ist eine Odoo-Daten-XML-Datei."
#. module: help_online
#: code:addons/help_online/models/export_help_wizard.py:297
#, python-format
msgid "Unable to write autobackup file in given directory: %s"
msgstr "Kann Auto-Sicherung im gegebenen Verzeichnis %s nicht speichern"
#. module: help_online
#: view:ir.ui.view:help_online.view_view_search
msgid "Website Page"
msgstr "Webseite"
#. module: help_online
#: view:ir.ui.view:help_online.view_view_form
msgid "Website Page?"
msgstr "Webseite?"
#. module: help_online
#: model:ir.actions.act_window,name:help_online.action_website_pages
#: model:ir.ui.menu,name:help_online.menu_help_pages
msgid "Website Pages"
msgstr "Webseiten"
#. module: help_online
#: field:export.help.wizard,data:0
msgid "XML"
msgstr "XML"
#. module: help_online
#: view:export.help.wizard:help_online.export_help_wizard_view
#: view:import.help.wizard:help_online.import_help_wizard_view
msgid "or"
msgstr "oder"

238
help_online/i18n/el_GR.po

@ -0,0 +1,238 @@
# Translation of Odoo Server.
# This file contains the translation of the following modules:
# * help_online
#
# Translators:
msgid ""
msgstr ""
"Project-Id-Version: web (8.0)\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2016-11-26 01:59+0000\n"
"PO-Revision-Date: 2016-11-22 16:30+0000\n"
"Last-Translator: Kostas Goutoudis <goutoudis@gmail.com>\n"
"Language-Team: Greek (Greece) (http://www.transifex.com/oca/OCA-web-8-0/"
"language/el_GR/)\n"
"Language: el_GR\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: help_online
#. openerp-web
#: code:addons/help_online/static/src/js/help_online.js:93
#, python-format
msgid "Cancel"
msgstr "Άκυρο"
#. module: help_online
#: view:export.help.wizard:help_online.export_help_wizard_view
#: view:import.help.wizard:help_online.import_help_wizard_view
msgid "Close"
msgstr ""
#. module: help_online
#. openerp-web
#: code:addons/help_online/static/src/js/help_online.js:91
#, python-format
msgid "Confirm"
msgstr ""
#. module: help_online
#: code:addons/help_online/models/help_online.py:57
#, python-format
msgid "Create Help page for %s"
msgstr ""
#. module: help_online
#: field:export.help.wizard,create_uid:0 field:help.online,create_uid:0
#: field:import.help.wizard,create_uid:0
msgid "Created by"
msgstr "Δημιουργήθηκε από "
#. module: help_online
#: field:export.help.wizard,create_date:0 field:help.online,create_date:0
#: field:import.help.wizard,create_date:0
msgid "Created on"
msgstr "Δημιουργήθηκε στις"
#. module: help_online
#: field:export.help.wizard,display_name:0 field:help.online,display_name:0
#: field:import.help.wizard,display_name:0
msgid "Display Name"
msgstr ""
#. module: help_online
#: view:export.help.wizard:help_online.export_help_wizard_view
msgid "Export"
msgstr ""
#. module: help_online
#: code:addons/help_online/models/export_help_wizard.py:267
#: model:ir.actions.act_window,name:help_online.action_export_help_wizard
#, python-format
msgid "Export Help"
msgstr ""
#. module: help_online
#: view:export.help.wizard:help_online.export_help_wizard_view
msgid "Export Help Data"
msgstr ""
#. module: help_online
#: model:ir.model,name:help_online.model_export_help_wizard
#: model:ir.ui.menu,name:help_online.menu_help_export
msgid "Export Help Online"
msgstr ""
#. module: help_online
#: field:export.help.wizard,export_filename:0
msgid "Export XML Filename"
msgstr ""
#. module: help_online
#: model:ir.ui.menu,name:help_online.menu_help
#: model:ir.ui.menu,name:help_online.menu_help_main
msgid "Help Online"
msgstr ""
#. module: help_online
#: code:addons/help_online/models/help_online.py:52
#, python-format
msgid "Help on %s"
msgstr ""
#. module: help_online
#: model:res.groups,name:help_online.help_online_group_reader
msgid "Help reader"
msgstr ""
#. module: help_online
#: model:res.groups,name:help_online.help_online_group_writer
msgid "Help writer"
msgstr ""
#. module: help_online
#: field:export.help.wizard,id:0 field:help.online,id:0
#: field:import.help.wizard,id:0
msgid "ID"
msgstr "Κωδικός"
#. module: help_online
#: view:import.help.wizard:help_online.import_help_wizard_view
msgid "Import"
msgstr ""
#. module: help_online
#: model:ir.actions.act_window,name:help_online.action_import_help_wizard
msgid "Import Help"
msgstr ""
#. module: help_online
#: view:import.help.wizard:help_online.import_help_wizard_view
msgid "Import Help Data"
msgstr ""
#. module: help_online
#: model:ir.ui.menu,name:help_online.menu_help_import
msgid "Import Help Online"
msgstr ""
#. module: help_online
#: field:export.help.wizard,__last_update:0 field:help.online,__last_update:0
#: field:import.help.wizard,__last_update:0
msgid "Last Modified on"
msgstr ""
#. module: help_online
#: field:export.help.wizard,write_uid:0 field:help.online,write_uid:0
#: field:import.help.wizard,write_uid:0
msgid "Last Updated by"
msgstr "Τελευταία ενημέρωση από"
#. module: help_online
#: field:export.help.wizard,write_date:0 field:help.online,write_date:0
#: field:import.help.wizard,write_date:0
msgid "Last Updated on"
msgstr "Τελευταία ενημέρωση στις"
#. module: help_online
#: code:addons/help_online/models/export_help_wizard.py:260
#, python-format
msgid "No data to export !"
msgstr ""
#. module: help_online
#: code:addons/help_online/models/help_online.py:33
#, python-format
msgid "No page prefix parameter specified !"
msgstr ""
#. module: help_online
#. openerp-web
#: code:addons/help_online/static/src/js/help_online.js:98
#, python-format
msgid "Ok"
msgstr ""
#. module: help_online
#. openerp-web
#: code:addons/help_online/static/src/js/help_online.js:117
#, python-format
msgid "Page does not exist. Do you want to create?"
msgstr ""
#. module: help_online
#: field:import.help.wizard,source_file:0
msgid "Source File"
msgstr ""
#. module: help_online
#: view:export.help.wizard:help_online.export_help_wizard_view
msgid ""
"This wizard allow you to export all QWeb views\n"
" related to help online. The result will be an Odoo\n"
" data xml file."
msgstr ""
#. module: help_online
#: view:import.help.wizard:help_online.import_help_wizard_view
msgid ""
"This wizard allow you to import QWeb views\n"
" related to help online. The required file format is "
"an Odoo\n"
" data xml file."
msgstr ""
#. module: help_online
#: code:addons/help_online/models/export_help_wizard.py:297
#, python-format
msgid "Unable to write autobackup file in given directory: %s"
msgstr ""
#. module: help_online
#: view:ir.ui.view:help_online.view_view_search
msgid "Website Page"
msgstr ""
#. module: help_online
#: view:ir.ui.view:help_online.view_view_form
msgid "Website Page?"
msgstr ""
#. module: help_online
#: model:ir.actions.act_window,name:help_online.action_website_pages
#: model:ir.ui.menu,name:help_online.menu_help_pages
msgid "Website Pages"
msgstr ""
#. module: help_online
#: field:export.help.wizard,data:0
msgid "XML"
msgstr ""
#. module: help_online
#: view:export.help.wizard:help_online.export_help_wizard_view
#: view:import.help.wizard:help_online.import_help_wizard_view
msgid "or"
msgstr ""

238
help_online/i18n/en_AU.po

@ -0,0 +1,238 @@
# Translation of Odoo Server.
# This file contains the translation of the following modules:
# * help_online
#
# Translators:
msgid ""
msgstr ""
"Project-Id-Version: web (8.0)\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2016-12-29 03:45+0000\n"
"PO-Revision-Date: 2016-12-27 08:23+0000\n"
"Last-Translator: OCA Transbot <transbot@odoo-community.org>\n"
"Language-Team: English (Australia) (http://www.transifex.com/oca/OCA-web-8-0/"
"language/en_AU/)\n"
"Language: en_AU\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: help_online
#. openerp-web
#: code:addons/help_online/static/src/js/help_online.js:93
#, python-format
msgid "Cancel"
msgstr "Cancel"
#. module: help_online
#: view:export.help.wizard:help_online.export_help_wizard_view
#: view:import.help.wizard:help_online.import_help_wizard_view
msgid "Close"
msgstr ""
#. module: help_online
#. openerp-web
#: code:addons/help_online/static/src/js/help_online.js:91
#, python-format
msgid "Confirm"
msgstr ""
#. module: help_online
#: code:addons/help_online/models/help_online.py:57
#, python-format
msgid "Create Help page for %s"
msgstr ""
#. module: help_online
#: field:export.help.wizard,create_uid:0 field:help.online,create_uid:0
#: field:import.help.wizard,create_uid:0
msgid "Created by"
msgstr ""
#. module: help_online
#: field:export.help.wizard,create_date:0 field:help.online,create_date:0
#: field:import.help.wizard,create_date:0
msgid "Created on"
msgstr ""
#. module: help_online
#: field:export.help.wizard,display_name:0 field:help.online,display_name:0
#: field:import.help.wizard,display_name:0
msgid "Display Name"
msgstr ""
#. module: help_online
#: view:export.help.wizard:help_online.export_help_wizard_view
msgid "Export"
msgstr ""
#. module: help_online
#: code:addons/help_online/models/export_help_wizard.py:267
#: model:ir.actions.act_window,name:help_online.action_export_help_wizard
#, python-format
msgid "Export Help"
msgstr ""
#. module: help_online
#: view:export.help.wizard:help_online.export_help_wizard_view
msgid "Export Help Data"
msgstr ""
#. module: help_online
#: model:ir.model,name:help_online.model_export_help_wizard
#: model:ir.ui.menu,name:help_online.menu_help_export
msgid "Export Help Online"
msgstr ""
#. module: help_online
#: field:export.help.wizard,export_filename:0
msgid "Export XML Filename"
msgstr ""
#. module: help_online
#: model:ir.ui.menu,name:help_online.menu_help
#: model:ir.ui.menu,name:help_online.menu_help_main
msgid "Help Online"
msgstr ""
#. module: help_online
#: code:addons/help_online/models/help_online.py:52
#, python-format
msgid "Help on %s"
msgstr ""
#. module: help_online
#: model:res.groups,name:help_online.help_online_group_reader
msgid "Help reader"
msgstr ""
#. module: help_online
#: model:res.groups,name:help_online.help_online_group_writer
msgid "Help writer"
msgstr ""
#. module: help_online
#: field:export.help.wizard,id:0 field:help.online,id:0
#: field:import.help.wizard,id:0
msgid "ID"
msgstr ""
#. module: help_online
#: view:import.help.wizard:help_online.import_help_wizard_view
msgid "Import"
msgstr ""
#. module: help_online
#: model:ir.actions.act_window,name:help_online.action_import_help_wizard
msgid "Import Help"
msgstr ""
#. module: help_online
#: view:import.help.wizard:help_online.import_help_wizard_view
msgid "Import Help Data"
msgstr ""
#. module: help_online
#: model:ir.ui.menu,name:help_online.menu_help_import
msgid "Import Help Online"
msgstr ""
#. module: help_online
#: field:export.help.wizard,__last_update:0 field:help.online,__last_update:0
#: field:import.help.wizard,__last_update:0
msgid "Last Modified on"
msgstr ""
#. module: help_online
#: field:export.help.wizard,write_uid:0 field:help.online,write_uid:0
#: field:import.help.wizard,write_uid:0
msgid "Last Updated by"
msgstr ""
#. module: help_online
#: field:export.help.wizard,write_date:0 field:help.online,write_date:0
#: field:import.help.wizard,write_date:0
msgid "Last Updated on"
msgstr ""
#. module: help_online
#: code:addons/help_online/models/export_help_wizard.py:260
#, python-format
msgid "No data to export !"
msgstr ""
#. module: help_online
#: code:addons/help_online/models/help_online.py:33
#, python-format
msgid "No page prefix parameter specified !"
msgstr ""
#. module: help_online
#. openerp-web
#: code:addons/help_online/static/src/js/help_online.js:98
#, python-format
msgid "Ok"
msgstr ""
#. module: help_online
#. openerp-web
#: code:addons/help_online/static/src/js/help_online.js:117
#, python-format
msgid "Page does not exist. Do you want to create?"
msgstr ""
#. module: help_online
#: field:import.help.wizard,source_file:0
msgid "Source File"
msgstr ""
#. module: help_online
#: view:export.help.wizard:help_online.export_help_wizard_view
msgid ""
"This wizard allow you to export all QWeb views\n"
" related to help online. The result will be an Odoo\n"
" data xml file."
msgstr ""
#. module: help_online
#: view:import.help.wizard:help_online.import_help_wizard_view
msgid ""
"This wizard allow you to import QWeb views\n"
" related to help online. The required file format is "
"an Odoo\n"
" data xml file."
msgstr ""
#. module: help_online
#: code:addons/help_online/models/export_help_wizard.py:297
#, python-format
msgid "Unable to write autobackup file in given directory: %s"
msgstr ""
#. module: help_online
#: view:ir.ui.view:help_online.view_view_search
msgid "Website Page"
msgstr ""
#. module: help_online
#: view:ir.ui.view:help_online.view_view_form
msgid "Website Page?"
msgstr ""
#. module: help_online
#: model:ir.actions.act_window,name:help_online.action_website_pages
#: model:ir.ui.menu,name:help_online.menu_help_pages
msgid "Website Pages"
msgstr ""
#. module: help_online
#: field:export.help.wizard,data:0
msgid "XML"
msgstr ""
#. module: help_online
#: view:export.help.wizard:help_online.export_help_wizard_view
#: view:import.help.wizard:help_online.import_help_wizard_view
msgid "or"
msgstr ""

238
help_online/i18n/en_GB.po

@ -0,0 +1,238 @@
# Translation of Odoo Server.
# This file contains the translation of the following modules:
# * help_online
#
# Translators:
msgid ""
msgstr ""
"Project-Id-Version: web (8.0)\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2018-01-16 08:57+0000\n"
"PO-Revision-Date: 2017-11-23 23:28+0000\n"
"Last-Translator: OCA Transbot <transbot@odoo-community.org>\n"
"Language-Team: English (United Kingdom) (http://www.transifex.com/oca/OCA-"
"web-8-0/language/en_GB/)\n"
"Language: en_GB\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: help_online
#. openerp-web
#: code:addons/help_online/static/src/js/help_online.js:93
#, python-format
msgid "Cancel"
msgstr "Cancel"
#. module: help_online
#: view:export.help.wizard:help_online.export_help_wizard_view
#: view:import.help.wizard:help_online.import_help_wizard_view
msgid "Close"
msgstr "Close"
#. module: help_online
#. openerp-web
#: code:addons/help_online/static/src/js/help_online.js:91
#, python-format
msgid "Confirm"
msgstr ""
#. module: help_online
#: code:addons/help_online/models/help_online.py:57
#, python-format
msgid "Create Help page for %s"
msgstr ""
#. module: help_online
#: field:export.help.wizard,create_uid:0 field:help.online,create_uid:0
#: field:import.help.wizard,create_uid:0
msgid "Created by"
msgstr "Created by"
#. module: help_online
#: field:export.help.wizard,create_date:0 field:help.online,create_date:0
#: field:import.help.wizard,create_date:0
msgid "Created on"
msgstr "Created on"
#. module: help_online
#: field:export.help.wizard,display_name:0 field:help.online,display_name:0
#: field:import.help.wizard,display_name:0
msgid "Display Name"
msgstr "Display Name"
#. module: help_online
#: view:export.help.wizard:help_online.export_help_wizard_view
msgid "Export"
msgstr ""
#. module: help_online
#: code:addons/help_online/models/export_help_wizard.py:267
#: model:ir.actions.act_window,name:help_online.action_export_help_wizard
#, python-format
msgid "Export Help"
msgstr ""
#. module: help_online
#: view:export.help.wizard:help_online.export_help_wizard_view
msgid "Export Help Data"
msgstr ""
#. module: help_online
#: model:ir.model,name:help_online.model_export_help_wizard
#: model:ir.ui.menu,name:help_online.menu_help_export
msgid "Export Help Online"
msgstr ""
#. module: help_online
#: field:export.help.wizard,export_filename:0
msgid "Export XML Filename"
msgstr ""
#. module: help_online
#: model:ir.ui.menu,name:help_online.menu_help
#: model:ir.ui.menu,name:help_online.menu_help_main
msgid "Help Online"
msgstr ""
#. module: help_online
#: code:addons/help_online/models/help_online.py:52
#, python-format
msgid "Help on %s"
msgstr ""
#. module: help_online
#: model:res.groups,name:help_online.help_online_group_reader
msgid "Help reader"
msgstr ""
#. module: help_online
#: model:res.groups,name:help_online.help_online_group_writer
msgid "Help writer"
msgstr ""
#. module: help_online
#: field:export.help.wizard,id:0 field:help.online,id:0
#: field:import.help.wizard,id:0
msgid "ID"
msgstr "ID"
#. module: help_online
#: view:import.help.wizard:help_online.import_help_wizard_view
msgid "Import"
msgstr ""
#. module: help_online
#: model:ir.actions.act_window,name:help_online.action_import_help_wizard
msgid "Import Help"
msgstr ""
#. module: help_online
#: view:import.help.wizard:help_online.import_help_wizard_view
msgid "Import Help Data"
msgstr ""
#. module: help_online
#: model:ir.ui.menu,name:help_online.menu_help_import
msgid "Import Help Online"
msgstr ""
#. module: help_online
#: field:export.help.wizard,__last_update:0 field:help.online,__last_update:0
#: field:import.help.wizard,__last_update:0
msgid "Last Modified on"
msgstr "Last Modified on"
#. module: help_online
#: field:export.help.wizard,write_uid:0 field:help.online,write_uid:0
#: field:import.help.wizard,write_uid:0
msgid "Last Updated by"
msgstr "Last Updated by"
#. module: help_online
#: field:export.help.wizard,write_date:0 field:help.online,write_date:0
#: field:import.help.wizard,write_date:0
msgid "Last Updated on"
msgstr "Last Updated on"
#. module: help_online
#: code:addons/help_online/models/export_help_wizard.py:260
#, python-format
msgid "No data to export !"
msgstr ""
#. module: help_online
#: code:addons/help_online/models/help_online.py:33
#, python-format
msgid "No page prefix parameter specified !"
msgstr ""
#. module: help_online
#. openerp-web
#: code:addons/help_online/static/src/js/help_online.js:98
#, python-format
msgid "Ok"
msgstr ""
#. module: help_online
#. openerp-web
#: code:addons/help_online/static/src/js/help_online.js:117
#, python-format
msgid "Page does not exist. Do you want to create?"
msgstr ""
#. module: help_online
#: field:import.help.wizard,source_file:0
msgid "Source File"
msgstr ""
#. module: help_online
#: view:export.help.wizard:help_online.export_help_wizard_view
msgid ""
"This wizard allow you to export all QWeb views\n"
" related to help online. The result will be an Odoo\n"
" data xml file."
msgstr ""
#. module: help_online
#: view:import.help.wizard:help_online.import_help_wizard_view
msgid ""
"This wizard allow you to import QWeb views\n"
" related to help online. The required file format is "
"an Odoo\n"
" data xml file."
msgstr ""
#. module: help_online
#: code:addons/help_online/models/export_help_wizard.py:297
#, python-format
msgid "Unable to write autobackup file in given directory: %s"
msgstr ""
#. module: help_online
#: view:ir.ui.view:help_online.view_view_search
msgid "Website Page"
msgstr ""
#. module: help_online
#: view:ir.ui.view:help_online.view_view_form
msgid "Website Page?"
msgstr ""
#. module: help_online
#: model:ir.actions.act_window,name:help_online.action_website_pages
#: model:ir.ui.menu,name:help_online.menu_help_pages
msgid "Website Pages"
msgstr ""
#. module: help_online
#: field:export.help.wizard,data:0
msgid "XML"
msgstr ""
#. module: help_online
#: view:export.help.wizard:help_online.export_help_wizard_view
#: view:import.help.wizard:help_online.import_help_wizard_view
msgid "or"
msgstr "or"

264
help_online/i18n/es.po

@ -0,0 +1,264 @@
# Translation of Odoo Server.
# This file contains the translation of the following modules:
# * help_online
#
# Translators:
# Ahmet Altinisik <aaltinisik@altinkaya.com.tr>, 2016
# Ahmet Altinisik <aaltinisik@altinkaya.com.tr>, 2016
# Antonio Trueba, 2016
# Antonio Trueba, 2016
# Armando Vulcano Junior <vulcano@uol.com.br>, 2015
# Carles Antoli <carlesantoli@hotmail.com>, 2015
# Carles Antoli <carlesantoli@hotmail.com>, 2015
# danimaribeiro <danimaribeiro@gmail.com>, 2016
# FIRST AUTHOR <EMAIL@ADDRESS>, 2012,2014
# Kostas Goutoudis <goutoudis@gmail.com>, 2015
# Jesús Alan Ramos Rodríguez <alan.ramos@jarsa.com.mx>, 2015
# Jesús Alan Ramos Rodríguez <alan.ramos@jarsa.com.mx>, 2015
# Jesús Alan Ramos Rodríguez <alan.ramos@jarsa.com.mx>, 2015
# Kostas Goutoudis <goutoudis@gmail.com>, 2015
# Matjaž Mozetič <m.mozetic@matmoz.si>, 2015
# Paolo Valier, 2016
# Pedro Castro Silva <pedrocs@sossia.pt>, 2015
# Pedro M. Baeza <pedro.baeza@gmail.com>, 2015-2016
# Rudolf Schnapka <rs@techno-flex.de>, 2016
# SaFi J. <safi2266@gmail.com>, 2015
msgid ""
msgstr ""
"Project-Id-Version: web (8.0)\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2016-11-26 01:59+0000\n"
"PO-Revision-Date: 2016-11-25 14:56+0000\n"
"Last-Translator: Pedro M. Baeza <pedro.baeza@gmail.com>\n"
"Language-Team: Spanish (http://www.transifex.com/oca/OCA-web-8-0/language/"
"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: help_online
#. openerp-web
#: code:addons/help_online/static/src/js/help_online.js:93
#, python-format
msgid "Cancel"
msgstr "Cancelar"
#. module: help_online
#: view:export.help.wizard:help_online.export_help_wizard_view
#: view:import.help.wizard:help_online.import_help_wizard_view
msgid "Close"
msgstr "Cerrar"
#. module: help_online
#. openerp-web
#: code:addons/help_online/static/src/js/help_online.js:91
#, python-format
msgid "Confirm"
msgstr "Confirmar"
#. module: help_online
#: code:addons/help_online/models/help_online.py:57
#, python-format
msgid "Create Help page for %s"
msgstr "Crear página de ayuda para %s"
#. module: help_online
#: field:export.help.wizard,create_uid:0 field:help.online,create_uid:0
#: field:import.help.wizard,create_uid:0
msgid "Created by"
msgstr "Creado por"
#. module: help_online
#: field:export.help.wizard,create_date:0 field:help.online,create_date:0
#: field:import.help.wizard,create_date:0
msgid "Created on"
msgstr "Creado en"
#. module: help_online
#: field:export.help.wizard,display_name:0 field:help.online,display_name:0
#: field:import.help.wizard,display_name:0
msgid "Display Name"
msgstr "Nombre mostrado"
#. module: help_online
#: view:export.help.wizard:help_online.export_help_wizard_view
msgid "Export"
msgstr "Exportar"
#. module: help_online
#: code:addons/help_online/models/export_help_wizard.py:267
#: model:ir.actions.act_window,name:help_online.action_export_help_wizard
#, python-format
msgid "Export Help"
msgstr "Exportar ayuda"
#. module: help_online
#: view:export.help.wizard:help_online.export_help_wizard_view
msgid "Export Help Data"
msgstr "Exportar datos de ayuda"
#. module: help_online
#: model:ir.model,name:help_online.model_export_help_wizard
#: model:ir.ui.menu,name:help_online.menu_help_export
msgid "Export Help Online"
msgstr "Exportar ayuda en línea"
#. module: help_online
#: field:export.help.wizard,export_filename:0
msgid "Export XML Filename"
msgstr "Exportar fichero XML"
#. module: help_online
#: model:ir.ui.menu,name:help_online.menu_help
#: model:ir.ui.menu,name:help_online.menu_help_main
msgid "Help Online"
msgstr "Ayuda en línea"
#. module: help_online
#: code:addons/help_online/models/help_online.py:52
#, python-format
msgid "Help on %s"
msgstr "Ayuda sobre %s"
#. module: help_online
#: model:res.groups,name:help_online.help_online_group_reader
msgid "Help reader"
msgstr "Lector de ayuda"
#. module: help_online
#: model:res.groups,name:help_online.help_online_group_writer
msgid "Help writer"
msgstr "Editor de ayuda"
#. module: help_online
#: field:export.help.wizard,id:0 field:help.online,id:0
#: field:import.help.wizard,id:0
msgid "ID"
msgstr "ID"
#. module: help_online
#: view:import.help.wizard:help_online.import_help_wizard_view
msgid "Import"
msgstr "Importar"
#. module: help_online
#: model:ir.actions.act_window,name:help_online.action_import_help_wizard
msgid "Import Help"
msgstr "Importar ayuda"
#. module: help_online
#: view:import.help.wizard:help_online.import_help_wizard_view
msgid "Import Help Data"
msgstr "Importar datos de ayuda"
#. module: help_online
#: model:ir.ui.menu,name:help_online.menu_help_import
msgid "Import Help Online"
msgstr "Importar ayuda en línea"
#. module: help_online
#: field:export.help.wizard,__last_update:0 field:help.online,__last_update:0
#: field:import.help.wizard,__last_update:0
msgid "Last Modified on"
msgstr "Última actualización en"
#. module: help_online
#: field:export.help.wizard,write_uid:0 field:help.online,write_uid:0
#: field:import.help.wizard,write_uid:0
msgid "Last Updated by"
msgstr "Última actualización por"
#. module: help_online
#: field:export.help.wizard,write_date:0 field:help.online,write_date:0
#: field:import.help.wizard,write_date:0
msgid "Last Updated on"
msgstr "Última actualización en"
#. module: help_online
#: code:addons/help_online/models/export_help_wizard.py:260
#, python-format
msgid "No data to export !"
msgstr "No hay información a exportar."
#. module: help_online
#: code:addons/help_online/models/help_online.py:33
#, python-format
msgid "No page prefix parameter specified !"
msgstr "No se ha especificado un parámetro de prefijo de página"
#. module: help_online
#. openerp-web
#: code:addons/help_online/static/src/js/help_online.js:98
#, python-format
msgid "Ok"
msgstr "Aceptar"
#. module: help_online
#. openerp-web
#: code:addons/help_online/static/src/js/help_online.js:117
#, python-format
msgid "Page does not exist. Do you want to create?"
msgstr "La página no existe. ¿Quiere crearla?"
#. module: help_online
#: field:import.help.wizard,source_file:0
msgid "Source File"
msgstr "Archivo origen"
#. module: help_online
#: view:export.help.wizard:help_online.export_help_wizard_view
msgid ""
"This wizard allow you to export all QWeb views\n"
" related to help online. The result will be an Odoo\n"
" data xml file."
msgstr ""
"Este asistente le permite exportar todas las vistas QWeb relacionadas con la "
"ayuda en línea. El resultado será un archivo XML en formato de Odoo."
#. module: help_online
#: view:import.help.wizard:help_online.import_help_wizard_view
msgid ""
"This wizard allow you to import QWeb views\n"
" related to help online. The required file format is "
"an Odoo\n"
" data xml file."
msgstr ""
"Este asistente le permite importar vistas QWeb relacionadas con la ayuda en "
"linea. Debe ser un archivo XML en formato de Odoo."
#. module: help_online
#: code:addons/help_online/models/export_help_wizard.py:297
#, python-format
msgid "Unable to write autobackup file in given directory: %s"
msgstr ""
"No se ha podido escribir la copia de seguridad automática en el directorio "
"especificado: %s"
#. module: help_online
#: view:ir.ui.view:help_online.view_view_search
msgid "Website Page"
msgstr "Página del sitio web"
#. module: help_online
#: view:ir.ui.view:help_online.view_view_form
msgid "Website Page?"
msgstr "¿Página del sitio web?"
#. module: help_online
#: model:ir.actions.act_window,name:help_online.action_website_pages
#: model:ir.ui.menu,name:help_online.menu_help_pages
msgid "Website Pages"
msgstr "Páginas del sitio web"
#. module: help_online
#: field:export.help.wizard,data:0
msgid "XML"
msgstr "XML"
#. module: help_online
#: view:export.help.wizard:help_online.export_help_wizard_view
#: view:import.help.wizard:help_online.import_help_wizard_view
msgid "or"
msgstr "o"

238
help_online/i18n/es_AR.po

@ -0,0 +1,238 @@
# Translation of Odoo Server.
# This file contains the translation of the following modules:
# * help_online
#
# Translators:
msgid ""
msgstr ""
"Project-Id-Version: web (8.0)\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2016-12-29 03:45+0000\n"
"PO-Revision-Date: 2016-12-27 08:23+0000\n"
"Last-Translator: OCA Transbot <transbot@odoo-community.org>\n"
"Language-Team: Spanish (Argentina) (http://www.transifex.com/oca/OCA-web-8-0/"
"language/es_AR/)\n"
"Language: es_AR\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: help_online
#. openerp-web
#: code:addons/help_online/static/src/js/help_online.js:93
#, python-format
msgid "Cancel"
msgstr "Cancelar"
#. module: help_online
#: view:export.help.wizard:help_online.export_help_wizard_view
#: view:import.help.wizard:help_online.import_help_wizard_view
msgid "Close"
msgstr ""
#. module: help_online
#. openerp-web
#: code:addons/help_online/static/src/js/help_online.js:91
#, python-format
msgid "Confirm"
msgstr ""
#. module: help_online
#: code:addons/help_online/models/help_online.py:57
#, python-format
msgid "Create Help page for %s"
msgstr ""
#. module: help_online
#: field:export.help.wizard,create_uid:0 field:help.online,create_uid:0
#: field:import.help.wizard,create_uid:0
msgid "Created by"
msgstr "Creado por"
#. module: help_online
#: field:export.help.wizard,create_date:0 field:help.online,create_date:0
#: field:import.help.wizard,create_date:0
msgid "Created on"
msgstr "Creado en"
#. module: help_online
#: field:export.help.wizard,display_name:0 field:help.online,display_name:0
#: field:import.help.wizard,display_name:0
msgid "Display Name"
msgstr "Mostrar Nombre"
#. module: help_online
#: view:export.help.wizard:help_online.export_help_wizard_view
msgid "Export"
msgstr ""
#. module: help_online
#: code:addons/help_online/models/export_help_wizard.py:267
#: model:ir.actions.act_window,name:help_online.action_export_help_wizard
#, python-format
msgid "Export Help"
msgstr ""
#. module: help_online
#: view:export.help.wizard:help_online.export_help_wizard_view
msgid "Export Help Data"
msgstr ""
#. module: help_online
#: model:ir.model,name:help_online.model_export_help_wizard
#: model:ir.ui.menu,name:help_online.menu_help_export
msgid "Export Help Online"
msgstr ""
#. module: help_online
#: field:export.help.wizard,export_filename:0
msgid "Export XML Filename"
msgstr ""
#. module: help_online
#: model:ir.ui.menu,name:help_online.menu_help
#: model:ir.ui.menu,name:help_online.menu_help_main
msgid "Help Online"
msgstr ""
#. module: help_online
#: code:addons/help_online/models/help_online.py:52
#, python-format
msgid "Help on %s"
msgstr ""
#. module: help_online
#: model:res.groups,name:help_online.help_online_group_reader
msgid "Help reader"
msgstr ""
#. module: help_online
#: model:res.groups,name:help_online.help_online_group_writer
msgid "Help writer"
msgstr ""
#. module: help_online
#: field:export.help.wizard,id:0 field:help.online,id:0
#: field:import.help.wizard,id:0
msgid "ID"
msgstr "ID"
#. module: help_online
#: view:import.help.wizard:help_online.import_help_wizard_view
msgid "Import"
msgstr ""
#. module: help_online
#: model:ir.actions.act_window,name:help_online.action_import_help_wizard
msgid "Import Help"
msgstr ""
#. module: help_online
#: view:import.help.wizard:help_online.import_help_wizard_view
msgid "Import Help Data"
msgstr ""
#. module: help_online
#: model:ir.ui.menu,name:help_online.menu_help_import
msgid "Import Help Online"
msgstr ""
#. module: help_online
#: field:export.help.wizard,__last_update:0 field:help.online,__last_update:0
#: field:import.help.wizard,__last_update:0
msgid "Last Modified on"
msgstr "Última modificación en"
#. module: help_online
#: field:export.help.wizard,write_uid:0 field:help.online,write_uid:0
#: field:import.help.wizard,write_uid:0
msgid "Last Updated by"
msgstr "Última actualización realizada por"
#. module: help_online
#: field:export.help.wizard,write_date:0 field:help.online,write_date:0
#: field:import.help.wizard,write_date:0
msgid "Last Updated on"
msgstr "Última actualización el"
#. module: help_online
#: code:addons/help_online/models/export_help_wizard.py:260
#, python-format
msgid "No data to export !"
msgstr ""
#. module: help_online
#: code:addons/help_online/models/help_online.py:33
#, python-format
msgid "No page prefix parameter specified !"
msgstr ""
#. module: help_online
#. openerp-web
#: code:addons/help_online/static/src/js/help_online.js:98
#, python-format
msgid "Ok"
msgstr ""
#. module: help_online
#. openerp-web
#: code:addons/help_online/static/src/js/help_online.js:117
#, python-format
msgid "Page does not exist. Do you want to create?"
msgstr ""
#. module: help_online
#: field:import.help.wizard,source_file:0
msgid "Source File"
msgstr ""
#. module: help_online
#: view:export.help.wizard:help_online.export_help_wizard_view
msgid ""
"This wizard allow you to export all QWeb views\n"
" related to help online. The result will be an Odoo\n"
" data xml file."
msgstr ""
#. module: help_online
#: view:import.help.wizard:help_online.import_help_wizard_view
msgid ""
"This wizard allow you to import QWeb views\n"
" related to help online. The required file format is "
"an Odoo\n"
" data xml file."
msgstr ""
#. module: help_online
#: code:addons/help_online/models/export_help_wizard.py:297
#, python-format
msgid "Unable to write autobackup file in given directory: %s"
msgstr ""
#. module: help_online
#: view:ir.ui.view:help_online.view_view_search
msgid "Website Page"
msgstr ""
#. module: help_online
#: view:ir.ui.view:help_online.view_view_form
msgid "Website Page?"
msgstr ""
#. module: help_online
#: model:ir.actions.act_window,name:help_online.action_website_pages
#: model:ir.ui.menu,name:help_online.menu_help_pages
msgid "Website Pages"
msgstr ""
#. module: help_online
#: field:export.help.wizard,data:0
msgid "XML"
msgstr ""
#. module: help_online
#: view:export.help.wizard:help_online.export_help_wizard_view
#: view:import.help.wizard:help_online.import_help_wizard_view
msgid "or"
msgstr "o"

238
help_online/i18n/es_CL.po

@ -0,0 +1,238 @@
# Translation of Odoo Server.
# This file contains the translation of the following modules:
# * help_online
#
# Translators:
msgid ""
msgstr ""
"Project-Id-Version: web (8.0)\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2016-12-29 03:45+0000\n"
"PO-Revision-Date: 2016-12-27 08:24+0000\n"
"Last-Translator: OCA Transbot <transbot@odoo-community.org>\n"
"Language-Team: Spanish (Chile) (http://www.transifex.com/oca/OCA-web-8-0/"
"language/es_CL/)\n"
"Language: es_CL\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: help_online
#. openerp-web
#: code:addons/help_online/static/src/js/help_online.js:93
#, python-format
msgid "Cancel"
msgstr "Cancelar"
#. module: help_online
#: view:export.help.wizard:help_online.export_help_wizard_view
#: view:import.help.wizard:help_online.import_help_wizard_view
msgid "Close"
msgstr ""
#. module: help_online
#. openerp-web
#: code:addons/help_online/static/src/js/help_online.js:91
#, python-format
msgid "Confirm"
msgstr ""
#. module: help_online
#: code:addons/help_online/models/help_online.py:57
#, python-format
msgid "Create Help page for %s"
msgstr ""
#. module: help_online
#: field:export.help.wizard,create_uid:0 field:help.online,create_uid:0
#: field:import.help.wizard,create_uid:0
msgid "Created by"
msgstr "Creado por"
#. module: help_online
#: field:export.help.wizard,create_date:0 field:help.online,create_date:0
#: field:import.help.wizard,create_date:0
msgid "Created on"
msgstr "Creado en"
#. module: help_online
#: field:export.help.wizard,display_name:0 field:help.online,display_name:0
#: field:import.help.wizard,display_name:0
msgid "Display Name"
msgstr "Nombre mostrado"
#. module: help_online
#: view:export.help.wizard:help_online.export_help_wizard_view
msgid "Export"
msgstr ""
#. module: help_online
#: code:addons/help_online/models/export_help_wizard.py:267
#: model:ir.actions.act_window,name:help_online.action_export_help_wizard
#, python-format
msgid "Export Help"
msgstr ""
#. module: help_online
#: view:export.help.wizard:help_online.export_help_wizard_view
msgid "Export Help Data"
msgstr ""
#. module: help_online
#: model:ir.model,name:help_online.model_export_help_wizard
#: model:ir.ui.menu,name:help_online.menu_help_export
msgid "Export Help Online"
msgstr ""
#. module: help_online
#: field:export.help.wizard,export_filename:0
msgid "Export XML Filename"
msgstr ""
#. module: help_online
#: model:ir.ui.menu,name:help_online.menu_help
#: model:ir.ui.menu,name:help_online.menu_help_main
msgid "Help Online"
msgstr ""
#. module: help_online
#: code:addons/help_online/models/help_online.py:52
#, python-format
msgid "Help on %s"
msgstr ""
#. module: help_online
#: model:res.groups,name:help_online.help_online_group_reader
msgid "Help reader"
msgstr ""
#. module: help_online
#: model:res.groups,name:help_online.help_online_group_writer
msgid "Help writer"
msgstr ""
#. module: help_online
#: field:export.help.wizard,id:0 field:help.online,id:0
#: field:import.help.wizard,id:0
msgid "ID"
msgstr "ID (identificación)"
#. module: help_online
#: view:import.help.wizard:help_online.import_help_wizard_view
msgid "Import"
msgstr ""
#. module: help_online
#: model:ir.actions.act_window,name:help_online.action_import_help_wizard
msgid "Import Help"
msgstr ""
#. module: help_online
#: view:import.help.wizard:help_online.import_help_wizard_view
msgid "Import Help Data"
msgstr ""
#. module: help_online
#: model:ir.ui.menu,name:help_online.menu_help_import
msgid "Import Help Online"
msgstr ""
#. module: help_online
#: field:export.help.wizard,__last_update:0 field:help.online,__last_update:0
#: field:import.help.wizard,__last_update:0
msgid "Last Modified on"
msgstr "Última modificación en"
#. module: help_online
#: field:export.help.wizard,write_uid:0 field:help.online,write_uid:0
#: field:import.help.wizard,write_uid:0
msgid "Last Updated by"
msgstr "Última actualización de"
#. module: help_online
#: field:export.help.wizard,write_date:0 field:help.online,write_date:0
#: field:import.help.wizard,write_date:0
msgid "Last Updated on"
msgstr "Última actualización en"
#. module: help_online
#: code:addons/help_online/models/export_help_wizard.py:260
#, python-format
msgid "No data to export !"
msgstr ""
#. module: help_online
#: code:addons/help_online/models/help_online.py:33
#, python-format
msgid "No page prefix parameter specified !"
msgstr ""
#. module: help_online
#. openerp-web
#: code:addons/help_online/static/src/js/help_online.js:98
#, python-format
msgid "Ok"
msgstr ""
#. module: help_online
#. openerp-web
#: code:addons/help_online/static/src/js/help_online.js:117
#, python-format
msgid "Page does not exist. Do you want to create?"
msgstr ""
#. module: help_online
#: field:import.help.wizard,source_file:0
msgid "Source File"
msgstr ""
#. module: help_online
#: view:export.help.wizard:help_online.export_help_wizard_view
msgid ""
"This wizard allow you to export all QWeb views\n"
" related to help online. The result will be an Odoo\n"
" data xml file."
msgstr ""
#. module: help_online
#: view:import.help.wizard:help_online.import_help_wizard_view
msgid ""
"This wizard allow you to import QWeb views\n"
" related to help online. The required file format is "
"an Odoo\n"
" data xml file."
msgstr ""
#. module: help_online
#: code:addons/help_online/models/export_help_wizard.py:297
#, python-format
msgid "Unable to write autobackup file in given directory: %s"
msgstr ""
#. module: help_online
#: view:ir.ui.view:help_online.view_view_search
msgid "Website Page"
msgstr ""
#. module: help_online
#: view:ir.ui.view:help_online.view_view_form
msgid "Website Page?"
msgstr ""
#. module: help_online
#: model:ir.actions.act_window,name:help_online.action_website_pages
#: model:ir.ui.menu,name:help_online.menu_help_pages
msgid "Website Pages"
msgstr ""
#. module: help_online
#: field:export.help.wizard,data:0
msgid "XML"
msgstr ""
#. module: help_online
#: view:export.help.wizard:help_online.export_help_wizard_view
#: view:import.help.wizard:help_online.import_help_wizard_view
msgid "or"
msgstr "o"

238
help_online/i18n/es_CO.po

@ -0,0 +1,238 @@
# Translation of Odoo Server.
# This file contains the translation of the following modules:
# * help_online
#
# Translators:
msgid ""
msgstr ""
"Project-Id-Version: web (8.0)\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2016-12-29 03:45+0000\n"
"PO-Revision-Date: 2016-12-27 08:22+0000\n"
"Last-Translator: OCA Transbot <transbot@odoo-community.org>\n"
"Language-Team: Spanish (Colombia) (http://www.transifex.com/oca/OCA-web-8-0/"
"language/es_CO/)\n"
"Language: es_CO\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: help_online
#. openerp-web
#: code:addons/help_online/static/src/js/help_online.js:93
#, python-format
msgid "Cancel"
msgstr "Cancelar"
#. module: help_online
#: view:export.help.wizard:help_online.export_help_wizard_view
#: view:import.help.wizard:help_online.import_help_wizard_view
msgid "Close"
msgstr ""
#. module: help_online
#. openerp-web
#: code:addons/help_online/static/src/js/help_online.js:91
#, python-format
msgid "Confirm"
msgstr ""
#. module: help_online
#: code:addons/help_online/models/help_online.py:57
#, python-format
msgid "Create Help page for %s"
msgstr ""
#. module: help_online
#: field:export.help.wizard,create_uid:0 field:help.online,create_uid:0
#: field:import.help.wizard,create_uid:0
msgid "Created by"
msgstr "Creado por"
#. module: help_online
#: field:export.help.wizard,create_date:0 field:help.online,create_date:0
#: field:import.help.wizard,create_date:0
msgid "Created on"
msgstr "Creado"
#. module: help_online
#: field:export.help.wizard,display_name:0 field:help.online,display_name:0
#: field:import.help.wizard,display_name:0
msgid "Display Name"
msgstr "Nombre Público"
#. module: help_online
#: view:export.help.wizard:help_online.export_help_wizard_view
msgid "Export"
msgstr ""
#. module: help_online
#: code:addons/help_online/models/export_help_wizard.py:267
#: model:ir.actions.act_window,name:help_online.action_export_help_wizard
#, python-format
msgid "Export Help"
msgstr ""
#. module: help_online
#: view:export.help.wizard:help_online.export_help_wizard_view
msgid "Export Help Data"
msgstr ""
#. module: help_online
#: model:ir.model,name:help_online.model_export_help_wizard
#: model:ir.ui.menu,name:help_online.menu_help_export
msgid "Export Help Online"
msgstr ""
#. module: help_online
#: field:export.help.wizard,export_filename:0
msgid "Export XML Filename"
msgstr ""
#. module: help_online
#: model:ir.ui.menu,name:help_online.menu_help
#: model:ir.ui.menu,name:help_online.menu_help_main
msgid "Help Online"
msgstr ""
#. module: help_online
#: code:addons/help_online/models/help_online.py:52
#, python-format
msgid "Help on %s"
msgstr ""
#. module: help_online
#: model:res.groups,name:help_online.help_online_group_reader
msgid "Help reader"
msgstr ""
#. module: help_online
#: model:res.groups,name:help_online.help_online_group_writer
msgid "Help writer"
msgstr ""
#. module: help_online
#: field:export.help.wizard,id:0 field:help.online,id:0
#: field:import.help.wizard,id:0
msgid "ID"
msgstr "ID"
#. module: help_online
#: view:import.help.wizard:help_online.import_help_wizard_view
msgid "Import"
msgstr ""
#. module: help_online
#: model:ir.actions.act_window,name:help_online.action_import_help_wizard
msgid "Import Help"
msgstr ""
#. module: help_online
#: view:import.help.wizard:help_online.import_help_wizard_view
msgid "Import Help Data"
msgstr ""
#. module: help_online
#: model:ir.ui.menu,name:help_online.menu_help_import
msgid "Import Help Online"
msgstr ""
#. module: help_online
#: field:export.help.wizard,__last_update:0 field:help.online,__last_update:0
#: field:import.help.wizard,__last_update:0
msgid "Last Modified on"
msgstr "Última Modificación el"
#. module: help_online
#: field:export.help.wizard,write_uid:0 field:help.online,write_uid:0
#: field:import.help.wizard,write_uid:0
msgid "Last Updated by"
msgstr "Actualizado por"
#. module: help_online
#: field:export.help.wizard,write_date:0 field:help.online,write_date:0
#: field:import.help.wizard,write_date:0
msgid "Last Updated on"
msgstr "Actualizado"
#. module: help_online
#: code:addons/help_online/models/export_help_wizard.py:260
#, python-format
msgid "No data to export !"
msgstr ""
#. module: help_online
#: code:addons/help_online/models/help_online.py:33
#, python-format
msgid "No page prefix parameter specified !"
msgstr ""
#. module: help_online
#. openerp-web
#: code:addons/help_online/static/src/js/help_online.js:98
#, python-format
msgid "Ok"
msgstr ""
#. module: help_online
#. openerp-web
#: code:addons/help_online/static/src/js/help_online.js:117
#, python-format
msgid "Page does not exist. Do you want to create?"
msgstr ""
#. module: help_online
#: field:import.help.wizard,source_file:0
msgid "Source File"
msgstr ""
#. module: help_online
#: view:export.help.wizard:help_online.export_help_wizard_view
msgid ""
"This wizard allow you to export all QWeb views\n"
" related to help online. The result will be an Odoo\n"
" data xml file."
msgstr ""
#. module: help_online
#: view:import.help.wizard:help_online.import_help_wizard_view
msgid ""
"This wizard allow you to import QWeb views\n"
" related to help online. The required file format is "
"an Odoo\n"
" data xml file."
msgstr ""
#. module: help_online
#: code:addons/help_online/models/export_help_wizard.py:297
#, python-format
msgid "Unable to write autobackup file in given directory: %s"
msgstr ""
#. module: help_online
#: view:ir.ui.view:help_online.view_view_search
msgid "Website Page"
msgstr ""
#. module: help_online
#: view:ir.ui.view:help_online.view_view_form
msgid "Website Page?"
msgstr ""
#. module: help_online
#: model:ir.actions.act_window,name:help_online.action_website_pages
#: model:ir.ui.menu,name:help_online.menu_help_pages
msgid "Website Pages"
msgstr ""
#. module: help_online
#: field:export.help.wizard,data:0
msgid "XML"
msgstr ""
#. module: help_online
#: view:export.help.wizard:help_online.export_help_wizard_view
#: view:import.help.wizard:help_online.import_help_wizard_view
msgid "or"
msgstr "o"

238
help_online/i18n/es_CR.po

@ -0,0 +1,238 @@
# Translation of Odoo Server.
# This file contains the translation of the following modules:
# * help_online
#
# Translators:
msgid ""
msgstr ""
"Project-Id-Version: web (8.0)\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2018-01-16 08:57+0000\n"
"PO-Revision-Date: 2017-09-22 17:19+0000\n"
"Last-Translator: OCA Transbot <transbot@odoo-community.org>\n"
"Language-Team: Spanish (Costa Rica) (http://www.transifex.com/oca/OCA-"
"web-8-0/language/es_CR/)\n"
"Language: es_CR\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: help_online
#. openerp-web
#: code:addons/help_online/static/src/js/help_online.js:93
#, python-format
msgid "Cancel"
msgstr "Cancelar"
#. module: help_online
#: view:export.help.wizard:help_online.export_help_wizard_view
#: view:import.help.wizard:help_online.import_help_wizard_view
msgid "Close"
msgstr "Cerrar"
#. module: help_online
#. openerp-web
#: code:addons/help_online/static/src/js/help_online.js:91
#, python-format
msgid "Confirm"
msgstr ""
#. module: help_online
#: code:addons/help_online/models/help_online.py:57
#, python-format
msgid "Create Help page for %s"
msgstr ""
#. module: help_online
#: field:export.help.wizard,create_uid:0 field:help.online,create_uid:0
#: field:import.help.wizard,create_uid:0
msgid "Created by"
msgstr "Creado por"
#. module: help_online
#: field:export.help.wizard,create_date:0 field:help.online,create_date:0
#: field:import.help.wizard,create_date:0
msgid "Created on"
msgstr "Creado en"
#. module: help_online
#: field:export.help.wizard,display_name:0 field:help.online,display_name:0
#: field:import.help.wizard,display_name:0
msgid "Display Name"
msgstr ""
#. module: help_online
#: view:export.help.wizard:help_online.export_help_wizard_view
msgid "Export"
msgstr ""
#. module: help_online
#: code:addons/help_online/models/export_help_wizard.py:267
#: model:ir.actions.act_window,name:help_online.action_export_help_wizard
#, python-format
msgid "Export Help"
msgstr ""
#. module: help_online
#: view:export.help.wizard:help_online.export_help_wizard_view
msgid "Export Help Data"
msgstr ""
#. module: help_online
#: model:ir.model,name:help_online.model_export_help_wizard
#: model:ir.ui.menu,name:help_online.menu_help_export
msgid "Export Help Online"
msgstr ""
#. module: help_online
#: field:export.help.wizard,export_filename:0
msgid "Export XML Filename"
msgstr ""
#. module: help_online
#: model:ir.ui.menu,name:help_online.menu_help
#: model:ir.ui.menu,name:help_online.menu_help_main
msgid "Help Online"
msgstr ""
#. module: help_online
#: code:addons/help_online/models/help_online.py:52
#, python-format
msgid "Help on %s"
msgstr ""
#. module: help_online
#: model:res.groups,name:help_online.help_online_group_reader
msgid "Help reader"
msgstr ""
#. module: help_online
#: model:res.groups,name:help_online.help_online_group_writer
msgid "Help writer"
msgstr ""
#. module: help_online
#: field:export.help.wizard,id:0 field:help.online,id:0
#: field:import.help.wizard,id:0
msgid "ID"
msgstr "ID"
#. module: help_online
#: view:import.help.wizard:help_online.import_help_wizard_view
msgid "Import"
msgstr ""
#. module: help_online
#: model:ir.actions.act_window,name:help_online.action_import_help_wizard
msgid "Import Help"
msgstr ""
#. module: help_online
#: view:import.help.wizard:help_online.import_help_wizard_view
msgid "Import Help Data"
msgstr ""
#. module: help_online
#: model:ir.ui.menu,name:help_online.menu_help_import
msgid "Import Help Online"
msgstr ""
#. module: help_online
#: field:export.help.wizard,__last_update:0 field:help.online,__last_update:0
#: field:import.help.wizard,__last_update:0
msgid "Last Modified on"
msgstr ""
#. module: help_online
#: field:export.help.wizard,write_uid:0 field:help.online,write_uid:0
#: field:import.help.wizard,write_uid:0
msgid "Last Updated by"
msgstr "Ultima actualización por"
#. module: help_online
#: field:export.help.wizard,write_date:0 field:help.online,write_date:0
#: field:import.help.wizard,write_date:0
msgid "Last Updated on"
msgstr "Ultima actualización en"
#. module: help_online
#: code:addons/help_online/models/export_help_wizard.py:260
#, python-format
msgid "No data to export !"
msgstr ""
#. module: help_online
#: code:addons/help_online/models/help_online.py:33
#, python-format
msgid "No page prefix parameter specified !"
msgstr ""
#. module: help_online
#. openerp-web
#: code:addons/help_online/static/src/js/help_online.js:98
#, python-format
msgid "Ok"
msgstr ""
#. module: help_online
#. openerp-web
#: code:addons/help_online/static/src/js/help_online.js:117
#, python-format
msgid "Page does not exist. Do you want to create?"
msgstr ""
#. module: help_online
#: field:import.help.wizard,source_file:0
msgid "Source File"
msgstr ""
#. module: help_online
#: view:export.help.wizard:help_online.export_help_wizard_view
msgid ""
"This wizard allow you to export all QWeb views\n"
" related to help online. The result will be an Odoo\n"
" data xml file."
msgstr ""
#. module: help_online
#: view:import.help.wizard:help_online.import_help_wizard_view
msgid ""
"This wizard allow you to import QWeb views\n"
" related to help online. The required file format is "
"an Odoo\n"
" data xml file."
msgstr ""
#. module: help_online
#: code:addons/help_online/models/export_help_wizard.py:297
#, python-format
msgid "Unable to write autobackup file in given directory: %s"
msgstr ""
#. module: help_online
#: view:ir.ui.view:help_online.view_view_search
msgid "Website Page"
msgstr ""
#. module: help_online
#: view:ir.ui.view:help_online.view_view_form
msgid "Website Page?"
msgstr ""
#. module: help_online
#: model:ir.actions.act_window,name:help_online.action_website_pages
#: model:ir.ui.menu,name:help_online.menu_help_pages
msgid "Website Pages"
msgstr ""
#. module: help_online
#: field:export.help.wizard,data:0
msgid "XML"
msgstr ""
#. module: help_online
#: view:export.help.wizard:help_online.export_help_wizard_view
#: view:import.help.wizard:help_online.import_help_wizard_view
msgid "or"
msgstr ""

238
help_online/i18n/es_DO.po

@ -0,0 +1,238 @@
# Translation of Odoo Server.
# This file contains the translation of the following modules:
# * help_online
#
# Translators:
msgid ""
msgstr ""
"Project-Id-Version: web (8.0)\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2016-12-29 03:45+0000\n"
"PO-Revision-Date: 2016-12-27 08:25+0000\n"
"Last-Translator: OCA Transbot <transbot@odoo-community.org>\n"
"Language-Team: Spanish (Dominican Republic) (http://www.transifex.com/oca/"
"OCA-web-8-0/language/es_DO/)\n"
"Language: es_DO\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: help_online
#. openerp-web
#: code:addons/help_online/static/src/js/help_online.js:93
#, python-format
msgid "Cancel"
msgstr "Cancelar"
#. module: help_online
#: view:export.help.wizard:help_online.export_help_wizard_view
#: view:import.help.wizard:help_online.import_help_wizard_view
msgid "Close"
msgstr ""
#. module: help_online
#. openerp-web
#: code:addons/help_online/static/src/js/help_online.js:91
#, python-format
msgid "Confirm"
msgstr ""
#. module: help_online
#: code:addons/help_online/models/help_online.py:57
#, python-format
msgid "Create Help page for %s"
msgstr ""
#. module: help_online
#: field:export.help.wizard,create_uid:0 field:help.online,create_uid:0
#: field:import.help.wizard,create_uid:0
msgid "Created by"
msgstr "Creado por"
#. module: help_online
#: field:export.help.wizard,create_date:0 field:help.online,create_date:0
#: field:import.help.wizard,create_date:0
msgid "Created on"
msgstr "Creado en"
#. module: help_online
#: field:export.help.wizard,display_name:0 field:help.online,display_name:0
#: field:import.help.wizard,display_name:0
msgid "Display Name"
msgstr "Nombre mostrado"
#. module: help_online
#: view:export.help.wizard:help_online.export_help_wizard_view
msgid "Export"
msgstr ""
#. module: help_online
#: code:addons/help_online/models/export_help_wizard.py:267
#: model:ir.actions.act_window,name:help_online.action_export_help_wizard
#, python-format
msgid "Export Help"
msgstr ""
#. module: help_online
#: view:export.help.wizard:help_online.export_help_wizard_view
msgid "Export Help Data"
msgstr ""
#. module: help_online
#: model:ir.model,name:help_online.model_export_help_wizard
#: model:ir.ui.menu,name:help_online.menu_help_export
msgid "Export Help Online"
msgstr ""
#. module: help_online
#: field:export.help.wizard,export_filename:0
msgid "Export XML Filename"
msgstr ""
#. module: help_online
#: model:ir.ui.menu,name:help_online.menu_help
#: model:ir.ui.menu,name:help_online.menu_help_main
msgid "Help Online"
msgstr ""
#. module: help_online
#: code:addons/help_online/models/help_online.py:52
#, python-format
msgid "Help on %s"
msgstr ""
#. module: help_online
#: model:res.groups,name:help_online.help_online_group_reader
msgid "Help reader"
msgstr ""
#. module: help_online
#: model:res.groups,name:help_online.help_online_group_writer
msgid "Help writer"
msgstr ""
#. module: help_online
#: field:export.help.wizard,id:0 field:help.online,id:0
#: field:import.help.wizard,id:0
msgid "ID"
msgstr "ID"
#. module: help_online
#: view:import.help.wizard:help_online.import_help_wizard_view
msgid "Import"
msgstr ""
#. module: help_online
#: model:ir.actions.act_window,name:help_online.action_import_help_wizard
msgid "Import Help"
msgstr ""
#. module: help_online
#: view:import.help.wizard:help_online.import_help_wizard_view
msgid "Import Help Data"
msgstr ""
#. module: help_online
#: model:ir.ui.menu,name:help_online.menu_help_import
msgid "Import Help Online"
msgstr ""
#. module: help_online
#: field:export.help.wizard,__last_update:0 field:help.online,__last_update:0
#: field:import.help.wizard,__last_update:0
msgid "Last Modified on"
msgstr "Última modificación en"
#. module: help_online
#: field:export.help.wizard,write_uid:0 field:help.online,write_uid:0
#: field:import.help.wizard,write_uid:0
msgid "Last Updated by"
msgstr "Última actualización de"
#. module: help_online
#: field:export.help.wizard,write_date:0 field:help.online,write_date:0
#: field:import.help.wizard,write_date:0
msgid "Last Updated on"
msgstr "Última actualización en"
#. module: help_online
#: code:addons/help_online/models/export_help_wizard.py:260
#, python-format
msgid "No data to export !"
msgstr ""
#. module: help_online
#: code:addons/help_online/models/help_online.py:33
#, python-format
msgid "No page prefix parameter specified !"
msgstr ""
#. module: help_online
#. openerp-web
#: code:addons/help_online/static/src/js/help_online.js:98
#, python-format
msgid "Ok"
msgstr ""
#. module: help_online
#. openerp-web
#: code:addons/help_online/static/src/js/help_online.js:117
#, python-format
msgid "Page does not exist. Do you want to create?"
msgstr ""
#. module: help_online
#: field:import.help.wizard,source_file:0
msgid "Source File"
msgstr ""
#. module: help_online
#: view:export.help.wizard:help_online.export_help_wizard_view
msgid ""
"This wizard allow you to export all QWeb views\n"
" related to help online. The result will be an Odoo\n"
" data xml file."
msgstr ""
#. module: help_online
#: view:import.help.wizard:help_online.import_help_wizard_view
msgid ""
"This wizard allow you to import QWeb views\n"
" related to help online. The required file format is "
"an Odoo\n"
" data xml file."
msgstr ""
#. module: help_online
#: code:addons/help_online/models/export_help_wizard.py:297
#, python-format
msgid "Unable to write autobackup file in given directory: %s"
msgstr ""
#. module: help_online
#: view:ir.ui.view:help_online.view_view_search
msgid "Website Page"
msgstr ""
#. module: help_online
#: view:ir.ui.view:help_online.view_view_form
msgid "Website Page?"
msgstr ""
#. module: help_online
#: model:ir.actions.act_window,name:help_online.action_website_pages
#: model:ir.ui.menu,name:help_online.menu_help_pages
msgid "Website Pages"
msgstr ""
#. module: help_online
#: field:export.help.wizard,data:0
msgid "XML"
msgstr ""
#. module: help_online
#: view:export.help.wizard:help_online.export_help_wizard_view
#: view:import.help.wizard:help_online.import_help_wizard_view
msgid "or"
msgstr "o"

238
help_online/i18n/es_EC.po

@ -0,0 +1,238 @@
# Translation of Odoo Server.
# This file contains the translation of the following modules:
# * help_online
#
# Translators:
msgid ""
msgstr ""
"Project-Id-Version: web (8.0)\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2018-01-16 08:57+0000\n"
"PO-Revision-Date: 2017-11-23 23:27+0000\n"
"Last-Translator: OCA Transbot <transbot@odoo-community.org>\n"
"Language-Team: Spanish (Ecuador) (http://www.transifex.com/oca/OCA-web-8-0/"
"language/es_EC/)\n"
"Language: es_EC\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: help_online
#. openerp-web
#: code:addons/help_online/static/src/js/help_online.js:93
#, python-format
msgid "Cancel"
msgstr "Cancelar"
#. module: help_online
#: view:export.help.wizard:help_online.export_help_wizard_view
#: view:import.help.wizard:help_online.import_help_wizard_view
msgid "Close"
msgstr "Cerrar"
#. module: help_online
#. openerp-web
#: code:addons/help_online/static/src/js/help_online.js:91
#, python-format
msgid "Confirm"
msgstr ""
#. module: help_online
#: code:addons/help_online/models/help_online.py:57
#, python-format
msgid "Create Help page for %s"
msgstr ""
#. module: help_online
#: field:export.help.wizard,create_uid:0 field:help.online,create_uid:0
#: field:import.help.wizard,create_uid:0
msgid "Created by"
msgstr "Creado por"
#. module: help_online
#: field:export.help.wizard,create_date:0 field:help.online,create_date:0
#: field:import.help.wizard,create_date:0
msgid "Created on"
msgstr "Creado en"
#. module: help_online
#: field:export.help.wizard,display_name:0 field:help.online,display_name:0
#: field:import.help.wizard,display_name:0
msgid "Display Name"
msgstr "Nombre mostrado"
#. module: help_online
#: view:export.help.wizard:help_online.export_help_wizard_view
msgid "Export"
msgstr ""
#. module: help_online
#: code:addons/help_online/models/export_help_wizard.py:267
#: model:ir.actions.act_window,name:help_online.action_export_help_wizard
#, python-format
msgid "Export Help"
msgstr ""
#. module: help_online
#: view:export.help.wizard:help_online.export_help_wizard_view
msgid "Export Help Data"
msgstr ""
#. module: help_online
#: model:ir.model,name:help_online.model_export_help_wizard
#: model:ir.ui.menu,name:help_online.menu_help_export
msgid "Export Help Online"
msgstr ""
#. module: help_online
#: field:export.help.wizard,export_filename:0
msgid "Export XML Filename"
msgstr ""
#. module: help_online
#: model:ir.ui.menu,name:help_online.menu_help
#: model:ir.ui.menu,name:help_online.menu_help_main
msgid "Help Online"
msgstr ""
#. module: help_online
#: code:addons/help_online/models/help_online.py:52
#, python-format
msgid "Help on %s"
msgstr ""
#. module: help_online
#: model:res.groups,name:help_online.help_online_group_reader
msgid "Help reader"
msgstr ""
#. module: help_online
#: model:res.groups,name:help_online.help_online_group_writer
msgid "Help writer"
msgstr ""
#. module: help_online
#: field:export.help.wizard,id:0 field:help.online,id:0
#: field:import.help.wizard,id:0
msgid "ID"
msgstr "ID (identificación)"
#. module: help_online
#: view:import.help.wizard:help_online.import_help_wizard_view
msgid "Import"
msgstr ""
#. module: help_online
#: model:ir.actions.act_window,name:help_online.action_import_help_wizard
msgid "Import Help"
msgstr ""
#. module: help_online
#: view:import.help.wizard:help_online.import_help_wizard_view
msgid "Import Help Data"
msgstr ""
#. module: help_online
#: model:ir.ui.menu,name:help_online.menu_help_import
msgid "Import Help Online"
msgstr ""
#. module: help_online
#: field:export.help.wizard,__last_update:0 field:help.online,__last_update:0
#: field:import.help.wizard,__last_update:0
msgid "Last Modified on"
msgstr "Última modificación en"
#. module: help_online
#: field:export.help.wizard,write_uid:0 field:help.online,write_uid:0
#: field:import.help.wizard,write_uid:0
msgid "Last Updated by"
msgstr "Última actualización de"
#. module: help_online
#: field:export.help.wizard,write_date:0 field:help.online,write_date:0
#: field:import.help.wizard,write_date:0
msgid "Last Updated on"
msgstr "Última actualización en"
#. module: help_online
#: code:addons/help_online/models/export_help_wizard.py:260
#, python-format
msgid "No data to export !"
msgstr ""
#. module: help_online
#: code:addons/help_online/models/help_online.py:33
#, python-format
msgid "No page prefix parameter specified !"
msgstr ""
#. module: help_online
#. openerp-web
#: code:addons/help_online/static/src/js/help_online.js:98
#, python-format
msgid "Ok"
msgstr ""
#. module: help_online
#. openerp-web
#: code:addons/help_online/static/src/js/help_online.js:117
#, python-format
msgid "Page does not exist. Do you want to create?"
msgstr ""
#. module: help_online
#: field:import.help.wizard,source_file:0
msgid "Source File"
msgstr ""
#. module: help_online
#: view:export.help.wizard:help_online.export_help_wizard_view
msgid ""
"This wizard allow you to export all QWeb views\n"
" related to help online. The result will be an Odoo\n"
" data xml file."
msgstr ""
#. module: help_online
#: view:import.help.wizard:help_online.import_help_wizard_view
msgid ""
"This wizard allow you to import QWeb views\n"
" related to help online. The required file format is "
"an Odoo\n"
" data xml file."
msgstr ""
#. module: help_online
#: code:addons/help_online/models/export_help_wizard.py:297
#, python-format
msgid "Unable to write autobackup file in given directory: %s"
msgstr ""
#. module: help_online
#: view:ir.ui.view:help_online.view_view_search
msgid "Website Page"
msgstr ""
#. module: help_online
#: view:ir.ui.view:help_online.view_view_form
msgid "Website Page?"
msgstr ""
#. module: help_online
#: model:ir.actions.act_window,name:help_online.action_website_pages
#: model:ir.ui.menu,name:help_online.menu_help_pages
msgid "Website Pages"
msgstr ""
#. module: help_online
#: field:export.help.wizard,data:0
msgid "XML"
msgstr ""
#. module: help_online
#: view:export.help.wizard:help_online.export_help_wizard_view
#: view:import.help.wizard:help_online.import_help_wizard_view
msgid "or"
msgstr "o"

238
help_online/i18n/es_ES.po

@ -0,0 +1,238 @@
# Translation of Odoo Server.
# This file contains the translation of the following modules:
# * help_online
#
# Translators:
msgid ""
msgstr ""
"Project-Id-Version: web (8.0)\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2018-01-16 08:57+0000\n"
"PO-Revision-Date: 2017-11-23 23:27+0000\n"
"Last-Translator: OCA Transbot <transbot@odoo-community.org>\n"
"Language-Team: Spanish (Spain) (http://www.transifex.com/oca/OCA-web-8-0/"
"language/es_ES/)\n"
"Language: es_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: help_online
#. openerp-web
#: code:addons/help_online/static/src/js/help_online.js:93
#, python-format
msgid "Cancel"
msgstr "Cancelar"
#. module: help_online
#: view:export.help.wizard:help_online.export_help_wizard_view
#: view:import.help.wizard:help_online.import_help_wizard_view
msgid "Close"
msgstr "Cerrar"
#. module: help_online
#. openerp-web
#: code:addons/help_online/static/src/js/help_online.js:91
#, python-format
msgid "Confirm"
msgstr ""
#. module: help_online
#: code:addons/help_online/models/help_online.py:57
#, python-format
msgid "Create Help page for %s"
msgstr ""
#. module: help_online
#: field:export.help.wizard,create_uid:0 field:help.online,create_uid:0
#: field:import.help.wizard,create_uid:0
msgid "Created by"
msgstr "Creado por"
#. module: help_online
#: field:export.help.wizard,create_date:0 field:help.online,create_date:0
#: field:import.help.wizard,create_date:0
msgid "Created on"
msgstr "Creado en"
#. module: help_online
#: field:export.help.wizard,display_name:0 field:help.online,display_name:0
#: field:import.help.wizard,display_name:0
msgid "Display Name"
msgstr "Nombre para mostrar"
#. module: help_online
#: view:export.help.wizard:help_online.export_help_wizard_view
msgid "Export"
msgstr ""
#. module: help_online
#: code:addons/help_online/models/export_help_wizard.py:267
#: model:ir.actions.act_window,name:help_online.action_export_help_wizard
#, python-format
msgid "Export Help"
msgstr ""
#. module: help_online
#: view:export.help.wizard:help_online.export_help_wizard_view
msgid "Export Help Data"
msgstr ""
#. module: help_online
#: model:ir.model,name:help_online.model_export_help_wizard
#: model:ir.ui.menu,name:help_online.menu_help_export
msgid "Export Help Online"
msgstr ""
#. module: help_online
#: field:export.help.wizard,export_filename:0
msgid "Export XML Filename"
msgstr ""
#. module: help_online
#: model:ir.ui.menu,name:help_online.menu_help
#: model:ir.ui.menu,name:help_online.menu_help_main
msgid "Help Online"
msgstr ""
#. module: help_online
#: code:addons/help_online/models/help_online.py:52
#, python-format
msgid "Help on %s"
msgstr ""
#. module: help_online
#: model:res.groups,name:help_online.help_online_group_reader
msgid "Help reader"
msgstr ""
#. module: help_online
#: model:res.groups,name:help_online.help_online_group_writer
msgid "Help writer"
msgstr ""
#. module: help_online
#: field:export.help.wizard,id:0 field:help.online,id:0
#: field:import.help.wizard,id:0
msgid "ID"
msgstr "ID"
#. module: help_online
#: view:import.help.wizard:help_online.import_help_wizard_view
msgid "Import"
msgstr ""
#. module: help_online
#: model:ir.actions.act_window,name:help_online.action_import_help_wizard
msgid "Import Help"
msgstr ""
#. module: help_online
#: view:import.help.wizard:help_online.import_help_wizard_view
msgid "Import Help Data"
msgstr ""
#. module: help_online
#: model:ir.ui.menu,name:help_online.menu_help_import
msgid "Import Help Online"
msgstr ""
#. module: help_online
#: field:export.help.wizard,__last_update:0 field:help.online,__last_update:0
#: field:import.help.wizard,__last_update:0
msgid "Last Modified on"
msgstr "Última modificación en"
#. module: help_online
#: field:export.help.wizard,write_uid:0 field:help.online,write_uid:0
#: field:import.help.wizard,write_uid:0
msgid "Last Updated by"
msgstr "Última actualización por"
#. module: help_online
#: field:export.help.wizard,write_date:0 field:help.online,write_date:0
#: field:import.help.wizard,write_date:0
msgid "Last Updated on"
msgstr "Última actualización en"
#. module: help_online
#: code:addons/help_online/models/export_help_wizard.py:260
#, python-format
msgid "No data to export !"
msgstr ""
#. module: help_online
#: code:addons/help_online/models/help_online.py:33
#, python-format
msgid "No page prefix parameter specified !"
msgstr ""
#. module: help_online
#. openerp-web
#: code:addons/help_online/static/src/js/help_online.js:98
#, python-format
msgid "Ok"
msgstr ""
#. module: help_online
#. openerp-web
#: code:addons/help_online/static/src/js/help_online.js:117
#, python-format
msgid "Page does not exist. Do you want to create?"
msgstr ""
#. module: help_online
#: field:import.help.wizard,source_file:0
msgid "Source File"
msgstr ""
#. module: help_online
#: view:export.help.wizard:help_online.export_help_wizard_view
msgid ""
"This wizard allow you to export all QWeb views\n"
" related to help online. The result will be an Odoo\n"
" data xml file."
msgstr ""
#. module: help_online
#: view:import.help.wizard:help_online.import_help_wizard_view
msgid ""
"This wizard allow you to import QWeb views\n"
" related to help online. The required file format is "
"an Odoo\n"
" data xml file."
msgstr ""
#. module: help_online
#: code:addons/help_online/models/export_help_wizard.py:297
#, python-format
msgid "Unable to write autobackup file in given directory: %s"
msgstr ""
#. module: help_online
#: view:ir.ui.view:help_online.view_view_search
msgid "Website Page"
msgstr ""
#. module: help_online
#: view:ir.ui.view:help_online.view_view_form
msgid "Website Page?"
msgstr ""
#. module: help_online
#: model:ir.actions.act_window,name:help_online.action_website_pages
#: model:ir.ui.menu,name:help_online.menu_help_pages
msgid "Website Pages"
msgstr ""
#. module: help_online
#: field:export.help.wizard,data:0
msgid "XML"
msgstr ""
#. module: help_online
#: view:export.help.wizard:help_online.export_help_wizard_view
#: view:import.help.wizard:help_online.import_help_wizard_view
msgid "or"
msgstr "o"

238
help_online/i18n/es_MX.po

@ -0,0 +1,238 @@
# Translation of Odoo Server.
# This file contains the translation of the following modules:
# * help_online
#
# Translators:
msgid ""
msgstr ""
"Project-Id-Version: web (8.0)\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2018-01-16 08:57+0000\n"
"PO-Revision-Date: 2017-11-23 23:28+0000\n"
"Last-Translator: OCA Transbot <transbot@odoo-community.org>\n"
"Language-Team: Spanish (Mexico) (http://www.transifex.com/oca/OCA-web-8-0/"
"language/es_MX/)\n"
"Language: es_MX\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: help_online
#. openerp-web
#: code:addons/help_online/static/src/js/help_online.js:93
#, python-format
msgid "Cancel"
msgstr "Cancelar"
#. module: help_online
#: view:export.help.wizard:help_online.export_help_wizard_view
#: view:import.help.wizard:help_online.import_help_wizard_view
msgid "Close"
msgstr "Cerrar"
#. module: help_online
#. openerp-web
#: code:addons/help_online/static/src/js/help_online.js:91
#, python-format
msgid "Confirm"
msgstr ""
#. module: help_online
#: code:addons/help_online/models/help_online.py:57
#, python-format
msgid "Create Help page for %s"
msgstr ""
#. module: help_online
#: field:export.help.wizard,create_uid:0 field:help.online,create_uid:0
#: field:import.help.wizard,create_uid:0
msgid "Created by"
msgstr "Creado por"
#. module: help_online
#: field:export.help.wizard,create_date:0 field:help.online,create_date:0
#: field:import.help.wizard,create_date:0
msgid "Created on"
msgstr "Creado en"
#. module: help_online
#: field:export.help.wizard,display_name:0 field:help.online,display_name:0
#: field:import.help.wizard,display_name:0
msgid "Display Name"
msgstr "Nombre desplegado"
#. module: help_online
#: view:export.help.wizard:help_online.export_help_wizard_view
msgid "Export"
msgstr ""
#. module: help_online
#: code:addons/help_online/models/export_help_wizard.py:267
#: model:ir.actions.act_window,name:help_online.action_export_help_wizard
#, python-format
msgid "Export Help"
msgstr ""
#. module: help_online
#: view:export.help.wizard:help_online.export_help_wizard_view
msgid "Export Help Data"
msgstr ""
#. module: help_online
#: model:ir.model,name:help_online.model_export_help_wizard
#: model:ir.ui.menu,name:help_online.menu_help_export
msgid "Export Help Online"
msgstr ""
#. module: help_online
#: field:export.help.wizard,export_filename:0
msgid "Export XML Filename"
msgstr ""
#. module: help_online
#: model:ir.ui.menu,name:help_online.menu_help
#: model:ir.ui.menu,name:help_online.menu_help_main
msgid "Help Online"
msgstr ""
#. module: help_online
#: code:addons/help_online/models/help_online.py:52
#, python-format
msgid "Help on %s"
msgstr ""
#. module: help_online
#: model:res.groups,name:help_online.help_online_group_reader
msgid "Help reader"
msgstr ""
#. module: help_online
#: model:res.groups,name:help_online.help_online_group_writer
msgid "Help writer"
msgstr ""
#. module: help_online
#: field:export.help.wizard,id:0 field:help.online,id:0
#: field:import.help.wizard,id:0
msgid "ID"
msgstr "ID"
#. module: help_online
#: view:import.help.wizard:help_online.import_help_wizard_view
msgid "Import"
msgstr ""
#. module: help_online
#: model:ir.actions.act_window,name:help_online.action_import_help_wizard
msgid "Import Help"
msgstr ""
#. module: help_online
#: view:import.help.wizard:help_online.import_help_wizard_view
msgid "Import Help Data"
msgstr ""
#. module: help_online
#: model:ir.ui.menu,name:help_online.menu_help_import
msgid "Import Help Online"
msgstr ""
#. module: help_online
#: field:export.help.wizard,__last_update:0 field:help.online,__last_update:0
#: field:import.help.wizard,__last_update:0
msgid "Last Modified on"
msgstr "Ultima modificacion realizada"
#. module: help_online
#: field:export.help.wizard,write_uid:0 field:help.online,write_uid:0
#: field:import.help.wizard,write_uid:0
msgid "Last Updated by"
msgstr "Ultima actualizacion por"
#. module: help_online
#: field:export.help.wizard,write_date:0 field:help.online,write_date:0
#: field:import.help.wizard,write_date:0
msgid "Last Updated on"
msgstr "Ultima actualización realizada"
#. module: help_online
#: code:addons/help_online/models/export_help_wizard.py:260
#, python-format
msgid "No data to export !"
msgstr ""
#. module: help_online
#: code:addons/help_online/models/help_online.py:33
#, python-format
msgid "No page prefix parameter specified !"
msgstr ""
#. module: help_online
#. openerp-web
#: code:addons/help_online/static/src/js/help_online.js:98
#, python-format
msgid "Ok"
msgstr ""
#. module: help_online
#. openerp-web
#: code:addons/help_online/static/src/js/help_online.js:117
#, python-format
msgid "Page does not exist. Do you want to create?"
msgstr ""
#. module: help_online
#: field:import.help.wizard,source_file:0
msgid "Source File"
msgstr ""
#. module: help_online
#: view:export.help.wizard:help_online.export_help_wizard_view
msgid ""
"This wizard allow you to export all QWeb views\n"
" related to help online. The result will be an Odoo\n"
" data xml file."
msgstr ""
#. module: help_online
#: view:import.help.wizard:help_online.import_help_wizard_view
msgid ""
"This wizard allow you to import QWeb views\n"
" related to help online. The required file format is "
"an Odoo\n"
" data xml file."
msgstr ""
#. module: help_online
#: code:addons/help_online/models/export_help_wizard.py:297
#, python-format
msgid "Unable to write autobackup file in given directory: %s"
msgstr ""
#. module: help_online
#: view:ir.ui.view:help_online.view_view_search
msgid "Website Page"
msgstr ""
#. module: help_online
#: view:ir.ui.view:help_online.view_view_form
msgid "Website Page?"
msgstr ""
#. module: help_online
#: model:ir.actions.act_window,name:help_online.action_website_pages
#: model:ir.ui.menu,name:help_online.menu_help_pages
msgid "Website Pages"
msgstr ""
#. module: help_online
#: field:export.help.wizard,data:0
msgid "XML"
msgstr ""
#. module: help_online
#: view:export.help.wizard:help_online.export_help_wizard_view
#: view:import.help.wizard:help_online.import_help_wizard_view
msgid "or"
msgstr "ó"

238
help_online/i18n/es_PE.po

@ -0,0 +1,238 @@
# Translation of Odoo Server.
# This file contains the translation of the following modules:
# * help_online
#
# Translators:
msgid ""
msgstr ""
"Project-Id-Version: web (8.0)\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2016-11-26 01:59+0000\n"
"PO-Revision-Date: 2016-10-11 09:50+0000\n"
"Last-Translator: OCA Transbot <transbot@odoo-community.org>\n"
"Language-Team: Spanish (Peru) (http://www.transifex.com/oca/OCA-web-8-0/"
"language/es_PE/)\n"
"Language: es_PE\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: help_online
#. openerp-web
#: code:addons/help_online/static/src/js/help_online.js:93
#, python-format
msgid "Cancel"
msgstr ""
#. module: help_online
#: view:export.help.wizard:help_online.export_help_wizard_view
#: view:import.help.wizard:help_online.import_help_wizard_view
msgid "Close"
msgstr ""
#. module: help_online
#. openerp-web
#: code:addons/help_online/static/src/js/help_online.js:91
#, python-format
msgid "Confirm"
msgstr ""
#. module: help_online
#: code:addons/help_online/models/help_online.py:57
#, python-format
msgid "Create Help page for %s"
msgstr ""
#. module: help_online
#: field:export.help.wizard,create_uid:0 field:help.online,create_uid:0
#: field:import.help.wizard,create_uid:0
msgid "Created by"
msgstr "Creado por"
#. module: help_online
#: field:export.help.wizard,create_date:0 field:help.online,create_date:0
#: field:import.help.wizard,create_date:0
msgid "Created on"
msgstr "Creado en"
#. module: help_online
#: field:export.help.wizard,display_name:0 field:help.online,display_name:0
#: field:import.help.wizard,display_name:0
msgid "Display Name"
msgstr "Nombre a Mostrar"
#. module: help_online
#: view:export.help.wizard:help_online.export_help_wizard_view
msgid "Export"
msgstr ""
#. module: help_online
#: code:addons/help_online/models/export_help_wizard.py:267
#: model:ir.actions.act_window,name:help_online.action_export_help_wizard
#, python-format
msgid "Export Help"
msgstr ""
#. module: help_online
#: view:export.help.wizard:help_online.export_help_wizard_view
msgid "Export Help Data"
msgstr ""
#. module: help_online
#: model:ir.model,name:help_online.model_export_help_wizard
#: model:ir.ui.menu,name:help_online.menu_help_export
msgid "Export Help Online"
msgstr ""
#. module: help_online
#: field:export.help.wizard,export_filename:0
msgid "Export XML Filename"
msgstr ""
#. module: help_online
#: model:ir.ui.menu,name:help_online.menu_help
#: model:ir.ui.menu,name:help_online.menu_help_main
msgid "Help Online"
msgstr ""
#. module: help_online
#: code:addons/help_online/models/help_online.py:52
#, python-format
msgid "Help on %s"
msgstr ""
#. module: help_online
#: model:res.groups,name:help_online.help_online_group_reader
msgid "Help reader"
msgstr ""
#. module: help_online
#: model:res.groups,name:help_online.help_online_group_writer
msgid "Help writer"
msgstr ""
#. module: help_online
#: field:export.help.wizard,id:0 field:help.online,id:0
#: field:import.help.wizard,id:0
msgid "ID"
msgstr "ID"
#. module: help_online
#: view:import.help.wizard:help_online.import_help_wizard_view
msgid "Import"
msgstr ""
#. module: help_online
#: model:ir.actions.act_window,name:help_online.action_import_help_wizard
msgid "Import Help"
msgstr ""
#. module: help_online
#: view:import.help.wizard:help_online.import_help_wizard_view
msgid "Import Help Data"
msgstr ""
#. module: help_online
#: model:ir.ui.menu,name:help_online.menu_help_import
msgid "Import Help Online"
msgstr ""
#. module: help_online
#: field:export.help.wizard,__last_update:0 field:help.online,__last_update:0
#: field:import.help.wizard,__last_update:0
msgid "Last Modified on"
msgstr "Ultima Modificación en"
#. module: help_online
#: field:export.help.wizard,write_uid:0 field:help.online,write_uid:0
#: field:import.help.wizard,write_uid:0
msgid "Last Updated by"
msgstr "Actualizado última vez por"
#. module: help_online
#: field:export.help.wizard,write_date:0 field:help.online,write_date:0
#: field:import.help.wizard,write_date:0
msgid "Last Updated on"
msgstr "Ultima Actualización"
#. module: help_online
#: code:addons/help_online/models/export_help_wizard.py:260
#, python-format
msgid "No data to export !"
msgstr ""
#. module: help_online
#: code:addons/help_online/models/help_online.py:33
#, python-format
msgid "No page prefix parameter specified !"
msgstr ""
#. module: help_online
#. openerp-web
#: code:addons/help_online/static/src/js/help_online.js:98
#, python-format
msgid "Ok"
msgstr ""
#. module: help_online
#. openerp-web
#: code:addons/help_online/static/src/js/help_online.js:117
#, python-format
msgid "Page does not exist. Do you want to create?"
msgstr ""
#. module: help_online
#: field:import.help.wizard,source_file:0
msgid "Source File"
msgstr ""
#. module: help_online
#: view:export.help.wizard:help_online.export_help_wizard_view
msgid ""
"This wizard allow you to export all QWeb views\n"
" related to help online. The result will be an Odoo\n"
" data xml file."
msgstr ""
#. module: help_online
#: view:import.help.wizard:help_online.import_help_wizard_view
msgid ""
"This wizard allow you to import QWeb views\n"
" related to help online. The required file format is "
"an Odoo\n"
" data xml file."
msgstr ""
#. module: help_online
#: code:addons/help_online/models/export_help_wizard.py:297
#, python-format
msgid "Unable to write autobackup file in given directory: %s"
msgstr ""
#. module: help_online
#: view:ir.ui.view:help_online.view_view_search
msgid "Website Page"
msgstr ""
#. module: help_online
#: view:ir.ui.view:help_online.view_view_form
msgid "Website Page?"
msgstr ""
#. module: help_online
#: model:ir.actions.act_window,name:help_online.action_website_pages
#: model:ir.ui.menu,name:help_online.menu_help_pages
msgid "Website Pages"
msgstr ""
#. module: help_online
#: field:export.help.wizard,data:0
msgid "XML"
msgstr ""
#. module: help_online
#: view:export.help.wizard:help_online.export_help_wizard_view
#: view:import.help.wizard:help_online.import_help_wizard_view
msgid "or"
msgstr "o"

238
help_online/i18n/es_PY.po

@ -0,0 +1,238 @@
# Translation of Odoo Server.
# This file contains the translation of the following modules:
# * help_online
#
# Translators:
msgid ""
msgstr ""
"Project-Id-Version: web (8.0)\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2016-12-29 03:45+0000\n"
"PO-Revision-Date: 2016-12-27 08:21+0000\n"
"Last-Translator: OCA Transbot <transbot@odoo-community.org>\n"
"Language-Team: Spanish (Paraguay) (http://www.transifex.com/oca/OCA-web-8-0/"
"language/es_PY/)\n"
"Language: es_PY\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: help_online
#. openerp-web
#: code:addons/help_online/static/src/js/help_online.js:93
#, python-format
msgid "Cancel"
msgstr "Cancelar"
#. module: help_online
#: view:export.help.wizard:help_online.export_help_wizard_view
#: view:import.help.wizard:help_online.import_help_wizard_view
msgid "Close"
msgstr ""
#. module: help_online
#. openerp-web
#: code:addons/help_online/static/src/js/help_online.js:91
#, python-format
msgid "Confirm"
msgstr ""
#. module: help_online
#: code:addons/help_online/models/help_online.py:57
#, python-format
msgid "Create Help page for %s"
msgstr ""
#. module: help_online
#: field:export.help.wizard,create_uid:0 field:help.online,create_uid:0
#: field:import.help.wizard,create_uid:0
msgid "Created by"
msgstr "Creado por"
#. module: help_online
#: field:export.help.wizard,create_date:0 field:help.online,create_date:0
#: field:import.help.wizard,create_date:0
msgid "Created on"
msgstr "Creado en"
#. module: help_online
#: field:export.help.wizard,display_name:0 field:help.online,display_name:0
#: field:import.help.wizard,display_name:0
msgid "Display Name"
msgstr ""
#. module: help_online
#: view:export.help.wizard:help_online.export_help_wizard_view
msgid "Export"
msgstr ""
#. module: help_online
#: code:addons/help_online/models/export_help_wizard.py:267
#: model:ir.actions.act_window,name:help_online.action_export_help_wizard
#, python-format
msgid "Export Help"
msgstr ""
#. module: help_online
#: view:export.help.wizard:help_online.export_help_wizard_view
msgid "Export Help Data"
msgstr ""
#. module: help_online
#: model:ir.model,name:help_online.model_export_help_wizard
#: model:ir.ui.menu,name:help_online.menu_help_export
msgid "Export Help Online"
msgstr ""
#. module: help_online
#: field:export.help.wizard,export_filename:0
msgid "Export XML Filename"
msgstr ""
#. module: help_online
#: model:ir.ui.menu,name:help_online.menu_help
#: model:ir.ui.menu,name:help_online.menu_help_main
msgid "Help Online"
msgstr ""
#. module: help_online
#: code:addons/help_online/models/help_online.py:52
#, python-format
msgid "Help on %s"
msgstr ""
#. module: help_online
#: model:res.groups,name:help_online.help_online_group_reader
msgid "Help reader"
msgstr ""
#. module: help_online
#: model:res.groups,name:help_online.help_online_group_writer
msgid "Help writer"
msgstr ""
#. module: help_online
#: field:export.help.wizard,id:0 field:help.online,id:0
#: field:import.help.wizard,id:0
msgid "ID"
msgstr "ID"
#. module: help_online
#: view:import.help.wizard:help_online.import_help_wizard_view
msgid "Import"
msgstr ""
#. module: help_online
#: model:ir.actions.act_window,name:help_online.action_import_help_wizard
msgid "Import Help"
msgstr ""
#. module: help_online
#: view:import.help.wizard:help_online.import_help_wizard_view
msgid "Import Help Data"
msgstr ""
#. module: help_online
#: model:ir.ui.menu,name:help_online.menu_help_import
msgid "Import Help Online"
msgstr ""
#. module: help_online
#: field:export.help.wizard,__last_update:0 field:help.online,__last_update:0
#: field:import.help.wizard,__last_update:0
msgid "Last Modified on"
msgstr ""
#. module: help_online
#: field:export.help.wizard,write_uid:0 field:help.online,write_uid:0
#: field:import.help.wizard,write_uid:0
msgid "Last Updated by"
msgstr "Ultima actualización por"
#. module: help_online
#: field:export.help.wizard,write_date:0 field:help.online,write_date:0
#: field:import.help.wizard,write_date:0
msgid "Last Updated on"
msgstr "Ultima actualización en"
#. module: help_online
#: code:addons/help_online/models/export_help_wizard.py:260
#, python-format
msgid "No data to export !"
msgstr ""
#. module: help_online
#: code:addons/help_online/models/help_online.py:33
#, python-format
msgid "No page prefix parameter specified !"
msgstr ""
#. module: help_online
#. openerp-web
#: code:addons/help_online/static/src/js/help_online.js:98
#, python-format
msgid "Ok"
msgstr ""
#. module: help_online
#. openerp-web
#: code:addons/help_online/static/src/js/help_online.js:117
#, python-format
msgid "Page does not exist. Do you want to create?"
msgstr ""
#. module: help_online
#: field:import.help.wizard,source_file:0
msgid "Source File"
msgstr ""
#. module: help_online
#: view:export.help.wizard:help_online.export_help_wizard_view
msgid ""
"This wizard allow you to export all QWeb views\n"
" related to help online. The result will be an Odoo\n"
" data xml file."
msgstr ""
#. module: help_online
#: view:import.help.wizard:help_online.import_help_wizard_view
msgid ""
"This wizard allow you to import QWeb views\n"
" related to help online. The required file format is "
"an Odoo\n"
" data xml file."
msgstr ""
#. module: help_online
#: code:addons/help_online/models/export_help_wizard.py:297
#, python-format
msgid "Unable to write autobackup file in given directory: %s"
msgstr ""
#. module: help_online
#: view:ir.ui.view:help_online.view_view_search
msgid "Website Page"
msgstr ""
#. module: help_online
#: view:ir.ui.view:help_online.view_view_form
msgid "Website Page?"
msgstr ""
#. module: help_online
#: model:ir.actions.act_window,name:help_online.action_website_pages
#: model:ir.ui.menu,name:help_online.menu_help_pages
msgid "Website Pages"
msgstr ""
#. module: help_online
#: field:export.help.wizard,data:0
msgid "XML"
msgstr ""
#. module: help_online
#: view:export.help.wizard:help_online.export_help_wizard_view
#: view:import.help.wizard:help_online.import_help_wizard_view
msgid "or"
msgstr ""

238
help_online/i18n/es_VE.po

@ -0,0 +1,238 @@
# Translation of Odoo Server.
# This file contains the translation of the following modules:
# * help_online
#
# Translators:
msgid ""
msgstr ""
"Project-Id-Version: web (8.0)\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2018-01-16 08:57+0000\n"
"PO-Revision-Date: 2017-11-23 23:26+0000\n"
"Last-Translator: OCA Transbot <transbot@odoo-community.org>\n"
"Language-Team: Spanish (Venezuela) (http://www.transifex.com/oca/OCA-web-8-0/"
"language/es_VE/)\n"
"Language: es_VE\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: help_online
#. openerp-web
#: code:addons/help_online/static/src/js/help_online.js:93
#, python-format
msgid "Cancel"
msgstr "Cancelar"
#. module: help_online
#: view:export.help.wizard:help_online.export_help_wizard_view
#: view:import.help.wizard:help_online.import_help_wizard_view
msgid "Close"
msgstr "Cerrar"
#. module: help_online
#. openerp-web
#: code:addons/help_online/static/src/js/help_online.js:91
#, python-format
msgid "Confirm"
msgstr ""
#. module: help_online
#: code:addons/help_online/models/help_online.py:57
#, python-format
msgid "Create Help page for %s"
msgstr ""
#. module: help_online
#: field:export.help.wizard,create_uid:0 field:help.online,create_uid:0
#: field:import.help.wizard,create_uid:0
msgid "Created by"
msgstr "Creado por"
#. module: help_online
#: field:export.help.wizard,create_date:0 field:help.online,create_date:0
#: field:import.help.wizard,create_date:0
msgid "Created on"
msgstr "Creado en"
#. module: help_online
#: field:export.help.wizard,display_name:0 field:help.online,display_name:0
#: field:import.help.wizard,display_name:0
msgid "Display Name"
msgstr "Mostrar nombre"
#. module: help_online
#: view:export.help.wizard:help_online.export_help_wizard_view
msgid "Export"
msgstr ""
#. module: help_online
#: code:addons/help_online/models/export_help_wizard.py:267
#: model:ir.actions.act_window,name:help_online.action_export_help_wizard
#, python-format
msgid "Export Help"
msgstr ""
#. module: help_online
#: view:export.help.wizard:help_online.export_help_wizard_view
msgid "Export Help Data"
msgstr ""
#. module: help_online
#: model:ir.model,name:help_online.model_export_help_wizard
#: model:ir.ui.menu,name:help_online.menu_help_export
msgid "Export Help Online"
msgstr ""
#. module: help_online
#: field:export.help.wizard,export_filename:0
msgid "Export XML Filename"
msgstr ""
#. module: help_online
#: model:ir.ui.menu,name:help_online.menu_help
#: model:ir.ui.menu,name:help_online.menu_help_main
msgid "Help Online"
msgstr ""
#. module: help_online
#: code:addons/help_online/models/help_online.py:52
#, python-format
msgid "Help on %s"
msgstr ""
#. module: help_online
#: model:res.groups,name:help_online.help_online_group_reader
msgid "Help reader"
msgstr ""
#. module: help_online
#: model:res.groups,name:help_online.help_online_group_writer
msgid "Help writer"
msgstr ""
#. module: help_online
#: field:export.help.wizard,id:0 field:help.online,id:0
#: field:import.help.wizard,id:0
msgid "ID"
msgstr "ID"
#. module: help_online
#: view:import.help.wizard:help_online.import_help_wizard_view
msgid "Import"
msgstr ""
#. module: help_online
#: model:ir.actions.act_window,name:help_online.action_import_help_wizard
msgid "Import Help"
msgstr ""
#. module: help_online
#: view:import.help.wizard:help_online.import_help_wizard_view
msgid "Import Help Data"
msgstr ""
#. module: help_online
#: model:ir.ui.menu,name:help_online.menu_help_import
msgid "Import Help Online"
msgstr ""
#. module: help_online
#: field:export.help.wizard,__last_update:0 field:help.online,__last_update:0
#: field:import.help.wizard,__last_update:0
msgid "Last Modified on"
msgstr "Modificada por última vez"
#. module: help_online
#: field:export.help.wizard,write_uid:0 field:help.online,write_uid:0
#: field:import.help.wizard,write_uid:0
msgid "Last Updated by"
msgstr "Última actualización realizada por"
#. module: help_online
#: field:export.help.wizard,write_date:0 field:help.online,write_date:0
#: field:import.help.wizard,write_date:0
msgid "Last Updated on"
msgstr "Ultima actualizacion en"
#. module: help_online
#: code:addons/help_online/models/export_help_wizard.py:260
#, python-format
msgid "No data to export !"
msgstr ""
#. module: help_online
#: code:addons/help_online/models/help_online.py:33
#, python-format
msgid "No page prefix parameter specified !"
msgstr ""
#. module: help_online
#. openerp-web
#: code:addons/help_online/static/src/js/help_online.js:98
#, python-format
msgid "Ok"
msgstr ""
#. module: help_online
#. openerp-web
#: code:addons/help_online/static/src/js/help_online.js:117
#, python-format
msgid "Page does not exist. Do you want to create?"
msgstr ""
#. module: help_online
#: field:import.help.wizard,source_file:0
msgid "Source File"
msgstr ""
#. module: help_online
#: view:export.help.wizard:help_online.export_help_wizard_view
msgid ""
"This wizard allow you to export all QWeb views\n"
" related to help online. The result will be an Odoo\n"
" data xml file."
msgstr ""
#. module: help_online
#: view:import.help.wizard:help_online.import_help_wizard_view
msgid ""
"This wizard allow you to import QWeb views\n"
" related to help online. The required file format is "
"an Odoo\n"
" data xml file."
msgstr ""
#. module: help_online
#: code:addons/help_online/models/export_help_wizard.py:297
#, python-format
msgid "Unable to write autobackup file in given directory: %s"
msgstr ""
#. module: help_online
#: view:ir.ui.view:help_online.view_view_search
msgid "Website Page"
msgstr ""
#. module: help_online
#: view:ir.ui.view:help_online.view_view_form
msgid "Website Page?"
msgstr ""
#. module: help_online
#: model:ir.actions.act_window,name:help_online.action_website_pages
#: model:ir.ui.menu,name:help_online.menu_help_pages
msgid "Website Pages"
msgstr ""
#. module: help_online
#: field:export.help.wizard,data:0
msgid "XML"
msgstr ""
#. module: help_online
#: view:export.help.wizard:help_online.export_help_wizard_view
#: view:import.help.wizard:help_online.import_help_wizard_view
msgid "or"
msgstr ""

238
help_online/i18n/et.po

@ -0,0 +1,238 @@
# Translation of Odoo Server.
# This file contains the translation of the following modules:
# * help_online
#
# Translators:
msgid ""
msgstr ""
"Project-Id-Version: web (8.0)\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2018-01-16 08:57+0000\n"
"PO-Revision-Date: 2017-11-23 23:25+0000\n"
"Last-Translator: OCA Transbot <transbot@odoo-community.org>\n"
"Language-Team: Estonian (http://www.transifex.com/oca/OCA-web-8-0/language/"
"et/)\n"
"Language: et\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: help_online
#. openerp-web
#: code:addons/help_online/static/src/js/help_online.js:93
#, python-format
msgid "Cancel"
msgstr "Loobu"
#. module: help_online
#: view:export.help.wizard:help_online.export_help_wizard_view
#: view:import.help.wizard:help_online.import_help_wizard_view
msgid "Close"
msgstr "Sulge"
#. module: help_online
#. openerp-web
#: code:addons/help_online/static/src/js/help_online.js:91
#, python-format
msgid "Confirm"
msgstr ""
#. module: help_online
#: code:addons/help_online/models/help_online.py:57
#, python-format
msgid "Create Help page for %s"
msgstr ""
#. module: help_online
#: field:export.help.wizard,create_uid:0 field:help.online,create_uid:0
#: field:import.help.wizard,create_uid:0
msgid "Created by"
msgstr "Loonud"
#. module: help_online
#: field:export.help.wizard,create_date:0 field:help.online,create_date:0
#: field:import.help.wizard,create_date:0
msgid "Created on"
msgstr "Loodud"
#. module: help_online
#: field:export.help.wizard,display_name:0 field:help.online,display_name:0
#: field:import.help.wizard,display_name:0
msgid "Display Name"
msgstr "Näidatav nimi"
#. module: help_online
#: view:export.help.wizard:help_online.export_help_wizard_view
msgid "Export"
msgstr ""
#. module: help_online
#: code:addons/help_online/models/export_help_wizard.py:267
#: model:ir.actions.act_window,name:help_online.action_export_help_wizard
#, python-format
msgid "Export Help"
msgstr ""
#. module: help_online
#: view:export.help.wizard:help_online.export_help_wizard_view
msgid "Export Help Data"
msgstr ""
#. module: help_online
#: model:ir.model,name:help_online.model_export_help_wizard
#: model:ir.ui.menu,name:help_online.menu_help_export
msgid "Export Help Online"
msgstr ""
#. module: help_online
#: field:export.help.wizard,export_filename:0
msgid "Export XML Filename"
msgstr ""
#. module: help_online
#: model:ir.ui.menu,name:help_online.menu_help
#: model:ir.ui.menu,name:help_online.menu_help_main
msgid "Help Online"
msgstr ""
#. module: help_online
#: code:addons/help_online/models/help_online.py:52
#, python-format
msgid "Help on %s"
msgstr ""
#. module: help_online
#: model:res.groups,name:help_online.help_online_group_reader
msgid "Help reader"
msgstr ""
#. module: help_online
#: model:res.groups,name:help_online.help_online_group_writer
msgid "Help writer"
msgstr ""
#. module: help_online
#: field:export.help.wizard,id:0 field:help.online,id:0
#: field:import.help.wizard,id:0
msgid "ID"
msgstr "ID"
#. module: help_online
#: view:import.help.wizard:help_online.import_help_wizard_view
msgid "Import"
msgstr ""
#. module: help_online
#: model:ir.actions.act_window,name:help_online.action_import_help_wizard
msgid "Import Help"
msgstr ""
#. module: help_online
#: view:import.help.wizard:help_online.import_help_wizard_view
msgid "Import Help Data"
msgstr ""
#. module: help_online
#: model:ir.ui.menu,name:help_online.menu_help_import
msgid "Import Help Online"
msgstr ""
#. module: help_online
#: field:export.help.wizard,__last_update:0 field:help.online,__last_update:0
#: field:import.help.wizard,__last_update:0
msgid "Last Modified on"
msgstr "Viimati muudetud"
#. module: help_online
#: field:export.help.wizard,write_uid:0 field:help.online,write_uid:0
#: field:import.help.wizard,write_uid:0
msgid "Last Updated by"
msgstr "Viimati uuendatud"
#. module: help_online
#: field:export.help.wizard,write_date:0 field:help.online,write_date:0
#: field:import.help.wizard,write_date:0
msgid "Last Updated on"
msgstr "Viimati uuendatud"
#. module: help_online
#: code:addons/help_online/models/export_help_wizard.py:260
#, python-format
msgid "No data to export !"
msgstr ""
#. module: help_online
#: code:addons/help_online/models/help_online.py:33
#, python-format
msgid "No page prefix parameter specified !"
msgstr ""
#. module: help_online
#. openerp-web
#: code:addons/help_online/static/src/js/help_online.js:98
#, python-format
msgid "Ok"
msgstr ""
#. module: help_online
#. openerp-web
#: code:addons/help_online/static/src/js/help_online.js:117
#, python-format
msgid "Page does not exist. Do you want to create?"
msgstr ""
#. module: help_online
#: field:import.help.wizard,source_file:0
msgid "Source File"
msgstr ""
#. module: help_online
#: view:export.help.wizard:help_online.export_help_wizard_view
msgid ""
"This wizard allow you to export all QWeb views\n"
" related to help online. The result will be an Odoo\n"
" data xml file."
msgstr ""
#. module: help_online
#: view:import.help.wizard:help_online.import_help_wizard_view
msgid ""
"This wizard allow you to import QWeb views\n"
" related to help online. The required file format is "
"an Odoo\n"
" data xml file."
msgstr ""
#. module: help_online
#: code:addons/help_online/models/export_help_wizard.py:297
#, python-format
msgid "Unable to write autobackup file in given directory: %s"
msgstr ""
#. module: help_online
#: view:ir.ui.view:help_online.view_view_search
msgid "Website Page"
msgstr ""
#. module: help_online
#: view:ir.ui.view:help_online.view_view_form
msgid "Website Page?"
msgstr ""
#. module: help_online
#: model:ir.actions.act_window,name:help_online.action_website_pages
#: model:ir.ui.menu,name:help_online.menu_help_pages
msgid "Website Pages"
msgstr ""
#. module: help_online
#: field:export.help.wizard,data:0
msgid "XML"
msgstr ""
#. module: help_online
#: view:export.help.wizard:help_online.export_help_wizard_view
#: view:import.help.wizard:help_online.import_help_wizard_view
msgid "or"
msgstr "või"

239
help_online/i18n/eu.po

@ -0,0 +1,239 @@
# Translation of Odoo Server.
# This file contains the translation of the following modules:
# * help_online
#
# Translators:
# Esther Martín Menéndez <esthermartin001@gmail.com>, 2017
msgid ""
msgstr ""
"Project-Id-Version: web (8.0)\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2017-02-18 09:00+0000\n"
"PO-Revision-Date: 2017-02-23 15:58+0000\n"
"Last-Translator: Esther Martín Menéndez <esthermartin001@gmail.com>\n"
"Language-Team: Basque (http://www.transifex.com/oca/OCA-web-8-0/language/"
"eu/)\n"
"Language: eu\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: help_online
#. openerp-web
#: code:addons/help_online/static/src/js/help_online.js:93
#, python-format
msgid "Cancel"
msgstr "Ezeztatu"
#. module: help_online
#: view:export.help.wizard:help_online.export_help_wizard_view
#: view:import.help.wizard:help_online.import_help_wizard_view
msgid "Close"
msgstr "Itxi"
#. module: help_online
#. openerp-web
#: code:addons/help_online/static/src/js/help_online.js:91
#, python-format
msgid "Confirm"
msgstr ""
#. module: help_online
#: code:addons/help_online/models/help_online.py:57
#, python-format
msgid "Create Help page for %s"
msgstr ""
#. module: help_online
#: field:export.help.wizard,create_uid:0 field:help.online,create_uid:0
#: field:import.help.wizard,create_uid:0
msgid "Created by"
msgstr "Nork sortua"
#. module: help_online
#: field:export.help.wizard,create_date:0 field:help.online,create_date:0
#: field:import.help.wizard,create_date:0
msgid "Created on"
msgstr "Created on"
#. module: help_online
#: field:export.help.wizard,display_name:0 field:help.online,display_name:0
#: field:import.help.wizard,display_name:0
msgid "Display Name"
msgstr "Izena erakutsi"
#. module: help_online
#: view:export.help.wizard:help_online.export_help_wizard_view
msgid "Export"
msgstr ""
#. module: help_online
#: code:addons/help_online/models/export_help_wizard.py:267
#: model:ir.actions.act_window,name:help_online.action_export_help_wizard
#, python-format
msgid "Export Help"
msgstr ""
#. module: help_online
#: view:export.help.wizard:help_online.export_help_wizard_view
msgid "Export Help Data"
msgstr ""
#. module: help_online
#: model:ir.model,name:help_online.model_export_help_wizard
#: model:ir.ui.menu,name:help_online.menu_help_export
msgid "Export Help Online"
msgstr ""
#. module: help_online
#: field:export.help.wizard,export_filename:0
msgid "Export XML Filename"
msgstr ""
#. module: help_online
#: model:ir.ui.menu,name:help_online.menu_help
#: model:ir.ui.menu,name:help_online.menu_help_main
msgid "Help Online"
msgstr ""
#. module: help_online
#: code:addons/help_online/models/help_online.py:52
#, python-format
msgid "Help on %s"
msgstr ""
#. module: help_online
#: model:res.groups,name:help_online.help_online_group_reader
msgid "Help reader"
msgstr ""
#. module: help_online
#: model:res.groups,name:help_online.help_online_group_writer
msgid "Help writer"
msgstr ""
#. module: help_online
#: field:export.help.wizard,id:0 field:help.online,id:0
#: field:import.help.wizard,id:0
msgid "ID"
msgstr "ID"
#. module: help_online
#: view:import.help.wizard:help_online.import_help_wizard_view
msgid "Import"
msgstr ""
#. module: help_online
#: model:ir.actions.act_window,name:help_online.action_import_help_wizard
msgid "Import Help"
msgstr ""
#. module: help_online
#: view:import.help.wizard:help_online.import_help_wizard_view
msgid "Import Help Data"
msgstr ""
#. module: help_online
#: model:ir.ui.menu,name:help_online.menu_help_import
msgid "Import Help Online"
msgstr ""
#. module: help_online
#: field:export.help.wizard,__last_update:0 field:help.online,__last_update:0
#: field:import.help.wizard,__last_update:0
msgid "Last Modified on"
msgstr ""
#. module: help_online
#: field:export.help.wizard,write_uid:0 field:help.online,write_uid:0
#: field:import.help.wizard,write_uid:0
msgid "Last Updated by"
msgstr "Last Updated by"
#. module: help_online
#: field:export.help.wizard,write_date:0 field:help.online,write_date:0
#: field:import.help.wizard,write_date:0
msgid "Last Updated on"
msgstr "Last Updated on"
#. module: help_online
#: code:addons/help_online/models/export_help_wizard.py:260
#, python-format
msgid "No data to export !"
msgstr ""
#. module: help_online
#: code:addons/help_online/models/help_online.py:33
#, python-format
msgid "No page prefix parameter specified !"
msgstr ""
#. module: help_online
#. openerp-web
#: code:addons/help_online/static/src/js/help_online.js:98
#, python-format
msgid "Ok"
msgstr "Ok"
#. module: help_online
#. openerp-web
#: code:addons/help_online/static/src/js/help_online.js:117
#, python-format
msgid "Page does not exist. Do you want to create?"
msgstr ""
#. module: help_online
#: field:import.help.wizard,source_file:0
msgid "Source File"
msgstr ""
#. module: help_online
#: view:export.help.wizard:help_online.export_help_wizard_view
msgid ""
"This wizard allow you to export all QWeb views\n"
" related to help online. The result will be an Odoo\n"
" data xml file."
msgstr ""
#. module: help_online
#: view:import.help.wizard:help_online.import_help_wizard_view
msgid ""
"This wizard allow you to import QWeb views\n"
" related to help online. The required file format is "
"an Odoo\n"
" data xml file."
msgstr ""
#. module: help_online
#: code:addons/help_online/models/export_help_wizard.py:297
#, python-format
msgid "Unable to write autobackup file in given directory: %s"
msgstr ""
#. module: help_online
#: view:ir.ui.view:help_online.view_view_search
msgid "Website Page"
msgstr ""
#. module: help_online
#: view:ir.ui.view:help_online.view_view_form
msgid "Website Page?"
msgstr ""
#. module: help_online
#: model:ir.actions.act_window,name:help_online.action_website_pages
#: model:ir.ui.menu,name:help_online.menu_help_pages
msgid "Website Pages"
msgstr ""
#. module: help_online
#: field:export.help.wizard,data:0
msgid "XML"
msgstr "XML"
#. module: help_online
#: view:export.help.wizard:help_online.export_help_wizard_view
#: view:import.help.wizard:help_online.import_help_wizard_view
msgid "or"
msgstr "or"

238
help_online/i18n/fa.po

@ -0,0 +1,238 @@
# Translation of Odoo Server.
# This file contains the translation of the following modules:
# * help_online
#
# Translators:
msgid ""
msgstr ""
"Project-Id-Version: web (8.0)\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2016-12-29 03:45+0000\n"
"PO-Revision-Date: 2016-12-27 08:25+0000\n"
"Last-Translator: OCA Transbot <transbot@odoo-community.org>\n"
"Language-Team: Persian (http://www.transifex.com/oca/OCA-web-8-0/language/"
"fa/)\n"
"Language: fa\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: \n"
"Plural-Forms: nplurals=1; plural=0;\n"
#. module: help_online
#. openerp-web
#: code:addons/help_online/static/src/js/help_online.js:93
#, python-format
msgid "Cancel"
msgstr "لغو"
#. module: help_online
#: view:export.help.wizard:help_online.export_help_wizard_view
#: view:import.help.wizard:help_online.import_help_wizard_view
msgid "Close"
msgstr ""
#. module: help_online
#. openerp-web
#: code:addons/help_online/static/src/js/help_online.js:91
#, python-format
msgid "Confirm"
msgstr ""
#. module: help_online
#: code:addons/help_online/models/help_online.py:57
#, python-format
msgid "Create Help page for %s"
msgstr ""
#. module: help_online
#: field:export.help.wizard,create_uid:0 field:help.online,create_uid:0
#: field:import.help.wizard,create_uid:0
msgid "Created by"
msgstr "ایجاد شده توسط"
#. module: help_online
#: field:export.help.wizard,create_date:0 field:help.online,create_date:0
#: field:import.help.wizard,create_date:0
msgid "Created on"
msgstr "ایجاد شده در"
#. module: help_online
#: field:export.help.wizard,display_name:0 field:help.online,display_name:0
#: field:import.help.wizard,display_name:0
msgid "Display Name"
msgstr "نام نمایشی"
#. module: help_online
#: view:export.help.wizard:help_online.export_help_wizard_view
msgid "Export"
msgstr ""
#. module: help_online
#: code:addons/help_online/models/export_help_wizard.py:267
#: model:ir.actions.act_window,name:help_online.action_export_help_wizard
#, python-format
msgid "Export Help"
msgstr ""
#. module: help_online
#: view:export.help.wizard:help_online.export_help_wizard_view
msgid "Export Help Data"
msgstr ""
#. module: help_online
#: model:ir.model,name:help_online.model_export_help_wizard
#: model:ir.ui.menu,name:help_online.menu_help_export
msgid "Export Help Online"
msgstr ""
#. module: help_online
#: field:export.help.wizard,export_filename:0
msgid "Export XML Filename"
msgstr ""
#. module: help_online
#: model:ir.ui.menu,name:help_online.menu_help
#: model:ir.ui.menu,name:help_online.menu_help_main
msgid "Help Online"
msgstr ""
#. module: help_online
#: code:addons/help_online/models/help_online.py:52
#, python-format
msgid "Help on %s"
msgstr ""
#. module: help_online
#: model:res.groups,name:help_online.help_online_group_reader
msgid "Help reader"
msgstr ""
#. module: help_online
#: model:res.groups,name:help_online.help_online_group_writer
msgid "Help writer"
msgstr ""
#. module: help_online
#: field:export.help.wizard,id:0 field:help.online,id:0
#: field:import.help.wizard,id:0
msgid "ID"
msgstr "شناسه"
#. module: help_online
#: view:import.help.wizard:help_online.import_help_wizard_view
msgid "Import"
msgstr ""
#. module: help_online
#: model:ir.actions.act_window,name:help_online.action_import_help_wizard
msgid "Import Help"
msgstr ""
#. module: help_online
#: view:import.help.wizard:help_online.import_help_wizard_view
msgid "Import Help Data"
msgstr ""
#. module: help_online
#: model:ir.ui.menu,name:help_online.menu_help_import
msgid "Import Help Online"
msgstr ""
#. module: help_online
#: field:export.help.wizard,__last_update:0 field:help.online,__last_update:0
#: field:import.help.wizard,__last_update:0
msgid "Last Modified on"
msgstr "تاریخ آخرین به‌روزرسانی"
#. module: help_online
#: field:export.help.wizard,write_uid:0 field:help.online,write_uid:0
#: field:import.help.wizard,write_uid:0
msgid "Last Updated by"
msgstr "آخرین به روز رسانی توسط"
#. module: help_online
#: field:export.help.wizard,write_date:0 field:help.online,write_date:0
#: field:import.help.wizard,write_date:0
msgid "Last Updated on"
msgstr "آخرین به روز رسانی در"
#. module: help_online
#: code:addons/help_online/models/export_help_wizard.py:260
#, python-format
msgid "No data to export !"
msgstr ""
#. module: help_online
#: code:addons/help_online/models/help_online.py:33
#, python-format
msgid "No page prefix parameter specified !"
msgstr ""
#. module: help_online
#. openerp-web
#: code:addons/help_online/static/src/js/help_online.js:98
#, python-format
msgid "Ok"
msgstr ""
#. module: help_online
#. openerp-web
#: code:addons/help_online/static/src/js/help_online.js:117
#, python-format
msgid "Page does not exist. Do you want to create?"
msgstr ""
#. module: help_online
#: field:import.help.wizard,source_file:0
msgid "Source File"
msgstr ""
#. module: help_online
#: view:export.help.wizard:help_online.export_help_wizard_view
msgid ""
"This wizard allow you to export all QWeb views\n"
" related to help online. The result will be an Odoo\n"
" data xml file."
msgstr ""
#. module: help_online
#: view:import.help.wizard:help_online.import_help_wizard_view
msgid ""
"This wizard allow you to import QWeb views\n"
" related to help online. The required file format is "
"an Odoo\n"
" data xml file."
msgstr ""
#. module: help_online
#: code:addons/help_online/models/export_help_wizard.py:297
#, python-format
msgid "Unable to write autobackup file in given directory: %s"
msgstr ""
#. module: help_online
#: view:ir.ui.view:help_online.view_view_search
msgid "Website Page"
msgstr ""
#. module: help_online
#: view:ir.ui.view:help_online.view_view_form
msgid "Website Page?"
msgstr ""
#. module: help_online
#: model:ir.actions.act_window,name:help_online.action_website_pages
#: model:ir.ui.menu,name:help_online.menu_help_pages
msgid "Website Pages"
msgstr ""
#. module: help_online
#: field:export.help.wizard,data:0
msgid "XML"
msgstr ""
#. module: help_online
#: view:export.help.wizard:help_online.export_help_wizard_view
#: view:import.help.wizard:help_online.import_help_wizard_view
msgid "or"
msgstr "یا"

251
help_online/i18n/fi.po

@ -0,0 +1,251 @@
# Translation of Odoo Server.
# This file contains the translation of the following modules:
# * help_online
#
# Translators:
# Ahmet Altinisik <aaltinisik@altinkaya.com.tr>, 2015
# Antonio Trueba, 2016
# FIRST AUTHOR <EMAIL@ADDRESS>, 2012,2014
# Hotellook, 2014
# Jarmo Kortetjärvi <jarmo.kortetjarvi@gmail.com>, 2016
# Matjaž Mozetič <m.mozetic@matmoz.si>, 2015-2016
# Paolo Valier, 2016
# Rudolf Schnapka <rs@techno-flex.de>, 2016
# Thomas A. Jaeger, 2015
msgid ""
msgstr ""
"Project-Id-Version: web (8.0)\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2016-09-17 12:06+0000\n"
"PO-Revision-Date: 2016-09-15 12:45+0000\n"
"Last-Translator: Jarmo Kortetjärvi <jarmo.kortetjarvi@gmail.com>\n"
"Language-Team: Finnish (http://www.transifex.com/oca/OCA-web-8-0/language/"
"fi/)\n"
"Language: fi\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: help_online
#. openerp-web
#: code:addons/help_online/static/src/js/help_online.js:93
#, python-format
msgid "Cancel"
msgstr "Peru"
#. module: help_online
#: view:export.help.wizard:help_online.export_help_wizard_view
#: view:import.help.wizard:help_online.import_help_wizard_view
msgid "Close"
msgstr "Sulje"
#. module: help_online
#. openerp-web
#: code:addons/help_online/static/src/js/help_online.js:91
#, python-format
msgid "Confirm"
msgstr "Vahvista"
#. module: help_online
#: code:addons/help_online/models/help_online.py:57
#, python-format
msgid "Create Help page for %s"
msgstr "Luo ohjesivu %s:lle"
#. module: help_online
#: field:export.help.wizard,create_uid:0 field:help.online,create_uid:0
#: field:import.help.wizard,create_uid:0
msgid "Created by"
msgstr "Luonut"
#. module: help_online
#: field:export.help.wizard,create_date:0 field:help.online,create_date:0
#: field:import.help.wizard,create_date:0
msgid "Created on"
msgstr "Luotu"
#. module: help_online
#: field:export.help.wizard,display_name:0 field:help.online,display_name:0
#: field:import.help.wizard,display_name:0
msgid "Display Name"
msgstr "Nimi"
#. module: help_online
#: view:export.help.wizard:help_online.export_help_wizard_view
msgid "Export"
msgstr "Vie"
#. module: help_online
#: code:addons/help_online/models/export_help_wizard.py:267
#: model:ir.actions.act_window,name:help_online.action_export_help_wizard
#, python-format
msgid "Export Help"
msgstr "Vie ohje"
#. module: help_online
#: view:export.help.wizard:help_online.export_help_wizard_view
msgid "Export Help Data"
msgstr "Vie ohjeen sisältö"
#. module: help_online
#: model:ir.model,name:help_online.model_export_help_wizard
#: model:ir.ui.menu,name:help_online.menu_help_export
msgid "Export Help Online"
msgstr "Vie verkko-ohje"
#. module: help_online
#: field:export.help.wizard,export_filename:0
msgid "Export XML Filename"
msgstr "Vie XML-tiedoston nimi"
#. module: help_online
#: model:ir.ui.menu,name:help_online.menu_help
#: model:ir.ui.menu,name:help_online.menu_help_main
msgid "Help Online"
msgstr "Verkko-ohje"
#. module: help_online
#: code:addons/help_online/models/help_online.py:52
#, python-format
msgid "Help on %s"
msgstr "Ohje aiheelle %s"
#. module: help_online
#: model:res.groups,name:help_online.help_online_group_reader
msgid "Help reader"
msgstr "Ohjeen luku"
#. module: help_online
#: model:res.groups,name:help_online.help_online_group_writer
msgid "Help writer"
msgstr "Ohjeen kirjoittaminen"
#. module: help_online
#: field:export.help.wizard,id:0 field:help.online,id:0
#: field:import.help.wizard,id:0
msgid "ID"
msgstr "ID"
#. module: help_online
#: view:import.help.wizard:help_online.import_help_wizard_view
msgid "Import"
msgstr "Tuo"
#. module: help_online
#: model:ir.actions.act_window,name:help_online.action_import_help_wizard
msgid "Import Help"
msgstr "Tuo ohje"
#. module: help_online
#: view:import.help.wizard:help_online.import_help_wizard_view
msgid "Import Help Data"
msgstr "Tuo ohjeen sisältö"
#. module: help_online
#: model:ir.ui.menu,name:help_online.menu_help_import
msgid "Import Help Online"
msgstr "Tuo verkko-ohje"
#. module: help_online
#: field:export.help.wizard,__last_update:0 field:help.online,__last_update:0
#: field:import.help.wizard,__last_update:0
msgid "Last Modified on"
msgstr "Viimeksi muokattu"
#. module: help_online
#: field:export.help.wizard,write_uid:0 field:help.online,write_uid:0
#: field:import.help.wizard,write_uid:0
msgid "Last Updated by"
msgstr "Viimeksi päivittänyt"
#. module: help_online
#: field:export.help.wizard,write_date:0 field:help.online,write_date:0
#: field:import.help.wizard,write_date:0
msgid "Last Updated on"
msgstr "Viimeksi päivitetty"
#. module: help_online
#: code:addons/help_online/models/export_help_wizard.py:260
#, python-format
msgid "No data to export !"
msgstr "Ei vietävää dataa!"
#. module: help_online
#: code:addons/help_online/models/help_online.py:33
#, python-format
msgid "No page prefix parameter specified !"
msgstr "Sivun etuliitettä ei ole määritetty!"
#. module: help_online
#. openerp-web
#: code:addons/help_online/static/src/js/help_online.js:98
#, python-format
msgid "Ok"
msgstr "Ok"
#. module: help_online
#. openerp-web
#: code:addons/help_online/static/src/js/help_online.js:117
#, python-format
msgid "Page does not exist. Do you want to create?"
msgstr "Sivua ei ole olemassa. Haluatko luoda sivun?"
#. module: help_online
#: field:import.help.wizard,source_file:0
msgid "Source File"
msgstr "Lähdetiedosto"
#. module: help_online
#: view:export.help.wizard:help_online.export_help_wizard_view
msgid ""
"This wizard allow you to export all QWeb views\n"
" related to help online. The result will be an Odoo\n"
" data xml file."
msgstr ""
"Tämä ohjattu toiminto sallii kaikkien verkko-ohjeisiin liittyvien\n"
"QWeb-näkymien viennin. Tuloksena on Odoon tiedot sisältävä XML-tiedosto."
#. module: help_online
#: view:import.help.wizard:help_online.import_help_wizard_view
msgid ""
"This wizard allow you to import QWeb views\n"
" related to help online. The required file format is "
"an Odoo\n"
" data xml file."
msgstr ""
"Tämä ohjattu toiminto sallii kaikkien verkko-ohjeisiin liittyvien QWeb-"
"näkymien viennin. Tuloksena on Odoon tiedot sisältävä XML-tiedosto."
#. module: help_online
#: code:addons/help_online/models/export_help_wizard.py:297
#, python-format
msgid "Unable to write autobackup file in given directory: %s"
msgstr "Kohdekahsioon \"%s\" ei voitu kirjoittaa automaattista varmuuskopiota."
#. module: help_online
#: view:ir.ui.view:help_online.view_view_search
msgid "Website Page"
msgstr "Verkkosivu"
#. module: help_online
#: view:ir.ui.view:help_online.view_view_form
msgid "Website Page?"
msgstr "Verkkosivu?"
#. module: help_online
#: model:ir.actions.act_window,name:help_online.action_website_pages
#: model:ir.ui.menu,name:help_online.menu_help_pages
msgid "Website Pages"
msgstr "Verkkosivut"
#. module: help_online
#: field:export.help.wizard,data:0
msgid "XML"
msgstr "XML"
#. module: help_online
#: view:export.help.wizard:help_online.export_help_wizard_view
#: view:import.help.wizard:help_online.import_help_wizard_view
msgid "or"
msgstr "tai"

260
help_online/i18n/fr.po

@ -0,0 +1,260 @@
# Translation of Odoo Server.
# This file contains the translation of the following modules:
# * help_online
#
# Translators:
# Carles Antoli <carlesantoli@hotmail.com>, 2015
# Carles Antoli <carlesantoli@hotmail.com>, 2015
# Christophe CHAUVET <christophe.chauvet@gmail.com>, 2015-2016
# Christophe CHAUVET <christophe.chauvet@gmail.com>, 2015
# danimaribeiro <danimaribeiro@gmail.com>, 2016
# FIRST AUTHOR <EMAIL@ADDRESS>, 2010,2012-2014
# Giacomo <giacomo.spettoli@gmail.com>, 2015
# Giedrius Slavinskas <giedrius@inovera.lt>, 2012
# Hotellook, 2014
# Matjaž Mozetič <m.mozetic@matmoz.si>, 2015-2016
# Paolo Valier, 2016
# Pedro M. Baeza <pedro.baeza@gmail.com>, 2015
# Rudolf Schnapka <rs@techno-flex.de>, 2016
# UAB "Draugiški sprendimai" <transifex@draugiskisprendimai.lt>, 2015
msgid ""
msgstr ""
"Project-Id-Version: web (8.0)\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2016-09-17 12:06+0000\n"
"PO-Revision-Date: 2016-09-16 21:46+0000\n"
"Last-Translator: Christophe CHAUVET <christophe.chauvet@gmail.com>\n"
"Language-Team: French (http://www.transifex.com/oca/OCA-web-8-0/language/"
"fr/)\n"
"Language: fr\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: help_online
#. openerp-web
#: code:addons/help_online/static/src/js/help_online.js:93
#, python-format
msgid "Cancel"
msgstr "Annuler"
#. module: help_online
#: view:export.help.wizard:help_online.export_help_wizard_view
#: view:import.help.wizard:help_online.import_help_wizard_view
msgid "Close"
msgstr "Fermer"
#. module: help_online
#. openerp-web
#: code:addons/help_online/static/src/js/help_online.js:91
#, python-format
msgid "Confirm"
msgstr "Confirmer"
#. module: help_online
#: code:addons/help_online/models/help_online.py:57
#, python-format
msgid "Create Help page for %s"
msgstr "Créer la page d'aide pour %s"
#. module: help_online
#: field:export.help.wizard,create_uid:0 field:help.online,create_uid:0
#: field:import.help.wizard,create_uid:0
msgid "Created by"
msgstr "Créé par"
#. module: help_online
#: field:export.help.wizard,create_date:0 field:help.online,create_date:0
#: field:import.help.wizard,create_date:0
msgid "Created on"
msgstr "Créé le"
#. module: help_online
#: field:export.help.wizard,display_name:0 field:help.online,display_name:0
#: field:import.help.wizard,display_name:0
msgid "Display Name"
msgstr "Nom affiché"
#. module: help_online
#: view:export.help.wizard:help_online.export_help_wizard_view
msgid "Export"
msgstr "Export"
#. module: help_online
#: code:addons/help_online/models/export_help_wizard.py:267
#: model:ir.actions.act_window,name:help_online.action_export_help_wizard
#, python-format
msgid "Export Help"
msgstr "Export des pages d'aide"
#. module: help_online
#: view:export.help.wizard:help_online.export_help_wizard_view
msgid "Export Help Data"
msgstr "Export des pages d'aide"
#. module: help_online
#: model:ir.model,name:help_online.model_export_help_wizard
#: model:ir.ui.menu,name:help_online.menu_help_export
msgid "Export Help Online"
msgstr "Export des pages d'aide"
#. module: help_online
#: field:export.help.wizard,export_filename:0
msgid "Export XML Filename"
msgstr "Fichier XML"
#. module: help_online
#: model:ir.ui.menu,name:help_online.menu_help
#: model:ir.ui.menu,name:help_online.menu_help_main
msgid "Help Online"
msgstr "Aide en ligne"
#. module: help_online
#: code:addons/help_online/models/help_online.py:52
#, python-format
msgid "Help on %s"
msgstr "Aide sur %s"
#. module: help_online
#: model:res.groups,name:help_online.help_online_group_reader
msgid "Help reader"
msgstr "Aide: lecteur"
#. module: help_online
#: model:res.groups,name:help_online.help_online_group_writer
msgid "Help writer"
msgstr "Aide: rédacteur"
#. module: help_online
#: field:export.help.wizard,id:0 field:help.online,id:0
#: field:import.help.wizard,id:0
msgid "ID"
msgstr "ID"
#. module: help_online
#: view:import.help.wizard:help_online.import_help_wizard_view
msgid "Import"
msgstr "Import"
#. module: help_online
#: model:ir.actions.act_window,name:help_online.action_import_help_wizard
msgid "Import Help"
msgstr "Import des pages d'aide"
#. module: help_online
#: view:import.help.wizard:help_online.import_help_wizard_view
msgid "Import Help Data"
msgstr "Import des pages d'aide"
#. module: help_online
#: model:ir.ui.menu,name:help_online.menu_help_import
msgid "Import Help Online"
msgstr "Import des pages d'aide"
#. module: help_online
#: field:export.help.wizard,__last_update:0 field:help.online,__last_update:0
#: field:import.help.wizard,__last_update:0
msgid "Last Modified on"
msgstr "Dernière modification le"
#. module: help_online
#: field:export.help.wizard,write_uid:0 field:help.online,write_uid:0
#: field:import.help.wizard,write_uid:0
msgid "Last Updated by"
msgstr "Mis à jour par"
#. module: help_online
#: field:export.help.wizard,write_date:0 field:help.online,write_date:0
#: field:import.help.wizard,write_date:0
msgid "Last Updated on"
msgstr "Mis à jour le"
#. module: help_online
#: code:addons/help_online/models/export_help_wizard.py:260
#, python-format
msgid "No data to export !"
msgstr "Aucune page à exporter !"
#. module: help_online
#: code:addons/help_online/models/help_online.py:33
#, python-format
msgid "No page prefix parameter specified !"
msgstr "Le paramètre spécifiant le préfixe des pages n'est pas configuré !"
#. module: help_online
#. openerp-web
#: code:addons/help_online/static/src/js/help_online.js:98
#, python-format
msgid "Ok"
msgstr "Ok"
#. module: help_online
#. openerp-web
#: code:addons/help_online/static/src/js/help_online.js:117
#, python-format
msgid "Page does not exist. Do you want to create?"
msgstr "La page n'existe pas. Voulez-vous la créer?"
#. module: help_online
#: field:import.help.wizard,source_file:0
msgid "Source File"
msgstr "Fichier de données"
#. module: help_online
#: view:export.help.wizard:help_online.export_help_wizard_view
msgid ""
"This wizard allow you to export all QWeb views\n"
" related to help online. The result will be an Odoo\n"
" data xml file."
msgstr ""
"Cet assistant vous permet d'exporter toutes les vues QWeb \n"
" concernant l'aide. Le résultat sera un\n"
" fichier de données Odoo."
#. module: help_online
#: view:import.help.wizard:help_online.import_help_wizard_view
msgid ""
"This wizard allow you to import QWeb views\n"
" related to help online. The required file format is "
"an Odoo\n"
" data xml file."
msgstr ""
"Cet assistant vous permet d'importer toutes les vues QWeb\n"
" concernant l'aide. Le format de fichier requis est "
"un\n"
" fichier de données Odoo."
#. module: help_online
#: code:addons/help_online/models/export_help_wizard.py:297
#, python-format
msgid "Unable to write autobackup file in given directory: %s"
msgstr ""
"Impossible d'écrire le fichier de sauvegarde dans le répertoire spécifié: %s"
#. module: help_online
#: view:ir.ui.view:help_online.view_view_search
msgid "Website Page"
msgstr "Page du site"
#. module: help_online
#: view:ir.ui.view:help_online.view_view_form
msgid "Website Page?"
msgstr "Page du site?"
#. module: help_online
#: model:ir.actions.act_window,name:help_online.action_website_pages
#: model:ir.ui.menu,name:help_online.menu_help_pages
msgid "Website Pages"
msgstr "Pages du site"
#. module: help_online
#: field:export.help.wizard,data:0
msgid "XML"
msgstr "XML"
#. module: help_online
#: view:export.help.wizard:help_online.export_help_wizard_view
#: view:import.help.wizard:help_online.import_help_wizard_view
msgid "or"
msgstr "ou"

238
help_online/i18n/fr_CA.po

@ -0,0 +1,238 @@
# Translation of Odoo Server.
# This file contains the translation of the following modules:
# * help_online
#
# Translators:
msgid ""
msgstr ""
"Project-Id-Version: web (8.0)\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2017-03-11 09:32+0000\n"
"PO-Revision-Date: 2017-03-13 12:52+0000\n"
"Last-Translator: OCA Transbot <transbot@odoo-community.org>\n"
"Language-Team: French (Canada) (http://www.transifex.com/oca/OCA-web-8-0/"
"language/fr_CA/)\n"
"Language: fr_CA\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: help_online
#. openerp-web
#: code:addons/help_online/static/src/js/help_online.js:93
#, python-format
msgid "Cancel"
msgstr "Annuler"
#. module: help_online
#: view:export.help.wizard:help_online.export_help_wizard_view
#: view:import.help.wizard:help_online.import_help_wizard_view
msgid "Close"
msgstr ""
#. module: help_online
#. openerp-web
#: code:addons/help_online/static/src/js/help_online.js:91
#, python-format
msgid "Confirm"
msgstr ""
#. module: help_online
#: code:addons/help_online/models/help_online.py:57
#, python-format
msgid "Create Help page for %s"
msgstr ""
#. module: help_online
#: field:export.help.wizard,create_uid:0 field:help.online,create_uid:0
#: field:import.help.wizard,create_uid:0
msgid "Created by"
msgstr "Créé par"
#. module: help_online
#: field:export.help.wizard,create_date:0 field:help.online,create_date:0
#: field:import.help.wizard,create_date:0
msgid "Created on"
msgstr "Créé le"
#. module: help_online
#: field:export.help.wizard,display_name:0 field:help.online,display_name:0
#: field:import.help.wizard,display_name:0
msgid "Display Name"
msgstr "Afficher le nom"
#. module: help_online
#: view:export.help.wizard:help_online.export_help_wizard_view
msgid "Export"
msgstr ""
#. module: help_online
#: code:addons/help_online/models/export_help_wizard.py:267
#: model:ir.actions.act_window,name:help_online.action_export_help_wizard
#, python-format
msgid "Export Help"
msgstr ""
#. module: help_online
#: view:export.help.wizard:help_online.export_help_wizard_view
msgid "Export Help Data"
msgstr ""
#. module: help_online
#: model:ir.model,name:help_online.model_export_help_wizard
#: model:ir.ui.menu,name:help_online.menu_help_export
msgid "Export Help Online"
msgstr ""
#. module: help_online
#: field:export.help.wizard,export_filename:0
msgid "Export XML Filename"
msgstr ""
#. module: help_online
#: model:ir.ui.menu,name:help_online.menu_help
#: model:ir.ui.menu,name:help_online.menu_help_main
msgid "Help Online"
msgstr ""
#. module: help_online
#: code:addons/help_online/models/help_online.py:52
#, python-format
msgid "Help on %s"
msgstr ""
#. module: help_online
#: model:res.groups,name:help_online.help_online_group_reader
msgid "Help reader"
msgstr ""
#. module: help_online
#: model:res.groups,name:help_online.help_online_group_writer
msgid "Help writer"
msgstr ""
#. module: help_online
#: field:export.help.wizard,id:0 field:help.online,id:0
#: field:import.help.wizard,id:0
msgid "ID"
msgstr "Identifiant"
#. module: help_online
#: view:import.help.wizard:help_online.import_help_wizard_view
msgid "Import"
msgstr ""
#. module: help_online
#: model:ir.actions.act_window,name:help_online.action_import_help_wizard
msgid "Import Help"
msgstr ""
#. module: help_online
#: view:import.help.wizard:help_online.import_help_wizard_view
msgid "Import Help Data"
msgstr ""
#. module: help_online
#: model:ir.ui.menu,name:help_online.menu_help_import
msgid "Import Help Online"
msgstr ""
#. module: help_online
#: field:export.help.wizard,__last_update:0 field:help.online,__last_update:0
#: field:import.help.wizard,__last_update:0
msgid "Last Modified on"
msgstr ""
#. module: help_online
#: field:export.help.wizard,write_uid:0 field:help.online,write_uid:0
#: field:import.help.wizard,write_uid:0
msgid "Last Updated by"
msgstr "Dernière mise à jour par"
#. module: help_online
#: field:export.help.wizard,write_date:0 field:help.online,write_date:0
#: field:import.help.wizard,write_date:0
msgid "Last Updated on"
msgstr "Dernière mise à jour le"
#. module: help_online
#: code:addons/help_online/models/export_help_wizard.py:260
#, python-format
msgid "No data to export !"
msgstr ""
#. module: help_online
#: code:addons/help_online/models/help_online.py:33
#, python-format
msgid "No page prefix parameter specified !"
msgstr ""
#. module: help_online
#. openerp-web
#: code:addons/help_online/static/src/js/help_online.js:98
#, python-format
msgid "Ok"
msgstr ""
#. module: help_online
#. openerp-web
#: code:addons/help_online/static/src/js/help_online.js:117
#, python-format
msgid "Page does not exist. Do you want to create?"
msgstr ""
#. module: help_online
#: field:import.help.wizard,source_file:0
msgid "Source File"
msgstr ""
#. module: help_online
#: view:export.help.wizard:help_online.export_help_wizard_view
msgid ""
"This wizard allow you to export all QWeb views\n"
" related to help online. The result will be an Odoo\n"
" data xml file."
msgstr ""
#. module: help_online
#: view:import.help.wizard:help_online.import_help_wizard_view
msgid ""
"This wizard allow you to import QWeb views\n"
" related to help online. The required file format is "
"an Odoo\n"
" data xml file."
msgstr ""
#. module: help_online
#: code:addons/help_online/models/export_help_wizard.py:297
#, python-format
msgid "Unable to write autobackup file in given directory: %s"
msgstr ""
#. module: help_online
#: view:ir.ui.view:help_online.view_view_search
msgid "Website Page"
msgstr ""
#. module: help_online
#: view:ir.ui.view:help_online.view_view_form
msgid "Website Page?"
msgstr ""
#. module: help_online
#: model:ir.actions.act_window,name:help_online.action_website_pages
#: model:ir.ui.menu,name:help_online.menu_help_pages
msgid "Website Pages"
msgstr ""
#. module: help_online
#: field:export.help.wizard,data:0
msgid "XML"
msgstr ""
#. module: help_online
#: view:export.help.wizard:help_online.export_help_wizard_view
#: view:import.help.wizard:help_online.import_help_wizard_view
msgid "or"
msgstr ""

238
help_online/i18n/fr_CH.po

@ -0,0 +1,238 @@
# Translation of Odoo Server.
# This file contains the translation of the following modules:
# * help_online
#
# Translators:
msgid ""
msgstr ""
"Project-Id-Version: web (8.0)\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2017-05-02 01:43+0000\n"
"PO-Revision-Date: 2017-05-11 14:15+0000\n"
"Last-Translator: OCA Transbot <transbot@odoo-community.org>\n"
"Language-Team: French (Switzerland) (http://www.transifex.com/oca/OCA-"
"web-8-0/language/fr_CH/)\n"
"Language: fr_CH\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: help_online
#. openerp-web
#: code:addons/help_online/static/src/js/help_online.js:93
#, python-format
msgid "Cancel"
msgstr "Annuler"
#. module: help_online
#: view:export.help.wizard:help_online.export_help_wizard_view
#: view:import.help.wizard:help_online.import_help_wizard_view
msgid "Close"
msgstr "Fermer"
#. module: help_online
#. openerp-web
#: code:addons/help_online/static/src/js/help_online.js:91
#, python-format
msgid "Confirm"
msgstr ""
#. module: help_online
#: code:addons/help_online/models/help_online.py:57
#, python-format
msgid "Create Help page for %s"
msgstr ""
#. module: help_online
#: field:export.help.wizard,create_uid:0 field:help.online,create_uid:0
#: field:import.help.wizard,create_uid:0
msgid "Created by"
msgstr "Créé par"
#. module: help_online
#: field:export.help.wizard,create_date:0 field:help.online,create_date:0
#: field:import.help.wizard,create_date:0
msgid "Created on"
msgstr "Créé le"
#. module: help_online
#: field:export.help.wizard,display_name:0 field:help.online,display_name:0
#: field:import.help.wizard,display_name:0
msgid "Display Name"
msgstr "Nom affiché"
#. module: help_online
#: view:export.help.wizard:help_online.export_help_wizard_view
msgid "Export"
msgstr ""
#. module: help_online
#: code:addons/help_online/models/export_help_wizard.py:267
#: model:ir.actions.act_window,name:help_online.action_export_help_wizard
#, python-format
msgid "Export Help"
msgstr ""
#. module: help_online
#: view:export.help.wizard:help_online.export_help_wizard_view
msgid "Export Help Data"
msgstr ""
#. module: help_online
#: model:ir.model,name:help_online.model_export_help_wizard
#: model:ir.ui.menu,name:help_online.menu_help_export
msgid "Export Help Online"
msgstr ""
#. module: help_online
#: field:export.help.wizard,export_filename:0
msgid "Export XML Filename"
msgstr ""
#. module: help_online
#: model:ir.ui.menu,name:help_online.menu_help
#: model:ir.ui.menu,name:help_online.menu_help_main
msgid "Help Online"
msgstr ""
#. module: help_online
#: code:addons/help_online/models/help_online.py:52
#, python-format
msgid "Help on %s"
msgstr ""
#. module: help_online
#: model:res.groups,name:help_online.help_online_group_reader
msgid "Help reader"
msgstr ""
#. module: help_online
#: model:res.groups,name:help_online.help_online_group_writer
msgid "Help writer"
msgstr ""
#. module: help_online
#: field:export.help.wizard,id:0 field:help.online,id:0
#: field:import.help.wizard,id:0
msgid "ID"
msgstr "ID"
#. module: help_online
#: view:import.help.wizard:help_online.import_help_wizard_view
msgid "Import"
msgstr ""
#. module: help_online
#: model:ir.actions.act_window,name:help_online.action_import_help_wizard
msgid "Import Help"
msgstr ""
#. module: help_online
#: view:import.help.wizard:help_online.import_help_wizard_view
msgid "Import Help Data"
msgstr ""
#. module: help_online
#: model:ir.ui.menu,name:help_online.menu_help_import
msgid "Import Help Online"
msgstr ""
#. module: help_online
#: field:export.help.wizard,__last_update:0 field:help.online,__last_update:0
#: field:import.help.wizard,__last_update:0
msgid "Last Modified on"
msgstr "Dernière modification le"
#. module: help_online
#: field:export.help.wizard,write_uid:0 field:help.online,write_uid:0
#: field:import.help.wizard,write_uid:0
msgid "Last Updated by"
msgstr "Modifié par"
#. module: help_online
#: field:export.help.wizard,write_date:0 field:help.online,write_date:0
#: field:import.help.wizard,write_date:0
msgid "Last Updated on"
msgstr "Modifié le"
#. module: help_online
#: code:addons/help_online/models/export_help_wizard.py:260
#, python-format
msgid "No data to export !"
msgstr ""
#. module: help_online
#: code:addons/help_online/models/help_online.py:33
#, python-format
msgid "No page prefix parameter specified !"
msgstr ""
#. module: help_online
#. openerp-web
#: code:addons/help_online/static/src/js/help_online.js:98
#, python-format
msgid "Ok"
msgstr ""
#. module: help_online
#. openerp-web
#: code:addons/help_online/static/src/js/help_online.js:117
#, python-format
msgid "Page does not exist. Do you want to create?"
msgstr ""
#. module: help_online
#: field:import.help.wizard,source_file:0
msgid "Source File"
msgstr ""
#. module: help_online
#: view:export.help.wizard:help_online.export_help_wizard_view
msgid ""
"This wizard allow you to export all QWeb views\n"
" related to help online. The result will be an Odoo\n"
" data xml file."
msgstr ""
#. module: help_online
#: view:import.help.wizard:help_online.import_help_wizard_view
msgid ""
"This wizard allow you to import QWeb views\n"
" related to help online. The required file format is "
"an Odoo\n"
" data xml file."
msgstr ""
#. module: help_online
#: code:addons/help_online/models/export_help_wizard.py:297
#, python-format
msgid "Unable to write autobackup file in given directory: %s"
msgstr ""
#. module: help_online
#: view:ir.ui.view:help_online.view_view_search
msgid "Website Page"
msgstr ""
#. module: help_online
#: view:ir.ui.view:help_online.view_view_form
msgid "Website Page?"
msgstr ""
#. module: help_online
#: model:ir.actions.act_window,name:help_online.action_website_pages
#: model:ir.ui.menu,name:help_online.menu_help_pages
msgid "Website Pages"
msgstr ""
#. module: help_online
#: field:export.help.wizard,data:0
msgid "XML"
msgstr ""
#. module: help_online
#: view:export.help.wizard:help_online.export_help_wizard_view
#: view:import.help.wizard:help_online.import_help_wizard_view
msgid "or"
msgstr ""

238
help_online/i18n/fr_FR.po

@ -0,0 +1,238 @@
# Translation of Odoo Server.
# This file contains the translation of the following modules:
# * help_online
#
# Translators:
msgid ""
msgstr ""
"Project-Id-Version: web (8.0)\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2016-12-29 03:45+0000\n"
"PO-Revision-Date: 2016-12-27 08:20+0000\n"
"Last-Translator: OCA Transbot <transbot@odoo-community.org>\n"
"Language-Team: French (France) (http://www.transifex.com/oca/OCA-web-8-0/"
"language/fr_FR/)\n"
"Language: fr_FR\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: help_online
#. openerp-web
#: code:addons/help_online/static/src/js/help_online.js:93
#, python-format
msgid "Cancel"
msgstr "Annuler"
#. module: help_online
#: view:export.help.wizard:help_online.export_help_wizard_view
#: view:import.help.wizard:help_online.import_help_wizard_view
msgid "Close"
msgstr ""
#. module: help_online
#. openerp-web
#: code:addons/help_online/static/src/js/help_online.js:91
#, python-format
msgid "Confirm"
msgstr ""
#. module: help_online
#: code:addons/help_online/models/help_online.py:57
#, python-format
msgid "Create Help page for %s"
msgstr ""
#. module: help_online
#: field:export.help.wizard,create_uid:0 field:help.online,create_uid:0
#: field:import.help.wizard,create_uid:0
msgid "Created by"
msgstr ""
#. module: help_online
#: field:export.help.wizard,create_date:0 field:help.online,create_date:0
#: field:import.help.wizard,create_date:0
msgid "Created on"
msgstr ""
#. module: help_online
#: field:export.help.wizard,display_name:0 field:help.online,display_name:0
#: field:import.help.wizard,display_name:0
msgid "Display Name"
msgstr ""
#. module: help_online
#: view:export.help.wizard:help_online.export_help_wizard_view
msgid "Export"
msgstr ""
#. module: help_online
#: code:addons/help_online/models/export_help_wizard.py:267
#: model:ir.actions.act_window,name:help_online.action_export_help_wizard
#, python-format
msgid "Export Help"
msgstr ""
#. module: help_online
#: view:export.help.wizard:help_online.export_help_wizard_view
msgid "Export Help Data"
msgstr ""
#. module: help_online
#: model:ir.model,name:help_online.model_export_help_wizard
#: model:ir.ui.menu,name:help_online.menu_help_export
msgid "Export Help Online"
msgstr ""
#. module: help_online
#: field:export.help.wizard,export_filename:0
msgid "Export XML Filename"
msgstr ""
#. module: help_online
#: model:ir.ui.menu,name:help_online.menu_help
#: model:ir.ui.menu,name:help_online.menu_help_main
msgid "Help Online"
msgstr ""
#. module: help_online
#: code:addons/help_online/models/help_online.py:52
#, python-format
msgid "Help on %s"
msgstr ""
#. module: help_online
#: model:res.groups,name:help_online.help_online_group_reader
msgid "Help reader"
msgstr ""
#. module: help_online
#: model:res.groups,name:help_online.help_online_group_writer
msgid "Help writer"
msgstr ""
#. module: help_online
#: field:export.help.wizard,id:0 field:help.online,id:0
#: field:import.help.wizard,id:0
msgid "ID"
msgstr ""
#. module: help_online
#: view:import.help.wizard:help_online.import_help_wizard_view
msgid "Import"
msgstr ""
#. module: help_online
#: model:ir.actions.act_window,name:help_online.action_import_help_wizard
msgid "Import Help"
msgstr ""
#. module: help_online
#: view:import.help.wizard:help_online.import_help_wizard_view
msgid "Import Help Data"
msgstr ""
#. module: help_online
#: model:ir.ui.menu,name:help_online.menu_help_import
msgid "Import Help Online"
msgstr ""
#. module: help_online
#: field:export.help.wizard,__last_update:0 field:help.online,__last_update:0
#: field:import.help.wizard,__last_update:0
msgid "Last Modified on"
msgstr ""
#. module: help_online
#: field:export.help.wizard,write_uid:0 field:help.online,write_uid:0
#: field:import.help.wizard,write_uid:0
msgid "Last Updated by"
msgstr ""
#. module: help_online
#: field:export.help.wizard,write_date:0 field:help.online,write_date:0
#: field:import.help.wizard,write_date:0
msgid "Last Updated on"
msgstr ""
#. module: help_online
#: code:addons/help_online/models/export_help_wizard.py:260
#, python-format
msgid "No data to export !"
msgstr ""
#. module: help_online
#: code:addons/help_online/models/help_online.py:33
#, python-format
msgid "No page prefix parameter specified !"
msgstr ""
#. module: help_online
#. openerp-web
#: code:addons/help_online/static/src/js/help_online.js:98
#, python-format
msgid "Ok"
msgstr ""
#. module: help_online
#. openerp-web
#: code:addons/help_online/static/src/js/help_online.js:117
#, python-format
msgid "Page does not exist. Do you want to create?"
msgstr ""
#. module: help_online
#: field:import.help.wizard,source_file:0
msgid "Source File"
msgstr ""
#. module: help_online
#: view:export.help.wizard:help_online.export_help_wizard_view
msgid ""
"This wizard allow you to export all QWeb views\n"
" related to help online. The result will be an Odoo\n"
" data xml file."
msgstr ""
#. module: help_online
#: view:import.help.wizard:help_online.import_help_wizard_view
msgid ""
"This wizard allow you to import QWeb views\n"
" related to help online. The required file format is "
"an Odoo\n"
" data xml file."
msgstr ""
#. module: help_online
#: code:addons/help_online/models/export_help_wizard.py:297
#, python-format
msgid "Unable to write autobackup file in given directory: %s"
msgstr ""
#. module: help_online
#: view:ir.ui.view:help_online.view_view_search
msgid "Website Page"
msgstr ""
#. module: help_online
#: view:ir.ui.view:help_online.view_view_form
msgid "Website Page?"
msgstr ""
#. module: help_online
#: model:ir.actions.act_window,name:help_online.action_website_pages
#: model:ir.ui.menu,name:help_online.menu_help_pages
msgid "Website Pages"
msgstr ""
#. module: help_online
#: field:export.help.wizard,data:0
msgid "XML"
msgstr ""
#. module: help_online
#: view:export.help.wizard:help_online.export_help_wizard_view
#: view:import.help.wizard:help_online.import_help_wizard_view
msgid "or"
msgstr ""

238
help_online/i18n/gl.po

@ -0,0 +1,238 @@
# Translation of Odoo Server.
# This file contains the translation of the following modules:
# * help_online
#
# Translators:
msgid ""
msgstr ""
"Project-Id-Version: web (8.0)\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2016-11-26 01:59+0000\n"
"PO-Revision-Date: 2016-11-25 14:58+0000\n"
"Last-Translator: OCA Transbot <transbot@odoo-community.org>\n"
"Language-Team: Galician (http://www.transifex.com/oca/OCA-web-8-0/language/"
"gl/)\n"
"Language: gl\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: help_online
#. openerp-web
#: code:addons/help_online/static/src/js/help_online.js:93
#, python-format
msgid "Cancel"
msgstr "Cancelar"
#. module: help_online
#: view:export.help.wizard:help_online.export_help_wizard_view
#: view:import.help.wizard:help_online.import_help_wizard_view
msgid "Close"
msgstr ""
#. module: help_online
#. openerp-web
#: code:addons/help_online/static/src/js/help_online.js:91
#, python-format
msgid "Confirm"
msgstr ""
#. module: help_online
#: code:addons/help_online/models/help_online.py:57
#, python-format
msgid "Create Help page for %s"
msgstr ""
#. module: help_online
#: field:export.help.wizard,create_uid:0 field:help.online,create_uid:0
#: field:import.help.wizard,create_uid:0
msgid "Created by"
msgstr "Creado por"
#. module: help_online
#: field:export.help.wizard,create_date:0 field:help.online,create_date:0
#: field:import.help.wizard,create_date:0
msgid "Created on"
msgstr "Creado en"
#. module: help_online
#: field:export.help.wizard,display_name:0 field:help.online,display_name:0
#: field:import.help.wizard,display_name:0
msgid "Display Name"
msgstr ""
#. module: help_online
#: view:export.help.wizard:help_online.export_help_wizard_view
msgid "Export"
msgstr ""
#. module: help_online
#: code:addons/help_online/models/export_help_wizard.py:267
#: model:ir.actions.act_window,name:help_online.action_export_help_wizard
#, python-format
msgid "Export Help"
msgstr ""
#. module: help_online
#: view:export.help.wizard:help_online.export_help_wizard_view
msgid "Export Help Data"
msgstr ""
#. module: help_online
#: model:ir.model,name:help_online.model_export_help_wizard
#: model:ir.ui.menu,name:help_online.menu_help_export
msgid "Export Help Online"
msgstr ""
#. module: help_online
#: field:export.help.wizard,export_filename:0
msgid "Export XML Filename"
msgstr ""
#. module: help_online
#: model:ir.ui.menu,name:help_online.menu_help
#: model:ir.ui.menu,name:help_online.menu_help_main
msgid "Help Online"
msgstr ""
#. module: help_online
#: code:addons/help_online/models/help_online.py:52
#, python-format
msgid "Help on %s"
msgstr ""
#. module: help_online
#: model:res.groups,name:help_online.help_online_group_reader
msgid "Help reader"
msgstr ""
#. module: help_online
#: model:res.groups,name:help_online.help_online_group_writer
msgid "Help writer"
msgstr ""
#. module: help_online
#: field:export.help.wizard,id:0 field:help.online,id:0
#: field:import.help.wizard,id:0
msgid "ID"
msgstr "ID"
#. module: help_online
#: view:import.help.wizard:help_online.import_help_wizard_view
msgid "Import"
msgstr ""
#. module: help_online
#: model:ir.actions.act_window,name:help_online.action_import_help_wizard
msgid "Import Help"
msgstr ""
#. module: help_online
#: view:import.help.wizard:help_online.import_help_wizard_view
msgid "Import Help Data"
msgstr ""
#. module: help_online
#: model:ir.ui.menu,name:help_online.menu_help_import
msgid "Import Help Online"
msgstr ""
#. module: help_online
#: field:export.help.wizard,__last_update:0 field:help.online,__last_update:0
#: field:import.help.wizard,__last_update:0
msgid "Last Modified on"
msgstr "Última modificación"
#. module: help_online
#: field:export.help.wizard,write_uid:0 field:help.online,write_uid:0
#: field:import.help.wizard,write_uid:0
msgid "Last Updated by"
msgstr "ültima actualización por"
#. module: help_online
#: field:export.help.wizard,write_date:0 field:help.online,write_date:0
#: field:import.help.wizard,write_date:0
msgid "Last Updated on"
msgstr "Última actualización en"
#. module: help_online
#: code:addons/help_online/models/export_help_wizard.py:260
#, python-format
msgid "No data to export !"
msgstr ""
#. module: help_online
#: code:addons/help_online/models/help_online.py:33
#, python-format
msgid "No page prefix parameter specified !"
msgstr ""
#. module: help_online
#. openerp-web
#: code:addons/help_online/static/src/js/help_online.js:98
#, python-format
msgid "Ok"
msgstr ""
#. module: help_online
#. openerp-web
#: code:addons/help_online/static/src/js/help_online.js:117
#, python-format
msgid "Page does not exist. Do you want to create?"
msgstr ""
#. module: help_online
#: field:import.help.wizard,source_file:0
msgid "Source File"
msgstr ""
#. module: help_online
#: view:export.help.wizard:help_online.export_help_wizard_view
msgid ""
"This wizard allow you to export all QWeb views\n"
" related to help online. The result will be an Odoo\n"
" data xml file."
msgstr ""
#. module: help_online
#: view:import.help.wizard:help_online.import_help_wizard_view
msgid ""
"This wizard allow you to import QWeb views\n"
" related to help online. The required file format is "
"an Odoo\n"
" data xml file."
msgstr ""
#. module: help_online
#: code:addons/help_online/models/export_help_wizard.py:297
#, python-format
msgid "Unable to write autobackup file in given directory: %s"
msgstr ""
#. module: help_online
#: view:ir.ui.view:help_online.view_view_search
msgid "Website Page"
msgstr ""
#. module: help_online
#: view:ir.ui.view:help_online.view_view_form
msgid "Website Page?"
msgstr ""
#. module: help_online
#: model:ir.actions.act_window,name:help_online.action_website_pages
#: model:ir.ui.menu,name:help_online.menu_help_pages
msgid "Website Pages"
msgstr ""
#. module: help_online
#: field:export.help.wizard,data:0
msgid "XML"
msgstr ""
#. module: help_online
#: view:export.help.wizard:help_online.export_help_wizard_view
#: view:import.help.wizard:help_online.import_help_wizard_view
msgid "or"
msgstr "ou"

238
help_online/i18n/gl_ES.po

@ -0,0 +1,238 @@
# Translation of Odoo Server.
# This file contains the translation of the following modules:
# * help_online
#
# Translators:
msgid ""
msgstr ""
"Project-Id-Version: web (8.0)\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2016-11-26 01:59+0000\n"
"PO-Revision-Date: 2016-11-22 16:25+0000\n"
"Last-Translator: OCA Transbot <transbot@odoo-community.org>\n"
"Language-Team: Galician (Spain) (http://www.transifex.com/oca/OCA-web-8-0/"
"language/gl_ES/)\n"
"Language: gl_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: help_online
#. openerp-web
#: code:addons/help_online/static/src/js/help_online.js:93
#, python-format
msgid "Cancel"
msgstr ""
#. module: help_online
#: view:export.help.wizard:help_online.export_help_wizard_view
#: view:import.help.wizard:help_online.import_help_wizard_view
msgid "Close"
msgstr ""
#. module: help_online
#. openerp-web
#: code:addons/help_online/static/src/js/help_online.js:91
#, python-format
msgid "Confirm"
msgstr ""
#. module: help_online
#: code:addons/help_online/models/help_online.py:57
#, python-format
msgid "Create Help page for %s"
msgstr ""
#. module: help_online
#: field:export.help.wizard,create_uid:0 field:help.online,create_uid:0
#: field:import.help.wizard,create_uid:0
msgid "Created by"
msgstr ""
#. module: help_online
#: field:export.help.wizard,create_date:0 field:help.online,create_date:0
#: field:import.help.wizard,create_date:0
msgid "Created on"
msgstr ""
#. module: help_online
#: field:export.help.wizard,display_name:0 field:help.online,display_name:0
#: field:import.help.wizard,display_name:0
msgid "Display Name"
msgstr ""
#. module: help_online
#: view:export.help.wizard:help_online.export_help_wizard_view
msgid "Export"
msgstr ""
#. module: help_online
#: code:addons/help_online/models/export_help_wizard.py:267
#: model:ir.actions.act_window,name:help_online.action_export_help_wizard
#, python-format
msgid "Export Help"
msgstr ""
#. module: help_online
#: view:export.help.wizard:help_online.export_help_wizard_view
msgid "Export Help Data"
msgstr ""
#. module: help_online
#: model:ir.model,name:help_online.model_export_help_wizard
#: model:ir.ui.menu,name:help_online.menu_help_export
msgid "Export Help Online"
msgstr ""
#. module: help_online
#: field:export.help.wizard,export_filename:0
msgid "Export XML Filename"
msgstr ""
#. module: help_online
#: model:ir.ui.menu,name:help_online.menu_help
#: model:ir.ui.menu,name:help_online.menu_help_main
msgid "Help Online"
msgstr ""
#. module: help_online
#: code:addons/help_online/models/help_online.py:52
#, python-format
msgid "Help on %s"
msgstr ""
#. module: help_online
#: model:res.groups,name:help_online.help_online_group_reader
msgid "Help reader"
msgstr ""
#. module: help_online
#: model:res.groups,name:help_online.help_online_group_writer
msgid "Help writer"
msgstr ""
#. module: help_online
#: field:export.help.wizard,id:0 field:help.online,id:0
#: field:import.help.wizard,id:0
msgid "ID"
msgstr "ID"
#. module: help_online
#: view:import.help.wizard:help_online.import_help_wizard_view
msgid "Import"
msgstr ""
#. module: help_online
#: model:ir.actions.act_window,name:help_online.action_import_help_wizard
msgid "Import Help"
msgstr ""
#. module: help_online
#: view:import.help.wizard:help_online.import_help_wizard_view
msgid "Import Help Data"
msgstr ""
#. module: help_online
#: model:ir.ui.menu,name:help_online.menu_help_import
msgid "Import Help Online"
msgstr ""
#. module: help_online
#: field:export.help.wizard,__last_update:0 field:help.online,__last_update:0
#: field:import.help.wizard,__last_update:0
msgid "Last Modified on"
msgstr ""
#. module: help_online
#: field:export.help.wizard,write_uid:0 field:help.online,write_uid:0
#: field:import.help.wizard,write_uid:0
msgid "Last Updated by"
msgstr ""
#. module: help_online
#: field:export.help.wizard,write_date:0 field:help.online,write_date:0
#: field:import.help.wizard,write_date:0
msgid "Last Updated on"
msgstr ""
#. module: help_online
#: code:addons/help_online/models/export_help_wizard.py:260
#, python-format
msgid "No data to export !"
msgstr ""
#. module: help_online
#: code:addons/help_online/models/help_online.py:33
#, python-format
msgid "No page prefix parameter specified !"
msgstr ""
#. module: help_online
#. openerp-web
#: code:addons/help_online/static/src/js/help_online.js:98
#, python-format
msgid "Ok"
msgstr ""
#. module: help_online
#. openerp-web
#: code:addons/help_online/static/src/js/help_online.js:117
#, python-format
msgid "Page does not exist. Do you want to create?"
msgstr ""
#. module: help_online
#: field:import.help.wizard,source_file:0
msgid "Source File"
msgstr ""
#. module: help_online
#: view:export.help.wizard:help_online.export_help_wizard_view
msgid ""
"This wizard allow you to export all QWeb views\n"
" related to help online. The result will be an Odoo\n"
" data xml file."
msgstr ""
#. module: help_online
#: view:import.help.wizard:help_online.import_help_wizard_view
msgid ""
"This wizard allow you to import QWeb views\n"
" related to help online. The required file format is "
"an Odoo\n"
" data xml file."
msgstr ""
#. module: help_online
#: code:addons/help_online/models/export_help_wizard.py:297
#, python-format
msgid "Unable to write autobackup file in given directory: %s"
msgstr ""
#. module: help_online
#: view:ir.ui.view:help_online.view_view_search
msgid "Website Page"
msgstr ""
#. module: help_online
#: view:ir.ui.view:help_online.view_view_form
msgid "Website Page?"
msgstr ""
#. module: help_online
#: model:ir.actions.act_window,name:help_online.action_website_pages
#: model:ir.ui.menu,name:help_online.menu_help_pages
msgid "Website Pages"
msgstr ""
#. module: help_online
#: field:export.help.wizard,data:0
msgid "XML"
msgstr ""
#. module: help_online
#: view:export.help.wizard:help_online.export_help_wizard_view
#: view:import.help.wizard:help_online.import_help_wizard_view
msgid "or"
msgstr ""

238
help_online/i18n/he.po

@ -0,0 +1,238 @@
# Translation of Odoo Server.
# This file contains the translation of the following modules:
# * help_online
#
# Translators:
msgid ""
msgstr ""
"Project-Id-Version: web (8.0)\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2016-12-29 03:45+0000\n"
"PO-Revision-Date: 2016-12-27 08:25+0000\n"
"Last-Translator: OCA Transbot <transbot@odoo-community.org>\n"
"Language-Team: Hebrew (http://www.transifex.com/oca/OCA-web-8-0/language/"
"he/)\n"
"Language: he\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: help_online
#. openerp-web
#: code:addons/help_online/static/src/js/help_online.js:93
#, python-format
msgid "Cancel"
msgstr "בטל"
#. module: help_online
#: view:export.help.wizard:help_online.export_help_wizard_view
#: view:import.help.wizard:help_online.import_help_wizard_view
msgid "Close"
msgstr ""
#. module: help_online
#. openerp-web
#: code:addons/help_online/static/src/js/help_online.js:91
#, python-format
msgid "Confirm"
msgstr ""
#. module: help_online
#: code:addons/help_online/models/help_online.py:57
#, python-format
msgid "Create Help page for %s"
msgstr ""
#. module: help_online
#: field:export.help.wizard,create_uid:0 field:help.online,create_uid:0
#: field:import.help.wizard,create_uid:0
msgid "Created by"
msgstr "נוצר על ידי"
#. module: help_online
#: field:export.help.wizard,create_date:0 field:help.online,create_date:0
#: field:import.help.wizard,create_date:0
msgid "Created on"
msgstr "נוצר ב-"
#. module: help_online
#: field:export.help.wizard,display_name:0 field:help.online,display_name:0
#: field:import.help.wizard,display_name:0
msgid "Display Name"
msgstr "השם המוצג"
#. module: help_online
#: view:export.help.wizard:help_online.export_help_wizard_view
msgid "Export"
msgstr ""
#. module: help_online
#: code:addons/help_online/models/export_help_wizard.py:267
#: model:ir.actions.act_window,name:help_online.action_export_help_wizard
#, python-format
msgid "Export Help"
msgstr ""
#. module: help_online
#: view:export.help.wizard:help_online.export_help_wizard_view
msgid "Export Help Data"
msgstr ""
#. module: help_online
#: model:ir.model,name:help_online.model_export_help_wizard
#: model:ir.ui.menu,name:help_online.menu_help_export
msgid "Export Help Online"
msgstr ""
#. module: help_online
#: field:export.help.wizard,export_filename:0
msgid "Export XML Filename"
msgstr ""
#. module: help_online
#: model:ir.ui.menu,name:help_online.menu_help
#: model:ir.ui.menu,name:help_online.menu_help_main
msgid "Help Online"
msgstr ""
#. module: help_online
#: code:addons/help_online/models/help_online.py:52
#, python-format
msgid "Help on %s"
msgstr ""
#. module: help_online
#: model:res.groups,name:help_online.help_online_group_reader
msgid "Help reader"
msgstr ""
#. module: help_online
#: model:res.groups,name:help_online.help_online_group_writer
msgid "Help writer"
msgstr ""
#. module: help_online
#: field:export.help.wizard,id:0 field:help.online,id:0
#: field:import.help.wizard,id:0
msgid "ID"
msgstr "מזהה"
#. module: help_online
#: view:import.help.wizard:help_online.import_help_wizard_view
msgid "Import"
msgstr ""
#. module: help_online
#: model:ir.actions.act_window,name:help_online.action_import_help_wizard
msgid "Import Help"
msgstr ""
#. module: help_online
#: view:import.help.wizard:help_online.import_help_wizard_view
msgid "Import Help Data"
msgstr ""
#. module: help_online
#: model:ir.ui.menu,name:help_online.menu_help_import
msgid "Import Help Online"
msgstr ""
#. module: help_online
#: field:export.help.wizard,__last_update:0 field:help.online,__last_update:0
#: field:import.help.wizard,__last_update:0
msgid "Last Modified on"
msgstr "תאריך שינוי אחרון"
#. module: help_online
#: field:export.help.wizard,write_uid:0 field:help.online,write_uid:0
#: field:import.help.wizard,write_uid:0
msgid "Last Updated by"
msgstr "עודכן לאחרונה על ידי"
#. module: help_online
#: field:export.help.wizard,write_date:0 field:help.online,write_date:0
#: field:import.help.wizard,write_date:0
msgid "Last Updated on"
msgstr "עודכן לאחרונה על"
#. module: help_online
#: code:addons/help_online/models/export_help_wizard.py:260
#, python-format
msgid "No data to export !"
msgstr ""
#. module: help_online
#: code:addons/help_online/models/help_online.py:33
#, python-format
msgid "No page prefix parameter specified !"
msgstr ""
#. module: help_online
#. openerp-web
#: code:addons/help_online/static/src/js/help_online.js:98
#, python-format
msgid "Ok"
msgstr ""
#. module: help_online
#. openerp-web
#: code:addons/help_online/static/src/js/help_online.js:117
#, python-format
msgid "Page does not exist. Do you want to create?"
msgstr ""
#. module: help_online
#: field:import.help.wizard,source_file:0
msgid "Source File"
msgstr ""
#. module: help_online
#: view:export.help.wizard:help_online.export_help_wizard_view
msgid ""
"This wizard allow you to export all QWeb views\n"
" related to help online. The result will be an Odoo\n"
" data xml file."
msgstr ""
#. module: help_online
#: view:import.help.wizard:help_online.import_help_wizard_view
msgid ""
"This wizard allow you to import QWeb views\n"
" related to help online. The required file format is "
"an Odoo\n"
" data xml file."
msgstr ""
#. module: help_online
#: code:addons/help_online/models/export_help_wizard.py:297
#, python-format
msgid "Unable to write autobackup file in given directory: %s"
msgstr ""
#. module: help_online
#: view:ir.ui.view:help_online.view_view_search
msgid "Website Page"
msgstr ""
#. module: help_online
#: view:ir.ui.view:help_online.view_view_form
msgid "Website Page?"
msgstr ""
#. module: help_online
#: model:ir.actions.act_window,name:help_online.action_website_pages
#: model:ir.ui.menu,name:help_online.menu_help_pages
msgid "Website Pages"
msgstr ""
#. module: help_online
#: field:export.help.wizard,data:0
msgid "XML"
msgstr ""
#. module: help_online
#: view:export.help.wizard:help_online.export_help_wizard_view
#: view:import.help.wizard:help_online.import_help_wizard_view
msgid "or"
msgstr "או"

238
help_online/i18n/help_online.pot

@ -0,0 +1,238 @@
# Translation of Odoo Server.
# This file contains the translation of the following modules:
# * help_online
#
msgid ""
msgstr ""
"Project-Id-Version: Odoo Server 8.0\n"
"Report-Msgid-Bugs-To: \n"
"Last-Translator: <>\n"
"Language-Team: \n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: \n"
"Plural-Forms: \n"
#. module: help_online
#. openerp-web
#: code:addons/help_online/static/src/js/help_online.js:93
#, python-format
msgid "Cancel"
msgstr ""
#. module: help_online
#: view:export.help.wizard:help_online.export_help_wizard_view
#: view:import.help.wizard:help_online.import_help_wizard_view
msgid "Close"
msgstr ""
#. module: help_online
#. openerp-web
#: code:addons/help_online/static/src/js/help_online.js:91
#, python-format
msgid "Confirm"
msgstr ""
#. module: help_online
#: code:addons/help_online/models/help_online.py:57
#, python-format
msgid "Create Help page for %s"
msgstr ""
#. module: help_online
#: field:export.help.wizard,create_uid:0
#: field:help.online,create_uid:0
#: field:import.help.wizard,create_uid:0
msgid "Created by"
msgstr ""
#. module: help_online
#: field:export.help.wizard,create_date:0
#: field:help.online,create_date:0
#: field:import.help.wizard,create_date:0
msgid "Created on"
msgstr ""
#. module: help_online
#: field:export.help.wizard,display_name:0
#: field:help.online,display_name:0
#: field:import.help.wizard,display_name:0
msgid "Display Name"
msgstr ""
#. module: help_online
#: view:export.help.wizard:help_online.export_help_wizard_view
msgid "Export"
msgstr ""
#. module: help_online
#: code:addons/help_online/models/export_help_wizard.py:267
#: model:ir.actions.act_window,name:help_online.action_export_help_wizard
#, python-format
msgid "Export Help"
msgstr ""
#. module: help_online
#: view:export.help.wizard:help_online.export_help_wizard_view
msgid "Export Help Data"
msgstr ""
#. module: help_online
#: model:ir.model,name:help_online.model_export_help_wizard
#: model:ir.ui.menu,name:help_online.menu_help_export
msgid "Export Help Online"
msgstr ""
#. module: help_online
#: field:export.help.wizard,export_filename:0
msgid "Export XML Filename"
msgstr ""
#. module: help_online
#: model:ir.ui.menu,name:help_online.menu_help
#: model:ir.ui.menu,name:help_online.menu_help_main
msgid "Help Online"
msgstr ""
#. module: help_online
#: code:addons/help_online/models/help_online.py:52
#, python-format
msgid "Help on %s"
msgstr ""
#. module: help_online
#: model:res.groups,name:help_online.help_online_group_reader
msgid "Help reader"
msgstr ""
#. module: help_online
#: model:res.groups,name:help_online.help_online_group_writer
msgid "Help writer"
msgstr ""
#. module: help_online
#: field:export.help.wizard,id:0
#: field:help.online,id:0
#: field:import.help.wizard,id:0
msgid "ID"
msgstr ""
#. module: help_online
#: view:import.help.wizard:help_online.import_help_wizard_view
msgid "Import"
msgstr ""
#. module: help_online
#: model:ir.actions.act_window,name:help_online.action_import_help_wizard
msgid "Import Help"
msgstr ""
#. module: help_online
#: view:import.help.wizard:help_online.import_help_wizard_view
msgid "Import Help Data"
msgstr ""
#. module: help_online
#: model:ir.ui.menu,name:help_online.menu_help_import
msgid "Import Help Online"
msgstr ""
#. module: help_online
#: field:export.help.wizard,__last_update:0
#: field:help.online,__last_update:0
#: field:import.help.wizard,__last_update:0
msgid "Last Modified on"
msgstr ""
#. module: help_online
#: field:export.help.wizard,write_uid:0
#: field:help.online,write_uid:0
#: field:import.help.wizard,write_uid:0
msgid "Last Updated by"
msgstr ""
#. module: help_online
#: field:export.help.wizard,write_date:0
#: field:help.online,write_date:0
#: field:import.help.wizard,write_date:0
msgid "Last Updated on"
msgstr ""
#. module: help_online
#: code:addons/help_online/models/export_help_wizard.py:260
#, python-format
msgid "No data to export !"
msgstr ""
#. module: help_online
#: code:addons/help_online/models/help_online.py:33
#, python-format
msgid "No page prefix parameter specified !"
msgstr ""
#. module: help_online
#. openerp-web
#: code:addons/help_online/static/src/js/help_online.js:98
#, python-format
msgid "Ok"
msgstr ""
#. module: help_online
#. openerp-web
#: code:addons/help_online/static/src/js/help_online.js:117
#, python-format
msgid "Page does not exist. Do you want to create?"
msgstr ""
#. module: help_online
#: field:import.help.wizard,source_file:0
msgid "Source File"
msgstr ""
#. module: help_online
#: view:export.help.wizard:help_online.export_help_wizard_view
msgid "This wizard allow you to export all QWeb views\n"
" related to help online. The result will be an Odoo\n"
" data xml file."
msgstr ""
#. module: help_online
#: view:import.help.wizard:help_online.import_help_wizard_view
msgid "This wizard allow you to import QWeb views\n"
" related to help online. The required file format is an Odoo\n"
" data xml file."
msgstr ""
#. module: help_online
#: code:addons/help_online/models/export_help_wizard.py:297
#, python-format
msgid "Unable to write autobackup file in given directory: %s"
msgstr ""
#. module: help_online
#: view:ir.ui.view:help_online.view_view_search
msgid "Website Page"
msgstr ""
#. module: help_online
#: view:ir.ui.view:help_online.view_view_form
msgid "Website Page?"
msgstr ""
#. module: help_online
#: model:ir.actions.act_window,name:help_online.action_website_pages
#: model:ir.ui.menu,name:help_online.menu_help_pages
msgid "Website Pages"
msgstr ""
#. module: help_online
#: field:export.help.wizard,data:0
msgid "XML"
msgstr ""
#. module: help_online
#: view:export.help.wizard:help_online.export_help_wizard_view
#: view:import.help.wizard:help_online.import_help_wizard_view
msgid "or"
msgstr ""

238
help_online/i18n/hi.po

@ -0,0 +1,238 @@
# Translation of Odoo Server.
# This file contains the translation of the following modules:
# * help_online
#
# Translators:
msgid ""
msgstr ""
"Project-Id-Version: web (8.0)\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2016-12-29 03:45+0000\n"
"PO-Revision-Date: 2016-12-27 08:24+0000\n"
"Last-Translator: OCA Transbot <transbot@odoo-community.org>\n"
"Language-Team: Hindi (http://www.transifex.com/oca/OCA-web-8-0/language/"
"hi/)\n"
"Language: hi\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: help_online
#. openerp-web
#: code:addons/help_online/static/src/js/help_online.js:93
#, python-format
msgid "Cancel"
msgstr "रद्द"
#. module: help_online
#: view:export.help.wizard:help_online.export_help_wizard_view
#: view:import.help.wizard:help_online.import_help_wizard_view
msgid "Close"
msgstr ""
#. module: help_online
#. openerp-web
#: code:addons/help_online/static/src/js/help_online.js:91
#, python-format
msgid "Confirm"
msgstr ""
#. module: help_online
#: code:addons/help_online/models/help_online.py:57
#, python-format
msgid "Create Help page for %s"
msgstr ""
#. module: help_online
#: field:export.help.wizard,create_uid:0 field:help.online,create_uid:0
#: field:import.help.wizard,create_uid:0
msgid "Created by"
msgstr ""
#. module: help_online
#: field:export.help.wizard,create_date:0 field:help.online,create_date:0
#: field:import.help.wizard,create_date:0
msgid "Created on"
msgstr ""
#. module: help_online
#: field:export.help.wizard,display_name:0 field:help.online,display_name:0
#: field:import.help.wizard,display_name:0
msgid "Display Name"
msgstr ""
#. module: help_online
#: view:export.help.wizard:help_online.export_help_wizard_view
msgid "Export"
msgstr ""
#. module: help_online
#: code:addons/help_online/models/export_help_wizard.py:267
#: model:ir.actions.act_window,name:help_online.action_export_help_wizard
#, python-format
msgid "Export Help"
msgstr ""
#. module: help_online
#: view:export.help.wizard:help_online.export_help_wizard_view
msgid "Export Help Data"
msgstr ""
#. module: help_online
#: model:ir.model,name:help_online.model_export_help_wizard
#: model:ir.ui.menu,name:help_online.menu_help_export
msgid "Export Help Online"
msgstr ""
#. module: help_online
#: field:export.help.wizard,export_filename:0
msgid "Export XML Filename"
msgstr ""
#. module: help_online
#: model:ir.ui.menu,name:help_online.menu_help
#: model:ir.ui.menu,name:help_online.menu_help_main
msgid "Help Online"
msgstr ""
#. module: help_online
#: code:addons/help_online/models/help_online.py:52
#, python-format
msgid "Help on %s"
msgstr ""
#. module: help_online
#: model:res.groups,name:help_online.help_online_group_reader
msgid "Help reader"
msgstr ""
#. module: help_online
#: model:res.groups,name:help_online.help_online_group_writer
msgid "Help writer"
msgstr ""
#. module: help_online
#: field:export.help.wizard,id:0 field:help.online,id:0
#: field:import.help.wizard,id:0
msgid "ID"
msgstr ""
#. module: help_online
#: view:import.help.wizard:help_online.import_help_wizard_view
msgid "Import"
msgstr ""
#. module: help_online
#: model:ir.actions.act_window,name:help_online.action_import_help_wizard
msgid "Import Help"
msgstr ""
#. module: help_online
#: view:import.help.wizard:help_online.import_help_wizard_view
msgid "Import Help Data"
msgstr ""
#. module: help_online
#: model:ir.ui.menu,name:help_online.menu_help_import
msgid "Import Help Online"
msgstr ""
#. module: help_online
#: field:export.help.wizard,__last_update:0 field:help.online,__last_update:0
#: field:import.help.wizard,__last_update:0
msgid "Last Modified on"
msgstr ""
#. module: help_online
#: field:export.help.wizard,write_uid:0 field:help.online,write_uid:0
#: field:import.help.wizard,write_uid:0
msgid "Last Updated by"
msgstr ""
#. module: help_online
#: field:export.help.wizard,write_date:0 field:help.online,write_date:0
#: field:import.help.wizard,write_date:0
msgid "Last Updated on"
msgstr ""
#. module: help_online
#: code:addons/help_online/models/export_help_wizard.py:260
#, python-format
msgid "No data to export !"
msgstr ""
#. module: help_online
#: code:addons/help_online/models/help_online.py:33
#, python-format
msgid "No page prefix parameter specified !"
msgstr ""
#. module: help_online
#. openerp-web
#: code:addons/help_online/static/src/js/help_online.js:98
#, python-format
msgid "Ok"
msgstr ""
#. module: help_online
#. openerp-web
#: code:addons/help_online/static/src/js/help_online.js:117
#, python-format
msgid "Page does not exist. Do you want to create?"
msgstr ""
#. module: help_online
#: field:import.help.wizard,source_file:0
msgid "Source File"
msgstr ""
#. module: help_online
#: view:export.help.wizard:help_online.export_help_wizard_view
msgid ""
"This wizard allow you to export all QWeb views\n"
" related to help online. The result will be an Odoo\n"
" data xml file."
msgstr ""
#. module: help_online
#: view:import.help.wizard:help_online.import_help_wizard_view
msgid ""
"This wizard allow you to import QWeb views\n"
" related to help online. The required file format is "
"an Odoo\n"
" data xml file."
msgstr ""
#. module: help_online
#: code:addons/help_online/models/export_help_wizard.py:297
#, python-format
msgid "Unable to write autobackup file in given directory: %s"
msgstr ""
#. module: help_online
#: view:ir.ui.view:help_online.view_view_search
msgid "Website Page"
msgstr ""
#. module: help_online
#: view:ir.ui.view:help_online.view_view_form
msgid "Website Page?"
msgstr ""
#. module: help_online
#: model:ir.actions.act_window,name:help_online.action_website_pages
#: model:ir.ui.menu,name:help_online.menu_help_pages
msgid "Website Pages"
msgstr ""
#. module: help_online
#: field:export.help.wizard,data:0
msgid "XML"
msgstr ""
#. module: help_online
#: view:export.help.wizard:help_online.export_help_wizard_view
#: view:import.help.wizard:help_online.import_help_wizard_view
msgid "or"
msgstr ""

240
help_online/i18n/hr.po

@ -0,0 +1,240 @@
# Translation of Odoo Server.
# This file contains the translation of the following modules:
# * help_online
#
# Translators:
# Bole <bole@dajmi5.com>, 2016
msgid ""
msgstr ""
"Project-Id-Version: web (8.0)\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2016-11-26 01:59+0000\n"
"PO-Revision-Date: 2016-11-25 14:56+0000\n"
"Last-Translator: Bole <bole@dajmi5.com>\n"
"Language-Team: Croatian (http://www.transifex.com/oca/OCA-web-8-0/language/"
"hr/)\n"
"Language: hr\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: \n"
"Plural-Forms: nplurals=3; plural=n%10==1 && n%100!=11 ? 0 : n%10>=2 && n"
"%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2;\n"
#. module: help_online
#. openerp-web
#: code:addons/help_online/static/src/js/help_online.js:93
#, python-format
msgid "Cancel"
msgstr "Otkaži"
#. module: help_online
#: view:export.help.wizard:help_online.export_help_wizard_view
#: view:import.help.wizard:help_online.import_help_wizard_view
msgid "Close"
msgstr "Zatvori"
#. module: help_online
#. openerp-web
#: code:addons/help_online/static/src/js/help_online.js:91
#, python-format
msgid "Confirm"
msgstr "Potvrdi"
#. module: help_online
#: code:addons/help_online/models/help_online.py:57
#, python-format
msgid "Create Help page for %s"
msgstr "Kreiraj stranice pomoći za %s"
#. module: help_online
#: field:export.help.wizard,create_uid:0 field:help.online,create_uid:0
#: field:import.help.wizard,create_uid:0
msgid "Created by"
msgstr "Kreirao"
#. module: help_online
#: field:export.help.wizard,create_date:0 field:help.online,create_date:0
#: field:import.help.wizard,create_date:0
msgid "Created on"
msgstr "Kreirano"
#. module: help_online
#: field:export.help.wizard,display_name:0 field:help.online,display_name:0
#: field:import.help.wizard,display_name:0
msgid "Display Name"
msgstr "Naziv "
#. module: help_online
#: view:export.help.wizard:help_online.export_help_wizard_view
msgid "Export"
msgstr "Izvoz"
#. module: help_online
#: code:addons/help_online/models/export_help_wizard.py:267
#: model:ir.actions.act_window,name:help_online.action_export_help_wizard
#, python-format
msgid "Export Help"
msgstr ""
#. module: help_online
#: view:export.help.wizard:help_online.export_help_wizard_view
msgid "Export Help Data"
msgstr ""
#. module: help_online
#: model:ir.model,name:help_online.model_export_help_wizard
#: model:ir.ui.menu,name:help_online.menu_help_export
msgid "Export Help Online"
msgstr ""
#. module: help_online
#: field:export.help.wizard,export_filename:0
msgid "Export XML Filename"
msgstr ""
#. module: help_online
#: model:ir.ui.menu,name:help_online.menu_help
#: model:ir.ui.menu,name:help_online.menu_help_main
msgid "Help Online"
msgstr ""
#. module: help_online
#: code:addons/help_online/models/help_online.py:52
#, python-format
msgid "Help on %s"
msgstr ""
#. module: help_online
#: model:res.groups,name:help_online.help_online_group_reader
msgid "Help reader"
msgstr ""
#. module: help_online
#: model:res.groups,name:help_online.help_online_group_writer
msgid "Help writer"
msgstr ""
#. module: help_online
#: field:export.help.wizard,id:0 field:help.online,id:0
#: field:import.help.wizard,id:0
msgid "ID"
msgstr "ID"
#. module: help_online
#: view:import.help.wizard:help_online.import_help_wizard_view
msgid "Import"
msgstr "Uvoz"
#. module: help_online
#: model:ir.actions.act_window,name:help_online.action_import_help_wizard
msgid "Import Help"
msgstr ""
#. module: help_online
#: view:import.help.wizard:help_online.import_help_wizard_view
msgid "Import Help Data"
msgstr ""
#. module: help_online
#: model:ir.ui.menu,name:help_online.menu_help_import
msgid "Import Help Online"
msgstr ""
#. module: help_online
#: field:export.help.wizard,__last_update:0 field:help.online,__last_update:0
#: field:import.help.wizard,__last_update:0
msgid "Last Modified on"
msgstr "Zadnje modificirano"
#. module: help_online
#: field:export.help.wizard,write_uid:0 field:help.online,write_uid:0
#: field:import.help.wizard,write_uid:0
msgid "Last Updated by"
msgstr "Zadnji ažurirao"
#. module: help_online
#: field:export.help.wizard,write_date:0 field:help.online,write_date:0
#: field:import.help.wizard,write_date:0
msgid "Last Updated on"
msgstr "Zadnje ažuriranje"
#. module: help_online
#: code:addons/help_online/models/export_help_wizard.py:260
#, python-format
msgid "No data to export !"
msgstr "Nema podataka za izvoz!"
#. module: help_online
#: code:addons/help_online/models/help_online.py:33
#, python-format
msgid "No page prefix parameter specified !"
msgstr ""
#. module: help_online
#. openerp-web
#: code:addons/help_online/static/src/js/help_online.js:98
#, python-format
msgid "Ok"
msgstr "U redu"
#. module: help_online
#. openerp-web
#: code:addons/help_online/static/src/js/help_online.js:117
#, python-format
msgid "Page does not exist. Do you want to create?"
msgstr "Stranica ne postoji. Želite ju napraviti?"
#. module: help_online
#: field:import.help.wizard,source_file:0
msgid "Source File"
msgstr ""
#. module: help_online
#: view:export.help.wizard:help_online.export_help_wizard_view
msgid ""
"This wizard allow you to export all QWeb views\n"
" related to help online. The result will be an Odoo\n"
" data xml file."
msgstr ""
#. module: help_online
#: view:import.help.wizard:help_online.import_help_wizard_view
msgid ""
"This wizard allow you to import QWeb views\n"
" related to help online. The required file format is "
"an Odoo\n"
" data xml file."
msgstr ""
#. module: help_online
#: code:addons/help_online/models/export_help_wizard.py:297
#, python-format
msgid "Unable to write autobackup file in given directory: %s"
msgstr ""
#. module: help_online
#: view:ir.ui.view:help_online.view_view_search
msgid "Website Page"
msgstr ""
#. module: help_online
#: view:ir.ui.view:help_online.view_view_form
msgid "Website Page?"
msgstr ""
#. module: help_online
#: model:ir.actions.act_window,name:help_online.action_website_pages
#: model:ir.ui.menu,name:help_online.menu_help_pages
msgid "Website Pages"
msgstr ""
#. module: help_online
#: field:export.help.wizard,data:0
msgid "XML"
msgstr "XML"
#. module: help_online
#: view:export.help.wizard:help_online.export_help_wizard_view
#: view:import.help.wizard:help_online.import_help_wizard_view
msgid "or"
msgstr "ili"

239
help_online/i18n/hr_HR.po

@ -0,0 +1,239 @@
# Translation of Odoo Server.
# This file contains the translation of the following modules:
# * help_online
#
# Translators:
msgid ""
msgstr ""
"Project-Id-Version: web (8.0)\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2016-12-29 03:45+0000\n"
"PO-Revision-Date: 2016-12-27 08:23+0000\n"
"Last-Translator: OCA Transbot <transbot@odoo-community.org>\n"
"Language-Team: Croatian (Croatia) (http://www.transifex.com/oca/OCA-web-8-0/"
"language/hr_HR/)\n"
"Language: hr_HR\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: \n"
"Plural-Forms: nplurals=3; plural=n%10==1 && n%100!=11 ? 0 : n%10>=2 && n"
"%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2;\n"
#. module: help_online
#. openerp-web
#: code:addons/help_online/static/src/js/help_online.js:93
#, python-format
msgid "Cancel"
msgstr "Otkaži"
#. module: help_online
#: view:export.help.wizard:help_online.export_help_wizard_view
#: view:import.help.wizard:help_online.import_help_wizard_view
msgid "Close"
msgstr ""
#. module: help_online
#. openerp-web
#: code:addons/help_online/static/src/js/help_online.js:91
#, python-format
msgid "Confirm"
msgstr ""
#. module: help_online
#: code:addons/help_online/models/help_online.py:57
#, python-format
msgid "Create Help page for %s"
msgstr ""
#. module: help_online
#: field:export.help.wizard,create_uid:0 field:help.online,create_uid:0
#: field:import.help.wizard,create_uid:0
msgid "Created by"
msgstr "Kreirao"
#. module: help_online
#: field:export.help.wizard,create_date:0 field:help.online,create_date:0
#: field:import.help.wizard,create_date:0
msgid "Created on"
msgstr "Kreirano"
#. module: help_online
#: field:export.help.wizard,display_name:0 field:help.online,display_name:0
#: field:import.help.wizard,display_name:0
msgid "Display Name"
msgstr "Naziv"
#. module: help_online
#: view:export.help.wizard:help_online.export_help_wizard_view
msgid "Export"
msgstr ""
#. module: help_online
#: code:addons/help_online/models/export_help_wizard.py:267
#: model:ir.actions.act_window,name:help_online.action_export_help_wizard
#, python-format
msgid "Export Help"
msgstr ""
#. module: help_online
#: view:export.help.wizard:help_online.export_help_wizard_view
msgid "Export Help Data"
msgstr ""
#. module: help_online
#: model:ir.model,name:help_online.model_export_help_wizard
#: model:ir.ui.menu,name:help_online.menu_help_export
msgid "Export Help Online"
msgstr ""
#. module: help_online
#: field:export.help.wizard,export_filename:0
msgid "Export XML Filename"
msgstr ""
#. module: help_online
#: model:ir.ui.menu,name:help_online.menu_help
#: model:ir.ui.menu,name:help_online.menu_help_main
msgid "Help Online"
msgstr ""
#. module: help_online
#: code:addons/help_online/models/help_online.py:52
#, python-format
msgid "Help on %s"
msgstr ""
#. module: help_online
#: model:res.groups,name:help_online.help_online_group_reader
msgid "Help reader"
msgstr ""
#. module: help_online
#: model:res.groups,name:help_online.help_online_group_writer
msgid "Help writer"
msgstr ""
#. module: help_online
#: field:export.help.wizard,id:0 field:help.online,id:0
#: field:import.help.wizard,id:0
msgid "ID"
msgstr "ID"
#. module: help_online
#: view:import.help.wizard:help_online.import_help_wizard_view
msgid "Import"
msgstr ""
#. module: help_online
#: model:ir.actions.act_window,name:help_online.action_import_help_wizard
msgid "Import Help"
msgstr ""
#. module: help_online
#: view:import.help.wizard:help_online.import_help_wizard_view
msgid "Import Help Data"
msgstr ""
#. module: help_online
#: model:ir.ui.menu,name:help_online.menu_help_import
msgid "Import Help Online"
msgstr ""
#. module: help_online
#: field:export.help.wizard,__last_update:0 field:help.online,__last_update:0
#: field:import.help.wizard,__last_update:0
msgid "Last Modified on"
msgstr "Zadnje modificirano"
#. module: help_online
#: field:export.help.wizard,write_uid:0 field:help.online,write_uid:0
#: field:import.help.wizard,write_uid:0
msgid "Last Updated by"
msgstr "Zadnji ažurirao"
#. module: help_online
#: field:export.help.wizard,write_date:0 field:help.online,write_date:0
#: field:import.help.wizard,write_date:0
msgid "Last Updated on"
msgstr "Zadnje ažurirano"
#. module: help_online
#: code:addons/help_online/models/export_help_wizard.py:260
#, python-format
msgid "No data to export !"
msgstr ""
#. module: help_online
#: code:addons/help_online/models/help_online.py:33
#, python-format
msgid "No page prefix parameter specified !"
msgstr ""
#. module: help_online
#. openerp-web
#: code:addons/help_online/static/src/js/help_online.js:98
#, python-format
msgid "Ok"
msgstr ""
#. module: help_online
#. openerp-web
#: code:addons/help_online/static/src/js/help_online.js:117
#, python-format
msgid "Page does not exist. Do you want to create?"
msgstr ""
#. module: help_online
#: field:import.help.wizard,source_file:0
msgid "Source File"
msgstr ""
#. module: help_online
#: view:export.help.wizard:help_online.export_help_wizard_view
msgid ""
"This wizard allow you to export all QWeb views\n"
" related to help online. The result will be an Odoo\n"
" data xml file."
msgstr ""
#. module: help_online
#: view:import.help.wizard:help_online.import_help_wizard_view
msgid ""
"This wizard allow you to import QWeb views\n"
" related to help online. The required file format is "
"an Odoo\n"
" data xml file."
msgstr ""
#. module: help_online
#: code:addons/help_online/models/export_help_wizard.py:297
#, python-format
msgid "Unable to write autobackup file in given directory: %s"
msgstr ""
#. module: help_online
#: view:ir.ui.view:help_online.view_view_search
msgid "Website Page"
msgstr ""
#. module: help_online
#: view:ir.ui.view:help_online.view_view_form
msgid "Website Page?"
msgstr ""
#. module: help_online
#: model:ir.actions.act_window,name:help_online.action_website_pages
#: model:ir.ui.menu,name:help_online.menu_help_pages
msgid "Website Pages"
msgstr ""
#. module: help_online
#: field:export.help.wizard,data:0
msgid "XML"
msgstr ""
#. module: help_online
#: view:export.help.wizard:help_online.export_help_wizard_view
#: view:import.help.wizard:help_online.import_help_wizard_view
msgid "or"
msgstr ""

238
help_online/i18n/hu.po

@ -0,0 +1,238 @@
# Translation of Odoo Server.
# This file contains the translation of the following modules:
# * help_online
#
# Translators:
msgid ""
msgstr ""
"Project-Id-Version: web (8.0)\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2018-01-16 08:57+0000\n"
"PO-Revision-Date: 2017-09-22 17:19+0000\n"
"Last-Translator: OCA Transbot <transbot@odoo-community.org>\n"
"Language-Team: Hungarian (http://www.transifex.com/oca/OCA-web-8-0/language/"
"hu/)\n"
"Language: hu\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: help_online
#. openerp-web
#: code:addons/help_online/static/src/js/help_online.js:93
#, python-format
msgid "Cancel"
msgstr "Mégsem"
#. module: help_online
#: view:export.help.wizard:help_online.export_help_wizard_view
#: view:import.help.wizard:help_online.import_help_wizard_view
msgid "Close"
msgstr "Lezár"
#. module: help_online
#. openerp-web
#: code:addons/help_online/static/src/js/help_online.js:91
#, python-format
msgid "Confirm"
msgstr ""
#. module: help_online
#: code:addons/help_online/models/help_online.py:57
#, python-format
msgid "Create Help page for %s"
msgstr ""
#. module: help_online
#: field:export.help.wizard,create_uid:0 field:help.online,create_uid:0
#: field:import.help.wizard,create_uid:0
msgid "Created by"
msgstr "Készítette"
#. module: help_online
#: field:export.help.wizard,create_date:0 field:help.online,create_date:0
#: field:import.help.wizard,create_date:0
msgid "Created on"
msgstr "Létrehozás dátuma"
#. module: help_online
#: field:export.help.wizard,display_name:0 field:help.online,display_name:0
#: field:import.help.wizard,display_name:0
msgid "Display Name"
msgstr "Név megjelenítése"
#. module: help_online
#: view:export.help.wizard:help_online.export_help_wizard_view
msgid "Export"
msgstr ""
#. module: help_online
#: code:addons/help_online/models/export_help_wizard.py:267
#: model:ir.actions.act_window,name:help_online.action_export_help_wizard
#, python-format
msgid "Export Help"
msgstr ""
#. module: help_online
#: view:export.help.wizard:help_online.export_help_wizard_view
msgid "Export Help Data"
msgstr ""
#. module: help_online
#: model:ir.model,name:help_online.model_export_help_wizard
#: model:ir.ui.menu,name:help_online.menu_help_export
msgid "Export Help Online"
msgstr ""
#. module: help_online
#: field:export.help.wizard,export_filename:0
msgid "Export XML Filename"
msgstr ""
#. module: help_online
#: model:ir.ui.menu,name:help_online.menu_help
#: model:ir.ui.menu,name:help_online.menu_help_main
msgid "Help Online"
msgstr ""
#. module: help_online
#: code:addons/help_online/models/help_online.py:52
#, python-format
msgid "Help on %s"
msgstr ""
#. module: help_online
#: model:res.groups,name:help_online.help_online_group_reader
msgid "Help reader"
msgstr ""
#. module: help_online
#: model:res.groups,name:help_online.help_online_group_writer
msgid "Help writer"
msgstr ""
#. module: help_online
#: field:export.help.wizard,id:0 field:help.online,id:0
#: field:import.help.wizard,id:0
msgid "ID"
msgstr "ID"
#. module: help_online
#: view:import.help.wizard:help_online.import_help_wizard_view
msgid "Import"
msgstr ""
#. module: help_online
#: model:ir.actions.act_window,name:help_online.action_import_help_wizard
msgid "Import Help"
msgstr ""
#. module: help_online
#: view:import.help.wizard:help_online.import_help_wizard_view
msgid "Import Help Data"
msgstr ""
#. module: help_online
#: model:ir.ui.menu,name:help_online.menu_help_import
msgid "Import Help Online"
msgstr ""
#. module: help_online
#: field:export.help.wizard,__last_update:0 field:help.online,__last_update:0
#: field:import.help.wizard,__last_update:0
msgid "Last Modified on"
msgstr "Utolsó frissítés dátuma"
#. module: help_online
#: field:export.help.wizard,write_uid:0 field:help.online,write_uid:0
#: field:import.help.wizard,write_uid:0
msgid "Last Updated by"
msgstr "Utoljára frissítve, által"
#. module: help_online
#: field:export.help.wizard,write_date:0 field:help.online,write_date:0
#: field:import.help.wizard,write_date:0
msgid "Last Updated on"
msgstr "Utoljára frissítve "
#. module: help_online
#: code:addons/help_online/models/export_help_wizard.py:260
#, python-format
msgid "No data to export !"
msgstr ""
#. module: help_online
#: code:addons/help_online/models/help_online.py:33
#, python-format
msgid "No page prefix parameter specified !"
msgstr ""
#. module: help_online
#. openerp-web
#: code:addons/help_online/static/src/js/help_online.js:98
#, python-format
msgid "Ok"
msgstr ""
#. module: help_online
#. openerp-web
#: code:addons/help_online/static/src/js/help_online.js:117
#, python-format
msgid "Page does not exist. Do you want to create?"
msgstr ""
#. module: help_online
#: field:import.help.wizard,source_file:0
msgid "Source File"
msgstr ""
#. module: help_online
#: view:export.help.wizard:help_online.export_help_wizard_view
msgid ""
"This wizard allow you to export all QWeb views\n"
" related to help online. The result will be an Odoo\n"
" data xml file."
msgstr ""
#. module: help_online
#: view:import.help.wizard:help_online.import_help_wizard_view
msgid ""
"This wizard allow you to import QWeb views\n"
" related to help online. The required file format is "
"an Odoo\n"
" data xml file."
msgstr ""
#. module: help_online
#: code:addons/help_online/models/export_help_wizard.py:297
#, python-format
msgid "Unable to write autobackup file in given directory: %s"
msgstr ""
#. module: help_online
#: view:ir.ui.view:help_online.view_view_search
msgid "Website Page"
msgstr ""
#. module: help_online
#: view:ir.ui.view:help_online.view_view_form
msgid "Website Page?"
msgstr ""
#. module: help_online
#: model:ir.actions.act_window,name:help_online.action_website_pages
#: model:ir.ui.menu,name:help_online.menu_help_pages
msgid "Website Pages"
msgstr ""
#. module: help_online
#: field:export.help.wizard,data:0
msgid "XML"
msgstr ""
#. module: help_online
#: view:export.help.wizard:help_online.export_help_wizard_view
#: view:import.help.wizard:help_online.import_help_wizard_view
msgid "or"
msgstr "vagy"

238
help_online/i18n/id.po

@ -0,0 +1,238 @@
# Translation of Odoo Server.
# This file contains the translation of the following modules:
# * help_online
#
# Translators:
msgid ""
msgstr ""
"Project-Id-Version: web (8.0)\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2016-12-29 03:45+0000\n"
"PO-Revision-Date: 2016-12-27 08:22+0000\n"
"Last-Translator: OCA Transbot <transbot@odoo-community.org>\n"
"Language-Team: Indonesian (http://www.transifex.com/oca/OCA-web-8-0/language/"
"id/)\n"
"Language: id\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: \n"
"Plural-Forms: nplurals=1; plural=0;\n"
#. module: help_online
#. openerp-web
#: code:addons/help_online/static/src/js/help_online.js:93
#, python-format
msgid "Cancel"
msgstr "Batalkan"
#. module: help_online
#: view:export.help.wizard:help_online.export_help_wizard_view
#: view:import.help.wizard:help_online.import_help_wizard_view
msgid "Close"
msgstr ""
#. module: help_online
#. openerp-web
#: code:addons/help_online/static/src/js/help_online.js:91
#, python-format
msgid "Confirm"
msgstr ""
#. module: help_online
#: code:addons/help_online/models/help_online.py:57
#, python-format
msgid "Create Help page for %s"
msgstr ""
#. module: help_online
#: field:export.help.wizard,create_uid:0 field:help.online,create_uid:0
#: field:import.help.wizard,create_uid:0
msgid "Created by"
msgstr "Dibuat oleh"
#. module: help_online
#: field:export.help.wizard,create_date:0 field:help.online,create_date:0
#: field:import.help.wizard,create_date:0
msgid "Created on"
msgstr "Dibuat pada"
#. module: help_online
#: field:export.help.wizard,display_name:0 field:help.online,display_name:0
#: field:import.help.wizard,display_name:0
msgid "Display Name"
msgstr "Nama Tampilan"
#. module: help_online
#: view:export.help.wizard:help_online.export_help_wizard_view
msgid "Export"
msgstr ""
#. module: help_online
#: code:addons/help_online/models/export_help_wizard.py:267
#: model:ir.actions.act_window,name:help_online.action_export_help_wizard
#, python-format
msgid "Export Help"
msgstr ""
#. module: help_online
#: view:export.help.wizard:help_online.export_help_wizard_view
msgid "Export Help Data"
msgstr ""
#. module: help_online
#: model:ir.model,name:help_online.model_export_help_wizard
#: model:ir.ui.menu,name:help_online.menu_help_export
msgid "Export Help Online"
msgstr ""
#. module: help_online
#: field:export.help.wizard,export_filename:0
msgid "Export XML Filename"
msgstr ""
#. module: help_online
#: model:ir.ui.menu,name:help_online.menu_help
#: model:ir.ui.menu,name:help_online.menu_help_main
msgid "Help Online"
msgstr ""
#. module: help_online
#: code:addons/help_online/models/help_online.py:52
#, python-format
msgid "Help on %s"
msgstr ""
#. module: help_online
#: model:res.groups,name:help_online.help_online_group_reader
msgid "Help reader"
msgstr ""
#. module: help_online
#: model:res.groups,name:help_online.help_online_group_writer
msgid "Help writer"
msgstr ""
#. module: help_online
#: field:export.help.wizard,id:0 field:help.online,id:0
#: field:import.help.wizard,id:0
msgid "ID"
msgstr "ID"
#. module: help_online
#: view:import.help.wizard:help_online.import_help_wizard_view
msgid "Import"
msgstr ""
#. module: help_online
#: model:ir.actions.act_window,name:help_online.action_import_help_wizard
msgid "Import Help"
msgstr ""
#. module: help_online
#: view:import.help.wizard:help_online.import_help_wizard_view
msgid "Import Help Data"
msgstr ""
#. module: help_online
#: model:ir.ui.menu,name:help_online.menu_help_import
msgid "Import Help Online"
msgstr ""
#. module: help_online
#: field:export.help.wizard,__last_update:0 field:help.online,__last_update:0
#: field:import.help.wizard,__last_update:0
msgid "Last Modified on"
msgstr "Terakhir Dimodifikasi pada"
#. module: help_online
#: field:export.help.wizard,write_uid:0 field:help.online,write_uid:0
#: field:import.help.wizard,write_uid:0
msgid "Last Updated by"
msgstr "Diperbaharui oleh"
#. module: help_online
#: field:export.help.wizard,write_date:0 field:help.online,write_date:0
#: field:import.help.wizard,write_date:0
msgid "Last Updated on"
msgstr "Diperbaharui pada"
#. module: help_online
#: code:addons/help_online/models/export_help_wizard.py:260
#, python-format
msgid "No data to export !"
msgstr ""
#. module: help_online
#: code:addons/help_online/models/help_online.py:33
#, python-format
msgid "No page prefix parameter specified !"
msgstr ""
#. module: help_online
#. openerp-web
#: code:addons/help_online/static/src/js/help_online.js:98
#, python-format
msgid "Ok"
msgstr ""
#. module: help_online
#. openerp-web
#: code:addons/help_online/static/src/js/help_online.js:117
#, python-format
msgid "Page does not exist. Do you want to create?"
msgstr ""
#. module: help_online
#: field:import.help.wizard,source_file:0
msgid "Source File"
msgstr ""
#. module: help_online
#: view:export.help.wizard:help_online.export_help_wizard_view
msgid ""
"This wizard allow you to export all QWeb views\n"
" related to help online. The result will be an Odoo\n"
" data xml file."
msgstr ""
#. module: help_online
#: view:import.help.wizard:help_online.import_help_wizard_view
msgid ""
"This wizard allow you to import QWeb views\n"
" related to help online. The required file format is "
"an Odoo\n"
" data xml file."
msgstr ""
#. module: help_online
#: code:addons/help_online/models/export_help_wizard.py:297
#, python-format
msgid "Unable to write autobackup file in given directory: %s"
msgstr ""
#. module: help_online
#: view:ir.ui.view:help_online.view_view_search
msgid "Website Page"
msgstr ""
#. module: help_online
#: view:ir.ui.view:help_online.view_view_form
msgid "Website Page?"
msgstr ""
#. module: help_online
#: model:ir.actions.act_window,name:help_online.action_website_pages
#: model:ir.ui.menu,name:help_online.menu_help_pages
msgid "Website Pages"
msgstr ""
#. module: help_online
#: field:export.help.wizard,data:0
msgid "XML"
msgstr ""
#. module: help_online
#: view:export.help.wizard:help_online.export_help_wizard_view
#: view:import.help.wizard:help_online.import_help_wizard_view
msgid "or"
msgstr "atau"

247
help_online/i18n/it.po

@ -0,0 +1,247 @@
# Translation of Odoo Server.
# This file contains the translation of the following modules:
# * help_online
#
# Translators:
# Antonio Trueba, 2016
# danimaribeiro <danimaribeiro@gmail.com>, 2015-2016
# FIRST AUTHOR <EMAIL@ADDRESS>, 2012-2014
# Gustavo Lepri <gustavolepri@gmail.com>, 2015
# Hotellook, 2014
# Matjaž Mozetič <m.mozetic@matmoz.si>, 2015
# Paolo Valier, 2016
# Paolo Valier, 2016
# Rudolf Schnapka <rs@techno-flex.de>, 2015-2016
msgid ""
msgstr ""
"Project-Id-Version: web (8.0)\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2016-09-17 12:06+0000\n"
"PO-Revision-Date: 2016-09-09 12:25+0000\n"
"Last-Translator: Paolo Valier\n"
"Language-Team: Italian (http://www.transifex.com/oca/OCA-web-8-0/language/"
"it/)\n"
"Language: it\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: help_online
#. openerp-web
#: code:addons/help_online/static/src/js/help_online.js:93
#, python-format
msgid "Cancel"
msgstr "Annulla"
#. module: help_online
#: view:export.help.wizard:help_online.export_help_wizard_view
#: view:import.help.wizard:help_online.import_help_wizard_view
msgid "Close"
msgstr "Chiudi"
#. module: help_online
#. openerp-web
#: code:addons/help_online/static/src/js/help_online.js:91
#, python-format
msgid "Confirm"
msgstr "Conferma"
#. module: help_online
#: code:addons/help_online/models/help_online.py:57
#, python-format
msgid "Create Help page for %s"
msgstr "Crea una Pagina di aiuto per %s"
#. module: help_online
#: field:export.help.wizard,create_uid:0 field:help.online,create_uid:0
#: field:import.help.wizard,create_uid:0
msgid "Created by"
msgstr "Creato da"
#. module: help_online
#: field:export.help.wizard,create_date:0 field:help.online,create_date:0
#: field:import.help.wizard,create_date:0
msgid "Created on"
msgstr "Creato il"
#. module: help_online
#: field:export.help.wizard,display_name:0 field:help.online,display_name:0
#: field:import.help.wizard,display_name:0
msgid "Display Name"
msgstr "Nome da visualizzare"
#. module: help_online
#: view:export.help.wizard:help_online.export_help_wizard_view
msgid "Export"
msgstr "Esporta"
#. module: help_online
#: code:addons/help_online/models/export_help_wizard.py:267
#: model:ir.actions.act_window,name:help_online.action_export_help_wizard
#, python-format
msgid "Export Help"
msgstr ""
#. module: help_online
#: view:export.help.wizard:help_online.export_help_wizard_view
msgid "Export Help Data"
msgstr ""
#. module: help_online
#: model:ir.model,name:help_online.model_export_help_wizard
#: model:ir.ui.menu,name:help_online.menu_help_export
msgid "Export Help Online"
msgstr ""
#. module: help_online
#: field:export.help.wizard,export_filename:0
msgid "Export XML Filename"
msgstr ""
#. module: help_online
#: model:ir.ui.menu,name:help_online.menu_help
#: model:ir.ui.menu,name:help_online.menu_help_main
msgid "Help Online"
msgstr "Aiuto in linea"
#. module: help_online
#: code:addons/help_online/models/help_online.py:52
#, python-format
msgid "Help on %s"
msgstr "Aiuto per %s"
#. module: help_online
#: model:res.groups,name:help_online.help_online_group_reader
msgid "Help reader"
msgstr "Lettore degli Aiuti"
#. module: help_online
#: model:res.groups,name:help_online.help_online_group_writer
msgid "Help writer"
msgstr "Editor degli Aiuti"
#. module: help_online
#: field:export.help.wizard,id:0 field:help.online,id:0
#: field:import.help.wizard,id:0
msgid "ID"
msgstr "ID"
#. module: help_online
#: view:import.help.wizard:help_online.import_help_wizard_view
msgid "Import"
msgstr "Importa"
#. module: help_online
#: model:ir.actions.act_window,name:help_online.action_import_help_wizard
msgid "Import Help"
msgstr ""
#. module: help_online
#: view:import.help.wizard:help_online.import_help_wizard_view
msgid "Import Help Data"
msgstr ""
#. module: help_online
#: model:ir.ui.menu,name:help_online.menu_help_import
msgid "Import Help Online"
msgstr ""
#. module: help_online
#: field:export.help.wizard,__last_update:0 field:help.online,__last_update:0
#: field:import.help.wizard,__last_update:0
msgid "Last Modified on"
msgstr "Ultima modifica il"
#. module: help_online
#: field:export.help.wizard,write_uid:0 field:help.online,write_uid:0
#: field:import.help.wizard,write_uid:0
msgid "Last Updated by"
msgstr "Ultimo aggiornamento di"
#. module: help_online
#: field:export.help.wizard,write_date:0 field:help.online,write_date:0
#: field:import.help.wizard,write_date:0
msgid "Last Updated on"
msgstr "Ultimo aggiornamento il"
#. module: help_online
#: code:addons/help_online/models/export_help_wizard.py:260
#, python-format
msgid "No data to export !"
msgstr "Non ci sono dati da esportare!"
#. module: help_online
#: code:addons/help_online/models/help_online.py:33
#, python-format
msgid "No page prefix parameter specified !"
msgstr ""
#. module: help_online
#. openerp-web
#: code:addons/help_online/static/src/js/help_online.js:98
#, python-format
msgid "Ok"
msgstr "Ok"
#. module: help_online
#. openerp-web
#: code:addons/help_online/static/src/js/help_online.js:117
#, python-format
msgid "Page does not exist. Do you want to create?"
msgstr "La pagina non esiste. Desideri crearla?"
#. module: help_online
#: field:import.help.wizard,source_file:0
msgid "Source File"
msgstr "File sorgente"
#. module: help_online
#: view:export.help.wizard:help_online.export_help_wizard_view
msgid ""
"This wizard allow you to export all QWeb views\n"
" related to help online. The result will be an Odoo\n"
" data xml file."
msgstr ""
#. module: help_online
#: view:import.help.wizard:help_online.import_help_wizard_view
msgid ""
"This wizard allow you to import QWeb views\n"
" related to help online. The required file format is "
"an Odoo\n"
" data xml file."
msgstr ""
#. module: help_online
#: code:addons/help_online/models/export_help_wizard.py:297
#, python-format
msgid "Unable to write autobackup file in given directory: %s"
msgstr "Non è possibile scrivere il file autobackup nella cartella fornita: %s"
#. module: help_online
#: view:ir.ui.view:help_online.view_view_search
msgid "Website Page"
msgstr "Pagina del sito"
#. module: help_online
#: view:ir.ui.view:help_online.view_view_form
msgid "Website Page?"
msgstr "Pagina del sito?"
#. module: help_online
#: model:ir.actions.act_window,name:help_online.action_website_pages
#: model:ir.ui.menu,name:help_online.menu_help_pages
msgid "Website Pages"
msgstr "Pagine del sito"
#. module: help_online
#: field:export.help.wizard,data:0
msgid "XML"
msgstr "XML"
#. module: help_online
#: view:export.help.wizard:help_online.export_help_wizard_view
#: view:import.help.wizard:help_online.import_help_wizard_view
msgid "or"
msgstr "o"

238
help_online/i18n/ja.po

@ -0,0 +1,238 @@
# Translation of Odoo Server.
# This file contains the translation of the following modules:
# * help_online
#
# Translators:
msgid ""
msgstr ""
"Project-Id-Version: web (8.0)\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2018-01-16 08:57+0000\n"
"PO-Revision-Date: 2017-11-23 23:28+0000\n"
"Last-Translator: OCA Transbot <transbot@odoo-community.org>\n"
"Language-Team: Japanese (http://www.transifex.com/oca/OCA-web-8-0/language/"
"ja/)\n"
"Language: ja\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: \n"
"Plural-Forms: nplurals=1; plural=0;\n"
#. module: help_online
#. openerp-web
#: code:addons/help_online/static/src/js/help_online.js:93
#, python-format
msgid "Cancel"
msgstr "キャンセル"
#. module: help_online
#: view:export.help.wizard:help_online.export_help_wizard_view
#: view:import.help.wizard:help_online.import_help_wizard_view
msgid "Close"
msgstr "閉じる"
#. module: help_online
#. openerp-web
#: code:addons/help_online/static/src/js/help_online.js:91
#, python-format
msgid "Confirm"
msgstr ""
#. module: help_online
#: code:addons/help_online/models/help_online.py:57
#, python-format
msgid "Create Help page for %s"
msgstr ""
#. module: help_online
#: field:export.help.wizard,create_uid:0 field:help.online,create_uid:0
#: field:import.help.wizard,create_uid:0
msgid "Created by"
msgstr "作成者"
#. module: help_online
#: field:export.help.wizard,create_date:0 field:help.online,create_date:0
#: field:import.help.wizard,create_date:0
msgid "Created on"
msgstr "作成日"
#. module: help_online
#: field:export.help.wizard,display_name:0 field:help.online,display_name:0
#: field:import.help.wizard,display_name:0
msgid "Display Name"
msgstr "表示名"
#. module: help_online
#: view:export.help.wizard:help_online.export_help_wizard_view
msgid "Export"
msgstr ""
#. module: help_online
#: code:addons/help_online/models/export_help_wizard.py:267
#: model:ir.actions.act_window,name:help_online.action_export_help_wizard
#, python-format
msgid "Export Help"
msgstr ""
#. module: help_online
#: view:export.help.wizard:help_online.export_help_wizard_view
msgid "Export Help Data"
msgstr ""
#. module: help_online
#: model:ir.model,name:help_online.model_export_help_wizard
#: model:ir.ui.menu,name:help_online.menu_help_export
msgid "Export Help Online"
msgstr ""
#. module: help_online
#: field:export.help.wizard,export_filename:0
msgid "Export XML Filename"
msgstr ""
#. module: help_online
#: model:ir.ui.menu,name:help_online.menu_help
#: model:ir.ui.menu,name:help_online.menu_help_main
msgid "Help Online"
msgstr ""
#. module: help_online
#: code:addons/help_online/models/help_online.py:52
#, python-format
msgid "Help on %s"
msgstr ""
#. module: help_online
#: model:res.groups,name:help_online.help_online_group_reader
msgid "Help reader"
msgstr ""
#. module: help_online
#: model:res.groups,name:help_online.help_online_group_writer
msgid "Help writer"
msgstr ""
#. module: help_online
#: field:export.help.wizard,id:0 field:help.online,id:0
#: field:import.help.wizard,id:0
msgid "ID"
msgstr "ID"
#. module: help_online
#: view:import.help.wizard:help_online.import_help_wizard_view
msgid "Import"
msgstr ""
#. module: help_online
#: model:ir.actions.act_window,name:help_online.action_import_help_wizard
msgid "Import Help"
msgstr ""
#. module: help_online
#: view:import.help.wizard:help_online.import_help_wizard_view
msgid "Import Help Data"
msgstr ""
#. module: help_online
#: model:ir.ui.menu,name:help_online.menu_help_import
msgid "Import Help Online"
msgstr ""
#. module: help_online
#: field:export.help.wizard,__last_update:0 field:help.online,__last_update:0
#: field:import.help.wizard,__last_update:0
msgid "Last Modified on"
msgstr "最終更新日"
#. module: help_online
#: field:export.help.wizard,write_uid:0 field:help.online,write_uid:0
#: field:import.help.wizard,write_uid:0
msgid "Last Updated by"
msgstr "最終更新者"
#. module: help_online
#: field:export.help.wizard,write_date:0 field:help.online,write_date:0
#: field:import.help.wizard,write_date:0
msgid "Last Updated on"
msgstr "最終更新日"
#. module: help_online
#: code:addons/help_online/models/export_help_wizard.py:260
#, python-format
msgid "No data to export !"
msgstr ""
#. module: help_online
#: code:addons/help_online/models/help_online.py:33
#, python-format
msgid "No page prefix parameter specified !"
msgstr ""
#. module: help_online
#. openerp-web
#: code:addons/help_online/static/src/js/help_online.js:98
#, python-format
msgid "Ok"
msgstr ""
#. module: help_online
#. openerp-web
#: code:addons/help_online/static/src/js/help_online.js:117
#, python-format
msgid "Page does not exist. Do you want to create?"
msgstr ""
#. module: help_online
#: field:import.help.wizard,source_file:0
msgid "Source File"
msgstr ""
#. module: help_online
#: view:export.help.wizard:help_online.export_help_wizard_view
msgid ""
"This wizard allow you to export all QWeb views\n"
" related to help online. The result will be an Odoo\n"
" data xml file."
msgstr ""
#. module: help_online
#: view:import.help.wizard:help_online.import_help_wizard_view
msgid ""
"This wizard allow you to import QWeb views\n"
" related to help online. The required file format is "
"an Odoo\n"
" data xml file."
msgstr ""
#. module: help_online
#: code:addons/help_online/models/export_help_wizard.py:297
#, python-format
msgid "Unable to write autobackup file in given directory: %s"
msgstr ""
#. module: help_online
#: view:ir.ui.view:help_online.view_view_search
msgid "Website Page"
msgstr ""
#. module: help_online
#: view:ir.ui.view:help_online.view_view_form
msgid "Website Page?"
msgstr ""
#. module: help_online
#: model:ir.actions.act_window,name:help_online.action_website_pages
#: model:ir.ui.menu,name:help_online.menu_help_pages
msgid "Website Pages"
msgstr ""
#. module: help_online
#: field:export.help.wizard,data:0
msgid "XML"
msgstr ""
#. module: help_online
#: view:export.help.wizard:help_online.export_help_wizard_view
#: view:import.help.wizard:help_online.import_help_wizard_view
msgid "or"
msgstr "または"

238
help_online/i18n/ko.po

@ -0,0 +1,238 @@
# Translation of Odoo Server.
# This file contains the translation of the following modules:
# * help_online
#
# Translators:
msgid ""
msgstr ""
"Project-Id-Version: web (8.0)\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2016-12-29 03:45+0000\n"
"PO-Revision-Date: 2016-12-27 08:26+0000\n"
"Last-Translator: OCA Transbot <transbot@odoo-community.org>\n"
"Language-Team: Korean (http://www.transifex.com/oca/OCA-web-8-0/language/"
"ko/)\n"
"Language: ko\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: \n"
"Plural-Forms: nplurals=1; plural=0;\n"
#. module: help_online
#. openerp-web
#: code:addons/help_online/static/src/js/help_online.js:93
#, python-format
msgid "Cancel"
msgstr "취소"
#. module: help_online
#: view:export.help.wizard:help_online.export_help_wizard_view
#: view:import.help.wizard:help_online.import_help_wizard_view
msgid "Close"
msgstr ""
#. module: help_online
#. openerp-web
#: code:addons/help_online/static/src/js/help_online.js:91
#, python-format
msgid "Confirm"
msgstr ""
#. module: help_online
#: code:addons/help_online/models/help_online.py:57
#, python-format
msgid "Create Help page for %s"
msgstr ""
#. module: help_online
#: field:export.help.wizard,create_uid:0 field:help.online,create_uid:0
#: field:import.help.wizard,create_uid:0
msgid "Created by"
msgstr "작성자"
#. module: help_online
#: field:export.help.wizard,create_date:0 field:help.online,create_date:0
#: field:import.help.wizard,create_date:0
msgid "Created on"
msgstr "작성일"
#. module: help_online
#: field:export.help.wizard,display_name:0 field:help.online,display_name:0
#: field:import.help.wizard,display_name:0
msgid "Display Name"
msgstr "표시 이름"
#. module: help_online
#: view:export.help.wizard:help_online.export_help_wizard_view
msgid "Export"
msgstr ""
#. module: help_online
#: code:addons/help_online/models/export_help_wizard.py:267
#: model:ir.actions.act_window,name:help_online.action_export_help_wizard
#, python-format
msgid "Export Help"
msgstr ""
#. module: help_online
#: view:export.help.wizard:help_online.export_help_wizard_view
msgid "Export Help Data"
msgstr ""
#. module: help_online
#: model:ir.model,name:help_online.model_export_help_wizard
#: model:ir.ui.menu,name:help_online.menu_help_export
msgid "Export Help Online"
msgstr ""
#. module: help_online
#: field:export.help.wizard,export_filename:0
msgid "Export XML Filename"
msgstr ""
#. module: help_online
#: model:ir.ui.menu,name:help_online.menu_help
#: model:ir.ui.menu,name:help_online.menu_help_main
msgid "Help Online"
msgstr ""
#. module: help_online
#: code:addons/help_online/models/help_online.py:52
#, python-format
msgid "Help on %s"
msgstr ""
#. module: help_online
#: model:res.groups,name:help_online.help_online_group_reader
msgid "Help reader"
msgstr ""
#. module: help_online
#: model:res.groups,name:help_online.help_online_group_writer
msgid "Help writer"
msgstr ""
#. module: help_online
#: field:export.help.wizard,id:0 field:help.online,id:0
#: field:import.help.wizard,id:0
msgid "ID"
msgstr "ID"
#. module: help_online
#: view:import.help.wizard:help_online.import_help_wizard_view
msgid "Import"
msgstr ""
#. module: help_online
#: model:ir.actions.act_window,name:help_online.action_import_help_wizard
msgid "Import Help"
msgstr ""
#. module: help_online
#: view:import.help.wizard:help_online.import_help_wizard_view
msgid "Import Help Data"
msgstr ""
#. module: help_online
#: model:ir.ui.menu,name:help_online.menu_help_import
msgid "Import Help Online"
msgstr ""
#. module: help_online
#: field:export.help.wizard,__last_update:0 field:help.online,__last_update:0
#: field:import.help.wizard,__last_update:0
msgid "Last Modified on"
msgstr "최근 수정"
#. module: help_online
#: field:export.help.wizard,write_uid:0 field:help.online,write_uid:0
#: field:import.help.wizard,write_uid:0
msgid "Last Updated by"
msgstr "최근 갱신한 사람"
#. module: help_online
#: field:export.help.wizard,write_date:0 field:help.online,write_date:0
#: field:import.help.wizard,write_date:0
msgid "Last Updated on"
msgstr "최근 갱신 날짜"
#. module: help_online
#: code:addons/help_online/models/export_help_wizard.py:260
#, python-format
msgid "No data to export !"
msgstr ""
#. module: help_online
#: code:addons/help_online/models/help_online.py:33
#, python-format
msgid "No page prefix parameter specified !"
msgstr ""
#. module: help_online
#. openerp-web
#: code:addons/help_online/static/src/js/help_online.js:98
#, python-format
msgid "Ok"
msgstr ""
#. module: help_online
#. openerp-web
#: code:addons/help_online/static/src/js/help_online.js:117
#, python-format
msgid "Page does not exist. Do you want to create?"
msgstr ""
#. module: help_online
#: field:import.help.wizard,source_file:0
msgid "Source File"
msgstr ""
#. module: help_online
#: view:export.help.wizard:help_online.export_help_wizard_view
msgid ""
"This wizard allow you to export all QWeb views\n"
" related to help online. The result will be an Odoo\n"
" data xml file."
msgstr ""
#. module: help_online
#: view:import.help.wizard:help_online.import_help_wizard_view
msgid ""
"This wizard allow you to import QWeb views\n"
" related to help online. The required file format is "
"an Odoo\n"
" data xml file."
msgstr ""
#. module: help_online
#: code:addons/help_online/models/export_help_wizard.py:297
#, python-format
msgid "Unable to write autobackup file in given directory: %s"
msgstr ""
#. module: help_online
#: view:ir.ui.view:help_online.view_view_search
msgid "Website Page"
msgstr ""
#. module: help_online
#: view:ir.ui.view:help_online.view_view_form
msgid "Website Page?"
msgstr ""
#. module: help_online
#: model:ir.actions.act_window,name:help_online.action_website_pages
#: model:ir.ui.menu,name:help_online.menu_help_pages
msgid "Website Pages"
msgstr ""
#. module: help_online
#: field:export.help.wizard,data:0
msgid "XML"
msgstr ""
#. module: help_online
#: view:export.help.wizard:help_online.export_help_wizard_view
#: view:import.help.wizard:help_online.import_help_wizard_view
msgid "or"
msgstr "또는"

237
help_online/i18n/lo.po

@ -0,0 +1,237 @@
# Translation of Odoo Server.
# This file contains the translation of the following modules:
# * help_online
#
# Translators:
msgid ""
msgstr ""
"Project-Id-Version: web (8.0)\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2016-12-29 03:45+0000\n"
"PO-Revision-Date: 2016-12-27 08:22+0000\n"
"Last-Translator: OCA Transbot <transbot@odoo-community.org>\n"
"Language-Team: Lao (http://www.transifex.com/oca/OCA-web-8-0/language/lo/)\n"
"Language: lo\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: \n"
"Plural-Forms: nplurals=1; plural=0;\n"
#. module: help_online
#. openerp-web
#: code:addons/help_online/static/src/js/help_online.js:93
#, python-format
msgid "Cancel"
msgstr "ຍົກເລີອກ"
#. module: help_online
#: view:export.help.wizard:help_online.export_help_wizard_view
#: view:import.help.wizard:help_online.import_help_wizard_view
msgid "Close"
msgstr ""
#. module: help_online
#. openerp-web
#: code:addons/help_online/static/src/js/help_online.js:91
#, python-format
msgid "Confirm"
msgstr ""
#. module: help_online
#: code:addons/help_online/models/help_online.py:57
#, python-format
msgid "Create Help page for %s"
msgstr ""
#. module: help_online
#: field:export.help.wizard,create_uid:0 field:help.online,create_uid:0
#: field:import.help.wizard,create_uid:0
msgid "Created by"
msgstr ""
#. module: help_online
#: field:export.help.wizard,create_date:0 field:help.online,create_date:0
#: field:import.help.wizard,create_date:0
msgid "Created on"
msgstr ""
#. module: help_online
#: field:export.help.wizard,display_name:0 field:help.online,display_name:0
#: field:import.help.wizard,display_name:0
msgid "Display Name"
msgstr ""
#. module: help_online
#: view:export.help.wizard:help_online.export_help_wizard_view
msgid "Export"
msgstr ""
#. module: help_online
#: code:addons/help_online/models/export_help_wizard.py:267
#: model:ir.actions.act_window,name:help_online.action_export_help_wizard
#, python-format
msgid "Export Help"
msgstr ""
#. module: help_online
#: view:export.help.wizard:help_online.export_help_wizard_view
msgid "Export Help Data"
msgstr ""
#. module: help_online
#: model:ir.model,name:help_online.model_export_help_wizard
#: model:ir.ui.menu,name:help_online.menu_help_export
msgid "Export Help Online"
msgstr ""
#. module: help_online
#: field:export.help.wizard,export_filename:0
msgid "Export XML Filename"
msgstr ""
#. module: help_online
#: model:ir.ui.menu,name:help_online.menu_help
#: model:ir.ui.menu,name:help_online.menu_help_main
msgid "Help Online"
msgstr ""
#. module: help_online
#: code:addons/help_online/models/help_online.py:52
#, python-format
msgid "Help on %s"
msgstr ""
#. module: help_online
#: model:res.groups,name:help_online.help_online_group_reader
msgid "Help reader"
msgstr ""
#. module: help_online
#: model:res.groups,name:help_online.help_online_group_writer
msgid "Help writer"
msgstr ""
#. module: help_online
#: field:export.help.wizard,id:0 field:help.online,id:0
#: field:import.help.wizard,id:0
msgid "ID"
msgstr ""
#. module: help_online
#: view:import.help.wizard:help_online.import_help_wizard_view
msgid "Import"
msgstr ""
#. module: help_online
#: model:ir.actions.act_window,name:help_online.action_import_help_wizard
msgid "Import Help"
msgstr ""
#. module: help_online
#: view:import.help.wizard:help_online.import_help_wizard_view
msgid "Import Help Data"
msgstr ""
#. module: help_online
#: model:ir.ui.menu,name:help_online.menu_help_import
msgid "Import Help Online"
msgstr ""
#. module: help_online
#: field:export.help.wizard,__last_update:0 field:help.online,__last_update:0
#: field:import.help.wizard,__last_update:0
msgid "Last Modified on"
msgstr ""
#. module: help_online
#: field:export.help.wizard,write_uid:0 field:help.online,write_uid:0
#: field:import.help.wizard,write_uid:0
msgid "Last Updated by"
msgstr ""
#. module: help_online
#: field:export.help.wizard,write_date:0 field:help.online,write_date:0
#: field:import.help.wizard,write_date:0
msgid "Last Updated on"
msgstr ""
#. module: help_online
#: code:addons/help_online/models/export_help_wizard.py:260
#, python-format
msgid "No data to export !"
msgstr ""
#. module: help_online
#: code:addons/help_online/models/help_online.py:33
#, python-format
msgid "No page prefix parameter specified !"
msgstr ""
#. module: help_online
#. openerp-web
#: code:addons/help_online/static/src/js/help_online.js:98
#, python-format
msgid "Ok"
msgstr ""
#. module: help_online
#. openerp-web
#: code:addons/help_online/static/src/js/help_online.js:117
#, python-format
msgid "Page does not exist. Do you want to create?"
msgstr ""
#. module: help_online
#: field:import.help.wizard,source_file:0
msgid "Source File"
msgstr ""
#. module: help_online
#: view:export.help.wizard:help_online.export_help_wizard_view
msgid ""
"This wizard allow you to export all QWeb views\n"
" related to help online. The result will be an Odoo\n"
" data xml file."
msgstr ""
#. module: help_online
#: view:import.help.wizard:help_online.import_help_wizard_view
msgid ""
"This wizard allow you to import QWeb views\n"
" related to help online. The required file format is "
"an Odoo\n"
" data xml file."
msgstr ""
#. module: help_online
#: code:addons/help_online/models/export_help_wizard.py:297
#, python-format
msgid "Unable to write autobackup file in given directory: %s"
msgstr ""
#. module: help_online
#: view:ir.ui.view:help_online.view_view_search
msgid "Website Page"
msgstr ""
#. module: help_online
#: view:ir.ui.view:help_online.view_view_form
msgid "Website Page?"
msgstr ""
#. module: help_online
#: model:ir.actions.act_window,name:help_online.action_website_pages
#: model:ir.ui.menu,name:help_online.menu_help_pages
msgid "Website Pages"
msgstr ""
#. module: help_online
#: field:export.help.wizard,data:0
msgid "XML"
msgstr ""
#. module: help_online
#: view:export.help.wizard:help_online.export_help_wizard_view
#: view:import.help.wizard:help_online.import_help_wizard_view
msgid "or"
msgstr ""

239
help_online/i18n/lt.po

@ -0,0 +1,239 @@
# Translation of Odoo Server.
# This file contains the translation of the following modules:
# * help_online
#
# Translators:
msgid ""
msgstr ""
"Project-Id-Version: web (8.0)\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2018-01-16 08:57+0000\n"
"PO-Revision-Date: 2017-11-23 23:27+0000\n"
"Last-Translator: OCA Transbot <transbot@odoo-community.org>\n"
"Language-Team: Lithuanian (http://www.transifex.com/oca/OCA-web-8-0/language/"
"lt/)\n"
"Language: lt\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: \n"
"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && (n"
"%100<10 || n%100>=20) ? 1 : 2);\n"
#. module: help_online
#. openerp-web
#: code:addons/help_online/static/src/js/help_online.js:93
#, python-format
msgid "Cancel"
msgstr "Atšaukti"
#. module: help_online
#: view:export.help.wizard:help_online.export_help_wizard_view
#: view:import.help.wizard:help_online.import_help_wizard_view
msgid "Close"
msgstr "Uždaryta"
#. module: help_online
#. openerp-web
#: code:addons/help_online/static/src/js/help_online.js:91
#, python-format
msgid "Confirm"
msgstr ""
#. module: help_online
#: code:addons/help_online/models/help_online.py:57
#, python-format
msgid "Create Help page for %s"
msgstr ""
#. module: help_online
#: field:export.help.wizard,create_uid:0 field:help.online,create_uid:0
#: field:import.help.wizard,create_uid:0
msgid "Created by"
msgstr "Sukūrė"
#. module: help_online
#: field:export.help.wizard,create_date:0 field:help.online,create_date:0
#: field:import.help.wizard,create_date:0
msgid "Created on"
msgstr "Sukurta"
#. module: help_online
#: field:export.help.wizard,display_name:0 field:help.online,display_name:0
#: field:import.help.wizard,display_name:0
msgid "Display Name"
msgstr "Vaizduojamas pavadinimas"
#. module: help_online
#: view:export.help.wizard:help_online.export_help_wizard_view
msgid "Export"
msgstr ""
#. module: help_online
#: code:addons/help_online/models/export_help_wizard.py:267
#: model:ir.actions.act_window,name:help_online.action_export_help_wizard
#, python-format
msgid "Export Help"
msgstr ""
#. module: help_online
#: view:export.help.wizard:help_online.export_help_wizard_view
msgid "Export Help Data"
msgstr ""
#. module: help_online
#: model:ir.model,name:help_online.model_export_help_wizard
#: model:ir.ui.menu,name:help_online.menu_help_export
msgid "Export Help Online"
msgstr ""
#. module: help_online
#: field:export.help.wizard,export_filename:0
msgid "Export XML Filename"
msgstr ""
#. module: help_online
#: model:ir.ui.menu,name:help_online.menu_help
#: model:ir.ui.menu,name:help_online.menu_help_main
msgid "Help Online"
msgstr ""
#. module: help_online
#: code:addons/help_online/models/help_online.py:52
#, python-format
msgid "Help on %s"
msgstr ""
#. module: help_online
#: model:res.groups,name:help_online.help_online_group_reader
msgid "Help reader"
msgstr ""
#. module: help_online
#: model:res.groups,name:help_online.help_online_group_writer
msgid "Help writer"
msgstr ""
#. module: help_online
#: field:export.help.wizard,id:0 field:help.online,id:0
#: field:import.help.wizard,id:0
msgid "ID"
msgstr "ID"
#. module: help_online
#: view:import.help.wizard:help_online.import_help_wizard_view
msgid "Import"
msgstr ""
#. module: help_online
#: model:ir.actions.act_window,name:help_online.action_import_help_wizard
msgid "Import Help"
msgstr ""
#. module: help_online
#: view:import.help.wizard:help_online.import_help_wizard_view
msgid "Import Help Data"
msgstr ""
#. module: help_online
#: model:ir.ui.menu,name:help_online.menu_help_import
msgid "Import Help Online"
msgstr ""
#. module: help_online
#: field:export.help.wizard,__last_update:0 field:help.online,__last_update:0
#: field:import.help.wizard,__last_update:0
msgid "Last Modified on"
msgstr "Paskutinį kartą keista"
#. module: help_online
#: field:export.help.wizard,write_uid:0 field:help.online,write_uid:0
#: field:import.help.wizard,write_uid:0
msgid "Last Updated by"
msgstr "Paskutinį kartą atnaujino"
#. module: help_online
#: field:export.help.wizard,write_date:0 field:help.online,write_date:0
#: field:import.help.wizard,write_date:0
msgid "Last Updated on"
msgstr "Paskutinį kartą atnaujinta"
#. module: help_online
#: code:addons/help_online/models/export_help_wizard.py:260
#, python-format
msgid "No data to export !"
msgstr ""
#. module: help_online
#: code:addons/help_online/models/help_online.py:33
#, python-format
msgid "No page prefix parameter specified !"
msgstr ""
#. module: help_online
#. openerp-web
#: code:addons/help_online/static/src/js/help_online.js:98
#, python-format
msgid "Ok"
msgstr ""
#. module: help_online
#. openerp-web
#: code:addons/help_online/static/src/js/help_online.js:117
#, python-format
msgid "Page does not exist. Do you want to create?"
msgstr ""
#. module: help_online
#: field:import.help.wizard,source_file:0
msgid "Source File"
msgstr ""
#. module: help_online
#: view:export.help.wizard:help_online.export_help_wizard_view
msgid ""
"This wizard allow you to export all QWeb views\n"
" related to help online. The result will be an Odoo\n"
" data xml file."
msgstr ""
#. module: help_online
#: view:import.help.wizard:help_online.import_help_wizard_view
msgid ""
"This wizard allow you to import QWeb views\n"
" related to help online. The required file format is "
"an Odoo\n"
" data xml file."
msgstr ""
#. module: help_online
#: code:addons/help_online/models/export_help_wizard.py:297
#, python-format
msgid "Unable to write autobackup file in given directory: %s"
msgstr ""
#. module: help_online
#: view:ir.ui.view:help_online.view_view_search
msgid "Website Page"
msgstr ""
#. module: help_online
#: view:ir.ui.view:help_online.view_view_form
msgid "Website Page?"
msgstr ""
#. module: help_online
#: model:ir.actions.act_window,name:help_online.action_website_pages
#: model:ir.ui.menu,name:help_online.menu_help_pages
msgid "Website Pages"
msgstr ""
#. module: help_online
#: field:export.help.wizard,data:0
msgid "XML"
msgstr ""
#. module: help_online
#: view:export.help.wizard:help_online.export_help_wizard_view
#: view:import.help.wizard:help_online.import_help_wizard_view
msgid "or"
msgstr "arba"

239
help_online/i18n/lt_LT.po

@ -0,0 +1,239 @@
# Translation of Odoo Server.
# This file contains the translation of the following modules:
# * help_online
#
# Translators:
msgid ""
msgstr ""
"Project-Id-Version: web (8.0)\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2016-12-29 03:45+0000\n"
"PO-Revision-Date: 2016-12-27 08:23+0000\n"
"Last-Translator: OCA Transbot <transbot@odoo-community.org>\n"
"Language-Team: Lithuanian (Lithuania) (http://www.transifex.com/oca/OCA-"
"web-8-0/language/lt_LT/)\n"
"Language: lt_LT\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: \n"
"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && (n"
"%100<10 || n%100>=20) ? 1 : 2);\n"
#. module: help_online
#. openerp-web
#: code:addons/help_online/static/src/js/help_online.js:93
#, python-format
msgid "Cancel"
msgstr "Atšaukti"
#. module: help_online
#: view:export.help.wizard:help_online.export_help_wizard_view
#: view:import.help.wizard:help_online.import_help_wizard_view
msgid "Close"
msgstr ""
#. module: help_online
#. openerp-web
#: code:addons/help_online/static/src/js/help_online.js:91
#, python-format
msgid "Confirm"
msgstr ""
#. module: help_online
#: code:addons/help_online/models/help_online.py:57
#, python-format
msgid "Create Help page for %s"
msgstr ""
#. module: help_online
#: field:export.help.wizard,create_uid:0 field:help.online,create_uid:0
#: field:import.help.wizard,create_uid:0
msgid "Created by"
msgstr "Sukūrė"
#. module: help_online
#: field:export.help.wizard,create_date:0 field:help.online,create_date:0
#: field:import.help.wizard,create_date:0
msgid "Created on"
msgstr "Sukurta"
#. module: help_online
#: field:export.help.wizard,display_name:0 field:help.online,display_name:0
#: field:import.help.wizard,display_name:0
msgid "Display Name"
msgstr ""
#. module: help_online
#: view:export.help.wizard:help_online.export_help_wizard_view
msgid "Export"
msgstr ""
#. module: help_online
#: code:addons/help_online/models/export_help_wizard.py:267
#: model:ir.actions.act_window,name:help_online.action_export_help_wizard
#, python-format
msgid "Export Help"
msgstr ""
#. module: help_online
#: view:export.help.wizard:help_online.export_help_wizard_view
msgid "Export Help Data"
msgstr ""
#. module: help_online
#: model:ir.model,name:help_online.model_export_help_wizard
#: model:ir.ui.menu,name:help_online.menu_help_export
msgid "Export Help Online"
msgstr ""
#. module: help_online
#: field:export.help.wizard,export_filename:0
msgid "Export XML Filename"
msgstr ""
#. module: help_online
#: model:ir.ui.menu,name:help_online.menu_help
#: model:ir.ui.menu,name:help_online.menu_help_main
msgid "Help Online"
msgstr ""
#. module: help_online
#: code:addons/help_online/models/help_online.py:52
#, python-format
msgid "Help on %s"
msgstr ""
#. module: help_online
#: model:res.groups,name:help_online.help_online_group_reader
msgid "Help reader"
msgstr ""
#. module: help_online
#: model:res.groups,name:help_online.help_online_group_writer
msgid "Help writer"
msgstr ""
#. module: help_online
#: field:export.help.wizard,id:0 field:help.online,id:0
#: field:import.help.wizard,id:0
msgid "ID"
msgstr "ID"
#. module: help_online
#: view:import.help.wizard:help_online.import_help_wizard_view
msgid "Import"
msgstr ""
#. module: help_online
#: model:ir.actions.act_window,name:help_online.action_import_help_wizard
msgid "Import Help"
msgstr ""
#. module: help_online
#: view:import.help.wizard:help_online.import_help_wizard_view
msgid "Import Help Data"
msgstr ""
#. module: help_online
#: model:ir.ui.menu,name:help_online.menu_help_import
msgid "Import Help Online"
msgstr ""
#. module: help_online
#: field:export.help.wizard,__last_update:0 field:help.online,__last_update:0
#: field:import.help.wizard,__last_update:0
msgid "Last Modified on"
msgstr ""
#. module: help_online
#: field:export.help.wizard,write_uid:0 field:help.online,write_uid:0
#: field:import.help.wizard,write_uid:0
msgid "Last Updated by"
msgstr "Paskutinį kartą atnaujino"
#. module: help_online
#: field:export.help.wizard,write_date:0 field:help.online,write_date:0
#: field:import.help.wizard,write_date:0
msgid "Last Updated on"
msgstr "Paskutinį kartą atnaujinta"
#. module: help_online
#: code:addons/help_online/models/export_help_wizard.py:260
#, python-format
msgid "No data to export !"
msgstr ""
#. module: help_online
#: code:addons/help_online/models/help_online.py:33
#, python-format
msgid "No page prefix parameter specified !"
msgstr ""
#. module: help_online
#. openerp-web
#: code:addons/help_online/static/src/js/help_online.js:98
#, python-format
msgid "Ok"
msgstr ""
#. module: help_online
#. openerp-web
#: code:addons/help_online/static/src/js/help_online.js:117
#, python-format
msgid "Page does not exist. Do you want to create?"
msgstr ""
#. module: help_online
#: field:import.help.wizard,source_file:0
msgid "Source File"
msgstr ""
#. module: help_online
#: view:export.help.wizard:help_online.export_help_wizard_view
msgid ""
"This wizard allow you to export all QWeb views\n"
" related to help online. The result will be an Odoo\n"
" data xml file."
msgstr ""
#. module: help_online
#: view:import.help.wizard:help_online.import_help_wizard_view
msgid ""
"This wizard allow you to import QWeb views\n"
" related to help online. The required file format is "
"an Odoo\n"
" data xml file."
msgstr ""
#. module: help_online
#: code:addons/help_online/models/export_help_wizard.py:297
#, python-format
msgid "Unable to write autobackup file in given directory: %s"
msgstr ""
#. module: help_online
#: view:ir.ui.view:help_online.view_view_search
msgid "Website Page"
msgstr ""
#. module: help_online
#: view:ir.ui.view:help_online.view_view_form
msgid "Website Page?"
msgstr ""
#. module: help_online
#: model:ir.actions.act_window,name:help_online.action_website_pages
#: model:ir.ui.menu,name:help_online.menu_help_pages
msgid "Website Pages"
msgstr ""
#. module: help_online
#: field:export.help.wizard,data:0
msgid "XML"
msgstr ""
#. module: help_online
#: view:export.help.wizard:help_online.export_help_wizard_view
#: view:import.help.wizard:help_online.import_help_wizard_view
msgid "or"
msgstr ""

239
help_online/i18n/lv.po

@ -0,0 +1,239 @@
# Translation of Odoo Server.
# This file contains the translation of the following modules:
# * help_online
#
# Translators:
msgid ""
msgstr ""
"Project-Id-Version: web (8.0)\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2016-12-29 03:45+0000\n"
"PO-Revision-Date: 2016-12-27 08:23+0000\n"
"Last-Translator: OCA Transbot <transbot@odoo-community.org>\n"
"Language-Team: Latvian (http://www.transifex.com/oca/OCA-web-8-0/language/"
"lv/)\n"
"Language: lv\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: \n"
"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n != 0 ? 1 : "
"2);\n"
#. module: help_online
#. openerp-web
#: code:addons/help_online/static/src/js/help_online.js:93
#, python-format
msgid "Cancel"
msgstr "Atcelt"
#. module: help_online
#: view:export.help.wizard:help_online.export_help_wizard_view
#: view:import.help.wizard:help_online.import_help_wizard_view
msgid "Close"
msgstr ""
#. module: help_online
#. openerp-web
#: code:addons/help_online/static/src/js/help_online.js:91
#, python-format
msgid "Confirm"
msgstr ""
#. module: help_online
#: code:addons/help_online/models/help_online.py:57
#, python-format
msgid "Create Help page for %s"
msgstr ""
#. module: help_online
#: field:export.help.wizard,create_uid:0 field:help.online,create_uid:0
#: field:import.help.wizard,create_uid:0
msgid "Created by"
msgstr "Izveidoja"
#. module: help_online
#: field:export.help.wizard,create_date:0 field:help.online,create_date:0
#: field:import.help.wizard,create_date:0
msgid "Created on"
msgstr "Izveidots"
#. module: help_online
#: field:export.help.wizard,display_name:0 field:help.online,display_name:0
#: field:import.help.wizard,display_name:0
msgid "Display Name"
msgstr ""
#. module: help_online
#: view:export.help.wizard:help_online.export_help_wizard_view
msgid "Export"
msgstr ""
#. module: help_online
#: code:addons/help_online/models/export_help_wizard.py:267
#: model:ir.actions.act_window,name:help_online.action_export_help_wizard
#, python-format
msgid "Export Help"
msgstr ""
#. module: help_online
#: view:export.help.wizard:help_online.export_help_wizard_view
msgid "Export Help Data"
msgstr ""
#. module: help_online
#: model:ir.model,name:help_online.model_export_help_wizard
#: model:ir.ui.menu,name:help_online.menu_help_export
msgid "Export Help Online"
msgstr ""
#. module: help_online
#: field:export.help.wizard,export_filename:0
msgid "Export XML Filename"
msgstr ""
#. module: help_online
#: model:ir.ui.menu,name:help_online.menu_help
#: model:ir.ui.menu,name:help_online.menu_help_main
msgid "Help Online"
msgstr ""
#. module: help_online
#: code:addons/help_online/models/help_online.py:52
#, python-format
msgid "Help on %s"
msgstr ""
#. module: help_online
#: model:res.groups,name:help_online.help_online_group_reader
msgid "Help reader"
msgstr ""
#. module: help_online
#: model:res.groups,name:help_online.help_online_group_writer
msgid "Help writer"
msgstr ""
#. module: help_online
#: field:export.help.wizard,id:0 field:help.online,id:0
#: field:import.help.wizard,id:0
msgid "ID"
msgstr "ID"
#. module: help_online
#: view:import.help.wizard:help_online.import_help_wizard_view
msgid "Import"
msgstr ""
#. module: help_online
#: model:ir.actions.act_window,name:help_online.action_import_help_wizard
msgid "Import Help"
msgstr ""
#. module: help_online
#: view:import.help.wizard:help_online.import_help_wizard_view
msgid "Import Help Data"
msgstr ""
#. module: help_online
#: model:ir.ui.menu,name:help_online.menu_help_import
msgid "Import Help Online"
msgstr ""
#. module: help_online
#: field:export.help.wizard,__last_update:0 field:help.online,__last_update:0
#: field:import.help.wizard,__last_update:0
msgid "Last Modified on"
msgstr ""
#. module: help_online
#: field:export.help.wizard,write_uid:0 field:help.online,write_uid:0
#: field:import.help.wizard,write_uid:0
msgid "Last Updated by"
msgstr "Pēdējo reizi atjaunoja"
#. module: help_online
#: field:export.help.wizard,write_date:0 field:help.online,write_date:0
#: field:import.help.wizard,write_date:0
msgid "Last Updated on"
msgstr "Pēdējās izmaiņas"
#. module: help_online
#: code:addons/help_online/models/export_help_wizard.py:260
#, python-format
msgid "No data to export !"
msgstr ""
#. module: help_online
#: code:addons/help_online/models/help_online.py:33
#, python-format
msgid "No page prefix parameter specified !"
msgstr ""
#. module: help_online
#. openerp-web
#: code:addons/help_online/static/src/js/help_online.js:98
#, python-format
msgid "Ok"
msgstr ""
#. module: help_online
#. openerp-web
#: code:addons/help_online/static/src/js/help_online.js:117
#, python-format
msgid "Page does not exist. Do you want to create?"
msgstr ""
#. module: help_online
#: field:import.help.wizard,source_file:0
msgid "Source File"
msgstr ""
#. module: help_online
#: view:export.help.wizard:help_online.export_help_wizard_view
msgid ""
"This wizard allow you to export all QWeb views\n"
" related to help online. The result will be an Odoo\n"
" data xml file."
msgstr ""
#. module: help_online
#: view:import.help.wizard:help_online.import_help_wizard_view
msgid ""
"This wizard allow you to import QWeb views\n"
" related to help online. The required file format is "
"an Odoo\n"
" data xml file."
msgstr ""
#. module: help_online
#: code:addons/help_online/models/export_help_wizard.py:297
#, python-format
msgid "Unable to write autobackup file in given directory: %s"
msgstr ""
#. module: help_online
#: view:ir.ui.view:help_online.view_view_search
msgid "Website Page"
msgstr ""
#. module: help_online
#: view:ir.ui.view:help_online.view_view_form
msgid "Website Page?"
msgstr ""
#. module: help_online
#: model:ir.actions.act_window,name:help_online.action_website_pages
#: model:ir.ui.menu,name:help_online.menu_help_pages
msgid "Website Pages"
msgstr ""
#. module: help_online
#: field:export.help.wizard,data:0
msgid "XML"
msgstr ""
#. module: help_online
#: view:export.help.wizard:help_online.export_help_wizard_view
#: view:import.help.wizard:help_online.import_help_wizard_view
msgid "or"
msgstr "vai"

238
help_online/i18n/mk.po

@ -0,0 +1,238 @@
# Translation of Odoo Server.
# This file contains the translation of the following modules:
# * help_online
#
# Translators:
msgid ""
msgstr ""
"Project-Id-Version: web (8.0)\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2018-01-16 08:57+0000\n"
"PO-Revision-Date: 2017-11-23 23:26+0000\n"
"Last-Translator: OCA Transbot <transbot@odoo-community.org>\n"
"Language-Team: Macedonian (http://www.transifex.com/oca/OCA-web-8-0/language/"
"mk/)\n"
"Language: mk\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: \n"
"Plural-Forms: nplurals=2; plural=(n % 10 == 1 && n % 100 != 11) ? 0 : 1;\n"
#. module: help_online
#. openerp-web
#: code:addons/help_online/static/src/js/help_online.js:93
#, python-format
msgid "Cancel"
msgstr "Откажи"
#. module: help_online
#: view:export.help.wizard:help_online.export_help_wizard_view
#: view:import.help.wizard:help_online.import_help_wizard_view
msgid "Close"
msgstr "Затвори"
#. module: help_online
#. openerp-web
#: code:addons/help_online/static/src/js/help_online.js:91
#, python-format
msgid "Confirm"
msgstr ""
#. module: help_online
#: code:addons/help_online/models/help_online.py:57
#, python-format
msgid "Create Help page for %s"
msgstr ""
#. module: help_online
#: field:export.help.wizard,create_uid:0 field:help.online,create_uid:0
#: field:import.help.wizard,create_uid:0
msgid "Created by"
msgstr "Креирано од"
#. module: help_online
#: field:export.help.wizard,create_date:0 field:help.online,create_date:0
#: field:import.help.wizard,create_date:0
msgid "Created on"
msgstr "Креирано на"
#. module: help_online
#: field:export.help.wizard,display_name:0 field:help.online,display_name:0
#: field:import.help.wizard,display_name:0
msgid "Display Name"
msgstr "Прикажи име"
#. module: help_online
#: view:export.help.wizard:help_online.export_help_wizard_view
msgid "Export"
msgstr ""
#. module: help_online
#: code:addons/help_online/models/export_help_wizard.py:267
#: model:ir.actions.act_window,name:help_online.action_export_help_wizard
#, python-format
msgid "Export Help"
msgstr ""
#. module: help_online
#: view:export.help.wizard:help_online.export_help_wizard_view
msgid "Export Help Data"
msgstr ""
#. module: help_online
#: model:ir.model,name:help_online.model_export_help_wizard
#: model:ir.ui.menu,name:help_online.menu_help_export
msgid "Export Help Online"
msgstr ""
#. module: help_online
#: field:export.help.wizard,export_filename:0
msgid "Export XML Filename"
msgstr ""
#. module: help_online
#: model:ir.ui.menu,name:help_online.menu_help
#: model:ir.ui.menu,name:help_online.menu_help_main
msgid "Help Online"
msgstr ""
#. module: help_online
#: code:addons/help_online/models/help_online.py:52
#, python-format
msgid "Help on %s"
msgstr ""
#. module: help_online
#: model:res.groups,name:help_online.help_online_group_reader
msgid "Help reader"
msgstr ""
#. module: help_online
#: model:res.groups,name:help_online.help_online_group_writer
msgid "Help writer"
msgstr ""
#. module: help_online
#: field:export.help.wizard,id:0 field:help.online,id:0
#: field:import.help.wizard,id:0
msgid "ID"
msgstr "ID"
#. module: help_online
#: view:import.help.wizard:help_online.import_help_wizard_view
msgid "Import"
msgstr ""
#. module: help_online
#: model:ir.actions.act_window,name:help_online.action_import_help_wizard
msgid "Import Help"
msgstr ""
#. module: help_online
#: view:import.help.wizard:help_online.import_help_wizard_view
msgid "Import Help Data"
msgstr ""
#. module: help_online
#: model:ir.ui.menu,name:help_online.menu_help_import
msgid "Import Help Online"
msgstr ""
#. module: help_online
#: field:export.help.wizard,__last_update:0 field:help.online,__last_update:0
#: field:import.help.wizard,__last_update:0
msgid "Last Modified on"
msgstr "Последна промена на"
#. module: help_online
#: field:export.help.wizard,write_uid:0 field:help.online,write_uid:0
#: field:import.help.wizard,write_uid:0
msgid "Last Updated by"
msgstr "Последно ажурирање од"
#. module: help_online
#: field:export.help.wizard,write_date:0 field:help.online,write_date:0
#: field:import.help.wizard,write_date:0
msgid "Last Updated on"
msgstr "Последно ажурирање на"
#. module: help_online
#: code:addons/help_online/models/export_help_wizard.py:260
#, python-format
msgid "No data to export !"
msgstr ""
#. module: help_online
#: code:addons/help_online/models/help_online.py:33
#, python-format
msgid "No page prefix parameter specified !"
msgstr ""
#. module: help_online
#. openerp-web
#: code:addons/help_online/static/src/js/help_online.js:98
#, python-format
msgid "Ok"
msgstr ""
#. module: help_online
#. openerp-web
#: code:addons/help_online/static/src/js/help_online.js:117
#, python-format
msgid "Page does not exist. Do you want to create?"
msgstr ""
#. module: help_online
#: field:import.help.wizard,source_file:0
msgid "Source File"
msgstr ""
#. module: help_online
#: view:export.help.wizard:help_online.export_help_wizard_view
msgid ""
"This wizard allow you to export all QWeb views\n"
" related to help online. The result will be an Odoo\n"
" data xml file."
msgstr ""
#. module: help_online
#: view:import.help.wizard:help_online.import_help_wizard_view
msgid ""
"This wizard allow you to import QWeb views\n"
" related to help online. The required file format is "
"an Odoo\n"
" data xml file."
msgstr ""
#. module: help_online
#: code:addons/help_online/models/export_help_wizard.py:297
#, python-format
msgid "Unable to write autobackup file in given directory: %s"
msgstr ""
#. module: help_online
#: view:ir.ui.view:help_online.view_view_search
msgid "Website Page"
msgstr ""
#. module: help_online
#: view:ir.ui.view:help_online.view_view_form
msgid "Website Page?"
msgstr ""
#. module: help_online
#: model:ir.actions.act_window,name:help_online.action_website_pages
#: model:ir.ui.menu,name:help_online.menu_help_pages
msgid "Website Pages"
msgstr ""
#. module: help_online
#: field:export.help.wizard,data:0
msgid "XML"
msgstr ""
#. module: help_online
#: view:export.help.wizard:help_online.export_help_wizard_view
#: view:import.help.wizard:help_online.import_help_wizard_view
msgid "or"
msgstr "или"

238
help_online/i18n/mn.po

@ -0,0 +1,238 @@
# Translation of Odoo Server.
# This file contains the translation of the following modules:
# * help_online
#
# Translators:
msgid ""
msgstr ""
"Project-Id-Version: web (8.0)\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2018-01-16 08:57+0000\n"
"PO-Revision-Date: 2017-11-23 23:29+0000\n"
"Last-Translator: OCA Transbot <transbot@odoo-community.org>\n"
"Language-Team: Mongolian (http://www.transifex.com/oca/OCA-web-8-0/language/"
"mn/)\n"
"Language: mn\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: help_online
#. openerp-web
#: code:addons/help_online/static/src/js/help_online.js:93
#, python-format
msgid "Cancel"
msgstr "Цуцлах"
#. module: help_online
#: view:export.help.wizard:help_online.export_help_wizard_view
#: view:import.help.wizard:help_online.import_help_wizard_view
msgid "Close"
msgstr "Хаах"
#. module: help_online
#. openerp-web
#: code:addons/help_online/static/src/js/help_online.js:91
#, python-format
msgid "Confirm"
msgstr ""
#. module: help_online
#: code:addons/help_online/models/help_online.py:57
#, python-format
msgid "Create Help page for %s"
msgstr ""
#. module: help_online
#: field:export.help.wizard,create_uid:0 field:help.online,create_uid:0
#: field:import.help.wizard,create_uid:0
msgid "Created by"
msgstr "Үүсгэгч"
#. module: help_online
#: field:export.help.wizard,create_date:0 field:help.online,create_date:0
#: field:import.help.wizard,create_date:0
msgid "Created on"
msgstr "Үүсгэсэн"
#. module: help_online
#: field:export.help.wizard,display_name:0 field:help.online,display_name:0
#: field:import.help.wizard,display_name:0
msgid "Display Name"
msgstr "Дэлгэцийн Нэр"
#. module: help_online
#: view:export.help.wizard:help_online.export_help_wizard_view
msgid "Export"
msgstr ""
#. module: help_online
#: code:addons/help_online/models/export_help_wizard.py:267
#: model:ir.actions.act_window,name:help_online.action_export_help_wizard
#, python-format
msgid "Export Help"
msgstr ""
#. module: help_online
#: view:export.help.wizard:help_online.export_help_wizard_view
msgid "Export Help Data"
msgstr ""
#. module: help_online
#: model:ir.model,name:help_online.model_export_help_wizard
#: model:ir.ui.menu,name:help_online.menu_help_export
msgid "Export Help Online"
msgstr ""
#. module: help_online
#: field:export.help.wizard,export_filename:0
msgid "Export XML Filename"
msgstr ""
#. module: help_online
#: model:ir.ui.menu,name:help_online.menu_help
#: model:ir.ui.menu,name:help_online.menu_help_main
msgid "Help Online"
msgstr ""
#. module: help_online
#: code:addons/help_online/models/help_online.py:52
#, python-format
msgid "Help on %s"
msgstr ""
#. module: help_online
#: model:res.groups,name:help_online.help_online_group_reader
msgid "Help reader"
msgstr ""
#. module: help_online
#: model:res.groups,name:help_online.help_online_group_writer
msgid "Help writer"
msgstr ""
#. module: help_online
#: field:export.help.wizard,id:0 field:help.online,id:0
#: field:import.help.wizard,id:0
msgid "ID"
msgstr "ID"
#. module: help_online
#: view:import.help.wizard:help_online.import_help_wizard_view
msgid "Import"
msgstr ""
#. module: help_online
#: model:ir.actions.act_window,name:help_online.action_import_help_wizard
msgid "Import Help"
msgstr ""
#. module: help_online
#: view:import.help.wizard:help_online.import_help_wizard_view
msgid "Import Help Data"
msgstr ""
#. module: help_online
#: model:ir.ui.menu,name:help_online.menu_help_import
msgid "Import Help Online"
msgstr ""
#. module: help_online
#: field:export.help.wizard,__last_update:0 field:help.online,__last_update:0
#: field:import.help.wizard,__last_update:0
msgid "Last Modified on"
msgstr "Сүүлийн засвар хийсэн огноо"
#. module: help_online
#: field:export.help.wizard,write_uid:0 field:help.online,write_uid:0
#: field:import.help.wizard,write_uid:0
msgid "Last Updated by"
msgstr "Сүүлийн засвар хийсэн"
#. module: help_online
#: field:export.help.wizard,write_date:0 field:help.online,write_date:0
#: field:import.help.wizard,write_date:0
msgid "Last Updated on"
msgstr "Сүүлийн засвар хийсэн огноо"
#. module: help_online
#: code:addons/help_online/models/export_help_wizard.py:260
#, python-format
msgid "No data to export !"
msgstr ""
#. module: help_online
#: code:addons/help_online/models/help_online.py:33
#, python-format
msgid "No page prefix parameter specified !"
msgstr ""
#. module: help_online
#. openerp-web
#: code:addons/help_online/static/src/js/help_online.js:98
#, python-format
msgid "Ok"
msgstr ""
#. module: help_online
#. openerp-web
#: code:addons/help_online/static/src/js/help_online.js:117
#, python-format
msgid "Page does not exist. Do you want to create?"
msgstr ""
#. module: help_online
#: field:import.help.wizard,source_file:0
msgid "Source File"
msgstr ""
#. module: help_online
#: view:export.help.wizard:help_online.export_help_wizard_view
msgid ""
"This wizard allow you to export all QWeb views\n"
" related to help online. The result will be an Odoo\n"
" data xml file."
msgstr ""
#. module: help_online
#: view:import.help.wizard:help_online.import_help_wizard_view
msgid ""
"This wizard allow you to import QWeb views\n"
" related to help online. The required file format is "
"an Odoo\n"
" data xml file."
msgstr ""
#. module: help_online
#: code:addons/help_online/models/export_help_wizard.py:297
#, python-format
msgid "Unable to write autobackup file in given directory: %s"
msgstr ""
#. module: help_online
#: view:ir.ui.view:help_online.view_view_search
msgid "Website Page"
msgstr ""
#. module: help_online
#: view:ir.ui.view:help_online.view_view_form
msgid "Website Page?"
msgstr ""
#. module: help_online
#: model:ir.actions.act_window,name:help_online.action_website_pages
#: model:ir.ui.menu,name:help_online.menu_help_pages
msgid "Website Pages"
msgstr ""
#. module: help_online
#: field:export.help.wizard,data:0
msgid "XML"
msgstr ""
#. module: help_online
#: view:export.help.wizard:help_online.export_help_wizard_view
#: view:import.help.wizard:help_online.import_help_wizard_view
msgid "or"
msgstr "эсвэл"

238
help_online/i18n/nb.po

@ -0,0 +1,238 @@
# Translation of Odoo Server.
# This file contains the translation of the following modules:
# * help_online
#
# Translators:
msgid ""
msgstr ""
"Project-Id-Version: web (8.0)\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2018-01-16 08:57+0000\n"
"PO-Revision-Date: 2017-11-23 23:25+0000\n"
"Last-Translator: OCA Transbot <transbot@odoo-community.org>\n"
"Language-Team: Norwegian Bokmål (http://www.transifex.com/oca/OCA-web-8-0/"
"language/nb/)\n"
"Language: nb\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: help_online
#. openerp-web
#: code:addons/help_online/static/src/js/help_online.js:93
#, python-format
msgid "Cancel"
msgstr "Avbryt"
#. module: help_online
#: view:export.help.wizard:help_online.export_help_wizard_view
#: view:import.help.wizard:help_online.import_help_wizard_view
msgid "Close"
msgstr "Lukke"
#. module: help_online
#. openerp-web
#: code:addons/help_online/static/src/js/help_online.js:91
#, python-format
msgid "Confirm"
msgstr ""
#. module: help_online
#: code:addons/help_online/models/help_online.py:57
#, python-format
msgid "Create Help page for %s"
msgstr ""
#. module: help_online
#: field:export.help.wizard,create_uid:0 field:help.online,create_uid:0
#: field:import.help.wizard,create_uid:0
msgid "Created by"
msgstr "Opprettet av"
#. module: help_online
#: field:export.help.wizard,create_date:0 field:help.online,create_date:0
#: field:import.help.wizard,create_date:0
msgid "Created on"
msgstr "Opprettet den"
#. module: help_online
#: field:export.help.wizard,display_name:0 field:help.online,display_name:0
#: field:import.help.wizard,display_name:0
msgid "Display Name"
msgstr "Visnings navn"
#. module: help_online
#: view:export.help.wizard:help_online.export_help_wizard_view
msgid "Export"
msgstr ""
#. module: help_online
#: code:addons/help_online/models/export_help_wizard.py:267
#: model:ir.actions.act_window,name:help_online.action_export_help_wizard
#, python-format
msgid "Export Help"
msgstr ""
#. module: help_online
#: view:export.help.wizard:help_online.export_help_wizard_view
msgid "Export Help Data"
msgstr ""
#. module: help_online
#: model:ir.model,name:help_online.model_export_help_wizard
#: model:ir.ui.menu,name:help_online.menu_help_export
msgid "Export Help Online"
msgstr ""
#. module: help_online
#: field:export.help.wizard,export_filename:0
msgid "Export XML Filename"
msgstr ""
#. module: help_online
#: model:ir.ui.menu,name:help_online.menu_help
#: model:ir.ui.menu,name:help_online.menu_help_main
msgid "Help Online"
msgstr ""
#. module: help_online
#: code:addons/help_online/models/help_online.py:52
#, python-format
msgid "Help on %s"
msgstr ""
#. module: help_online
#: model:res.groups,name:help_online.help_online_group_reader
msgid "Help reader"
msgstr ""
#. module: help_online
#: model:res.groups,name:help_online.help_online_group_writer
msgid "Help writer"
msgstr ""
#. module: help_online
#: field:export.help.wizard,id:0 field:help.online,id:0
#: field:import.help.wizard,id:0
msgid "ID"
msgstr "ID"
#. module: help_online
#: view:import.help.wizard:help_online.import_help_wizard_view
msgid "Import"
msgstr ""
#. module: help_online
#: model:ir.actions.act_window,name:help_online.action_import_help_wizard
msgid "Import Help"
msgstr ""
#. module: help_online
#: view:import.help.wizard:help_online.import_help_wizard_view
msgid "Import Help Data"
msgstr ""
#. module: help_online
#: model:ir.ui.menu,name:help_online.menu_help_import
msgid "Import Help Online"
msgstr ""
#. module: help_online
#: field:export.help.wizard,__last_update:0 field:help.online,__last_update:0
#: field:import.help.wizard,__last_update:0
msgid "Last Modified on"
msgstr "Sist oppdatert "
#. module: help_online
#: field:export.help.wizard,write_uid:0 field:help.online,write_uid:0
#: field:import.help.wizard,write_uid:0
msgid "Last Updated by"
msgstr "Sist oppdatert av"
#. module: help_online
#: field:export.help.wizard,write_date:0 field:help.online,write_date:0
#: field:import.help.wizard,write_date:0
msgid "Last Updated on"
msgstr "Sist oppdatert"
#. module: help_online
#: code:addons/help_online/models/export_help_wizard.py:260
#, python-format
msgid "No data to export !"
msgstr ""
#. module: help_online
#: code:addons/help_online/models/help_online.py:33
#, python-format
msgid "No page prefix parameter specified !"
msgstr ""
#. module: help_online
#. openerp-web
#: code:addons/help_online/static/src/js/help_online.js:98
#, python-format
msgid "Ok"
msgstr ""
#. module: help_online
#. openerp-web
#: code:addons/help_online/static/src/js/help_online.js:117
#, python-format
msgid "Page does not exist. Do you want to create?"
msgstr ""
#. module: help_online
#: field:import.help.wizard,source_file:0
msgid "Source File"
msgstr ""
#. module: help_online
#: view:export.help.wizard:help_online.export_help_wizard_view
msgid ""
"This wizard allow you to export all QWeb views\n"
" related to help online. The result will be an Odoo\n"
" data xml file."
msgstr ""
#. module: help_online
#: view:import.help.wizard:help_online.import_help_wizard_view
msgid ""
"This wizard allow you to import QWeb views\n"
" related to help online. The required file format is "
"an Odoo\n"
" data xml file."
msgstr ""
#. module: help_online
#: code:addons/help_online/models/export_help_wizard.py:297
#, python-format
msgid "Unable to write autobackup file in given directory: %s"
msgstr ""
#. module: help_online
#: view:ir.ui.view:help_online.view_view_search
msgid "Website Page"
msgstr ""
#. module: help_online
#: view:ir.ui.view:help_online.view_view_form
msgid "Website Page?"
msgstr ""
#. module: help_online
#: model:ir.actions.act_window,name:help_online.action_website_pages
#: model:ir.ui.menu,name:help_online.menu_help_pages
msgid "Website Pages"
msgstr ""
#. module: help_online
#: field:export.help.wizard,data:0
msgid "XML"
msgstr ""
#. module: help_online
#: view:export.help.wizard:help_online.export_help_wizard_view
#: view:import.help.wizard:help_online.import_help_wizard_view
msgid "or"
msgstr "eller"

238
help_online/i18n/nb_NO.po

@ -0,0 +1,238 @@
# Translation of Odoo Server.
# This file contains the translation of the following modules:
# * help_online
#
# Translators:
msgid ""
msgstr ""
"Project-Id-Version: web (8.0)\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2016-12-29 03:45+0000\n"
"PO-Revision-Date: 2016-12-27 08:26+0000\n"
"Last-Translator: OCA Transbot <transbot@odoo-community.org>\n"
"Language-Team: Norwegian Bokmål (Norway) (http://www.transifex.com/oca/OCA-"
"web-8-0/language/nb_NO/)\n"
"Language: nb_NO\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: help_online
#. openerp-web
#: code:addons/help_online/static/src/js/help_online.js:93
#, python-format
msgid "Cancel"
msgstr "Lukk"
#. module: help_online
#: view:export.help.wizard:help_online.export_help_wizard_view
#: view:import.help.wizard:help_online.import_help_wizard_view
msgid "Close"
msgstr ""
#. module: help_online
#. openerp-web
#: code:addons/help_online/static/src/js/help_online.js:91
#, python-format
msgid "Confirm"
msgstr ""
#. module: help_online
#: code:addons/help_online/models/help_online.py:57
#, python-format
msgid "Create Help page for %s"
msgstr ""
#. module: help_online
#: field:export.help.wizard,create_uid:0 field:help.online,create_uid:0
#: field:import.help.wizard,create_uid:0
msgid "Created by"
msgstr "Laget av"
#. module: help_online
#: field:export.help.wizard,create_date:0 field:help.online,create_date:0
#: field:import.help.wizard,create_date:0
msgid "Created on"
msgstr "Laget den"
#. module: help_online
#: field:export.help.wizard,display_name:0 field:help.online,display_name:0
#: field:import.help.wizard,display_name:0
msgid "Display Name"
msgstr "Vis navn"
#. module: help_online
#: view:export.help.wizard:help_online.export_help_wizard_view
msgid "Export"
msgstr ""
#. module: help_online
#: code:addons/help_online/models/export_help_wizard.py:267
#: model:ir.actions.act_window,name:help_online.action_export_help_wizard
#, python-format
msgid "Export Help"
msgstr ""
#. module: help_online
#: view:export.help.wizard:help_online.export_help_wizard_view
msgid "Export Help Data"
msgstr ""
#. module: help_online
#: model:ir.model,name:help_online.model_export_help_wizard
#: model:ir.ui.menu,name:help_online.menu_help_export
msgid "Export Help Online"
msgstr ""
#. module: help_online
#: field:export.help.wizard,export_filename:0
msgid "Export XML Filename"
msgstr ""
#. module: help_online
#: model:ir.ui.menu,name:help_online.menu_help
#: model:ir.ui.menu,name:help_online.menu_help_main
msgid "Help Online"
msgstr ""
#. module: help_online
#: code:addons/help_online/models/help_online.py:52
#, python-format
msgid "Help on %s"
msgstr ""
#. module: help_online
#: model:res.groups,name:help_online.help_online_group_reader
msgid "Help reader"
msgstr ""
#. module: help_online
#: model:res.groups,name:help_online.help_online_group_writer
msgid "Help writer"
msgstr ""
#. module: help_online
#: field:export.help.wizard,id:0 field:help.online,id:0
#: field:import.help.wizard,id:0
msgid "ID"
msgstr "ID"
#. module: help_online
#: view:import.help.wizard:help_online.import_help_wizard_view
msgid "Import"
msgstr ""
#. module: help_online
#: model:ir.actions.act_window,name:help_online.action_import_help_wizard
msgid "Import Help"
msgstr ""
#. module: help_online
#: view:import.help.wizard:help_online.import_help_wizard_view
msgid "Import Help Data"
msgstr ""
#. module: help_online
#: model:ir.ui.menu,name:help_online.menu_help_import
msgid "Import Help Online"
msgstr ""
#. module: help_online
#: field:export.help.wizard,__last_update:0 field:help.online,__last_update:0
#: field:import.help.wizard,__last_update:0
msgid "Last Modified on"
msgstr "Sist endret den"
#. module: help_online
#: field:export.help.wizard,write_uid:0 field:help.online,write_uid:0
#: field:import.help.wizard,write_uid:0
msgid "Last Updated by"
msgstr "Sist oppdatert av"
#. module: help_online
#: field:export.help.wizard,write_date:0 field:help.online,write_date:0
#: field:import.help.wizard,write_date:0
msgid "Last Updated on"
msgstr "Sist oppdatert den"
#. module: help_online
#: code:addons/help_online/models/export_help_wizard.py:260
#, python-format
msgid "No data to export !"
msgstr ""
#. module: help_online
#: code:addons/help_online/models/help_online.py:33
#, python-format
msgid "No page prefix parameter specified !"
msgstr ""
#. module: help_online
#. openerp-web
#: code:addons/help_online/static/src/js/help_online.js:98
#, python-format
msgid "Ok"
msgstr ""
#. module: help_online
#. openerp-web
#: code:addons/help_online/static/src/js/help_online.js:117
#, python-format
msgid "Page does not exist. Do you want to create?"
msgstr ""
#. module: help_online
#: field:import.help.wizard,source_file:0
msgid "Source File"
msgstr ""
#. module: help_online
#: view:export.help.wizard:help_online.export_help_wizard_view
msgid ""
"This wizard allow you to export all QWeb views\n"
" related to help online. The result will be an Odoo\n"
" data xml file."
msgstr ""
#. module: help_online
#: view:import.help.wizard:help_online.import_help_wizard_view
msgid ""
"This wizard allow you to import QWeb views\n"
" related to help online. The required file format is "
"an Odoo\n"
" data xml file."
msgstr ""
#. module: help_online
#: code:addons/help_online/models/export_help_wizard.py:297
#, python-format
msgid "Unable to write autobackup file in given directory: %s"
msgstr ""
#. module: help_online
#: view:ir.ui.view:help_online.view_view_search
msgid "Website Page"
msgstr ""
#. module: help_online
#: view:ir.ui.view:help_online.view_view_form
msgid "Website Page?"
msgstr ""
#. module: help_online
#: model:ir.actions.act_window,name:help_online.action_website_pages
#: model:ir.ui.menu,name:help_online.menu_help_pages
msgid "Website Pages"
msgstr ""
#. module: help_online
#: field:export.help.wizard,data:0
msgid "XML"
msgstr ""
#. module: help_online
#: view:export.help.wizard:help_online.export_help_wizard_view
#: view:import.help.wizard:help_online.import_help_wizard_view
msgid "or"
msgstr ""

239
help_online/i18n/nl.po

@ -0,0 +1,239 @@
# Translation of Odoo Server.
# This file contains the translation of the following modules:
# * help_online
#
# Translators:
# wilcobergacker <wilcobergacker@gmail.com>, 2017
msgid ""
msgstr ""
"Project-Id-Version: web (8.0)\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2017-01-21 08:51+0000\n"
"PO-Revision-Date: 2017-02-01 11:20+0000\n"
"Last-Translator: wilcobergacker <wilcobergacker@gmail.com>\n"
"Language-Team: Dutch (http://www.transifex.com/oca/OCA-web-8-0/language/"
"nl/)\n"
"Language: nl\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: help_online
#. openerp-web
#: code:addons/help_online/static/src/js/help_online.js:93
#, python-format
msgid "Cancel"
msgstr "Annuleren"
#. module: help_online
#: view:export.help.wizard:help_online.export_help_wizard_view
#: view:import.help.wizard:help_online.import_help_wizard_view
msgid "Close"
msgstr "Sluiten"
#. module: help_online
#. openerp-web
#: code:addons/help_online/static/src/js/help_online.js:91
#, python-format
msgid "Confirm"
msgstr "Bevestigen"
#. module: help_online
#: code:addons/help_online/models/help_online.py:57
#, python-format
msgid "Create Help page for %s"
msgstr ""
#. module: help_online
#: field:export.help.wizard,create_uid:0 field:help.online,create_uid:0
#: field:import.help.wizard,create_uid:0
msgid "Created by"
msgstr "Aangemaakt door"
#. module: help_online
#: field:export.help.wizard,create_date:0 field:help.online,create_date:0
#: field:import.help.wizard,create_date:0
msgid "Created on"
msgstr "Aangemaakt op"
#. module: help_online
#: field:export.help.wizard,display_name:0 field:help.online,display_name:0
#: field:import.help.wizard,display_name:0
msgid "Display Name"
msgstr "Te tonen naam"
#. module: help_online
#: view:export.help.wizard:help_online.export_help_wizard_view
msgid "Export"
msgstr ""
#. module: help_online
#: code:addons/help_online/models/export_help_wizard.py:267
#: model:ir.actions.act_window,name:help_online.action_export_help_wizard
#, python-format
msgid "Export Help"
msgstr ""
#. module: help_online
#: view:export.help.wizard:help_online.export_help_wizard_view
msgid "Export Help Data"
msgstr ""
#. module: help_online
#: model:ir.model,name:help_online.model_export_help_wizard
#: model:ir.ui.menu,name:help_online.menu_help_export
msgid "Export Help Online"
msgstr ""
#. module: help_online
#: field:export.help.wizard,export_filename:0
msgid "Export XML Filename"
msgstr ""
#. module: help_online
#: model:ir.ui.menu,name:help_online.menu_help
#: model:ir.ui.menu,name:help_online.menu_help_main
msgid "Help Online"
msgstr ""
#. module: help_online
#: code:addons/help_online/models/help_online.py:52
#, python-format
msgid "Help on %s"
msgstr ""
#. module: help_online
#: model:res.groups,name:help_online.help_online_group_reader
msgid "Help reader"
msgstr ""
#. module: help_online
#: model:res.groups,name:help_online.help_online_group_writer
msgid "Help writer"
msgstr ""
#. module: help_online
#: field:export.help.wizard,id:0 field:help.online,id:0
#: field:import.help.wizard,id:0
msgid "ID"
msgstr "ID"
#. module: help_online
#: view:import.help.wizard:help_online.import_help_wizard_view
msgid "Import"
msgstr ""
#. module: help_online
#: model:ir.actions.act_window,name:help_online.action_import_help_wizard
msgid "Import Help"
msgstr ""
#. module: help_online
#: view:import.help.wizard:help_online.import_help_wizard_view
msgid "Import Help Data"
msgstr ""
#. module: help_online
#: model:ir.ui.menu,name:help_online.menu_help_import
msgid "Import Help Online"
msgstr ""
#. module: help_online
#: field:export.help.wizard,__last_update:0 field:help.online,__last_update:0
#: field:import.help.wizard,__last_update:0
msgid "Last Modified on"
msgstr "Laatst bijgewerkt op"
#. module: help_online
#: field:export.help.wizard,write_uid:0 field:help.online,write_uid:0
#: field:import.help.wizard,write_uid:0
msgid "Last Updated by"
msgstr "Laatst bijgewerkt door"
#. module: help_online
#: field:export.help.wizard,write_date:0 field:help.online,write_date:0
#: field:import.help.wizard,write_date:0
msgid "Last Updated on"
msgstr "Laatst bijgewerkt op"
#. module: help_online
#: code:addons/help_online/models/export_help_wizard.py:260
#, python-format
msgid "No data to export !"
msgstr ""
#. module: help_online
#: code:addons/help_online/models/help_online.py:33
#, python-format
msgid "No page prefix parameter specified !"
msgstr ""
#. module: help_online
#. openerp-web
#: code:addons/help_online/static/src/js/help_online.js:98
#, python-format
msgid "Ok"
msgstr ""
#. module: help_online
#. openerp-web
#: code:addons/help_online/static/src/js/help_online.js:117
#, python-format
msgid "Page does not exist. Do you want to create?"
msgstr ""
#. module: help_online
#: field:import.help.wizard,source_file:0
msgid "Source File"
msgstr ""
#. module: help_online
#: view:export.help.wizard:help_online.export_help_wizard_view
msgid ""
"This wizard allow you to export all QWeb views\n"
" related to help online. The result will be an Odoo\n"
" data xml file."
msgstr ""
#. module: help_online
#: view:import.help.wizard:help_online.import_help_wizard_view
msgid ""
"This wizard allow you to import QWeb views\n"
" related to help online. The required file format is "
"an Odoo\n"
" data xml file."
msgstr ""
#. module: help_online
#: code:addons/help_online/models/export_help_wizard.py:297
#, python-format
msgid "Unable to write autobackup file in given directory: %s"
msgstr ""
#. module: help_online
#: view:ir.ui.view:help_online.view_view_search
msgid "Website Page"
msgstr ""
#. module: help_online
#: view:ir.ui.view:help_online.view_view_form
msgid "Website Page?"
msgstr ""
#. module: help_online
#: model:ir.actions.act_window,name:help_online.action_website_pages
#: model:ir.ui.menu,name:help_online.menu_help_pages
msgid "Website Pages"
msgstr ""
#. module: help_online
#: field:export.help.wizard,data:0
msgid "XML"
msgstr ""
#. module: help_online
#: view:export.help.wizard:help_online.export_help_wizard_view
#: view:import.help.wizard:help_online.import_help_wizard_view
msgid "or"
msgstr "of"

238
help_online/i18n/nl_BE.po

@ -0,0 +1,238 @@
# Translation of Odoo Server.
# This file contains the translation of the following modules:
# * help_online
#
# Translators:
msgid ""
msgstr ""
"Project-Id-Version: web (8.0)\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2018-01-16 08:57+0000\n"
"PO-Revision-Date: 2017-11-23 23:25+0000\n"
"Last-Translator: OCA Transbot <transbot@odoo-community.org>\n"
"Language-Team: Dutch (Belgium) (http://www.transifex.com/oca/OCA-web-8-0/"
"language/nl_BE/)\n"
"Language: nl_BE\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: help_online
#. openerp-web
#: code:addons/help_online/static/src/js/help_online.js:93
#, python-format
msgid "Cancel"
msgstr "Annuleren"
#. module: help_online
#: view:export.help.wizard:help_online.export_help_wizard_view
#: view:import.help.wizard:help_online.import_help_wizard_view
msgid "Close"
msgstr "Afsluiten"
#. module: help_online
#. openerp-web
#: code:addons/help_online/static/src/js/help_online.js:91
#, python-format
msgid "Confirm"
msgstr ""
#. module: help_online
#: code:addons/help_online/models/help_online.py:57
#, python-format
msgid "Create Help page for %s"
msgstr ""
#. module: help_online
#: field:export.help.wizard,create_uid:0 field:help.online,create_uid:0
#: field:import.help.wizard,create_uid:0
msgid "Created by"
msgstr "Gemaakt door"
#. module: help_online
#: field:export.help.wizard,create_date:0 field:help.online,create_date:0
#: field:import.help.wizard,create_date:0
msgid "Created on"
msgstr "Gemaakt op"
#. module: help_online
#: field:export.help.wizard,display_name:0 field:help.online,display_name:0
#: field:import.help.wizard,display_name:0
msgid "Display Name"
msgstr "Schermnaam"
#. module: help_online
#: view:export.help.wizard:help_online.export_help_wizard_view
msgid "Export"
msgstr ""
#. module: help_online
#: code:addons/help_online/models/export_help_wizard.py:267
#: model:ir.actions.act_window,name:help_online.action_export_help_wizard
#, python-format
msgid "Export Help"
msgstr ""
#. module: help_online
#: view:export.help.wizard:help_online.export_help_wizard_view
msgid "Export Help Data"
msgstr ""
#. module: help_online
#: model:ir.model,name:help_online.model_export_help_wizard
#: model:ir.ui.menu,name:help_online.menu_help_export
msgid "Export Help Online"
msgstr ""
#. module: help_online
#: field:export.help.wizard,export_filename:0
msgid "Export XML Filename"
msgstr ""
#. module: help_online
#: model:ir.ui.menu,name:help_online.menu_help
#: model:ir.ui.menu,name:help_online.menu_help_main
msgid "Help Online"
msgstr ""
#. module: help_online
#: code:addons/help_online/models/help_online.py:52
#, python-format
msgid "Help on %s"
msgstr ""
#. module: help_online
#: model:res.groups,name:help_online.help_online_group_reader
msgid "Help reader"
msgstr ""
#. module: help_online
#: model:res.groups,name:help_online.help_online_group_writer
msgid "Help writer"
msgstr ""
#. module: help_online
#: field:export.help.wizard,id:0 field:help.online,id:0
#: field:import.help.wizard,id:0
msgid "ID"
msgstr "ID"
#. module: help_online
#: view:import.help.wizard:help_online.import_help_wizard_view
msgid "Import"
msgstr ""
#. module: help_online
#: model:ir.actions.act_window,name:help_online.action_import_help_wizard
msgid "Import Help"
msgstr ""
#. module: help_online
#: view:import.help.wizard:help_online.import_help_wizard_view
msgid "Import Help Data"
msgstr ""
#. module: help_online
#: model:ir.ui.menu,name:help_online.menu_help_import
msgid "Import Help Online"
msgstr ""
#. module: help_online
#: field:export.help.wizard,__last_update:0 field:help.online,__last_update:0
#: field:import.help.wizard,__last_update:0
msgid "Last Modified on"
msgstr "Laatst Aangepast op"
#. module: help_online
#: field:export.help.wizard,write_uid:0 field:help.online,write_uid:0
#: field:import.help.wizard,write_uid:0
msgid "Last Updated by"
msgstr "Laatst bijgewerkt door"
#. module: help_online
#: field:export.help.wizard,write_date:0 field:help.online,write_date:0
#: field:import.help.wizard,write_date:0
msgid "Last Updated on"
msgstr "Laatst bijgewerkt op"
#. module: help_online
#: code:addons/help_online/models/export_help_wizard.py:260
#, python-format
msgid "No data to export !"
msgstr ""
#. module: help_online
#: code:addons/help_online/models/help_online.py:33
#, python-format
msgid "No page prefix parameter specified !"
msgstr ""
#. module: help_online
#. openerp-web
#: code:addons/help_online/static/src/js/help_online.js:98
#, python-format
msgid "Ok"
msgstr ""
#. module: help_online
#. openerp-web
#: code:addons/help_online/static/src/js/help_online.js:117
#, python-format
msgid "Page does not exist. Do you want to create?"
msgstr ""
#. module: help_online
#: field:import.help.wizard,source_file:0
msgid "Source File"
msgstr ""
#. module: help_online
#: view:export.help.wizard:help_online.export_help_wizard_view
msgid ""
"This wizard allow you to export all QWeb views\n"
" related to help online. The result will be an Odoo\n"
" data xml file."
msgstr ""
#. module: help_online
#: view:import.help.wizard:help_online.import_help_wizard_view
msgid ""
"This wizard allow you to import QWeb views\n"
" related to help online. The required file format is "
"an Odoo\n"
" data xml file."
msgstr ""
#. module: help_online
#: code:addons/help_online/models/export_help_wizard.py:297
#, python-format
msgid "Unable to write autobackup file in given directory: %s"
msgstr ""
#. module: help_online
#: view:ir.ui.view:help_online.view_view_search
msgid "Website Page"
msgstr ""
#. module: help_online
#: view:ir.ui.view:help_online.view_view_form
msgid "Website Page?"
msgstr ""
#. module: help_online
#: model:ir.actions.act_window,name:help_online.action_website_pages
#: model:ir.ui.menu,name:help_online.menu_help_pages
msgid "Website Pages"
msgstr ""
#. module: help_online
#: field:export.help.wizard,data:0
msgid "XML"
msgstr ""
#. module: help_online
#: view:export.help.wizard:help_online.export_help_wizard_view
#: view:import.help.wizard:help_online.import_help_wizard_view
msgid "or"
msgstr "of"

238
help_online/i18n/nl_NL.po

@ -0,0 +1,238 @@
# Translation of Odoo Server.
# This file contains the translation of the following modules:
# * help_online
#
# Translators:
msgid ""
msgstr ""
"Project-Id-Version: web (8.0)\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2018-01-16 08:57+0000\n"
"PO-Revision-Date: 2017-09-22 17:19+0000\n"
"Last-Translator: OCA Transbot <transbot@odoo-community.org>\n"
"Language-Team: Dutch (Netherlands) (http://www.transifex.com/oca/OCA-web-8-0/"
"language/nl_NL/)\n"
"Language: nl_NL\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: help_online
#. openerp-web
#: code:addons/help_online/static/src/js/help_online.js:93
#, python-format
msgid "Cancel"
msgstr "Verwijderen"
#. module: help_online
#: view:export.help.wizard:help_online.export_help_wizard_view
#: view:import.help.wizard:help_online.import_help_wizard_view
msgid "Close"
msgstr ""
#. module: help_online
#. openerp-web
#: code:addons/help_online/static/src/js/help_online.js:91
#, python-format
msgid "Confirm"
msgstr ""
#. module: help_online
#: code:addons/help_online/models/help_online.py:57
#, python-format
msgid "Create Help page for %s"
msgstr ""
#. module: help_online
#: field:export.help.wizard,create_uid:0 field:help.online,create_uid:0
#: field:import.help.wizard,create_uid:0
msgid "Created by"
msgstr "Aangemaakt door"
#. module: help_online
#: field:export.help.wizard,create_date:0 field:help.online,create_date:0
#: field:import.help.wizard,create_date:0
msgid "Created on"
msgstr "Aangemaakt op"
#. module: help_online
#: field:export.help.wizard,display_name:0 field:help.online,display_name:0
#: field:import.help.wizard,display_name:0
msgid "Display Name"
msgstr "Weergavenaam"
#. module: help_online
#: view:export.help.wizard:help_online.export_help_wizard_view
msgid "Export"
msgstr ""
#. module: help_online
#: code:addons/help_online/models/export_help_wizard.py:267
#: model:ir.actions.act_window,name:help_online.action_export_help_wizard
#, python-format
msgid "Export Help"
msgstr ""
#. module: help_online
#: view:export.help.wizard:help_online.export_help_wizard_view
msgid "Export Help Data"
msgstr ""
#. module: help_online
#: model:ir.model,name:help_online.model_export_help_wizard
#: model:ir.ui.menu,name:help_online.menu_help_export
msgid "Export Help Online"
msgstr ""
#. module: help_online
#: field:export.help.wizard,export_filename:0
msgid "Export XML Filename"
msgstr ""
#. module: help_online
#: model:ir.ui.menu,name:help_online.menu_help
#: model:ir.ui.menu,name:help_online.menu_help_main
msgid "Help Online"
msgstr ""
#. module: help_online
#: code:addons/help_online/models/help_online.py:52
#, python-format
msgid "Help on %s"
msgstr ""
#. module: help_online
#: model:res.groups,name:help_online.help_online_group_reader
msgid "Help reader"
msgstr ""
#. module: help_online
#: model:res.groups,name:help_online.help_online_group_writer
msgid "Help writer"
msgstr ""
#. module: help_online
#: field:export.help.wizard,id:0 field:help.online,id:0
#: field:import.help.wizard,id:0
msgid "ID"
msgstr "ID"
#. module: help_online
#: view:import.help.wizard:help_online.import_help_wizard_view
msgid "Import"
msgstr ""
#. module: help_online
#: model:ir.actions.act_window,name:help_online.action_import_help_wizard
msgid "Import Help"
msgstr ""
#. module: help_online
#: view:import.help.wizard:help_online.import_help_wizard_view
msgid "Import Help Data"
msgstr ""
#. module: help_online
#: model:ir.ui.menu,name:help_online.menu_help_import
msgid "Import Help Online"
msgstr ""
#. module: help_online
#: field:export.help.wizard,__last_update:0 field:help.online,__last_update:0
#: field:import.help.wizard,__last_update:0
msgid "Last Modified on"
msgstr "Laatst gewijzigd op"
#. module: help_online
#: field:export.help.wizard,write_uid:0 field:help.online,write_uid:0
#: field:import.help.wizard,write_uid:0
msgid "Last Updated by"
msgstr "Laatst bijgewerkt door"
#. module: help_online
#: field:export.help.wizard,write_date:0 field:help.online,write_date:0
#: field:import.help.wizard,write_date:0
msgid "Last Updated on"
msgstr "Laatst bijgewerkt op"
#. module: help_online
#: code:addons/help_online/models/export_help_wizard.py:260
#, python-format
msgid "No data to export !"
msgstr ""
#. module: help_online
#: code:addons/help_online/models/help_online.py:33
#, python-format
msgid "No page prefix parameter specified !"
msgstr ""
#. module: help_online
#. openerp-web
#: code:addons/help_online/static/src/js/help_online.js:98
#, python-format
msgid "Ok"
msgstr ""
#. module: help_online
#. openerp-web
#: code:addons/help_online/static/src/js/help_online.js:117
#, python-format
msgid "Page does not exist. Do you want to create?"
msgstr ""
#. module: help_online
#: field:import.help.wizard,source_file:0
msgid "Source File"
msgstr ""
#. module: help_online
#: view:export.help.wizard:help_online.export_help_wizard_view
msgid ""
"This wizard allow you to export all QWeb views\n"
" related to help online. The result will be an Odoo\n"
" data xml file."
msgstr ""
#. module: help_online
#: view:import.help.wizard:help_online.import_help_wizard_view
msgid ""
"This wizard allow you to import QWeb views\n"
" related to help online. The required file format is "
"an Odoo\n"
" data xml file."
msgstr ""
#. module: help_online
#: code:addons/help_online/models/export_help_wizard.py:297
#, python-format
msgid "Unable to write autobackup file in given directory: %s"
msgstr ""
#. module: help_online
#: view:ir.ui.view:help_online.view_view_search
msgid "Website Page"
msgstr ""
#. module: help_online
#: view:ir.ui.view:help_online.view_view_form
msgid "Website Page?"
msgstr ""
#. module: help_online
#: model:ir.actions.act_window,name:help_online.action_website_pages
#: model:ir.ui.menu,name:help_online.menu_help_pages
msgid "Website Pages"
msgstr ""
#. module: help_online
#: field:export.help.wizard,data:0
msgid "XML"
msgstr ""
#. module: help_online
#: view:export.help.wizard:help_online.export_help_wizard_view
#: view:import.help.wizard:help_online.import_help_wizard_view
msgid "or"
msgstr ""

240
help_online/i18n/pl.po

@ -0,0 +1,240 @@
# Translation of Odoo Server.
# This file contains the translation of the following modules:
# * help_online
#
# Translators:
msgid ""
msgstr ""
"Project-Id-Version: web (8.0)\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2018-01-16 08:57+0000\n"
"PO-Revision-Date: 2017-11-23 23:27+0000\n"
"Last-Translator: OCA Transbot <transbot@odoo-community.org>\n"
"Language-Team: Polish (http://www.transifex.com/oca/OCA-web-8-0/language/"
"pl/)\n"
"Language: pl\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: \n"
"Plural-Forms: nplurals=4; plural=(n==1 ? 0 : (n%10>=2 && n%10<=4) && (n"
"%100<12 || n%100>14) ? 1 : n!=1 && (n%10>=0 && n%10<=1) || (n%10>=5 && n"
"%10<=9) || (n%100>=12 && n%100<=14) ? 2 : 3);\n"
#. module: help_online
#. openerp-web
#: code:addons/help_online/static/src/js/help_online.js:93
#, python-format
msgid "Cancel"
msgstr "Anuluj"
#. module: help_online
#: view:export.help.wizard:help_online.export_help_wizard_view
#: view:import.help.wizard:help_online.import_help_wizard_view
msgid "Close"
msgstr "Zamknięte"
#. module: help_online
#. openerp-web
#: code:addons/help_online/static/src/js/help_online.js:91
#, python-format
msgid "Confirm"
msgstr ""
#. module: help_online
#: code:addons/help_online/models/help_online.py:57
#, python-format
msgid "Create Help page for %s"
msgstr ""
#. module: help_online
#: field:export.help.wizard,create_uid:0 field:help.online,create_uid:0
#: field:import.help.wizard,create_uid:0
msgid "Created by"
msgstr "Utworzone przez"
#. module: help_online
#: field:export.help.wizard,create_date:0 field:help.online,create_date:0
#: field:import.help.wizard,create_date:0
msgid "Created on"
msgstr "Utworzono"
#. module: help_online
#: field:export.help.wizard,display_name:0 field:help.online,display_name:0
#: field:import.help.wizard,display_name:0
msgid "Display Name"
msgstr "Wyświetlana nazwa "
#. module: help_online
#: view:export.help.wizard:help_online.export_help_wizard_view
msgid "Export"
msgstr ""
#. module: help_online
#: code:addons/help_online/models/export_help_wizard.py:267
#: model:ir.actions.act_window,name:help_online.action_export_help_wizard
#, python-format
msgid "Export Help"
msgstr ""
#. module: help_online
#: view:export.help.wizard:help_online.export_help_wizard_view
msgid "Export Help Data"
msgstr ""
#. module: help_online
#: model:ir.model,name:help_online.model_export_help_wizard
#: model:ir.ui.menu,name:help_online.menu_help_export
msgid "Export Help Online"
msgstr ""
#. module: help_online
#: field:export.help.wizard,export_filename:0
msgid "Export XML Filename"
msgstr ""
#. module: help_online
#: model:ir.ui.menu,name:help_online.menu_help
#: model:ir.ui.menu,name:help_online.menu_help_main
msgid "Help Online"
msgstr ""
#. module: help_online
#: code:addons/help_online/models/help_online.py:52
#, python-format
msgid "Help on %s"
msgstr ""
#. module: help_online
#: model:res.groups,name:help_online.help_online_group_reader
msgid "Help reader"
msgstr ""
#. module: help_online
#: model:res.groups,name:help_online.help_online_group_writer
msgid "Help writer"
msgstr ""
#. module: help_online
#: field:export.help.wizard,id:0 field:help.online,id:0
#: field:import.help.wizard,id:0
msgid "ID"
msgstr "ID"
#. module: help_online
#: view:import.help.wizard:help_online.import_help_wizard_view
msgid "Import"
msgstr ""
#. module: help_online
#: model:ir.actions.act_window,name:help_online.action_import_help_wizard
msgid "Import Help"
msgstr ""
#. module: help_online
#: view:import.help.wizard:help_online.import_help_wizard_view
msgid "Import Help Data"
msgstr ""
#. module: help_online
#: model:ir.ui.menu,name:help_online.menu_help_import
msgid "Import Help Online"
msgstr ""
#. module: help_online
#: field:export.help.wizard,__last_update:0 field:help.online,__last_update:0
#: field:import.help.wizard,__last_update:0
msgid "Last Modified on"
msgstr "Ostatnio modyfikowano"
#. module: help_online
#: field:export.help.wizard,write_uid:0 field:help.online,write_uid:0
#: field:import.help.wizard,write_uid:0
msgid "Last Updated by"
msgstr "Ostatnio modyfikowane przez"
#. module: help_online
#: field:export.help.wizard,write_date:0 field:help.online,write_date:0
#: field:import.help.wizard,write_date:0
msgid "Last Updated on"
msgstr "Ostatnia zmiana"
#. module: help_online
#: code:addons/help_online/models/export_help_wizard.py:260
#, python-format
msgid "No data to export !"
msgstr ""
#. module: help_online
#: code:addons/help_online/models/help_online.py:33
#, python-format
msgid "No page prefix parameter specified !"
msgstr ""
#. module: help_online
#. openerp-web
#: code:addons/help_online/static/src/js/help_online.js:98
#, python-format
msgid "Ok"
msgstr ""
#. module: help_online
#. openerp-web
#: code:addons/help_online/static/src/js/help_online.js:117
#, python-format
msgid "Page does not exist. Do you want to create?"
msgstr ""
#. module: help_online
#: field:import.help.wizard,source_file:0
msgid "Source File"
msgstr ""
#. module: help_online
#: view:export.help.wizard:help_online.export_help_wizard_view
msgid ""
"This wizard allow you to export all QWeb views\n"
" related to help online. The result will be an Odoo\n"
" data xml file."
msgstr ""
#. module: help_online
#: view:import.help.wizard:help_online.import_help_wizard_view
msgid ""
"This wizard allow you to import QWeb views\n"
" related to help online. The required file format is "
"an Odoo\n"
" data xml file."
msgstr ""
#. module: help_online
#: code:addons/help_online/models/export_help_wizard.py:297
#, python-format
msgid "Unable to write autobackup file in given directory: %s"
msgstr ""
#. module: help_online
#: view:ir.ui.view:help_online.view_view_search
msgid "Website Page"
msgstr ""
#. module: help_online
#: view:ir.ui.view:help_online.view_view_form
msgid "Website Page?"
msgstr ""
#. module: help_online
#: model:ir.actions.act_window,name:help_online.action_website_pages
#: model:ir.ui.menu,name:help_online.menu_help_pages
msgid "Website Pages"
msgstr ""
#. module: help_online
#: field:export.help.wizard,data:0
msgid "XML"
msgstr ""
#. module: help_online
#: view:export.help.wizard:help_online.export_help_wizard_view
#: view:import.help.wizard:help_online.import_help_wizard_view
msgid "or"
msgstr "lub"

238
help_online/i18n/pt.po

@ -0,0 +1,238 @@
# Translation of Odoo Server.
# This file contains the translation of the following modules:
# * help_online
#
# Translators:
msgid ""
msgstr ""
"Project-Id-Version: web (8.0)\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2018-01-16 08:57+0000\n"
"PO-Revision-Date: 2017-11-23 23:26+0000\n"
"Last-Translator: OCA Transbot <transbot@odoo-community.org>\n"
"Language-Team: Portuguese (http://www.transifex.com/oca/OCA-web-8-0/language/"
"pt/)\n"
"Language: pt\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: help_online
#. openerp-web
#: code:addons/help_online/static/src/js/help_online.js:93
#, python-format
msgid "Cancel"
msgstr "Cancelar"
#. module: help_online
#: view:export.help.wizard:help_online.export_help_wizard_view
#: view:import.help.wizard:help_online.import_help_wizard_view
msgid "Close"
msgstr "Fechar"
#. module: help_online
#. openerp-web
#: code:addons/help_online/static/src/js/help_online.js:91
#, python-format
msgid "Confirm"
msgstr ""
#. module: help_online
#: code:addons/help_online/models/help_online.py:57
#, python-format
msgid "Create Help page for %s"
msgstr ""
#. module: help_online
#: field:export.help.wizard,create_uid:0 field:help.online,create_uid:0
#: field:import.help.wizard,create_uid:0
msgid "Created by"
msgstr "Criado por"
#. module: help_online
#: field:export.help.wizard,create_date:0 field:help.online,create_date:0
#: field:import.help.wizard,create_date:0
msgid "Created on"
msgstr "Criado em"
#. module: help_online
#: field:export.help.wizard,display_name:0 field:help.online,display_name:0
#: field:import.help.wizard,display_name:0
msgid "Display Name"
msgstr "Nome"
#. module: help_online
#: view:export.help.wizard:help_online.export_help_wizard_view
msgid "Export"
msgstr ""
#. module: help_online
#: code:addons/help_online/models/export_help_wizard.py:267
#: model:ir.actions.act_window,name:help_online.action_export_help_wizard
#, python-format
msgid "Export Help"
msgstr ""
#. module: help_online
#: view:export.help.wizard:help_online.export_help_wizard_view
msgid "Export Help Data"
msgstr ""
#. module: help_online
#: model:ir.model,name:help_online.model_export_help_wizard
#: model:ir.ui.menu,name:help_online.menu_help_export
msgid "Export Help Online"
msgstr ""
#. module: help_online
#: field:export.help.wizard,export_filename:0
msgid "Export XML Filename"
msgstr ""
#. module: help_online
#: model:ir.ui.menu,name:help_online.menu_help
#: model:ir.ui.menu,name:help_online.menu_help_main
msgid "Help Online"
msgstr ""
#. module: help_online
#: code:addons/help_online/models/help_online.py:52
#, python-format
msgid "Help on %s"
msgstr ""
#. module: help_online
#: model:res.groups,name:help_online.help_online_group_reader
msgid "Help reader"
msgstr ""
#. module: help_online
#: model:res.groups,name:help_online.help_online_group_writer
msgid "Help writer"
msgstr ""
#. module: help_online
#: field:export.help.wizard,id:0 field:help.online,id:0
#: field:import.help.wizard,id:0
msgid "ID"
msgstr "ID"
#. module: help_online
#: view:import.help.wizard:help_online.import_help_wizard_view
msgid "Import"
msgstr ""
#. module: help_online
#: model:ir.actions.act_window,name:help_online.action_import_help_wizard
msgid "Import Help"
msgstr ""
#. module: help_online
#: view:import.help.wizard:help_online.import_help_wizard_view
msgid "Import Help Data"
msgstr ""
#. module: help_online
#: model:ir.ui.menu,name:help_online.menu_help_import
msgid "Import Help Online"
msgstr ""
#. module: help_online
#: field:export.help.wizard,__last_update:0 field:help.online,__last_update:0
#: field:import.help.wizard,__last_update:0
msgid "Last Modified on"
msgstr "Modificado a última vez por"
#. module: help_online
#: field:export.help.wizard,write_uid:0 field:help.online,write_uid:0
#: field:import.help.wizard,write_uid:0
msgid "Last Updated by"
msgstr "Atualizado pela última vez por"
#. module: help_online
#: field:export.help.wizard,write_date:0 field:help.online,write_date:0
#: field:import.help.wizard,write_date:0
msgid "Last Updated on"
msgstr "Atualizado pela última vez em"
#. module: help_online
#: code:addons/help_online/models/export_help_wizard.py:260
#, python-format
msgid "No data to export !"
msgstr ""
#. module: help_online
#: code:addons/help_online/models/help_online.py:33
#, python-format
msgid "No page prefix parameter specified !"
msgstr ""
#. module: help_online
#. openerp-web
#: code:addons/help_online/static/src/js/help_online.js:98
#, python-format
msgid "Ok"
msgstr ""
#. module: help_online
#. openerp-web
#: code:addons/help_online/static/src/js/help_online.js:117
#, python-format
msgid "Page does not exist. Do you want to create?"
msgstr ""
#. module: help_online
#: field:import.help.wizard,source_file:0
msgid "Source File"
msgstr ""
#. module: help_online
#: view:export.help.wizard:help_online.export_help_wizard_view
msgid ""
"This wizard allow you to export all QWeb views\n"
" related to help online. The result will be an Odoo\n"
" data xml file."
msgstr ""
#. module: help_online
#: view:import.help.wizard:help_online.import_help_wizard_view
msgid ""
"This wizard allow you to import QWeb views\n"
" related to help online. The required file format is "
"an Odoo\n"
" data xml file."
msgstr ""
#. module: help_online
#: code:addons/help_online/models/export_help_wizard.py:297
#, python-format
msgid "Unable to write autobackup file in given directory: %s"
msgstr ""
#. module: help_online
#: view:ir.ui.view:help_online.view_view_search
msgid "Website Page"
msgstr ""
#. module: help_online
#: view:ir.ui.view:help_online.view_view_form
msgid "Website Page?"
msgstr ""
#. module: help_online
#: model:ir.actions.act_window,name:help_online.action_website_pages
#: model:ir.ui.menu,name:help_online.menu_help_pages
msgid "Website Pages"
msgstr ""
#. module: help_online
#: field:export.help.wizard,data:0
msgid "XML"
msgstr ""
#. module: help_online
#: view:export.help.wizard:help_online.export_help_wizard_view
#: view:import.help.wizard:help_online.import_help_wizard_view
msgid "or"
msgstr "ou"

268
help_online/i18n/pt_BR.po

@ -0,0 +1,268 @@
# Translation of Odoo Server.
# This file contains the translation of the following modules:
# * help_online
#
# Translators:
# Alexis de Lattre <alexis@via.ecp.fr>, 2016
# Antonio Trueba, 2016
# Armando Vulcano Junior <vulcano@uol.com.br>, 2015
# bossnm11 <bossnm11@gmail.com>, 2014
# Carles Antoli <carlesantoli@hotmail.com>, 2015
# Carles Antoli <carlesantoli@hotmail.com>, 2015
# Chanseok <kcsgoodboy@naver.com>, 2014
# Christophe CHAUVET <christophe.chauvet@gmail.com>, 2015
# Christophe CHAUVET <christophe.chauvet@gmail.com>, 2015
# danimaribeiro <danimaribeiro@gmail.com>, 2015-2016
# danimaribeiro <danimaribeiro@gmail.com>, 2016
# FIRST AUTHOR <EMAIL@ADDRESS>, 2012,2014
# jeon <bluerespect@nate.com>, 2014
# John Toro <johntoro@gmail.com>, 2015
# Jong-Dae Park <jdpark7@gmail.com>, 2013,2015
# Kevin Min <gr326887@graded.br>, 2015
# Kunwoo Kim <crazyabtmath@naver.com>, 2015
# LEE SI HYEONG <super2451894@gmail.com>, 2014
# Matjaž Mozetič <m.mozetic@matmoz.si>, 2015-2016
# Pedro M. Baeza <pedro.baeza@gmail.com>, 2015
# Rudolf Schnapka <rs@techno-flex.de>, 2016
# SaFi J. <safi2266@gmail.com>, 2015
# Sam Ryoo <samryoo@gmail.com>, 2014
# Seo. Junmin <sof.midnight@live.co.kr>, 2015
# seungil <luck8778@gmail.com>, 2014
# SEUNGWON <baeksw0620@gmail.com>, 2014
msgid ""
msgstr ""
"Project-Id-Version: web (8.0)\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2016-11-26 01:59+0000\n"
"PO-Revision-Date: 2016-11-25 14:55+0000\n"
"Last-Translator: OCA Transbot <transbot@odoo-community.org>\n"
"Language-Team: Portuguese (Brazil) (http://www.transifex.com/oca/OCA-web-8-0/"
"language/pt_BR/)\n"
"Language: pt_BR\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: help_online
#. openerp-web
#: code:addons/help_online/static/src/js/help_online.js:93
#, python-format
msgid "Cancel"
msgstr "Cancelar"
#. module: help_online
#: view:export.help.wizard:help_online.export_help_wizard_view
#: view:import.help.wizard:help_online.import_help_wizard_view
msgid "Close"
msgstr "Fechar"
#. module: help_online
#. openerp-web
#: code:addons/help_online/static/src/js/help_online.js:91
#, python-format
msgid "Confirm"
msgstr "Confirmar"
#. module: help_online
#: code:addons/help_online/models/help_online.py:57
#, python-format
msgid "Create Help page for %s"
msgstr "Criar página de ajuda para %s"
#. module: help_online
#: field:export.help.wizard,create_uid:0 field:help.online,create_uid:0
#: field:import.help.wizard,create_uid:0
msgid "Created by"
msgstr "Criado por"
#. module: help_online
#: field:export.help.wizard,create_date:0 field:help.online,create_date:0
#: field:import.help.wizard,create_date:0
msgid "Created on"
msgstr "Criado em "
#. module: help_online
#: field:export.help.wizard,display_name:0 field:help.online,display_name:0
#: field:import.help.wizard,display_name:0
msgid "Display Name"
msgstr "Nome para Mostrar"
#. module: help_online
#: view:export.help.wizard:help_online.export_help_wizard_view
msgid "Export"
msgstr "Exportar"
#. module: help_online
#: code:addons/help_online/models/export_help_wizard.py:267
#: model:ir.actions.act_window,name:help_online.action_export_help_wizard
#, python-format
msgid "Export Help"
msgstr "Ajuda exportação"
#. module: help_online
#: view:export.help.wizard:help_online.export_help_wizard_view
msgid "Export Help Data"
msgstr "Exportar dados de ajuda"
#. module: help_online
#: model:ir.model,name:help_online.model_export_help_wizard
#: model:ir.ui.menu,name:help_online.menu_help_export
msgid "Export Help Online"
msgstr "Exportar Ajuda online"
#. module: help_online
#: field:export.help.wizard,export_filename:0
msgid "Export XML Filename"
msgstr "Exportar nome de arquivo XML"
#. module: help_online
#: model:ir.ui.menu,name:help_online.menu_help
#: model:ir.ui.menu,name:help_online.menu_help_main
msgid "Help Online"
msgstr "Ajuda online"
#. module: help_online
#: code:addons/help_online/models/help_online.py:52
#, python-format
msgid "Help on %s"
msgstr "Ajuda em %s"
#. module: help_online
#: model:res.groups,name:help_online.help_online_group_reader
msgid "Help reader"
msgstr "Leitor de ajuda"
#. module: help_online
#: model:res.groups,name:help_online.help_online_group_writer
msgid "Help writer"
msgstr "Editor de ajuda"
#. module: help_online
#: field:export.help.wizard,id:0 field:help.online,id:0
#: field:import.help.wizard,id:0
msgid "ID"
msgstr "ID"
#. module: help_online
#: view:import.help.wizard:help_online.import_help_wizard_view
msgid "Import"
msgstr "Importar"
#. module: help_online
#: model:ir.actions.act_window,name:help_online.action_import_help_wizard
msgid "Import Help"
msgstr "Importar ajuda"
#. module: help_online
#: view:import.help.wizard:help_online.import_help_wizard_view
msgid "Import Help Data"
msgstr "Importar dados de ajuda"
#. module: help_online
#: model:ir.ui.menu,name:help_online.menu_help_import
msgid "Import Help Online"
msgstr "Importar ajuda online"
#. module: help_online
#: field:export.help.wizard,__last_update:0 field:help.online,__last_update:0
#: field:import.help.wizard,__last_update:0
msgid "Last Modified on"
msgstr "Última atualização em"
#. module: help_online
#: field:export.help.wizard,write_uid:0 field:help.online,write_uid:0
#: field:import.help.wizard,write_uid:0
msgid "Last Updated by"
msgstr "Última atualização por"
#. module: help_online
#: field:export.help.wizard,write_date:0 field:help.online,write_date:0
#: field:import.help.wizard,write_date:0
msgid "Last Updated on"
msgstr "Última atualização em"
#. module: help_online
#: code:addons/help_online/models/export_help_wizard.py:260
#, python-format
msgid "No data to export !"
msgstr "Sem dados para exportar!"
#. module: help_online
#: code:addons/help_online/models/help_online.py:33
#, python-format
msgid "No page prefix parameter specified !"
msgstr "Nenhum prefixo de página especificado!"
#. module: help_online
#. openerp-web
#: code:addons/help_online/static/src/js/help_online.js:98
#, python-format
msgid "Ok"
msgstr "Ok"
#. module: help_online
#. openerp-web
#: code:addons/help_online/static/src/js/help_online.js:117
#, python-format
msgid "Page does not exist. Do you want to create?"
msgstr "Página não existe. Você quer criar?"
#. module: help_online
#: field:import.help.wizard,source_file:0
msgid "Source File"
msgstr "Arquivo de origem"
#. module: help_online
#: view:export.help.wizard:help_online.export_help_wizard_view
msgid ""
"This wizard allow you to export all QWeb views\n"
" related to help online. The result will be an Odoo\n"
" data xml file."
msgstr ""
"Este wizard permite você exportar todas as visões QWeb relacionadas\n"
"a ajuda online. O resultado vai ser um arquivo xml."
#. module: help_online
#: view:import.help.wizard:help_online.import_help_wizard_view
msgid ""
"This wizard allow you to import QWeb views\n"
" related to help online. The required file format is "
"an Odoo\n"
" data xml file."
msgstr ""
"Este wizard permite você importar todas as visões QWeb relacionadas\n"
"a ajuda online. O formato é um arquivo XML no formato Odoo"
#. module: help_online
#: code:addons/help_online/models/export_help_wizard.py:297
#, python-format
msgid "Unable to write autobackup file in given directory: %s"
msgstr "Não foi possível criar o backup no diretório: %s"
#. module: help_online
#: view:ir.ui.view:help_online.view_view_search
msgid "Website Page"
msgstr "Página"
#. module: help_online
#: view:ir.ui.view:help_online.view_view_form
msgid "Website Page?"
msgstr "Página website?"
#. module: help_online
#: model:ir.actions.act_window,name:help_online.action_website_pages
#: model:ir.ui.menu,name:help_online.menu_help_pages
msgid "Website Pages"
msgstr "Páginas do site"
#. module: help_online
#: field:export.help.wizard,data:0
msgid "XML"
msgstr "XML"
#. module: help_online
#: view:export.help.wizard:help_online.export_help_wizard_view
#: view:import.help.wizard:help_online.import_help_wizard_view
msgid "or"
msgstr "ou"

238
help_online/i18n/pt_PT.po

@ -0,0 +1,238 @@
# Translation of Odoo Server.
# This file contains the translation of the following modules:
# * help_online
#
# Translators:
msgid ""
msgstr ""
"Project-Id-Version: web (8.0)\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2018-01-16 08:57+0000\n"
"PO-Revision-Date: 2017-11-23 23:25+0000\n"
"Last-Translator: OCA Transbot <transbot@odoo-community.org>\n"
"Language-Team: Portuguese (Portugal) (http://www.transifex.com/oca/OCA-"
"web-8-0/language/pt_PT/)\n"
"Language: pt_PT\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: help_online
#. openerp-web
#: code:addons/help_online/static/src/js/help_online.js:93
#, python-format
msgid "Cancel"
msgstr "Cancelar"
#. module: help_online
#: view:export.help.wizard:help_online.export_help_wizard_view
#: view:import.help.wizard:help_online.import_help_wizard_view
msgid "Close"
msgstr "Fechar"
#. module: help_online
#. openerp-web
#: code:addons/help_online/static/src/js/help_online.js:91
#, python-format
msgid "Confirm"
msgstr ""
#. module: help_online
#: code:addons/help_online/models/help_online.py:57
#, python-format
msgid "Create Help page for %s"
msgstr ""
#. module: help_online
#: field:export.help.wizard,create_uid:0 field:help.online,create_uid:0
#: field:import.help.wizard,create_uid:0
msgid "Created by"
msgstr "Criado por"
#. module: help_online
#: field:export.help.wizard,create_date:0 field:help.online,create_date:0
#: field:import.help.wizard,create_date:0
msgid "Created on"
msgstr "Criado em"
#. module: help_online
#: field:export.help.wizard,display_name:0 field:help.online,display_name:0
#: field:import.help.wizard,display_name:0
msgid "Display Name"
msgstr "Nome a Apresentar"
#. module: help_online
#: view:export.help.wizard:help_online.export_help_wizard_view
msgid "Export"
msgstr ""
#. module: help_online
#: code:addons/help_online/models/export_help_wizard.py:267
#: model:ir.actions.act_window,name:help_online.action_export_help_wizard
#, python-format
msgid "Export Help"
msgstr ""
#. module: help_online
#: view:export.help.wizard:help_online.export_help_wizard_view
msgid "Export Help Data"
msgstr ""
#. module: help_online
#: model:ir.model,name:help_online.model_export_help_wizard
#: model:ir.ui.menu,name:help_online.menu_help_export
msgid "Export Help Online"
msgstr ""
#. module: help_online
#: field:export.help.wizard,export_filename:0
msgid "Export XML Filename"
msgstr ""
#. module: help_online
#: model:ir.ui.menu,name:help_online.menu_help
#: model:ir.ui.menu,name:help_online.menu_help_main
msgid "Help Online"
msgstr ""
#. module: help_online
#: code:addons/help_online/models/help_online.py:52
#, python-format
msgid "Help on %s"
msgstr ""
#. module: help_online
#: model:res.groups,name:help_online.help_online_group_reader
msgid "Help reader"
msgstr ""
#. module: help_online
#: model:res.groups,name:help_online.help_online_group_writer
msgid "Help writer"
msgstr ""
#. module: help_online
#: field:export.help.wizard,id:0 field:help.online,id:0
#: field:import.help.wizard,id:0
msgid "ID"
msgstr "ID"
#. module: help_online
#: view:import.help.wizard:help_online.import_help_wizard_view
msgid "Import"
msgstr ""
#. module: help_online
#: model:ir.actions.act_window,name:help_online.action_import_help_wizard
msgid "Import Help"
msgstr ""
#. module: help_online
#: view:import.help.wizard:help_online.import_help_wizard_view
msgid "Import Help Data"
msgstr ""
#. module: help_online
#: model:ir.ui.menu,name:help_online.menu_help_import
msgid "Import Help Online"
msgstr ""
#. module: help_online
#: field:export.help.wizard,__last_update:0 field:help.online,__last_update:0
#: field:import.help.wizard,__last_update:0
msgid "Last Modified on"
msgstr "Última Modificação Em"
#. module: help_online
#: field:export.help.wizard,write_uid:0 field:help.online,write_uid:0
#: field:import.help.wizard,write_uid:0
msgid "Last Updated by"
msgstr "Atualizado pela última vez por"
#. module: help_online
#: field:export.help.wizard,write_date:0 field:help.online,write_date:0
#: field:import.help.wizard,write_date:0
msgid "Last Updated on"
msgstr "Atualizado pela última vez em"
#. module: help_online
#: code:addons/help_online/models/export_help_wizard.py:260
#, python-format
msgid "No data to export !"
msgstr ""
#. module: help_online
#: code:addons/help_online/models/help_online.py:33
#, python-format
msgid "No page prefix parameter specified !"
msgstr ""
#. module: help_online
#. openerp-web
#: code:addons/help_online/static/src/js/help_online.js:98
#, python-format
msgid "Ok"
msgstr ""
#. module: help_online
#. openerp-web
#: code:addons/help_online/static/src/js/help_online.js:117
#, python-format
msgid "Page does not exist. Do you want to create?"
msgstr ""
#. module: help_online
#: field:import.help.wizard,source_file:0
msgid "Source File"
msgstr ""
#. module: help_online
#: view:export.help.wizard:help_online.export_help_wizard_view
msgid ""
"This wizard allow you to export all QWeb views\n"
" related to help online. The result will be an Odoo\n"
" data xml file."
msgstr ""
#. module: help_online
#: view:import.help.wizard:help_online.import_help_wizard_view
msgid ""
"This wizard allow you to import QWeb views\n"
" related to help online. The required file format is "
"an Odoo\n"
" data xml file."
msgstr ""
#. module: help_online
#: code:addons/help_online/models/export_help_wizard.py:297
#, python-format
msgid "Unable to write autobackup file in given directory: %s"
msgstr ""
#. module: help_online
#: view:ir.ui.view:help_online.view_view_search
msgid "Website Page"
msgstr ""
#. module: help_online
#: view:ir.ui.view:help_online.view_view_form
msgid "Website Page?"
msgstr ""
#. module: help_online
#: model:ir.actions.act_window,name:help_online.action_website_pages
#: model:ir.ui.menu,name:help_online.menu_help_pages
msgid "Website Pages"
msgstr ""
#. module: help_online
#: field:export.help.wizard,data:0
msgid "XML"
msgstr ""
#. module: help_online
#: view:export.help.wizard:help_online.export_help_wizard_view
#: view:import.help.wizard:help_online.import_help_wizard_view
msgid "or"
msgstr "ou"

239
help_online/i18n/ro.po

@ -0,0 +1,239 @@
# Translation of Odoo Server.
# This file contains the translation of the following modules:
# * help_online
#
# Translators:
msgid ""
msgstr ""
"Project-Id-Version: web (8.0)\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2018-01-16 08:57+0000\n"
"PO-Revision-Date: 2017-11-23 23:27+0000\n"
"Last-Translator: OCA Transbot <transbot@odoo-community.org>\n"
"Language-Team: Romanian (http://www.transifex.com/oca/OCA-web-8-0/language/"
"ro/)\n"
"Language: ro\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: \n"
"Plural-Forms: nplurals=3; plural=(n==1?0:(((n%100>19)||((n%100==0)&&(n!=0)))?"
"2:1));\n"
#. module: help_online
#. openerp-web
#: code:addons/help_online/static/src/js/help_online.js:93
#, python-format
msgid "Cancel"
msgstr "Anuleaza"
#. module: help_online
#: view:export.help.wizard:help_online.export_help_wizard_view
#: view:import.help.wizard:help_online.import_help_wizard_view
msgid "Close"
msgstr "Inchide"
#. module: help_online
#. openerp-web
#: code:addons/help_online/static/src/js/help_online.js:91
#, python-format
msgid "Confirm"
msgstr ""
#. module: help_online
#: code:addons/help_online/models/help_online.py:57
#, python-format
msgid "Create Help page for %s"
msgstr ""
#. module: help_online
#: field:export.help.wizard,create_uid:0 field:help.online,create_uid:0
#: field:import.help.wizard,create_uid:0
msgid "Created by"
msgstr "Creat de"
#. module: help_online
#: field:export.help.wizard,create_date:0 field:help.online,create_date:0
#: field:import.help.wizard,create_date:0
msgid "Created on"
msgstr "Creat la"
#. module: help_online
#: field:export.help.wizard,display_name:0 field:help.online,display_name:0
#: field:import.help.wizard,display_name:0
msgid "Display Name"
msgstr "Nume Afişat"
#. module: help_online
#: view:export.help.wizard:help_online.export_help_wizard_view
msgid "Export"
msgstr ""
#. module: help_online
#: code:addons/help_online/models/export_help_wizard.py:267
#: model:ir.actions.act_window,name:help_online.action_export_help_wizard
#, python-format
msgid "Export Help"
msgstr ""
#. module: help_online
#: view:export.help.wizard:help_online.export_help_wizard_view
msgid "Export Help Data"
msgstr ""
#. module: help_online
#: model:ir.model,name:help_online.model_export_help_wizard
#: model:ir.ui.menu,name:help_online.menu_help_export
msgid "Export Help Online"
msgstr ""
#. module: help_online
#: field:export.help.wizard,export_filename:0
msgid "Export XML Filename"
msgstr ""
#. module: help_online
#: model:ir.ui.menu,name:help_online.menu_help
#: model:ir.ui.menu,name:help_online.menu_help_main
msgid "Help Online"
msgstr ""
#. module: help_online
#: code:addons/help_online/models/help_online.py:52
#, python-format
msgid "Help on %s"
msgstr ""
#. module: help_online
#: model:res.groups,name:help_online.help_online_group_reader
msgid "Help reader"
msgstr ""
#. module: help_online
#: model:res.groups,name:help_online.help_online_group_writer
msgid "Help writer"
msgstr ""
#. module: help_online
#: field:export.help.wizard,id:0 field:help.online,id:0
#: field:import.help.wizard,id:0
msgid "ID"
msgstr "ID"
#. module: help_online
#: view:import.help.wizard:help_online.import_help_wizard_view
msgid "Import"
msgstr ""
#. module: help_online
#: model:ir.actions.act_window,name:help_online.action_import_help_wizard
msgid "Import Help"
msgstr ""
#. module: help_online
#: view:import.help.wizard:help_online.import_help_wizard_view
msgid "Import Help Data"
msgstr ""
#. module: help_online
#: model:ir.ui.menu,name:help_online.menu_help_import
msgid "Import Help Online"
msgstr ""
#. module: help_online
#: field:export.help.wizard,__last_update:0 field:help.online,__last_update:0
#: field:import.help.wizard,__last_update:0
msgid "Last Modified on"
msgstr "Ultima actualizare în"
#. module: help_online
#: field:export.help.wizard,write_uid:0 field:help.online,write_uid:0
#: field:import.help.wizard,write_uid:0
msgid "Last Updated by"
msgstr "Ultima actualizare făcută de"
#. module: help_online
#: field:export.help.wizard,write_date:0 field:help.online,write_date:0
#: field:import.help.wizard,write_date:0
msgid "Last Updated on"
msgstr "Ultima actualizare la"
#. module: help_online
#: code:addons/help_online/models/export_help_wizard.py:260
#, python-format
msgid "No data to export !"
msgstr ""
#. module: help_online
#: code:addons/help_online/models/help_online.py:33
#, python-format
msgid "No page prefix parameter specified !"
msgstr ""
#. module: help_online
#. openerp-web
#: code:addons/help_online/static/src/js/help_online.js:98
#, python-format
msgid "Ok"
msgstr ""
#. module: help_online
#. openerp-web
#: code:addons/help_online/static/src/js/help_online.js:117
#, python-format
msgid "Page does not exist. Do you want to create?"
msgstr ""
#. module: help_online
#: field:import.help.wizard,source_file:0
msgid "Source File"
msgstr ""
#. module: help_online
#: view:export.help.wizard:help_online.export_help_wizard_view
msgid ""
"This wizard allow you to export all QWeb views\n"
" related to help online. The result will be an Odoo\n"
" data xml file."
msgstr ""
#. module: help_online
#: view:import.help.wizard:help_online.import_help_wizard_view
msgid ""
"This wizard allow you to import QWeb views\n"
" related to help online. The required file format is "
"an Odoo\n"
" data xml file."
msgstr ""
#. module: help_online
#: code:addons/help_online/models/export_help_wizard.py:297
#, python-format
msgid "Unable to write autobackup file in given directory: %s"
msgstr ""
#. module: help_online
#: view:ir.ui.view:help_online.view_view_search
msgid "Website Page"
msgstr ""
#. module: help_online
#: view:ir.ui.view:help_online.view_view_form
msgid "Website Page?"
msgstr ""
#. module: help_online
#: model:ir.actions.act_window,name:help_online.action_website_pages
#: model:ir.ui.menu,name:help_online.menu_help_pages
msgid "Website Pages"
msgstr ""
#. module: help_online
#: field:export.help.wizard,data:0
msgid "XML"
msgstr ""
#. module: help_online
#: view:export.help.wizard:help_online.export_help_wizard_view
#: view:import.help.wizard:help_online.import_help_wizard_view
msgid "or"
msgstr "sau"

240
help_online/i18n/ru.po

@ -0,0 +1,240 @@
# Translation of Odoo Server.
# This file contains the translation of the following modules:
# * help_online
#
# Translators:
msgid ""
msgstr ""
"Project-Id-Version: web (8.0)\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2018-01-16 08:57+0000\n"
"PO-Revision-Date: 2017-11-23 23:26+0000\n"
"Last-Translator: OCA Transbot <transbot@odoo-community.org>\n"
"Language-Team: Russian (http://www.transifex.com/oca/OCA-web-8-0/language/"
"ru/)\n"
"Language: ru\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: \n"
"Plural-Forms: nplurals=4; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n"
"%10<=4 && (n%100<12 || n%100>14) ? 1 : n%10==0 || (n%10>=5 && n%10<=9) || (n"
"%100>=11 && n%100<=14)? 2 : 3);\n"
#. module: help_online
#. openerp-web
#: code:addons/help_online/static/src/js/help_online.js:93
#, python-format
msgid "Cancel"
msgstr "Отменена"
#. module: help_online
#: view:export.help.wizard:help_online.export_help_wizard_view
#: view:import.help.wizard:help_online.import_help_wizard_view
msgid "Close"
msgstr "Закрыть"
#. module: help_online
#. openerp-web
#: code:addons/help_online/static/src/js/help_online.js:91
#, python-format
msgid "Confirm"
msgstr "Изменить"
#. module: help_online
#: code:addons/help_online/models/help_online.py:57
#, python-format
msgid "Create Help page for %s"
msgstr ""
#. module: help_online
#: field:export.help.wizard,create_uid:0 field:help.online,create_uid:0
#: field:import.help.wizard,create_uid:0
msgid "Created by"
msgstr "Создано"
#. module: help_online
#: field:export.help.wizard,create_date:0 field:help.online,create_date:0
#: field:import.help.wizard,create_date:0
msgid "Created on"
msgstr "Создан"
#. module: help_online
#: field:export.help.wizard,display_name:0 field:help.online,display_name:0
#: field:import.help.wizard,display_name:0
msgid "Display Name"
msgstr ""
#. module: help_online
#: view:export.help.wizard:help_online.export_help_wizard_view
msgid "Export"
msgstr ""
#. module: help_online
#: code:addons/help_online/models/export_help_wizard.py:267
#: model:ir.actions.act_window,name:help_online.action_export_help_wizard
#, python-format
msgid "Export Help"
msgstr ""
#. module: help_online
#: view:export.help.wizard:help_online.export_help_wizard_view
msgid "Export Help Data"
msgstr ""
#. module: help_online
#: model:ir.model,name:help_online.model_export_help_wizard
#: model:ir.ui.menu,name:help_online.menu_help_export
msgid "Export Help Online"
msgstr ""
#. module: help_online
#: field:export.help.wizard,export_filename:0
msgid "Export XML Filename"
msgstr ""
#. module: help_online
#: model:ir.ui.menu,name:help_online.menu_help
#: model:ir.ui.menu,name:help_online.menu_help_main
msgid "Help Online"
msgstr ""
#. module: help_online
#: code:addons/help_online/models/help_online.py:52
#, python-format
msgid "Help on %s"
msgstr ""
#. module: help_online
#: model:res.groups,name:help_online.help_online_group_reader
msgid "Help reader"
msgstr ""
#. module: help_online
#: model:res.groups,name:help_online.help_online_group_writer
msgid "Help writer"
msgstr ""
#. module: help_online
#: field:export.help.wizard,id:0 field:help.online,id:0
#: field:import.help.wizard,id:0
msgid "ID"
msgstr "ID"
#. module: help_online
#: view:import.help.wizard:help_online.import_help_wizard_view
msgid "Import"
msgstr ""
#. module: help_online
#: model:ir.actions.act_window,name:help_online.action_import_help_wizard
msgid "Import Help"
msgstr ""
#. module: help_online
#: view:import.help.wizard:help_online.import_help_wizard_view
msgid "Import Help Data"
msgstr ""
#. module: help_online
#: model:ir.ui.menu,name:help_online.menu_help_import
msgid "Import Help Online"
msgstr ""
#. module: help_online
#: field:export.help.wizard,__last_update:0 field:help.online,__last_update:0
#: field:import.help.wizard,__last_update:0
msgid "Last Modified on"
msgstr ""
#. module: help_online
#: field:export.help.wizard,write_uid:0 field:help.online,write_uid:0
#: field:import.help.wizard,write_uid:0
msgid "Last Updated by"
msgstr "Последний раз обновлено"
#. module: help_online
#: field:export.help.wizard,write_date:0 field:help.online,write_date:0
#: field:import.help.wizard,write_date:0
msgid "Last Updated on"
msgstr "Последний раз обновлено"
#. module: help_online
#: code:addons/help_online/models/export_help_wizard.py:260
#, python-format
msgid "No data to export !"
msgstr ""
#. module: help_online
#: code:addons/help_online/models/help_online.py:33
#, python-format
msgid "No page prefix parameter specified !"
msgstr ""
#. module: help_online
#. openerp-web
#: code:addons/help_online/static/src/js/help_online.js:98
#, python-format
msgid "Ok"
msgstr ""
#. module: help_online
#. openerp-web
#: code:addons/help_online/static/src/js/help_online.js:117
#, python-format
msgid "Page does not exist. Do you want to create?"
msgstr ""
#. module: help_online
#: field:import.help.wizard,source_file:0
msgid "Source File"
msgstr ""
#. module: help_online
#: view:export.help.wizard:help_online.export_help_wizard_view
msgid ""
"This wizard allow you to export all QWeb views\n"
" related to help online. The result will be an Odoo\n"
" data xml file."
msgstr ""
#. module: help_online
#: view:import.help.wizard:help_online.import_help_wizard_view
msgid ""
"This wizard allow you to import QWeb views\n"
" related to help online. The required file format is "
"an Odoo\n"
" data xml file."
msgstr ""
#. module: help_online
#: code:addons/help_online/models/export_help_wizard.py:297
#, python-format
msgid "Unable to write autobackup file in given directory: %s"
msgstr ""
#. module: help_online
#: view:ir.ui.view:help_online.view_view_search
msgid "Website Page"
msgstr ""
#. module: help_online
#: view:ir.ui.view:help_online.view_view_form
msgid "Website Page?"
msgstr ""
#. module: help_online
#: model:ir.actions.act_window,name:help_online.action_website_pages
#: model:ir.ui.menu,name:help_online.menu_help_pages
msgid "Website Pages"
msgstr ""
#. module: help_online
#: field:export.help.wizard,data:0
msgid "XML"
msgstr ""
#. module: help_online
#: view:export.help.wizard:help_online.export_help_wizard_view
#: view:import.help.wizard:help_online.import_help_wizard_view
msgid "or"
msgstr "или"

238
help_online/i18n/sk.po

@ -0,0 +1,238 @@
# Translation of Odoo Server.
# This file contains the translation of the following modules:
# * help_online
#
# Translators:
msgid ""
msgstr ""
"Project-Id-Version: web (8.0)\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2016-12-29 03:45+0000\n"
"PO-Revision-Date: 2016-12-27 08:26+0000\n"
"Last-Translator: OCA Transbot <transbot@odoo-community.org>\n"
"Language-Team: Slovak (http://www.transifex.com/oca/OCA-web-8-0/language/"
"sk/)\n"
"Language: sk\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: \n"
"Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;\n"
#. module: help_online
#. openerp-web
#: code:addons/help_online/static/src/js/help_online.js:93
#, python-format
msgid "Cancel"
msgstr "Zrušiť"
#. module: help_online
#: view:export.help.wizard:help_online.export_help_wizard_view
#: view:import.help.wizard:help_online.import_help_wizard_view
msgid "Close"
msgstr ""
#. module: help_online
#. openerp-web
#: code:addons/help_online/static/src/js/help_online.js:91
#, python-format
msgid "Confirm"
msgstr ""
#. module: help_online
#: code:addons/help_online/models/help_online.py:57
#, python-format
msgid "Create Help page for %s"
msgstr ""
#. module: help_online
#: field:export.help.wizard,create_uid:0 field:help.online,create_uid:0
#: field:import.help.wizard,create_uid:0
msgid "Created by"
msgstr "Vytvoril"
#. module: help_online
#: field:export.help.wizard,create_date:0 field:help.online,create_date:0
#: field:import.help.wizard,create_date:0
msgid "Created on"
msgstr "Vytvorené"
#. module: help_online
#: field:export.help.wizard,display_name:0 field:help.online,display_name:0
#: field:import.help.wizard,display_name:0
msgid "Display Name"
msgstr "Zobraziť meno"
#. module: help_online
#: view:export.help.wizard:help_online.export_help_wizard_view
msgid "Export"
msgstr ""
#. module: help_online
#: code:addons/help_online/models/export_help_wizard.py:267
#: model:ir.actions.act_window,name:help_online.action_export_help_wizard
#, python-format
msgid "Export Help"
msgstr ""
#. module: help_online
#: view:export.help.wizard:help_online.export_help_wizard_view
msgid "Export Help Data"
msgstr ""
#. module: help_online
#: model:ir.model,name:help_online.model_export_help_wizard
#: model:ir.ui.menu,name:help_online.menu_help_export
msgid "Export Help Online"
msgstr ""
#. module: help_online
#: field:export.help.wizard,export_filename:0
msgid "Export XML Filename"
msgstr ""
#. module: help_online
#: model:ir.ui.menu,name:help_online.menu_help
#: model:ir.ui.menu,name:help_online.menu_help_main
msgid "Help Online"
msgstr ""
#. module: help_online
#: code:addons/help_online/models/help_online.py:52
#, python-format
msgid "Help on %s"
msgstr ""
#. module: help_online
#: model:res.groups,name:help_online.help_online_group_reader
msgid "Help reader"
msgstr ""
#. module: help_online
#: model:res.groups,name:help_online.help_online_group_writer
msgid "Help writer"
msgstr ""
#. module: help_online
#: field:export.help.wizard,id:0 field:help.online,id:0
#: field:import.help.wizard,id:0
msgid "ID"
msgstr "ID"
#. module: help_online
#: view:import.help.wizard:help_online.import_help_wizard_view
msgid "Import"
msgstr ""
#. module: help_online
#: model:ir.actions.act_window,name:help_online.action_import_help_wizard
msgid "Import Help"
msgstr ""
#. module: help_online
#: view:import.help.wizard:help_online.import_help_wizard_view
msgid "Import Help Data"
msgstr ""
#. module: help_online
#: model:ir.ui.menu,name:help_online.menu_help_import
msgid "Import Help Online"
msgstr ""
#. module: help_online
#: field:export.help.wizard,__last_update:0 field:help.online,__last_update:0
#: field:import.help.wizard,__last_update:0
msgid "Last Modified on"
msgstr "Posledná modifikácia"
#. module: help_online
#: field:export.help.wizard,write_uid:0 field:help.online,write_uid:0
#: field:import.help.wizard,write_uid:0
msgid "Last Updated by"
msgstr "Naposledy upravoval"
#. module: help_online
#: field:export.help.wizard,write_date:0 field:help.online,write_date:0
#: field:import.help.wizard,write_date:0
msgid "Last Updated on"
msgstr "Naposledy upravované"
#. module: help_online
#: code:addons/help_online/models/export_help_wizard.py:260
#, python-format
msgid "No data to export !"
msgstr ""
#. module: help_online
#: code:addons/help_online/models/help_online.py:33
#, python-format
msgid "No page prefix parameter specified !"
msgstr ""
#. module: help_online
#. openerp-web
#: code:addons/help_online/static/src/js/help_online.js:98
#, python-format
msgid "Ok"
msgstr ""
#. module: help_online
#. openerp-web
#: code:addons/help_online/static/src/js/help_online.js:117
#, python-format
msgid "Page does not exist. Do you want to create?"
msgstr ""
#. module: help_online
#: field:import.help.wizard,source_file:0
msgid "Source File"
msgstr ""
#. module: help_online
#: view:export.help.wizard:help_online.export_help_wizard_view
msgid ""
"This wizard allow you to export all QWeb views\n"
" related to help online. The result will be an Odoo\n"
" data xml file."
msgstr ""
#. module: help_online
#: view:import.help.wizard:help_online.import_help_wizard_view
msgid ""
"This wizard allow you to import QWeb views\n"
" related to help online. The required file format is "
"an Odoo\n"
" data xml file."
msgstr ""
#. module: help_online
#: code:addons/help_online/models/export_help_wizard.py:297
#, python-format
msgid "Unable to write autobackup file in given directory: %s"
msgstr ""
#. module: help_online
#: view:ir.ui.view:help_online.view_view_search
msgid "Website Page"
msgstr ""
#. module: help_online
#: view:ir.ui.view:help_online.view_view_form
msgid "Website Page?"
msgstr ""
#. module: help_online
#: model:ir.actions.act_window,name:help_online.action_website_pages
#: model:ir.ui.menu,name:help_online.menu_help_pages
msgid "Website Pages"
msgstr ""
#. module: help_online
#: field:export.help.wizard,data:0
msgid "XML"
msgstr ""
#. module: help_online
#: view:export.help.wizard:help_online.export_help_wizard_view
#: view:import.help.wizard:help_online.import_help_wizard_view
msgid "or"
msgstr "alebo"

262
help_online/i18n/sl.po

@ -0,0 +1,262 @@
# Translation of Odoo Server.
# This file contains the translation of the following modules:
# * help_online
#
# Translators:
# Antonio Trueba, 2016
# Armando Vulcano Junior <vulcano@uol.com.br>, 2015
# Carles Antoli <carlesantoli@hotmail.com>, 2015
# Carles Antoli <carlesantoli@hotmail.com>, 2015
# danimaribeiro <danimaribeiro@gmail.com>, 2016
# FIRST AUTHOR <EMAIL@ADDRESS>, 2012-2013
# Hotellook, 2014
# Jarmo Kortetjärvi <jarmo.kortetjarvi@gmail.com>, 2016
# John Toro <johntoro@gmail.com>, 2015
# Leonardo J. Caballero G. <leonardocaballero@gmail.com>, 2016
# Leonardo J. Caballero G. <leonardocaballero@gmail.com>, 2016
# Matjaž Mozetič <m.mozetic@matmoz.si>, 2015-2016
# Miku Laitinen <miku.laitinen@gmail.com>, 2015
# Paolo Valier, 2016
# Rudolf Schnapka <rs@techno-flex.de>, 2015-2016
# SaFi J. <safi2266@gmail.com>, 2015
# Thomas A. Jaeger, 2015
msgid ""
msgstr ""
"Project-Id-Version: web (8.0)\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2016-09-17 12:06+0000\n"
"PO-Revision-Date: 2016-09-16 21:45+0000\n"
"Last-Translator: Matjaž Mozetič <m.mozetic@matmoz.si>\n"
"Language-Team: Slovenian (http://www.transifex.com/oca/OCA-web-8-0/language/"
"sl/)\n"
"Language: sl\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: \n"
"Plural-Forms: nplurals=4; plural=(n%100==1 ? 0 : n%100==2 ? 1 : n%100==3 || n"
"%100==4 ? 2 : 3);\n"
#. module: help_online
#. openerp-web
#: code:addons/help_online/static/src/js/help_online.js:93
#, python-format
msgid "Cancel"
msgstr "Preklic"
#. module: help_online
#: view:export.help.wizard:help_online.export_help_wizard_view
#: view:import.help.wizard:help_online.import_help_wizard_view
msgid "Close"
msgstr "Zaključi"
#. module: help_online
#. openerp-web
#: code:addons/help_online/static/src/js/help_online.js:91
#, python-format
msgid "Confirm"
msgstr "Potrdi"
#. module: help_online
#: code:addons/help_online/models/help_online.py:57
#, python-format
msgid "Create Help page for %s"
msgstr "Ustvari stran pomoči za %s"
#. module: help_online
#: field:export.help.wizard,create_uid:0 field:help.online,create_uid:0
#: field:import.help.wizard,create_uid:0
msgid "Created by"
msgstr "Ustvaril"
#. module: help_online
#: field:export.help.wizard,create_date:0 field:help.online,create_date:0
#: field:import.help.wizard,create_date:0
msgid "Created on"
msgstr "Ustvarjeno"
#. module: help_online
#: field:export.help.wizard,display_name:0 field:help.online,display_name:0
#: field:import.help.wizard,display_name:0
msgid "Display Name"
msgstr "Prikazni naziv"
#. module: help_online
#: view:export.help.wizard:help_online.export_help_wizard_view
msgid "Export"
msgstr "Izvoz"
#. module: help_online
#: code:addons/help_online/models/export_help_wizard.py:267
#: model:ir.actions.act_window,name:help_online.action_export_help_wizard
#, python-format
msgid "Export Help"
msgstr "Izvoz navodil"
#. module: help_online
#: view:export.help.wizard:help_online.export_help_wizard_view
msgid "Export Help Data"
msgstr "Izvoz podatkov spletnih navodil"
#. module: help_online
#: model:ir.model,name:help_online.model_export_help_wizard
#: model:ir.ui.menu,name:help_online.menu_help_export
msgid "Export Help Online"
msgstr "Izvozi spletna navodila"
#. module: help_online
#: field:export.help.wizard,export_filename:0
msgid "Export XML Filename"
msgstr "Naziv izvožene XML datoteke"
#. module: help_online
#: model:ir.ui.menu,name:help_online.menu_help
#: model:ir.ui.menu,name:help_online.menu_help_main
msgid "Help Online"
msgstr "Spletna navodila"
#. module: help_online
#: code:addons/help_online/models/help_online.py:52
#, python-format
msgid "Help on %s"
msgstr "Pomoč za %s"
#. module: help_online
#: model:res.groups,name:help_online.help_online_group_reader
msgid "Help reader"
msgstr "Bralec navodil"
#. module: help_online
#: model:res.groups,name:help_online.help_online_group_writer
msgid "Help writer"
msgstr "Avtor navodil"
#. module: help_online
#: field:export.help.wizard,id:0 field:help.online,id:0
#: field:import.help.wizard,id:0
msgid "ID"
msgstr "ID"
#. module: help_online
#: view:import.help.wizard:help_online.import_help_wizard_view
msgid "Import"
msgstr "Uvoz"
#. module: help_online
#: model:ir.actions.act_window,name:help_online.action_import_help_wizard
msgid "Import Help"
msgstr "Uvoz navodil"
#. module: help_online
#: view:import.help.wizard:help_online.import_help_wizard_view
msgid "Import Help Data"
msgstr "Uvoz podatkov navodil"
#. module: help_online
#: model:ir.ui.menu,name:help_online.menu_help_import
msgid "Import Help Online"
msgstr "Uvoz spletnih navodil"
#. module: help_online
#: field:export.help.wizard,__last_update:0 field:help.online,__last_update:0
#: field:import.help.wizard,__last_update:0
msgid "Last Modified on"
msgstr "Zadnjič spremenjeno"
#. module: help_online
#: field:export.help.wizard,write_uid:0 field:help.online,write_uid:0
#: field:import.help.wizard,write_uid:0
msgid "Last Updated by"
msgstr "Zadnjič posodobil"
#. module: help_online
#: field:export.help.wizard,write_date:0 field:help.online,write_date:0
#: field:import.help.wizard,write_date:0
msgid "Last Updated on"
msgstr "Zadnjič posodobljeno"
#. module: help_online
#: code:addons/help_online/models/export_help_wizard.py:260
#, python-format
msgid "No data to export !"
msgstr "Ni podatkov za izvoz!"
#. module: help_online
#: code:addons/help_online/models/help_online.py:33
#, python-format
msgid "No page prefix parameter specified !"
msgstr "Predpona strani ni določena!"
#. module: help_online
#. openerp-web
#: code:addons/help_online/static/src/js/help_online.js:98
#, python-format
msgid "Ok"
msgstr "V redu"
#. module: help_online
#. openerp-web
#: code:addons/help_online/static/src/js/help_online.js:117
#, python-format
msgid "Page does not exist. Do you want to create?"
msgstr "Stran ne obstaja. Jo želite ustvariti?"
#. module: help_online
#: field:import.help.wizard,source_file:0
msgid "Source File"
msgstr "Izvorna datoteka"
#. module: help_online
#: view:export.help.wizard:help_online.export_help_wizard_view
msgid ""
"This wizard allow you to export all QWeb views\n"
" related to help online. The result will be an Odoo\n"
" data xml file."
msgstr ""
"Ta čarovnik omogoča izvoz vseh QWeb pogledov,\n"
" ki se tičejo spletnih navodil v Odoo\n"
" xml podatkovno datoteko."
#. module: help_online
#: view:import.help.wizard:help_online.import_help_wizard_view
msgid ""
"This wizard allow you to import QWeb views\n"
" related to help online. The required file format is "
"an Odoo\n"
" data xml file."
msgstr ""
"Ta čarovnik omogoča uvoz QWeb pogledov,\n"
" ki se tičejo spletnih navodil iz Odoo\n"
" xml podatkovne datoteke."
#. module: help_online
#: code:addons/help_online/models/export_help_wizard.py:297
#, python-format
msgid "Unable to write autobackup file in given directory: %s"
msgstr "Samodejne varnostne kopije za dani imenik %s ni bilo mogoče zapisati."
#. module: help_online
#: view:ir.ui.view:help_online.view_view_search
msgid "Website Page"
msgstr "Spletna stran"
#. module: help_online
#: view:ir.ui.view:help_online.view_view_form
msgid "Website Page?"
msgstr "Spletna stran?"
#. module: help_online
#: model:ir.actions.act_window,name:help_online.action_website_pages
#: model:ir.ui.menu,name:help_online.menu_help_pages
msgid "Website Pages"
msgstr "Spletne strani"
#. module: help_online
#: field:export.help.wizard,data:0
msgid "XML"
msgstr "XML"
#. module: help_online
#: view:export.help.wizard:help_online.export_help_wizard_view
#: view:import.help.wizard:help_online.import_help_wizard_view
msgid "or"
msgstr "ali"

239
help_online/i18n/sr.po

@ -0,0 +1,239 @@
# Translation of Odoo Server.
# This file contains the translation of the following modules:
# * help_online
#
# Translators:
msgid ""
msgstr ""
"Project-Id-Version: web (8.0)\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2016-12-29 03:45+0000\n"
"PO-Revision-Date: 2016-12-27 08:25+0000\n"
"Last-Translator: OCA Transbot <transbot@odoo-community.org>\n"
"Language-Team: Serbian (http://www.transifex.com/oca/OCA-web-8-0/language/"
"sr/)\n"
"Language: sr\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: \n"
"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n"
"%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n"
#. module: help_online
#. openerp-web
#: code:addons/help_online/static/src/js/help_online.js:93
#, python-format
msgid "Cancel"
msgstr "Otkaži"
#. module: help_online
#: view:export.help.wizard:help_online.export_help_wizard_view
#: view:import.help.wizard:help_online.import_help_wizard_view
msgid "Close"
msgstr ""
#. module: help_online
#. openerp-web
#: code:addons/help_online/static/src/js/help_online.js:91
#, python-format
msgid "Confirm"
msgstr ""
#. module: help_online
#: code:addons/help_online/models/help_online.py:57
#, python-format
msgid "Create Help page for %s"
msgstr ""
#. module: help_online
#: field:export.help.wizard,create_uid:0 field:help.online,create_uid:0
#: field:import.help.wizard,create_uid:0
msgid "Created by"
msgstr ""
#. module: help_online
#: field:export.help.wizard,create_date:0 field:help.online,create_date:0
#: field:import.help.wizard,create_date:0
msgid "Created on"
msgstr "Kreiran"
#. module: help_online
#: field:export.help.wizard,display_name:0 field:help.online,display_name:0
#: field:import.help.wizard,display_name:0
msgid "Display Name"
msgstr ""
#. module: help_online
#: view:export.help.wizard:help_online.export_help_wizard_view
msgid "Export"
msgstr ""
#. module: help_online
#: code:addons/help_online/models/export_help_wizard.py:267
#: model:ir.actions.act_window,name:help_online.action_export_help_wizard
#, python-format
msgid "Export Help"
msgstr ""
#. module: help_online
#: view:export.help.wizard:help_online.export_help_wizard_view
msgid "Export Help Data"
msgstr ""
#. module: help_online
#: model:ir.model,name:help_online.model_export_help_wizard
#: model:ir.ui.menu,name:help_online.menu_help_export
msgid "Export Help Online"
msgstr ""
#. module: help_online
#: field:export.help.wizard,export_filename:0
msgid "Export XML Filename"
msgstr ""
#. module: help_online
#: model:ir.ui.menu,name:help_online.menu_help
#: model:ir.ui.menu,name:help_online.menu_help_main
msgid "Help Online"
msgstr ""
#. module: help_online
#: code:addons/help_online/models/help_online.py:52
#, python-format
msgid "Help on %s"
msgstr ""
#. module: help_online
#: model:res.groups,name:help_online.help_online_group_reader
msgid "Help reader"
msgstr ""
#. module: help_online
#: model:res.groups,name:help_online.help_online_group_writer
msgid "Help writer"
msgstr ""
#. module: help_online
#: field:export.help.wizard,id:0 field:help.online,id:0
#: field:import.help.wizard,id:0
msgid "ID"
msgstr "ID"
#. module: help_online
#: view:import.help.wizard:help_online.import_help_wizard_view
msgid "Import"
msgstr ""
#. module: help_online
#: model:ir.actions.act_window,name:help_online.action_import_help_wizard
msgid "Import Help"
msgstr ""
#. module: help_online
#: view:import.help.wizard:help_online.import_help_wizard_view
msgid "Import Help Data"
msgstr ""
#. module: help_online
#: model:ir.ui.menu,name:help_online.menu_help_import
msgid "Import Help Online"
msgstr ""
#. module: help_online
#: field:export.help.wizard,__last_update:0 field:help.online,__last_update:0
#: field:import.help.wizard,__last_update:0
msgid "Last Modified on"
msgstr ""
#. module: help_online
#: field:export.help.wizard,write_uid:0 field:help.online,write_uid:0
#: field:import.help.wizard,write_uid:0
msgid "Last Updated by"
msgstr ""
#. module: help_online
#: field:export.help.wizard,write_date:0 field:help.online,write_date:0
#: field:import.help.wizard,write_date:0
msgid "Last Updated on"
msgstr ""
#. module: help_online
#: code:addons/help_online/models/export_help_wizard.py:260
#, python-format
msgid "No data to export !"
msgstr ""
#. module: help_online
#: code:addons/help_online/models/help_online.py:33
#, python-format
msgid "No page prefix parameter specified !"
msgstr ""
#. module: help_online
#. openerp-web
#: code:addons/help_online/static/src/js/help_online.js:98
#, python-format
msgid "Ok"
msgstr ""
#. module: help_online
#. openerp-web
#: code:addons/help_online/static/src/js/help_online.js:117
#, python-format
msgid "Page does not exist. Do you want to create?"
msgstr ""
#. module: help_online
#: field:import.help.wizard,source_file:0
msgid "Source File"
msgstr ""
#. module: help_online
#: view:export.help.wizard:help_online.export_help_wizard_view
msgid ""
"This wizard allow you to export all QWeb views\n"
" related to help online. The result will be an Odoo\n"
" data xml file."
msgstr ""
#. module: help_online
#: view:import.help.wizard:help_online.import_help_wizard_view
msgid ""
"This wizard allow you to import QWeb views\n"
" related to help online. The required file format is "
"an Odoo\n"
" data xml file."
msgstr ""
#. module: help_online
#: code:addons/help_online/models/export_help_wizard.py:297
#, python-format
msgid "Unable to write autobackup file in given directory: %s"
msgstr ""
#. module: help_online
#: view:ir.ui.view:help_online.view_view_search
msgid "Website Page"
msgstr ""
#. module: help_online
#: view:ir.ui.view:help_online.view_view_form
msgid "Website Page?"
msgstr ""
#. module: help_online
#: model:ir.actions.act_window,name:help_online.action_website_pages
#: model:ir.ui.menu,name:help_online.menu_help_pages
msgid "Website Pages"
msgstr ""
#. module: help_online
#: field:export.help.wizard,data:0
msgid "XML"
msgstr ""
#. module: help_online
#: view:export.help.wizard:help_online.export_help_wizard_view
#: view:import.help.wizard:help_online.import_help_wizard_view
msgid "or"
msgstr ""

239
help_online/i18n/sr@latin.po

@ -0,0 +1,239 @@
# Translation of Odoo Server.
# This file contains the translation of the following modules:
# * help_online
#
# Translators:
msgid ""
msgstr ""
"Project-Id-Version: web (8.0)\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2018-01-16 08:57+0000\n"
"PO-Revision-Date: 2017-09-22 17:19+0000\n"
"Last-Translator: OCA Transbot <transbot@odoo-community.org>\n"
"Language-Team: Serbian (Latin) (http://www.transifex.com/oca/OCA-web-8-0/"
"language/sr%40latin/)\n"
"Language: sr@latin\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: \n"
"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n"
"%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n"
#. module: help_online
#. openerp-web
#: code:addons/help_online/static/src/js/help_online.js:93
#, python-format
msgid "Cancel"
msgstr "Otkaži"
#. module: help_online
#: view:export.help.wizard:help_online.export_help_wizard_view
#: view:import.help.wizard:help_online.import_help_wizard_view
msgid "Close"
msgstr "Zatvori"
#. module: help_online
#. openerp-web
#: code:addons/help_online/static/src/js/help_online.js:91
#, python-format
msgid "Confirm"
msgstr ""
#. module: help_online
#: code:addons/help_online/models/help_online.py:57
#, python-format
msgid "Create Help page for %s"
msgstr ""
#. module: help_online
#: field:export.help.wizard,create_uid:0 field:help.online,create_uid:0
#: field:import.help.wizard,create_uid:0
msgid "Created by"
msgstr "Kreirao"
#. module: help_online
#: field:export.help.wizard,create_date:0 field:help.online,create_date:0
#: field:import.help.wizard,create_date:0
msgid "Created on"
msgstr "Kreiran"
#. module: help_online
#: field:export.help.wizard,display_name:0 field:help.online,display_name:0
#: field:import.help.wizard,display_name:0
msgid "Display Name"
msgstr "Ime za prikaz"
#. module: help_online
#: view:export.help.wizard:help_online.export_help_wizard_view
msgid "Export"
msgstr ""
#. module: help_online
#: code:addons/help_online/models/export_help_wizard.py:267
#: model:ir.actions.act_window,name:help_online.action_export_help_wizard
#, python-format
msgid "Export Help"
msgstr ""
#. module: help_online
#: view:export.help.wizard:help_online.export_help_wizard_view
msgid "Export Help Data"
msgstr ""
#. module: help_online
#: model:ir.model,name:help_online.model_export_help_wizard
#: model:ir.ui.menu,name:help_online.menu_help_export
msgid "Export Help Online"
msgstr ""
#. module: help_online
#: field:export.help.wizard,export_filename:0
msgid "Export XML Filename"
msgstr ""
#. module: help_online
#: model:ir.ui.menu,name:help_online.menu_help
#: model:ir.ui.menu,name:help_online.menu_help_main
msgid "Help Online"
msgstr ""
#. module: help_online
#: code:addons/help_online/models/help_online.py:52
#, python-format
msgid "Help on %s"
msgstr ""
#. module: help_online
#: model:res.groups,name:help_online.help_online_group_reader
msgid "Help reader"
msgstr ""
#. module: help_online
#: model:res.groups,name:help_online.help_online_group_writer
msgid "Help writer"
msgstr ""
#. module: help_online
#: field:export.help.wizard,id:0 field:help.online,id:0
#: field:import.help.wizard,id:0
msgid "ID"
msgstr "ID"
#. module: help_online
#: view:import.help.wizard:help_online.import_help_wizard_view
msgid "Import"
msgstr ""
#. module: help_online
#: model:ir.actions.act_window,name:help_online.action_import_help_wizard
msgid "Import Help"
msgstr ""
#. module: help_online
#: view:import.help.wizard:help_online.import_help_wizard_view
msgid "Import Help Data"
msgstr ""
#. module: help_online
#: model:ir.ui.menu,name:help_online.menu_help_import
msgid "Import Help Online"
msgstr ""
#. module: help_online
#: field:export.help.wizard,__last_update:0 field:help.online,__last_update:0
#: field:import.help.wizard,__last_update:0
msgid "Last Modified on"
msgstr "Zadnja izmjena"
#. module: help_online
#: field:export.help.wizard,write_uid:0 field:help.online,write_uid:0
#: field:import.help.wizard,write_uid:0
msgid "Last Updated by"
msgstr "Zadnja izmjena"
#. module: help_online
#: field:export.help.wizard,write_date:0 field:help.online,write_date:0
#: field:import.help.wizard,write_date:0
msgid "Last Updated on"
msgstr "Zadnja izmjena"
#. module: help_online
#: code:addons/help_online/models/export_help_wizard.py:260
#, python-format
msgid "No data to export !"
msgstr ""
#. module: help_online
#: code:addons/help_online/models/help_online.py:33
#, python-format
msgid "No page prefix parameter specified !"
msgstr ""
#. module: help_online
#. openerp-web
#: code:addons/help_online/static/src/js/help_online.js:98
#, python-format
msgid "Ok"
msgstr ""
#. module: help_online
#. openerp-web
#: code:addons/help_online/static/src/js/help_online.js:117
#, python-format
msgid "Page does not exist. Do you want to create?"
msgstr ""
#. module: help_online
#: field:import.help.wizard,source_file:0
msgid "Source File"
msgstr ""
#. module: help_online
#: view:export.help.wizard:help_online.export_help_wizard_view
msgid ""
"This wizard allow you to export all QWeb views\n"
" related to help online. The result will be an Odoo\n"
" data xml file."
msgstr ""
#. module: help_online
#: view:import.help.wizard:help_online.import_help_wizard_view
msgid ""
"This wizard allow you to import QWeb views\n"
" related to help online. The required file format is "
"an Odoo\n"
" data xml file."
msgstr ""
#. module: help_online
#: code:addons/help_online/models/export_help_wizard.py:297
#, python-format
msgid "Unable to write autobackup file in given directory: %s"
msgstr ""
#. module: help_online
#: view:ir.ui.view:help_online.view_view_search
msgid "Website Page"
msgstr ""
#. module: help_online
#: view:ir.ui.view:help_online.view_view_form
msgid "Website Page?"
msgstr ""
#. module: help_online
#: model:ir.actions.act_window,name:help_online.action_website_pages
#: model:ir.ui.menu,name:help_online.menu_help_pages
msgid "Website Pages"
msgstr ""
#. module: help_online
#: field:export.help.wizard,data:0
msgid "XML"
msgstr ""
#. module: help_online
#: view:export.help.wizard:help_online.export_help_wizard_view
#: view:import.help.wizard:help_online.import_help_wizard_view
msgid "or"
msgstr "ili"

238
help_online/i18n/sv.po

@ -0,0 +1,238 @@
# Translation of Odoo Server.
# This file contains the translation of the following modules:
# * help_online
#
# Translators:
msgid ""
msgstr ""
"Project-Id-Version: web (8.0)\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2018-01-16 08:57+0000\n"
"PO-Revision-Date: 2017-11-23 23:28+0000\n"
"Last-Translator: OCA Transbot <transbot@odoo-community.org>\n"
"Language-Team: Swedish (http://www.transifex.com/oca/OCA-web-8-0/language/"
"sv/)\n"
"Language: sv\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: help_online
#. openerp-web
#: code:addons/help_online/static/src/js/help_online.js:93
#, python-format
msgid "Cancel"
msgstr "Avbryt"
#. module: help_online
#: view:export.help.wizard:help_online.export_help_wizard_view
#: view:import.help.wizard:help_online.import_help_wizard_view
msgid "Close"
msgstr "Stäng"
#. module: help_online
#. openerp-web
#: code:addons/help_online/static/src/js/help_online.js:91
#, python-format
msgid "Confirm"
msgstr ""
#. module: help_online
#: code:addons/help_online/models/help_online.py:57
#, python-format
msgid "Create Help page for %s"
msgstr ""
#. module: help_online
#: field:export.help.wizard,create_uid:0 field:help.online,create_uid:0
#: field:import.help.wizard,create_uid:0
msgid "Created by"
msgstr "Skapad av"
#. module: help_online
#: field:export.help.wizard,create_date:0 field:help.online,create_date:0
#: field:import.help.wizard,create_date:0
msgid "Created on"
msgstr "Skapad den"
#. module: help_online
#: field:export.help.wizard,display_name:0 field:help.online,display_name:0
#: field:import.help.wizard,display_name:0
msgid "Display Name"
msgstr "Visa namn"
#. module: help_online
#: view:export.help.wizard:help_online.export_help_wizard_view
msgid "Export"
msgstr ""
#. module: help_online
#: code:addons/help_online/models/export_help_wizard.py:267
#: model:ir.actions.act_window,name:help_online.action_export_help_wizard
#, python-format
msgid "Export Help"
msgstr ""
#. module: help_online
#: view:export.help.wizard:help_online.export_help_wizard_view
msgid "Export Help Data"
msgstr ""
#. module: help_online
#: model:ir.model,name:help_online.model_export_help_wizard
#: model:ir.ui.menu,name:help_online.menu_help_export
msgid "Export Help Online"
msgstr ""
#. module: help_online
#: field:export.help.wizard,export_filename:0
msgid "Export XML Filename"
msgstr ""
#. module: help_online
#: model:ir.ui.menu,name:help_online.menu_help
#: model:ir.ui.menu,name:help_online.menu_help_main
msgid "Help Online"
msgstr ""
#. module: help_online
#: code:addons/help_online/models/help_online.py:52
#, python-format
msgid "Help on %s"
msgstr ""
#. module: help_online
#: model:res.groups,name:help_online.help_online_group_reader
msgid "Help reader"
msgstr ""
#. module: help_online
#: model:res.groups,name:help_online.help_online_group_writer
msgid "Help writer"
msgstr ""
#. module: help_online
#: field:export.help.wizard,id:0 field:help.online,id:0
#: field:import.help.wizard,id:0
msgid "ID"
msgstr "ID"
#. module: help_online
#: view:import.help.wizard:help_online.import_help_wizard_view
msgid "Import"
msgstr ""
#. module: help_online
#: model:ir.actions.act_window,name:help_online.action_import_help_wizard
msgid "Import Help"
msgstr ""
#. module: help_online
#: view:import.help.wizard:help_online.import_help_wizard_view
msgid "Import Help Data"
msgstr ""
#. module: help_online
#: model:ir.ui.menu,name:help_online.menu_help_import
msgid "Import Help Online"
msgstr ""
#. module: help_online
#: field:export.help.wizard,__last_update:0 field:help.online,__last_update:0
#: field:import.help.wizard,__last_update:0
msgid "Last Modified on"
msgstr "Senast redigerad"
#. module: help_online
#: field:export.help.wizard,write_uid:0 field:help.online,write_uid:0
#: field:import.help.wizard,write_uid:0
msgid "Last Updated by"
msgstr "Senast uppdaterad av"
#. module: help_online
#: field:export.help.wizard,write_date:0 field:help.online,write_date:0
#: field:import.help.wizard,write_date:0
msgid "Last Updated on"
msgstr "Senast uppdaterad"
#. module: help_online
#: code:addons/help_online/models/export_help_wizard.py:260
#, python-format
msgid "No data to export !"
msgstr ""
#. module: help_online
#: code:addons/help_online/models/help_online.py:33
#, python-format
msgid "No page prefix parameter specified !"
msgstr ""
#. module: help_online
#. openerp-web
#: code:addons/help_online/static/src/js/help_online.js:98
#, python-format
msgid "Ok"
msgstr ""
#. module: help_online
#. openerp-web
#: code:addons/help_online/static/src/js/help_online.js:117
#, python-format
msgid "Page does not exist. Do you want to create?"
msgstr ""
#. module: help_online
#: field:import.help.wizard,source_file:0
msgid "Source File"
msgstr ""
#. module: help_online
#: view:export.help.wizard:help_online.export_help_wizard_view
msgid ""
"This wizard allow you to export all QWeb views\n"
" related to help online. The result will be an Odoo\n"
" data xml file."
msgstr ""
#. module: help_online
#: view:import.help.wizard:help_online.import_help_wizard_view
msgid ""
"This wizard allow you to import QWeb views\n"
" related to help online. The required file format is "
"an Odoo\n"
" data xml file."
msgstr ""
#. module: help_online
#: code:addons/help_online/models/export_help_wizard.py:297
#, python-format
msgid "Unable to write autobackup file in given directory: %s"
msgstr ""
#. module: help_online
#: view:ir.ui.view:help_online.view_view_search
msgid "Website Page"
msgstr ""
#. module: help_online
#: view:ir.ui.view:help_online.view_view_form
msgid "Website Page?"
msgstr ""
#. module: help_online
#: model:ir.actions.act_window,name:help_online.action_website_pages
#: model:ir.ui.menu,name:help_online.menu_help_pages
msgid "Website Pages"
msgstr ""
#. module: help_online
#: field:export.help.wizard,data:0
msgid "XML"
msgstr ""
#. module: help_online
#: view:export.help.wizard:help_online.export_help_wizard_view
#: view:import.help.wizard:help_online.import_help_wizard_view
msgid "or"
msgstr "eller"

237
help_online/i18n/th.po

@ -0,0 +1,237 @@
# Translation of Odoo Server.
# This file contains the translation of the following modules:
# * help_online
#
# Translators:
msgid ""
msgstr ""
"Project-Id-Version: web (8.0)\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2018-01-16 08:57+0000\n"
"PO-Revision-Date: 2017-11-23 23:26+0000\n"
"Last-Translator: OCA Transbot <transbot@odoo-community.org>\n"
"Language-Team: Thai (http://www.transifex.com/oca/OCA-web-8-0/language/th/)\n"
"Language: th\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: \n"
"Plural-Forms: nplurals=1; plural=0;\n"
#. module: help_online
#. openerp-web
#: code:addons/help_online/static/src/js/help_online.js:93
#, python-format
msgid "Cancel"
msgstr "ยกเลิก"
#. module: help_online
#: view:export.help.wizard:help_online.export_help_wizard_view
#: view:import.help.wizard:help_online.import_help_wizard_view
msgid "Close"
msgstr "ปิด"
#. module: help_online
#. openerp-web
#: code:addons/help_online/static/src/js/help_online.js:91
#, python-format
msgid "Confirm"
msgstr ""
#. module: help_online
#: code:addons/help_online/models/help_online.py:57
#, python-format
msgid "Create Help page for %s"
msgstr ""
#. module: help_online
#: field:export.help.wizard,create_uid:0 field:help.online,create_uid:0
#: field:import.help.wizard,create_uid:0
msgid "Created by"
msgstr "สร้างโดย"
#. module: help_online
#: field:export.help.wizard,create_date:0 field:help.online,create_date:0
#: field:import.help.wizard,create_date:0
msgid "Created on"
msgstr "สร้างเมื่อ"
#. module: help_online
#: field:export.help.wizard,display_name:0 field:help.online,display_name:0
#: field:import.help.wizard,display_name:0
msgid "Display Name"
msgstr "ชื่อที่ใช้แสดง"
#. module: help_online
#: view:export.help.wizard:help_online.export_help_wizard_view
msgid "Export"
msgstr ""
#. module: help_online
#: code:addons/help_online/models/export_help_wizard.py:267
#: model:ir.actions.act_window,name:help_online.action_export_help_wizard
#, python-format
msgid "Export Help"
msgstr ""
#. module: help_online
#: view:export.help.wizard:help_online.export_help_wizard_view
msgid "Export Help Data"
msgstr ""
#. module: help_online
#: model:ir.model,name:help_online.model_export_help_wizard
#: model:ir.ui.menu,name:help_online.menu_help_export
msgid "Export Help Online"
msgstr ""
#. module: help_online
#: field:export.help.wizard,export_filename:0
msgid "Export XML Filename"
msgstr ""
#. module: help_online
#: model:ir.ui.menu,name:help_online.menu_help
#: model:ir.ui.menu,name:help_online.menu_help_main
msgid "Help Online"
msgstr ""
#. module: help_online
#: code:addons/help_online/models/help_online.py:52
#, python-format
msgid "Help on %s"
msgstr ""
#. module: help_online
#: model:res.groups,name:help_online.help_online_group_reader
msgid "Help reader"
msgstr ""
#. module: help_online
#: model:res.groups,name:help_online.help_online_group_writer
msgid "Help writer"
msgstr ""
#. module: help_online
#: field:export.help.wizard,id:0 field:help.online,id:0
#: field:import.help.wizard,id:0
msgid "ID"
msgstr "รหัส"
#. module: help_online
#: view:import.help.wizard:help_online.import_help_wizard_view
msgid "Import"
msgstr ""
#. module: help_online
#: model:ir.actions.act_window,name:help_online.action_import_help_wizard
msgid "Import Help"
msgstr ""
#. module: help_online
#: view:import.help.wizard:help_online.import_help_wizard_view
msgid "Import Help Data"
msgstr ""
#. module: help_online
#: model:ir.ui.menu,name:help_online.menu_help_import
msgid "Import Help Online"
msgstr ""
#. module: help_online
#: field:export.help.wizard,__last_update:0 field:help.online,__last_update:0
#: field:import.help.wizard,__last_update:0
msgid "Last Modified on"
msgstr "แก้ไขครั้งสุดท้ายเมื่อ"
#. module: help_online
#: field:export.help.wizard,write_uid:0 field:help.online,write_uid:0
#: field:import.help.wizard,write_uid:0
msgid "Last Updated by"
msgstr "อัพเดทครั้งสุดท้ายโดย"
#. module: help_online
#: field:export.help.wizard,write_date:0 field:help.online,write_date:0
#: field:import.help.wizard,write_date:0
msgid "Last Updated on"
msgstr "อัพเดทครั้งสุดท้ายเมื่อ"
#. module: help_online
#: code:addons/help_online/models/export_help_wizard.py:260
#, python-format
msgid "No data to export !"
msgstr ""
#. module: help_online
#: code:addons/help_online/models/help_online.py:33
#, python-format
msgid "No page prefix parameter specified !"
msgstr ""
#. module: help_online
#. openerp-web
#: code:addons/help_online/static/src/js/help_online.js:98
#, python-format
msgid "Ok"
msgstr ""
#. module: help_online
#. openerp-web
#: code:addons/help_online/static/src/js/help_online.js:117
#, python-format
msgid "Page does not exist. Do you want to create?"
msgstr ""
#. module: help_online
#: field:import.help.wizard,source_file:0
msgid "Source File"
msgstr ""
#. module: help_online
#: view:export.help.wizard:help_online.export_help_wizard_view
msgid ""
"This wizard allow you to export all QWeb views\n"
" related to help online. The result will be an Odoo\n"
" data xml file."
msgstr ""
#. module: help_online
#: view:import.help.wizard:help_online.import_help_wizard_view
msgid ""
"This wizard allow you to import QWeb views\n"
" related to help online. The required file format is "
"an Odoo\n"
" data xml file."
msgstr ""
#. module: help_online
#: code:addons/help_online/models/export_help_wizard.py:297
#, python-format
msgid "Unable to write autobackup file in given directory: %s"
msgstr ""
#. module: help_online
#: view:ir.ui.view:help_online.view_view_search
msgid "Website Page"
msgstr ""
#. module: help_online
#: view:ir.ui.view:help_online.view_view_form
msgid "Website Page?"
msgstr ""
#. module: help_online
#: model:ir.actions.act_window,name:help_online.action_website_pages
#: model:ir.ui.menu,name:help_online.menu_help_pages
msgid "Website Pages"
msgstr ""
#. module: help_online
#: field:export.help.wizard,data:0
msgid "XML"
msgstr ""
#. module: help_online
#: view:export.help.wizard:help_online.export_help_wizard_view
#: view:import.help.wizard:help_online.import_help_wizard_view
msgid "or"
msgstr "หรือ"

261
help_online/i18n/tr.po

@ -0,0 +1,261 @@
# Translation of Odoo Server.
# This file contains the translation of the following modules:
# * help_online
#
# Translators:
# Ahmet Altinisik <aaltinisik@altinkaya.com.tr>, 2015
# Ahmet Altinisik <aaltinisik@altinkaya.com.tr>, 2015-2016
# Ahmet Altinisik <aaltinisik@altinkaya.com.tr>, 2015
# Armando Vulcano Junior <vulcano@uol.com.br>, 2015
# Bruno JOLIVEAU, 2015
# FIRST AUTHOR <EMAIL@ADDRESS>, 2012-2013
# Hotellook, 2014
# Jarmo Kortetjärvi <jarmo.kortetjarvi@gmail.com>, 2016
# Matjaž Mozetič <m.mozetic@matmoz.si>, 2015
# Paolo Valier, 2016
# Pedro M. Baeza <pedro.baeza@gmail.com>, 2015
# Rudolf Schnapka <rs@techno-flex.de>, 2016
# SaFi J. <safi2266@gmail.com>, 2015
# Thomas A. Jaeger, 2015
# Yael Terrettaz, 2015
# yterrettaz, 2015
# yterrettaz, 2015
msgid ""
msgstr ""
"Project-Id-Version: web (8.0)\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2016-12-29 03:45+0000\n"
"PO-Revision-Date: 2016-12-30 21:59+0000\n"
"Last-Translator: Ahmet Altinisik <aaltinisik@altinkaya.com.tr>\n"
"Language-Team: Turkish (http://www.transifex.com/oca/OCA-web-8-0/language/"
"tr/)\n"
"Language: tr\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: help_online
#. openerp-web
#: code:addons/help_online/static/src/js/help_online.js:93
#, python-format
msgid "Cancel"
msgstr "İptal"
#. module: help_online
#: view:export.help.wizard:help_online.export_help_wizard_view
#: view:import.help.wizard:help_online.import_help_wizard_view
msgid "Close"
msgstr "Kapat"
#. module: help_online
#. openerp-web
#: code:addons/help_online/static/src/js/help_online.js:91
#, python-format
msgid "Confirm"
msgstr "Onayla"
#. module: help_online
#: code:addons/help_online/models/help_online.py:57
#, python-format
msgid "Create Help page for %s"
msgstr "%s için yardım sayfası oluştur"
#. module: help_online
#: field:export.help.wizard,create_uid:0 field:help.online,create_uid:0
#: field:import.help.wizard,create_uid:0
msgid "Created by"
msgstr "Oluşturan"
#. module: help_online
#: field:export.help.wizard,create_date:0 field:help.online,create_date:0
#: field:import.help.wizard,create_date:0
msgid "Created on"
msgstr "Oluşturuldu"
#. module: help_online
#: field:export.help.wizard,display_name:0 field:help.online,display_name:0
#: field:import.help.wizard,display_name:0
msgid "Display Name"
msgstr "Görünen İsim"
#. module: help_online
#: view:export.help.wizard:help_online.export_help_wizard_view
msgid "Export"
msgstr "Dışa aktar"
#. module: help_online
#: code:addons/help_online/models/export_help_wizard.py:267
#: model:ir.actions.act_window,name:help_online.action_export_help_wizard
#, python-format
msgid "Export Help"
msgstr "Yardımı dışa aktar"
#. module: help_online
#: view:export.help.wizard:help_online.export_help_wizard_view
msgid "Export Help Data"
msgstr "Yardım verisini dışa aktar"
#. module: help_online
#: model:ir.model,name:help_online.model_export_help_wizard
#: model:ir.ui.menu,name:help_online.menu_help_export
msgid "Export Help Online"
msgstr "Online yardımı dışa aktar"
#. module: help_online
#: field:export.help.wizard,export_filename:0
msgid "Export XML Filename"
msgstr "Dışa aktarma XML dosyası"
#. module: help_online
#: model:ir.ui.menu,name:help_online.menu_help
#: model:ir.ui.menu,name:help_online.menu_help_main
msgid "Help Online"
msgstr "Online yardım"
#. module: help_online
#: code:addons/help_online/models/help_online.py:52
#, python-format
msgid "Help on %s"
msgstr "%s yardımı"
#. module: help_online
#: model:res.groups,name:help_online.help_online_group_reader
msgid "Help reader"
msgstr "Yardım okuyanı"
#. module: help_online
#: model:res.groups,name:help_online.help_online_group_writer
msgid "Help writer"
msgstr "Yardım yazarı"
#. module: help_online
#: field:export.help.wizard,id:0 field:help.online,id:0
#: field:import.help.wizard,id:0
msgid "ID"
msgstr "ID"
#. module: help_online
#: view:import.help.wizard:help_online.import_help_wizard_view
msgid "Import"
msgstr "İçe aktar"
#. module: help_online
#: model:ir.actions.act_window,name:help_online.action_import_help_wizard
msgid "Import Help"
msgstr "İçe aktarma yardımı"
#. module: help_online
#: view:import.help.wizard:help_online.import_help_wizard_view
msgid "Import Help Data"
msgstr "Yardım verisini içe aktarma"
#. module: help_online
#: model:ir.ui.menu,name:help_online.menu_help_import
msgid "Import Help Online"
msgstr "Online yardımı İçe aktar"
#. module: help_online
#: field:export.help.wizard,__last_update:0 field:help.online,__last_update:0
#: field:import.help.wizard,__last_update:0
msgid "Last Modified on"
msgstr "Son değişiklik"
#. module: help_online
#: field:export.help.wizard,write_uid:0 field:help.online,write_uid:0
#: field:import.help.wizard,write_uid:0
msgid "Last Updated by"
msgstr "Son Güncelleyen"
#. module: help_online
#: field:export.help.wizard,write_date:0 field:help.online,write_date:0
#: field:import.help.wizard,write_date:0
msgid "Last Updated on"
msgstr "Son güncellendi"
#. module: help_online
#: code:addons/help_online/models/export_help_wizard.py:260
#, python-format
msgid "No data to export !"
msgstr "Dışa aktarılacak veri yok !"
#. module: help_online
#: code:addons/help_online/models/help_online.py:33
#, python-format
msgid "No page prefix parameter specified !"
msgstr "Hiç sayfa ön-ek parametresi tanımlanmamış !"
#. module: help_online
#. openerp-web
#: code:addons/help_online/static/src/js/help_online.js:98
#, python-format
msgid "Ok"
msgstr "Taman"
#. module: help_online
#. openerp-web
#: code:addons/help_online/static/src/js/help_online.js:117
#, python-format
msgid "Page does not exist. Do you want to create?"
msgstr "Sayfa bulunamadı, baştan oluşturmak ister misin?"
#. module: help_online
#: field:import.help.wizard,source_file:0
msgid "Source File"
msgstr "Kaynak Dosya"
#. module: help_online
#: view:export.help.wizard:help_online.export_help_wizard_view
msgid ""
"This wizard allow you to export all QWeb views\n"
" related to help online. The result will be an Odoo\n"
" data xml file."
msgstr ""
"Bu sihirbaz online yardım ile alakalı bütün QWeb \n"
"görüntülerini dışarı aktarmaya olanak verir. Sonuç\n"
"bir Odoo xml dosyasıdır."
#. module: help_online
#: view:import.help.wizard:help_online.import_help_wizard_view
msgid ""
"This wizard allow you to import QWeb views\n"
" related to help online. The required file format is "
"an Odoo\n"
" data xml file."
msgstr ""
"Bu sihirbaz online yardım ile alakalı bütün QWeb \n"
"görüntülerini dışarı aktarmaya olanak verir. Sonuç\n"
"bir Odoo xml dosyasıdır."
#. module: help_online
#: code:addons/help_online/models/export_help_wizard.py:297
#, python-format
msgid "Unable to write autobackup file in given directory: %s"
msgstr "%s klasörüne otomatik yedek dosyası yazılamıyor"
#. module: help_online
#: view:ir.ui.view:help_online.view_view_search
msgid "Website Page"
msgstr "Website Sayfası"
#. module: help_online
#: view:ir.ui.view:help_online.view_view_form
msgid "Website Page?"
msgstr "Websitesi sayfası?"
#. module: help_online
#: model:ir.actions.act_window,name:help_online.action_website_pages
#: model:ir.ui.menu,name:help_online.menu_help_pages
msgid "Website Pages"
msgstr "Websitesi Sayfaları"
#. module: help_online
#: field:export.help.wizard,data:0
msgid "XML"
msgstr "XML"
#. module: help_online
#: view:export.help.wizard:help_online.export_help_wizard_view
#: view:import.help.wizard:help_online.import_help_wizard_view
msgid "or"
msgstr "ya da"

238
help_online/i18n/tr_TR.po

@ -0,0 +1,238 @@
# Translation of Odoo Server.
# This file contains the translation of the following modules:
# * help_online
#
# Translators:
msgid ""
msgstr ""
"Project-Id-Version: web (8.0)\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2016-12-31 10:10+0000\n"
"PO-Revision-Date: 2017-01-04 14:44+0000\n"
"Last-Translator: OCA Transbot <transbot@odoo-community.org>\n"
"Language-Team: Turkish (Turkey) (http://www.transifex.com/oca/OCA-web-8-0/"
"language/tr_TR/)\n"
"Language: tr_TR\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: \n"
"Plural-Forms: nplurals=1; plural=0;\n"
#. module: help_online
#. openerp-web
#: code:addons/help_online/static/src/js/help_online.js:93
#, python-format
msgid "Cancel"
msgstr "İptal et"
#. module: help_online
#: view:export.help.wizard:help_online.export_help_wizard_view
#: view:import.help.wizard:help_online.import_help_wizard_view
msgid "Close"
msgstr ""
#. module: help_online
#. openerp-web
#: code:addons/help_online/static/src/js/help_online.js:91
#, python-format
msgid "Confirm"
msgstr "Onayla"
#. module: help_online
#: code:addons/help_online/models/help_online.py:57
#, python-format
msgid "Create Help page for %s"
msgstr ""
#. module: help_online
#: field:export.help.wizard,create_uid:0 field:help.online,create_uid:0
#: field:import.help.wizard,create_uid:0
msgid "Created by"
msgstr "Oluşturan"
#. module: help_online
#: field:export.help.wizard,create_date:0 field:help.online,create_date:0
#: field:import.help.wizard,create_date:0
msgid "Created on"
msgstr "Oluşturulma tarihi"
#. module: help_online
#: field:export.help.wizard,display_name:0 field:help.online,display_name:0
#: field:import.help.wizard,display_name:0
msgid "Display Name"
msgstr "Görünen ad"
#. module: help_online
#: view:export.help.wizard:help_online.export_help_wizard_view
msgid "Export"
msgstr ""
#. module: help_online
#: code:addons/help_online/models/export_help_wizard.py:267
#: model:ir.actions.act_window,name:help_online.action_export_help_wizard
#, python-format
msgid "Export Help"
msgstr ""
#. module: help_online
#: view:export.help.wizard:help_online.export_help_wizard_view
msgid "Export Help Data"
msgstr ""
#. module: help_online
#: model:ir.model,name:help_online.model_export_help_wizard
#: model:ir.ui.menu,name:help_online.menu_help_export
msgid "Export Help Online"
msgstr ""
#. module: help_online
#: field:export.help.wizard,export_filename:0
msgid "Export XML Filename"
msgstr ""
#. module: help_online
#: model:ir.ui.menu,name:help_online.menu_help
#: model:ir.ui.menu,name:help_online.menu_help_main
msgid "Help Online"
msgstr ""
#. module: help_online
#: code:addons/help_online/models/help_online.py:52
#, python-format
msgid "Help on %s"
msgstr ""
#. module: help_online
#: model:res.groups,name:help_online.help_online_group_reader
msgid "Help reader"
msgstr ""
#. module: help_online
#: model:res.groups,name:help_online.help_online_group_writer
msgid "Help writer"
msgstr ""
#. module: help_online
#: field:export.help.wizard,id:0 field:help.online,id:0
#: field:import.help.wizard,id:0
msgid "ID"
msgstr "Kimlik"
#. module: help_online
#: view:import.help.wizard:help_online.import_help_wizard_view
msgid "Import"
msgstr ""
#. module: help_online
#: model:ir.actions.act_window,name:help_online.action_import_help_wizard
msgid "Import Help"
msgstr ""
#. module: help_online
#: view:import.help.wizard:help_online.import_help_wizard_view
msgid "Import Help Data"
msgstr ""
#. module: help_online
#: model:ir.ui.menu,name:help_online.menu_help_import
msgid "Import Help Online"
msgstr ""
#. module: help_online
#: field:export.help.wizard,__last_update:0 field:help.online,__last_update:0
#: field:import.help.wizard,__last_update:0
msgid "Last Modified on"
msgstr "En son güncelleme tarihi"
#. module: help_online
#: field:export.help.wizard,write_uid:0 field:help.online,write_uid:0
#: field:import.help.wizard,write_uid:0
msgid "Last Updated by"
msgstr "En son güncelleyen "
#. module: help_online
#: field:export.help.wizard,write_date:0 field:help.online,write_date:0
#: field:import.help.wizard,write_date:0
msgid "Last Updated on"
msgstr "En son güncelleme tarihi"
#. module: help_online
#: code:addons/help_online/models/export_help_wizard.py:260
#, python-format
msgid "No data to export !"
msgstr ""
#. module: help_online
#: code:addons/help_online/models/help_online.py:33
#, python-format
msgid "No page prefix parameter specified !"
msgstr ""
#. module: help_online
#. openerp-web
#: code:addons/help_online/static/src/js/help_online.js:98
#, python-format
msgid "Ok"
msgstr ""
#. module: help_online
#. openerp-web
#: code:addons/help_online/static/src/js/help_online.js:117
#, python-format
msgid "Page does not exist. Do you want to create?"
msgstr ""
#. module: help_online
#: field:import.help.wizard,source_file:0
msgid "Source File"
msgstr ""
#. module: help_online
#: view:export.help.wizard:help_online.export_help_wizard_view
msgid ""
"This wizard allow you to export all QWeb views\n"
" related to help online. The result will be an Odoo\n"
" data xml file."
msgstr ""
#. module: help_online
#: view:import.help.wizard:help_online.import_help_wizard_view
msgid ""
"This wizard allow you to import QWeb views\n"
" related to help online. The required file format is "
"an Odoo\n"
" data xml file."
msgstr ""
#. module: help_online
#: code:addons/help_online/models/export_help_wizard.py:297
#, python-format
msgid "Unable to write autobackup file in given directory: %s"
msgstr ""
#. module: help_online
#: view:ir.ui.view:help_online.view_view_search
msgid "Website Page"
msgstr ""
#. module: help_online
#: view:ir.ui.view:help_online.view_view_form
msgid "Website Page?"
msgstr ""
#. module: help_online
#: model:ir.actions.act_window,name:help_online.action_website_pages
#: model:ir.ui.menu,name:help_online.menu_help_pages
msgid "Website Pages"
msgstr ""
#. module: help_online
#: field:export.help.wizard,data:0
msgid "XML"
msgstr ""
#. module: help_online
#: view:export.help.wizard:help_online.export_help_wizard_view
#: view:import.help.wizard:help_online.import_help_wizard_view
msgid "or"
msgstr "ya da "

239
help_online/i18n/uk.po

@ -0,0 +1,239 @@
# Translation of Odoo Server.
# This file contains the translation of the following modules:
# * help_online
#
# Translators:
msgid ""
msgstr ""
"Project-Id-Version: web (8.0)\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2016-12-29 03:45+0000\n"
"PO-Revision-Date: 2016-12-27 08:26+0000\n"
"Last-Translator: OCA Transbot <transbot@odoo-community.org>\n"
"Language-Team: Ukrainian (http://www.transifex.com/oca/OCA-web-8-0/language/"
"uk/)\n"
"Language: uk\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: \n"
"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n"
"%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n"
#. module: help_online
#. openerp-web
#: code:addons/help_online/static/src/js/help_online.js:93
#, python-format
msgid "Cancel"
msgstr "Скасувати"
#. module: help_online
#: view:export.help.wizard:help_online.export_help_wizard_view
#: view:import.help.wizard:help_online.import_help_wizard_view
msgid "Close"
msgstr ""
#. module: help_online
#. openerp-web
#: code:addons/help_online/static/src/js/help_online.js:91
#, python-format
msgid "Confirm"
msgstr ""
#. module: help_online
#: code:addons/help_online/models/help_online.py:57
#, python-format
msgid "Create Help page for %s"
msgstr ""
#. module: help_online
#: field:export.help.wizard,create_uid:0 field:help.online,create_uid:0
#: field:import.help.wizard,create_uid:0
msgid "Created by"
msgstr "Створив"
#. module: help_online
#: field:export.help.wizard,create_date:0 field:help.online,create_date:0
#: field:import.help.wizard,create_date:0
msgid "Created on"
msgstr "Дата створення"
#. module: help_online
#: field:export.help.wizard,display_name:0 field:help.online,display_name:0
#: field:import.help.wizard,display_name:0
msgid "Display Name"
msgstr "Назва для відображення"
#. module: help_online
#: view:export.help.wizard:help_online.export_help_wizard_view
msgid "Export"
msgstr ""
#. module: help_online
#: code:addons/help_online/models/export_help_wizard.py:267
#: model:ir.actions.act_window,name:help_online.action_export_help_wizard
#, python-format
msgid "Export Help"
msgstr ""
#. module: help_online
#: view:export.help.wizard:help_online.export_help_wizard_view
msgid "Export Help Data"
msgstr ""
#. module: help_online
#: model:ir.model,name:help_online.model_export_help_wizard
#: model:ir.ui.menu,name:help_online.menu_help_export
msgid "Export Help Online"
msgstr ""
#. module: help_online
#: field:export.help.wizard,export_filename:0
msgid "Export XML Filename"
msgstr ""
#. module: help_online
#: model:ir.ui.menu,name:help_online.menu_help
#: model:ir.ui.menu,name:help_online.menu_help_main
msgid "Help Online"
msgstr ""
#. module: help_online
#: code:addons/help_online/models/help_online.py:52
#, python-format
msgid "Help on %s"
msgstr ""
#. module: help_online
#: model:res.groups,name:help_online.help_online_group_reader
msgid "Help reader"
msgstr ""
#. module: help_online
#: model:res.groups,name:help_online.help_online_group_writer
msgid "Help writer"
msgstr ""
#. module: help_online
#: field:export.help.wizard,id:0 field:help.online,id:0
#: field:import.help.wizard,id:0
msgid "ID"
msgstr "ID"
#. module: help_online
#: view:import.help.wizard:help_online.import_help_wizard_view
msgid "Import"
msgstr ""
#. module: help_online
#: model:ir.actions.act_window,name:help_online.action_import_help_wizard
msgid "Import Help"
msgstr ""
#. module: help_online
#: view:import.help.wizard:help_online.import_help_wizard_view
msgid "Import Help Data"
msgstr ""
#. module: help_online
#: model:ir.ui.menu,name:help_online.menu_help_import
msgid "Import Help Online"
msgstr ""
#. module: help_online
#: field:export.help.wizard,__last_update:0 field:help.online,__last_update:0
#: field:import.help.wizard,__last_update:0
msgid "Last Modified on"
msgstr "Остання модифікація"
#. module: help_online
#: field:export.help.wizard,write_uid:0 field:help.online,write_uid:0
#: field:import.help.wizard,write_uid:0
msgid "Last Updated by"
msgstr "Востаннє оновив"
#. module: help_online
#: field:export.help.wizard,write_date:0 field:help.online,write_date:0
#: field:import.help.wizard,write_date:0
msgid "Last Updated on"
msgstr "Останнє оновлення"
#. module: help_online
#: code:addons/help_online/models/export_help_wizard.py:260
#, python-format
msgid "No data to export !"
msgstr ""
#. module: help_online
#: code:addons/help_online/models/help_online.py:33
#, python-format
msgid "No page prefix parameter specified !"
msgstr ""
#. module: help_online
#. openerp-web
#: code:addons/help_online/static/src/js/help_online.js:98
#, python-format
msgid "Ok"
msgstr ""
#. module: help_online
#. openerp-web
#: code:addons/help_online/static/src/js/help_online.js:117
#, python-format
msgid "Page does not exist. Do you want to create?"
msgstr ""
#. module: help_online
#: field:import.help.wizard,source_file:0
msgid "Source File"
msgstr ""
#. module: help_online
#: view:export.help.wizard:help_online.export_help_wizard_view
msgid ""
"This wizard allow you to export all QWeb views\n"
" related to help online. The result will be an Odoo\n"
" data xml file."
msgstr ""
#. module: help_online
#: view:import.help.wizard:help_online.import_help_wizard_view
msgid ""
"This wizard allow you to import QWeb views\n"
" related to help online. The required file format is "
"an Odoo\n"
" data xml file."
msgstr ""
#. module: help_online
#: code:addons/help_online/models/export_help_wizard.py:297
#, python-format
msgid "Unable to write autobackup file in given directory: %s"
msgstr ""
#. module: help_online
#: view:ir.ui.view:help_online.view_view_search
msgid "Website Page"
msgstr ""
#. module: help_online
#: view:ir.ui.view:help_online.view_view_form
msgid "Website Page?"
msgstr ""
#. module: help_online
#: model:ir.actions.act_window,name:help_online.action_website_pages
#: model:ir.ui.menu,name:help_online.menu_help_pages
msgid "Website Pages"
msgstr ""
#. module: help_online
#: field:export.help.wizard,data:0
msgid "XML"
msgstr ""
#. module: help_online
#: view:export.help.wizard:help_online.export_help_wizard_view
#: view:import.help.wizard:help_online.import_help_wizard_view
msgid "or"
msgstr "або"

238
help_online/i18n/vi.po

@ -0,0 +1,238 @@
# Translation of Odoo Server.
# This file contains the translation of the following modules:
# * help_online
#
# Translators:
msgid ""
msgstr ""
"Project-Id-Version: web (8.0)\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2018-01-16 08:57+0000\n"
"PO-Revision-Date: 2017-11-23 23:25+0000\n"
"Last-Translator: OCA Transbot <transbot@odoo-community.org>\n"
"Language-Team: Vietnamese (http://www.transifex.com/oca/OCA-web-8-0/language/"
"vi/)\n"
"Language: vi\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: \n"
"Plural-Forms: nplurals=1; plural=0;\n"
#. module: help_online
#. openerp-web
#: code:addons/help_online/static/src/js/help_online.js:93
#, python-format
msgid "Cancel"
msgstr "Hủy bỏ"
#. module: help_online
#: view:export.help.wizard:help_online.export_help_wizard_view
#: view:import.help.wizard:help_online.import_help_wizard_view
msgid "Close"
msgstr "Ðóng"
#. module: help_online
#. openerp-web
#: code:addons/help_online/static/src/js/help_online.js:91
#, python-format
msgid "Confirm"
msgstr ""
#. module: help_online
#: code:addons/help_online/models/help_online.py:57
#, python-format
msgid "Create Help page for %s"
msgstr ""
#. module: help_online
#: field:export.help.wizard,create_uid:0 field:help.online,create_uid:0
#: field:import.help.wizard,create_uid:0
msgid "Created by"
msgstr "Được tạo bởi"
#. module: help_online
#: field:export.help.wizard,create_date:0 field:help.online,create_date:0
#: field:import.help.wizard,create_date:0
msgid "Created on"
msgstr "Được tạo vào"
#. module: help_online
#: field:export.help.wizard,display_name:0 field:help.online,display_name:0
#: field:import.help.wizard,display_name:0
msgid "Display Name"
msgstr "Tên hiển thị"
#. module: help_online
#: view:export.help.wizard:help_online.export_help_wizard_view
msgid "Export"
msgstr ""
#. module: help_online
#: code:addons/help_online/models/export_help_wizard.py:267
#: model:ir.actions.act_window,name:help_online.action_export_help_wizard
#, python-format
msgid "Export Help"
msgstr ""
#. module: help_online
#: view:export.help.wizard:help_online.export_help_wizard_view
msgid "Export Help Data"
msgstr ""
#. module: help_online
#: model:ir.model,name:help_online.model_export_help_wizard
#: model:ir.ui.menu,name:help_online.menu_help_export
msgid "Export Help Online"
msgstr ""
#. module: help_online
#: field:export.help.wizard,export_filename:0
msgid "Export XML Filename"
msgstr ""
#. module: help_online
#: model:ir.ui.menu,name:help_online.menu_help
#: model:ir.ui.menu,name:help_online.menu_help_main
msgid "Help Online"
msgstr ""
#. module: help_online
#: code:addons/help_online/models/help_online.py:52
#, python-format
msgid "Help on %s"
msgstr ""
#. module: help_online
#: model:res.groups,name:help_online.help_online_group_reader
msgid "Help reader"
msgstr ""
#. module: help_online
#: model:res.groups,name:help_online.help_online_group_writer
msgid "Help writer"
msgstr ""
#. module: help_online
#: field:export.help.wizard,id:0 field:help.online,id:0
#: field:import.help.wizard,id:0
msgid "ID"
msgstr "ID"
#. module: help_online
#: view:import.help.wizard:help_online.import_help_wizard_view
msgid "Import"
msgstr ""
#. module: help_online
#: model:ir.actions.act_window,name:help_online.action_import_help_wizard
msgid "Import Help"
msgstr ""
#. module: help_online
#: view:import.help.wizard:help_online.import_help_wizard_view
msgid "Import Help Data"
msgstr ""
#. module: help_online
#: model:ir.ui.menu,name:help_online.menu_help_import
msgid "Import Help Online"
msgstr ""
#. module: help_online
#: field:export.help.wizard,__last_update:0 field:help.online,__last_update:0
#: field:import.help.wizard,__last_update:0
msgid "Last Modified on"
msgstr "Sửa lần cuối vào"
#. module: help_online
#: field:export.help.wizard,write_uid:0 field:help.online,write_uid:0
#: field:import.help.wizard,write_uid:0
msgid "Last Updated by"
msgstr "Last Updated by"
#. module: help_online
#: field:export.help.wizard,write_date:0 field:help.online,write_date:0
#: field:import.help.wizard,write_date:0
msgid "Last Updated on"
msgstr "Cập nhật lần cuối vào"
#. module: help_online
#: code:addons/help_online/models/export_help_wizard.py:260
#, python-format
msgid "No data to export !"
msgstr ""
#. module: help_online
#: code:addons/help_online/models/help_online.py:33
#, python-format
msgid "No page prefix parameter specified !"
msgstr ""
#. module: help_online
#. openerp-web
#: code:addons/help_online/static/src/js/help_online.js:98
#, python-format
msgid "Ok"
msgstr ""
#. module: help_online
#. openerp-web
#: code:addons/help_online/static/src/js/help_online.js:117
#, python-format
msgid "Page does not exist. Do you want to create?"
msgstr ""
#. module: help_online
#: field:import.help.wizard,source_file:0
msgid "Source File"
msgstr ""
#. module: help_online
#: view:export.help.wizard:help_online.export_help_wizard_view
msgid ""
"This wizard allow you to export all QWeb views\n"
" related to help online. The result will be an Odoo\n"
" data xml file."
msgstr ""
#. module: help_online
#: view:import.help.wizard:help_online.import_help_wizard_view
msgid ""
"This wizard allow you to import QWeb views\n"
" related to help online. The required file format is "
"an Odoo\n"
" data xml file."
msgstr ""
#. module: help_online
#: code:addons/help_online/models/export_help_wizard.py:297
#, python-format
msgid "Unable to write autobackup file in given directory: %s"
msgstr ""
#. module: help_online
#: view:ir.ui.view:help_online.view_view_search
msgid "Website Page"
msgstr ""
#. module: help_online
#: view:ir.ui.view:help_online.view_view_form
msgid "Website Page?"
msgstr ""
#. module: help_online
#: model:ir.actions.act_window,name:help_online.action_website_pages
#: model:ir.ui.menu,name:help_online.menu_help_pages
msgid "Website Pages"
msgstr ""
#. module: help_online
#: field:export.help.wizard,data:0
msgid "XML"
msgstr ""
#. module: help_online
#: view:export.help.wizard:help_online.export_help_wizard_view
#: view:import.help.wizard:help_online.import_help_wizard_view
msgid "or"
msgstr "hoặc"

238
help_online/i18n/vi_VN.po

@ -0,0 +1,238 @@
# Translation of Odoo Server.
# This file contains the translation of the following modules:
# * help_online
#
# Translators:
msgid ""
msgstr ""
"Project-Id-Version: web (8.0)\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2018-01-16 08:57+0000\n"
"PO-Revision-Date: 2017-11-23 23:27+0000\n"
"Last-Translator: OCA Transbot <transbot@odoo-community.org>\n"
"Language-Team: Vietnamese (Viet Nam) (http://www.transifex.com/oca/OCA-"
"web-8-0/language/vi_VN/)\n"
"Language: vi_VN\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: \n"
"Plural-Forms: nplurals=1; plural=0;\n"
#. module: help_online
#. openerp-web
#: code:addons/help_online/static/src/js/help_online.js:93
#, python-format
msgid "Cancel"
msgstr "Hủy"
#. module: help_online
#: view:export.help.wizard:help_online.export_help_wizard_view
#: view:import.help.wizard:help_online.import_help_wizard_view
msgid "Close"
msgstr ""
#. module: help_online
#. openerp-web
#: code:addons/help_online/static/src/js/help_online.js:91
#, python-format
msgid "Confirm"
msgstr ""
#. module: help_online
#: code:addons/help_online/models/help_online.py:57
#, python-format
msgid "Create Help page for %s"
msgstr ""
#. module: help_online
#: field:export.help.wizard,create_uid:0 field:help.online,create_uid:0
#: field:import.help.wizard,create_uid:0
msgid "Created by"
msgstr "Tạo bởi"
#. module: help_online
#: field:export.help.wizard,create_date:0 field:help.online,create_date:0
#: field:import.help.wizard,create_date:0
msgid "Created on"
msgstr "Tạo vào"
#. module: help_online
#: field:export.help.wizard,display_name:0 field:help.online,display_name:0
#: field:import.help.wizard,display_name:0
msgid "Display Name"
msgstr ""
#. module: help_online
#: view:export.help.wizard:help_online.export_help_wizard_view
msgid "Export"
msgstr ""
#. module: help_online
#: code:addons/help_online/models/export_help_wizard.py:267
#: model:ir.actions.act_window,name:help_online.action_export_help_wizard
#, python-format
msgid "Export Help"
msgstr ""
#. module: help_online
#: view:export.help.wizard:help_online.export_help_wizard_view
msgid "Export Help Data"
msgstr ""
#. module: help_online
#: model:ir.model,name:help_online.model_export_help_wizard
#: model:ir.ui.menu,name:help_online.menu_help_export
msgid "Export Help Online"
msgstr ""
#. module: help_online
#: field:export.help.wizard,export_filename:0
msgid "Export XML Filename"
msgstr ""
#. module: help_online
#: model:ir.ui.menu,name:help_online.menu_help
#: model:ir.ui.menu,name:help_online.menu_help_main
msgid "Help Online"
msgstr ""
#. module: help_online
#: code:addons/help_online/models/help_online.py:52
#, python-format
msgid "Help on %s"
msgstr ""
#. module: help_online
#: model:res.groups,name:help_online.help_online_group_reader
msgid "Help reader"
msgstr ""
#. module: help_online
#: model:res.groups,name:help_online.help_online_group_writer
msgid "Help writer"
msgstr ""
#. module: help_online
#: field:export.help.wizard,id:0 field:help.online,id:0
#: field:import.help.wizard,id:0
msgid "ID"
msgstr "ID"
#. module: help_online
#: view:import.help.wizard:help_online.import_help_wizard_view
msgid "Import"
msgstr ""
#. module: help_online
#: model:ir.actions.act_window,name:help_online.action_import_help_wizard
msgid "Import Help"
msgstr ""
#. module: help_online
#: view:import.help.wizard:help_online.import_help_wizard_view
msgid "Import Help Data"
msgstr ""
#. module: help_online
#: model:ir.ui.menu,name:help_online.menu_help_import
msgid "Import Help Online"
msgstr ""
#. module: help_online
#: field:export.help.wizard,__last_update:0 field:help.online,__last_update:0
#: field:import.help.wizard,__last_update:0
msgid "Last Modified on"
msgstr ""
#. module: help_online
#: field:export.help.wizard,write_uid:0 field:help.online,write_uid:0
#: field:import.help.wizard,write_uid:0
msgid "Last Updated by"
msgstr "Cập nhật lần cuối bởi"
#. module: help_online
#: field:export.help.wizard,write_date:0 field:help.online,write_date:0
#: field:import.help.wizard,write_date:0
msgid "Last Updated on"
msgstr "Cập nhật lần cuối vào"
#. module: help_online
#: code:addons/help_online/models/export_help_wizard.py:260
#, python-format
msgid "No data to export !"
msgstr ""
#. module: help_online
#: code:addons/help_online/models/help_online.py:33
#, python-format
msgid "No page prefix parameter specified !"
msgstr ""
#. module: help_online
#. openerp-web
#: code:addons/help_online/static/src/js/help_online.js:98
#, python-format
msgid "Ok"
msgstr ""
#. module: help_online
#. openerp-web
#: code:addons/help_online/static/src/js/help_online.js:117
#, python-format
msgid "Page does not exist. Do you want to create?"
msgstr ""
#. module: help_online
#: field:import.help.wizard,source_file:0
msgid "Source File"
msgstr ""
#. module: help_online
#: view:export.help.wizard:help_online.export_help_wizard_view
msgid ""
"This wizard allow you to export all QWeb views\n"
" related to help online. The result will be an Odoo\n"
" data xml file."
msgstr ""
#. module: help_online
#: view:import.help.wizard:help_online.import_help_wizard_view
msgid ""
"This wizard allow you to import QWeb views\n"
" related to help online. The required file format is "
"an Odoo\n"
" data xml file."
msgstr ""
#. module: help_online
#: code:addons/help_online/models/export_help_wizard.py:297
#, python-format
msgid "Unable to write autobackup file in given directory: %s"
msgstr ""
#. module: help_online
#: view:ir.ui.view:help_online.view_view_search
msgid "Website Page"
msgstr ""
#. module: help_online
#: view:ir.ui.view:help_online.view_view_form
msgid "Website Page?"
msgstr ""
#. module: help_online
#: model:ir.actions.act_window,name:help_online.action_website_pages
#: model:ir.ui.menu,name:help_online.menu_help_pages
msgid "Website Pages"
msgstr ""
#. module: help_online
#: field:export.help.wizard,data:0
msgid "XML"
msgstr ""
#. module: help_online
#: view:export.help.wizard:help_online.export_help_wizard_view
#: view:import.help.wizard:help_online.import_help_wizard_view
msgid "or"
msgstr "hoặc"

238
help_online/i18n/zh_CN.po

@ -0,0 +1,238 @@
# Translation of Odoo Server.
# This file contains the translation of the following modules:
# * help_online
#
# Translators:
msgid ""
msgstr ""
"Project-Id-Version: web (8.0)\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2017-03-28 10:21+0000\n"
"PO-Revision-Date: 2017-04-19 01:22+0000\n"
"Last-Translator: OCA Transbot <transbot@odoo-community.org>\n"
"Language-Team: Chinese (China) (http://www.transifex.com/oca/OCA-web-8-0/"
"language/zh_CN/)\n"
"Language: zh_CN\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: \n"
"Plural-Forms: nplurals=1; plural=0;\n"
#. module: help_online
#. openerp-web
#: code:addons/help_online/static/src/js/help_online.js:93
#, python-format
msgid "Cancel"
msgstr "取消"
#. module: help_online
#: view:export.help.wizard:help_online.export_help_wizard_view
#: view:import.help.wizard:help_online.import_help_wizard_view
msgid "Close"
msgstr "关闭"
#. module: help_online
#. openerp-web
#: code:addons/help_online/static/src/js/help_online.js:91
#, python-format
msgid "Confirm"
msgstr ""
#. module: help_online
#: code:addons/help_online/models/help_online.py:57
#, python-format
msgid "Create Help page for %s"
msgstr ""
#. module: help_online
#: field:export.help.wizard,create_uid:0 field:help.online,create_uid:0
#: field:import.help.wizard,create_uid:0
msgid "Created by"
msgstr "创建者"
#. module: help_online
#: field:export.help.wizard,create_date:0 field:help.online,create_date:0
#: field:import.help.wizard,create_date:0
msgid "Created on"
msgstr "创建时间"
#. module: help_online
#: field:export.help.wizard,display_name:0 field:help.online,display_name:0
#: field:import.help.wizard,display_name:0
msgid "Display Name"
msgstr "显示名称"
#. module: help_online
#: view:export.help.wizard:help_online.export_help_wizard_view
msgid "Export"
msgstr ""
#. module: help_online
#: code:addons/help_online/models/export_help_wizard.py:267
#: model:ir.actions.act_window,name:help_online.action_export_help_wizard
#, python-format
msgid "Export Help"
msgstr ""
#. module: help_online
#: view:export.help.wizard:help_online.export_help_wizard_view
msgid "Export Help Data"
msgstr ""
#. module: help_online
#: model:ir.model,name:help_online.model_export_help_wizard
#: model:ir.ui.menu,name:help_online.menu_help_export
msgid "Export Help Online"
msgstr ""
#. module: help_online
#: field:export.help.wizard,export_filename:0
msgid "Export XML Filename"
msgstr ""
#. module: help_online
#: model:ir.ui.menu,name:help_online.menu_help
#: model:ir.ui.menu,name:help_online.menu_help_main
msgid "Help Online"
msgstr ""
#. module: help_online
#: code:addons/help_online/models/help_online.py:52
#, python-format
msgid "Help on %s"
msgstr ""
#. module: help_online
#: model:res.groups,name:help_online.help_online_group_reader
msgid "Help reader"
msgstr ""
#. module: help_online
#: model:res.groups,name:help_online.help_online_group_writer
msgid "Help writer"
msgstr ""
#. module: help_online
#: field:export.help.wizard,id:0 field:help.online,id:0
#: field:import.help.wizard,id:0
msgid "ID"
msgstr "ID"
#. module: help_online
#: view:import.help.wizard:help_online.import_help_wizard_view
msgid "Import"
msgstr ""
#. module: help_online
#: model:ir.actions.act_window,name:help_online.action_import_help_wizard
msgid "Import Help"
msgstr ""
#. module: help_online
#: view:import.help.wizard:help_online.import_help_wizard_view
msgid "Import Help Data"
msgstr ""
#. module: help_online
#: model:ir.ui.menu,name:help_online.menu_help_import
msgid "Import Help Online"
msgstr ""
#. module: help_online
#: field:export.help.wizard,__last_update:0 field:help.online,__last_update:0
#: field:import.help.wizard,__last_update:0
msgid "Last Modified on"
msgstr "最后修改时间"
#. module: help_online
#: field:export.help.wizard,write_uid:0 field:help.online,write_uid:0
#: field:import.help.wizard,write_uid:0
msgid "Last Updated by"
msgstr "最后更新者"
#. module: help_online
#: field:export.help.wizard,write_date:0 field:help.online,write_date:0
#: field:import.help.wizard,write_date:0
msgid "Last Updated on"
msgstr "上次更新日期"
#. module: help_online
#: code:addons/help_online/models/export_help_wizard.py:260
#, python-format
msgid "No data to export !"
msgstr ""
#. module: help_online
#: code:addons/help_online/models/help_online.py:33
#, python-format
msgid "No page prefix parameter specified !"
msgstr ""
#. module: help_online
#. openerp-web
#: code:addons/help_online/static/src/js/help_online.js:98
#, python-format
msgid "Ok"
msgstr ""
#. module: help_online
#. openerp-web
#: code:addons/help_online/static/src/js/help_online.js:117
#, python-format
msgid "Page does not exist. Do you want to create?"
msgstr ""
#. module: help_online
#: field:import.help.wizard,source_file:0
msgid "Source File"
msgstr ""
#. module: help_online
#: view:export.help.wizard:help_online.export_help_wizard_view
msgid ""
"This wizard allow you to export all QWeb views\n"
" related to help online. The result will be an Odoo\n"
" data xml file."
msgstr ""
#. module: help_online
#: view:import.help.wizard:help_online.import_help_wizard_view
msgid ""
"This wizard allow you to import QWeb views\n"
" related to help online. The required file format is "
"an Odoo\n"
" data xml file."
msgstr ""
#. module: help_online
#: code:addons/help_online/models/export_help_wizard.py:297
#, python-format
msgid "Unable to write autobackup file in given directory: %s"
msgstr ""
#. module: help_online
#: view:ir.ui.view:help_online.view_view_search
msgid "Website Page"
msgstr ""
#. module: help_online
#: view:ir.ui.view:help_online.view_view_form
msgid "Website Page?"
msgstr ""
#. module: help_online
#: model:ir.actions.act_window,name:help_online.action_website_pages
#: model:ir.ui.menu,name:help_online.menu_help_pages
msgid "Website Pages"
msgstr ""
#. module: help_online
#: field:export.help.wizard,data:0
msgid "XML"
msgstr ""
#. module: help_online
#: view:export.help.wizard:help_online.export_help_wizard_view
#: view:import.help.wizard:help_online.import_help_wizard_view
msgid "or"
msgstr "或"

238
help_online/i18n/zh_TW.po

@ -0,0 +1,238 @@
# Translation of Odoo Server.
# This file contains the translation of the following modules:
# * help_online
#
# Translators:
msgid ""
msgstr ""
"Project-Id-Version: web (8.0)\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2018-01-16 08:57+0000\n"
"PO-Revision-Date: 2017-11-23 23:28+0000\n"
"Last-Translator: OCA Transbot <transbot@odoo-community.org>\n"
"Language-Team: Chinese (Taiwan) (http://www.transifex.com/oca/OCA-web-8-0/"
"language/zh_TW/)\n"
"Language: zh_TW\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: \n"
"Plural-Forms: nplurals=1; plural=0;\n"
#. module: help_online
#. openerp-web
#: code:addons/help_online/static/src/js/help_online.js:93
#, python-format
msgid "Cancel"
msgstr "刪除"
#. module: help_online
#: view:export.help.wizard:help_online.export_help_wizard_view
#: view:import.help.wizard:help_online.import_help_wizard_view
msgid "Close"
msgstr "關閉"
#. module: help_online
#. openerp-web
#: code:addons/help_online/static/src/js/help_online.js:91
#, python-format
msgid "Confirm"
msgstr ""
#. module: help_online
#: code:addons/help_online/models/help_online.py:57
#, python-format
msgid "Create Help page for %s"
msgstr ""
#. module: help_online
#: field:export.help.wizard,create_uid:0 field:help.online,create_uid:0
#: field:import.help.wizard,create_uid:0
msgid "Created by"
msgstr "建立者"
#. module: help_online
#: field:export.help.wizard,create_date:0 field:help.online,create_date:0
#: field:import.help.wizard,create_date:0
msgid "Created on"
msgstr "建立於"
#. module: help_online
#: field:export.help.wizard,display_name:0 field:help.online,display_name:0
#: field:import.help.wizard,display_name:0
msgid "Display Name"
msgstr "顯示名稱"
#. module: help_online
#: view:export.help.wizard:help_online.export_help_wizard_view
msgid "Export"
msgstr ""
#. module: help_online
#: code:addons/help_online/models/export_help_wizard.py:267
#: model:ir.actions.act_window,name:help_online.action_export_help_wizard
#, python-format
msgid "Export Help"
msgstr ""
#. module: help_online
#: view:export.help.wizard:help_online.export_help_wizard_view
msgid "Export Help Data"
msgstr ""
#. module: help_online
#: model:ir.model,name:help_online.model_export_help_wizard
#: model:ir.ui.menu,name:help_online.menu_help_export
msgid "Export Help Online"
msgstr ""
#. module: help_online
#: field:export.help.wizard,export_filename:0
msgid "Export XML Filename"
msgstr ""
#. module: help_online
#: model:ir.ui.menu,name:help_online.menu_help
#: model:ir.ui.menu,name:help_online.menu_help_main
msgid "Help Online"
msgstr ""
#. module: help_online
#: code:addons/help_online/models/help_online.py:52
#, python-format
msgid "Help on %s"
msgstr ""
#. module: help_online
#: model:res.groups,name:help_online.help_online_group_reader
msgid "Help reader"
msgstr ""
#. module: help_online
#: model:res.groups,name:help_online.help_online_group_writer
msgid "Help writer"
msgstr ""
#. module: help_online
#: field:export.help.wizard,id:0 field:help.online,id:0
#: field:import.help.wizard,id:0
msgid "ID"
msgstr "編號"
#. module: help_online
#: view:import.help.wizard:help_online.import_help_wizard_view
msgid "Import"
msgstr ""
#. module: help_online
#: model:ir.actions.act_window,name:help_online.action_import_help_wizard
msgid "Import Help"
msgstr ""
#. module: help_online
#: view:import.help.wizard:help_online.import_help_wizard_view
msgid "Import Help Data"
msgstr ""
#. module: help_online
#: model:ir.ui.menu,name:help_online.menu_help_import
msgid "Import Help Online"
msgstr ""
#. module: help_online
#: field:export.help.wizard,__last_update:0 field:help.online,__last_update:0
#: field:import.help.wizard,__last_update:0
msgid "Last Modified on"
msgstr "最後修改:"
#. module: help_online
#: field:export.help.wizard,write_uid:0 field:help.online,write_uid:0
#: field:import.help.wizard,write_uid:0
msgid "Last Updated by"
msgstr "最後更新:"
#. module: help_online
#: field:export.help.wizard,write_date:0 field:help.online,write_date:0
#: field:import.help.wizard,write_date:0
msgid "Last Updated on"
msgstr "最後更新於"
#. module: help_online
#: code:addons/help_online/models/export_help_wizard.py:260
#, python-format
msgid "No data to export !"
msgstr ""
#. module: help_online
#: code:addons/help_online/models/help_online.py:33
#, python-format
msgid "No page prefix parameter specified !"
msgstr ""
#. module: help_online
#. openerp-web
#: code:addons/help_online/static/src/js/help_online.js:98
#, python-format
msgid "Ok"
msgstr ""
#. module: help_online
#. openerp-web
#: code:addons/help_online/static/src/js/help_online.js:117
#, python-format
msgid "Page does not exist. Do you want to create?"
msgstr ""
#. module: help_online
#: field:import.help.wizard,source_file:0
msgid "Source File"
msgstr ""
#. module: help_online
#: view:export.help.wizard:help_online.export_help_wizard_view
msgid ""
"This wizard allow you to export all QWeb views\n"
" related to help online. The result will be an Odoo\n"
" data xml file."
msgstr ""
#. module: help_online
#: view:import.help.wizard:help_online.import_help_wizard_view
msgid ""
"This wizard allow you to import QWeb views\n"
" related to help online. The required file format is "
"an Odoo\n"
" data xml file."
msgstr ""
#. module: help_online
#: code:addons/help_online/models/export_help_wizard.py:297
#, python-format
msgid "Unable to write autobackup file in given directory: %s"
msgstr ""
#. module: help_online
#: view:ir.ui.view:help_online.view_view_search
msgid "Website Page"
msgstr ""
#. module: help_online
#: view:ir.ui.view:help_online.view_view_form
msgid "Website Page?"
msgstr ""
#. module: help_online
#: model:ir.actions.act_window,name:help_online.action_website_pages
#: model:ir.ui.menu,name:help_online.menu_help_pages
msgid "Website Pages"
msgstr ""
#. module: help_online
#: field:export.help.wizard,data:0
msgid "XML"
msgstr ""
#. module: help_online
#: view:export.help.wizard:help_online.export_help_wizard_view
#: view:import.help.wizard:help_online.import_help_wizard_view
msgid "or"
msgstr "或"

24
help_online/models/__init__.py

@ -0,0 +1,24 @@
# -*- coding: utf-8 -*-
##############################################################################
#
# Authors: Nemry Jonathan
# Copyright (c) 2014 Acsone SA/NV (http://www.acsone.eu)
#
# This program is free software: you can redistribute it and/or modify
# it under the terms of the GNU Affero General Public License as published
# by the Free Software Foundation, either version 3 of the License, or
# (at your option) any later version.
#
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU Affero General Public License for more details.
#
# You should have received a copy of the GNU Affero General Public License
# along with this program. If not, see <http://www.gnu.org/licenses/>.
#
##############################################################################
from . import help_online
from . import export_help_wizard
from . import import_help_wizard
from . import ir_model

299
help_online/models/export_help_wizard.py

@ -0,0 +1,299 @@
# -*- coding: utf-8 -*-
##############################################################################
#
# Authors: Cédric Pigeon
# Copyright (c) 2014 Acsone SA/NV (http://www.acsone.eu)
#
# This program is free software: you can redistribute it and/or modify
# it under the terms of the GNU Affero General Public License as published
# by the Free Software Foundation, either version 3 of the License, or
# (at your option) any later version.
#
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU Affero General Public License for more details.
#
# You should have received a copy of the GNU Affero General Public License
# along with this program. If not, see <http://www.gnu.org/licenses/>.
#
##############################################################################
import logging
import base64
import time
import copy
from lxml import etree as ET
from openerp import models, fields, api, exceptions
from openerp.tools.translate import _
_logger = logging.getLogger(__name__)
PAGE_PREFIX_PARAMETER = 'help_online_page_prefix'
TEMPLATE_PREFIX_PARAMETER = 'help_online_template_prefix'
AUTOBACKUP_PARAMETER = 'help_online_autobackup_path'
HELP_ONLINE_SNIPPET_IMAGE_PATH = '/help_online/static/src/'\
'img/snippet/snippet_thumbs.png'
class ExportHelpWizard(models.TransientModel):
_name = "export.help.wizard"
_description = 'Export Help Online'
data = fields.Binary('XML', readonly=True)
export_filename = fields.Char('Export XML Filename', size=128)
def _manage_images_on_page(self, page_node, data_node, images_reference):
"""
- Extract images from page and generate a xml node
- Replace db id in url with xml id
"""
def get_attach_id(images_reference,
img_model, img_src, generated_xml_id=False):
attach_id = False
if 'id=' in img_src:
id_pos = img_src.index('id=') + 3
attach_id = img_src[id_pos:]
else:
fragments = img_src.split('ir.attachment/')
attach_id, _ = fragments[1].split('_', 1)
if attach_id in images_reference:
xml_id = images_reference[attach_id]
else:
ir_data = self.env['ir.model.data'].search(
[('model', '=', img_model),
('res_id', '=', attach_id)])
xml_id = generated_xml_id
if ir_data:
xml_id = ir_data[0].name
images_reference[attach_id] = xml_id
return attach_id, xml_id
def substitute_id_by_xml_id(img_src, attach_id, xml_id):
new_src = False
if 'id=' in img_src:
new_src = img_src.replace(attach_id, xml_id)
else:
fragments = img_src.split('ir.attachment/')
_, trail = fragments[1].split('_', 1)
new_src = "/website/image/ir.attachment/%s|%s" % \
(xml_id, trail)
return new_src
i_img = 0
img_model = 'ir.attachment'
for img_elem in page_node.iter('img'):
img_src = img_elem.get('src')
if img_model in img_src:
i_img += 1
generated_xml_id = "%s_img_%s" % \
(page_node.attrib['name'], str(i_img).rjust(2, '0'))
attach_id, xml_id = get_attach_id(images_reference,
img_model,
img_src,
generated_xml_id)
new_src = substitute_id_by_xml_id(img_src, attach_id, xml_id)
if not attach_id:
continue
image = self.env[img_model].browse(int(attach_id))
if not image:
continue
img_elem.attrib['src'] = new_src
img_node = ET.SubElement(data_node,
'record',
attrib={'id': xml_id,
'model': img_model})
field_node = ET.SubElement(img_node,
'field',
attrib={'name': 'datas'})
field_node.text = str(image.datas)
field_node = ET.SubElement(img_node,
'field',
attrib={'name': 'datas_fname'})
field_node.text = image.datas_fname
field_node = ET.SubElement(img_node,
'field',
attrib={'name': 'name'})
field_node.text = image.name
field_node = ET.SubElement(img_node,
'field',
attrib={'name': 'res_model'})
field_node.text = image.res_model
field_node = ET.SubElement(img_node,
'field',
attrib={'name': 'mimetype'})
field_node.text = image.mimetype
data_node.append(img_node)
def _clean_href_urls(self, page_node, page_prefix, template_prefix):
"""
Remove host address for href urls
"""
for a_elem in page_node.iter('a'):
if not a_elem.get('href'):
continue
href = a_elem.get('href')
if not href.startswith('http'):
continue
page_url = '/page/%s' % page_prefix
template_url = '/page/%s' % template_prefix
if page_url not in href and template_url not in href:
continue
elif page_url in href and template_url not in href:
pass
elif page_url not in href and template_url in href:
page_url = template_url
else:
if page_prefix in template_prefix:
page_url = template_url
else:
pass
if page_url:
trail = href.split(page_url, 1)[1]
a_elem.attrib['href'] = page_url + trail
def _generate_snippet_from_template(self, page_node,
template_id, template_prefix):
"""
Generate a website snippet from a template
"""
page = copy.deepcopy(page_node)
snippet = ET.Element('template')
snippet.attrib['id'] = template_id + '_snippet'
snippet.attrib['inherit_id'] = 'website.snippets'
snippet.attrib['name'] = page_node.attrib['name']
xpath = ET.SubElement(snippet,
'xpath',
attrib={'expr': "//div[@id='snippet_structure']",
'position': 'inside'})
main_div = ET.SubElement(xpath,
'div')
thumbnail = ET.SubElement(main_div,
'div',
attrib={'class': 'oe_snippet_thumbnail'})
ET.SubElement(thumbnail,
'img',
attrib={'class': 'oe_snippet_thumbnail_img',
'src': HELP_ONLINE_SNIPPET_IMAGE_PATH})
span = ET.SubElement(thumbnail,
'span',
attrib={'class': 'oe_snippet_thumbnail_title'})
span.text = page_node.attrib['name'].replace(template_prefix, '')
body = ET.SubElement(main_div,
'section',
attrib={'class': 'oe_snippet_body '
'mt_simple_snippet'})
template = page.find(".//div[@id='wrap']")
for node in template.getchildren():
body.append(node)
return snippet
def _get_qweb_views_data(self):
parameter_model = self.env['ir.config_parameter']
page_prefix = parameter_model.get_param(PAGE_PREFIX_PARAMETER,
False)
template_prefix = parameter_model.get_param(TEMPLATE_PREFIX_PARAMETER,
False)
if not page_prefix or not template_prefix:
return False
domain = [('type', '=', 'qweb'),
('page', '=', True),
'|',
('name', 'like', '%s%%' % page_prefix),
('name', 'like', '%s%%' % template_prefix)]
view_data_list = self.env['ir.ui.view'].search_read(domain,
['arch', 'name'],
order='name')
xml_to_export = ET.Element('openerp')
data_node = ET.SubElement(xml_to_export, 'data')
images_reference = {}
for view_data in view_data_list:
parser = ET.XMLParser(remove_blank_text=True)
root = ET.XML(view_data['arch'], parser=parser)
root.tag = 'template'
template_id = root.attrib.pop('t-name')
root.attrib['name'] = view_data['name'].replace('website.', '')
root.attrib['id'] = template_id
root.attrib['page'] = 'True'
self._manage_images_on_page(root, data_node, images_reference)
self._clean_href_urls(root, page_prefix, template_prefix)
data_node.append(root)
if root.attrib['name'].startswith(template_prefix):
snippet = self._generate_snippet_from_template(root,
template_id,
template_prefix)
data_node.append(snippet)
if len(view_data_list) > 0:
return ET.tostring(xml_to_export, encoding='utf-8',
xml_declaration=True,
pretty_print=True)
else:
return False
@api.multi
def export_help(self):
"""
Export all Qweb views related to help online in a Odoo
data XML file
"""
xml_data = self._get_qweb_views_data()
if not xml_data:
raise exceptions.Warning(_('No data to export !'))
out = base64.encodestring(xml_data)
self.write({'data': out,
'export_filename': 'help_online_data.xml'})
return {
'name': _('Export Help'),
'type': 'ir.actions.act_window',
'res_model': self._name,
'view_mode': 'form',
'view_type': 'form',
'res_id': self.id,
'views': [(False, 'form')],
'target': 'new',
}
@api.model
def auto_backup(self):
"""
Export data to a file on home directory of user
"""
parameter_model = self.env['ir.config_parameter']
autobackup_path = parameter_model.get_param(AUTOBACKUP_PARAMETER,
False)
if autobackup_path:
xml_data = self._get_qweb_views_data()
try:
timestr = time.strftime("%Y%m%d-%H%M%S")
filename = '%s/help_online_backup-%s.xml' % (autobackup_path,
timestr)
backup_file = open(filename,
'w')
backup_file.write(xml_data)
backup_file.close()
except:
_logger.warning(_('Unable to write autobackup file '
'in given directory: %s'
% autobackup_path))

62
help_online/models/help_online.py

@ -0,0 +1,62 @@
# -*- coding: utf-8 -*-
##############################################################################
#
# Authors: Laurent Mignon
# Copyright (c) 2014 Acsone SA/NV (http://www.acsone.eu)
#
# This program is free software: you can redistribute it and/or modify
# it under the terms of the GNU Affero General Public License as published
# by the Free Software Foundation, either version 3 of the License, or
# (at your option) any later version.
#
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU Affero General Public License for more details.
#
# You should have received a copy of the GNU Affero General Public License
# along with this program. If not, see <http://www.gnu.org/licenses/>.
#
##############################################################################
from openerp import models, exceptions
from openerp.tools.translate import _
class HelpOnline(models.TransientModel):
_name = 'help.online'
def _get_view_name(self, model, view_type, domain=None, context=None):
parameter_model = self.env['ir.config_parameter']
page_prefix = parameter_model.get_param('help_online_page_prefix',
False)
if not page_prefix:
raise exceptions.Warning(_('No page prefix parameter specified !'))
name = '%s-%s' % (page_prefix, model.replace('.', '-'))
return name
def get_page_url(self, model, view_type, domain=None, context=None):
user_model = self.env['res.users']
if not user_model.has_group('help_online.help_online_group_reader'):
return {}
ir_model = self.env['ir.model']
description = self.env[model]._description
res = ir_model.name_search(model, operator='=')
if res:
description = res[0][1]
name = self._get_view_name(model, view_type, domain, context)
website_model = self.env['website']
url = '/page/' + website_model.page_for_name(name)
if website_model.page_exists(url):
if view_type:
url = url + '#' + view_type
title = _('Help on %s') % description
return {'url': url,
'title': title,
'exists': True}
elif user_model.has_group('help_online.help_online_group_writer'):
title = _('Create Help page for %s') % description
return {'url': 'website/add/%s' % name,
'title': title,
'exists': False}
else:
return {}

50
help_online/models/import_help_wizard.py

@ -0,0 +1,50 @@
# -*- coding: utf-8 -*-
##############################################################################
#
# Copyright (c) 2014 Acsone SA/NV (http://www.acsone.eu)
# All Rights Reserved
#
# WARNING: This program as such is intended to be used by professional
# programmers who take the whole responsibility of assessing all potential
# consequences resulting from its eventual inadequacies and bugs.
# End users who are looking for a ready-to-use solution with commercial
# guarantees and support are strongly advised to contact a Free Software
# Service Company.
#
# This program is free software: you can redistribute it and/or modify
# it under the terms of the GNU Affero General Public License as
# published by the Free Software Foundation, either version 3 of the
# License, or (at your option) any later version.
#
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU Affero General Public License for more details.
#
# You should have received a copy of the GNU Affero General Public License
# along with this program. If not, see <http://www.gnu.org/licenses/>.
#
##############################################################################
from openerp import models, fields, api
from openerp.tools import convert
import base64
from cStringIO import StringIO
class ImportHelpWizard(models.TransientModel):
_name = "import.help.wizard"
source_file = fields.Binary('Source File')
@api.one
def import_help(self):
source_file = base64.decodestring(self.source_file)
convert.convert_xml_import(self.env.cr,
self._module,
StringIO(source_file),
idref=None,
mode='init',
noupdate=False,
report=None)
return True

73
help_online/models/ir_model.py

@ -0,0 +1,73 @@
# -*- coding: utf-8 -*-
##############################################################################
#
# Authors: Cédric Pigeon
# Copyright (c) 2014 Acsone SA/NV (http://www.acsone.eu)
#
# This program is free software: you can redistribute it and/or modify
# it under the terms of the GNU Affero General Public License as published
# by the Free Software Foundation, either version 3 of the License, or
# (at your option) any later version.
#
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU Affero General Public License for more details.
#
# You should have received a copy of the GNU Affero General Public License
# along with this program. If not, see <http://www.gnu.org/licenses/>.
#
##############################################################################
from openerp import models, api
from lxml import etree as ET
class ir_model_data(models.Model):
_inherit = 'ir.model.data'
@api.model
def _update(self, model, module, values, xml_id=False, store=True,
noupdate=False, mode='init', res_id=False):
if model == 'ir.ui.view':
parameter_model = self.env['ir.config_parameter']
page_prefix = parameter_model.get_param('help_online_page_prefix',
False)
if page_prefix and xml_id.startswith('website.%s' % page_prefix):
xml_str = self.manageImageReferences(values['arch'], module)
values['arch'] = xml_str
return super(ir_model_data, self)._update(model,
module,
values,
xml_id=xml_id,
store=store,
noupdate=noupdate,
mode=mode,
res_id=res_id)
def manageImageReferences(self, xml_str, module):
parser = ET.XMLParser(remove_blank_text=True)
root = ET.XML(xml_str, parser=parser)
img_model = 'ir.attachment'
for img_elem in root.iter('img'):
if img_model in img_elem.get('src'):
img_src = img_elem.get('src')
try:
if '/ir.attachment/' in img_src:
fragments = img_src.split('/ir.attachment/')
xml_id = fragments[1].split('|')[0]
img_src = img_src.replace("|", "_")
else:
id_pos = img_src.index('id=') + 3
xml_id = img_elem.get('src')[id_pos:]
img_id = self.get_object_reference(module,
xml_id)
img_elem.attrib['src'] = img_src.replace(xml_id,
str(img_id[1]))
except:
continue
return ET.tostring(root, encoding='utf-8', xml_declaration=False)

16
help_online/security/help_online_groups.xml

@ -0,0 +1,16 @@
<openerp>
<data>
<record id="help_online_group_reader" model="res.groups">
<field name="name">Help reader</field>
<field name="category_id" ref="base.module_category_documentation"/>
</record>
<record id="help_online_group_writer" model="res.groups">
<field name="name">Help writer</field>
<field name="category_id" ref="base.module_category_documentation"/>
<field name="implied_ids" eval="[
(4, ref('help_online_group_reader')),
(4, ref('base.group_website_publisher')),
]"/>
</record>
</data>
</openerp>

32
help_online/security/help_online_rules.xml

@ -0,0 +1,32 @@
<?xml version="1.0" encoding="utf-8"?>
<openerp>
<data noupdate="1">
<record id="online_help_confidential_rule" model="ir.rule">
<field name="name">Online Help Hidden by Default</field>
<field name="model_id" ref="base.model_ir_ui_view"/>
<field name="domain_force">[
'|',
('type', '!=', 'qweb'),
('name','not like','help-%'),
]</field>
<field name="groups" eval="[(6, 0, [
ref('base.group_portal'),
ref('base.group_public'),
ref('base.group_user'),
])]"/>
<field name="perm_read" eval="1"/><field name="perm_write" eval="0"/>
<field name="perm_create" eval="0"/><field name="perm_unlink" eval="0"/>
</record>
<record id="online_help_reader_rule" model="ir.rule">
<field name="name">Online Help for Help Reader</field>
<field name="model_id" ref="base.model_ir_ui_view"/>
<field name="domain_force">[(1, '=', 1)]</field>
<field name="groups" eval="[(6, 0, [
ref('help_online.help_online_group_reader'),
])]"/>
<field name="perm_read" eval="1"/><field name="perm_write" eval="0"/>
<field name="perm_create" eval="0"/><field name="perm_unlink" eval="0"/>
</record>
</data>
</openerp>

BIN
help_online/static/description/help_online_create_page.png

After

Width: 971  |  Height: 541  |  Size: 53 KiB

BIN
help_online/static/description/help_online_view_page.png

After

Width: 971  |  Height: 601  |  Size: 86 KiB

BIN
help_online/static/description/icon.png

After

Width: 225  |  Height: 218  |  Size: 79 KiB

17
help_online/static/description/index.html

@ -0,0 +1,17 @@
<div class="document">
<div class="section" id="help-online">
<h1>Help Online</h1>
<p>This module allows the creation of an online help available from the lists and forms in Odoo.</p>
<p>When loading a view, the module generates a button allowing access to an help
page for the related model if the page exists and the user is member of the
group 'Help reader'.</p>
<img alt="help_online_view_page.png" src="help_online_view_page.png" width="80%" height="80%"/>
<p>If the page doesn't exist and the user is member of
the group 'Help writer', the module generate a button allowing the creation an
help page.</p>
<img alt="help_online_create_page.png" src="help_online_create_page.png" width="80%" height="80%"/>
<p>The help pages are created and managed via the website Module.</p>
<br/>
<p>If you want to export your work, you simply have to use the export wizard through the settings menu.</p>
</div>
</div>

12
help_online/static/src/css/help_online.css

@ -0,0 +1,12 @@
li.oe_help_online_not_found {
background-color: #df3f3f;
}
.openerp .oe_view_manager .oe_view_manager_switch .oe_list_button_help_online:after {
font-size: 28px;
content: "?";
text-align: center;
margin: 3px auto 4px;
position: relative;
display: inline-block;
}

BIN
help_online/static/src/img/snippet/snippet_thumbs.png

After

Width: 169  |  Height: 180  |  Size: 42 KiB

125
help_online/static/src/js/help_online.js

@ -0,0 +1,125 @@
openerp.help_online = function (instance) {
var QWeb = instance.web.qweb;
var _t = instance.web._t;
var _lt = instance.web._lt;
instance.web.ListView.include({
load_list: function () {
var self = this;
var add_button = false;
if (!this.$buttons) {
add_button = true;
}
this._super.apply(this, arguments);
this.$buttons.on('click', '.oe_list_button_help_online', function() {
self.do_action({
type: 'ir.actions.act_url',
url: '/partner_mobile',
target: 'self',
});
});
},
});
openerp.web.TreeView.include({
view_loading: function(r) {
var ret = this._super(r);
if(! _.isUndefined(this.ViewManager.load_help_buttons)){
this.ViewManager.load_help_buttons();
}
return ret
},
});
openerp.web.ListView.include({
view_loading: function(r) {
var ret = this._super(r);
if(! _.isUndefined(this.ViewManager.load_help_buttons)){
this.ViewManager.load_help_buttons();
}
return ret
},
});
instance.web_kanban.KanbanView.include({
view_loading: function(r) {
var ret = this._super(r);
if(! _.isUndefined(this.ViewManager.load_help_buttons)){
this.ViewManager.load_help_buttons();
}
return ret
},
});
openerp.web.FormView.include({
view_loading: function(r) {
var ret = this._super(r);
if(!_.isUndefined(this.ViewManager.clean_help_buttons)){
this.ViewManager.clean_help_buttons();
}
return ret
},
do_show: function (options){
var ret = this._super(options);
if(! _.isUndefined(this.ViewManager.load_help_buttons)){
this.ViewManager.load_help_buttons();
}
return ret
},
});
openerp.web.ViewManager.include({
clean_help_buttons:function() {
this.$el.find("div.oe_help_online_buttons").first().remove();
},
load_help_buttons:function() {
var self = this;
this.rpc('/help_online/build_url', {model: this.dataset.model, view_type: this.active_view}).then(function(result) {
self.clean_help_buttons();
if (result && ! _.isEmpty(result)) {
self.$helpButtonsEl = $(QWeb.render("HelpOnline.Buttons", {'view_manager':self, 'url_info': result}));
self.$el.find("ul.oe_view_manager_switch.oe_button_group.oe_right").first().before(self.$helpButtonsEl);
self.$helpButtonsEl.find('a.oe_list_button_help_online').tooltip();
if (result.exists === false) {
self.$helpButtonsEl.find('li').addClass('oe_help_online_not_found')
self.$helpButtonsEl.find('a.oe_list_button_help_online').on('click', function (event) {
var evt = event;
evt.preventDefault();
var dialog = new instance.web.Dialog(this, {
title: _t('Confirm'),
buttons: [
{text: _t("Cancel"), click: function() {
this.parents('.modal').modal('hide');
return false;
}
},
{text: _t("Ok"), click: function() {
this.parents('.modal').modal('hide');
var form = $("<form></form>");
form.attr(
{
id : "formform",
// The location given in the link itself
action : evt.target.href,
method : "GET",
// Open in new window/tab
target : evt.target.target
});
$("body").append(form);
$("#formform").submit();
$("#formform").remove();
return false;
}
}
],
}, $('<div/>').text(_t('Page does not exist. Do you want to create?'))).open();
});
}
}
});
},
});
}

21
help_online/static/src/js/website_help_online.editor.js

@ -0,0 +1,21 @@
(function () {
'use strict';
var website = openerp.website;
var _t = openerp._t;
website.RTE.include({
_config: function () {
// add anchor button
var config = this._super();
config.plugins = config.plugins.concat(',link');
_.each(config.toolbar, function (tb) {
if (tb.name === 'span'){
tb.items.unshift('Anchor');
}
});
return config;
},
});
})();

13
help_online/static/src/xml/help_online.xml

@ -0,0 +1,13 @@
<templates>
<t t-name='HelpOnline.Buttons'>
<div class='oe_help_online_buttons'>
<ul class='oe_view_manager_switch oe_button_group oe_right'>
<li class='oe_i'>
<a class='oe_list_button_help_online'
t-att-title='url_info.title'
t-att-href='url_info.url' target='_blank'></a>
</li>
</ul>
</div>
</t>
</templates>

27
help_online/tests/__init__.py

@ -0,0 +1,27 @@
# -*- coding: utf-8 -*-
##############################################################################
#
# Copyright (c) 2014 Acsone SA/NV (http://www.acsone.eu)
#
# This program is free software: you can redistribute it and/or modify
# it under the terms of the GNU Affero General Public License as published
# by the Free Software Foundation, either version 3 of the License, or
# (at your option) any later version.
#
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU Affero General Public License for more details.
#
# You should have received a copy of the GNU Affero General Public License
# along with this program. If not, see <http://www.gnu.org/licenses/>.
#
##############################################################################
from . import test_export_help_wizard
fast_suite = [
]
checks = [
test_export_help_wizard,
]

Some files were not shown because too many files changed in this diff

Loading…
Cancel
Save