From aa4900143a7ee9a10b31714748cd1365ee6f1f62 Mon Sep 17 00:00:00 2001
From: Yenthe <yenthevg@gmail.com>
Date: Thu, 26 Mar 2015 15:35:50 +0100
Subject: [PATCH 01/52] Update english pot file

Added all the new fields and sentences. This will be the template for
translations.
---
 auto_backup/backup_scheduler.py  | 267 +++++++++++++++++++++++++++
 auto_backup/i18n/auto_backup.pot | 141 +++++++++++++++
 auto_backup/i18n/de.po           | 299 +++++++++++++++++++++++++++++++
 auto_backup/i18n/nl.po           | 292 ++++++++++++++++++++++++++++++
 auto_backup/i18n/nl_BE.po        | 292 ++++++++++++++++++++++++++++++
 auto_backup/i18n/zh_CN.po        | 298 ++++++++++++++++++++++++++++++
 6 files changed, 1589 insertions(+)
 create mode 100644 auto_backup/backup_scheduler.py
 create mode 100644 auto_backup/i18n/auto_backup.pot
 create mode 100644 auto_backup/i18n/de.po
 create mode 100644 auto_backup/i18n/nl.po
 create mode 100644 auto_backup/i18n/nl_BE.po
 create mode 100644 auto_backup/i18n/zh_CN.po

diff --git a/auto_backup/backup_scheduler.py b/auto_backup/backup_scheduler.py
new file mode 100644
index 00000000000..6ec77a90318
--- /dev/null
+++ b/auto_backup/backup_scheduler.py
@@ -0,0 +1,267 @@
+# -*- encoding: utf-8 -*-
+##############################################################################
+#
+#    OpenERP, Open Source Management Solution    
+#    Copyright (C) 2004-2009 Tiny SPRL (<http://tiny.be>). All Rights Reserved
+#    $Id$
+#
+#    This program is free software: you can redistribute it and/or modify
+#    it under the terms of the GNU 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 General Public License for more details.
+#
+#    You should have received a copy of the GNU General Public License
+#    along with this program.  If not, see <http://www.gnu.org/licenses/>.
+#
+##############################################################################
+
+import xmlrpclib
+import socket
+import os
+import time
+import datetime
+import base64
+import re
+try:
+    import pysftp
+except ImportError:
+    raise ImportError('This module needs pysftp to automaticly write backups to the FTP through SFTP.Please install pysftp on your system.(sudo pip install pysftp)')
+from openerp.osv import fields,osv,orm
+from openerp import tools
+from openerp import netsvc
+from openerp import tools, _
+import logging
+_logger = logging.getLogger(__name__)
+
+def execute(connector, method, *args):
+    res = False
+    try:        
+        res = getattr(connector,method)(*args)
+    except socket.error,e:        
+            raise e
+    return res
+
+addons_path = tools.config['addons_path'] + '/auto_backup/DBbackups'
+
+class db_backup(osv.Model):
+    _name = 'db.backup'
+    
+    def get_db_list(self, cr, user, ids, host, port, context={}):
+        print("Host: " + host)
+        print("Port: " + port)
+        uri = 'http://' + host + ':' + port
+        conn = xmlrpclib.ServerProxy(uri + '/xmlrpc/db')
+        db_list = execute(conn, 'list')
+        return db_list
+
+    def _get_db_name(self,cr,uid, vals,context=None):
+        attach_pool = self.pool.get("ir.logging")
+        dbName = cr.dbname
+        return dbName
+        
+    _columns = {
+                    #Columns local server
+                    'host' : fields.char('Host', size=100, required='True'),
+                    'port' : fields.char('Port', size=10, required='True'),
+                    'name' : fields.char('Database', size=100, required='True',help='Database you want to schedule backups for'),
+                    'bkp_dir' : fields.char('Backup Directory', size=100, help='Absolute path for storing the backups', required='True'),
+                    'autoremove': fields.boolean('Auto. Remove Backups', help="If you check this option you can choose to automaticly remove the backup after xx days"),
+                    'daystokeep': fields.integer('Remove after x days', 
+                     help="Choose after how many days the backup should be deleted. For example:\nIf you fill in 5 the backups will be removed after 5 days.",required=True),
+                    #Columns for external server (SFTP)
+                    'sftpwrite': fields.boolean('Write to external server with sftp', help="If you check this option you can specify the details needed to write to a remote server with SFTP."),
+                    'sftppath': fields.char('Path external server', help="The location to the folder where the dumps should be written to. For example /odoo/backups/.\nFiles will then be written to /odoo/backups/ on your remote server."),
+                    'sftpip': fields.char('IP Address SFTP Server', help="The IP address from your remote server. For example 192.168.0.1"),
+                    'sftpport': fields.integer("SFTP Port", help="The port on the FTP server that accepts SSH/SFTP calls."),
+                    'sftpusername': fields.char('Username SFTP Server', help="The username where the SFTP connection should be made with. This is the user on the external server."),
+                    'sftppassword': fields.char('Password User SFTP Server', help="The password from the user where the SFTP connection should be made with. This is the password from the user on the external server."),
+                    'daystokeepsftp': fields.integer('Remove SFTP after x days', help="Choose after how many days the backup should be deleted from the FTP server. For example:\nIf you fill in 5 the backups will be removed after 5 days from the FTP server."),
+                    'sendmailsftpfail': fields.boolean('Auto. E-mail on backup fail', help="If you check this option you can choose to automaticly get e-mailed when the backup to the external server failed."),
+                    'emailtonotify': fields.char('E-mail to notify', help="Fill in the e-mail where you want to be notified that the backup failed on the FTP."),
+                }
+
+    _defaults = {
+                    #'bkp_dir' : lambda *a : addons_path,
+                    'bkp_dir' : '/odoo/backups',
+                    'host' : lambda *a : 'localhost',
+                    'port' : lambda *a : '8069',
+                    'name': _get_db_name,
+                    'daystokeepsftp': 30,
+                    'sftpport': 22,
+                 }
+    
+    def _check_db_exist(self, cr, user, ids):
+        for rec in self.browse(cr,user,ids):
+            db_list = self.get_db_list(cr, user, ids, rec.host, rec.port)
+            if rec.name in db_list:
+                return True
+        return False
+    
+    _constraints = [
+                    (_check_db_exist, _('Error ! No such database exists!'), [])
+                    ]
+
+
+    def test_sftp_connection(self, cr, uid, ids, context=None):
+        conf_ids= self.search(cr, uid, [])
+        confs = self.browse(cr,uid,conf_ids)
+        #Check if there is a success or fail and write messages 
+        messageTitle = ""
+        messageContent = ""
+        for rec in confs:
+            db_list = self.get_db_list(cr, uid, [], rec.host, rec.port)
+            try:
+                pathToWriteTo = rec.sftppath
+                ipHost = rec.sftpip
+                portHost = rec.sftpport
+                usernameLogin = rec.sftpusername
+                passwordLogin = rec.sftppassword
+                #Connect with external server over SFTP, so we know sure that everything works.
+                srv = pysftp.Connection(host=ipHost, username=usernameLogin,
+password=passwordLogin,port=portHost)
+                srv.close()
+                #We have a success.
+                messageTitle = "Connection Test Succeeded!"
+                messageContent = "Everything seems properly set up for FTP back-ups!"
+            except Exception, e:
+                messageTitle = "Connection Test Failed!"
+                if len(rec.sftpip) < 8:
+                    messageContent += "\nYour IP address seems to be too short.\n"
+                messageContent += "Here is what we got instead:\n"
+        if "Failed" in messageTitle:
+            raise osv.except_osv(_(messageTitle), _(messageContent + "%s") % tools.ustr(e))
+        else:
+            raise osv.except_osv(_(messageTitle), _(messageContent))
+
+    def schedule_backup(self, cr, user, context={}):
+        conf_ids= self.search(cr, user, [])
+        confs = self.browse(cr,user,conf_ids)
+        for rec in confs:
+            db_list = self.get_db_list(cr, user, [], rec.host, rec.port)
+            if rec.name in db_list:
+                try:
+                    if not os.path.isdir(rec.bkp_dir):
+                        os.makedirs(rec.bkp_dir)
+                except:
+                    raise
+                #Create name for dumpfile.
+                bkp_file='%s_%s.dump' % (time.strftime('%d_%m_%Y_%H_%M_%S'),rec.name)
+                file_path = os.path.join(rec.bkp_dir,bkp_file)
+                fp = open(file_path,'wb')
+                uri = 'http://' + rec.host + ':' + rec.port
+                conn = xmlrpclib.ServerProxy(uri + '/xmlrpc/db')
+                bkp=''
+                try:
+                    bkp = execute(conn, 'dump', tools.config['admin_passwd'], rec.name)
+                except:
+                    logger.notifyChannel('backup', netsvc.LOG_INFO, "Could'nt backup database %s. Bad database administrator password for server running at http://%s:%s" %(rec.name, rec.host, rec.port))
+                    continue
+                bkp = base64.decodestring(bkp)
+                fp.write(bkp)
+                fp.close()
+            else:
+                logger.notifyChannel('backup', netsvc.LOG_INFO, "database %s doesn't exist on http://%s:%s" %(rec.name, rec.host, rec.port))
+
+            #Check if user wants to write to SFTP or not.
+            if rec.sftpwrite is True:
+                try:
+                    #Store all values in variables
+                    dir = rec.bkp_dir
+                    pathToWriteTo = rec.sftppath
+                    ipHost = rec.sftpip
+                    portHost = rec.sftpport
+                    usernameLogin = rec.sftpusername
+                    passwordLogin = rec.sftppassword
+                    #Connect with external server over SFTP
+                    srv = pysftp.Connection(host=ipHost, username=usernameLogin,
+password=passwordLogin, port=portHost)
+                    #Move to the correct directory on external server. If the user made a typo in his path with multiple slashes (/odoo//backups/) it will be fixed by this regex.
+                    pathToWriteTo = re.sub('([/]{2,5})+','/',pathToWriteTo)
+                    print(pathToWriteTo)
+                    try:
+                        srv.chdir(pathToWriteTo)
+                    except IOError:
+                        #Create directory and subdirs if they do not exist.
+                        currentDir = ''
+                        for dirElement in pathToWriteTo.split('/'):
+                            currentDir += dirElement + '/'
+                            try:
+                                srv.chdir(currentDir)
+                            except:
+                                print('(Part of the) path didn\'t exist. Creating it now at ' + currentDir)
+                                #Make directory and then navigate into it
+                                srv.mkdir(currentDir, mode=777)
+                                srv.chdir(currentDir)
+                                pass
+                    srv.chdir(pathToWriteTo)
+                    #Loop over all files in the directory.
+                    for f in os.listdir(dir):
+                        fullpath = os.path.join(dir, f)
+                        if os.path.isfile(fullpath):
+                            print(fullpath)
+                            srv.put(fullpath)
+
+                    #Navigate in to the correct folder.
+                    srv.chdir(pathToWriteTo)
+
+                    #Loop over all files in the directory from the back-ups.
+                    #We will check the creation date of every back-up.
+                    for file in srv.listdir(pathToWriteTo):
+                        #Get the full path
+                        fullpath = os.path.join(pathToWriteTo,file) 
+                        #Get the timestamp from the file on the external server
+                        timestamp = srv.stat(fullpath).st_atime
+                        createtime = datetime.datetime.fromtimestamp(timestamp)
+                        now = datetime.datetime.now()
+                        delta = now - createtime
+                        #If the file is older than the daystokeepsftp (the days to keep that the user filled in on the Odoo form it will be removed.
+                        if delta.days >= rec.daystokeepsftp:
+                            #Only delete files, no directories!
+                            if srv.isfile(fullpath) and ".dump" in file:
+                                print("Delete: " + file)
+                                srv.unlink(file)
+                    #Close the SFTP session.
+                    srv.close()
+                except Exception, e:
+                    _logger.debug('Exception! We couldn\'t back up to the FTP server..')
+                    #At this point the SFTP backup failed. We will now check if the user wants
+                    #an e-mail notification about this.
+                    if rec.sendmailsftpfail:
+                        try:
+                            ir_mail_server = self.pool.get('ir.mail_server') 
+                            message = "Dear,\n\nThe backup for the server " + rec.host + " (IP: " + rec.sftpip + ") failed.Please check the following details:\n\nIP address SFTP server: " + rec.sftpip + "\nUsername: " + rec.sftpusername + "\nPassword: " + rec.sftppassword + "\n\nError details: " + tools.ustr(e) + "\n\nWith kind regards"
+                            msg = ir_mail_server.build_email("auto_backup@" + rec.name + ".com", [rec.emailtonotify], "Backup from " + rec.host + "(" + rec.sftpip + ") failed", message) 
+                            ir_mail_server.send_email(cr, user, msg)
+                        except Exception:
+                            pass
+
+            """Remove all old files (on local server) in case this is configured..
+            This is done after the SFTP writing to prevent unusual behaviour:
+            If the user would set local back-ups to be kept 0 days and the SFTP
+            to keep backups xx days there wouldn't be any new back-ups added to the
+            SFTP.
+            If we'd remove the dump files before they're writen to the SFTP there willbe nothing to write. Meaning that if an user doesn't want to keep back-ups locally and only wants them on the SFTP (NAS for example) there wouldn't be any writing to the remote server if this if statement was before the SFTP write method right above this comment.
+            """
+            if rec.autoremove is True:
+                dir = rec.bkp_dir
+                #Loop over all files in the directory.
+                for f in os.listdir(dir):
+                    fullpath = os.path.join(dir, f)
+                    timestamp = os.stat(fullpath).st_ctime
+                    createtime = datetime.datetime.fromtimestamp(timestamp)
+                    now = datetime.datetime.now()
+                    delta  = now - createtime
+                    if delta.days >= rec.daystokeep:
+                        #Only delete files (which are .dump), no directories.
+                        if os.path.isfile(fullpath) and ".dump" in f:
+                            print("Delete: " + fullpath)
+                            os.remove(fullpath)
+
+db_backup()
+
+# vim:expandtab:smartindent:tabstop=4:softtabstop=4:shiftwidth=4:
\ No newline at end of file
diff --git a/auto_backup/i18n/auto_backup.pot b/auto_backup/i18n/auto_backup.pot
new file mode 100644
index 00000000000..c560ff6eed9
--- /dev/null
+++ b/auto_backup/i18n/auto_backup.pot
@@ -0,0 +1,141 @@
+# Translation of OpenERP Server.
+# This file contains the translation of the following modules:
+#	* auto_backup
+#
+msgid ""
+msgstr ""
+"Project-Id-Version: OpenERP Server 5.0.6\n"
+"Report-Msgid-Bugs-To: support@openerp.com\n"
+"POT-Creation-Date: 2009-11-24 13:49:51+0000\n"
+"PO-Revision-Date: 2009-11-24 13:49:51+0000\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: auto_backup
+#: help:db.backup,name:0
+msgid "Database you want to schedule backups for"
+msgstr ""
+
+#. module: auto_backup
+#: constraint:ir.model:0
+msgid "The Object name must start with x_ and not contain any special character !"
+msgstr ""
+
+#. module: auto_backup
+#: constraint:ir.actions.act_window:0
+msgid "Invalid model name in the action definition."
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model,name:auto_backup.model_db_backup
+msgid "db.backup"
+msgstr ""
+
+#. module: auto_backup
+#: view:db.backup:0
+msgid "1) Go to Administration / Configuration / Scheduler / Scheduled Actions"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.actions.act_window,name:auto_backup.action_backup_conf_form
+#: model:ir.ui.menu,name:auto_backup.backup_conf_menu
+msgid "Configure Backup"
+msgstr ""
+
+#. module: auto_backup
+#: view:db.backup:0
+msgid "Test"
+msgstr ""
+
+#. module: auto_backup
+#: view:db.backup:0
+msgid "IP Configuration"
+msgstr ""
+
+#. module: auto_backup
+#: help:db.backup,bkp_dir:0
+msgid "Absolute path for storing the backups"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.module.module,shortdesc:auto_backup.module_meta_information
+msgid "Database Auto-Backup"
+msgstr ""
+
+#. module: auto_backup
+#: view:db.backup:0
+msgid "Database Configuration"
+msgstr ""
+
+#. module: auto_backup
+#: view:db.backup:0
+msgid "4) Set other values as per your preference"
+msgstr ""
+
+#. module: auto_backup
+#: field:db.backup,host:0
+msgid "Host"
+msgstr ""
+
+#. module: auto_backup
+#: view:db.backup:0
+msgid "Automatic backup of all the databases under this can be scheduled as follows: "
+msgstr ""
+
+#. module: auto_backup
+#: constraint:ir.ui.view:0
+msgid "Invalid XML for View Architecture!"
+msgstr ""
+
+#. module: auto_backup
+#: field:db.backup,bkp_dir:0
+msgid "Backup Directory"
+msgstr ""
+
+#. module: auto_backup
+#: field:db.backup,name:0
+msgid "Database"
+msgstr ""
+
+#. module: auto_backup
+#: view:db.backup:0
+msgid "2) Schedule new action(create a new record)"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.module.module,description:auto_backup.module_meta_information
+msgid "The generic Open ERP Database Auto-Backup system enables the user to make configurations for the automatic backup of the database.\n"
+"User simply requires to specify host & port under IP Configuration & database(on specified host running at specified port) and backup directory(in which all the backups of the specified database will be stored) under Database Configuration.\n"
+"\n"
+"Automatic backup for all such configured databases under this can then be scheduled as follows:  \n"
+"                      \n"
+"1) Go to Administration / Configuration / Scheduler / Scheduled Actions\n"
+"2) Schedule new action(create a new record)\n"
+"3) Set 'Object' to 'db.backup' and 'Function' to 'schedule_backup' under page 'Technical Data'\n"
+"4) Set other values as per your preference"
+msgstr ""
+
+#. module: auto_backup
+#: view:db.backup:0
+msgid "3) Set 'Object' to 'db.backup' and 'Function' to 'schedule_backup' under page 'Technical Data'"
+msgstr ""
+
+#. module: auto_backup
+#: view:db.backup:0
+msgid "Help"
+msgstr ""
+
+#. module: auto_backup
+#: view:db.backup:0
+msgid "This configures the scheduler for automatic backup of the given database running on given host at given port on regular intervals."
+msgstr ""
+
+#. module: auto_backup
+#: field:db.backup,port:0
+msgid "Port"
+msgstr ""
+
diff --git a/auto_backup/i18n/de.po b/auto_backup/i18n/de.po
new file mode 100644
index 00000000000..6486c62614d
--- /dev/null
+++ b/auto_backup/i18n/de.po
@@ -0,0 +1,299 @@
+# Translation of Odoo Server.
+# This file contains the translation of the following modules:
+# 	* auto_backup
+#
+msgid ""
+msgstr ""
+"Project-Id-Version: Odoo Server 8.0\n"
+"Report-Msgid-Bugs-To: \n"
+"POT-Creation-Date: 2015-03-26 14:17+0000\n"
+"PO-Revision-Date: 2015-04-17 11:24+0100\n"
+"Last-Translator: Martin Schmid <m.schmid@equitania.de>\n"
+"Language-Team: Equitania Software GmbH <info@myodoo.de>\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: 8bit\n"
+"Plural-Forms: nplurals=2; plural=(n != 1);\n"
+"X-Generator: Poedit 1.7.5\n"
+"Language: de\n"
+"X-Poedit-SourceCharset: UTF-8\n"
+
+#. module: auto_backup
+#: code:addons/auto_backup/backup_scheduler.py:137
+#, python-format
+msgid "%s"
+msgstr "%s"
+
+#. module: auto_backup
+#: help:db.backup,bkp_dir:0
+msgid "Absolute path for storing the backups"
+msgstr "Absoluter Pfad zum Speichern der Sicherungen"
+
+#. module: auto_backup
+#: field:db.backup,sendmailsftpfail:0
+msgid "Auto. E-mail on backup fail"
+msgstr "Auto. E-Mail, wenn Datensicherung fehlschl??gt"
+
+#. module: auto_backup
+#: field:db.backup,autoremove:0
+msgid "Auto. Remove Backups"
+msgstr "Auto. Entfernen von Sicherungen"
+
+#. module: auto_backup
+#: view:db.backup:auto_backup.view_backup_conf_form
+msgid "Automatic backups of the database can be scheduled as follows:"
+msgstr "Automatische Sicherungen der Datenbank k??nnen wie folgt geplant werden:"
+
+#. module: auto_backup
+#: field:db.backup,bkp_dir:0
+msgid "Backup Directory"
+msgstr "Sicherungs-Verzeichnis"
+
+#. module: auto_backup
+#: view:db.backup:auto_backup.view_backup_conf_tree
+msgid "Backups"
+msgstr "Sicherungen"
+
+#. module: auto_backup
+#: help:db.backup,daystokeepsftp:0
+msgid ""
+"Choose after how many days the backup should be deleted from the FTP server. For example:\n"
+"If you fill in 5 the backups will be removed after 5 days from the FTP server."
+msgstr ""
+"W??hlen Sie, nach wie vielen Tagen die Sicherung vom FTP-Server gel??scht werden soll. Beispiel: \n"
+"Wenn Sie \"5\" angeben, werden die Sicherungen nach 5 Tagen vom FTP-Server entfernt."
+
+#. module: auto_backup
+#: help:db.backup,daystokeep:0
+msgid ""
+"Choose after how many days the backup should be deleted. For example:\n"
+"If you fill in 5 the backups will be removed after 5 days."
+msgstr ""
+"W??hlen Sie, nach wie vielen Tagen die Sicherung vom FTP-Server gel??scht werden soll. Beispiel: \n"
+"Wenn Sie \"5\" angeben, werden die Sicherungen nach 5 Tagen vom FTP-Server entfernt."
+
+#. module: auto_backup
+#: model:ir.actions.act_window,name:auto_backup.action_backup_conf_form
+#: model:ir.ui.menu,name:auto_backup.backup_conf_menu
+msgid "Configure Backup"
+msgstr "Backup einstellen"
+
+#. module: auto_backup
+#: view:db.backup:auto_backup.view_backup_conf_form
+msgid "Contact us!"
+msgstr "Sprechen Sie uns an!"
+
+#. module: auto_backup
+#: field:db.backup,create_uid:0
+msgid "Created by"
+msgstr "Erstellt von"
+
+#. module: auto_backup
+#: field:db.backup,create_date:0
+msgid "Created on"
+msgstr "Erstellt am:"
+
+#. module: auto_backup
+#: field:db.backup,name:0
+msgid "Database"
+msgstr "Datenbank"
+
+#. module: auto_backup
+#: help:db.backup,name:0
+msgid "Database you want to schedule backups for"
+msgstr "Datenbank Sicherungen einplanen f??r"
+
+#. module: auto_backup
+#: field:db.backup,emailtonotify:0
+msgid "E-mail to notify"
+msgstr "E-Mail Benachrichtigen"
+
+#. module: auto_backup
+#: code:addons/auto_backup/backup_scheduler.py:106 constraint:db.backup:0
+#, python-format
+msgid "Error ! No such database exists!"
+msgstr "Fehler! Keine solche Datenbank vorhanden!"
+
+#. module: auto_backup
+#: help:db.backup,emailtonotify:0
+msgid "Fill in the e-mail where you want to be notified that the backup failed on the FTP."
+msgstr "Geben Sie die E-Mail-Adresse an, die bei Sicherungsfehlern auf dem FTP verwendet werden soll."
+
+#. module: auto_backup
+#: view:db.backup:auto_backup.view_backup_conf_form
+msgid "For example: /odoo/backups/"
+msgstr "Zum Beispiel: /odoo/Backups /"
+
+#. module: auto_backup
+#: view:db.backup:auto_backup.view_backup_conf_form
+msgid "Go to Settings / Technical / Automation / Scheduled Actions."
+msgstr "Gehen Sie zu Einstellungen / Technisch / Automation / Geplante Vorg??nge"
+
+#. module: auto_backup
+#: view:db.backup:auto_backup.view_backup_conf_form
+msgid "Help"
+msgstr "Hilfe"
+
+#. module: auto_backup
+#: field:db.backup,host:0
+msgid "Host"
+msgstr "Host"
+
+#. module: auto_backup
+#: field:db.backup,id:0
+msgid "ID"
+msgstr "ID"
+
+#. module: auto_backup
+#: field:db.backup,sftpip:0
+msgid "IP Address SFTP Server"
+msgstr "IP-Adresse SFTP-Server"
+
+#. module: auto_backup
+#: help:db.backup,sendmailsftpfail:0
+msgid "If you check this option you can choose to automaticly get e-mailed when the backup to the external server failed."
+msgstr "Wenn Sie diese Option aktivieren, erhalten Sie automatisch eine e-Mail, wenn die Sicherung mit dem externen Server fehlgeschlagen ist."
+
+#. module: auto_backup
+#: help:db.backup,autoremove:0
+msgid "If you check this option you can choose to automaticly remove the backup after xx days"
+msgstr "Wenn Sie diese Option aktivieren, k??nnen Sie die Sicherung automatisch nach Xx Tagen entfernen"
+
+#. module: auto_backup
+#: help:db.backup,sftpwrite:0
+msgid "If you check this option you can specify the details needed to write to a remote server with SFTP."
+msgstr "Wenn Sie diese Option aktivieren, k??nnen Sie Details f??r einen entfernten SFTP-Server angeben."
+
+#. module: auto_backup
+#: field:db.backup,write_uid:0
+msgid "Last Updated by"
+msgstr "Zuletzt aktualisiert von"
+
+#. module: auto_backup
+#: field:db.backup,write_date:0
+msgid "Last Updated on"
+msgstr "Zuletzt aktualisiert am"
+
+#. module: auto_backup
+#: view:db.backup:auto_backup.view_backup_conf_form
+msgid "Local backup configuration"
+msgstr "Lokale Sicherungs-Konfiguration"
+
+#. module: auto_backup
+#: view:db.backup:auto_backup.view_backup_conf_form
+msgid "Need more help?"
+msgstr "Ben??tigen Sie weitere Hilfe?"
+
+#. module: auto_backup
+#: field:db.backup,sftppassword:0
+msgid "Password User SFTP Server"
+msgstr "Passwort Benutzer SFTP-Server"
+
+#. module: auto_backup
+#: field:db.backup,sftppath:0
+msgid "Path external server"
+msgstr "Externen Server Pfad"
+
+#. module: auto_backup
+#: field:db.backup,port:0
+msgid "Port"
+msgstr "Port"
+
+#. module: auto_backup
+#: field:db.backup,daystokeepsftp:0
+msgid "Remove SFTP after x days"
+msgstr "SFTP nach x Tagen entfernen"
+
+#. module: auto_backup
+#: field:db.backup,daystokeep:0
+msgid "Remove after x days"
+msgstr "Entfernen nach x Tagen"
+
+#. module: auto_backup
+#: view:db.backup:auto_backup.view_backup_conf_form
+msgid "SFTP"
+msgstr "SFTP"
+
+#. module: auto_backup
+#: field:db.backup,sftpport:0
+msgid "SFTP Port"
+msgstr "SFTP-Port"
+
+#. module: auto_backup
+#: view:db.backup:auto_backup.view_backup_conf_search
+msgid "Search options"
+msgstr "Suchkriterien"
+
+#. module: auto_backup
+#: view:db.backup:auto_backup.view_backup_conf_form
+msgid "Search the action named 'Backup scheduler'."
+msgstr "Suchen Sie die Aktion mit dem Namen \"Backup Scheduler\"."
+
+#. module: auto_backup
+#: view:db.backup:auto_backup.view_backup_conf_form
+msgid "Set the scheduler to active and fill in how often you want backups generated."
+msgstr "Setzen Sie die Aktion auf aktiv und geben Sie an wie oft die Sicherungen erstellt werden soll."
+
+#. module: auto_backup
+#: view:db.backup:auto_backup.view_backup_conf_form
+msgid "Test"
+msgstr "Test"
+
+#. module: auto_backup
+#: view:db.backup:auto_backup.view_backup_conf_form
+msgid "Test SFTP Connection"
+msgstr "Verbindung testen"
+
+#. module: auto_backup
+#: help:db.backup,sftpip:0
+msgid "The IP address from your remote server. For example 192.168.0.1"
+msgstr "Die IP-Adresse Ihres entfernten Servers. Zum Beispiel 192.168.0.1"
+
+#. module: auto_backup
+#: help:db.backup,sftppath:0
+msgid ""
+"The location to the folder where the dumps should be written to. For example /odoo/backups/.\n"
+"Files will then be written to /odoo/backups/ on your remote server."
+msgstr ""
+"Der Speicherort f??r den Ordner an dem die Sicherungen in gespeichert werden sollen. Zum Beispiel wird /odoo/backups/.\n"
+"Files geschrieben zu /odoo/backups / / auf dem remote Server."
+
+#. module: auto_backup
+#: help:db.backup,sftppassword:0
+msgid "The password from the user where the SFTP connection should be made with. This is the password from the user on the external server."
+msgstr "Das Kennwort des Benutzers mit dem die SFTP-Verbindung mit hergestellt werden soll. Dies ist das Kennwort des Benutzers auf dem externen Server."
+
+#. module: auto_backup
+#: help:db.backup,sftpport:0
+msgid "The port on the FTP server that accepts SSH/SFTP calls."
+msgstr "Der Port auf dem FTP-Server, der SSH/SFTP Anfragen annimmt."
+
+#. module: auto_backup
+#: help:db.backup,sftpusername:0
+msgid "The username where the SFTP connection should be made with. This is the user on the external server."
+msgstr "Der Benutzername mit dem die SFTP-Verbindung mit hergestellt werden soll. Dies ist der Benutzer auf dem externen Server."
+
+#. module: auto_backup
+#: view:db.backup:auto_backup.view_backup_conf_form
+msgid "This configures the scheduler for automatic backup of the given database running on given host at given port on regular intervals."
+msgstr "Dies ist Konfiguration der Aktion automatisierte Backups der Datenbank auf dem angegebenen Server durchzuf??hren."
+
+#. module: auto_backup
+#: view:db.backup:auto_backup.view_backup_conf_form
+msgid "Use SFTP with caution! This writes files to external servers under the path you specify."
+msgstr "Verwenden Sie SFTP mit Vorsicht! Dies schreibt Dateien auf externen Servern unter dem Pfad, den Sie angeben."
+
+#. module: auto_backup
+#: field:db.backup,sftpusername:0
+msgid "Username SFTP Server"
+msgstr "Benutzername SFTP-Server"
+
+#. module: auto_backup
+#: view:db.backup:auto_backup.view_backup_conf_form
+msgid "Warning:"
+msgstr "Warnung:"
+
+#. module: auto_backup
+#: field:db.backup,sftpwrite:0
+msgid "Write to external server with sftp"
+msgstr "Auf externen Server mit SFTP schreiben"
diff --git a/auto_backup/i18n/nl.po b/auto_backup/i18n/nl.po
new file mode 100644
index 00000000000..8d739798b29
--- /dev/null
+++ b/auto_backup/i18n/nl.po
@@ -0,0 +1,292 @@
+# Translation of Odoo Server.
+# This file contains the translation of the following modules:
+#	* auto_backup
+#
+msgid ""
+msgstr ""
+"Project-Id-Version: Odoo Server 8.0\n"
+"Report-Msgid-Bugs-To: \n"
+"POT-Creation-Date: 2015-03-26 14:17+0000\n"
+"PO-Revision-Date: 2015-03-26 14:17+0000\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: auto_backup
+#: code:addons/auto_backup/backup_scheduler.py:137
+#, python-format
+msgid "%s"
+msgstr "%s"
+
+#. module: auto_backup
+#: help:db.backup,bkp_dir:0
+msgid "Absolute path for storing the backups"
+msgstr "Absoluut pad om backups te bewaren"
+
+#. module: auto_backup
+#: field:db.backup,sendmailsftpfail:0
+msgid "Auto. E-mail on backup fail"
+msgstr "Auto. e-mailen wanneer backup mislukt"
+
+#. module: auto_backup
+#: field:db.backup,autoremove:0
+msgid "Auto. Remove Backups"
+msgstr "Auto. backups verwijderen"
+
+#. module: auto_backup
+#: view:db.backup:auto_backup.view_backup_conf_form
+msgid "Automatic backups of the database can be scheduled as follows:"
+msgstr "Automatische backups van de database kunnen als volgend gepland worden:"
+
+#. module: auto_backup
+#: field:db.backup,bkp_dir:0
+msgid "Backup Directory"
+msgstr "Backup folder"
+
+#. module: auto_backup
+#: view:db.backup:auto_backup.view_backup_conf_tree
+msgid "Backups"
+msgstr "Backups"
+
+#. module: auto_backup
+#: help:db.backup,daystokeepsftp:0
+msgid "Choose after how many days the backup should be deleted from the FTP server. For example:\n"
+"If you fill in 5 the backups will be removed after 5 days from the FTP server."
+msgstr "Kies na hoeveel dagen de backups verwijderd moeten worden van de FTP server. Bijvoorbeeld:\n"
+"Als u 5 invult zal de backup na 5 dagen verwijderd worden van de FTP server."
+
+#. module: auto_backup
+#: help:db.backup,daystokeep:0
+msgid "Choose after how many days the backup should be deleted. For example:\n"
+"If you fill in 5 the backups will be removed after 5 days."
+msgstr "Kies na hoeveel dagen de backup verwijderd moet worden. Bijvoorbeeld:\n"
+"Als u 5 invult zal de backup verwijderd worden na 5 dagen."
+
+#. module: auto_backup
+#: model:ir.actions.act_window,name:auto_backup.action_backup_conf_form
+#: model:ir.ui.menu,name:auto_backup.backup_conf_menu
+msgid "Configure Backup"
+msgstr "Configureer backup"
+
+#. module: auto_backup
+#: view:db.backup:auto_backup.view_backup_conf_form
+msgid "Contact us!"
+msgstr "Contacteer ons!"
+
+#. module: auto_backup
+#: field:db.backup,create_uid:0
+msgid "Created by"
+msgstr "Gemaakt door"
+
+#. module: auto_backup
+#: field:db.backup,create_date:0
+msgid "Created on"
+msgstr "Gemaakt op"
+
+#. module: auto_backup
+#: field:db.backup,name:0
+msgid "Database"
+msgstr "Database"
+
+#. module: auto_backup
+#: help:db.backup,name:0
+msgid "Database you want to schedule backups for"
+msgstr "Database waar u backups voor wilt plannen"
+
+#. module: auto_backup
+#: field:db.backup,emailtonotify:0
+msgid "E-mail to notify"
+msgstr "E-mail om te verwittigen"
+
+#. module: auto_backup
+#: code:addons/auto_backup/backup_scheduler.py:106
+#: constraint:db.backup:0
+#, python-format
+msgid "Error ! No such database exists!"
+msgstr "Error! Deze database bestaat niet!"
+
+#. module: auto_backup
+#: help:db.backup,emailtonotify:0
+msgid "Fill in the e-mail where you want to be notified that the backup failed on the FTP."
+msgstr "Vul de e-mail in waarop u wilt verwittigd worden als de backup mislukt op de FTP."
+
+#. module: auto_backup
+#: view:db.backup:auto_backup.view_backup_conf_form
+msgid "For example: /odoo/backups/"
+msgstr "Bijvoorbeeld: /odoo/backups/"
+
+#. module: auto_backup
+#: view:db.backup:auto_backup.view_backup_conf_form
+msgid "Go to Settings / Technical / Automation / Scheduled Actions."
+msgstr "Ga naar Instellingen / Technsich / Automatisering / Geplande acties"
+
+#. module: auto_backup
+#: view:db.backup:auto_backup.view_backup_conf_form
+msgid "Help"
+msgstr "Help"
+
+#. module: auto_backup
+#: field:db.backup,host:0
+msgid "Host"
+msgstr "Host"
+
+#. module: auto_backup
+#: field:db.backup,id:0
+msgid "ID"
+msgstr "ID"
+
+#. module: auto_backup
+#: field:db.backup,sftpip:0
+msgid "IP Address SFTP Server"
+msgstr "IP adres SFTP server"
+
+#. module: auto_backup
+#: help:db.backup,sendmailsftpfail:0
+msgid "If you check this option you can choose to automaticly get e-mailed when the backup to the external server failed."
+msgstr "Als u deze optie aanvinkt kan u kiezen om automatisch een e-mail aan te krijgen als de backup
+naar de externe server mislukt."
+
+#. module: auto_backup
+#: help:db.backup,autoremove:0
+msgid "If you check this option you can choose to automaticly remove the backup after xx days"
+msgstr "Als u deze optie aanvinkt kan u kiezen om automatisch backups te verwijderen na xx dagen"
+
+#. module: auto_backup
+#: help:db.backup,sftpwrite:0
+msgid "If you check this option you can specify the details needed to write to a remote server with SFTP."
+msgstr "Als u deze optie aanvinkt kan u de details invullen die nodig zijn om te connecteren met de externe SFTP server."
+
+#. module: auto_backup
+#: field:db.backup,write_uid:0
+msgid "Last Updated by"
+msgstr "Laatst bijgewerkt door"
+
+#. module: auto_backup
+#: field:db.backup,write_date:0
+msgid "Last Updated on"
+msgstr "Laatst bijgewerkt op"
+
+#. module: auto_backup
+#: view:db.backup:auto_backup.view_backup_conf_form
+msgid "Local backup configuration"
+msgstr "Lokale backup configuratie"
+
+#. module: auto_backup
+#: view:db.backup:auto_backup.view_backup_conf_form
+msgid "Need more help?"
+msgstr "Meer hulp nodig?"
+
+#. module: auto_backup
+#: field:db.backup,sftppassword:0
+msgid "Password User SFTP Server"
+msgstr "Wachtwoord gebruiker SFTP server"
+
+#. module: auto_backup
+#: field:db.backup,sftppath:0
+msgid "Path external server"
+msgstr "Pad externe server"
+
+#. module: auto_backup
+#: field:db.backup,port:0
+msgid "Port"
+msgstr "Poort"
+
+#. module: auto_backup
+#: field:db.backup,daystokeepsftp:0
+msgid "Remove SFTP after x days"
+msgstr "SFTP verwijderen na x dagen"
+
+#. module: auto_backup
+#: field:db.backup,daystokeep:0
+msgid "Remove after x days"
+msgstr "Verwijderen na x dagen"
+
+#. module: auto_backup
+#: view:db.backup:auto_backup.view_backup_conf_form
+msgid "SFTP"
+msgstr "SFTP"
+
+#. module: auto_backup
+#: field:db.backup,sftpport:0
+msgid "SFTP Port"
+msgstr "SFTP poort"
+
+#. module: auto_backup
+#: view:db.backup:auto_backup.view_backup_conf_search
+msgid "Search options"
+msgstr "Zoekopties"
+
+#. module: auto_backup
+#: view:db.backup:auto_backup.view_backup_conf_form
+msgid "Search the action named 'Backup scheduler'."
+msgstr "Zoek de actie genaamd 'Backup scheduler'."
+
+#. module: auto_backup
+#: view:db.backup:auto_backup.view_backup_conf_form
+msgid "Set the scheduler to active and fill in how often you want backups generated."
+msgstr "Zet de planner op actief en vul in hoe vaak de backup moet gemaakt worden."
+
+#. module: auto_backup
+#: view:db.backup:auto_backup.view_backup_conf_form
+msgid "Test"
+msgstr "Test"
+
+#. module: auto_backup
+#: view:db.backup:auto_backup.view_backup_conf_form
+msgid "Test SFTP Connection"
+msgstr "Test SFTP Connectie"
+
+#. module: auto_backup
+#: help:db.backup,sftpip:0
+msgid "The IP address from your remote server. For example 192.168.0.1"
+msgstr "Het IP adres van uw externe server. Bijvoorbeeld: 192.168.0.1"
+
+#. module: auto_backup
+#: help:db.backup,sftppath:0
+msgid "The location to the folder where the dumps should be written to. For example /odoo/backups/.\n"
+"Files will then be written to /odoo/backups/ on your remote server."
+msgstr "De locatie naar de folder waar de backup naar toe moet geschreven worden. Bijvoorbeeld odoo/backups/\n"
+"Bestanden worden dan naar /odoo/backups/ geschreven op de externe server"
+
+#. module: auto_backup
+#: help:db.backup,sftppassword:0
+msgid "The password from the user where the SFTP connection should be made with. This is the password from the user on the external server."
+msgstr "Het wachtwoord van de gebruiker waar de SFTP connectie mee moet gemaakt worden. Dit is het wachtwoord van de gebruiker op de externe server."
+
+#. module: auto_backup
+#: help:db.backup,sftpport:0
+msgid "The port on the FTP server that accepts SSH/SFTP calls."
+msgstr "De poort op de FTP server die SSH/SFTP accepteert."
+
+#. module: auto_backup
+#: help:db.backup,sftpusername:0
+msgid "The username where the SFTP connection should be made with. This is the user on the external server."
+msgstr "De gebruikersnaam waar de SFTP connectie mee gemaakt moet worden. Dit is de gebruiker op de externe server."
+
+#. module: auto_backup
+#: view:db.backup:auto_backup.view_backup_conf_form
+msgid "This configures the scheduler for automatic backup of the given database running on given host at given port on regular intervals."
+msgstr "Dit configureert de planner voor automatische backups op de ingegeven database waar de host, poort en database op zijn ingegeven voor reguliere intervallen."
+
+#. module: auto_backup
+#: view:db.backup:auto_backup.view_backup_conf_form
+msgid "Use SFTP with caution! This writes files to external servers under the path you specify."
+msgstr "Gebruik SFTP voorzichtig! Dit schrijft bestanden naar externe servers onder het pad dat u opgeeft."
+
+#. module: auto_backup
+#: field:db.backup,sftpusername:0
+msgid "Username SFTP Server"
+msgstr "Gebruikersnaam SFTP Server"
+
+#. module: auto_backup
+#: view:db.backup:auto_backup.view_backup_conf_form
+msgid "Warning:"
+msgstr "Waarschuwing:"
+
+#. module: auto_backup
+#: field:db.backup,sftpwrite:0
+msgid "Write to external server with sftp"
+msgstr "Schrijf naar externe server met SFTP"
diff --git a/auto_backup/i18n/nl_BE.po b/auto_backup/i18n/nl_BE.po
new file mode 100644
index 00000000000..8d739798b29
--- /dev/null
+++ b/auto_backup/i18n/nl_BE.po
@@ -0,0 +1,292 @@
+# Translation of Odoo Server.
+# This file contains the translation of the following modules:
+#	* auto_backup
+#
+msgid ""
+msgstr ""
+"Project-Id-Version: Odoo Server 8.0\n"
+"Report-Msgid-Bugs-To: \n"
+"POT-Creation-Date: 2015-03-26 14:17+0000\n"
+"PO-Revision-Date: 2015-03-26 14:17+0000\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: auto_backup
+#: code:addons/auto_backup/backup_scheduler.py:137
+#, python-format
+msgid "%s"
+msgstr "%s"
+
+#. module: auto_backup
+#: help:db.backup,bkp_dir:0
+msgid "Absolute path for storing the backups"
+msgstr "Absoluut pad om backups te bewaren"
+
+#. module: auto_backup
+#: field:db.backup,sendmailsftpfail:0
+msgid "Auto. E-mail on backup fail"
+msgstr "Auto. e-mailen wanneer backup mislukt"
+
+#. module: auto_backup
+#: field:db.backup,autoremove:0
+msgid "Auto. Remove Backups"
+msgstr "Auto. backups verwijderen"
+
+#. module: auto_backup
+#: view:db.backup:auto_backup.view_backup_conf_form
+msgid "Automatic backups of the database can be scheduled as follows:"
+msgstr "Automatische backups van de database kunnen als volgend gepland worden:"
+
+#. module: auto_backup
+#: field:db.backup,bkp_dir:0
+msgid "Backup Directory"
+msgstr "Backup folder"
+
+#. module: auto_backup
+#: view:db.backup:auto_backup.view_backup_conf_tree
+msgid "Backups"
+msgstr "Backups"
+
+#. module: auto_backup
+#: help:db.backup,daystokeepsftp:0
+msgid "Choose after how many days the backup should be deleted from the FTP server. For example:\n"
+"If you fill in 5 the backups will be removed after 5 days from the FTP server."
+msgstr "Kies na hoeveel dagen de backups verwijderd moeten worden van de FTP server. Bijvoorbeeld:\n"
+"Als u 5 invult zal de backup na 5 dagen verwijderd worden van de FTP server."
+
+#. module: auto_backup
+#: help:db.backup,daystokeep:0
+msgid "Choose after how many days the backup should be deleted. For example:\n"
+"If you fill in 5 the backups will be removed after 5 days."
+msgstr "Kies na hoeveel dagen de backup verwijderd moet worden. Bijvoorbeeld:\n"
+"Als u 5 invult zal de backup verwijderd worden na 5 dagen."
+
+#. module: auto_backup
+#: model:ir.actions.act_window,name:auto_backup.action_backup_conf_form
+#: model:ir.ui.menu,name:auto_backup.backup_conf_menu
+msgid "Configure Backup"
+msgstr "Configureer backup"
+
+#. module: auto_backup
+#: view:db.backup:auto_backup.view_backup_conf_form
+msgid "Contact us!"
+msgstr "Contacteer ons!"
+
+#. module: auto_backup
+#: field:db.backup,create_uid:0
+msgid "Created by"
+msgstr "Gemaakt door"
+
+#. module: auto_backup
+#: field:db.backup,create_date:0
+msgid "Created on"
+msgstr "Gemaakt op"
+
+#. module: auto_backup
+#: field:db.backup,name:0
+msgid "Database"
+msgstr "Database"
+
+#. module: auto_backup
+#: help:db.backup,name:0
+msgid "Database you want to schedule backups for"
+msgstr "Database waar u backups voor wilt plannen"
+
+#. module: auto_backup
+#: field:db.backup,emailtonotify:0
+msgid "E-mail to notify"
+msgstr "E-mail om te verwittigen"
+
+#. module: auto_backup
+#: code:addons/auto_backup/backup_scheduler.py:106
+#: constraint:db.backup:0
+#, python-format
+msgid "Error ! No such database exists!"
+msgstr "Error! Deze database bestaat niet!"
+
+#. module: auto_backup
+#: help:db.backup,emailtonotify:0
+msgid "Fill in the e-mail where you want to be notified that the backup failed on the FTP."
+msgstr "Vul de e-mail in waarop u wilt verwittigd worden als de backup mislukt op de FTP."
+
+#. module: auto_backup
+#: view:db.backup:auto_backup.view_backup_conf_form
+msgid "For example: /odoo/backups/"
+msgstr "Bijvoorbeeld: /odoo/backups/"
+
+#. module: auto_backup
+#: view:db.backup:auto_backup.view_backup_conf_form
+msgid "Go to Settings / Technical / Automation / Scheduled Actions."
+msgstr "Ga naar Instellingen / Technsich / Automatisering / Geplande acties"
+
+#. module: auto_backup
+#: view:db.backup:auto_backup.view_backup_conf_form
+msgid "Help"
+msgstr "Help"
+
+#. module: auto_backup
+#: field:db.backup,host:0
+msgid "Host"
+msgstr "Host"
+
+#. module: auto_backup
+#: field:db.backup,id:0
+msgid "ID"
+msgstr "ID"
+
+#. module: auto_backup
+#: field:db.backup,sftpip:0
+msgid "IP Address SFTP Server"
+msgstr "IP adres SFTP server"
+
+#. module: auto_backup
+#: help:db.backup,sendmailsftpfail:0
+msgid "If you check this option you can choose to automaticly get e-mailed when the backup to the external server failed."
+msgstr "Als u deze optie aanvinkt kan u kiezen om automatisch een e-mail aan te krijgen als de backup
+naar de externe server mislukt."
+
+#. module: auto_backup
+#: help:db.backup,autoremove:0
+msgid "If you check this option you can choose to automaticly remove the backup after xx days"
+msgstr "Als u deze optie aanvinkt kan u kiezen om automatisch backups te verwijderen na xx dagen"
+
+#. module: auto_backup
+#: help:db.backup,sftpwrite:0
+msgid "If you check this option you can specify the details needed to write to a remote server with SFTP."
+msgstr "Als u deze optie aanvinkt kan u de details invullen die nodig zijn om te connecteren met de externe SFTP server."
+
+#. module: auto_backup
+#: field:db.backup,write_uid:0
+msgid "Last Updated by"
+msgstr "Laatst bijgewerkt door"
+
+#. module: auto_backup
+#: field:db.backup,write_date:0
+msgid "Last Updated on"
+msgstr "Laatst bijgewerkt op"
+
+#. module: auto_backup
+#: view:db.backup:auto_backup.view_backup_conf_form
+msgid "Local backup configuration"
+msgstr "Lokale backup configuratie"
+
+#. module: auto_backup
+#: view:db.backup:auto_backup.view_backup_conf_form
+msgid "Need more help?"
+msgstr "Meer hulp nodig?"
+
+#. module: auto_backup
+#: field:db.backup,sftppassword:0
+msgid "Password User SFTP Server"
+msgstr "Wachtwoord gebruiker SFTP server"
+
+#. module: auto_backup
+#: field:db.backup,sftppath:0
+msgid "Path external server"
+msgstr "Pad externe server"
+
+#. module: auto_backup
+#: field:db.backup,port:0
+msgid "Port"
+msgstr "Poort"
+
+#. module: auto_backup
+#: field:db.backup,daystokeepsftp:0
+msgid "Remove SFTP after x days"
+msgstr "SFTP verwijderen na x dagen"
+
+#. module: auto_backup
+#: field:db.backup,daystokeep:0
+msgid "Remove after x days"
+msgstr "Verwijderen na x dagen"
+
+#. module: auto_backup
+#: view:db.backup:auto_backup.view_backup_conf_form
+msgid "SFTP"
+msgstr "SFTP"
+
+#. module: auto_backup
+#: field:db.backup,sftpport:0
+msgid "SFTP Port"
+msgstr "SFTP poort"
+
+#. module: auto_backup
+#: view:db.backup:auto_backup.view_backup_conf_search
+msgid "Search options"
+msgstr "Zoekopties"
+
+#. module: auto_backup
+#: view:db.backup:auto_backup.view_backup_conf_form
+msgid "Search the action named 'Backup scheduler'."
+msgstr "Zoek de actie genaamd 'Backup scheduler'."
+
+#. module: auto_backup
+#: view:db.backup:auto_backup.view_backup_conf_form
+msgid "Set the scheduler to active and fill in how often you want backups generated."
+msgstr "Zet de planner op actief en vul in hoe vaak de backup moet gemaakt worden."
+
+#. module: auto_backup
+#: view:db.backup:auto_backup.view_backup_conf_form
+msgid "Test"
+msgstr "Test"
+
+#. module: auto_backup
+#: view:db.backup:auto_backup.view_backup_conf_form
+msgid "Test SFTP Connection"
+msgstr "Test SFTP Connectie"
+
+#. module: auto_backup
+#: help:db.backup,sftpip:0
+msgid "The IP address from your remote server. For example 192.168.0.1"
+msgstr "Het IP adres van uw externe server. Bijvoorbeeld: 192.168.0.1"
+
+#. module: auto_backup
+#: help:db.backup,sftppath:0
+msgid "The location to the folder where the dumps should be written to. For example /odoo/backups/.\n"
+"Files will then be written to /odoo/backups/ on your remote server."
+msgstr "De locatie naar de folder waar de backup naar toe moet geschreven worden. Bijvoorbeeld odoo/backups/\n"
+"Bestanden worden dan naar /odoo/backups/ geschreven op de externe server"
+
+#. module: auto_backup
+#: help:db.backup,sftppassword:0
+msgid "The password from the user where the SFTP connection should be made with. This is the password from the user on the external server."
+msgstr "Het wachtwoord van de gebruiker waar de SFTP connectie mee moet gemaakt worden. Dit is het wachtwoord van de gebruiker op de externe server."
+
+#. module: auto_backup
+#: help:db.backup,sftpport:0
+msgid "The port on the FTP server that accepts SSH/SFTP calls."
+msgstr "De poort op de FTP server die SSH/SFTP accepteert."
+
+#. module: auto_backup
+#: help:db.backup,sftpusername:0
+msgid "The username where the SFTP connection should be made with. This is the user on the external server."
+msgstr "De gebruikersnaam waar de SFTP connectie mee gemaakt moet worden. Dit is de gebruiker op de externe server."
+
+#. module: auto_backup
+#: view:db.backup:auto_backup.view_backup_conf_form
+msgid "This configures the scheduler for automatic backup of the given database running on given host at given port on regular intervals."
+msgstr "Dit configureert de planner voor automatische backups op de ingegeven database waar de host, poort en database op zijn ingegeven voor reguliere intervallen."
+
+#. module: auto_backup
+#: view:db.backup:auto_backup.view_backup_conf_form
+msgid "Use SFTP with caution! This writes files to external servers under the path you specify."
+msgstr "Gebruik SFTP voorzichtig! Dit schrijft bestanden naar externe servers onder het pad dat u opgeeft."
+
+#. module: auto_backup
+#: field:db.backup,sftpusername:0
+msgid "Username SFTP Server"
+msgstr "Gebruikersnaam SFTP Server"
+
+#. module: auto_backup
+#: view:db.backup:auto_backup.view_backup_conf_form
+msgid "Warning:"
+msgstr "Waarschuwing:"
+
+#. module: auto_backup
+#: field:db.backup,sftpwrite:0
+msgid "Write to external server with sftp"
+msgstr "Schrijf naar externe server met SFTP"
diff --git a/auto_backup/i18n/zh_CN.po b/auto_backup/i18n/zh_CN.po
new file mode 100644
index 00000000000..77987b87964
--- /dev/null
+++ b/auto_backup/i18n/zh_CN.po
@@ -0,0 +1,298 @@
+# Translation of Odoo Server.
+# This file contains the translation of the following modules:
+# 	* auto_backup
+#
+msgid ""
+msgstr ""
+"Project-Id-Version: Odoo Server 8.0\n"
+"Report-Msgid-Bugs-To: \n"
+"POT-Creation-Date: 2015-03-26 14:17+0000\n"
+"PO-Revision-Date: 2015-03-27 00:16+0800\n"
+"Last-Translator: <>\n"
+"Language-Team: Talway <1473162392@qq.com>\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: 8bit\n"
+"Plural-Forms: nplurals=1; plural=0;\n"
+"Language: zh_CN\n"
+"X-Generator: Poedit 1.7.5\n"
+
+#. module: auto_backup
+#: code:addons/auto_backup/backup_scheduler.py:137
+#, python-format
+msgid "%s"
+msgstr "%s"
+
+#. module: auto_backup
+#: help:db.backup,bkp_dir:0
+msgid "Absolute path for storing the backups"
+msgstr "??????????????????"
+
+#. module: auto_backup
+#: field:db.backup,sendmailsftpfail:0
+msgid "Auto. E-mail on backup fail"
+msgstr "FTP?????????????????????????????????"
+
+#. module: auto_backup
+#: field:db.backup,autoremove:0
+msgid "Auto. Remove Backups"
+msgstr "??????????????????"
+
+#. module: auto_backup
+#: view:db.backup:auto_backup.view_backup_conf_form
+msgid "Automatic backups of the database can be scheduled as follows:"
+msgstr "?????????????????????????????????????????????"
+
+#. module: auto_backup
+#: field:db.backup,bkp_dir:0
+msgid "Backup Directory"
+msgstr "????????????"
+
+#. module: auto_backup
+#: view:db.backup:auto_backup.view_backup_conf_tree
+msgid "Backups"
+msgstr "??????"
+
+#. module: auto_backup
+#: help:db.backup,daystokeepsftp:0
+msgid ""
+"Choose after how many days the backup should be deleted from the FTP server. For example:\n"
+"If you fill in 5 the backups will be removed after 5 days from the FTP server."
+msgstr ""
+"??????????????????????????????????????? FTP ????????????????????? \n"
+"??????????????? 5??? ???5 ?????? ???FTP ????????? ?????????????????????"
+
+#. module: auto_backup
+#: help:db.backup,daystokeep:0
+msgid ""
+"Choose after how many days the backup should be deleted. For example:\n"
+"If you fill in 5 the backups will be removed after 5 days."
+msgstr ""
+"???????????????????????????????????????????????? \n"
+"???????????????5?????? 5 ?????????????????????"
+
+#. module: auto_backup
+#: model:ir.actions.act_window,name:auto_backup.action_backup_conf_form
+#: model:ir.ui.menu,name:auto_backup.backup_conf_menu
+msgid "Configure Backup"
+msgstr "???????????????"
+
+#. module: auto_backup
+#: view:db.backup:auto_backup.view_backup_conf_form
+msgid "Contact us!"
+msgstr "?????????????????????"
+
+#. module: auto_backup
+#: field:db.backup,create_uid:0
+msgid "Created by"
+msgstr "?????????"
+
+#. module: auto_backup
+#: field:db.backup,create_date:0
+msgid "Created on"
+msgstr "????????????"
+
+#. module: auto_backup
+#: field:db.backup,name:0
+msgid "Database"
+msgstr "?????????"
+
+#. module: auto_backup
+#: help:db.backup,name:0
+msgid "Database you want to schedule backups for"
+msgstr "????????????????????????"
+
+#. module: auto_backup
+#: field:db.backup,emailtonotify:0
+msgid "E-mail to notify"
+msgstr "E-mail????????????"
+
+#. module: auto_backup
+#: code:addons/auto_backup/backup_scheduler.py:106 constraint:db.backup:0
+#, python-format
+msgid "Error ! No such database exists!"
+msgstr "?????? ??????????????????????????? ???"
+
+#. module: auto_backup
+#: help:db.backup,emailtonotify:0
+msgid "Fill in the e-mail where you want to be notified that the backup failed on the FTP."
+msgstr "FTP?????????????????????????????????????????????"
+
+#. module: auto_backup
+#: view:db.backup:auto_backup.view_backup_conf_form
+msgid "For example: /odoo/backups/"
+msgstr "????????? /odoo/backups/"
+
+#. module: auto_backup
+#: view:db.backup:auto_backup.view_backup_conf_form
+msgid "Go to Settings / Technical / Automation / Scheduled Actions."
+msgstr "??????   ?????? / ?????? / ????????? / ???????????????"
+
+#. module: auto_backup
+#: view:db.backup:auto_backup.view_backup_conf_form
+msgid "Help"
+msgstr "??????"
+
+#. module: auto_backup
+#: field:db.backup,host:0
+msgid "Host"
+msgstr "?????????"
+
+#. module: auto_backup
+#: field:db.backup,id:0
+msgid "ID"
+msgstr "ID"
+
+#. module: auto_backup
+#: field:db.backup,sftpip:0
+msgid "IP Address SFTP Server"
+msgstr " SFTP ????????? IP ??????"
+
+#. module: auto_backup
+#: help:db.backup,sendmailsftpfail:0
+msgid "If you check this option you can choose to automaticly get e-mailed when the backup to the external server failed."
+msgstr "??????????????????????????????????????????????????????????????????????????????????????????????????????????????????"
+
+#. module: auto_backup
+#: help:db.backup,autoremove:0
+msgid "If you check this option you can choose to automaticly remove the backup after xx days"
+msgstr "?????????????????????????????????????????? xx ????????????????????????"
+
+#. module: auto_backup
+#: help:db.backup,sftpwrite:0
+msgid "If you check this option you can specify the details needed to write to a remote server with SFTP."
+msgstr "?????????????????????????????????????????????????????? sftp ????????????????????????????????????"
+
+#. module: auto_backup
+#: field:db.backup,write_uid:0
+msgid "Last Updated by"
+msgstr "???????????????"
+
+#. module: auto_backup
+#: field:db.backup,write_date:0
+msgid "Last Updated on"
+msgstr "??????????????????"
+
+#. module: auto_backup
+#: view:db.backup:auto_backup.view_backup_conf_form
+msgid "Local backup configuration"
+msgstr "??????????????????"
+
+#. module: auto_backup
+#: view:db.backup:auto_backup.view_backup_conf_form
+msgid "Need more help?"
+msgstr "????????????????????????"
+
+#. module: auto_backup
+#: field:db.backup,sftppassword:0
+msgid "Password User SFTP Server"
+msgstr " SFTP???????????????"
+
+#. module: auto_backup
+#: field:db.backup,sftppath:0
+msgid "Path external server"
+msgstr "???????????????"
+
+#. module: auto_backup
+#: field:db.backup,port:0
+msgid "Port"
+msgstr "??????"
+
+#. module: auto_backup
+#: field:db.backup,daystokeepsftp:0
+msgid "Remove SFTP after x days"
+msgstr "??????????????????????????????"
+
+#. module: auto_backup
+#: field:db.backup,daystokeep:0
+msgid "Remove after x days"
+msgstr "??????????????????"
+
+#. module: auto_backup
+#: view:db.backup:auto_backup.view_backup_conf_form
+msgid "SFTP"
+msgstr "SFTP"
+
+#. module: auto_backup
+#: field:db.backup,sftpport:0
+msgid "SFTP Port"
+msgstr "SFTP ??????"
+
+#. module: auto_backup
+#: view:db.backup:auto_backup.view_backup_conf_search
+msgid "Search options"
+msgstr "????????????"
+
+#. module: auto_backup
+#: view:db.backup:auto_backup.view_backup_conf_form
+msgid "Search the action named 'Backup scheduler'."
+msgstr "?????????????????????????????????Backup scheduler??????"
+
+#. module: auto_backup
+#: view:db.backup:auto_backup.view_backup_conf_form
+msgid "Set the scheduler to active and fill in how often you want backups generated."
+msgstr "?????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????"
+
+#. module: auto_backup
+#: view:db.backup:auto_backup.view_backup_conf_form
+msgid "Test"
+msgstr "??????"
+
+#. module: auto_backup
+#: view:db.backup:auto_backup.view_backup_conf_form
+msgid "Test SFTP Connection"
+msgstr "?????? SFTP ??????"
+
+#. module: auto_backup
+#: help:db.backup,sftpip:0
+msgid "The IP address from your remote server. For example 192.168.0.1"
+msgstr "SFTP???????????? IP ?????????????????? 192.168.0.1"
+
+#. module: auto_backup
+#: help:db.backup,sftppath:0
+msgid ""
+"The location to the folder where the dumps should be written to. For example /odoo/backups/.\n"
+"Files will then be written to /odoo/backups/ on your remote server."
+msgstr ""
+"????????????????????????????????????????????? /odoo/backups/???????????????????????????????????? /odoo/backups/.\n"
+"Files???"
+
+#. module: auto_backup
+#: help:db.backup,sftppassword:0
+msgid "The password from the user where the SFTP connection should be made with. This is the password from the user on the external server."
+msgstr "??? SFTP ??????????????????????????????????????????SFTP??????????????????????????????"
+
+#. module: auto_backup
+#: help:db.backup,sftpport:0
+msgid "The port on the FTP server that accepts SSH/SFTP calls."
+msgstr "?????? SSH/SFTP ?????????FTP ????????????????????????"
+
+#. module: auto_backup
+#: help:db.backup,sftpusername:0
+msgid "The username where the SFTP connection should be made with. This is the user on the external server."
+msgstr "SFTP ????????????????????????????????????SFTP????????????????????????"
+
+#. module: auto_backup
+#: view:db.backup:auto_backup.view_backup_conf_form
+msgid "This configures the scheduler for automatic backup of the given database running on given host at given port on regular intervals."
+msgstr "????????????????????????????????? ????????????????????????????????????"
+
+#. module: auto_backup
+#: view:db.backup:auto_backup.view_backup_conf_form
+msgid "Use SFTP with caution! This writes files to external servers under the path you specify."
+msgstr "??????????????? SFTP???????????????????????????????????????????????????????????????SFTP???????????????????????????????????????????????????"
+
+#. module: auto_backup
+#: field:db.backup,sftpusername:0
+msgid "Username SFTP Server"
+msgstr "SFTP??????????????????"
+
+#. module: auto_backup
+#: view:db.backup:auto_backup.view_backup_conf_form
+msgid "Warning:"
+msgstr "?????????"
+
+#. module: auto_backup
+#: field:db.backup,sftpwrite:0
+msgid "Write to external server with sftp"
+msgstr "??????????????? sftp ?????????"

From 8a528e5166609494dd61875a47908a296882d28a Mon Sep 17 00:00:00 2001
From: Alessio Gerace <alessio.gerace@gmail.com>
Date: Mon, 11 May 2015 14:50:32 +0200
Subject: [PATCH 02/52] Open FTP session on the last moment possible

Used to open  fp = open(file_path,'wb') a few lines before it was needed. This shouldn't be too much of a problem but opening and closing it right after eachother keeps the session open for less time and there are less chances on failure.
---
 auto_backup/README.rst                       | 100 +++++
 auto_backup/__init__.py                      |  24 ++
 auto_backup/__openerp__.py                   |  43 +++
 auto_backup/backup_scheduler.py              | 267 -------------
 auto_backup/data/backup_data.xml             |  18 +
 auto_backup/i18n/it.po                       | 335 +++++++++++++++++
 auto_backup/model/__init__.py                |  23 ++
 auto_backup/model/backup_scheduler.py        | 376 +++++++++++++++++++
 auto_backup/security/ir.model.access.csv     |   2 +
 auto_backup/static/description/no_index.html | 100 +++++
 auto_backup/tests/__init__.py                |  22 ++
 auto_backup/tests/test_auto_backup.py        |  56 +++
 auto_backup/view/bkp_conf_view.xml           | 100 +++++
 13 files changed, 1199 insertions(+), 267 deletions(-)
 create mode 100644 auto_backup/README.rst
 create mode 100644 auto_backup/__init__.py
 create mode 100644 auto_backup/__openerp__.py
 delete mode 100644 auto_backup/backup_scheduler.py
 create mode 100644 auto_backup/data/backup_data.xml
 create mode 100644 auto_backup/i18n/it.po
 create mode 100644 auto_backup/model/__init__.py
 create mode 100644 auto_backup/model/backup_scheduler.py
 create mode 100644 auto_backup/security/ir.model.access.csv
 create mode 100644 auto_backup/static/description/no_index.html
 create mode 100644 auto_backup/tests/__init__.py
 create mode 100644 auto_backup/tests/test_auto_backup.py
 create mode 100644 auto_backup/view/bkp_conf_view.xml

diff --git a/auto_backup/README.rst b/auto_backup/README.rst
new file mode 100644
index 00000000000..480943bd0bf
--- /dev/null
+++ b/auto_backup/README.rst
@@ -0,0 +1,100 @@
+.. image:: https://img.shields.io/badge/licence-AGPL--3-blue.svg
+    :alt: License: AGPL-3
+
+=================
+Automated backups
+=================
+
+A tool for all your back-ups, internal and external!
+
+Installation
+============
+
+Before to  install this module, you need to:
+
+instal pysftp via pip.
+
+Configuration
+=============
+
+Go to Settings -> Configuration -> Configure Backup
+create your configurations for each database that you needed
+to backups.
+
+Usage
+=====
+
+
+Keep your Odoo data safe with this module. Take automated back-ups,
+remove them automatically and even write them to an external server
+through an encrypted tunnel. You can even specify how long local backups
+and external backups should be kept, automatically!
+
+
+Connect with an FTP Server
+--------------------------
+
+#### Keep your data safe, through an SSH tunnel!
+
+Want to go even further and write your backups to an external server?
+You can with this module! Specify the credentials to the server, specify
+a path and everything will be backed up automatically. This is done
+through an SSH (encrypted) tunnel, thanks to pysftp, so your data is
+safe!
+
+Test connection
+---------------
+
+#### Checks your credentials in one click
+
+Want to make sure if the connection details are correct and if Odoo can
+automatically write them to the remote server? Simply click on the ???Test
+SFTP Connection??? button and you will get message telling you if
+everything is OK, or what is wrong!
+
+E-mail on backup failure
+------------------------
+
+#### Stay informed of problems, automatically!
+
+Do you want to know if the database backup failed? Check the checkbox 'Auto. E-mail on backup fail' and fill in your e-mail.
+Every time a backup fails you will get an e-mail in your mailbox with technical details.
+
+
+Known issues / Roadmap
+======================
+
+* ...
+
+Bug Tracker
+===========
+
+Bugs are tracked on `GitHub Issues <https://github.com/OCA/server-tools/issues>`_.
+In case of trouble, please check there if your issue has already been reported.
+If you spotted it first, help us smashing it by providing a detailed and welcomed feedback
+`here <https://github.com/OCA/server-tools/issues/new?body=module:%20auto_backup%0Aversion:%208.0%0A%0A**Steps%20to%20reproduce**%0A-%20...%0A%0A**Current%20behavior**%0A%0A**Expected%20behavior**>`_.
+
+
+Credits
+=======
+
+Contributors
+------------
+
+* Yenthe Van Ginneken <yenthe.vanginneken@vanroey.be>
+* Alessio Gerace <alessio.gerace@agilebg.com>
+
+Maintainer
+----------
+
+.. image:: https://odoo-community.org/logo.png
+   :alt: Odoo Community Association
+   :target: https://odoo-community.org
+
+This module is maintained by the OCA.
+
+OCA, or the Odoo Community Association, is a nonprofit organization whose
+mission is to support the collaborative development of Odoo features and
+promote its widespread use.
+
+To contribute to this module, please visit http://odoo-community.org.
\ No newline at end of file
diff --git a/auto_backup/__init__.py b/auto_backup/__init__.py
new file mode 100644
index 00000000000..a8f54341e59
--- /dev/null
+++ b/auto_backup/__init__.py
@@ -0,0 +1,24 @@
+# -*- encoding: utf-8 -*-
+##############################################################################
+#
+#    OpenERP, Open Source Management Solution
+#    Copyright (C) 2004-2009 Tiny SPRL (<http://tiny.be>). All Rights Reserved
+#    $Id$
+#    Copyright (C) 2015 Agile Business Group <http://www.agilebg.com>
+#    This program is free software: you can redistribute it and/or modify
+#    it under the terms of the GNU 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 General Public License for more details.
+#
+#    You should have received a copy of the GNU General Public License
+#    along with this program.  If not, see <http://www.gnu.org/licenses/>.
+#
+##############################################################################
+
+from . import model
+from . import tests
diff --git a/auto_backup/__openerp__.py b/auto_backup/__openerp__.py
new file mode 100644
index 00000000000..72f4389b701
--- /dev/null
+++ b/auto_backup/__openerp__.py
@@ -0,0 +1,43 @@
+# -*- coding: utf-8 -*-
+##############################################################################
+#
+#    OpenERP, Open Source Management Solution
+#    Copyright (C) 2004-2009 Tiny SPRL (<http://tiny.be>). All Rights Reserved
+#    $Id$
+#    Copyright (C) 2015 Agile Business Group <http://www.agilebg.com>
+#    This program is free software: you can redistribute it and/or modify
+#    it under the terms of the GNU 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 General Public License for more details.
+#
+#    You should have received a copy of the GNU General Public License
+#    along with this program.  If not, see <http://www.gnu.org/licenses/>.
+#
+##############################################################################
+
+{
+    "name": "Database Auto-Backup",
+    "version": "8.0.1.0.0",
+    "author": (
+        "VanRoey.be - Yenthe Van Ginneken, Agile Business Group,"
+        " Odoo Community Association (OCA)"
+    ),
+    'license': "AGPL-3",
+    "website": "http://www.vanroey.be/applications/bedrijfsbeheer/odoo",
+    "category": "Tools",
+    "summary": "Backups data base",
+    "depends": ['email_template'],
+    "demo": [],
+    "data": [
+        "view/bkp_conf_view.xml",
+        "data/backup_data.xml",
+        "security/ir.model.access.csv"
+    ],
+    "application": True,
+    "installable": True
+}
diff --git a/auto_backup/backup_scheduler.py b/auto_backup/backup_scheduler.py
deleted file mode 100644
index 6ec77a90318..00000000000
--- a/auto_backup/backup_scheduler.py
+++ /dev/null
@@ -1,267 +0,0 @@
-# -*- encoding: utf-8 -*-
-##############################################################################
-#
-#    OpenERP, Open Source Management Solution    
-#    Copyright (C) 2004-2009 Tiny SPRL (<http://tiny.be>). All Rights Reserved
-#    $Id$
-#
-#    This program is free software: you can redistribute it and/or modify
-#    it under the terms of the GNU 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 General Public License for more details.
-#
-#    You should have received a copy of the GNU General Public License
-#    along with this program.  If not, see <http://www.gnu.org/licenses/>.
-#
-##############################################################################
-
-import xmlrpclib
-import socket
-import os
-import time
-import datetime
-import base64
-import re
-try:
-    import pysftp
-except ImportError:
-    raise ImportError('This module needs pysftp to automaticly write backups to the FTP through SFTP.Please install pysftp on your system.(sudo pip install pysftp)')
-from openerp.osv import fields,osv,orm
-from openerp import tools
-from openerp import netsvc
-from openerp import tools, _
-import logging
-_logger = logging.getLogger(__name__)
-
-def execute(connector, method, *args):
-    res = False
-    try:        
-        res = getattr(connector,method)(*args)
-    except socket.error,e:        
-            raise e
-    return res
-
-addons_path = tools.config['addons_path'] + '/auto_backup/DBbackups'
-
-class db_backup(osv.Model):
-    _name = 'db.backup'
-    
-    def get_db_list(self, cr, user, ids, host, port, context={}):
-        print("Host: " + host)
-        print("Port: " + port)
-        uri = 'http://' + host + ':' + port
-        conn = xmlrpclib.ServerProxy(uri + '/xmlrpc/db')
-        db_list = execute(conn, 'list')
-        return db_list
-
-    def _get_db_name(self,cr,uid, vals,context=None):
-        attach_pool = self.pool.get("ir.logging")
-        dbName = cr.dbname
-        return dbName
-        
-    _columns = {
-                    #Columns local server
-                    'host' : fields.char('Host', size=100, required='True'),
-                    'port' : fields.char('Port', size=10, required='True'),
-                    'name' : fields.char('Database', size=100, required='True',help='Database you want to schedule backups for'),
-                    'bkp_dir' : fields.char('Backup Directory', size=100, help='Absolute path for storing the backups', required='True'),
-                    'autoremove': fields.boolean('Auto. Remove Backups', help="If you check this option you can choose to automaticly remove the backup after xx days"),
-                    'daystokeep': fields.integer('Remove after x days', 
-                     help="Choose after how many days the backup should be deleted. For example:\nIf you fill in 5 the backups will be removed after 5 days.",required=True),
-                    #Columns for external server (SFTP)
-                    'sftpwrite': fields.boolean('Write to external server with sftp', help="If you check this option you can specify the details needed to write to a remote server with SFTP."),
-                    'sftppath': fields.char('Path external server', help="The location to the folder where the dumps should be written to. For example /odoo/backups/.\nFiles will then be written to /odoo/backups/ on your remote server."),
-                    'sftpip': fields.char('IP Address SFTP Server', help="The IP address from your remote server. For example 192.168.0.1"),
-                    'sftpport': fields.integer("SFTP Port", help="The port on the FTP server that accepts SSH/SFTP calls."),
-                    'sftpusername': fields.char('Username SFTP Server', help="The username where the SFTP connection should be made with. This is the user on the external server."),
-                    'sftppassword': fields.char('Password User SFTP Server', help="The password from the user where the SFTP connection should be made with. This is the password from the user on the external server."),
-                    'daystokeepsftp': fields.integer('Remove SFTP after x days', help="Choose after how many days the backup should be deleted from the FTP server. For example:\nIf you fill in 5 the backups will be removed after 5 days from the FTP server."),
-                    'sendmailsftpfail': fields.boolean('Auto. E-mail on backup fail', help="If you check this option you can choose to automaticly get e-mailed when the backup to the external server failed."),
-                    'emailtonotify': fields.char('E-mail to notify', help="Fill in the e-mail where you want to be notified that the backup failed on the FTP."),
-                }
-
-    _defaults = {
-                    #'bkp_dir' : lambda *a : addons_path,
-                    'bkp_dir' : '/odoo/backups',
-                    'host' : lambda *a : 'localhost',
-                    'port' : lambda *a : '8069',
-                    'name': _get_db_name,
-                    'daystokeepsftp': 30,
-                    'sftpport': 22,
-                 }
-    
-    def _check_db_exist(self, cr, user, ids):
-        for rec in self.browse(cr,user,ids):
-            db_list = self.get_db_list(cr, user, ids, rec.host, rec.port)
-            if rec.name in db_list:
-                return True
-        return False
-    
-    _constraints = [
-                    (_check_db_exist, _('Error ! No such database exists!'), [])
-                    ]
-
-
-    def test_sftp_connection(self, cr, uid, ids, context=None):
-        conf_ids= self.search(cr, uid, [])
-        confs = self.browse(cr,uid,conf_ids)
-        #Check if there is a success or fail and write messages 
-        messageTitle = ""
-        messageContent = ""
-        for rec in confs:
-            db_list = self.get_db_list(cr, uid, [], rec.host, rec.port)
-            try:
-                pathToWriteTo = rec.sftppath
-                ipHost = rec.sftpip
-                portHost = rec.sftpport
-                usernameLogin = rec.sftpusername
-                passwordLogin = rec.sftppassword
-                #Connect with external server over SFTP, so we know sure that everything works.
-                srv = pysftp.Connection(host=ipHost, username=usernameLogin,
-password=passwordLogin,port=portHost)
-                srv.close()
-                #We have a success.
-                messageTitle = "Connection Test Succeeded!"
-                messageContent = "Everything seems properly set up for FTP back-ups!"
-            except Exception, e:
-                messageTitle = "Connection Test Failed!"
-                if len(rec.sftpip) < 8:
-                    messageContent += "\nYour IP address seems to be too short.\n"
-                messageContent += "Here is what we got instead:\n"
-        if "Failed" in messageTitle:
-            raise osv.except_osv(_(messageTitle), _(messageContent + "%s") % tools.ustr(e))
-        else:
-            raise osv.except_osv(_(messageTitle), _(messageContent))
-
-    def schedule_backup(self, cr, user, context={}):
-        conf_ids= self.search(cr, user, [])
-        confs = self.browse(cr,user,conf_ids)
-        for rec in confs:
-            db_list = self.get_db_list(cr, user, [], rec.host, rec.port)
-            if rec.name in db_list:
-                try:
-                    if not os.path.isdir(rec.bkp_dir):
-                        os.makedirs(rec.bkp_dir)
-                except:
-                    raise
-                #Create name for dumpfile.
-                bkp_file='%s_%s.dump' % (time.strftime('%d_%m_%Y_%H_%M_%S'),rec.name)
-                file_path = os.path.join(rec.bkp_dir,bkp_file)
-                fp = open(file_path,'wb')
-                uri = 'http://' + rec.host + ':' + rec.port
-                conn = xmlrpclib.ServerProxy(uri + '/xmlrpc/db')
-                bkp=''
-                try:
-                    bkp = execute(conn, 'dump', tools.config['admin_passwd'], rec.name)
-                except:
-                    logger.notifyChannel('backup', netsvc.LOG_INFO, "Could'nt backup database %s. Bad database administrator password for server running at http://%s:%s" %(rec.name, rec.host, rec.port))
-                    continue
-                bkp = base64.decodestring(bkp)
-                fp.write(bkp)
-                fp.close()
-            else:
-                logger.notifyChannel('backup', netsvc.LOG_INFO, "database %s doesn't exist on http://%s:%s" %(rec.name, rec.host, rec.port))
-
-            #Check if user wants to write to SFTP or not.
-            if rec.sftpwrite is True:
-                try:
-                    #Store all values in variables
-                    dir = rec.bkp_dir
-                    pathToWriteTo = rec.sftppath
-                    ipHost = rec.sftpip
-                    portHost = rec.sftpport
-                    usernameLogin = rec.sftpusername
-                    passwordLogin = rec.sftppassword
-                    #Connect with external server over SFTP
-                    srv = pysftp.Connection(host=ipHost, username=usernameLogin,
-password=passwordLogin, port=portHost)
-                    #Move to the correct directory on external server. If the user made a typo in his path with multiple slashes (/odoo//backups/) it will be fixed by this regex.
-                    pathToWriteTo = re.sub('([/]{2,5})+','/',pathToWriteTo)
-                    print(pathToWriteTo)
-                    try:
-                        srv.chdir(pathToWriteTo)
-                    except IOError:
-                        #Create directory and subdirs if they do not exist.
-                        currentDir = ''
-                        for dirElement in pathToWriteTo.split('/'):
-                            currentDir += dirElement + '/'
-                            try:
-                                srv.chdir(currentDir)
-                            except:
-                                print('(Part of the) path didn\'t exist. Creating it now at ' + currentDir)
-                                #Make directory and then navigate into it
-                                srv.mkdir(currentDir, mode=777)
-                                srv.chdir(currentDir)
-                                pass
-                    srv.chdir(pathToWriteTo)
-                    #Loop over all files in the directory.
-                    for f in os.listdir(dir):
-                        fullpath = os.path.join(dir, f)
-                        if os.path.isfile(fullpath):
-                            print(fullpath)
-                            srv.put(fullpath)
-
-                    #Navigate in to the correct folder.
-                    srv.chdir(pathToWriteTo)
-
-                    #Loop over all files in the directory from the back-ups.
-                    #We will check the creation date of every back-up.
-                    for file in srv.listdir(pathToWriteTo):
-                        #Get the full path
-                        fullpath = os.path.join(pathToWriteTo,file) 
-                        #Get the timestamp from the file on the external server
-                        timestamp = srv.stat(fullpath).st_atime
-                        createtime = datetime.datetime.fromtimestamp(timestamp)
-                        now = datetime.datetime.now()
-                        delta = now - createtime
-                        #If the file is older than the daystokeepsftp (the days to keep that the user filled in on the Odoo form it will be removed.
-                        if delta.days >= rec.daystokeepsftp:
-                            #Only delete files, no directories!
-                            if srv.isfile(fullpath) and ".dump" in file:
-                                print("Delete: " + file)
-                                srv.unlink(file)
-                    #Close the SFTP session.
-                    srv.close()
-                except Exception, e:
-                    _logger.debug('Exception! We couldn\'t back up to the FTP server..')
-                    #At this point the SFTP backup failed. We will now check if the user wants
-                    #an e-mail notification about this.
-                    if rec.sendmailsftpfail:
-                        try:
-                            ir_mail_server = self.pool.get('ir.mail_server') 
-                            message = "Dear,\n\nThe backup for the server " + rec.host + " (IP: " + rec.sftpip + ") failed.Please check the following details:\n\nIP address SFTP server: " + rec.sftpip + "\nUsername: " + rec.sftpusername + "\nPassword: " + rec.sftppassword + "\n\nError details: " + tools.ustr(e) + "\n\nWith kind regards"
-                            msg = ir_mail_server.build_email("auto_backup@" + rec.name + ".com", [rec.emailtonotify], "Backup from " + rec.host + "(" + rec.sftpip + ") failed", message) 
-                            ir_mail_server.send_email(cr, user, msg)
-                        except Exception:
-                            pass
-
-            """Remove all old files (on local server) in case this is configured..
-            This is done after the SFTP writing to prevent unusual behaviour:
-            If the user would set local back-ups to be kept 0 days and the SFTP
-            to keep backups xx days there wouldn't be any new back-ups added to the
-            SFTP.
-            If we'd remove the dump files before they're writen to the SFTP there willbe nothing to write. Meaning that if an user doesn't want to keep back-ups locally and only wants them on the SFTP (NAS for example) there wouldn't be any writing to the remote server if this if statement was before the SFTP write method right above this comment.
-            """
-            if rec.autoremove is True:
-                dir = rec.bkp_dir
-                #Loop over all files in the directory.
-                for f in os.listdir(dir):
-                    fullpath = os.path.join(dir, f)
-                    timestamp = os.stat(fullpath).st_ctime
-                    createtime = datetime.datetime.fromtimestamp(timestamp)
-                    now = datetime.datetime.now()
-                    delta  = now - createtime
-                    if delta.days >= rec.daystokeep:
-                        #Only delete files (which are .dump), no directories.
-                        if os.path.isfile(fullpath) and ".dump" in f:
-                            print("Delete: " + fullpath)
-                            os.remove(fullpath)
-
-db_backup()
-
-# vim:expandtab:smartindent:tabstop=4:softtabstop=4:shiftwidth=4:
\ No newline at end of file
diff --git a/auto_backup/data/backup_data.xml b/auto_backup/data/backup_data.xml
new file mode 100644
index 00000000000..8911a3bd6fa
--- /dev/null
+++ b/auto_backup/data/backup_data.xml
@@ -0,0 +1,18 @@
+<?xml version="1.0"?>
+<openerp>
+    <data noupdate="1">
+        <record id="ir_cron_backupscheduler0" model="ir.cron">
+            <field eval="&quot;&quot;&quot;schedule_backup&quot;&quot;&quot;" name="function"/>
+            <field eval="&quot;&quot;&quot;work_days&quot;&quot;&quot;" name="interval_type"/>
+            <field name="user_id" ref="base.user_root"/>
+            <field eval="&quot;&quot;&quot;Backup scheduler&quot;&quot;&quot;" name="name"/>
+            <field eval="-1" name="numbercall"/>
+            <field eval="&quot;&quot;&quot;2015-07-07 11:35:28&quot;&quot;&quot;" name="nextcall"/>
+            <field eval="5" name="priority"/>
+            <field eval="0" name="doall"/>
+            <field eval="False" name="active"/>
+            <field eval="1" name="interval_number"/>
+            <field eval="&quot;&quot;&quot;db.backup&quot;&quot;&quot;" name="model"/>
+        </record>
+    </data>
+</openerp>
diff --git a/auto_backup/i18n/it.po b/auto_backup/i18n/it.po
new file mode 100644
index 00000000000..b79229e857e
--- /dev/null
+++ b/auto_backup/i18n/it.po
@@ -0,0 +1,335 @@
+# Translation of Odoo Server.
+# This file contains the translation of the following modules:
+#   * auto_backup
+#
+msgid ""
+msgstr ""
+"Project-Id-Version: Odoo Server 8.0\n"
+"Report-Msgid-Bugs-To: \n"
+"POT-Creation-Date: 2015-07-21 13:00+0000\n"
+"PO-Revision-Date: 2015-07-21 13:00+0000\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: auto_backup
+#: code:addons/auto_backup/model/backup_scheduler.py:204
+#, python-format
+msgid "\n"
+"Your IP address seems to be too short.\n"
+""
+msgstr "\n"
+"L' indirizzo IP sembra essere troppo corto.\n"
+""
+
+#. module: auto_backup
+#: code:addons/auto_backup/model/backup_scheduler.py:209
+#, python-format
+msgid "%s"
+msgstr "%s"
+
+#. module: auto_backup
+#: code:addons/auto_backup/model/backup_scheduler.py:288
+#, python-format
+msgid "(Part of the) path didn't exist. Creating it now at %s"
+msgstr "(Una parte del) path non esiste. Verra' creato in %s"
+
+#. module: auto_backup
+#: help:db.backup,bkp_dir:0
+msgid "Absolute path for storing the backups"
+msgstr "Percorso assoluto per il salvataggio del DB"
+
+#. module: auto_backup
+#: field:db.backup,sendmailsftpfail:0
+msgid "Auto. E-mail on backup fail"
+msgstr "Auto. E-mail nel caso di errori durante il backup "
+
+#. module: auto_backup
+#: field:db.backup,autoremove:0
+msgid "Auto. Remove Backups"
+msgstr "Rimuovi Backups"
+
+#. module: auto_backup
+#: view:db.backup:auto_backup.view_backup_conf_form
+msgid "Automatic backups of the database can be scheduled as follows:"
+msgstr "Il backup automatico del DB e' pianificato come segue:"
+
+#. module: auto_backup
+#: field:db.backup,bkp_dir:0
+msgid "Backup Directory"
+msgstr "Backup Directory"
+
+#. module: auto_backup
+#: model:email.template,subject:auto_backup.email_template_autobackup_error_noificaiton
+msgid "Backup from ${object.host} - (${object.sftpip}) failed"
+msgstr "Backup da ${object.host} - (${object.sftpip}) fallito"
+
+#. module: auto_backup
+#: view:db.backup:auto_backup.view_backup_conf_tree
+msgid "Backups"
+msgstr "Backups"
+
+#. module: auto_backup
+#: help:db.backup,daystokeepsftp:0
+msgid "Choose after how many days the backup should be deleted from the FTP server. For example:\n"
+"If you fill in 5 the backups will be removed after 5 days from the FTP server."
+msgstr "Scegliere dopo quanti giorni si possa condsiderare da eliminare, un Backup nel server FTP. Per esempio:\n"
+"se si imposta 5 i files di backups  piu' vecchi di  5 giorni saranno eliminati dal server FTP"
+
+#. module: auto_backup
+#: help:db.backup,daystokeep:0
+msgid "Scegliere dopo quanti giorni si possa condsiderare da eliminare un Backup. For example:\n"
+"If you fill in 5 the backups will be removed after 5 days."
+msgstr "Choose after how many days the backup should be deleted. For example:\n"
+"se si imposta 5 i files di backups  piu' vecchi di  5 giorni saranno eliminati."
+
+#. module: auto_backup
+#: model:ir.actions.act_window,name:auto_backup.action_backup_conf_form
+#: model:ir.ui.menu,name:auto_backup.backup_conf_menu
+msgid "Configure Backup"
+msgstr "Configura Backup"
+
+#. module: auto_backup
+#: code:addons/auto_backup/model/backup_scheduler.py:202
+#, python-format
+msgid "Connection Test Failed!"
+msgstr "Test connessione Fallito!"
+
+#. module: auto_backup
+#: code:addons/auto_backup/model/backup_scheduler.py:198
+#, python-format
+msgid "Connection Test Succeeded!"
+msgstr "Test connessione avvenuto con successo!"
+
+#. module: auto_backup
+#: code:addons/auto_backup/model/backup_scheduler.py:241
+#, python-format
+msgid "Couldn't backup database %s. Bad database administratorpassword for server running at http://%s:%s"
+msgstr "Impossibile eseguire il backup di %s. DB password erraata per il server http://%s:%s"
+
+#. module: auto_backup
+#: field:db.backup,create_uid:0
+msgid "Created by"
+msgstr "Created by"
+
+#. module: auto_backup
+#: field:db.backup,create_date:0
+msgid "Created on"
+msgstr "Created on"
+
+#. module: auto_backup
+#: field:db.backup,name:0
+msgid "Database"
+msgstr "Database"
+
+#. module: auto_backup
+#: help:db.backup,name:0
+msgid "Database you want to schedule backups for"
+msgstr "Database you want to schedule backups for"
+
+#. module: auto_backup
+#: field:db.backup,emailtonotify:0
+#: field:db.backup,lasterrorlog:0
+msgid "E-mail to notify"
+msgstr "E-mail di notifica"
+
+#. module: auto_backup
+#: code:addons/auto_backup/model/backup_scheduler.py:176
+#, python-format
+msgid "Error"
+msgstr "Errore"
+
+#. module: auto_backup
+#: code:addons/auto_backup/model/backup_scheduler.py:176
+#, python-format
+msgid "Error ! No such database exists!"
+msgstr "Errore ! Il DB non esiste!"
+
+#. module: auto_backup
+#: code:addons/auto_backup/model/backup_scheduler.py:199
+#, python-format
+msgid "Everything seems properly set up for FTP back-ups!"
+msgstr "Tutto sembra impostato correttamente per il back-up FTP!"
+
+#. module: auto_backup
+#: help:db.backup,emailtonotify:0
+#: help:db.backup,lasterrorlog:0
+msgid "Fill in the e-mail where you want to be notified that the backup failed on the FTP."
+msgstr "Compilare l'e -mail in cui si desidera essere avvisati,se il backup FTP fallisce."
+
+#. module: auto_backup
+#: view:db.backup:auto_backup.view_backup_conf_form
+msgid "For example: /odoo/backups/"
+msgstr "Es.: /odoo/backups/"
+
+#. module: auto_backup
+#: view:db.backup:auto_backup.view_backup_conf_form
+msgid "Go to Settings / Technical / Automation / Scheduled Actions."
+msgstr "Anadare in  Settings / Technical / Automation / Scheduled Actions."
+
+#. module: auto_backup
+#: view:db.backup:auto_backup.view_backup_conf_form
+msgid "Help"
+msgstr "Aiuto"
+
+#. module: auto_backup
+#: field:db.backup,host:0
+msgid "Host"
+msgstr "Host"
+
+#. module: auto_backup
+#: field:db.backup,id:0
+msgid "ID"
+msgstr "ID"
+
+#. module: auto_backup
+#: field:db.backup,sftpip:0
+msgid "IP Address SFTP Server"
+msgstr "IP Address SFTP Server"
+
+#. module: auto_backup
+#: help:db.backup,sendmailsftpfail:0
+msgid "If you check this option you can choose to automaticly get e-mailed when the backup to the external server failed."
+msgstr "Se si seleziona questa opzione ?? possibile scegliere di essere notificati automaticamente via e-mail quando il backup al server esterno fallisce ."
+
+#. module: auto_backup
+#: help:db.backup,autoremove:0
+msgid "If you check this option you can choose to automaticly remove the backup after xx days"
+msgstr "Se si seleziona questa opzione ?? possibile scegliere di rimuovere automaticamente il backup dopo xx giorni"
+
+#. module: auto_backup
+#: help:db.backup,sftpwrite:0
+msgid "If you check this option you can specify the details needed to write to a remote server with SFTP."
+msgstr "Se si seleziona questa opzione ?? possibile specificare i dettagli necessari per scrivere a un server remoto con SFTP ."
+
+#. module: auto_backup
+#: field:db.backup,write_uid:0
+msgid "Last Updated by"
+msgstr "Last Updated by"
+
+#. module: auto_backup
+#: field:db.backup,write_date:0
+msgid "Last Updated on"
+msgstr "Last Updated on"
+
+#. module: auto_backup
+#: view:db.backup:auto_backup.view_backup_conf_form
+msgid "Local backup configuration"
+msgstr "Configurazione backup locale"
+
+#. module: auto_backup
+#: field:db.backup,sftppassword:0
+msgid "Password User SFTP Server"
+msgstr "Password utene SFTP Server"
+
+#. module: auto_backup
+#: field:db.backup,sftppath:0
+msgid "Path external server"
+msgstr "Path server esterno"
+
+#. module: auto_backup
+#: field:db.backup,port:0
+msgid "Port"
+msgstr "Porta"
+
+#. module: auto_backup
+#: field:db.backup,daystokeepsftp:0
+msgid "Remove SFTP after x days"
+msgstr "Rimuovi backup da SFTP dopo x giorni"
+
+#. module: auto_backup
+#: field:db.backup,daystokeep:0
+msgid "Remove after x days"
+msgstr "Rimuovi dopo x giorni"
+
+#. module: auto_backup
+#: view:db.backup:auto_backup.view_backup_conf_form
+msgid "SFTP"
+msgstr "SFTP"
+
+#. module: auto_backup
+#: field:db.backup,sftpport:0
+msgid "SFTP Port"
+msgstr "Porta SFTP"
+
+#. module: auto_backup
+#: view:db.backup:auto_backup.view_backup_conf_search
+msgid "Search options"
+msgstr "Search options"
+
+#. module: auto_backup
+#: view:db.backup:auto_backup.view_backup_conf_form
+msgid "Search the action named 'Backup scheduler'."
+msgstr "Cerca l'azione denominata ' di pianificazione del backup ' ."
+
+#. module: auto_backup
+#: view:db.backup:auto_backup.view_backup_conf_form
+msgid "Set the scheduler to active and fill in how often you want backups generated."
+msgstr "Impostare lo scheduler per attivare e compilare la frequenza con cui si desidera generare il backup."
+
+#. module: auto_backup
+#: view:db.backup:auto_backup.view_backup_conf_form
+msgid "Test"
+msgstr "Test"
+
+#. module: auto_backup
+#: view:db.backup:auto_backup.view_backup_conf_form
+msgid "Test SFTP Connection"
+msgstr "Test SFTP Connection"
+
+#. module: auto_backup
+#: help:db.backup,sftpip:0
+msgid "The IP address from your remote server. For example 192.168.0.1"
+msgstr "Indirizzo IP server remoto. Es. 192.168.0.1"
+
+#. module: auto_backup
+#: help:db.backup,sftppath:0
+msgid "The location to the folder where the dumps should be written to. For example /odoo/backups/.\n"
+"Files will then be written to /odoo/backups/ on your remote server."
+msgstr "La posizione della cartella in cui i dumps devono essere scritti. Es. /odoo/backups/.\n"
+"i files verranno scritti su /odoo/backups/ nel server remoto."
+
+#. module: auto_backup
+#: help:db.backup,sftppassword:0
+msgid "The password from the user where the SFTP connection should be made with. This is the password from the user on the external server."
+msgstr "La password dell'utente con cui la connessione SFTP deve essere fatta. Questa ?? la password dall'utente sul server esterno ."
+
+#. module: auto_backup
+#: help:db.backup,sftpport:0
+msgid "The port on the FTP server that accepts SSH/SFTP calls."
+msgstr "La porta sul server FTP che accetta chiamate SSH / SFTP."
+
+#. module: auto_backup
+#: help:db.backup,sftpusername:0
+msgid "The username where the SFTP connection should be made with. This is the user on the external server."
+msgstr "Il nome utente in cui la connessione SFTP dovrebbe essere fatto con . Questo ?? l'utente sul server esterno."
+
+#. module: auto_backup
+#: view:db.backup:auto_backup.view_backup_conf_form
+msgid "This configures the scheduler for automatic backup of the given database running on given host at given port on regular intervals."
+msgstr "pianificazione per il backup automatico del database in esecuzione su dato host /porta ad intervalli regolari."
+
+#. module: auto_backup
+#: view:db.backup:auto_backup.view_backup_conf_form
+msgid "Use SFTP with caution! This writes files to external servers under the path you specify."
+msgstr "Usare SFTP con cautela ! Questo scrive file su server esterni nel percorso specificato "
+
+#. module: auto_backup
+#: field:db.backup,sftpusername:0
+msgid "Username SFTP Server"
+msgstr "Username SFTP Server"
+
+#. module: auto_backup
+#: view:db.backup:auto_backup.view_backup_conf_form
+msgid "Warning:"
+msgstr "Warning:"
+
+#. module: auto_backup
+#: field:db.backup,sftpwrite:0
+msgid "Write to external server with sftp"
+msgstr "Salva il backup anche su server FTP esterno"
+
diff --git a/auto_backup/model/__init__.py b/auto_backup/model/__init__.py
new file mode 100644
index 00000000000..995d7f02b27
--- /dev/null
+++ b/auto_backup/model/__init__.py
@@ -0,0 +1,23 @@
+# -*- coding: utf-8 -*-
+##############################################################################
+#
+#    OpenERP, Open Source Management Solution
+#    Copyright (C) 2004-2009 Tiny SPRL (<http://tiny.be>). All Rights Reserved
+#    $Id$
+#
+#    This program is free software: you can redistribute it and/or modify
+#    it under the terms of the GNU 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 General Public License for more details.
+#
+#    You should have received a copy of the GNU General Public License
+#    along with this program.  If not, see <http://www.gnu.org/licenses/>.
+#
+##############################################################################
+
+from . import backup_scheduler
diff --git a/auto_backup/model/backup_scheduler.py b/auto_backup/model/backup_scheduler.py
new file mode 100644
index 00000000000..479023ff54b
--- /dev/null
+++ b/auto_backup/model/backup_scheduler.py
@@ -0,0 +1,376 @@
+# -*- coding: utf-8 -*-
+##############################################################################
+#     OpenERP, Open Source Management Solution
+#     Copyright (C) 2004-2009 Tiny SPRL (<http://tiny.be>). All Rights Reserved
+#     Copyright 2015 Agile Business Group <http://www.agilebg.com>
+#
+#     This program is free software: you can redistribute it and/or modify
+#     it under the terms of the GNU 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 General Public License for more details.
+#
+#     You should have received a copy of the GNU General Public License
+#     along with this program.  If not, see <http://www.gnu.org/licenses/>.
+#
+##############################################################################
+import socket
+import os
+import time
+import datetime
+import re
+from openerp import models, fields, api, _
+from openerp.exceptions import except_orm, Warning as UserError
+from openerp import tools
+from openerp.service import db
+import logging
+_logger = logging.getLogger(__name__)
+try:
+    import pysftp
+except ImportError:
+    _logger.debug('Can not import pysftp')
+
+
+def execute(connector, method, *args):
+    res = False
+    try:
+        res = getattr(connector, method)(*args)
+    except socket.error as e:
+        raise e
+    return res
+
+
+class DbBackup(models.Model):
+    _name = 'db.backup'
+
+    @api.model
+    def _get_db_name(self):
+        return self.env.cr.dbname
+
+    name = fields.Char(
+        string='Database', size=100, required=True,
+        default=_get_db_name,
+        help='Database you want to schedule backups for'
+    )
+
+    bkp_dir = fields.Char(
+        string='Backup Directory', size=100,
+        default='/odoo/backups',
+        help='Absolute path for storing the backups',
+        required=True
+    )
+    autoremove = fields.Boolean(
+        string='Auto. Remove Backups',
+        help=(
+            "If you check this option you can choose to "
+            "automaticly remove the backup after xx days"
+        )
+    )
+    daystokeep = fields.Integer(
+        string='Remove after x days',
+        default=30,
+        help=(
+            "Choose after how many days the backup should be "
+            "deleted. For example:\nIf you fill in 5 the backups "
+            "will be removed after 5 days."
+        ), required=True
+    )
+    sftpwrite = fields.Boolean(
+        string='Write to external server with sftp',
+        help=(
+            "If you check this option you can specify the details "
+            "needed to write to a remote server with SFTP."
+        )
+    )
+    sftppath = fields.Char(
+        string='Path external server',
+        help=(
+            "The location to the folder where the dumps should be "
+            "written to. For example /odoo/backups/.\nFiles will then"
+            " be written to /odoo/backups/ on your remote server."
+        )
+    )
+    sftpip = fields.Char(
+        string='IP Address SFTP Server',
+        help=(
+            "The IP address from your remote"
+            " server. For example 192.168.0.1"
+        )
+    )
+    sftpport = fields.Integer(
+        string="SFTP Port",
+        default=22,
+        help="The port on the FTP server that accepts SSH/SFTP calls."
+    )
+    sftpusername = fields.Char(
+        string='Username SFTP Server',
+        help=(
+            "The username where the SFTP connection "
+            "should be made with. This is the user on the external server."
+        )
+    )
+    sftppassword = fields.Char(
+        string='Password User SFTP Server',
+        help=(
+            "The password from the user where the SFTP connection "
+            "should be made with. This is the password from the user"
+            " on the external server."
+        )
+    )
+    daystokeepsftp = fields.Integer(
+        string='Remove SFTP after x days',
+        default=30,
+        help=(
+            "Choose after how many days the backup should be deleted "
+            "from the FTP server. For example:\nIf you fill in 5 the "
+            "backups will be removed after 5 days from the FTP server."
+        )
+    )
+    sendmailsftpfail = fields.Boolean(
+        string='Auto. E-mail on backup fail',
+        help=(
+            "If you check this option you can choose to automaticly"
+            " get e-mailed when the backup to the external server failed."
+        )
+    )
+    emailtonotify = fields.Char(
+        string='E-mail to notify',
+        help=(
+            "Fill in the e-mail where you want to be"
+            " notified that the backup failed on the FTP."
+        )
+    )
+    lasterrorlog = fields.Text(
+        string='E-mail to notify',
+        help=(
+            "Fill in the e-mail where you want to be"
+            " notified that the backup failed on the FTP."
+        )
+    )
+
+    @api.multi
+    def _check_db_exist(self):
+        for rec in self:
+            db_list = db.exp_list(True)
+            if rec.name in db_list:
+                return True
+            return False
+
+    _constraints = [
+        (
+            _check_db_exist,
+            _('Error ,No such database exists'), ['name']
+        )
+    ]
+
+    @api.multi
+    def test_sftp_connection(self):
+        confs = self.search([])
+        # Check if there is a success or fail and write messages
+        messageTitle = ""
+        messageContent = ""
+        conn_success = False
+        for rec in confs:
+            try:
+                conn_success = True
+                ipHost = rec.sftpip
+                portHost = rec.sftpport
+                usernameLogin = rec.sftpusername
+                passwordLogin = rec.sftppassword
+                # Connect with external server over SFTP, so we know sure that
+                # everything works.
+                srv = pysftp.Connection(host=ipHost, username=usernameLogin,
+                                        password=passwordLogin, port=portHost)
+                srv.close()
+                # We have a success.
+                messageTitle = _("Connection Test Succeeded!")
+                messageContent = _(
+                    "Everything seems properly set up for FTP back-ups!")
+            except Exception as e:
+                conn_success = False
+                messageTitle = _("Connection Test Failed!")
+                if len(rec.sftpip) < 8:
+                    messageContent += _(
+                        "\nYour IP address seems to be too short.\n")
+                messageContent += _("Here is what we got instead:\n")
+        if not conn_success:
+            raise except_orm(
+                _(messageTitle), _(
+                    messageContent + "%s") %
+                tools.ustr(e))
+        else:
+            raise UserError(_(messageTitle), _(messageContent))
+
+    @api.model
+    def schedule_backup(self):
+
+        for rec in self.search([]):
+            if not os.path.isdir(rec.bkp_dir):
+                os.makedirs(rec.bkp_dir)
+            # Create name for dumpfile.
+            bkp_file = '%s_%s.dump.zip' % (
+                time.strftime('%d_%m_%Y_%H_%M_%S'),
+                rec.name)
+            file_path = os.path.join(rec.bkp_dir, bkp_file)
+            fbk = open(file_path, 'wb')
+            db.dump_db(rec.name, fbk)
+            fbk.close()
+            # Check if user wants to write to SFTP or not.
+            if rec.sftpwrite is True:
+                try:
+                    # Store all values in variables
+                    dir = rec.bkp_dir
+                    pathToWriteTo = rec.sftppath
+                    ipHost = rec.sftpip
+                    portHost = rec.sftpport
+                    usernameLogin = rec.sftpusername
+                    passwordLogin = rec.sftppassword
+                    # Connect with external server over SFTP
+                    srv = pysftp.Connection(
+                        host=ipHost,
+                        username=usernameLogin,
+                        password=passwordLogin,
+                        port=portHost)
+                    # Move to the correct directory on external server. If the
+                    # user made a typo in his path with multiple slashes
+                    # (/odoo//backups/) it will be fixed by this regex.
+                    pathToWriteTo = re.sub('/+', '/', pathToWriteTo)
+                    _logger.debug(
+                        'Start to copy files..'
+                    )
+                    try:
+                        srv.chdir(pathToWriteTo)
+                    except IOError:
+                        # Create directory and subdirs if they do not exist.
+                        currentDir = ''
+                        for dirElement in pathToWriteTo.split('/'):
+                            currentDir += dirElement + '/'
+                            try:
+                                srv.chdir(currentDir)
+                            except:
+                                _logger.info(
+                                    _(
+                                        '(Part of the) path didn\'t exist. '
+                                        'Creating it now at %s'
+                                    ) % currentDir
+                                )
+                                # Make directory and then navigate into it
+                                srv.mkdir(currentDir, mode=777)
+                                srv.chdir(currentDir)
+                                pass
+                    srv.chdir(pathToWriteTo)
+                    # Loop over all files in the directory.
+                    for f in os.listdir(dir):
+                        fullpath = os.path.join(dir, f)
+                        if os.path.isfile(fullpath):
+                            srv.put(fullpath)
+
+                    # Navigate in to the correct folder.
+                    srv.chdir(pathToWriteTo)
+                    # Loop over all files in the directory from the back-ups.
+                    # We will check the creation date of every back-up.
+                    for file in srv.listdir(pathToWriteTo):
+                        # Get the full path
+                        fullpath = os.path.join(pathToWriteTo, file)
+                        if srv.isfile(fullpath) and ".dump.zip" in file:
+                            # Get the timestamp from the file on the external
+                            # server
+                            timestamp = srv.stat(fullpath).st_atime
+                            createtime = (
+                                datetime.datetime.fromtimestamp(timestamp)
+                            )
+                            now = datetime.datetime.now()
+                            delta = now - createtime
+                            # If the file is older than the daystokeepsftp (the
+                            # days to keep that the user filled in on the Odoo
+                            # form it will be removed.
+                            if (
+                                rec.daystokeepsftp > 0 and
+                                delta.days >= rec.daystokeepsftp
+                            ):
+                                # Only delete files, no directories!
+                                srv.unlink(file)
+                    # Close the SFTP session.
+                    srv.close()
+                except Exception as e:
+                    _logger.debug(
+                        'Exception We couldn\'t back '
+                        'up to the FTP server..'
+                    )
+                    # At this point the SFTP backup failed.
+                    # We will now check if the user wants
+                    # an e-mail notification about this.
+                    if rec.sendmailsftpfail:
+                        self.send_notification(rec, e)
+
+            # Remove all old files (on local server)
+            # in case this is configured..
+            if rec.autoremove is True:
+                try:
+                    self.remove_folder(rec)
+                except Exception as e:
+                    _logger.debug(
+                        'Exception when try to remove file'
+                    )
+
+        return True
+
+    def send_notification(self, rec, e):
+        try:
+            ir_mail_server = self.env['ir.mail_server']
+            message = (
+                "Dear,\n\nThe backup for the server %s"
+                " (IP: %s) failed.Please check"
+                " the following details:\n\n"
+                "IP address SFTP server: %s \nUsername: %s"
+                "\nPassword: %s"
+                "\n\nError details: %s \n\nWith kind regards"
+            ) % (
+                rec.host, rec.sftpip, rec.sftpip,
+                rec.sftpusername, rec.sftppassword,
+                tools.ustr(e)
+            )
+            msg = ir_mail_server.build_email(
+                "auto_backup@%s.com" % rec.name,
+                [rec.emailtonotify],
+                "Backup from %s ( %s ) failed" % (
+                    rec.host, rec.sftpip),
+                message)
+            ir_mail_server.send_email(msg)
+
+        except Exception as e:
+            _logger.debug(
+                'Exception %s' % tools.ustr(e)
+            )
+
+    # This is done after the SFTP writing to prevent unusual behaviour:
+    # If the user would set local back-ups to be kept 0 days and the SFTP
+    # to keep backups xx days there wouldn't be any new back-ups added
+    # to the SFTP.
+    # If we'd remove the dump files before they're writen to the SFTP
+    # there willbe nothing to write. Meaning that if an user doesn't want
+    # to keep back-ups locally and only wants them on the SFTP
+    # (NAS for example) there wouldn't be any writing to the
+    # remote server if this if statement was before the SFTP write method
+    # right above this comment.
+    def remove_folder(self, rec):
+        dir = rec.bkp_dir
+        # Loop over all files in the directory.
+        for f in os.listdir(dir):
+            fullpath = os.path.join(dir, f)
+            if os.path.isfile(fullpath) and ".dump.zip" in f:
+                timestamp = os.stat(fullpath).st_ctime
+                createtime = (
+                    datetime.datetime.fromtimestamp(timestamp)
+                )
+                now = datetime.datetime.now()
+                delta = now - createtime
+                if delta.days >= rec.daystokeep:
+                    _logger.debug(
+                        'Remove local file...'
+                    )
+                    os.remove(fullpath)
diff --git a/auto_backup/security/ir.model.access.csv b/auto_backup/security/ir.model.access.csv
new file mode 100644
index 00000000000..e38dbf11be4
--- /dev/null
+++ b/auto_backup/security/ir.model.access.csv
@@ -0,0 +1,2 @@
+id,name,model_id:id,group_id:id,perm_read,perm_write,perm_create,perm_unlink
+access_db_backup,access_db_backup,model_db_backup,,1,0,0,0
diff --git a/auto_backup/static/description/no_index.html b/auto_backup/static/description/no_index.html
new file mode 100644
index 00000000000..6b3ba3e2b6d
--- /dev/null
+++ b/auto_backup/static/description/no_index.html
@@ -0,0 +1,100 @@
+<section class="oe_container">
+    <div class="oe_row oe_spaced">
+        <div class="oe_span12">
+            <h2 class="oe_slogan">Automated backups</h2>
+            <h3 class="oe_slogan">A tool for all your back-ups, internal and external!</h3>
+        </div>
+	<div class="oe_span6">
+            <div class="oe_demo oe_picture oe_screenshot">
+                    <img src="overview.png">
+            </div>
+        </div>
+	<div class="oe_span6">
+            <p class="oe_mt32">
+		Keep your Odoo data safe with this module. Take automated back-ups, remove them automatically 
+		and even write them to an external server through an encrypted tunnel.
+		You can even specify how long local backups and external backups should be kept, automatically!
+            </p>
+            <div class="oe_centeralign oe_websiteonly">
+                <a href="http://www.openerp.com/start?app=mail" class="oe_button oe_big oe_tacky">Start your <span class="oe_emph">free</span> trial</a>
+            </div>
+        </div>
+    </div>
+</section>
+<!-- Second block -->
+<section class="oe_container oe_dark">
+    <div class="oe_row oe_spaced">
+        <h2 class="oe_slogan">Connect with an FTP Server</h2>
+        <h3 class="oe_slogan">Keep your data safe, through an SSH tunnel!</h3>
+        <div class="oe_span6">
+            <p class="oe_mt32">
+		Want to go even further and write your backups to an external server?
+		You can with this module! Specify the credentials to the server, specify a path and 			everything will be backed up automatically. This is done through an SSH (encrypted) tunnel, 			thanks to pysftp, so your data is safe!
+
+            </p>
+        </div>
+        <div class="oe_span6">
+            <div class="oe_row_img oe_centered">
+                <img class="oe_picture oe_screenshot" src="terminalssh.png">
+            </div>
+        </div>
+    </div>
+</section>
+<!--Third block -->
+<section class="oe_container">
+    <div class="oe_row oe_spaced">
+        <div class="oe_span12">
+            <h2 class="oe_slogan">Test connection</h2>
+            <h3 class="oe_slogan">Checks your credentials in one click</h3>
+        </div>
+	<div class="oe_span6">
+            <div class="oe_demo oe_picture oe_screenshot">
+                    <img src="testconnection.png">
+		    <img src="testconnectionfailed.png">
+            </div>
+        </div>
+	<div class="oe_span6">
+            <p class="oe_mt32">
+		Want to make sure if the connection details are correct and if Odoo can automatically write them to the remote server? Simply click on the 'Test SFTP Connection' button and you will get message telling you if everything is OK, or what is wrong!
+            </p>
+        </div>
+    </div>
+</section>
+<!-- Fourth block -->
+<section class="oe_container oe_dark">
+    <div class="oe_row oe_spaced">
+        <h2 class="oe_slogan">E-mail on backup failure</h2>
+        <h3 class="oe_slogan">Stay informed of problems, automatically!</h3>
+        <div class="oe_span6">
+            <p class="oe_mt32">
+		Do you want to know if the database backup failed? Check the checkbox 'Auto. E-mail on backup fail' and fill in your e-mail.
+		Every time a backup fails you will get an e-mail in your mailbox with technical details.
+            </p>
+        </div>
+        <div class="oe_span6">
+            <div class="oe_row_img oe_centered">
+                <img class="oe_picture oe_screenshot" src="emailnotification.png">
+            </div>
+        </div>
+    </div>
+</section>
+<!--Fifth block -->
+<section class="oe_container">
+    <div class="oe_row oe_spaced">
+        <div class="oe_span12">
+            <h2 class="oe_slogan">Contact / Support</h2>
+            <h3 class="oe_slogan">Need help or want extra features?</h3>
+        </div>
+	<div class="oe_span6">
+            <div class="oe_demo oe_picture oe_screenshot">
+                    <a href="http://www.vanroey.be/appplications/bedrijfsbeheer/odoo"><img src="logo.png"></a>
+            </div>
+        </div>
+	<div class="oe_span6">
+            <p class="oe_mt32">
+		Need help with the configuration or want this module to have more functionalities?
+		Contact us through e-mail at <a href="mailto:"yenthe.vanginneken@vanroey.be">yenthe.vanginneken@vanroey.be</a> or <a href="mailto:"tony.crols@vanroey.be">tony.crols@vanroey.be</a>
+            </p>
+        </div>
+    </div>
+</section>
diff --git a/auto_backup/tests/__init__.py b/auto_backup/tests/__init__.py
new file mode 100644
index 00000000000..01e81ba8a05
--- /dev/null
+++ b/auto_backup/tests/__init__.py
@@ -0,0 +1,22 @@
+# -*- coding: utf-8 -*-
+##############################################################################
+#
+#    Copyright 2015 Agile Business Group <http://www.agilebg.com>
+#    Copyright (C) 2015 Alessio Gerace <alesiso.gerace@agilebg.com>
+#
+#    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_auto_backup
diff --git a/auto_backup/tests/test_auto_backup.py b/auto_backup/tests/test_auto_backup.py
new file mode 100644
index 00000000000..e2e6fee4550
--- /dev/null
+++ b/auto_backup/tests/test_auto_backup.py
@@ -0,0 +1,56 @@
+# -*- coding: utf-8 -*-
+##############################################################################
+#
+#    Copyright 2015 Agile Business Group <http://www.agilebg.com>
+#    Copyright (C) 2015 Alessio Gerace <alesiso.gerace@agilebg.com>
+#
+#    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.tests import common
+from openerp.exceptions import except_orm
+import os
+import time
+
+
+class TestsAutoBackup(common.TransactionCase):
+
+    def setUp(self):
+        super(TestsAutoBackup, self).setUp()
+        self.abk_model = self.env["db.backup"]
+        self.cron_model = self.env["ir.cron"]
+
+    def test_0(self):
+        with self.assertRaises(except_orm):
+            self.abk_model.create(
+                {
+                    'name': 'abcd',
+                    'adminpassword': 'admin'
+                }
+            )
+
+    def test_1(self):
+        this = self.abk_model.create(
+            {
+                'bkp_dir': '/tmp'
+            }
+        )
+        self.assertEqual(this.bkp_dir, '/tmp')
+        bkp_file = '%s_%s.dump.zip' % (
+            time.strftime('%d_%m_%Y_%H_%M_%S'),
+            this.name)
+        file_path = os.path.join(this.bkp_dir, bkp_file)
+        this.schedule_backup()
+        self.assertTrue(os.path.isfile(file_path))
diff --git a/auto_backup/view/bkp_conf_view.xml b/auto_backup/view/bkp_conf_view.xml
new file mode 100644
index 00000000000..cb2281b088e
--- /dev/null
+++ b/auto_backup/view/bkp_conf_view.xml
@@ -0,0 +1,100 @@
+<?xml version="1.0"?>
+<openerp>
+    <data>
+
+        <record model="ir.ui.view" id="view_backup_conf_form">
+            <field name="name">Configure Backup</field>
+            <field name="model">db.backup</field>
+            <field name="type">form</field>
+            <field name="arch" type="xml">
+                <form string="Test">
+                    <group col="4" colspan="4">
+                        <separator col="2" string="Local backup configuration"/>
+                    </group>
+                    <group>
+                        <field name="name"/>
+                        <field name="bkp_dir"/>
+                        <field name="autoremove"/>
+                        <field name="daystokeep" attrs="{'invisible': [('autoremove','=',False)]}"/>
+                    </group>
+                    <group col="4" colspan="4">
+                        <separator col="2" string="SFTP"/>
+                    </group>
+                    <div
+                        style="width:50%;border-radius:10px;
+                               margin: 10px 0px;
+                               padding:15px 10px 15px 10px;
+                               background-repeat:
+                               no-repeat;background-position: 10px center;
+                               color: #9F6000;background-color: #FEEFB3;"
+                        attrs="{'invisible': [('sftpwrite','=',False)]}">
+                        <b>Warning:</b>
+                        Use SFTP with caution! This writes files to external servers under the path you specify.
+                    </div>
+                    <group>
+                        <field name="sftpwrite"/>
+                        <field name="sftpip" attrs="{'invisible':[('sftpwrite', '==', False)],'required':[('sftpwrite', '==', True)]}"/>
+                        <field name="sftpport" attrs="{'invisible':[('sftpwrite', '==', False)],'required':[('sftpwrite', '==', True)]}"/>
+                        <field name="sftpusername" attrs="{'invisible':[('sftpwrite', '==', False)],'required':[('sftpwrite', '==', True)]}"/>
+                        <field name="sftppassword" attrs="{'invisible':[('sftpwrite', '==', False)],'required':[('sftpwrite', '==', True)]}" password="True"/>
+                        <field name="sftppath" attrs="{'invisible':[('sftpwrite', '==', False)],'required':[('sftpwrite', '==', True)]}" placeholder="For example: /odoo/backups/"/>
+                        <field name="daystokeepsftp" attrs="{'invisible':[('sftpwrite', '==', False)],'required':[('sftpwrite', '==', True)]}"/>
+                        <field name="sendmailsftpfail" attrs="{'invisible': [('sftpwrite','=',False)]}"/>
+                        <field name="emailtonotify" attrs="{'invisible':['|',('sendmailsftpfail', '==', False),
+                        ('sftpwrite', '==', False)],'required':[('sendmailsftpfail', '==', True)]}"/>
+                        <button name="test_sftp_connection" type="object" attrs="{'invisible': [('sftpwrite','=',False)]}" string="Test SFTP Connection" icon="gtk-network"/>
+                    </group>
+                    <separator string="Help" colspan="2"/>
+                    <div>
+                        This configures the scheduler for automatic backup of the given database running on given host at given port on regular intervals.
+                        <br/>
+                        Automatic backups of the database can be scheduled as follows:
+                        <ol>
+                            <li>Go to Settings / Technical / Automation / Scheduled Actions.</li>
+                            <li>Search the action named 'Backup scheduler'.</li>
+                            <li>Set the scheduler to active and fill in how often you want backups generated.</li>
+                        </ol>
+                    </div>
+                </form>
+            </field>
+        </record>
+
+        <record model="ir.ui.view" id="view_backup_conf_tree">
+            <field name="name">Configure Backup</field>
+            <field name="model">db.backup</field>
+            <field name="type">tree</field>
+            <field name="arch" type="xml">
+                <tree string="Backups">
+                    <field name='name'/>
+                    <field name='bkp_dir'/>
+                    <field name="autoremove"/>
+                    <field name="sftpip"/>
+                </tree>
+            </field>
+        </record>
+
+        <record model="ir.ui.view" id="view_backup_conf_search">
+            <field name="name">Configure Backup</field>
+            <field name="model">db.backup</field>
+            <field name="type">search</field>
+            <field name="arch" type="xml">
+                <search string="Search options">
+                    <field name='name'/>
+                    <field name='bkp_dir'/>
+                    <field name="autoremove"/>
+                    <field name="sftpip"/>
+                </search>
+            </field>
+        </record>
+
+        <record model="ir.actions.act_window" id="action_backup_conf_form">
+            <field name="name">Configure Backup</field>
+            <field name="res_model">db.backup</field>
+            <field name="view_type">form</field>
+            <field name='view_mode'>tree,form</field>
+            <field name='view_id' ref='view_backup_conf_tree'/>
+        </record>
+        <menuitem parent="base.menu_config" action="action_backup_conf_form" id="backup_conf_menu"/>
+
+    </data>
+</openerp>

From 2ca4176d54ebe3d12554d85a5f583a58b8285c57 Mon Sep 17 00:00:00 2001
From: Jairo Llopis <j.llopis@grupoesoc.es>
Date: Wed, 9 Mar 2016 09:21:23 +0100
Subject: [PATCH 03/52] [auto_backup] Refactor.

- Follow template README.
- Remove HTML README.
- Move models to models folder.
- Model and view file names follow guidelines.
- Unused methods cleanup.
- Remove unneeded `.pot` file.
- Fix permissons.
- Follow PEP8 in names everywhere.
- Set more descriptive field names.
- Disable backups for other databases, for security.
- Remove db name from generated file, for easier cleanup.
- EAFP logic everywhere.
- More descriptive name.
- Data files moved to YAML, with cleaner ir.cron record creation.
- Add permissions for db.backup model.
- Icons.
- Update tests with new format.
- Storage method is a selectable, for easier extensibility.
- Instead of custom mailing, it just has a mail thread where you can subscribe.
- Should fix almost all comments in https://github.com/OCA/server-tools/pull/203.
- Reduce headers.

This respects the upstream license choice (GPL/AGPL) but reduces
verbosity.

It would be ideal to have everything under AGPL though.
---
 auto_backup/README.rst                       |  44 ++-
 auto_backup/__init__.py                      |  29 +-
 auto_backup/__openerp__.py                   |  38 +-
 auto_backup/data/backup_data.xml             |  18 -
 auto_backup/data/backup_data.yml             |  28 ++
 auto_backup/i18n/auto_backup.pot             | 141 -------
 auto_backup/model/__init__.py                |  23 --
 auto_backup/model/backup_scheduler.py        | 376 -------------------
 auto_backup/models/__init__.py               |   6 +
 auto_backup/models/db_backup.py              | 283 ++++++++++++++
 auto_backup/security/ir.model.access.csv     |   3 +-
 auto_backup/static/description/icon.png      | Bin 0 -> 6074 bytes
 auto_backup/static/description/icon.svg      |  51 +++
 auto_backup/static/description/no_index.html | 100 -----
 auto_backup/tests/__init__.py                |  23 +-
 auto_backup/tests/test_auto_backup.py        |  60 +--
 auto_backup/view/bkp_conf_view.xml           | 100 -----
 auto_backup/view/db_backup_view.xml          | 108 ++++++
 18 files changed, 542 insertions(+), 889 deletions(-)
 delete mode 100644 auto_backup/data/backup_data.xml
 create mode 100644 auto_backup/data/backup_data.yml
 delete mode 100644 auto_backup/i18n/auto_backup.pot
 delete mode 100644 auto_backup/model/__init__.py
 delete mode 100644 auto_backup/model/backup_scheduler.py
 create mode 100644 auto_backup/models/__init__.py
 create mode 100644 auto_backup/models/db_backup.py
 create mode 100644 auto_backup/static/description/icon.png
 create mode 100644 auto_backup/static/description/icon.svg
 delete mode 100644 auto_backup/static/description/no_index.html
 delete mode 100644 auto_backup/view/bkp_conf_view.xml
 create mode 100644 auto_backup/view/db_backup_view.xml

diff --git a/auto_backup/README.rst b/auto_backup/README.rst
index 480943bd0bf..0f3f729c9a0 100644
--- a/auto_backup/README.rst
+++ b/auto_backup/README.rst
@@ -1,40 +1,40 @@
 .. image:: https://img.shields.io/badge/licence-AGPL--3-blue.svg
-    :alt: License: AGPL-3
+   :target: http://www.gnu.org/licenses/agpl-3.0-standalone.html
+   :alt: License: AGPL-3
 
-=================
-Automated backups
-=================
+====================
+Database Auto-Backup
+====================
 
 A tool for all your back-ups, internal and external!
 
 Installation
 ============
 
-Before to  install this module, you need to:
+Before installing this module, you need to execute::
 
-instal pysftp via pip.
+    pip install pysftp
 
 Configuration
 =============
 
-Go to Settings -> Configuration -> Configure Backup
+Go to *Settings -> Configuration -> Configure Backup* to
 create your configurations for each database that you needed
 to backups.
 
 Usage
 =====
 
-
 Keep your Odoo data safe with this module. Take automated back-ups,
 remove them automatically and even write them to an external server
 through an encrypted tunnel. You can even specify how long local backups
 and external backups should be kept, automatically!
 
-
 Connect with an FTP Server
 --------------------------
 
-#### Keep your data safe, through an SSH tunnel!
+Keep your data safe, through an SSH tunnel!
+~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
 
 Want to go even further and write your backups to an external server?
 You can with this module! Specify the credentials to the server, specify
@@ -45,7 +45,8 @@ safe!
 Test connection
 ---------------
 
-#### Checks your credentials in one click
+Checks your credentials in one click
+~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
 
 Want to make sure if the connection details are correct and if Odoo can
 automatically write them to the remote server? Simply click on the ???Test
@@ -55,16 +56,21 @@ everything is OK, or what is wrong!
 E-mail on backup failure
 ------------------------
 
-#### Stay informed of problems, automatically!
+Stay informed of problems, automatically!
+~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
 
-Do you want to know if the database backup failed? Check the checkbox 'Auto. E-mail on backup fail' and fill in your e-mail.
-Every time a backup fails you will get an e-mail in your mailbox with technical details.
+Do you want to know if the database backup succeeded or failed? Subscribe to
+the corresponding backup setting notification type.
 
+Run backups when you want
+-------------------------
 
-Known issues / Roadmap
-======================
+From the backups configuration list, press *More > Execute backup(s)* to
+manually execute the selected processes.
 
-* ...
+.. image:: https://odoo-community.org/website/image/ir.attachment/5784_f2813bd/datas
+   :alt: Try me on Runbot
+   :target: https://runbot.odoo-community.org/runbot/149/8.0
 
 Bug Tracker
 ===========
@@ -74,7 +80,6 @@ In case of trouble, please check there if your issue has already been reported.
 If you spotted it first, help us smashing it by providing a detailed and welcomed feedback
 `here <https://github.com/OCA/server-tools/issues/new?body=module:%20auto_backup%0Aversion:%208.0%0A%0A**Steps%20to%20reproduce**%0A-%20...%0A%0A**Current%20behavior**%0A%0A**Expected%20behavior**>`_.
 
-
 Credits
 =======
 
@@ -83,6 +88,7 @@ Contributors
 
 * Yenthe Van Ginneken <yenthe.vanginneken@vanroey.be>
 * Alessio Gerace <alessio.gerace@agilebg.com>
+* Jairo Llopis <yajo.sk8@gmail.com>
 
 Maintainer
 ----------
@@ -97,4 +103,4 @@ OCA, or the Odoo Community Association, is a nonprofit organization whose
 mission is to support the collaborative development of Odoo features and
 promote its widespread use.
 
-To contribute to this module, please visit http://odoo-community.org.
\ No newline at end of file
+To contribute to this module, please visit https://odoo-community.org.
diff --git a/auto_backup/__init__.py b/auto_backup/__init__.py
index a8f54341e59..e4106988562 100644
--- a/auto_backup/__init__.py
+++ b/auto_backup/__init__.py
@@ -1,24 +1,7 @@
-# -*- encoding: utf-8 -*-
-##############################################################################
-#
-#    OpenERP, Open Source Management Solution
-#    Copyright (C) 2004-2009 Tiny SPRL (<http://tiny.be>). All Rights Reserved
-#    $Id$
-#    Copyright (C) 2015 Agile Business Group <http://www.agilebg.com>
-#    This program is free software: you can redistribute it and/or modify
-#    it under the terms of the GNU 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 General Public License for more details.
-#
-#    You should have received a copy of the GNU General Public License
-#    along with this program.  If not, see <http://www.gnu.org/licenses/>.
-#
-##############################################################################
+# -*- coding: utf-8 -*-
+# ?? 2004-2009 Tiny SPRL (<http://tiny.be>).
+# ?? 2015 Agile Business Group <http://www.agilebg.com>
+# ?? 2016 Grupo ESOC Ingenier??a de Servicios, S.L.U. - Jairo Llopis
+# License GPL-3.0 or later (http://www.gnu.org/licenses/gpl.html).
 
-from . import model
-from . import tests
+from . import models
diff --git a/auto_backup/__openerp__.py b/auto_backup/__openerp__.py
index 72f4389b701..2960813b9ad 100644
--- a/auto_backup/__openerp__.py
+++ b/auto_backup/__openerp__.py
@@ -1,43 +1,31 @@
 # -*- coding: utf-8 -*-
-##############################################################################
-#
-#    OpenERP, Open Source Management Solution
-#    Copyright (C) 2004-2009 Tiny SPRL (<http://tiny.be>). All Rights Reserved
-#    $Id$
-#    Copyright (C) 2015 Agile Business Group <http://www.agilebg.com>
-#    This program is free software: you can redistribute it and/or modify
-#    it under the terms of the GNU 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 General Public License for more details.
-#
-#    You should have received a copy of the GNU General Public License
-#    along with this program.  If not, see <http://www.gnu.org/licenses/>.
-#
-##############################################################################
+# ?? 2004-2009 Tiny SPRL (<http://tiny.be>).
+# ?? 2015 Agile Business Group <http://www.agilebg.com>
+# ?? 2016 Grupo ESOC Ingenier??a de Servicios, S.L.U. - Jairo Llopis
+# License GPL-3.0 or later (http://www.gnu.org/licenses/gpl.html).
 
 {
     "name": "Database Auto-Backup",
+    "summary": "Backups database",
     "version": "8.0.1.0.0",
     "author": (
         "VanRoey.be - Yenthe Van Ginneken, Agile Business Group,"
+        " Grupo ESOC Ingenier??a de Servicios,"
         " Odoo Community Association (OCA)"
     ),
     'license': "AGPL-3",
     "website": "http://www.vanroey.be/applications/bedrijfsbeheer/odoo",
     "category": "Tools",
-    "summary": "Backups data base",
     "depends": ['email_template'],
     "demo": [],
     "data": [
-        "view/bkp_conf_view.xml",
-        "data/backup_data.xml",
-        "security/ir.model.access.csv"
+        "data/backup_data.yml",
+        "security/ir.model.access.csv",
+        "view/db_backup_view.xml",
     ],
     "application": True,
-    "installable": True
+    "installable": True,
+    "external_dependencies": {
+        "python": ["pysftp"],
+    },
 }
diff --git a/auto_backup/data/backup_data.xml b/auto_backup/data/backup_data.xml
deleted file mode 100644
index 8911a3bd6fa..00000000000
--- a/auto_backup/data/backup_data.xml
+++ /dev/null
@@ -1,18 +0,0 @@
-<?xml version="1.0"?>
-<openerp>
-    <data noupdate="1">
-        <record id="ir_cron_backupscheduler0" model="ir.cron">
-            <field eval="&quot;&quot;&quot;schedule_backup&quot;&quot;&quot;" name="function"/>
-            <field eval="&quot;&quot;&quot;work_days&quot;&quot;&quot;" name="interval_type"/>
-            <field name="user_id" ref="base.user_root"/>
-            <field eval="&quot;&quot;&quot;Backup scheduler&quot;&quot;&quot;" name="name"/>
-            <field eval="-1" name="numbercall"/>
-            <field eval="&quot;&quot;&quot;2015-07-07 11:35:28&quot;&quot;&quot;" name="nextcall"/>
-            <field eval="5" name="priority"/>
-            <field eval="0" name="doall"/>
-            <field eval="False" name="active"/>
-            <field eval="1" name="interval_number"/>
-            <field eval="&quot;&quot;&quot;db.backup&quot;&quot;&quot;" name="model"/>
-        </record>
-    </data>
-</openerp>
diff --git a/auto_backup/data/backup_data.yml b/auto_backup/data/backup_data.yml
new file mode 100644
index 00000000000..00ce17cc12f
--- /dev/null
+++ b/auto_backup/data/backup_data.yml
@@ -0,0 +1,28 @@
+# -*- coding: utf-8 -*-
+# ?? 2016 Grupo ESOC Ingenier??a de Servicios, S.L.U. - Jairo Llopis
+# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl.html).
+
+# Cron job
+- !record {model: ir.cron, id: ir_cron_backupscheduler0}:
+    name: Backup scheduler
+    user_id: base.user_root
+    interval_number: 1
+    interval_type: days
+    numbercall: -1
+    nextcall: !eval
+        (datetime.now() + timedelta(days=1)).strftime("%Y-%m-%d 02:00:00")
+    model: db.backup
+    function: action_backup_all
+
+# New message subtypes
+- !record {model: mail.message.subtype, id: success}:
+    name: Backup successful
+    res_model: db.backup
+    default: False
+    description: Database backup succeeded.
+
+- !record {model: mail.message.subtype, id: failure}:
+    name: Backup failed
+    res_model: db.backup
+    default: True
+    description: Database backup failed.
diff --git a/auto_backup/i18n/auto_backup.pot b/auto_backup/i18n/auto_backup.pot
deleted file mode 100644
index c560ff6eed9..00000000000
--- a/auto_backup/i18n/auto_backup.pot
+++ /dev/null
@@ -1,141 +0,0 @@
-# Translation of OpenERP Server.
-# This file contains the translation of the following modules:
-#	* auto_backup
-#
-msgid ""
-msgstr ""
-"Project-Id-Version: OpenERP Server 5.0.6\n"
-"Report-Msgid-Bugs-To: support@openerp.com\n"
-"POT-Creation-Date: 2009-11-24 13:49:51+0000\n"
-"PO-Revision-Date: 2009-11-24 13:49:51+0000\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: auto_backup
-#: help:db.backup,name:0
-msgid "Database you want to schedule backups for"
-msgstr ""
-
-#. module: auto_backup
-#: constraint:ir.model:0
-msgid "The Object name must start with x_ and not contain any special character !"
-msgstr ""
-
-#. module: auto_backup
-#: constraint:ir.actions.act_window:0
-msgid "Invalid model name in the action definition."
-msgstr ""
-
-#. module: auto_backup
-#: model:ir.model,name:auto_backup.model_db_backup
-msgid "db.backup"
-msgstr ""
-
-#. module: auto_backup
-#: view:db.backup:0
-msgid "1) Go to Administration / Configuration / Scheduler / Scheduled Actions"
-msgstr ""
-
-#. module: auto_backup
-#: model:ir.actions.act_window,name:auto_backup.action_backup_conf_form
-#: model:ir.ui.menu,name:auto_backup.backup_conf_menu
-msgid "Configure Backup"
-msgstr ""
-
-#. module: auto_backup
-#: view:db.backup:0
-msgid "Test"
-msgstr ""
-
-#. module: auto_backup
-#: view:db.backup:0
-msgid "IP Configuration"
-msgstr ""
-
-#. module: auto_backup
-#: help:db.backup,bkp_dir:0
-msgid "Absolute path for storing the backups"
-msgstr ""
-
-#. module: auto_backup
-#: model:ir.module.module,shortdesc:auto_backup.module_meta_information
-msgid "Database Auto-Backup"
-msgstr ""
-
-#. module: auto_backup
-#: view:db.backup:0
-msgid "Database Configuration"
-msgstr ""
-
-#. module: auto_backup
-#: view:db.backup:0
-msgid "4) Set other values as per your preference"
-msgstr ""
-
-#. module: auto_backup
-#: field:db.backup,host:0
-msgid "Host"
-msgstr ""
-
-#. module: auto_backup
-#: view:db.backup:0
-msgid "Automatic backup of all the databases under this can be scheduled as follows: "
-msgstr ""
-
-#. module: auto_backup
-#: constraint:ir.ui.view:0
-msgid "Invalid XML for View Architecture!"
-msgstr ""
-
-#. module: auto_backup
-#: field:db.backup,bkp_dir:0
-msgid "Backup Directory"
-msgstr ""
-
-#. module: auto_backup
-#: field:db.backup,name:0
-msgid "Database"
-msgstr ""
-
-#. module: auto_backup
-#: view:db.backup:0
-msgid "2) Schedule new action(create a new record)"
-msgstr ""
-
-#. module: auto_backup
-#: model:ir.module.module,description:auto_backup.module_meta_information
-msgid "The generic Open ERP Database Auto-Backup system enables the user to make configurations for the automatic backup of the database.\n"
-"User simply requires to specify host & port under IP Configuration & database(on specified host running at specified port) and backup directory(in which all the backups of the specified database will be stored) under Database Configuration.\n"
-"\n"
-"Automatic backup for all such configured databases under this can then be scheduled as follows:  \n"
-"                      \n"
-"1) Go to Administration / Configuration / Scheduler / Scheduled Actions\n"
-"2) Schedule new action(create a new record)\n"
-"3) Set 'Object' to 'db.backup' and 'Function' to 'schedule_backup' under page 'Technical Data'\n"
-"4) Set other values as per your preference"
-msgstr ""
-
-#. module: auto_backup
-#: view:db.backup:0
-msgid "3) Set 'Object' to 'db.backup' and 'Function' to 'schedule_backup' under page 'Technical Data'"
-msgstr ""
-
-#. module: auto_backup
-#: view:db.backup:0
-msgid "Help"
-msgstr ""
-
-#. module: auto_backup
-#: view:db.backup:0
-msgid "This configures the scheduler for automatic backup of the given database running on given host at given port on regular intervals."
-msgstr ""
-
-#. module: auto_backup
-#: field:db.backup,port:0
-msgid "Port"
-msgstr ""
-
diff --git a/auto_backup/model/__init__.py b/auto_backup/model/__init__.py
deleted file mode 100644
index 995d7f02b27..00000000000
--- a/auto_backup/model/__init__.py
+++ /dev/null
@@ -1,23 +0,0 @@
-# -*- coding: utf-8 -*-
-##############################################################################
-#
-#    OpenERP, Open Source Management Solution
-#    Copyright (C) 2004-2009 Tiny SPRL (<http://tiny.be>). All Rights Reserved
-#    $Id$
-#
-#    This program is free software: you can redistribute it and/or modify
-#    it under the terms of the GNU 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 General Public License for more details.
-#
-#    You should have received a copy of the GNU General Public License
-#    along with this program.  If not, see <http://www.gnu.org/licenses/>.
-#
-##############################################################################
-
-from . import backup_scheduler
diff --git a/auto_backup/model/backup_scheduler.py b/auto_backup/model/backup_scheduler.py
deleted file mode 100644
index 479023ff54b..00000000000
--- a/auto_backup/model/backup_scheduler.py
+++ /dev/null
@@ -1,376 +0,0 @@
-# -*- coding: utf-8 -*-
-##############################################################################
-#     OpenERP, Open Source Management Solution
-#     Copyright (C) 2004-2009 Tiny SPRL (<http://tiny.be>). All Rights Reserved
-#     Copyright 2015 Agile Business Group <http://www.agilebg.com>
-#
-#     This program is free software: you can redistribute it and/or modify
-#     it under the terms of the GNU 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 General Public License for more details.
-#
-#     You should have received a copy of the GNU General Public License
-#     along with this program.  If not, see <http://www.gnu.org/licenses/>.
-#
-##############################################################################
-import socket
-import os
-import time
-import datetime
-import re
-from openerp import models, fields, api, _
-from openerp.exceptions import except_orm, Warning as UserError
-from openerp import tools
-from openerp.service import db
-import logging
-_logger = logging.getLogger(__name__)
-try:
-    import pysftp
-except ImportError:
-    _logger.debug('Can not import pysftp')
-
-
-def execute(connector, method, *args):
-    res = False
-    try:
-        res = getattr(connector, method)(*args)
-    except socket.error as e:
-        raise e
-    return res
-
-
-class DbBackup(models.Model):
-    _name = 'db.backup'
-
-    @api.model
-    def _get_db_name(self):
-        return self.env.cr.dbname
-
-    name = fields.Char(
-        string='Database', size=100, required=True,
-        default=_get_db_name,
-        help='Database you want to schedule backups for'
-    )
-
-    bkp_dir = fields.Char(
-        string='Backup Directory', size=100,
-        default='/odoo/backups',
-        help='Absolute path for storing the backups',
-        required=True
-    )
-    autoremove = fields.Boolean(
-        string='Auto. Remove Backups',
-        help=(
-            "If you check this option you can choose to "
-            "automaticly remove the backup after xx days"
-        )
-    )
-    daystokeep = fields.Integer(
-        string='Remove after x days',
-        default=30,
-        help=(
-            "Choose after how many days the backup should be "
-            "deleted. For example:\nIf you fill in 5 the backups "
-            "will be removed after 5 days."
-        ), required=True
-    )
-    sftpwrite = fields.Boolean(
-        string='Write to external server with sftp',
-        help=(
-            "If you check this option you can specify the details "
-            "needed to write to a remote server with SFTP."
-        )
-    )
-    sftppath = fields.Char(
-        string='Path external server',
-        help=(
-            "The location to the folder where the dumps should be "
-            "written to. For example /odoo/backups/.\nFiles will then"
-            " be written to /odoo/backups/ on your remote server."
-        )
-    )
-    sftpip = fields.Char(
-        string='IP Address SFTP Server',
-        help=(
-            "The IP address from your remote"
-            " server. For example 192.168.0.1"
-        )
-    )
-    sftpport = fields.Integer(
-        string="SFTP Port",
-        default=22,
-        help="The port on the FTP server that accepts SSH/SFTP calls."
-    )
-    sftpusername = fields.Char(
-        string='Username SFTP Server',
-        help=(
-            "The username where the SFTP connection "
-            "should be made with. This is the user on the external server."
-        )
-    )
-    sftppassword = fields.Char(
-        string='Password User SFTP Server',
-        help=(
-            "The password from the user where the SFTP connection "
-            "should be made with. This is the password from the user"
-            " on the external server."
-        )
-    )
-    daystokeepsftp = fields.Integer(
-        string='Remove SFTP after x days',
-        default=30,
-        help=(
-            "Choose after how many days the backup should be deleted "
-            "from the FTP server. For example:\nIf you fill in 5 the "
-            "backups will be removed after 5 days from the FTP server."
-        )
-    )
-    sendmailsftpfail = fields.Boolean(
-        string='Auto. E-mail on backup fail',
-        help=(
-            "If you check this option you can choose to automaticly"
-            " get e-mailed when the backup to the external server failed."
-        )
-    )
-    emailtonotify = fields.Char(
-        string='E-mail to notify',
-        help=(
-            "Fill in the e-mail where you want to be"
-            " notified that the backup failed on the FTP."
-        )
-    )
-    lasterrorlog = fields.Text(
-        string='E-mail to notify',
-        help=(
-            "Fill in the e-mail where you want to be"
-            " notified that the backup failed on the FTP."
-        )
-    )
-
-    @api.multi
-    def _check_db_exist(self):
-        for rec in self:
-            db_list = db.exp_list(True)
-            if rec.name in db_list:
-                return True
-            return False
-
-    _constraints = [
-        (
-            _check_db_exist,
-            _('Error ,No such database exists'), ['name']
-        )
-    ]
-
-    @api.multi
-    def test_sftp_connection(self):
-        confs = self.search([])
-        # Check if there is a success or fail and write messages
-        messageTitle = ""
-        messageContent = ""
-        conn_success = False
-        for rec in confs:
-            try:
-                conn_success = True
-                ipHost = rec.sftpip
-                portHost = rec.sftpport
-                usernameLogin = rec.sftpusername
-                passwordLogin = rec.sftppassword
-                # Connect with external server over SFTP, so we know sure that
-                # everything works.
-                srv = pysftp.Connection(host=ipHost, username=usernameLogin,
-                                        password=passwordLogin, port=portHost)
-                srv.close()
-                # We have a success.
-                messageTitle = _("Connection Test Succeeded!")
-                messageContent = _(
-                    "Everything seems properly set up for FTP back-ups!")
-            except Exception as e:
-                conn_success = False
-                messageTitle = _("Connection Test Failed!")
-                if len(rec.sftpip) < 8:
-                    messageContent += _(
-                        "\nYour IP address seems to be too short.\n")
-                messageContent += _("Here is what we got instead:\n")
-        if not conn_success:
-            raise except_orm(
-                _(messageTitle), _(
-                    messageContent + "%s") %
-                tools.ustr(e))
-        else:
-            raise UserError(_(messageTitle), _(messageContent))
-
-    @api.model
-    def schedule_backup(self):
-
-        for rec in self.search([]):
-            if not os.path.isdir(rec.bkp_dir):
-                os.makedirs(rec.bkp_dir)
-            # Create name for dumpfile.
-            bkp_file = '%s_%s.dump.zip' % (
-                time.strftime('%d_%m_%Y_%H_%M_%S'),
-                rec.name)
-            file_path = os.path.join(rec.bkp_dir, bkp_file)
-            fbk = open(file_path, 'wb')
-            db.dump_db(rec.name, fbk)
-            fbk.close()
-            # Check if user wants to write to SFTP or not.
-            if rec.sftpwrite is True:
-                try:
-                    # Store all values in variables
-                    dir = rec.bkp_dir
-                    pathToWriteTo = rec.sftppath
-                    ipHost = rec.sftpip
-                    portHost = rec.sftpport
-                    usernameLogin = rec.sftpusername
-                    passwordLogin = rec.sftppassword
-                    # Connect with external server over SFTP
-                    srv = pysftp.Connection(
-                        host=ipHost,
-                        username=usernameLogin,
-                        password=passwordLogin,
-                        port=portHost)
-                    # Move to the correct directory on external server. If the
-                    # user made a typo in his path with multiple slashes
-                    # (/odoo//backups/) it will be fixed by this regex.
-                    pathToWriteTo = re.sub('/+', '/', pathToWriteTo)
-                    _logger.debug(
-                        'Start to copy files..'
-                    )
-                    try:
-                        srv.chdir(pathToWriteTo)
-                    except IOError:
-                        # Create directory and subdirs if they do not exist.
-                        currentDir = ''
-                        for dirElement in pathToWriteTo.split('/'):
-                            currentDir += dirElement + '/'
-                            try:
-                                srv.chdir(currentDir)
-                            except:
-                                _logger.info(
-                                    _(
-                                        '(Part of the) path didn\'t exist. '
-                                        'Creating it now at %s'
-                                    ) % currentDir
-                                )
-                                # Make directory and then navigate into it
-                                srv.mkdir(currentDir, mode=777)
-                                srv.chdir(currentDir)
-                                pass
-                    srv.chdir(pathToWriteTo)
-                    # Loop over all files in the directory.
-                    for f in os.listdir(dir):
-                        fullpath = os.path.join(dir, f)
-                        if os.path.isfile(fullpath):
-                            srv.put(fullpath)
-
-                    # Navigate in to the correct folder.
-                    srv.chdir(pathToWriteTo)
-                    # Loop over all files in the directory from the back-ups.
-                    # We will check the creation date of every back-up.
-                    for file in srv.listdir(pathToWriteTo):
-                        # Get the full path
-                        fullpath = os.path.join(pathToWriteTo, file)
-                        if srv.isfile(fullpath) and ".dump.zip" in file:
-                            # Get the timestamp from the file on the external
-                            # server
-                            timestamp = srv.stat(fullpath).st_atime
-                            createtime = (
-                                datetime.datetime.fromtimestamp(timestamp)
-                            )
-                            now = datetime.datetime.now()
-                            delta = now - createtime
-                            # If the file is older than the daystokeepsftp (the
-                            # days to keep that the user filled in on the Odoo
-                            # form it will be removed.
-                            if (
-                                rec.daystokeepsftp > 0 and
-                                delta.days >= rec.daystokeepsftp
-                            ):
-                                # Only delete files, no directories!
-                                srv.unlink(file)
-                    # Close the SFTP session.
-                    srv.close()
-                except Exception as e:
-                    _logger.debug(
-                        'Exception We couldn\'t back '
-                        'up to the FTP server..'
-                    )
-                    # At this point the SFTP backup failed.
-                    # We will now check if the user wants
-                    # an e-mail notification about this.
-                    if rec.sendmailsftpfail:
-                        self.send_notification(rec, e)
-
-            # Remove all old files (on local server)
-            # in case this is configured..
-            if rec.autoremove is True:
-                try:
-                    self.remove_folder(rec)
-                except Exception as e:
-                    _logger.debug(
-                        'Exception when try to remove file'
-                    )
-
-        return True
-
-    def send_notification(self, rec, e):
-        try:
-            ir_mail_server = self.env['ir.mail_server']
-            message = (
-                "Dear,\n\nThe backup for the server %s"
-                " (IP: %s) failed.Please check"
-                " the following details:\n\n"
-                "IP address SFTP server: %s \nUsername: %s"
-                "\nPassword: %s"
-                "\n\nError details: %s \n\nWith kind regards"
-            ) % (
-                rec.host, rec.sftpip, rec.sftpip,
-                rec.sftpusername, rec.sftppassword,
-                tools.ustr(e)
-            )
-            msg = ir_mail_server.build_email(
-                "auto_backup@%s.com" % rec.name,
-                [rec.emailtonotify],
-                "Backup from %s ( %s ) failed" % (
-                    rec.host, rec.sftpip),
-                message)
-            ir_mail_server.send_email(msg)
-
-        except Exception as e:
-            _logger.debug(
-                'Exception %s' % tools.ustr(e)
-            )
-
-    # This is done after the SFTP writing to prevent unusual behaviour:
-    # If the user would set local back-ups to be kept 0 days and the SFTP
-    # to keep backups xx days there wouldn't be any new back-ups added
-    # to the SFTP.
-    # If we'd remove the dump files before they're writen to the SFTP
-    # there willbe nothing to write. Meaning that if an user doesn't want
-    # to keep back-ups locally and only wants them on the SFTP
-    # (NAS for example) there wouldn't be any writing to the
-    # remote server if this if statement was before the SFTP write method
-    # right above this comment.
-    def remove_folder(self, rec):
-        dir = rec.bkp_dir
-        # Loop over all files in the directory.
-        for f in os.listdir(dir):
-            fullpath = os.path.join(dir, f)
-            if os.path.isfile(fullpath) and ".dump.zip" in f:
-                timestamp = os.stat(fullpath).st_ctime
-                createtime = (
-                    datetime.datetime.fromtimestamp(timestamp)
-                )
-                now = datetime.datetime.now()
-                delta = now - createtime
-                if delta.days >= rec.daystokeep:
-                    _logger.debug(
-                        'Remove local file...'
-                    )
-                    os.remove(fullpath)
diff --git a/auto_backup/models/__init__.py b/auto_backup/models/__init__.py
new file mode 100644
index 00000000000..93ebdcad94e
--- /dev/null
+++ b/auto_backup/models/__init__.py
@@ -0,0 +1,6 @@
+# -*- coding: utf-8 -*-
+# ?? 2004-2009 Tiny SPRL (<http://tiny.be>).
+# ?? 2016 Grupo ESOC Ingenier??a de Servicios, S.L.U. - Jairo Llopis
+# License GPL-3.0 or later (http://www.gnu.org/licenses/gpl.html).
+
+from . import db_backup
diff --git a/auto_backup/models/db_backup.py b/auto_backup/models/db_backup.py
new file mode 100644
index 00000000000..6e08d2a2fb5
--- /dev/null
+++ b/auto_backup/models/db_backup.py
@@ -0,0 +1,283 @@
+# -*- coding: utf-8 -*-
+# ?? 2004-2009 Tiny SPRL (<http://tiny.be>).
+# ?? 2015 Agile Business Group <http://www.agilebg.com>
+# ?? 2016 Grupo ESOC Ingenier??a de Servicios, S.L.U. - Jairo Llopis
+# License GPL-3.0 or later (http://www.gnu.org/licenses/gpl.html).
+
+import os
+import shutil
+import tempfile
+import traceback
+from contextlib import contextmanager
+from datetime import datetime, timedelta
+from glob import iglob
+from openerp import exceptions, models, fields, api, _, tools
+from openerp.service import db
+import logging
+_logger = logging.getLogger(__name__)
+try:
+    import pysftp
+except ImportError:
+    _logger.warning('Cannot import pysftp')
+
+
+class DbBackup(models.Model):
+    _name = 'db.backup'
+    _inherit = "mail.thread"
+
+    _sql_constraints = [
+        ("name_unique", "UNIQUE(name)", "Cannot duplicate a configuration."),
+        ("days_to_keep_positive", "CHECK(days_to_keep >= 0)",
+         "I cannot remove backups from the future. Ask Doc for that."),
+    ]
+
+    name = fields.Char(
+        string="Name",
+        compute="_compute_name",
+        store=True,
+        help="Summary of this backup process",
+    )
+    folder = fields.Char(
+        default=lambda self: self._default_folder(),
+        oldname="bkp_dir",
+        help='Absolute path for storing the backups',
+        required=True
+    )
+    days_to_keep = fields.Integer(
+        oldname="daystokeep",
+        required=True,
+        default=0,
+        help="Backups older than this will be deleted automatically. "
+             "Set 0 to disable autodeletion.",
+    )
+    method = fields.Selection(
+        selection=[("local", "Local disk"), ("sftp", "Remote SFTP server")],
+        default="local",
+        help="Choose the storage method for this backup.",
+    )
+    sftp_host = fields.Char(
+        string='SFTP Server',
+        oldname="sftpip",
+        help=(
+            "The host name or IP address from your remote"
+            " server. For example 192.168.0.1"
+        )
+    )
+    sftp_port = fields.Integer(
+        string="SFTP Port",
+        default=22,
+        oldname="sftpport",
+        help="The port on the FTP server that accepts SSH/SFTP calls."
+    )
+    sftp_user = fields.Char(
+        string='Username in the SFTP Server',
+        oldname="sftpusername",
+        help=(
+            "The username where the SFTP connection "
+            "should be made with. This is the user on the external server."
+        )
+    )
+    sftp_password = fields.Char(
+        string="SFTP Password",
+        oldname="sftppassword",
+        help="The password for the SFTP connection. If you specify a private "
+             "key file, then this is the password to decrypt it.",
+    )
+    sftp_private_key = fields.Char(
+        string="Private key location",
+        help="Path to the private key file. Only the Odoo user should have "
+             "read permissions for that file.",
+    )
+
+    @api.model
+    def _default_folder(self):
+        """Default to ``backups`` folder inside current server datadir."""
+        return os.path.join(
+            tools.config["data_dir"],
+            "backups",
+            self.env.cr.dbname)
+
+    @api.multi
+    @api.depends("folder", "method", "sftp_host", "sftp_port", "sftp_user")
+    def _compute_name(self):
+        """Get the right summary for this job."""
+        for rec in self:
+            if rec.method == "local":
+                rec.name = "%s @ localhost" % rec.folder
+            elif rec.method == "sftp":
+                rec.name = "sftp://%s@%s:%d%s" % (
+                    rec.sftp_user, rec.sftp_host, rec.sftp_port, rec.folder)
+
+    @api.constrains("folder", "method")
+    @api.multi
+    def _check_folder(self):
+        """Do not use the filestore or you will backup your backups."""
+        for s in self:
+            if (s.method == "local" and
+                    s.folder.startswith(
+                        tools.config.filestore(self.env.cr.dbname))):
+                raise exceptions.ValidationError(
+                    _("Do not save backups on your filestore, or you will "
+                      "backup your backups too!"))
+
+    @api.multi
+    def action_sftp_test_connection(self):
+        """Check if the SFTP settings are correct."""
+        try:
+            # Just open and close the connection
+            with self.sftp_connection():
+                raise exceptions.Warning(_("Connection Test Succeeded!"))
+        except (pysftp.CredentialException, pysftp.ConnectionException):
+            _logger.info("Connection Test Failed!", exc_info=True)
+            raise exceptions.Warning(_("Connection Test Failed!"))
+
+    @api.multi
+    def action_backup(self):
+        """Run selected backups."""
+        backup = None
+        filename = self.filename(datetime.now())
+        successful = self.browse()
+
+        # Start with local storage
+        for rec in self.filtered(lambda r: r.method == "local"):
+            with rec.backup_log():
+                # Directory must exist
+                try:
+                    os.makedirs(rec.folder)
+                except OSError:
+                    pass
+
+                with open(os.path.join(rec.folder, filename),
+                          'wb') as destiny:
+                    # Copy the cached backup
+                    if backup:
+                        with open(backup) as cached:
+                            shutil.copyfileobj(cached, destiny)
+                    # Generate new backup
+                    else:
+                        db.dump_db(self.env.cr.dbname, destiny)
+                        backup = backup or destiny.name
+                successful |= rec
+
+        # Ensure a local backup exists if we are going to write it remotely
+        sftp = self.filtered(lambda r: r.method == "sftp")
+        if sftp:
+            if backup:
+                cached = open(backup)
+            else:
+                cached = tempfile.TemporaryFile()
+                db.dump_db(self.env.cr.dbname, cached)
+
+            with cached:
+                for rec in sftp:
+                    with rec.backup_log():
+                        with rec.sftp_connection() as remote:
+                            # Directory must exist
+                            try:
+                                remote.makedirs(rec.folder)
+                            except pysftp.ConnectionException:
+                                pass
+
+                            # Copy cached backup to remote server
+                            with remote.open(
+                                    os.path.join(rec.folder, filename),
+                                    "wb") as destiny:
+                                shutil.copyfileobj(cached, destiny)
+                        successful |= rec
+
+        # Remove old files for successful backups
+        successful.cleanup()
+
+    @api.model
+    def action_backup_all(self):
+        """Run all scheduled backups."""
+        return self.search([]).action_backup()
+
+    @api.multi
+    @contextmanager
+    def backup_log(self):
+        """Log a backup result."""
+        try:
+            _logger.info("Starting database backup: %s", self.name)
+            yield
+        except:
+            _logger.exception("Database backup failed: %s", self.name)
+            escaped_tb = tools.html_escape(traceback.format_exc())
+            self.message_post(
+                "<p>%s</p><pre>%s</pre>" % (
+                    _("Database backup failed."),
+                    escaped_tb),
+                subtype=self.env.ref("auto_backup.failure"))
+        else:
+            _logger.info("Database backup succeeded: %s", self.name)
+            self.message_post(_("Database backup succeeded."))
+
+    @api.multi
+    def cleanup(self):
+        """Clean up old backups."""
+        now = datetime.now()
+        for rec in self.filtered("days_to_keep"):
+            with rec.cleanup_log():
+                oldest = self.filename(now - timedelta(days=rec.days_to_keep))
+
+                if rec.method == "local":
+                    for name in iglob(os.path.join(rec.folder,
+                                                   "*.dump.zip")):
+                        if os.path.basename(name) < oldest:
+                            os.unlink(name)
+
+                elif rec.method == "sftp":
+                    with rec.sftp_connection() as remote:
+                        for name in remote.listdir(rec.folder):
+                            if (name.endswith(".dump.zip") and
+                                    os.path.basename(name) < oldest):
+                                remote.unlink(name)
+
+    @api.multi
+    @contextmanager
+    def cleanup_log(self):
+        """Log a possible cleanup failure."""
+        try:
+            _logger.info("Starting cleanup process after database backup: %s",
+                         self.name)
+            yield
+        except:
+            _logger.exception("Cleanup of old database backups failed: %s")
+            escaped_tb = tools.html_escape(traceback.format_exc())
+            self.message_post(
+                "<p>%s</p><pre>%s</pre>" % (
+                    _("Cleanup of old database backups failed."),
+                    escaped_tb),
+                subtype=self.env.ref("auto_backup.failure"))
+        else:
+            _logger.info("Cleanup of old database backups succeeded: %s",
+                         self.name)
+
+    @api.model
+    def filename(self, when):
+        """Generate a file name for a backup.
+
+        :param datetime.datetime when:
+            Use this datetime instead of :meth:`datetime.datetime.now`.
+        """
+        return "{:%Y_%m_%d_%H_%M_%S}.dump.zip".format(when)
+
+    @api.multi
+    def sftp_connection(self):
+        """Return a new SFTP connection with found parameters."""
+        params = {
+            "host": self.sftp_host,
+            "username": self.sftp_user,
+            "port": self.sftp_port,
+        }
+        _logger.debug(
+            "Trying to connect to sftp://%(username)s@%(host)s:%(port)d",
+            extra=params)
+        if self.sftp_private_key:
+            params["private_key"] = self.stfpprivatekey
+            if self.sftp_password:
+                params["private_key_pass"] = self.sftp_password
+        else:
+            params["password"] = self.sftp_password
+
+        return pysftp.Connection(**params)
diff --git a/auto_backup/security/ir.model.access.csv b/auto_backup/security/ir.model.access.csv
index e38dbf11be4..ded4108f419 100644
--- a/auto_backup/security/ir.model.access.csv
+++ b/auto_backup/security/ir.model.access.csv
@@ -1,2 +1,3 @@
 id,name,model_id:id,group_id:id,perm_read,perm_write,perm_create,perm_unlink
-access_db_backup,access_db_backup,model_db_backup,,1,0,0,0
+access_db_backup_read,Read db.backup,model_db_backup,base.group_erp_manager,1,0,0,0
+access_db_backup_write,Write db.backup,model_db_backup,base.group_system,1,1,1,1
diff --git a/auto_backup/static/description/icon.png b/auto_backup/static/description/icon.png
new file mode 100644
index 0000000000000000000000000000000000000000..24c59d3f524ce8088277cea5691c18684b9d92db
GIT binary patch
literal 6074
zcmV;r7e(laP)<h;3K|Lk000e1NJLTq003kF003kN1^@s6aN?Cz00004b3#c}2nYxW
zd<bNS00009a7bBm000fw000fw0YWI7cmMzZ8FWQhbW?9;ba!ELWdL_~cP?peYja~^
zaAhuUa%Y?FJQ@H17dJ^nK~#90?VWj)TveUNKX0j5uez(dvywC+VG)5L3ju<R2}u(%
z1aK6DsJMVf&IpV%qk}U#GZ__BP-mP`GGopNM<YuZ9Tp)I5#)eCf`kwwVpv2#wwUyi
z?sRo`RlWVrAGdDx>rPd7b$3;FC**t1JGH&7?(e;OfA{zO{(cV*<1h}RJhX{Eff(w5
zB#;8^*sDSo@JhTMQWy_|GywB~xxkUY9H6=Ic{VT)+4!SHH}EH5H_!^a6?=UXc!7h+
zaMd)31{?=01{MN~fKz~D%N<A8b)oCJrt3PIrVUtt;(H-PaRG>;2mm1jQ4|q|p%6lp
z`!50TBCrd17WiG^b#GPvb(JwzgB$_87g$|bX2pNhbzLM93C%Q3Ow&ZybqvG6FbtFt
zss$kgVHgsIp)wLd5a9bhK@gNO*h|1ez%PKukX_(}V>B(Y0Qe|y9`bI`K{kFenbZ=A
z1g2?{NF*=}ql%|GHpGmB=XrRZ7dMgzJOTV1_zAKLoDfuMkUHR#z^8#z3*QOLvNYSa
zNhXsd5{a6eV67m8!1Fv@*Tr>ReBW0;g}^U?{{}Vz(RiNMa0Y1r{vP;SU>YE7+tyO4
z6t-<wwab}kL{UUOpC_Ns<9S6N;E%vJfLoA;syT*g(N6*20*=siUDVgtYxVW@=(;{0
z=QW`Sf`GohKJxjz>egNW{tDPq>tmNP$W-7*z=fKoiF7)xrPJv{>TakMVHnce+e<E&
z1KD-`JFu1--YtV$c@EO+n4e50nKEU{q#Bqf3ZCcD-Q6vMAkcvOkWP(Li(|!G+Xfy1
z7S-3+Gj;0Jw?+3<2@J!auC7k=eV;H4PeM*=@2knNV(-5Oe5kIjjww^7)Z$nNH8f2l
zl}h2dE>RRMMoun&U-jb@Uh9E9x~@0Onl(#%JB}BXA_xN7+uH%21eR5M|Ef=#4>YDy
zsl&z?2Bv9ZSr)*%fT~ZvltJbIhX?QqQD`R<862%D^g*wOF)~!W-3}XKlHssHCK(PJ
zWRl^qK_(fLL4pZAi-Q+cZ#QL-*FjEt4r6!}+R3E`G_W$r3&5UyJ}(qseHf+Td7dJ(
z9;OE5m6{1gfDc^Y`#z~u>TMZr9}ZCz(b?H4gj8ExfmF6s74fP04&d}K3{UWV|Bzz@
z$BG~b=<MtiVHj$_wZI*<IL_c$$tGZN7=|b0^ZBA;<n4}JE=N~amx!WBL$avX*6LV;
z4dMfL0;Uk+tb9JN`Mysgk$78jBd+VRfB$~P81@2J0^h0SF^B4t-UX}!{v5!zZR+dm
zNhXuEJf8`N5CX?>=<DlKgSP<g0{(#-j2VM5+#sO=7X$wYoB?1MhN!En(`?&5=%hd8
zpd>+#<52K4HKe2SGo<Qd`*@v;GRR3l4ylDLhvi6J*2PFdt0<03CX*zS$%86<9|S>B
zljXW@Tr}5)9I(F+ygbA%&H!Ek_E+<~)Ja@|)E<2q_%DW5RiuIUBbAG*kiuzzqGC}k
zrfE(JBgIvVzVB1u#^bB}0V(eIIdXn6)C{=+xE}ax;2ppl)jZd@LGCWR--#T&epBK0
z3z53sbAhEum17Y~-y7HT4t_rt#01yH*ZAW5ekomVCsNP*3#7ic(nkFt@`9aH_<YO=
zwyg*Q45I70QkI9n50M_lOC#8yj=XA4L8{-?a_o>B>AFzdaVZr%FhBtxQ^KqMz8nJN
z)vpxqzbh=eNARBjRv^dG3kv6}+UXc-X^_UoMoiPBr>940kOc4m@Li-tNR0A0X=ENq
zGxF*>l7YD*Y2>(+EWFwbOx97zA%)SsNEf}gu<S<0l~is>{IfgCbGCpF1J?kj0a%tr
zQ&W>tH9`#xa=@(5wry<N*7Es0*=$zxJnsVJmGK(V{kt3ZH6t@lA2MF{!U)e#Wl@b+
zwp0Q*2YG>h5SR|KP15PK5;xQoWvAh(REkt8h39!>vsoO+IYtQaMc|7_Z|q*+QKXE&
zvqtBaFD$jhJfH<>hz}s8wCK7n>gwvKudg3h$7I;Jh-Fz=mW2>Pb6uBwK9A!#bA=F}
z13riJ*PjO-2c80+LuM>Z#x$}tQu4G2si|r~b~}KaW7)P%DwV>rtO*I^RUD|&G);A9
z2qCmW(hHvF>7M5;5JD^j{-&^cfK>H8S9pCL+1I{_?AQGgho}}($VQ$A99?*SGSV9y
zkY1<jx=<HfA;)FHqp72c9BP_|nhXL6AvERR7Zx)Jg84#-1tm6*kOOX4Vc8#h?;yt;
zkb`k9wp~N)e5WACmTAZ?M!n7~EC(Q-UKg7yO}GIDL;b-qU9p;`6}z_h*Fg{zbNym-
z13e7GIZ+fHIYgr7h@lcl)f^|j6eg&(X#A?*>B=B~gz8hcD%rD4KvDxq`lv-^*~T+&
zg%Ag1<*N6(t``@^C&e2;1s(H97rUxZ26+*9EuYUH)6meMji*-;YtVxNj^n5c_kL<f
z;R>J!xacs2TOMH;($&=^gb*Qc88x^=;<v(Yfp>;sxXAOo!xZiy_`XkPXQv9){2lOr
zwK&e;zG*XXY#4@%a=Dx^3`09qIFHdn2thWRrMtUZDRRC5+*qsQ4K_%GOx4N=Ayzt$
zW4f+8X~O8^jeI`O{{8z!KA+cscHmOr)><BOs6Oc=WY+2XK+f3f>+28su1w{t_x1HD
zg-HP1419&!g@}r%q-9%>q381eP1kjiN~JX0wy`YhkT6aZMYyhu<2X2uqxcgK*a-X^
zBcmY31l5|SAg_eyhgkPy;4guXQ7AH_X_~Mst4QG<Oyf<wtVXPI1ISR%ZNLU3om&p)
zBFVg}-ZgPP<j2UX;Rc3|u$sV1<Q;P^vKS4}AD)O)xTa}N=v^d)D28-m6mFbF43R<6
zhmaKRuZP*?EF?elQEE+472dysEF<x7h5ML;G|aik2<qHHzn7(O)#tHH3<p!UaXL2$
zf>P0k5Gh`G9BG6{fJ_C4(vTvLe?`X9paup}xC9WUX$s^dQ2;+>bZNg+fwO_n0zW`X
zRP(X@mR)pRk91uZhG7WPG({qjC@zL!2*WUhuIrJeX;CHnLspx69La-!8mSZ+!1-4I
z1KB>?0ikJHWEh6p|Is6Fo}qC7g=<+BnM@{Lu4o7H7QLIX1=Ef|X058yen-(y>Dov`
z>Od2+5t@+QV;Xq{3uHuCHFQ+?zK;W`+dmbSO0N8JXhI6AKTCl#v2B~CrY3rNdTK`D
z9$=7kIt@@{3iJ8AD6H3woH*Wvywyj`RZnKrA(_JuA={)*(==h*w${+lfYLed-@kwS
zICTXTPH$*v&<Yf8Qy7MqA!9fhWN__KWXYmGRP&^23=>%!avlR!GN&TN3?@kSFquqZ
z+qR}@T5*hm{+f@#S-?AoI93+vwN)&pD|?5Og6DaP!c~(dg;x40++BsGz0#8yC!}><
zzh2k%tD`8gnwpv-21P1H;tdvP0f!;P9**N^xm?b+ZF`&JIG;zh&yX0ALE=zS%z{5(
zN*~ohe}R@a=%;YspaxOW0u1DsG!IGF&O>%9i!94p(%jsvUwP$~%%4Ah+(JQ_OosdJ
zyDz-=-g~1$5A(l6tv_mm3`Sh0sooEgYsTTxPus?6T$h28pI+pIHA%mBqzW$A(@)>3
zWhw{8=ddh`6Hh#m>#n<QT%<guuw%y#Zn)tFKMccnAtUQ0p$zgDz~-?Sq!i-wgE);F
zV+n^-9#({S{old#Z4^ahvspH5*ibAx6$AlqzWFA#&ZnF@bt==RPcMGH>86{)haZ0U
zmyY9{TW%XQsJ{xtUEQicP5OoisSKcTOHsIk_ZNS!Xk3Pf$@TX3a?UyD6phi^+R8Q8
zT!Z5{qmCdb87l)t7zZGVBKyJ%FAT4^;tC63&6+jF{rBJhUSzjgvJ|Z{$nSv{9LM>y
zAPB}ijjfh6uIsuiU%tHfdBcVcXqv_mM;tM#{S`v;0JkGc=MIIVH*MPV>gv_2nKNe&
z)2C18xZ{q?zxwK{9|XQvY6H~@0=QNPp%rrJMs>224T{T|KYu<Ty~Le6cVgS6WW&S5
z_kFs%y9F}x@XZP~dBd`-t-t!!uZp+(%9ShYQmNEs<u-_4mUjc+3xYt~w{M>~6p9FV
zp2yOqON$=W&Ye3k3}aMLY1egCN;JS#R9N26ahy9Id+f1duy)z9WjKzrgfg|Z2KN)6
z1J(sWpmlU~h-`LJltUjiJkJ}@U2WaEm63MGLI`?#dg$!zB$8dnr;y!MrMP$Z?%j54
ztMv3|%$UKvdGj2kj`#o!Hb{gd@GlcW^kgy_+S}WO<J6=gYE9vJ9-5}HXwf1-dR9Aj
z?5H?tRdMNUZEd2juMcDtd^sbha66O9<Wt+WZ7Y6p_St9GrBbO+lv=smNV*Y8Nc|`X
z0@2mgMSFX@$Y!%OcNMDz*L6Ab%rlF3#52!412F77L={hNYikpkOok|m^1xS-;gxMe
zZd?YA<7|BN(MO9O*|KHJa9wvPa_%$$L%BA4kkQV?z->Vg1er{Rwzf8*f@_o6IKJ<*
zV#SK$=dD|}mK{5SARwE~vTxr$+S=Oa?d>Isq70JzI3Bo;VO-o{@YB~{f8Flr=m4O(
zxtZCsXS<Z>wv<86KnBW6VHeW9I|f)Qg!sL3{aRaF>FDU7r>6(kbxY12CIX)45k(P;
z7cU0nRlj}v_F{JxMG=nUpf0fX_I5Iv44&r+U@MY4ISTkE%2)jPIFeGR1Z}o$Kl9X6
z{h_S0&ptb4+x7w7mNLjZWYqR13JEJEum|btos5i({xk5X@B4mVUmu;FowT;LijIyB
zy1TpS>+4fRhbuhi>cMqgmMmFP?4EY*+Eu&@+S}V{ZEdBitBY(lOBjZINa@pOkWt_j
zNMfy=M{_)qe%Qze9@Ui3=Wid>ZE2q8wE&Ir_2MpvhRnXb2syC-c!>S~wy=B)8B<yb
zoGXM_=KKD9-}eWMoVu<H(=@emS-5IaI5^R>90n(U#<Ok}b=%U?Qe1z_mMw%~sKgAt
z$e`zA$cEiUWrfHrq)6^dl+J$~4)?tB$}8XP>gr<Jv}w$nH;<V!XL@aIZSN!2)&qRN
zL?S^D1T%#Y|AV|@{sSqQ9O^R9A}b#JEVj=R>3;^*q9}?MdY;!ziNIeeXqqMp#wl7y
zNKi=%gK3(acG_ubJGO1x7KCAVJyK2bS|#TYLmhBA@;NHU7vg54$rRXa+xBzYw{Kr~
z{`uzv(9+V9+Pr!5$MgAoX@e9V)S~tD^x!zoS;%qakI0%Qw^A7;s^mn^Gw?1mkcthJ
zd3zN7lx{t-D6SB~5<;YrNthNg`s>i2bLhlg_anR0KOy`33r{`u)XQz#P69mt{PQ@D
z<08A;k)+wpMT$MH0;Xx2CQ_*sjg5_3CX*Re>P9}Fzy0yYAHVMW^UtpX*=^l(&poRO
z|33>Q7(>%EnKo@&vCqxra>oiG)**A&pF&c&KW5|vRETW2JtO`nBY<t&>swk{ie2Ut
zPdpLox_&Q}8DlQ8bjXK*cLTbnX`-&Kj&wR*jWmtBUwrY!Z)GwWnwpw8?zrQaGG$8G
z+1Ys>a1RXO_L`<iQ&SVOX3f$X8yiU^5(ZL*awAeq@DTFhCd-gl@npcszV9D(#u;Y-
zvb%cXi6=bI^L|oh{RZHC<lXZ$l03T+SY}z4K4r=jX3w6jH8nL=i_m(_vaFY%e){R+
z7cDI<$z(G5G4*-aID)S0q|<5A=`=wQC<-^>`~E6qtrL*l$2R00^gCp-=Sz%pwNqW!
z*DPAJ$g8WXO98y}(o6L9^=U}$RSKDbtDdpA49TGvTe`rZlS-v(7Jc?SZ{wCNTh^{x
zwJHU$bm>xk)22-qARPr~M1dXCG-+sPprN6msD~|3xTzor-UGZRwz`iTM-+vt=-bzk
zvYnnW|GPo3EbEgiR;(zxqE9~gBw-lZRG90oq@|fm#p<EgM|zG?6tQd9E|JY<sjsi+
zgcD96olc8PCbJ6IJZj=Y*Y#p?0d=536mB92f>VSLi_7f7M@ox2>8EgW^y{tEI(<l`
zpjKFvYOs-k6z){d^RzS1JhOO!)vH$zn5|DD6vrb?(^$TIx%JRP4_)ecUeO?9u9l$d
z`hZkvb>R3MAx`58Ares(&5WXG##m@vMc)b`IO(L5XlQ6C{x)aMoFTTHJXp4DnepI*
z4_*XV${;TTgH_;Fftmykfg+6?54{YY;g@<wt|}k|(9_d1U@~|xVgCI2Se9i3L9ilj
zkl#3tbDAo8Io=pNh>paoQK9nFPd~l*-R-yE&I1oTQ1w*r*hLdD2B&5A?AgKEwQK8|
zo14)zjU`K#=v%gIc~5){`4`~lU0q$wm@#8qQ=`X<FbpvagPAjB5r_Tz_jBi+cQSqY
z^ik8brQrKMnM_6qA#%ucgi+6_-g@h;FKybi>HSw<eYF8_^wCErlF8)!xIrESt`EcT
z%lr226Vs+mJ7^L<g%AVsP!yq7%?hgdd|nwNLMAP39?Sm1Fx-{P<u0J$b{8JzoEq$9
zeFgBsF#K9aM~7%=Xn5N`<x?SwB6@myRPA0D_z3+e(NlplkzU~r4(!6}k!5xRWIDsJ
z)N3iX_j+U&(T3jM-sW5`CmI?Ww6|L^0VS~O>+4h5Ry&bFMpcAum1&wkZE9-LbGe)m
zMbRHz*F6U*p#@l+NF*Mrudh!BL7@4*-|o8Zdl|aYY1z=pgGk=v+hG{`-QC@^wY7=f
z-rk|)p@#$t<3#cQ3L!d?Ps@Hc{l-Wo5{bL6y6UR*Ew|iKw{hdf<bnkYPOxozo!U<_
znY`<wi!Pde+ika{?zrO)d*#ZNN2XG#VZ{+c#Rs~P)#Kg?d?$*cz5>_GzJ2@1X0wOP
z^F}<+qqn!0_V#u<Iy%T^vj`z}Bl(YaAVqC)S?2=7FjD88cOD>l`in2VI4Oisp`@9v
z>mGl}C70+*UAbn>8q;x{GmsJOvZ!RH{w9(O_$sm}<mH~{o#lC+2E{yzVkYjvP)H^W
z!(tk==Xr5`v4_lixwY_G?uu)7UDxdH?k-AH_w3n&VHm2r%ILZt?A^Q9JpTCOi@%$u
z+2{NIkcmzs37zyHsm&iCxs27oxnUTt%H?uX3xghpVH{8>Y@(j9AcQET${#H7evAJ4
zy$>UMhT-srWm%iou3fwO(n~M3J3BksxN)QBd7gS|f@c`Ue}4VzU;oVImtSuCzR#_<
z-s*&5_>JLqJldApjjZeYL!{fb1et|<Rv3n-gkd-<zOtri!Z3^j)amMTOf+4xX0L*p
zy~pWW6+<f}u-Loz0DXc$GKO&qcT^7;c3t-)d-v{LyMF!pHA09k&-1=btRRi=`(Nnp
z?tb&;n{WOU;JdE-{V0ky47cBET)H9BrHdD=KY|#AD}-1O1i@U&l;10df?+C3Stv8-
zcoM0a`7M$b*oEZOs{uC%f@^~yDEBOpD2k$Wxm<2tncqvIR((l3^7bE`>z?Gm4BXks
zXl*<Lw-HDPA=0rcznlIHT!D-b3#6NA0iQ4Nf6ij`#h+^pt%N>6jCbem(x2W|O}xYN
zye|YnfN7e{m@$LK#zxn5-QQ@MHYo+lQ4}pa`Q(#}p^%=Q9(><#KUAJ)^qOg!nP;DU
zcFO6epH3o?VBNZP$!DH<X7Oa5H_ezagC$Fr6hCj@zCGvr{?<cg>TR0lSDTxgzj)(~
zH`)`GM>twM^2j5sU%$S`_x-sCPe^wdL{apV>$)G<v17;7g$oy&aiVInA`C+|Z{93!
zy6L7M2!am-&mA&%NCEYhWvvf_;1hG_&UKobn+;9VCgn^um&^Gtzx=WphGB>6x}OAo
z3FBDncARk(Qr>#xM4!kI$RpkGtsH(9@#Mw-1A$BQiO%}0761SM07*qoM6N<$g4H*z
AdjJ3c

literal 0
HcmV?d00001

diff --git a/auto_backup/static/description/icon.svg b/auto_backup/static/description/icon.svg
new file mode 100644
index 00000000000..12d9dc53869
--- /dev/null
+++ b/auto_backup/static/description/icon.svg
@@ -0,0 +1,51 @@
+<?xml version="1.0" encoding="UTF-8" standalone="no"?>
+<svg
+   xmlns:dc="http://purl.org/dc/elements/1.1/"
+   xmlns:cc="http://creativecommons.org/ns#"
+   xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
+   xmlns:svg="http://www.w3.org/2000/svg"
+   xmlns="http://www.w3.org/2000/svg"
+   version="1.1"
+   id="svg2"
+   viewBox="0 0 99.999997 99.999997"
+   height="100"
+   width="100">
+  <defs
+     id="defs4" />
+  <metadata
+     id="metadata7">
+    <rdf:RDF>
+      <cc:Work
+         rdf:about="">
+        <dc:format>image/svg+xml</dc:format>
+        <dc:type
+           rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
+        <dc:title></dc:title>
+      </cc:Work>
+    </rdf:RDF>
+  </metadata>
+  <g
+     transform="translate(0,-952.36223)"
+     id="layer1">
+    <text
+       id="text3336"
+       y="1031.6924"
+       x="40.411446"
+       style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:88.29121399px;font-family:'Nuosu SIL';-inkscape-font-specification:'Nuosu SIL';text-align:center;text-anchor:middle;fill:#1a1a1a;fill-opacity:1;stroke:#000000;stroke-width:1.7658242;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+       xml:space="preserve"><tspan
+         style="fill:#1a1a1a;stroke-width:1.7658242"
+         y="1031.6924"
+         x="40.411446"
+         id="tspan3338">???</tspan></text>
+    <text
+       id="text3340"
+       y="1050.2731"
+       x="74.752251"
+       style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:56.87847137px;font-family:'Nuosu SIL';-inkscape-font-specification:'Nuosu SIL';text-align:center;text-anchor:middle;fill:#b3b3b3;fill-opacity:1;stroke:#000000;stroke-width:1.13756943;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+       xml:space="preserve"><tspan
+         style="stroke-width:1.13756943"
+         y="1050.2731"
+         x="74.752251"
+         id="tspan3342">???</tspan></text>
+  </g>
+</svg>
diff --git a/auto_backup/static/description/no_index.html b/auto_backup/static/description/no_index.html
deleted file mode 100644
index 6b3ba3e2b6d..00000000000
--- a/auto_backup/static/description/no_index.html
+++ /dev/null
@@ -1,100 +0,0 @@
-<section class="oe_container">
-    <div class="oe_row oe_spaced">
-        <div class="oe_span12">
-            <h2 class="oe_slogan">Automated backups</h2>
-            <h3 class="oe_slogan">A tool for all your back-ups, internal and external!</h3>
-        </div>
-	<div class="oe_span6">
-            <div class="oe_demo oe_picture oe_screenshot">
-                    <img src="overview.png">
-            </div>
-        </div>
-	<div class="oe_span6">
-            <p class="oe_mt32">
-		Keep your Odoo data safe with this module. Take automated back-ups, remove them automatically 
-		and even write them to an external server through an encrypted tunnel.
-		You can even specify how long local backups and external backups should be kept, automatically!
-            </p>
-            <div class="oe_centeralign oe_websiteonly">
-                <a href="http://www.openerp.com/start?app=mail" class="oe_button oe_big oe_tacky">Start your <span class="oe_emph">free</span> trial</a>
-            </div>
-        </div>
-    </div>
-</section>
-<!-- Second block -->
-<section class="oe_container oe_dark">
-    <div class="oe_row oe_spaced">
-        <h2 class="oe_slogan">Connect with an FTP Server</h2>
-        <h3 class="oe_slogan">Keep your data safe, through an SSH tunnel!</h3>
-        <div class="oe_span6">
-            <p class="oe_mt32">
-		Want to go even further and write your backups to an external server?
-		You can with this module! Specify the credentials to the server, specify a path and 			everything will be backed up automatically. This is done through an SSH (encrypted) tunnel, 			thanks to pysftp, so your data is safe!
-
-            </p>
-        </div>
-        <div class="oe_span6">
-            <div class="oe_row_img oe_centered">
-                <img class="oe_picture oe_screenshot" src="terminalssh.png">
-            </div>
-        </div>
-    </div>
-</section>
-<!--Third block -->
-<section class="oe_container">
-    <div class="oe_row oe_spaced">
-        <div class="oe_span12">
-            <h2 class="oe_slogan">Test connection</h2>
-            <h3 class="oe_slogan">Checks your credentials in one click</h3>
-        </div>
-	<div class="oe_span6">
-            <div class="oe_demo oe_picture oe_screenshot">
-                    <img src="testconnection.png">
-		    <img src="testconnectionfailed.png">
-            </div>
-        </div>
-	<div class="oe_span6">
-            <p class="oe_mt32">
-		Want to make sure if the connection details are correct and if Odoo can automatically write them to the remote server? Simply click on the 'Test SFTP Connection' button and you will get message telling you if everything is OK, or what is wrong!
-            </p>
-        </div>
-    </div>
-</section>
-<!-- Fourth block -->
-<section class="oe_container oe_dark">
-    <div class="oe_row oe_spaced">
-        <h2 class="oe_slogan">E-mail on backup failure</h2>
-        <h3 class="oe_slogan">Stay informed of problems, automatically!</h3>
-        <div class="oe_span6">
-            <p class="oe_mt32">
-		Do you want to know if the database backup failed? Check the checkbox 'Auto. E-mail on backup fail' and fill in your e-mail.
-		Every time a backup fails you will get an e-mail in your mailbox with technical details.
-            </p>
-        </div>
-        <div class="oe_span6">
-            <div class="oe_row_img oe_centered">
-                <img class="oe_picture oe_screenshot" src="emailnotification.png">
-            </div>
-        </div>
-    </div>
-</section>
-<!--Fifth block -->
-<section class="oe_container">
-    <div class="oe_row oe_spaced">
-        <div class="oe_span12">
-            <h2 class="oe_slogan">Contact / Support</h2>
-            <h3 class="oe_slogan">Need help or want extra features?</h3>
-        </div>
-	<div class="oe_span6">
-            <div class="oe_demo oe_picture oe_screenshot">
-                    <a href="http://www.vanroey.be/appplications/bedrijfsbeheer/odoo"><img src="logo.png"></a>
-            </div>
-        </div>
-	<div class="oe_span6">
-            <p class="oe_mt32">
-		Need help with the configuration or want this module to have more functionalities?
-		Contact us through e-mail at <a href="mailto:"yenthe.vanginneken@vanroey.be">yenthe.vanginneken@vanroey.be</a> or <a href="mailto:"tony.crols@vanroey.be">tony.crols@vanroey.be</a>
-            </p>
-        </div>
-    </div>
-</section>
diff --git a/auto_backup/tests/__init__.py b/auto_backup/tests/__init__.py
index 01e81ba8a05..37b76001129 100644
--- a/auto_backup/tests/__init__.py
+++ b/auto_backup/tests/__init__.py
@@ -1,22 +1,7 @@
 # -*- coding: utf-8 -*-
-##############################################################################
-#
-#    Copyright 2015 Agile Business Group <http://www.agilebg.com>
-#    Copyright (C) 2015 Alessio Gerace <alesiso.gerace@agilebg.com>
-#
-#    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/>.
-#
-##############################################################################
+# ?? 2015 Agile Business Group <http://www.agilebg.com>
+# ?? 2015 Alessio Gerace <alesiso.gerace@agilebg.com>
+# ?? 2016 Grupo ESOC Ingenier??a de Servicios, S.L.U. - Jairo Llopis
+# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl.html).
 
 from . import test_auto_backup
diff --git a/auto_backup/tests/test_auto_backup.py b/auto_backup/tests/test_auto_backup.py
index e2e6fee4550..3a1bad5ba43 100644
--- a/auto_backup/tests/test_auto_backup.py
+++ b/auto_backup/tests/test_auto_backup.py
@@ -1,56 +1,28 @@
 # -*- coding: utf-8 -*-
-##############################################################################
-#
-#    Copyright 2015 Agile Business Group <http://www.agilebg.com>
-#    Copyright (C) 2015 Alessio Gerace <alesiso.gerace@agilebg.com>
-#
-#    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/>.
-#
-##############################################################################
+# ?? 2015 Agile Business Group <http://www.agilebg.com>
+# ?? 2015 Alessio Gerace <alesiso.gerace@agilebg.com>
+# ?? 2016 Grupo ESOC Ingenier??a de Servicios, S.L.U. - Jairo Llopis
+# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl.html).
 
-from openerp.tests import common
-from openerp.exceptions import except_orm
 import os
-import time
+from datetime import datetime
+from openerp.tests import common
 
 
 class TestsAutoBackup(common.TransactionCase):
 
     def setUp(self):
         super(TestsAutoBackup, self).setUp()
-        self.abk_model = self.env["db.backup"]
-        self.cron_model = self.env["ir.cron"]
-
-    def test_0(self):
-        with self.assertRaises(except_orm):
-            self.abk_model.create(
-                {
-                    'name': 'abcd',
-                    'adminpassword': 'admin'
-                }
-            )
-
-    def test_1(self):
-        this = self.abk_model.create(
+        self.abk = self.env["db.backup"].create(
             {
-                'bkp_dir': '/tmp'
+                'name': u'T??st backup',
             }
         )
-        self.assertEqual(this.bkp_dir, '/tmp')
-        bkp_file = '%s_%s.dump.zip' % (
-            time.strftime('%d_%m_%Y_%H_%M_%S'),
-            this.name)
-        file_path = os.path.join(this.bkp_dir, bkp_file)
-        this.schedule_backup()
-        self.assertTrue(os.path.isfile(file_path))
+
+    def test_local(self):
+        """A local database is backed up."""
+        filename = self.abk.filename(datetime.now())
+        self.abk.action_backup()
+        generated_backup = [f for f in os.listdir(self.abk.folder)
+                            if f >= filename]
+        self.assertEqual(len(generated_backup), 1)
diff --git a/auto_backup/view/bkp_conf_view.xml b/auto_backup/view/bkp_conf_view.xml
deleted file mode 100644
index cb2281b088e..00000000000
--- a/auto_backup/view/bkp_conf_view.xml
+++ /dev/null
@@ -1,100 +0,0 @@
-<?xml version="1.0"?>
-<openerp>
-    <data>
-
-        <record model="ir.ui.view" id="view_backup_conf_form">
-            <field name="name">Configure Backup</field>
-            <field name="model">db.backup</field>
-            <field name="type">form</field>
-            <field name="arch" type="xml">
-                <form string="Test">
-                    <group col="4" colspan="4">
-                        <separator col="2" string="Local backup configuration"/>
-                    </group>
-                    <group>
-                        <field name="name"/>
-                        <field name="bkp_dir"/>
-                        <field name="autoremove"/>
-                        <field name="daystokeep" attrs="{'invisible': [('autoremove','=',False)]}"/>
-                    </group>
-                    <group col="4" colspan="4">
-                        <separator col="2" string="SFTP"/>
-                    </group>
-                    <div
-                        style="width:50%;border-radius:10px;
-                               margin: 10px 0px;
-                               padding:15px 10px 15px 10px;
-                               background-repeat:
-                               no-repeat;background-position: 10px center;
-                               color: #9F6000;background-color: #FEEFB3;"
-                        attrs="{'invisible': [('sftpwrite','=',False)]}">
-                        <b>Warning:</b>
-                        Use SFTP with caution! This writes files to external servers under the path you specify.
-                    </div>
-                    <group>
-                        <field name="sftpwrite"/>
-                        <field name="sftpip" attrs="{'invisible':[('sftpwrite', '==', False)],'required':[('sftpwrite', '==', True)]}"/>
-                        <field name="sftpport" attrs="{'invisible':[('sftpwrite', '==', False)],'required':[('sftpwrite', '==', True)]}"/>
-                        <field name="sftpusername" attrs="{'invisible':[('sftpwrite', '==', False)],'required':[('sftpwrite', '==', True)]}"/>
-                        <field name="sftppassword" attrs="{'invisible':[('sftpwrite', '==', False)],'required':[('sftpwrite', '==', True)]}" password="True"/>
-                        <field name="sftppath" attrs="{'invisible':[('sftpwrite', '==', False)],'required':[('sftpwrite', '==', True)]}" placeholder="For example: /odoo/backups/"/>
-                        <field name="daystokeepsftp" attrs="{'invisible':[('sftpwrite', '==', False)],'required':[('sftpwrite', '==', True)]}"/>
-                        <field name="sendmailsftpfail" attrs="{'invisible': [('sftpwrite','=',False)]}"/>
-                        <field name="emailtonotify" attrs="{'invisible':['|',('sendmailsftpfail', '==', False),
-                        ('sftpwrite', '==', False)],'required':[('sendmailsftpfail', '==', True)]}"/>
-                        <button name="test_sftp_connection" type="object" attrs="{'invisible': [('sftpwrite','=',False)]}" string="Test SFTP Connection" icon="gtk-network"/>
-                    </group>
-                    <separator string="Help" colspan="2"/>
-                    <div>
-                        This configures the scheduler for automatic backup of the given database running on given host at given port on regular intervals.
-                        <br/>
-                        Automatic backups of the database can be scheduled as follows:
-                        <ol>
-                            <li>Go to Settings / Technical / Automation / Scheduled Actions.</li>
-                            <li>Search the action named 'Backup scheduler'.</li>
-                            <li>Set the scheduler to active and fill in how often you want backups generated.</li>
-                        </ol>
-                    </div>
-                </form>
-            </field>
-        </record>
-
-        <record model="ir.ui.view" id="view_backup_conf_tree">
-            <field name="name">Configure Backup</field>
-            <field name="model">db.backup</field>
-            <field name="type">tree</field>
-            <field name="arch" type="xml">
-                <tree string="Backups">
-                    <field name='name'/>
-                    <field name='bkp_dir'/>
-                    <field name="autoremove"/>
-                    <field name="sftpip"/>
-                </tree>
-            </field>
-        </record>
-
-        <record model="ir.ui.view" id="view_backup_conf_search">
-            <field name="name">Configure Backup</field>
-            <field name="model">db.backup</field>
-            <field name="type">search</field>
-            <field name="arch" type="xml">
-                <search string="Search options">
-                    <field name='name'/>
-                    <field name='bkp_dir'/>
-                    <field name="autoremove"/>
-                    <field name="sftpip"/>
-                </search>
-            </field>
-        </record>
-
-        <record model="ir.actions.act_window" id="action_backup_conf_form">
-            <field name="name">Configure Backup</field>
-            <field name="res_model">db.backup</field>
-            <field name="view_type">form</field>
-            <field name='view_mode'>tree,form</field>
-            <field name='view_id' ref='view_backup_conf_tree'/>
-        </record>
-        <menuitem parent="base.menu_config" action="action_backup_conf_form" id="backup_conf_menu"/>
-
-    </data>
-</openerp>
diff --git a/auto_backup/view/db_backup_view.xml b/auto_backup/view/db_backup_view.xml
new file mode 100644
index 00000000000..d1f11e4420b
--- /dev/null
+++ b/auto_backup/view/db_backup_view.xml
@@ -0,0 +1,108 @@
+<?xml version="1.0"?>
+<openerp>
+<data>
+
+    <record model="ir.ui.view" id="view_backup_conf_form">
+        <field name="name">Automated Backups</field>
+        <field name="model">db.backup</field>
+        <field name="type">form</field>
+        <field name="arch" type="xml">
+            <form>
+                <h1><field name="name"/></h1>
+
+                <group string="Basic backup configuration">
+                    <field name="folder"/>
+                    <field name="days_to_keep"/>
+                    <field name="method"/>
+                </group>
+                <div attrs="{'invisible': [('method', '!=', 'sftp')]}">
+                    <div class="bg-warning text-warning">
+                        <h3>Warning:</h3>
+                        Use SFTP with caution! This writes files to external servers under the path you specify.
+                    </div>
+                    <group string="SFTP Settings">
+                        <field name="sftp_host" placeholder="sftp.example.com"/>
+                        <field name="sftp_port"/>
+                        <field name="sftp_user" placeholder="john"/>
+                        <field name="sftp_password"/>
+                        <field
+                            name="sftp_private_key"
+                            placeholder="/home/odoo/.ssh/id_rsa"/>
+                        <button
+                            name="action_sftp_test_connection"
+                            type="object"
+                            string="Test SFTP Connection"
+                            icon="gtk-network"/>
+                    </group>
+                </div>
+                <separator string="Help" colspan="2"/>
+                <div>
+                    Automatic backups of the database can be scheduled as follows:
+                    <ol>
+                        <li>Go to Settings / Technical / Automation / Scheduled Actions.</li>
+                        <li>Search the action named 'Backup scheduler'.</li>
+                        <li>Set the scheduler to active and fill in how often you want backups generated.</li>
+                    </ol>
+                </div>
+            </form>
+        </field>
+    </record>
+
+    <record model="ir.ui.view" id="view_backup_conf_tree">
+        <field name="name">Automated Backups</field>
+        <field name="model">db.backup</field>
+        <field name="type">tree</field>
+        <field name="arch" type="xml">
+            <tree string="Backups">
+                <field name='name'/>
+                <field name='folder'/>
+                <field name="sftp_host"/>
+            </tree>
+        </field>
+    </record>
+
+    <record model="ir.ui.view" id="view_backup_conf_search">
+        <field name="name">Automated Backups</field>
+        <field name="model">db.backup</field>
+        <field name="type">search</field>
+        <field name="arch" type="xml">
+            <search string="Search options">
+                <field name='name'/>
+                <field name='folder'/>
+                <field name="sftp_host"/>
+            </search>
+        </field>
+    </record>
+
+    <act_window
+        name="Automated Backups"
+        id="action_backup_conf_form"
+        res_model="db.backup"/>
+
+    <menuitem
+        parent="base.menu_config"
+        action="action_backup_conf_form"
+        id="backup_conf_menu"/>
+
+    <!-- Execute backup from "More" menu -->
+    <record id="action_server_backup" model="ir.actions.server">
+        <field name="name">Execute backup(s)</field>
+        <field name="model_id" ref="model_db_backup"/>
+        <field name="code">
+            object.action_backup()
+        </field>
+    </record>
+
+    <record model="ir.values" id="action_backup">
+        <field name="name">Execute backup(s)</field>
+        <field name="action_id" ref="action_server_backup" />
+        <field
+            name="value"
+            eval="'ir.actions.server,%d' % ref('action_server_backup')" />
+        <field name="key">action</field>
+        <field name="model_id" ref="model_db_backup" />
+        <field name="model">db.backup</field>
+        <field name="key2">client_action_multi</field>
+    </record>
+</data>
+</openerp>

From 9ec085835b20b12c7b578f268d393af53e49f88c Mon Sep 17 00:00:00 2001
From: archetipo <alessio.gerace@gmail.com>
Date: Tue, 22 Mar 2016 17:01:27 +0100
Subject: [PATCH 04/52] FIX License type

---
 auto_backup/models/__init__.py  | 2 +-
 auto_backup/models/db_backup.py | 2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/auto_backup/models/__init__.py b/auto_backup/models/__init__.py
index 93ebdcad94e..50c79cdf26a 100644
--- a/auto_backup/models/__init__.py
+++ b/auto_backup/models/__init__.py
@@ -1,6 +1,6 @@
 # -*- coding: utf-8 -*-
 # ?? 2004-2009 Tiny SPRL (<http://tiny.be>).
 # ?? 2016 Grupo ESOC Ingenier??a de Servicios, S.L.U. - Jairo Llopis
-# License GPL-3.0 or later (http://www.gnu.org/licenses/gpl.html).
+# License AGPL-3.0 or later (http://www.gnu.org/licenses/gpl.html).
 
 from . import db_backup
diff --git a/auto_backup/models/db_backup.py b/auto_backup/models/db_backup.py
index 6e08d2a2fb5..485ed2a4718 100644
--- a/auto_backup/models/db_backup.py
+++ b/auto_backup/models/db_backup.py
@@ -2,7 +2,7 @@
 # ?? 2004-2009 Tiny SPRL (<http://tiny.be>).
 # ?? 2015 Agile Business Group <http://www.agilebg.com>
 # ?? 2016 Grupo ESOC Ingenier??a de Servicios, S.L.U. - Jairo Llopis
-# License GPL-3.0 or later (http://www.gnu.org/licenses/gpl.html).
+# License AGPL-3.0 or later (http://www.gnu.org/licenses/gpl.html).
 
 import os
 import shutil

From 93676c7aeda63dbf97ca43a0f8f8ffa70f8c416d Mon Sep 17 00:00:00 2001
From: Javi Melendez <javimelex@gmail.com>
Date: Wed, 18 May 2016 09:01:49 +0200
Subject: [PATCH 05/52] [FIX] auto_backup: bad reference to field
 sftp_private_key (#423)

Bump module version to 8.0.1.0.1
---
 auto_backup/__openerp__.py      | 2 +-
 auto_backup/models/db_backup.py | 6 ++----
 2 files changed, 3 insertions(+), 5 deletions(-)

diff --git a/auto_backup/__openerp__.py b/auto_backup/__openerp__.py
index 2960813b9ad..b094e39067d 100644
--- a/auto_backup/__openerp__.py
+++ b/auto_backup/__openerp__.py
@@ -7,7 +7,7 @@
 {
     "name": "Database Auto-Backup",
     "summary": "Backups database",
-    "version": "8.0.1.0.0",
+    "version": "8.0.1.0.1",
     "author": (
         "VanRoey.be - Yenthe Van Ginneken, Agile Business Group,"
         " Grupo ESOC Ingenier??a de Servicios,"
diff --git a/auto_backup/models/db_backup.py b/auto_backup/models/db_backup.py
index 485ed2a4718..6a1af98a251 100644
--- a/auto_backup/models/db_backup.py
+++ b/auto_backup/models/db_backup.py
@@ -6,7 +6,6 @@
 
 import os
 import shutil
-import tempfile
 import traceback
 from contextlib import contextmanager
 from datetime import datetime, timedelta
@@ -165,8 +164,7 @@ def action_backup(self):
             if backup:
                 cached = open(backup)
             else:
-                cached = tempfile.TemporaryFile()
-                db.dump_db(self.env.cr.dbname, cached)
+                cached = db.dump_db(self.env.cr.dbname, None)
 
             with cached:
                 for rec in sftp:
@@ -274,7 +272,7 @@ def sftp_connection(self):
             "Trying to connect to sftp://%(username)s@%(host)s:%(port)d",
             extra=params)
         if self.sftp_private_key:
-            params["private_key"] = self.stfpprivatekey
+            params["private_key"] = self.sftp_private_key
             if self.sftp_password:
                 params["private_key_pass"] = self.sftp_password
         else:

From 9985541e8272dbdf3861a2ef3a9b6abb051104b0 Mon Sep 17 00:00:00 2001
From: David Beal <david.beal@akretion.com>
Date: Thu, 26 May 2016 08:28:37 +0200
Subject: [PATCH 06/52] [FIX] logger db_backup for pysftp (#419)

---
 auto_backup/i18n/de.po          | 329 ++++++++++++++++-----------
 auto_backup/i18n/en.po          | 368 ++++++++++++++++++++++++++++++
 auto_backup/i18n/es.po          | 369 ++++++++++++++++++++++++++++++
 auto_backup/i18n/fi.po          | 368 ++++++++++++++++++++++++++++++
 auto_backup/i18n/fr.po          | 369 ++++++++++++++++++++++++++++++
 auto_backup/i18n/fr_CA.po       | 358 ++++++++++++++++++++++++++++++
 auto_backup/i18n/it.po          | 382 +++++++++++++++++---------------
 auto_backup/i18n/pt_BR.po       | 369 ++++++++++++++++++++++++++++++
 auto_backup/i18n/ru.po          | 358 ++++++++++++++++++++++++++++++
 auto_backup/i18n/sl.po          | 369 ++++++++++++++++++++++++++++++
 auto_backup/i18n/tr.po          | 358 ++++++++++++++++++++++++++++++
 auto_backup/i18n/zh_CN.po       | 328 ++++++++++++++++-----------
 auto_backup/models/db_backup.py |   2 +-
 13 files changed, 3883 insertions(+), 444 deletions(-)
 create mode 100644 auto_backup/i18n/en.po
 create mode 100644 auto_backup/i18n/es.po
 create mode 100644 auto_backup/i18n/fi.po
 create mode 100644 auto_backup/i18n/fr.po
 create mode 100644 auto_backup/i18n/fr_CA.po
 create mode 100644 auto_backup/i18n/pt_BR.po
 create mode 100644 auto_backup/i18n/ru.po
 create mode 100644 auto_backup/i18n/sl.po
 create mode 100644 auto_backup/i18n/tr.po

diff --git a/auto_backup/i18n/de.po b/auto_backup/i18n/de.po
index 6486c62614d..17d3046d47c 100644
--- a/auto_backup/i18n/de.po
+++ b/auto_backup/i18n/de.po
@@ -1,43 +1,37 @@
 # Translation of Odoo Server.
 # This file contains the translation of the following modules:
-# 	* auto_backup
-#
+# * auto_backup
+# 
+# Translators:
 msgid ""
 msgstr ""
-"Project-Id-Version: Odoo Server 8.0\n"
+"Project-Id-Version: server-tools (8.0)\n"
 "Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2015-03-26 14:17+0000\n"
-"PO-Revision-Date: 2015-04-17 11:24+0100\n"
-"Last-Translator: Martin Schmid <m.schmid@equitania.de>\n"
-"Language-Team: Equitania Software GmbH <info@myodoo.de>\n"
+"POT-Creation-Date: 2016-04-14 07:02+0000\n"
+"PO-Revision-Date: 2016-04-05 07:21+0000\n"
+"Last-Translator: OCA Transbot <transbot@odoo-community.org>\n"
+"Language-Team: German (http://www.transifex.com/oca/OCA-server-tools-8-0/language/de/)\n"
 "MIME-Version: 1.0\n"
 "Content-Type: text/plain; charset=UTF-8\n"
-"Content-Transfer-Encoding: 8bit\n"
-"Plural-Forms: nplurals=2; plural=(n != 1);\n"
-"X-Generator: Poedit 1.7.5\n"
+"Content-Transfer-Encoding: \n"
 "Language: de\n"
-"X-Poedit-SourceCharset: UTF-8\n"
+"Plural-Forms: nplurals=2; plural=(n != 1);\n"
 
 #. module: auto_backup
-#: code:addons/auto_backup/backup_scheduler.py:137
-#, python-format
-msgid "%s"
-msgstr "%s"
+#: view:db.backup:auto_backup.view_backup_conf_form
+msgid "/home/odoo/.ssh/id_rsa"
+msgstr ""
 
 #. module: auto_backup
-#: help:db.backup,bkp_dir:0
+#: help:db.backup,folder:0
 msgid "Absolute path for storing the backups"
 msgstr "Absoluter Pfad zum Speichern der Sicherungen"
 
 #. module: auto_backup
-#: field:db.backup,sendmailsftpfail:0
-msgid "Auto. E-mail on backup fail"
-msgstr "Auto. E-Mail, wenn Datensicherung fehlschl??gt"
-
-#. module: auto_backup
-#: field:db.backup,autoremove:0
-msgid "Auto. Remove Backups"
-msgstr "Auto. Entfernen von Sicherungen"
+#: model:ir.actions.act_window,name:auto_backup.action_backup_conf_form
+#: model:ir.ui.menu,name:auto_backup.backup_conf_menu
+msgid "Automated Backups"
+msgstr ""
 
 #. module: auto_backup
 #: view:db.backup:auto_backup.view_backup_conf_form
@@ -45,9 +39,14 @@ msgid "Automatic backups of the database can be scheduled as follows:"
 msgstr "Automatische Sicherungen der Datenbank k??nnen wie folgt geplant werden:"
 
 #. module: auto_backup
-#: field:db.backup,bkp_dir:0
-msgid "Backup Directory"
-msgstr "Sicherungs-Verzeichnis"
+#: model:mail.message.subtype,name:auto_backup.failure
+msgid "Backup failed"
+msgstr ""
+
+#. module: auto_backup
+#: model:mail.message.subtype,name:auto_backup.success
+msgid "Backup successful"
+msgstr ""
 
 #. module: auto_backup
 #: view:db.backup:auto_backup.view_backup_conf_tree
@@ -55,33 +54,44 @@ msgid "Backups"
 msgstr "Sicherungen"
 
 #. module: auto_backup
-#: help:db.backup,daystokeepsftp:0
+#: help:db.backup,days_to_keep:0
 msgid ""
-"Choose after how many days the backup should be deleted from the FTP server. For example:\n"
-"If you fill in 5 the backups will be removed after 5 days from the FTP server."
+"Backups older than this will be deleted automatically. Set 0 to disable "
+"autodeletion."
 msgstr ""
-"W??hlen Sie, nach wie vielen Tagen die Sicherung vom FTP-Server gel??scht werden soll. Beispiel: \n"
-"Wenn Sie \"5\" angeben, werden die Sicherungen nach 5 Tagen vom FTP-Server entfernt."
 
 #. module: auto_backup
-#: help:db.backup,daystokeep:0
-msgid ""
-"Choose after how many days the backup should be deleted. For example:\n"
-"If you fill in 5 the backups will be removed after 5 days."
+#: view:db.backup:auto_backup.view_backup_conf_form
+msgid "Basic backup configuration"
 msgstr ""
-"W??hlen Sie, nach wie vielen Tagen die Sicherung vom FTP-Server gel??scht werden soll. Beispiel: \n"
-"Wenn Sie \"5\" angeben, werden die Sicherungen nach 5 Tagen vom FTP-Server entfernt."
 
 #. module: auto_backup
-#: model:ir.actions.act_window,name:auto_backup.action_backup_conf_form
-#: model:ir.ui.menu,name:auto_backup.backup_conf_menu
-msgid "Configure Backup"
-msgstr "Backup einstellen"
+#: sql_constraint:db.backup:0
+msgid "Cannot duplicate a configuration."
+msgstr ""
 
 #. module: auto_backup
-#: view:db.backup:auto_backup.view_backup_conf_form
-msgid "Contact us!"
-msgstr "Sprechen Sie uns an!"
+#: help:db.backup,method:0
+msgid "Choose the storage method for this backup."
+msgstr ""
+
+#. module: auto_backup
+#: code:addons/auto_backup/models/db_backup.py:249
+#, python-format
+msgid "Cleanup of old database backups failed."
+msgstr ""
+
+#. module: auto_backup
+#: code:addons/auto_backup/models/db_backup.py:132
+#, python-format
+msgid "Connection Test Failed!"
+msgstr ""
+
+#. module: auto_backup
+#: code:addons/auto_backup/models/db_backup.py:129
+#, python-format
+msgid "Connection Test Succeeded!"
+msgstr ""
 
 #. module: auto_backup
 #: field:db.backup,create_uid:0
@@ -94,35 +104,55 @@ msgid "Created on"
 msgstr "Erstellt am:"
 
 #. module: auto_backup
-#: field:db.backup,name:0
-msgid "Database"
-msgstr "Datenbank"
+#: code:addons/auto_backup/models/db_backup.py:208
+#: model:mail.message.subtype,description:auto_backup.failure
+#, python-format
+msgid "Database backup failed."
+msgstr ""
 
 #. module: auto_backup
-#: help:db.backup,name:0
-msgid "Database you want to schedule backups for"
-msgstr "Datenbank Sicherungen einplanen f??r"
+#: code:addons/auto_backup/models/db_backup.py:213
+#: model:mail.message.subtype,description:auto_backup.success
+#, python-format
+msgid "Database backup succeeded."
+msgstr ""
+
+#. module: auto_backup
+#: help:db.backup,message_last_post:0
+msgid "Date of the last message posted on the record."
+msgstr "Datum der letzten Meldung zu diesem Datensatz."
 
 #. module: auto_backup
-#: field:db.backup,emailtonotify:0
-msgid "E-mail to notify"
-msgstr "E-Mail Benachrichtigen"
+#: field:db.backup,days_to_keep:0
+msgid "Days to keep"
+msgstr ""
 
 #. module: auto_backup
-#: code:addons/auto_backup/backup_scheduler.py:106 constraint:db.backup:0
+#: code:addons/auto_backup/models/db_backup.py:120
 #, python-format
-msgid "Error ! No such database exists!"
-msgstr "Fehler! Keine solche Datenbank vorhanden!"
+msgid ""
+"Do not save backups on your filestore, or you will backup your backups too!"
+msgstr ""
 
 #. module: auto_backup
-#: help:db.backup,emailtonotify:0
-msgid "Fill in the e-mail where you want to be notified that the backup failed on the FTP."
-msgstr "Geben Sie die E-Mail-Adresse an, die bei Sicherungsfehlern auf dem FTP verwendet werden soll."
+#: model:ir.model,name:auto_backup.model_db_backup
+msgid "Email Thread"
+msgstr "Email-Thread"
 
 #. module: auto_backup
-#: view:db.backup:auto_backup.view_backup_conf_form
-msgid "For example: /odoo/backups/"
-msgstr "Zum Beispiel: /odoo/Backups /"
+#: model:ir.actions.server,name:auto_backup.action_server_backup
+msgid "Execute backup(s)"
+msgstr ""
+
+#. module: auto_backup
+#: field:db.backup,folder:0
+msgid "Folder"
+msgstr ""
+
+#. module: auto_backup
+#: field:db.backup,message_follower_ids:0
+msgid "Followers"
+msgstr ""
 
 #. module: auto_backup
 #: view:db.backup:auto_backup.view_backup_conf_form
@@ -135,9 +165,16 @@ msgid "Help"
 msgstr "Hilfe"
 
 #. module: auto_backup
-#: field:db.backup,host:0
-msgid "Host"
-msgstr "Host"
+#: help:db.backup,message_summary:0
+msgid ""
+"Holds the Chatter summary (number of messages, ...). This summary is "
+"directly in html format in order to be inserted in kanban views."
+msgstr ""
+
+#. module: auto_backup
+#: sql_constraint:db.backup:0
+msgid "I cannot remove backups from the future. Ask Doc for that."
+msgstr ""
 
 #. module: auto_backup
 #: field:db.backup,id:0
@@ -145,24 +182,19 @@ msgid "ID"
 msgstr "ID"
 
 #. module: auto_backup
-#: field:db.backup,sftpip:0
-msgid "IP Address SFTP Server"
-msgstr "IP-Adresse SFTP-Server"
-
-#. module: auto_backup
-#: help:db.backup,sendmailsftpfail:0
-msgid "If you check this option you can choose to automaticly get e-mailed when the backup to the external server failed."
-msgstr "Wenn Sie diese Option aktivieren, erhalten Sie automatisch eine e-Mail, wenn die Sicherung mit dem externen Server fehlgeschlagen ist."
+#: help:db.backup,message_unread:0
+msgid "If checked new messages require your attention."
+msgstr ""
 
 #. module: auto_backup
-#: help:db.backup,autoremove:0
-msgid "If you check this option you can choose to automaticly remove the backup after xx days"
-msgstr "Wenn Sie diese Option aktivieren, k??nnen Sie die Sicherung automatisch nach Xx Tagen entfernen"
+#: field:db.backup,message_is_follower:0
+msgid "Is a Follower"
+msgstr ""
 
 #. module: auto_backup
-#: help:db.backup,sftpwrite:0
-msgid "If you check this option you can specify the details needed to write to a remote server with SFTP."
-msgstr "Wenn Sie diese Option aktivieren, k??nnen Sie Details f??r einen entfernten SFTP-Server angeben."
+#: field:db.backup,message_last_post:0
+msgid "Last Message Date"
+msgstr ""
 
 #. module: auto_backup
 #: field:db.backup,write_uid:0
@@ -175,50 +207,67 @@ msgid "Last Updated on"
 msgstr "Zuletzt aktualisiert am"
 
 #. module: auto_backup
-#: view:db.backup:auto_backup.view_backup_conf_form
-msgid "Local backup configuration"
-msgstr "Lokale Sicherungs-Konfiguration"
+#: selection:db.backup,method:0
+msgid "Local disk"
+msgstr ""
 
 #. module: auto_backup
-#: view:db.backup:auto_backup.view_backup_conf_form
-msgid "Need more help?"
-msgstr "Ben??tigen Sie weitere Hilfe?"
+#: field:db.backup,message_ids:0
+msgid "Messages"
+msgstr ""
 
 #. module: auto_backup
-#: field:db.backup,sftppassword:0
-msgid "Password User SFTP Server"
-msgstr "Passwort Benutzer SFTP-Server"
+#: help:db.backup,message_ids:0
+msgid "Messages and communication history"
+msgstr ""
 
 #. module: auto_backup
-#: field:db.backup,sftppath:0
-msgid "Path external server"
-msgstr "Externen Server Pfad"
+#: field:db.backup,method:0
+msgid "Method"
+msgstr "Methode"
 
 #. module: auto_backup
-#: field:db.backup,port:0
-msgid "Port"
-msgstr "Port"
+#: field:db.backup,name:0
+msgid "Name"
+msgstr "Name"
 
 #. module: auto_backup
-#: field:db.backup,daystokeepsftp:0
-msgid "Remove SFTP after x days"
-msgstr "SFTP nach x Tagen entfernen"
+#: help:db.backup,sftp_private_key:0
+msgid ""
+"Path to the private key file. Only the Odoo user should have read "
+"permissions for that file."
+msgstr ""
 
 #. module: auto_backup
-#: field:db.backup,daystokeep:0
-msgid "Remove after x days"
-msgstr "Entfernen nach x Tagen"
+#: field:db.backup,sftp_private_key:0
+msgid "Private key location"
+msgstr ""
 
 #. module: auto_backup
-#: view:db.backup:auto_backup.view_backup_conf_form
-msgid "SFTP"
-msgstr "SFTP"
+#: selection:db.backup,method:0
+msgid "Remote SFTP server"
+msgstr ""
 
 #. module: auto_backup
-#: field:db.backup,sftpport:0
+#: field:db.backup,sftp_password:0
+msgid "SFTP Password"
+msgstr ""
+
+#. module: auto_backup
+#: field:db.backup,sftp_port:0
 msgid "SFTP Port"
 msgstr "SFTP-Port"
 
+#. module: auto_backup
+#: field:db.backup,sftp_host:0
+msgid "SFTP Server"
+msgstr ""
+
+#. module: auto_backup
+#: view:db.backup:auto_backup.view_backup_conf_form
+msgid "SFTP Settings"
+msgstr ""
+
 #. module: auto_backup
 #: view:db.backup:auto_backup.view_backup_conf_search
 msgid "Search options"
@@ -231,13 +280,20 @@ msgstr "Suchen Sie die Aktion mit dem Namen \"Backup Scheduler\"."
 
 #. module: auto_backup
 #: view:db.backup:auto_backup.view_backup_conf_form
-msgid "Set the scheduler to active and fill in how often you want backups generated."
+msgid ""
+"Set the scheduler to active and fill in how often you want backups "
+"generated."
 msgstr "Setzen Sie die Aktion auf aktiv und geben Sie an wie oft die Sicherungen erstellt werden soll."
 
 #. module: auto_backup
-#: view:db.backup:auto_backup.view_backup_conf_form
-msgid "Test"
-msgstr "Test"
+#: field:db.backup,message_summary:0
+msgid "Summary"
+msgstr ""
+
+#. module: auto_backup
+#: help:db.backup,name:0
+msgid "Summary of this backup process"
+msgstr ""
 
 #. module: auto_backup
 #: view:db.backup:auto_backup.view_backup_conf_form
@@ -245,48 +301,46 @@ msgid "Test SFTP Connection"
 msgstr "Verbindung testen"
 
 #. module: auto_backup
-#: help:db.backup,sftpip:0
-msgid "The IP address from your remote server. For example 192.168.0.1"
-msgstr "Die IP-Adresse Ihres entfernten Servers. Zum Beispiel 192.168.0.1"
-
-#. module: auto_backup
-#: help:db.backup,sftppath:0
+#: help:db.backup,sftp_host:0
 msgid ""
-"The location to the folder where the dumps should be written to. For example /odoo/backups/.\n"
-"Files will then be written to /odoo/backups/ on your remote server."
+"The host name or IP address from your remote server. For example 192.168.0.1"
 msgstr ""
-"Der Speicherort f??r den Ordner an dem die Sicherungen in gespeichert werden sollen. Zum Beispiel wird /odoo/backups/.\n"
-"Files geschrieben zu /odoo/backups / / auf dem remote Server."
 
 #. module: auto_backup
-#: help:db.backup,sftppassword:0
-msgid "The password from the user where the SFTP connection should be made with. This is the password from the user on the external server."
-msgstr "Das Kennwort des Benutzers mit dem die SFTP-Verbindung mit hergestellt werden soll. Dies ist das Kennwort des Benutzers auf dem externen Server."
+#: help:db.backup,sftp_password:0
+msgid ""
+"The password for the SFTP connection. If you specify a private key file, "
+"then this is the password to decrypt it."
+msgstr ""
 
 #. module: auto_backup
-#: help:db.backup,sftpport:0
+#: help:db.backup,sftp_port:0
 msgid "The port on the FTP server that accepts SSH/SFTP calls."
 msgstr "Der Port auf dem FTP-Server, der SSH/SFTP Anfragen annimmt."
 
 #. module: auto_backup
-#: help:db.backup,sftpusername:0
-msgid "The username where the SFTP connection should be made with. This is the user on the external server."
+#: help:db.backup,sftp_user:0
+msgid ""
+"The username where the SFTP connection should be made with. This is the user"
+" on the external server."
 msgstr "Der Benutzername mit dem die SFTP-Verbindung mit hergestellt werden soll. Dies ist der Benutzer auf dem externen Server."
 
 #. module: auto_backup
-#: view:db.backup:auto_backup.view_backup_conf_form
-msgid "This configures the scheduler for automatic backup of the given database running on given host at given port on regular intervals."
-msgstr "Dies ist Konfiguration der Aktion automatisierte Backups der Datenbank auf dem angegebenen Server durchzuf??hren."
+#: field:db.backup,message_unread:0
+msgid "Unread Messages"
+msgstr ""
 
 #. module: auto_backup
 #: view:db.backup:auto_backup.view_backup_conf_form
-msgid "Use SFTP with caution! This writes files to external servers under the path you specify."
+msgid ""
+"Use SFTP with caution! This writes files to external servers under the path "
+"you specify."
 msgstr "Verwenden Sie SFTP mit Vorsicht! Dies schreibt Dateien auf externen Servern unter dem Pfad, den Sie angeben."
 
 #. module: auto_backup
-#: field:db.backup,sftpusername:0
-msgid "Username SFTP Server"
-msgstr "Benutzername SFTP-Server"
+#: field:db.backup,sftp_user:0
+msgid "Username in the SFTP Server"
+msgstr ""
 
 #. module: auto_backup
 #: view:db.backup:auto_backup.view_backup_conf_form
@@ -294,6 +348,11 @@ msgid "Warning:"
 msgstr "Warnung:"
 
 #. module: auto_backup
-#: field:db.backup,sftpwrite:0
-msgid "Write to external server with sftp"
-msgstr "Auf externen Server mit SFTP schreiben"
+#: view:db.backup:auto_backup.view_backup_conf_form
+msgid "john"
+msgstr ""
+
+#. module: auto_backup
+#: view:db.backup:auto_backup.view_backup_conf_form
+msgid "sftp.example.com"
+msgstr ""
diff --git a/auto_backup/i18n/en.po b/auto_backup/i18n/en.po
new file mode 100644
index 00000000000..58bbc8a971e
--- /dev/null
+++ b/auto_backup/i18n/en.po
@@ -0,0 +1,368 @@
+# Translation of Odoo Server.
+# This file contains the translation of the following modules:
+# * auto_backup
+# 
+# Translators:
+msgid ""
+msgstr ""
+"Project-Id-Version: server-tools (8.0)\n"
+"Report-Msgid-Bugs-To: \n"
+"POT-Creation-Date: 2016-05-28 02:41+0000\n"
+"PO-Revision-Date: 2016-05-04 19:15+0000\n"
+"Last-Translator: OCA Transbot <transbot@odoo-community.org>\n"
+"Language-Team: English (http://www.transifex.com/oca/OCA-server-tools-8-0/language/en/)\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: \n"
+"Language: en\n"
+"Plural-Forms: nplurals=2; plural=(n != 1);\n"
+
+#. module: auto_backup
+#: view:db.backup:auto_backup.view_backup_conf_form
+msgid "/home/odoo/.ssh/id_rsa"
+msgstr "/home/odoo/.ssh/id_rsa"
+
+#. module: auto_backup
+#: help:db.backup,folder:0
+msgid "Absolute path for storing the backups"
+msgstr "Absolute path for storing the backups"
+
+#. module: auto_backup
+#: model:ir.actions.act_window,name:auto_backup.action_backup_conf_form
+#: model:ir.ui.menu,name:auto_backup.backup_conf_menu
+msgid "Automated Backups"
+msgstr "Automated Backups"
+
+#. module: auto_backup
+#: view:db.backup:auto_backup.view_backup_conf_form
+msgid "Automatic backups of the database can be scheduled as follows:"
+msgstr "Automatic backups of the database can be scheduled as follows:"
+
+#. module: auto_backup
+#: model:mail.message.subtype,name:auto_backup.failure
+msgid "Backup failed"
+msgstr "Backup failed"
+
+#. module: auto_backup
+#: model:mail.message.subtype,name:auto_backup.success
+msgid "Backup successful"
+msgstr "Backup successful"
+
+#. module: auto_backup
+#: view:db.backup:auto_backup.view_backup_conf_tree
+msgid "Backups"
+msgstr "Backups"
+
+#. module: auto_backup
+#: help:db.backup,days_to_keep:0
+msgid ""
+"Backups older than this will be deleted automatically. Set 0 to disable "
+"autodeletion."
+msgstr "Backups older than this will be deleted automatically. Set 0 to disable autodeletion."
+
+#. module: auto_backup
+#: view:db.backup:auto_backup.view_backup_conf_form
+msgid "Basic backup configuration"
+msgstr "Basic backup configuration"
+
+#. module: auto_backup
+#: sql_constraint:db.backup:0
+msgid "Cannot duplicate a configuration."
+msgstr "Cannot duplicate a configuration."
+
+#. module: auto_backup
+#: help:db.backup,method:0
+msgid "Choose the storage method for this backup."
+msgstr "Choose the storage method for this backup."
+
+#. module: auto_backup
+#: code:addons/auto_backup/models/db_backup.py:247
+#, python-format
+msgid "Cleanup of old database backups failed."
+msgstr "Cleanup of old database backups failed."
+
+#. module: auto_backup
+#: code:addons/auto_backup/models/db_backup.py:131
+#, python-format
+msgid "Connection Test Failed!"
+msgstr "Connection Test Failed!"
+
+#. module: auto_backup
+#: code:addons/auto_backup/models/db_backup.py:128
+#, python-format
+msgid "Connection Test Succeeded!"
+msgstr "Connection Test Succeeded!"
+
+#. module: auto_backup
+#: field:db.backup,create_uid:0
+msgid "Created by"
+msgstr "Created by"
+
+#. module: auto_backup
+#: field:db.backup,create_date:0
+msgid "Created on"
+msgstr "Created on"
+
+#. module: auto_backup
+#: code:addons/auto_backup/models/db_backup.py:206
+#: model:mail.message.subtype,description:auto_backup.failure
+#, python-format
+msgid "Database backup failed."
+msgstr "Database backup failed."
+
+#. module: auto_backup
+#: code:addons/auto_backup/models/db_backup.py:211
+#: model:mail.message.subtype,description:auto_backup.success
+#, python-format
+msgid "Database backup succeeded."
+msgstr "Database backup succeeded."
+
+#. module: auto_backup
+#: help:db.backup,message_last_post:0
+msgid "Date of the last message posted on the record."
+msgstr "Date of the last message posted on the record."
+
+#. module: auto_backup
+#: field:db.backup,days_to_keep:0
+msgid "Days to keep"
+msgstr "Days to keep"
+
+#. module: auto_backup
+#: field:db.backup,display_name:0
+msgid "Display Name"
+msgstr "Display Name"
+
+#. module: auto_backup
+#: code:addons/auto_backup/models/db_backup.py:119
+#, python-format
+msgid ""
+"Do not save backups on your filestore, or you will backup your backups too!"
+msgstr "Do not save backups on your filestore, or you will backup your backups too!"
+
+#. module: auto_backup
+#: model:ir.model,name:auto_backup.model_db_backup
+msgid "Email Thread"
+msgstr "Email Thread"
+
+#. module: auto_backup
+#: model:ir.actions.server,name:auto_backup.action_server_backup
+msgid "Execute backup(s)"
+msgstr "Execute backup(s)"
+
+#. module: auto_backup
+#: field:db.backup,folder:0
+msgid "Folder"
+msgstr "Folder"
+
+#. module: auto_backup
+#: field:db.backup,message_follower_ids:0
+msgid "Followers"
+msgstr "Followers"
+
+#. module: auto_backup
+#: view:db.backup:auto_backup.view_backup_conf_form
+msgid "Go to Settings / Technical / Automation / Scheduled Actions."
+msgstr "Go to Settings / Technical / Automation / Scheduled Actions."
+
+#. module: auto_backup
+#: view:db.backup:auto_backup.view_backup_conf_form
+msgid "Help"
+msgstr "Help"
+
+#. module: auto_backup
+#: help:db.backup,message_summary:0
+msgid ""
+"Holds the Chatter summary (number of messages, ...). This summary is "
+"directly in html format in order to be inserted in kanban views."
+msgstr "Holds the Chatter summary (number of messages, ...). This summary is directly in html format in order to be inserted in kanban views."
+
+#. module: auto_backup
+#: sql_constraint:db.backup:0
+msgid "I cannot remove backups from the future. Ask Doc for that."
+msgstr "I cannot remove backups from the future. Ask Doc for that."
+
+#. module: auto_backup
+#: field:db.backup,id:0
+msgid "ID"
+msgstr "ID"
+
+#. module: auto_backup
+#: help:db.backup,message_unread:0
+msgid "If checked new messages require your attention."
+msgstr "If checked new messages require your attention."
+
+#. module: auto_backup
+#: field:db.backup,message_is_follower:0
+msgid "Is a Follower"
+msgstr "Is a Follower"
+
+#. module: auto_backup
+#: field:db.backup,message_last_post:0
+msgid "Last Message Date"
+msgstr "Last Message Date"
+
+#. module: auto_backup
+#: field:db.backup,__last_update:0
+msgid "Last Modified on"
+msgstr "Last Modified on"
+
+#. module: auto_backup
+#: field:db.backup,write_uid:0
+msgid "Last Updated by"
+msgstr "Last Updated by"
+
+#. module: auto_backup
+#: field:db.backup,write_date:0
+msgid "Last Updated on"
+msgstr "Last Updated on"
+
+#. module: auto_backup
+#: selection:db.backup,method:0
+msgid "Local disk"
+msgstr "Local disk"
+
+#. module: auto_backup
+#: field:db.backup,message_ids:0
+msgid "Messages"
+msgstr "Messages"
+
+#. module: auto_backup
+#: help:db.backup,message_ids:0
+msgid "Messages and communication history"
+msgstr "Messages and communication history"
+
+#. module: auto_backup
+#: field:db.backup,method:0
+msgid "Method"
+msgstr "Method"
+
+#. module: auto_backup
+#: field:db.backup,name:0
+msgid "Name"
+msgstr "Name"
+
+#. module: auto_backup
+#: help:db.backup,sftp_private_key:0
+msgid ""
+"Path to the private key file. Only the Odoo user should have read "
+"permissions for that file."
+msgstr "Path to the private key file. Only the Odoo user should have read permissions for that file."
+
+#. module: auto_backup
+#: field:db.backup,sftp_private_key:0
+msgid "Private key location"
+msgstr "Private key location"
+
+#. module: auto_backup
+#: selection:db.backup,method:0
+msgid "Remote SFTP server"
+msgstr "Remote SFTP server"
+
+#. module: auto_backup
+#: field:db.backup,sftp_password:0
+msgid "SFTP Password"
+msgstr "SFTP Password"
+
+#. module: auto_backup
+#: field:db.backup,sftp_port:0
+msgid "SFTP Port"
+msgstr "SFTP Port"
+
+#. module: auto_backup
+#: field:db.backup,sftp_host:0
+msgid "SFTP Server"
+msgstr "SFTP Server"
+
+#. module: auto_backup
+#: view:db.backup:auto_backup.view_backup_conf_form
+msgid "SFTP Settings"
+msgstr "SFTP Settings"
+
+#. module: auto_backup
+#: view:db.backup:auto_backup.view_backup_conf_search
+msgid "Search options"
+msgstr "Search options"
+
+#. module: auto_backup
+#: view:db.backup:auto_backup.view_backup_conf_form
+msgid "Search the action named 'Backup scheduler'."
+msgstr "Search the action named 'Backup scheduler'."
+
+#. module: auto_backup
+#: view:db.backup:auto_backup.view_backup_conf_form
+msgid ""
+"Set the scheduler to active and fill in how often you want backups "
+"generated."
+msgstr "Set the scheduler to active and fill in how often you want backups generated."
+
+#. module: auto_backup
+#: field:db.backup,message_summary:0
+msgid "Summary"
+msgstr "Summary"
+
+#. module: auto_backup
+#: help:db.backup,name:0
+msgid "Summary of this backup process"
+msgstr "Summary of this backup process"
+
+#. module: auto_backup
+#: view:db.backup:auto_backup.view_backup_conf_form
+msgid "Test SFTP Connection"
+msgstr "Test SFTP Connection"
+
+#. module: auto_backup
+#: help:db.backup,sftp_host:0
+msgid ""
+"The host name or IP address from your remote server. For example 192.168.0.1"
+msgstr "The host name or IP address from your remote server. For example 192.168.0.1"
+
+#. module: auto_backup
+#: help:db.backup,sftp_password:0
+msgid ""
+"The password for the SFTP connection. If you specify a private key file, "
+"then this is the password to decrypt it."
+msgstr "The password for the SFTP connection. If you specify a private key file, then this is the password to decrypt it."
+
+#. module: auto_backup
+#: help:db.backup,sftp_port:0
+msgid "The port on the FTP server that accepts SSH/SFTP calls."
+msgstr "The port on the FTP server that accepts SSH/SFTP calls."
+
+#. module: auto_backup
+#: help:db.backup,sftp_user:0
+msgid ""
+"The username where the SFTP connection should be made with. This is the user"
+" on the external server."
+msgstr "The username where the SFTP connection should be made with. This is the user on the external server."
+
+#. module: auto_backup
+#: field:db.backup,message_unread:0
+msgid "Unread Messages"
+msgstr "Unread Messages"
+
+#. module: auto_backup
+#: view:db.backup:auto_backup.view_backup_conf_form
+msgid ""
+"Use SFTP with caution! This writes files to external servers under the path "
+"you specify."
+msgstr "Use SFTP with caution! This writes files to external servers under the path you specify."
+
+#. module: auto_backup
+#: field:db.backup,sftp_user:0
+msgid "Username in the SFTP Server"
+msgstr "Username in the SFTP Server"
+
+#. module: auto_backup
+#: view:db.backup:auto_backup.view_backup_conf_form
+msgid "Warning:"
+msgstr "Warning:"
+
+#. module: auto_backup
+#: view:db.backup:auto_backup.view_backup_conf_form
+msgid "john"
+msgstr "john"
+
+#. module: auto_backup
+#: view:db.backup:auto_backup.view_backup_conf_form
+msgid "sftp.example.com"
+msgstr "sftp.example.com"
diff --git a/auto_backup/i18n/es.po b/auto_backup/i18n/es.po
new file mode 100644
index 00000000000..dd4fc220b21
--- /dev/null
+++ b/auto_backup/i18n/es.po
@@ -0,0 +1,369 @@
+# Translation of Odoo Server.
+# This file contains the translation of the following modules:
+# * auto_backup
+# 
+# Translators:
+# Carles Antoli <carlesantoli@hotmail.com>, 2016
+msgid ""
+msgstr ""
+"Project-Id-Version: server-tools (8.0)\n"
+"Report-Msgid-Bugs-To: \n"
+"POT-Creation-Date: 2016-05-28 02:41+0000\n"
+"PO-Revision-Date: 2016-05-27 15:24+0000\n"
+"Last-Translator: OCA Transbot <transbot@odoo-community.org>\n"
+"Language-Team: Spanish (http://www.transifex.com/oca/OCA-server-tools-8-0/language/es/)\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: \n"
+"Language: es\n"
+"Plural-Forms: nplurals=2; plural=(n != 1);\n"
+
+#. module: auto_backup
+#: view:db.backup:auto_backup.view_backup_conf_form
+msgid "/home/odoo/.ssh/id_rsa"
+msgstr "/home/odoo/.ssh/id_rsa"
+
+#. module: auto_backup
+#: help:db.backup,folder:0
+msgid "Absolute path for storing the backups"
+msgstr "Ruta absoluta para almacenar las copias de seguridad"
+
+#. module: auto_backup
+#: model:ir.actions.act_window,name:auto_backup.action_backup_conf_form
+#: model:ir.ui.menu,name:auto_backup.backup_conf_menu
+msgid "Automated Backups"
+msgstr "Copias de seguridad automatizadas"
+
+#. module: auto_backup
+#: view:db.backup:auto_backup.view_backup_conf_form
+msgid "Automatic backups of the database can be scheduled as follows:"
+msgstr "Copias de seguridad autom??ticas de la base de datos se pueden programar de la siguiente manera:"
+
+#. module: auto_backup
+#: model:mail.message.subtype,name:auto_backup.failure
+msgid "Backup failed"
+msgstr "La copia de seguridad ha fallado"
+
+#. module: auto_backup
+#: model:mail.message.subtype,name:auto_backup.success
+msgid "Backup successful"
+msgstr "Copia de seguridad realizada con ??xito"
+
+#. module: auto_backup
+#: view:db.backup:auto_backup.view_backup_conf_tree
+msgid "Backups"
+msgstr "Copias de seguridad"
+
+#. module: auto_backup
+#: help:db.backup,days_to_keep:0
+msgid ""
+"Backups older than this will be deleted automatically. Set 0 to disable "
+"autodeletion."
+msgstr "Las copias de seguridad m??s antiguas que ??sta se eliminar??n de forma autom??tica. Establecer a 0 para desactivar el borrado autom??tico."
+
+#. module: auto_backup
+#: view:db.backup:auto_backup.view_backup_conf_form
+msgid "Basic backup configuration"
+msgstr "Configuraci??n b??sica de la copia de seguridad"
+
+#. module: auto_backup
+#: sql_constraint:db.backup:0
+msgid "Cannot duplicate a configuration."
+msgstr "No se puede duplicar una configuraci??n."
+
+#. module: auto_backup
+#: help:db.backup,method:0
+msgid "Choose the storage method for this backup."
+msgstr "Elija el m??todo de almacenamiento para esta copia de seguridad."
+
+#. module: auto_backup
+#: code:addons/auto_backup/models/db_backup.py:247
+#, python-format
+msgid "Cleanup of old database backups failed."
+msgstr "La limpieza de las copias de seguridad de las bases de datos antiguas ha fallado."
+
+#. module: auto_backup
+#: code:addons/auto_backup/models/db_backup.py:131
+#, python-format
+msgid "Connection Test Failed!"
+msgstr "Error en la prueba de conexi??n!"
+
+#. module: auto_backup
+#: code:addons/auto_backup/models/db_backup.py:128
+#, python-format
+msgid "Connection Test Succeeded!"
+msgstr "Prueba de conexi??n correcta!"
+
+#. module: auto_backup
+#: field:db.backup,create_uid:0
+msgid "Created by"
+msgstr "Creado por"
+
+#. module: auto_backup
+#: field:db.backup,create_date:0
+msgid "Created on"
+msgstr "Creado el"
+
+#. module: auto_backup
+#: code:addons/auto_backup/models/db_backup.py:206
+#: model:mail.message.subtype,description:auto_backup.failure
+#, python-format
+msgid "Database backup failed."
+msgstr "La copia de seguridad de la base de datos ha fallado."
+
+#. module: auto_backup
+#: code:addons/auto_backup/models/db_backup.py:211
+#: model:mail.message.subtype,description:auto_backup.success
+#, python-format
+msgid "Database backup succeeded."
+msgstr "La copia de seguridad de la base de datos se realizo correctamente"
+
+#. module: auto_backup
+#: help:db.backup,message_last_post:0
+msgid "Date of the last message posted on the record."
+msgstr "Fecha del ??ltimo mensaje publicado en el registro."
+
+#. module: auto_backup
+#: field:db.backup,days_to_keep:0
+msgid "Days to keep"
+msgstr "D??as para conservar"
+
+#. module: auto_backup
+#: field:db.backup,display_name:0
+msgid "Display Name"
+msgstr "Nombre a mostrar"
+
+#. module: auto_backup
+#: code:addons/auto_backup/models/db_backup.py:119
+#, python-format
+msgid ""
+"Do not save backups on your filestore, or you will backup your backups too!"
+msgstr "No guardar las copias de seguridad en su almac??n de archivos, o se copiaran las copias de seguridad tambi??n!"
+
+#. module: auto_backup
+#: model:ir.model,name:auto_backup.model_db_backup
+msgid "Email Thread"
+msgstr "Hilo correo electr??nico"
+
+#. module: auto_backup
+#: model:ir.actions.server,name:auto_backup.action_server_backup
+msgid "Execute backup(s)"
+msgstr "Ejecutar copia(s) de seguridad"
+
+#. module: auto_backup
+#: field:db.backup,folder:0
+msgid "Folder"
+msgstr "Carpeta"
+
+#. module: auto_backup
+#: field:db.backup,message_follower_ids:0
+msgid "Followers"
+msgstr "Seguidores"
+
+#. module: auto_backup
+#: view:db.backup:auto_backup.view_backup_conf_form
+msgid "Go to Settings / Technical / Automation / Scheduled Actions."
+msgstr "Ir a Configuraci??n / T??cnico / Automatizaci??n / Acciones Planificadas"
+
+#. module: auto_backup
+#: view:db.backup:auto_backup.view_backup_conf_form
+msgid "Help"
+msgstr "Ayuda"
+
+#. module: auto_backup
+#: help:db.backup,message_summary:0
+msgid ""
+"Holds the Chatter summary (number of messages, ...). This summary is "
+"directly in html format in order to be inserted in kanban views."
+msgstr "Guarda el resumen de la Charla (n??mero de mensajes, ...). Este resumen es en formato html directamente para ser insertado en vistas kanban."
+
+#. module: auto_backup
+#: sql_constraint:db.backup:0
+msgid "I cannot remove backups from the future. Ask Doc for that."
+msgstr "No puedo eliminar las copias de seguridad desde el futuro. Consulta la documentaci??n para eso."
+
+#. module: auto_backup
+#: field:db.backup,id:0
+msgid "ID"
+msgstr "ID"
+
+#. module: auto_backup
+#: help:db.backup,message_unread:0
+msgid "If checked new messages require your attention."
+msgstr "Si se marca los nuevos mensajes requerir??n su atenci??n."
+
+#. module: auto_backup
+#: field:db.backup,message_is_follower:0
+msgid "Is a Follower"
+msgstr "Es seguidor"
+
+#. module: auto_backup
+#: field:db.backup,message_last_post:0
+msgid "Last Message Date"
+msgstr "Fecha del ??ltimo mensaje"
+
+#. module: auto_backup
+#: field:db.backup,__last_update:0
+msgid "Last Modified on"
+msgstr "??ltima actualizaci??n por"
+
+#. module: auto_backup
+#: field:db.backup,write_uid:0
+msgid "Last Updated by"
+msgstr "??ltima actualizaci??n por"
+
+#. module: auto_backup
+#: field:db.backup,write_date:0
+msgid "Last Updated on"
+msgstr "??ltima actualizaci??n el"
+
+#. module: auto_backup
+#: selection:db.backup,method:0
+msgid "Local disk"
+msgstr "Disco local"
+
+#. module: auto_backup
+#: field:db.backup,message_ids:0
+msgid "Messages"
+msgstr "Mensajes"
+
+#. module: auto_backup
+#: help:db.backup,message_ids:0
+msgid "Messages and communication history"
+msgstr "Hist??rico de mensajes y comunicaciones"
+
+#. module: auto_backup
+#: field:db.backup,method:0
+msgid "Method"
+msgstr "M??todo"
+
+#. module: auto_backup
+#: field:db.backup,name:0
+msgid "Name"
+msgstr "Nombre"
+
+#. module: auto_backup
+#: help:db.backup,sftp_private_key:0
+msgid ""
+"Path to the private key file. Only the Odoo user should have read "
+"permissions for that file."
+msgstr "Ruta del archivo de clave privada. S??lo el usuario Odoo debe tener permisos de lectura para ese archivo."
+
+#. module: auto_backup
+#: field:db.backup,sftp_private_key:0
+msgid "Private key location"
+msgstr "Ubicaci??n de la clave privada"
+
+#. module: auto_backup
+#: selection:db.backup,method:0
+msgid "Remote SFTP server"
+msgstr "Servidor remoto SFTP"
+
+#. module: auto_backup
+#: field:db.backup,sftp_password:0
+msgid "SFTP Password"
+msgstr "Contrase??a SFTP"
+
+#. module: auto_backup
+#: field:db.backup,sftp_port:0
+msgid "SFTP Port"
+msgstr "Puerto SFTP"
+
+#. module: auto_backup
+#: field:db.backup,sftp_host:0
+msgid "SFTP Server"
+msgstr "Servidor SFTP"
+
+#. module: auto_backup
+#: view:db.backup:auto_backup.view_backup_conf_form
+msgid "SFTP Settings"
+msgstr "Configuraci??n de SFTP"
+
+#. module: auto_backup
+#: view:db.backup:auto_backup.view_backup_conf_search
+msgid "Search options"
+msgstr "Opciones de b??squeda"
+
+#. module: auto_backup
+#: view:db.backup:auto_backup.view_backup_conf_form
+msgid "Search the action named 'Backup scheduler'."
+msgstr "Buscar la acci??n llamada 'Backup sheduler'."
+
+#. module: auto_backup
+#: view:db.backup:auto_backup.view_backup_conf_form
+msgid ""
+"Set the scheduler to active and fill in how often you want backups "
+"generated."
+msgstr "Ajuste el programador para activar y rellenar con qu?? frecuencia desea las copias de seguridad generadas."
+
+#. module: auto_backup
+#: field:db.backup,message_summary:0
+msgid "Summary"
+msgstr "Resumen"
+
+#. module: auto_backup
+#: help:db.backup,name:0
+msgid "Summary of this backup process"
+msgstr "Resumen de este proceso de copia de seguridad"
+
+#. module: auto_backup
+#: view:db.backup:auto_backup.view_backup_conf_form
+msgid "Test SFTP Connection"
+msgstr "Prueba de conexi??n SFTP"
+
+#. module: auto_backup
+#: help:db.backup,sftp_host:0
+msgid ""
+"The host name or IP address from your remote server. For example 192.168.0.1"
+msgstr "El nombre del host o la direcci??n IP de su servidor remoto. Por ejemplo 192.168.0.1"
+
+#. module: auto_backup
+#: help:db.backup,sftp_password:0
+msgid ""
+"The password for the SFTP connection. If you specify a private key file, "
+"then this is the password to decrypt it."
+msgstr "La contrase??a para la conexi??n SFTP. Si se especifica un archivo de clave privada, entonces esta es la contrase??a para descifrarlo."
+
+#. module: auto_backup
+#: help:db.backup,sftp_port:0
+msgid "The port on the FTP server that accepts SSH/SFTP calls."
+msgstr "El puerto en el servidor FTP que acepta llamadas de SSH/SFTP."
+
+#. module: auto_backup
+#: help:db.backup,sftp_user:0
+msgid ""
+"The username where the SFTP connection should be made with. This is the user"
+" on the external server."
+msgstr "El nombre de usuario donde la conexi??n SFTP se debe hacer con. Este es el usuario en el servidor externo."
+
+#. module: auto_backup
+#: field:db.backup,message_unread:0
+msgid "Unread Messages"
+msgstr "Mensajes sin leer"
+
+#. module: auto_backup
+#: view:db.backup:auto_backup.view_backup_conf_form
+msgid ""
+"Use SFTP with caution! This writes files to external servers under the path "
+"you specify."
+msgstr "Utilizar SFTP con precauci??n! Escribe archivos a servidores externos en la ruta que especifique."
+
+#. module: auto_backup
+#: field:db.backup,sftp_user:0
+msgid "Username in the SFTP Server"
+msgstr "Nombre del usuario en el servidor SFTP"
+
+#. module: auto_backup
+#: view:db.backup:auto_backup.view_backup_conf_form
+msgid "Warning:"
+msgstr "Advertencia:"
+
+#. module: auto_backup
+#: view:db.backup:auto_backup.view_backup_conf_form
+msgid "john"
+msgstr "john"
+
+#. module: auto_backup
+#: view:db.backup:auto_backup.view_backup_conf_form
+msgid "sftp.example.com"
+msgstr "sftp.example.com"
diff --git a/auto_backup/i18n/fi.po b/auto_backup/i18n/fi.po
new file mode 100644
index 00000000000..4ba73930969
--- /dev/null
+++ b/auto_backup/i18n/fi.po
@@ -0,0 +1,368 @@
+# Translation of Odoo Server.
+# This file contains the translation of the following modules:
+# * auto_backup
+# 
+# Translators:
+msgid ""
+msgstr ""
+"Project-Id-Version: server-tools (8.0)\n"
+"Report-Msgid-Bugs-To: \n"
+"POT-Creation-Date: 2016-06-09 18:30+0000\n"
+"PO-Revision-Date: 2016-06-06 13:57+0000\n"
+"Last-Translator: Jarmo Kortetj??rvi <jarmo.kortetjarvi@gmail.com>\n"
+"Language-Team: Finnish (http://www.transifex.com/oca/OCA-server-tools-8-0/language/fi/)\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: \n"
+"Language: fi\n"
+"Plural-Forms: nplurals=2; plural=(n != 1);\n"
+
+#. module: auto_backup
+#: view:db.backup:auto_backup.view_backup_conf_form
+msgid "/home/odoo/.ssh/id_rsa"
+msgstr ""
+
+#. module: auto_backup
+#: help:db.backup,folder:0
+msgid "Absolute path for storing the backups"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.actions.act_window,name:auto_backup.action_backup_conf_form
+#: model:ir.ui.menu,name:auto_backup.backup_conf_menu
+msgid "Automated Backups"
+msgstr ""
+
+#. module: auto_backup
+#: view:db.backup:auto_backup.view_backup_conf_form
+msgid "Automatic backups of the database can be scheduled as follows:"
+msgstr ""
+
+#. module: auto_backup
+#: model:mail.message.subtype,name:auto_backup.failure
+msgid "Backup failed"
+msgstr ""
+
+#. module: auto_backup
+#: model:mail.message.subtype,name:auto_backup.success
+msgid "Backup successful"
+msgstr ""
+
+#. module: auto_backup
+#: view:db.backup:auto_backup.view_backup_conf_tree
+msgid "Backups"
+msgstr ""
+
+#. module: auto_backup
+#: help:db.backup,days_to_keep:0
+msgid ""
+"Backups older than this will be deleted automatically. Set 0 to disable "
+"autodeletion."
+msgstr ""
+
+#. module: auto_backup
+#: view:db.backup:auto_backup.view_backup_conf_form
+msgid "Basic backup configuration"
+msgstr ""
+
+#. module: auto_backup
+#: sql_constraint:db.backup:0
+msgid "Cannot duplicate a configuration."
+msgstr ""
+
+#. module: auto_backup
+#: help:db.backup,method:0
+msgid "Choose the storage method for this backup."
+msgstr ""
+
+#. module: auto_backup
+#: code:addons/auto_backup/models/db_backup.py:247
+#, python-format
+msgid "Cleanup of old database backups failed."
+msgstr ""
+
+#. module: auto_backup
+#: code:addons/auto_backup/models/db_backup.py:131
+#, python-format
+msgid "Connection Test Failed!"
+msgstr ""
+
+#. module: auto_backup
+#: code:addons/auto_backup/models/db_backup.py:128
+#, python-format
+msgid "Connection Test Succeeded!"
+msgstr ""
+
+#. module: auto_backup
+#: field:db.backup,create_uid:0
+msgid "Created by"
+msgstr "Luonut"
+
+#. module: auto_backup
+#: field:db.backup,create_date:0
+msgid "Created on"
+msgstr "Luotu"
+
+#. module: auto_backup
+#: code:addons/auto_backup/models/db_backup.py:206
+#: model:mail.message.subtype,description:auto_backup.failure
+#, python-format
+msgid "Database backup failed."
+msgstr ""
+
+#. module: auto_backup
+#: code:addons/auto_backup/models/db_backup.py:211
+#: model:mail.message.subtype,description:auto_backup.success
+#, python-format
+msgid "Database backup succeeded."
+msgstr ""
+
+#. module: auto_backup
+#: help:db.backup,message_last_post:0
+msgid "Date of the last message posted on the record."
+msgstr "Viimeisimm??n l??hetetyn viestin p??iv??ys."
+
+#. module: auto_backup
+#: field:db.backup,days_to_keep:0
+msgid "Days to keep"
+msgstr ""
+
+#. module: auto_backup
+#: field:db.backup,display_name:0
+msgid "Display Name"
+msgstr "Nimi"
+
+#. module: auto_backup
+#: code:addons/auto_backup/models/db_backup.py:119
+#, python-format
+msgid ""
+"Do not save backups on your filestore, or you will backup your backups too!"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model,name:auto_backup.model_db_backup
+msgid "Email Thread"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.actions.server,name:auto_backup.action_server_backup
+msgid "Execute backup(s)"
+msgstr ""
+
+#. module: auto_backup
+#: field:db.backup,folder:0
+msgid "Folder"
+msgstr ""
+
+#. module: auto_backup
+#: field:db.backup,message_follower_ids:0
+msgid "Followers"
+msgstr "Seuraajat"
+
+#. module: auto_backup
+#: view:db.backup:auto_backup.view_backup_conf_form
+msgid "Go to Settings / Technical / Automation / Scheduled Actions."
+msgstr ""
+
+#. module: auto_backup
+#: view:db.backup:auto_backup.view_backup_conf_form
+msgid "Help"
+msgstr ""
+
+#. module: auto_backup
+#: help:db.backup,message_summary:0
+msgid ""
+"Holds the Chatter summary (number of messages, ...). This summary is "
+"directly in html format in order to be inserted in kanban views."
+msgstr "Sis??lt???? chatter-yhteenvedon (viestien m????r??, ...). T??m?? yhteenveto on html-formaatissa, jotta se voidaan n??ytt???? kanban-n??kym??ss??."
+
+#. module: auto_backup
+#: sql_constraint:db.backup:0
+msgid "I cannot remove backups from the future. Ask Doc for that."
+msgstr ""
+
+#. module: auto_backup
+#: field:db.backup,id:0
+msgid "ID"
+msgstr "ID"
+
+#. module: auto_backup
+#: help:db.backup,message_unread:0
+msgid "If checked new messages require your attention."
+msgstr "Jos valittuna, uudet viestit vaatii toimenpiteit??."
+
+#. module: auto_backup
+#: field:db.backup,message_is_follower:0
+msgid "Is a Follower"
+msgstr "On seuraaja"
+
+#. module: auto_backup
+#: field:db.backup,message_last_post:0
+msgid "Last Message Date"
+msgstr "Viimeisimm??n viestin p??iv??ys"
+
+#. module: auto_backup
+#: field:db.backup,__last_update:0
+msgid "Last Modified on"
+msgstr "Viimeksi muokattu"
+
+#. module: auto_backup
+#: field:db.backup,write_uid:0
+msgid "Last Updated by"
+msgstr "Viimeksi p??ivitt??nyt"
+
+#. module: auto_backup
+#: field:db.backup,write_date:0
+msgid "Last Updated on"
+msgstr "Viimeksi p??ivitetty"
+
+#. module: auto_backup
+#: selection:db.backup,method:0
+msgid "Local disk"
+msgstr ""
+
+#. module: auto_backup
+#: field:db.backup,message_ids:0
+msgid "Messages"
+msgstr "Viestej??"
+
+#. module: auto_backup
+#: help:db.backup,message_ids:0
+msgid "Messages and communication history"
+msgstr "Viesti- ja kommunikointihistoria"
+
+#. module: auto_backup
+#: field:db.backup,method:0
+msgid "Method"
+msgstr ""
+
+#. module: auto_backup
+#: field:db.backup,name:0
+msgid "Name"
+msgstr "Nimi"
+
+#. module: auto_backup
+#: help:db.backup,sftp_private_key:0
+msgid ""
+"Path to the private key file. Only the Odoo user should have read "
+"permissions for that file."
+msgstr ""
+
+#. module: auto_backup
+#: field:db.backup,sftp_private_key:0
+msgid "Private key location"
+msgstr ""
+
+#. module: auto_backup
+#: selection:db.backup,method:0
+msgid "Remote SFTP server"
+msgstr ""
+
+#. module: auto_backup
+#: field:db.backup,sftp_password:0
+msgid "SFTP Password"
+msgstr ""
+
+#. module: auto_backup
+#: field:db.backup,sftp_port:0
+msgid "SFTP Port"
+msgstr ""
+
+#. module: auto_backup
+#: field:db.backup,sftp_host:0
+msgid "SFTP Server"
+msgstr ""
+
+#. module: auto_backup
+#: view:db.backup:auto_backup.view_backup_conf_form
+msgid "SFTP Settings"
+msgstr ""
+
+#. module: auto_backup
+#: view:db.backup:auto_backup.view_backup_conf_search
+msgid "Search options"
+msgstr ""
+
+#. module: auto_backup
+#: view:db.backup:auto_backup.view_backup_conf_form
+msgid "Search the action named 'Backup scheduler'."
+msgstr ""
+
+#. module: auto_backup
+#: view:db.backup:auto_backup.view_backup_conf_form
+msgid ""
+"Set the scheduler to active and fill in how often you want backups "
+"generated."
+msgstr ""
+
+#. module: auto_backup
+#: field:db.backup,message_summary:0
+msgid "Summary"
+msgstr "Yhteenveto"
+
+#. module: auto_backup
+#: help:db.backup,name:0
+msgid "Summary of this backup process"
+msgstr ""
+
+#. module: auto_backup
+#: view:db.backup:auto_backup.view_backup_conf_form
+msgid "Test SFTP Connection"
+msgstr ""
+
+#. module: auto_backup
+#: help:db.backup,sftp_host:0
+msgid ""
+"The host name or IP address from your remote server. For example 192.168.0.1"
+msgstr ""
+
+#. module: auto_backup
+#: help:db.backup,sftp_password:0
+msgid ""
+"The password for the SFTP connection. If you specify a private key file, "
+"then this is the password to decrypt it."
+msgstr ""
+
+#. module: auto_backup
+#: help:db.backup,sftp_port:0
+msgid "The port on the FTP server that accepts SSH/SFTP calls."
+msgstr ""
+
+#. module: auto_backup
+#: help:db.backup,sftp_user:0
+msgid ""
+"The username where the SFTP connection should be made with. This is the user"
+" on the external server."
+msgstr ""
+
+#. module: auto_backup
+#: field:db.backup,message_unread:0
+msgid "Unread Messages"
+msgstr "Lukemattomia viestej??"
+
+#. module: auto_backup
+#: view:db.backup:auto_backup.view_backup_conf_form
+msgid ""
+"Use SFTP with caution! This writes files to external servers under the path "
+"you specify."
+msgstr ""
+
+#. module: auto_backup
+#: field:db.backup,sftp_user:0
+msgid "Username in the SFTP Server"
+msgstr ""
+
+#. module: auto_backup
+#: view:db.backup:auto_backup.view_backup_conf_form
+msgid "Warning:"
+msgstr ""
+
+#. module: auto_backup
+#: view:db.backup:auto_backup.view_backup_conf_form
+msgid "john"
+msgstr ""
+
+#. module: auto_backup
+#: view:db.backup:auto_backup.view_backup_conf_form
+msgid "sftp.example.com"
+msgstr ""
diff --git a/auto_backup/i18n/fr.po b/auto_backup/i18n/fr.po
new file mode 100644
index 00000000000..b8a5e35c053
--- /dev/null
+++ b/auto_backup/i18n/fr.po
@@ -0,0 +1,369 @@
+# Translation of Odoo Server.
+# This file contains the translation of the following modules:
+# * auto_backup
+# 
+# Translators:
+# Christophe CHAUVET <christophe.chauvet@gmail.com>, 2016
+msgid ""
+msgstr ""
+"Project-Id-Version: server-tools (8.0)\n"
+"Report-Msgid-Bugs-To: \n"
+"POT-Creation-Date: 2016-06-17 02:42+0000\n"
+"PO-Revision-Date: 2016-06-23 09:27+0000\n"
+"Last-Translator: Christophe CHAUVET <christophe.chauvet@gmail.com>\n"
+"Language-Team: French (http://www.transifex.com/oca/OCA-server-tools-8-0/language/fr/)\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: \n"
+"Language: fr\n"
+"Plural-Forms: nplurals=2; plural=(n > 1);\n"
+
+#. module: auto_backup
+#: view:db.backup:auto_backup.view_backup_conf_form
+msgid "/home/odoo/.ssh/id_rsa"
+msgstr "/home/odoo/.ssh/id_rsa"
+
+#. module: auto_backup
+#: help:db.backup,folder:0
+msgid "Absolute path for storing the backups"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.actions.act_window,name:auto_backup.action_backup_conf_form
+#: model:ir.ui.menu,name:auto_backup.backup_conf_menu
+msgid "Automated Backups"
+msgstr ""
+
+#. module: auto_backup
+#: view:db.backup:auto_backup.view_backup_conf_form
+msgid "Automatic backups of the database can be scheduled as follows:"
+msgstr ""
+
+#. module: auto_backup
+#: model:mail.message.subtype,name:auto_backup.failure
+msgid "Backup failed"
+msgstr ""
+
+#. module: auto_backup
+#: model:mail.message.subtype,name:auto_backup.success
+msgid "Backup successful"
+msgstr ""
+
+#. module: auto_backup
+#: view:db.backup:auto_backup.view_backup_conf_tree
+msgid "Backups"
+msgstr "Sauvegardes"
+
+#. module: auto_backup
+#: help:db.backup,days_to_keep:0
+msgid ""
+"Backups older than this will be deleted automatically. Set 0 to disable "
+"autodeletion."
+msgstr ""
+
+#. module: auto_backup
+#: view:db.backup:auto_backup.view_backup_conf_form
+msgid "Basic backup configuration"
+msgstr ""
+
+#. module: auto_backup
+#: sql_constraint:db.backup:0
+msgid "Cannot duplicate a configuration."
+msgstr ""
+
+#. module: auto_backup
+#: help:db.backup,method:0
+msgid "Choose the storage method for this backup."
+msgstr ""
+
+#. module: auto_backup
+#: code:addons/auto_backup/models/db_backup.py:247
+#, python-format
+msgid "Cleanup of old database backups failed."
+msgstr ""
+
+#. module: auto_backup
+#: code:addons/auto_backup/models/db_backup.py:131
+#, python-format
+msgid "Connection Test Failed!"
+msgstr ""
+
+#. module: auto_backup
+#: code:addons/auto_backup/models/db_backup.py:128
+#, python-format
+msgid "Connection Test Succeeded!"
+msgstr ""
+
+#. module: auto_backup
+#: field:db.backup,create_uid:0
+msgid "Created by"
+msgstr "Cr???? par"
+
+#. module: auto_backup
+#: field:db.backup,create_date:0
+msgid "Created on"
+msgstr "Cr???? le"
+
+#. module: auto_backup
+#: code:addons/auto_backup/models/db_backup.py:206
+#: model:mail.message.subtype,description:auto_backup.failure
+#, python-format
+msgid "Database backup failed."
+msgstr ""
+
+#. module: auto_backup
+#: code:addons/auto_backup/models/db_backup.py:211
+#: model:mail.message.subtype,description:auto_backup.success
+#, python-format
+msgid "Database backup succeeded."
+msgstr ""
+
+#. module: auto_backup
+#: help:db.backup,message_last_post:0
+msgid "Date of the last message posted on the record."
+msgstr ""
+
+#. module: auto_backup
+#: field:db.backup,days_to_keep:0
+msgid "Days to keep"
+msgstr ""
+
+#. module: auto_backup
+#: field:db.backup,display_name:0
+msgid "Display Name"
+msgstr "Nom affich??"
+
+#. module: auto_backup
+#: code:addons/auto_backup/models/db_backup.py:119
+#, python-format
+msgid ""
+"Do not save backups on your filestore, or you will backup your backups too!"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model,name:auto_backup.model_db_backup
+msgid "Email Thread"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.actions.server,name:auto_backup.action_server_backup
+msgid "Execute backup(s)"
+msgstr ""
+
+#. module: auto_backup
+#: field:db.backup,folder:0
+msgid "Folder"
+msgstr ""
+
+#. module: auto_backup
+#: field:db.backup,message_follower_ids:0
+msgid "Followers"
+msgstr ""
+
+#. module: auto_backup
+#: view:db.backup:auto_backup.view_backup_conf_form
+msgid "Go to Settings / Technical / Automation / Scheduled Actions."
+msgstr ""
+
+#. module: auto_backup
+#: view:db.backup:auto_backup.view_backup_conf_form
+msgid "Help"
+msgstr ""
+
+#. module: auto_backup
+#: help:db.backup,message_summary:0
+msgid ""
+"Holds the Chatter summary (number of messages, ...). This summary is "
+"directly in html format in order to be inserted in kanban views."
+msgstr ""
+
+#. module: auto_backup
+#: sql_constraint:db.backup:0
+msgid "I cannot remove backups from the future. Ask Doc for that."
+msgstr ""
+
+#. module: auto_backup
+#: field:db.backup,id:0
+msgid "ID"
+msgstr "ID"
+
+#. module: auto_backup
+#: help:db.backup,message_unread:0
+msgid "If checked new messages require your attention."
+msgstr ""
+
+#. module: auto_backup
+#: field:db.backup,message_is_follower:0
+msgid "Is a Follower"
+msgstr ""
+
+#. module: auto_backup
+#: field:db.backup,message_last_post:0
+msgid "Last Message Date"
+msgstr ""
+
+#. module: auto_backup
+#: field:db.backup,__last_update:0
+msgid "Last Modified on"
+msgstr "Derni??re modification le"
+
+#. module: auto_backup
+#: field:db.backup,write_uid:0
+msgid "Last Updated by"
+msgstr "Mis ?? jour par"
+
+#. module: auto_backup
+#: field:db.backup,write_date:0
+msgid "Last Updated on"
+msgstr "Mis ?? jour le"
+
+#. module: auto_backup
+#: selection:db.backup,method:0
+msgid "Local disk"
+msgstr ""
+
+#. module: auto_backup
+#: field:db.backup,message_ids:0
+msgid "Messages"
+msgstr ""
+
+#. module: auto_backup
+#: help:db.backup,message_ids:0
+msgid "Messages and communication history"
+msgstr ""
+
+#. module: auto_backup
+#: field:db.backup,method:0
+msgid "Method"
+msgstr "M??thode"
+
+#. module: auto_backup
+#: field:db.backup,name:0
+msgid "Name"
+msgstr "Nom"
+
+#. module: auto_backup
+#: help:db.backup,sftp_private_key:0
+msgid ""
+"Path to the private key file. Only the Odoo user should have read "
+"permissions for that file."
+msgstr ""
+
+#. module: auto_backup
+#: field:db.backup,sftp_private_key:0
+msgid "Private key location"
+msgstr ""
+
+#. module: auto_backup
+#: selection:db.backup,method:0
+msgid "Remote SFTP server"
+msgstr ""
+
+#. module: auto_backup
+#: field:db.backup,sftp_password:0
+msgid "SFTP Password"
+msgstr ""
+
+#. module: auto_backup
+#: field:db.backup,sftp_port:0
+msgid "SFTP Port"
+msgstr ""
+
+#. module: auto_backup
+#: field:db.backup,sftp_host:0
+msgid "SFTP Server"
+msgstr ""
+
+#. module: auto_backup
+#: view:db.backup:auto_backup.view_backup_conf_form
+msgid "SFTP Settings"
+msgstr ""
+
+#. module: auto_backup
+#: view:db.backup:auto_backup.view_backup_conf_search
+msgid "Search options"
+msgstr ""
+
+#. module: auto_backup
+#: view:db.backup:auto_backup.view_backup_conf_form
+msgid "Search the action named 'Backup scheduler'."
+msgstr ""
+
+#. module: auto_backup
+#: view:db.backup:auto_backup.view_backup_conf_form
+msgid ""
+"Set the scheduler to active and fill in how often you want backups "
+"generated."
+msgstr ""
+
+#. module: auto_backup
+#: field:db.backup,message_summary:0
+msgid "Summary"
+msgstr "R??sum??"
+
+#. module: auto_backup
+#: help:db.backup,name:0
+msgid "Summary of this backup process"
+msgstr ""
+
+#. module: auto_backup
+#: view:db.backup:auto_backup.view_backup_conf_form
+msgid "Test SFTP Connection"
+msgstr ""
+
+#. module: auto_backup
+#: help:db.backup,sftp_host:0
+msgid ""
+"The host name or IP address from your remote server. For example 192.168.0.1"
+msgstr ""
+
+#. module: auto_backup
+#: help:db.backup,sftp_password:0
+msgid ""
+"The password for the SFTP connection. If you specify a private key file, "
+"then this is the password to decrypt it."
+msgstr ""
+
+#. module: auto_backup
+#: help:db.backup,sftp_port:0
+msgid "The port on the FTP server that accepts SSH/SFTP calls."
+msgstr ""
+
+#. module: auto_backup
+#: help:db.backup,sftp_user:0
+msgid ""
+"The username where the SFTP connection should be made with. This is the user"
+" on the external server."
+msgstr ""
+
+#. module: auto_backup
+#: field:db.backup,message_unread:0
+msgid "Unread Messages"
+msgstr ""
+
+#. module: auto_backup
+#: view:db.backup:auto_backup.view_backup_conf_form
+msgid ""
+"Use SFTP with caution! This writes files to external servers under the path "
+"you specify."
+msgstr ""
+
+#. module: auto_backup
+#: field:db.backup,sftp_user:0
+msgid "Username in the SFTP Server"
+msgstr ""
+
+#. module: auto_backup
+#: view:db.backup:auto_backup.view_backup_conf_form
+msgid "Warning:"
+msgstr ""
+
+#. module: auto_backup
+#: view:db.backup:auto_backup.view_backup_conf_form
+msgid "john"
+msgstr ""
+
+#. module: auto_backup
+#: view:db.backup:auto_backup.view_backup_conf_form
+msgid "sftp.example.com"
+msgstr ""
diff --git a/auto_backup/i18n/fr_CA.po b/auto_backup/i18n/fr_CA.po
new file mode 100644
index 00000000000..5996cd518a8
--- /dev/null
+++ b/auto_backup/i18n/fr_CA.po
@@ -0,0 +1,358 @@
+# Translation of Odoo Server.
+# This file contains the translation of the following modules:
+# * auto_backup
+# 
+# Translators:
+msgid ""
+msgstr ""
+"Project-Id-Version: server-tools (8.0)\n"
+"Report-Msgid-Bugs-To: \n"
+"POT-Creation-Date: 2016-04-14 07:02+0000\n"
+"PO-Revision-Date: 2016-04-05 07:21+0000\n"
+"Last-Translator: <>\n"
+"Language-Team: French (Canada) (http://www.transifex.com/oca/OCA-server-tools-8-0/language/fr_CA/)\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: \n"
+"Language: fr_CA\n"
+"Plural-Forms: nplurals=2; plural=(n > 1);\n"
+
+#. module: auto_backup
+#: view:db.backup:auto_backup.view_backup_conf_form
+msgid "/home/odoo/.ssh/id_rsa"
+msgstr ""
+
+#. module: auto_backup
+#: help:db.backup,folder:0
+msgid "Absolute path for storing the backups"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.actions.act_window,name:auto_backup.action_backup_conf_form
+#: model:ir.ui.menu,name:auto_backup.backup_conf_menu
+msgid "Automated Backups"
+msgstr ""
+
+#. module: auto_backup
+#: view:db.backup:auto_backup.view_backup_conf_form
+msgid "Automatic backups of the database can be scheduled as follows:"
+msgstr ""
+
+#. module: auto_backup
+#: model:mail.message.subtype,name:auto_backup.failure
+msgid "Backup failed"
+msgstr ""
+
+#. module: auto_backup
+#: model:mail.message.subtype,name:auto_backup.success
+msgid "Backup successful"
+msgstr ""
+
+#. module: auto_backup
+#: view:db.backup:auto_backup.view_backup_conf_tree
+msgid "Backups"
+msgstr ""
+
+#. module: auto_backup
+#: help:db.backup,days_to_keep:0
+msgid ""
+"Backups older than this will be deleted automatically. Set 0 to disable "
+"autodeletion."
+msgstr ""
+
+#. module: auto_backup
+#: view:db.backup:auto_backup.view_backup_conf_form
+msgid "Basic backup configuration"
+msgstr ""
+
+#. module: auto_backup
+#: sql_constraint:db.backup:0
+msgid "Cannot duplicate a configuration."
+msgstr ""
+
+#. module: auto_backup
+#: help:db.backup,method:0
+msgid "Choose the storage method for this backup."
+msgstr ""
+
+#. module: auto_backup
+#: code:addons/auto_backup/models/db_backup.py:249
+#, python-format
+msgid "Cleanup of old database backups failed."
+msgstr ""
+
+#. module: auto_backup
+#: code:addons/auto_backup/models/db_backup.py:132
+#, python-format
+msgid "Connection Test Failed!"
+msgstr ""
+
+#. module: auto_backup
+#: code:addons/auto_backup/models/db_backup.py:129
+#, python-format
+msgid "Connection Test Succeeded!"
+msgstr ""
+
+#. module: auto_backup
+#: field:db.backup,create_uid:0
+msgid "Created by"
+msgstr ""
+
+#. module: auto_backup
+#: field:db.backup,create_date:0
+msgid "Created on"
+msgstr ""
+
+#. module: auto_backup
+#: code:addons/auto_backup/models/db_backup.py:208
+#: model:mail.message.subtype,description:auto_backup.failure
+#, python-format
+msgid "Database backup failed."
+msgstr ""
+
+#. module: auto_backup
+#: code:addons/auto_backup/models/db_backup.py:213
+#: model:mail.message.subtype,description:auto_backup.success
+#, python-format
+msgid "Database backup succeeded."
+msgstr ""
+
+#. module: auto_backup
+#: help:db.backup,message_last_post:0
+msgid "Date of the last message posted on the record."
+msgstr ""
+
+#. module: auto_backup
+#: field:db.backup,days_to_keep:0
+msgid "Days to keep"
+msgstr ""
+
+#. module: auto_backup
+#: code:addons/auto_backup/models/db_backup.py:120
+#, python-format
+msgid ""
+"Do not save backups on your filestore, or you will backup your backups too!"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model,name:auto_backup.model_db_backup
+msgid "Email Thread"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.actions.server,name:auto_backup.action_server_backup
+msgid "Execute backup(s)"
+msgstr ""
+
+#. module: auto_backup
+#: field:db.backup,folder:0
+msgid "Folder"
+msgstr ""
+
+#. module: auto_backup
+#: field:db.backup,message_follower_ids:0
+msgid "Followers"
+msgstr ""
+
+#. module: auto_backup
+#: view:db.backup:auto_backup.view_backup_conf_form
+msgid "Go to Settings / Technical / Automation / Scheduled Actions."
+msgstr ""
+
+#. module: auto_backup
+#: view:db.backup:auto_backup.view_backup_conf_form
+msgid "Help"
+msgstr ""
+
+#. module: auto_backup
+#: help:db.backup,message_summary:0
+msgid ""
+"Holds the Chatter summary (number of messages, ...). This summary is "
+"directly in html format in order to be inserted in kanban views."
+msgstr ""
+
+#. module: auto_backup
+#: sql_constraint:db.backup:0
+msgid "I cannot remove backups from the future. Ask Doc for that."
+msgstr ""
+
+#. module: auto_backup
+#: field:db.backup,id:0
+msgid "ID"
+msgstr ""
+
+#. module: auto_backup
+#: help:db.backup,message_unread:0
+msgid "If checked new messages require your attention."
+msgstr ""
+
+#. module: auto_backup
+#: field:db.backup,message_is_follower:0
+msgid "Is a Follower"
+msgstr ""
+
+#. module: auto_backup
+#: field:db.backup,message_last_post:0
+msgid "Last Message Date"
+msgstr ""
+
+#. module: auto_backup
+#: field:db.backup,write_uid:0
+msgid "Last Updated by"
+msgstr ""
+
+#. module: auto_backup
+#: field:db.backup,write_date:0
+msgid "Last Updated on"
+msgstr ""
+
+#. module: auto_backup
+#: selection:db.backup,method:0
+msgid "Local disk"
+msgstr ""
+
+#. module: auto_backup
+#: field:db.backup,message_ids:0
+msgid "Messages"
+msgstr ""
+
+#. module: auto_backup
+#: help:db.backup,message_ids:0
+msgid "Messages and communication history"
+msgstr ""
+
+#. module: auto_backup
+#: field:db.backup,method:0
+msgid "Method"
+msgstr ""
+
+#. module: auto_backup
+#: field:db.backup,name:0
+msgid "Name"
+msgstr "Nom"
+
+#. module: auto_backup
+#: help:db.backup,sftp_private_key:0
+msgid ""
+"Path to the private key file. Only the Odoo user should have read "
+"permissions for that file."
+msgstr ""
+
+#. module: auto_backup
+#: field:db.backup,sftp_private_key:0
+msgid "Private key location"
+msgstr ""
+
+#. module: auto_backup
+#: selection:db.backup,method:0
+msgid "Remote SFTP server"
+msgstr ""
+
+#. module: auto_backup
+#: field:db.backup,sftp_password:0
+msgid "SFTP Password"
+msgstr ""
+
+#. module: auto_backup
+#: field:db.backup,sftp_port:0
+msgid "SFTP Port"
+msgstr ""
+
+#. module: auto_backup
+#: field:db.backup,sftp_host:0
+msgid "SFTP Server"
+msgstr ""
+
+#. module: auto_backup
+#: view:db.backup:auto_backup.view_backup_conf_form
+msgid "SFTP Settings"
+msgstr ""
+
+#. module: auto_backup
+#: view:db.backup:auto_backup.view_backup_conf_search
+msgid "Search options"
+msgstr ""
+
+#. module: auto_backup
+#: view:db.backup:auto_backup.view_backup_conf_form
+msgid "Search the action named 'Backup scheduler'."
+msgstr ""
+
+#. module: auto_backup
+#: view:db.backup:auto_backup.view_backup_conf_form
+msgid ""
+"Set the scheduler to active and fill in how often you want backups "
+"generated."
+msgstr ""
+
+#. module: auto_backup
+#: field:db.backup,message_summary:0
+msgid "Summary"
+msgstr ""
+
+#. module: auto_backup
+#: help:db.backup,name:0
+msgid "Summary of this backup process"
+msgstr ""
+
+#. module: auto_backup
+#: view:db.backup:auto_backup.view_backup_conf_form
+msgid "Test SFTP Connection"
+msgstr ""
+
+#. module: auto_backup
+#: help:db.backup,sftp_host:0
+msgid ""
+"The host name or IP address from your remote server. For example 192.168.0.1"
+msgstr ""
+
+#. module: auto_backup
+#: help:db.backup,sftp_password:0
+msgid ""
+"The password for the SFTP connection. If you specify a private key file, "
+"then this is the password to decrypt it."
+msgstr ""
+
+#. module: auto_backup
+#: help:db.backup,sftp_port:0
+msgid "The port on the FTP server that accepts SSH/SFTP calls."
+msgstr ""
+
+#. module: auto_backup
+#: help:db.backup,sftp_user:0
+msgid ""
+"The username where the SFTP connection should be made with. This is the user"
+" on the external server."
+msgstr ""
+
+#. module: auto_backup
+#: field:db.backup,message_unread:0
+msgid "Unread Messages"
+msgstr ""
+
+#. module: auto_backup
+#: view:db.backup:auto_backup.view_backup_conf_form
+msgid ""
+"Use SFTP with caution! This writes files to external servers under the path "
+"you specify."
+msgstr ""
+
+#. module: auto_backup
+#: field:db.backup,sftp_user:0
+msgid "Username in the SFTP Server"
+msgstr ""
+
+#. module: auto_backup
+#: view:db.backup:auto_backup.view_backup_conf_form
+msgid "Warning:"
+msgstr ""
+
+#. module: auto_backup
+#: view:db.backup:auto_backup.view_backup_conf_form
+msgid "john"
+msgstr ""
+
+#. module: auto_backup
+#: view:db.backup:auto_backup.view_backup_conf_form
+msgid "sftp.example.com"
+msgstr ""
diff --git a/auto_backup/i18n/it.po b/auto_backup/i18n/it.po
index b79229e857e..1a984b425ff 100644
--- a/auto_backup/i18n/it.po
+++ b/auto_backup/i18n/it.po
@@ -1,72 +1,53 @@
 # Translation of Odoo Server.
 # This file contains the translation of the following modules:
-#   * auto_backup
-#
+# * auto_backup
+# 
+# Translators:
+# Paolo Valier, 2016
 msgid ""
 msgstr ""
-"Project-Id-Version: Odoo Server 8.0\n"
+"Project-Id-Version: server-tools (8.0)\n"
 "Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2015-07-21 13:00+0000\n"
-"PO-Revision-Date: 2015-07-21 13:00+0000\n"
-"Last-Translator: <>\n"
-"Language-Team: \n"
+"POT-Creation-Date: 2016-07-28 00:59+0000\n"
+"PO-Revision-Date: 2016-07-31 09:02+0000\n"
+"Last-Translator: Paolo Valier\n"
+"Language-Team: Italian (http://www.transifex.com/oca/OCA-server-tools-8-0/language/it/)\n"
 "MIME-Version: 1.0\n"
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: \n"
-"Plural-Forms: \n"
-
+"Language: it\n"
+"Plural-Forms: nplurals=2; plural=(n != 1);\n"
 
 #. module: auto_backup
-#: code:addons/auto_backup/model/backup_scheduler.py:204
-#, python-format
-msgid "\n"
-"Your IP address seems to be too short.\n"
-""
-msgstr "\n"
-"L' indirizzo IP sembra essere troppo corto.\n"
-""
-
-#. module: auto_backup
-#: code:addons/auto_backup/model/backup_scheduler.py:209
-#, python-format
-msgid "%s"
-msgstr "%s"
-
-#. module: auto_backup
-#: code:addons/auto_backup/model/backup_scheduler.py:288
-#, python-format
-msgid "(Part of the) path didn't exist. Creating it now at %s"
-msgstr "(Una parte del) path non esiste. Verra' creato in %s"
+#: view:db.backup:auto_backup.view_backup_conf_form
+msgid "/home/odoo/.ssh/id_rsa"
+msgstr "/home/odoo/.ssh/id_rsa"
 
 #. module: auto_backup
-#: help:db.backup,bkp_dir:0
+#: help:db.backup,folder:0
 msgid "Absolute path for storing the backups"
 msgstr "Percorso assoluto per il salvataggio del DB"
 
 #. module: auto_backup
-#: field:db.backup,sendmailsftpfail:0
-msgid "Auto. E-mail on backup fail"
-msgstr "Auto. E-mail nel caso di errori durante il backup "
-
-#. module: auto_backup
-#: field:db.backup,autoremove:0
-msgid "Auto. Remove Backups"
-msgstr "Rimuovi Backups"
+#: model:ir.actions.act_window,name:auto_backup.action_backup_conf_form
+#: model:ir.ui.menu,name:auto_backup.backup_conf_menu
+msgid "Automated Backups"
+msgstr "Backup automatici"
 
 #. module: auto_backup
 #: view:db.backup:auto_backup.view_backup_conf_form
 msgid "Automatic backups of the database can be scheduled as follows:"
-msgstr "Il backup automatico del DB e' pianificato come segue:"
+msgstr "Il backup automatico del DB ?? pianificato come segue:"
 
 #. module: auto_backup
-#: field:db.backup,bkp_dir:0
-msgid "Backup Directory"
-msgstr "Backup Directory"
+#: model:mail.message.subtype,name:auto_backup.failure
+msgid "Backup failed"
+msgstr "Backup non riuscito"
 
 #. module: auto_backup
-#: model:email.template,subject:auto_backup.email_template_autobackup_error_noificaiton
-msgid "Backup from ${object.host} - (${object.sftpip}) failed"
-msgstr "Backup da ${object.host} - (${object.sftpip}) fallito"
+#: model:mail.message.subtype,name:auto_backup.success
+msgid "Backup successful"
+msgstr "Backup riuscito"
 
 #. module: auto_backup
 #: view:db.backup:auto_backup.view_backup_conf_tree
@@ -74,102 +55,115 @@ msgid "Backups"
 msgstr "Backups"
 
 #. module: auto_backup
-#: help:db.backup,daystokeepsftp:0
-msgid "Choose after how many days the backup should be deleted from the FTP server. For example:\n"
-"If you fill in 5 the backups will be removed after 5 days from the FTP server."
-msgstr "Scegliere dopo quanti giorni si possa condsiderare da eliminare, un Backup nel server FTP. Per esempio:\n"
-"se si imposta 5 i files di backups  piu' vecchi di  5 giorni saranno eliminati dal server FTP"
+#: help:db.backup,days_to_keep:0
+msgid ""
+"Backups older than this will be deleted automatically. Set 0 to disable "
+"autodeletion."
+msgstr "I Backup antecedenti questo numero di giorni saranno eliminati automaticamente. Impostare a 0 per disattivare l'eliminazione automatica."
 
 #. module: auto_backup
-#: help:db.backup,daystokeep:0
-msgid "Scegliere dopo quanti giorni si possa condsiderare da eliminare un Backup. For example:\n"
-"If you fill in 5 the backups will be removed after 5 days."
-msgstr "Choose after how many days the backup should be deleted. For example:\n"
-"se si imposta 5 i files di backups  piu' vecchi di  5 giorni saranno eliminati."
+#: view:db.backup:auto_backup.view_backup_conf_form
+msgid "Basic backup configuration"
+msgstr "Configurazione di base del Backup"
 
 #. module: auto_backup
-#: model:ir.actions.act_window,name:auto_backup.action_backup_conf_form
-#: model:ir.ui.menu,name:auto_backup.backup_conf_menu
-msgid "Configure Backup"
-msgstr "Configura Backup"
+#: sql_constraint:db.backup:0
+msgid "Cannot duplicate a configuration."
+msgstr "Impossibile duplicare una configurazione."
 
 #. module: auto_backup
-#: code:addons/auto_backup/model/backup_scheduler.py:202
+#: help:db.backup,method:0
+msgid "Choose the storage method for this backup."
+msgstr "Scegliere il tipo di archiviazione per questo metodo di backup. "
+
+#. module: auto_backup
+#: code:addons/auto_backup/models/db_backup.py:247
+#, python-format
+msgid "Cleanup of old database backups failed."
+msgstr "Eliminazione dei vecchi backup di database non riuscita."
+
+#. module: auto_backup
+#: code:addons/auto_backup/models/db_backup.py:131
 #, python-format
 msgid "Connection Test Failed!"
 msgstr "Test connessione Fallito!"
 
 #. module: auto_backup
-#: code:addons/auto_backup/model/backup_scheduler.py:198
+#: code:addons/auto_backup/models/db_backup.py:128
 #, python-format
 msgid "Connection Test Succeeded!"
 msgstr "Test connessione avvenuto con successo!"
 
-#. module: auto_backup
-#: code:addons/auto_backup/model/backup_scheduler.py:241
-#, python-format
-msgid "Couldn't backup database %s. Bad database administratorpassword for server running at http://%s:%s"
-msgstr "Impossibile eseguire il backup di %s. DB password erraata per il server http://%s:%s"
-
 #. module: auto_backup
 #: field:db.backup,create_uid:0
 msgid "Created by"
-msgstr "Created by"
+msgstr "Creato da"
 
 #. module: auto_backup
 #: field:db.backup,create_date:0
 msgid "Created on"
-msgstr "Created on"
+msgstr "Creato il"
 
 #. module: auto_backup
-#: field:db.backup,name:0
-msgid "Database"
-msgstr "Database"
+#: code:addons/auto_backup/models/db_backup.py:206
+#: model:mail.message.subtype,description:auto_backup.failure
+#, python-format
+msgid "Database backup failed."
+msgstr "Backup del Database non riuscito."
 
 #. module: auto_backup
-#: help:db.backup,name:0
-msgid "Database you want to schedule backups for"
-msgstr "Database you want to schedule backups for"
+#: code:addons/auto_backup/models/db_backup.py:211
+#: model:mail.message.subtype,description:auto_backup.success
+#, python-format
+msgid "Database backup succeeded."
+msgstr "Backup del Database riuscito."
 
 #. module: auto_backup
-#: field:db.backup,emailtonotify:0
-#: field:db.backup,lasterrorlog:0
-msgid "E-mail to notify"
-msgstr "E-mail di notifica"
+#: help:db.backup,message_last_post:0
+msgid "Date of the last message posted on the record."
+msgstr "Data dell'ultimo messaggio aggiunto al record."
 
 #. module: auto_backup
-#: code:addons/auto_backup/model/backup_scheduler.py:176
-#, python-format
-msgid "Error"
-msgstr "Errore"
+#: field:db.backup,days_to_keep:0
+msgid "Days to keep"
+msgstr "Giorni da conservare"
 
 #. module: auto_backup
-#: code:addons/auto_backup/model/backup_scheduler.py:176
-#, python-format
-msgid "Error ! No such database exists!"
-msgstr "Errore ! Il DB non esiste!"
+#: field:db.backup,display_name:0
+msgid "Display Name"
+msgstr "Nome da visualizzare"
 
 #. module: auto_backup
-#: code:addons/auto_backup/model/backup_scheduler.py:199
+#: code:addons/auto_backup/models/db_backup.py:119
 #, python-format
-msgid "Everything seems properly set up for FTP back-ups!"
-msgstr "Tutto sembra impostato correttamente per il back-up FTP!"
+msgid ""
+"Do not save backups on your filestore, or you will backup your backups too!"
+msgstr "Non salvare i backup nel proprio filestore altrimenti verr?? eseguita una copia di backup anche dei propri backup!"
 
 #. module: auto_backup
-#: help:db.backup,emailtonotify:0
-#: help:db.backup,lasterrorlog:0
-msgid "Fill in the e-mail where you want to be notified that the backup failed on the FTP."
-msgstr "Compilare l'e -mail in cui si desidera essere avvisati,se il backup FTP fallisce."
+#: model:ir.model,name:auto_backup.model_db_backup
+msgid "Email Thread"
+msgstr "Discussione Email"
 
 #. module: auto_backup
-#: view:db.backup:auto_backup.view_backup_conf_form
-msgid "For example: /odoo/backups/"
-msgstr "Es.: /odoo/backups/"
+#: model:ir.actions.server,name:auto_backup.action_server_backup
+msgid "Execute backup(s)"
+msgstr "Esegui backup(s)"
+
+#. module: auto_backup
+#: field:db.backup,folder:0
+msgid "Folder"
+msgstr "Cartella"
+
+#. module: auto_backup
+#: field:db.backup,message_follower_ids:0
+msgid "Followers"
+msgstr "Followers"
 
 #. module: auto_backup
 #: view:db.backup:auto_backup.view_backup_conf_form
 msgid "Go to Settings / Technical / Automation / Scheduled Actions."
-msgstr "Anadare in  Settings / Technical / Automation / Scheduled Actions."
+msgstr "Andare in  Configurazione / Funzioni Tecniche / Automazione / Azioni Programmate."
 
 #. module: auto_backup
 #: view:db.backup:auto_backup.view_backup_conf_form
@@ -177,9 +171,16 @@ msgid "Help"
 msgstr "Aiuto"
 
 #. module: auto_backup
-#: field:db.backup,host:0
-msgid "Host"
-msgstr "Host"
+#: help:db.backup,message_summary:0
+msgid ""
+"Holds the Chatter summary (number of messages, ...). This summary is "
+"directly in html format in order to be inserted in kanban views."
+msgstr "Contiene il riepilogo Chatter (numero di messaggi, ...). Questa sintesi ?? direttamente in formato HTML, al fine di essere inserita nelle viste kanban."
+
+#. module: auto_backup
+#: sql_constraint:db.backup:0
+msgid "I cannot remove backups from the future. Ask Doc for that."
+msgstr "Impossibile rimuovere backup dal futuro. Cercare nella Documentazione."
 
 #. module: auto_backup
 #: field:db.backup,id:0
@@ -187,149 +188,182 @@ msgid "ID"
 msgstr "ID"
 
 #. module: auto_backup
-#: field:db.backup,sftpip:0
-msgid "IP Address SFTP Server"
-msgstr "IP Address SFTP Server"
+#: help:db.backup,message_unread:0
+msgid "If checked new messages require your attention."
+msgstr "Se selezionato i nuovi messaggi richiedono la tua attenzione."
 
 #. module: auto_backup
-#: help:db.backup,sendmailsftpfail:0
-msgid "If you check this option you can choose to automaticly get e-mailed when the backup to the external server failed."
-msgstr "Se si seleziona questa opzione ?? possibile scegliere di essere notificati automaticamente via e-mail quando il backup al server esterno fallisce ."
+#: field:db.backup,message_is_follower:0
+msgid "Is a Follower"
+msgstr "?? un follower"
 
 #. module: auto_backup
-#: help:db.backup,autoremove:0
-msgid "If you check this option you can choose to automaticly remove the backup after xx days"
-msgstr "Se si seleziona questa opzione ?? possibile scegliere di rimuovere automaticamente il backup dopo xx giorni"
+#: field:db.backup,message_last_post:0
+msgid "Last Message Date"
+msgstr "Data dell'ultimo messaggio"
 
 #. module: auto_backup
-#: help:db.backup,sftpwrite:0
-msgid "If you check this option you can specify the details needed to write to a remote server with SFTP."
-msgstr "Se si seleziona questa opzione ?? possibile specificare i dettagli necessari per scrivere a un server remoto con SFTP ."
+#: field:db.backup,__last_update:0
+msgid "Last Modified on"
+msgstr "Ultima modifica il"
 
 #. module: auto_backup
 #: field:db.backup,write_uid:0
 msgid "Last Updated by"
-msgstr "Last Updated by"
+msgstr "Ultimo aggiornamento di"
 
 #. module: auto_backup
 #: field:db.backup,write_date:0
 msgid "Last Updated on"
-msgstr "Last Updated on"
+msgstr "Ultimo aggiornamento il"
 
 #. module: auto_backup
-#: view:db.backup:auto_backup.view_backup_conf_form
-msgid "Local backup configuration"
-msgstr "Configurazione backup locale"
+#: selection:db.backup,method:0
+msgid "Local disk"
+msgstr "Disco locale"
 
 #. module: auto_backup
-#: field:db.backup,sftppassword:0
-msgid "Password User SFTP Server"
-msgstr "Password utene SFTP Server"
+#: field:db.backup,message_ids:0
+msgid "Messages"
+msgstr "Messaggi"
 
 #. module: auto_backup
-#: field:db.backup,sftppath:0
-msgid "Path external server"
-msgstr "Path server esterno"
+#: help:db.backup,message_ids:0
+msgid "Messages and communication history"
+msgstr "Messaggi e storico comunicazioni"
 
 #. module: auto_backup
-#: field:db.backup,port:0
-msgid "Port"
-msgstr "Porta"
+#: field:db.backup,method:0
+msgid "Method"
+msgstr "Metodo"
 
 #. module: auto_backup
-#: field:db.backup,daystokeepsftp:0
-msgid "Remove SFTP after x days"
-msgstr "Rimuovi backup da SFTP dopo x giorni"
+#: field:db.backup,name:0
+msgid "Name"
+msgstr "Nome"
 
 #. module: auto_backup
-#: field:db.backup,daystokeep:0
-msgid "Remove after x days"
-msgstr "Rimuovi dopo x giorni"
+#: help:db.backup,sftp_private_key:0
+msgid ""
+"Path to the private key file. Only the Odoo user should have read "
+"permissions for that file."
+msgstr "Percorso al file della chiave privata. Soltanto l'utente Odoo dovrebbe avere il permesso in lettura di questo file."
 
 #. module: auto_backup
-#: view:db.backup:auto_backup.view_backup_conf_form
-msgid "SFTP"
-msgstr "SFTP"
+#: field:db.backup,sftp_private_key:0
+msgid "Private key location"
+msgstr "Posizione chiave privata"
+
+#. module: auto_backup
+#: selection:db.backup,method:0
+msgid "Remote SFTP server"
+msgstr "Server SFTP remoto"
+
+#. module: auto_backup
+#: field:db.backup,sftp_password:0
+msgid "SFTP Password"
+msgstr "Password SFTP"
 
 #. module: auto_backup
-#: field:db.backup,sftpport:0
+#: field:db.backup,sftp_port:0
 msgid "SFTP Port"
 msgstr "Porta SFTP"
 
+#. module: auto_backup
+#: field:db.backup,sftp_host:0
+msgid "SFTP Server"
+msgstr "Server SFTP"
+
+#. module: auto_backup
+#: view:db.backup:auto_backup.view_backup_conf_form
+msgid "SFTP Settings"
+msgstr "Impostazioni SFTP"
+
 #. module: auto_backup
 #: view:db.backup:auto_backup.view_backup_conf_search
 msgid "Search options"
-msgstr "Search options"
+msgstr "Opzioni di ricerca"
 
 #. module: auto_backup
 #: view:db.backup:auto_backup.view_backup_conf_form
 msgid "Search the action named 'Backup scheduler'."
-msgstr "Cerca l'azione denominata ' di pianificazione del backup ' ."
+msgstr "Cerca l'azione denominata 'Pianificazione del backup'."
 
 #. module: auto_backup
 #: view:db.backup:auto_backup.view_backup_conf_form
-msgid "Set the scheduler to active and fill in how often you want backups generated."
+msgid ""
+"Set the scheduler to active and fill in how often you want backups "
+"generated."
 msgstr "Impostare lo scheduler per attivare e compilare la frequenza con cui si desidera generare il backup."
 
 #. module: auto_backup
-#: view:db.backup:auto_backup.view_backup_conf_form
-msgid "Test"
-msgstr "Test"
+#: field:db.backup,message_summary:0
+msgid "Summary"
+msgstr "Riepilogo"
 
 #. module: auto_backup
-#: view:db.backup:auto_backup.view_backup_conf_form
-msgid "Test SFTP Connection"
-msgstr "Test SFTP Connection"
+#: help:db.backup,name:0
+msgid "Summary of this backup process"
+msgstr "Riepilogo di questo processo di backup"
 
 #. module: auto_backup
-#: help:db.backup,sftpip:0
-msgid "The IP address from your remote server. For example 192.168.0.1"
-msgstr "Indirizzo IP server remoto. Es. 192.168.0.1"
+#: view:db.backup:auto_backup.view_backup_conf_form
+msgid "Test SFTP Connection"
+msgstr "Prova Connessione SFTP"
 
 #. module: auto_backup
-#: help:db.backup,sftppath:0
-msgid "The location to the folder where the dumps should be written to. For example /odoo/backups/.\n"
-"Files will then be written to /odoo/backups/ on your remote server."
-msgstr "La posizione della cartella in cui i dumps devono essere scritti. Es. /odoo/backups/.\n"
-"i files verranno scritti su /odoo/backups/ nel server remoto."
+#: help:db.backup,sftp_host:0
+msgid ""
+"The host name or IP address from your remote server. For example 192.168.0.1"
+msgstr "Il nome host o l'indirizzo IP del tuo server remoto. Per esempio 192.168.0.1"
 
 #. module: auto_backup
-#: help:db.backup,sftppassword:0
-msgid "The password from the user where the SFTP connection should be made with. This is the password from the user on the external server."
-msgstr "La password dell'utente con cui la connessione SFTP deve essere fatta. Questa ?? la password dall'utente sul server esterno ."
+#: help:db.backup,sftp_password:0
+msgid ""
+"The password for the SFTP connection. If you specify a private key file, "
+"then this is the password to decrypt it."
+msgstr "La password per la connessione SFTP. Se viene specificato un file per la chiave privata, allora questo ?? la password per decodificarla."
 
 #. module: auto_backup
-#: help:db.backup,sftpport:0
+#: help:db.backup,sftp_port:0
 msgid "The port on the FTP server that accepts SSH/SFTP calls."
-msgstr "La porta sul server FTP che accetta chiamate SSH / SFTP."
+msgstr "La porta sul server FTP che accetta chiamate SSH/SFTP."
 
 #. module: auto_backup
-#: help:db.backup,sftpusername:0
-msgid "The username where the SFTP connection should be made with. This is the user on the external server."
-msgstr "Il nome utente in cui la connessione SFTP dovrebbe essere fatto con . Questo ?? l'utente sul server esterno."
+#: help:db.backup,sftp_user:0
+msgid ""
+"The username where the SFTP connection should be made with. This is the user"
+" on the external server."
+msgstr "Il nome utente per la connessione SFTP. Questo ?? l'utente sul server esterno."
 
 #. module: auto_backup
-#: view:db.backup:auto_backup.view_backup_conf_form
-msgid "This configures the scheduler for automatic backup of the given database running on given host at given port on regular intervals."
-msgstr "pianificazione per il backup automatico del database in esecuzione su dato host /porta ad intervalli regolari."
+#: field:db.backup,message_unread:0
+msgid "Unread Messages"
+msgstr "Messaggi non letti"
 
 #. module: auto_backup
 #: view:db.backup:auto_backup.view_backup_conf_form
-msgid "Use SFTP with caution! This writes files to external servers under the path you specify."
-msgstr "Usare SFTP con cautela ! Questo scrive file su server esterni nel percorso specificato "
+msgid ""
+"Use SFTP with caution! This writes files to external servers under the path "
+"you specify."
+msgstr "Usare SFTP con cautela! Questa modalit?? scrive file nel percorso specificato su server esterni."
 
 #. module: auto_backup
-#: field:db.backup,sftpusername:0
-msgid "Username SFTP Server"
-msgstr "Username SFTP Server"
+#: field:db.backup,sftp_user:0
+msgid "Username in the SFTP Server"
+msgstr "Nome utente presso il Server SFTP"
 
 #. module: auto_backup
 #: view:db.backup:auto_backup.view_backup_conf_form
 msgid "Warning:"
-msgstr "Warning:"
+msgstr "Avviso:"
 
 #. module: auto_backup
-#: field:db.backup,sftpwrite:0
-msgid "Write to external server with sftp"
-msgstr "Salva il backup anche su server FTP esterno"
+#: view:db.backup:auto_backup.view_backup_conf_form
+msgid "john"
+msgstr "john"
 
+#. module: auto_backup
+#: view:db.backup:auto_backup.view_backup_conf_form
+msgid "sftp.example.com"
+msgstr "sftp.example.com"
diff --git a/auto_backup/i18n/pt_BR.po b/auto_backup/i18n/pt_BR.po
new file mode 100644
index 00000000000..30fe8f26e87
--- /dev/null
+++ b/auto_backup/i18n/pt_BR.po
@@ -0,0 +1,369 @@
+# Translation of Odoo Server.
+# This file contains the translation of the following modules:
+# * auto_backup
+# 
+# Translators:
+# Paulo Ricardo <ti@shoppingescritorio.com.br>, 2016
+msgid ""
+msgstr ""
+"Project-Id-Version: server-tools (8.0)\n"
+"Report-Msgid-Bugs-To: \n"
+"POT-Creation-Date: 2016-05-12 14:33+0000\n"
+"PO-Revision-Date: 2016-05-11 16:49+0000\n"
+"Last-Translator: Paulo Ricardo <ti@shoppingescritorio.com.br>\n"
+"Language-Team: Portuguese (Brazil) (http://www.transifex.com/oca/OCA-server-tools-8-0/language/pt_BR/)\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: \n"
+"Language: pt_BR\n"
+"Plural-Forms: nplurals=2; plural=(n > 1);\n"
+
+#. module: auto_backup
+#: view:db.backup:auto_backup.view_backup_conf_form
+msgid "/home/odoo/.ssh/id_rsa"
+msgstr ""
+
+#. module: auto_backup
+#: help:db.backup,folder:0
+msgid "Absolute path for storing the backups"
+msgstr "Caminho absoluto para armazenar os backups"
+
+#. module: auto_backup
+#: model:ir.actions.act_window,name:auto_backup.action_backup_conf_form
+#: model:ir.ui.menu,name:auto_backup.backup_conf_menu
+msgid "Automated Backups"
+msgstr "Backups Autom??ticos"
+
+#. module: auto_backup
+#: view:db.backup:auto_backup.view_backup_conf_form
+msgid "Automatic backups of the database can be scheduled as follows:"
+msgstr ""
+
+#. module: auto_backup
+#: model:mail.message.subtype,name:auto_backup.failure
+msgid "Backup failed"
+msgstr ""
+
+#. module: auto_backup
+#: model:mail.message.subtype,name:auto_backup.success
+msgid "Backup successful"
+msgstr ""
+
+#. module: auto_backup
+#: view:db.backup:auto_backup.view_backup_conf_tree
+msgid "Backups"
+msgstr ""
+
+#. module: auto_backup
+#: help:db.backup,days_to_keep:0
+msgid ""
+"Backups older than this will be deleted automatically. Set 0 to disable "
+"autodeletion."
+msgstr ""
+
+#. module: auto_backup
+#: view:db.backup:auto_backup.view_backup_conf_form
+msgid "Basic backup configuration"
+msgstr ""
+
+#. module: auto_backup
+#: sql_constraint:db.backup:0
+msgid "Cannot duplicate a configuration."
+msgstr ""
+
+#. module: auto_backup
+#: help:db.backup,method:0
+msgid "Choose the storage method for this backup."
+msgstr ""
+
+#. module: auto_backup
+#: code:addons/auto_backup/models/db_backup.py:249
+#, python-format
+msgid "Cleanup of old database backups failed."
+msgstr ""
+
+#. module: auto_backup
+#: code:addons/auto_backup/models/db_backup.py:132
+#, python-format
+msgid "Connection Test Failed!"
+msgstr ""
+
+#. module: auto_backup
+#: code:addons/auto_backup/models/db_backup.py:129
+#, python-format
+msgid "Connection Test Succeeded!"
+msgstr ""
+
+#. module: auto_backup
+#: field:db.backup,create_uid:0
+msgid "Created by"
+msgstr "Criado por"
+
+#. module: auto_backup
+#: field:db.backup,create_date:0
+msgid "Created on"
+msgstr "Criado em"
+
+#. module: auto_backup
+#: code:addons/auto_backup/models/db_backup.py:208
+#: model:mail.message.subtype,description:auto_backup.failure
+#, python-format
+msgid "Database backup failed."
+msgstr ""
+
+#. module: auto_backup
+#: code:addons/auto_backup/models/db_backup.py:213
+#: model:mail.message.subtype,description:auto_backup.success
+#, python-format
+msgid "Database backup succeeded."
+msgstr ""
+
+#. module: auto_backup
+#: help:db.backup,message_last_post:0
+msgid "Date of the last message posted on the record."
+msgstr ""
+
+#. module: auto_backup
+#: field:db.backup,days_to_keep:0
+msgid "Days to keep"
+msgstr ""
+
+#. module: auto_backup
+#: field:db.backup,display_name:0
+msgid "Display Name"
+msgstr "Nome para Mostrar"
+
+#. module: auto_backup
+#: code:addons/auto_backup/models/db_backup.py:120
+#, python-format
+msgid ""
+"Do not save backups on your filestore, or you will backup your backups too!"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model,name:auto_backup.model_db_backup
+msgid "Email Thread"
+msgstr "Processo Email"
+
+#. module: auto_backup
+#: model:ir.actions.server,name:auto_backup.action_server_backup
+msgid "Execute backup(s)"
+msgstr ""
+
+#. module: auto_backup
+#: field:db.backup,folder:0
+msgid "Folder"
+msgstr "Pasta"
+
+#. module: auto_backup
+#: field:db.backup,message_follower_ids:0
+msgid "Followers"
+msgstr ""
+
+#. module: auto_backup
+#: view:db.backup:auto_backup.view_backup_conf_form
+msgid "Go to Settings / Technical / Automation / Scheduled Actions."
+msgstr ""
+
+#. module: auto_backup
+#: view:db.backup:auto_backup.view_backup_conf_form
+msgid "Help"
+msgstr ""
+
+#. module: auto_backup
+#: help:db.backup,message_summary:0
+msgid ""
+"Holds the Chatter summary (number of messages, ...). This summary is "
+"directly in html format in order to be inserted in kanban views."
+msgstr ""
+
+#. module: auto_backup
+#: sql_constraint:db.backup:0
+msgid "I cannot remove backups from the future. Ask Doc for that."
+msgstr ""
+
+#. module: auto_backup
+#: field:db.backup,id:0
+msgid "ID"
+msgstr "Identifica????o"
+
+#. module: auto_backup
+#: help:db.backup,message_unread:0
+msgid "If checked new messages require your attention."
+msgstr ""
+
+#. module: auto_backup
+#: field:db.backup,message_is_follower:0
+msgid "Is a Follower"
+msgstr ""
+
+#. module: auto_backup
+#: field:db.backup,message_last_post:0
+msgid "Last Message Date"
+msgstr ""
+
+#. module: auto_backup
+#: field:db.backup,__last_update:0
+msgid "Last Modified on"
+msgstr "??ltima atualiza????o em"
+
+#. module: auto_backup
+#: field:db.backup,write_uid:0
+msgid "Last Updated by"
+msgstr "??ltima atualiza????o por"
+
+#. module: auto_backup
+#: field:db.backup,write_date:0
+msgid "Last Updated on"
+msgstr "??ltima atualiza????o em"
+
+#. module: auto_backup
+#: selection:db.backup,method:0
+msgid "Local disk"
+msgstr ""
+
+#. module: auto_backup
+#: field:db.backup,message_ids:0
+msgid "Messages"
+msgstr ""
+
+#. module: auto_backup
+#: help:db.backup,message_ids:0
+msgid "Messages and communication history"
+msgstr ""
+
+#. module: auto_backup
+#: field:db.backup,method:0
+msgid "Method"
+msgstr "M??todo"
+
+#. module: auto_backup
+#: field:db.backup,name:0
+msgid "Name"
+msgstr "Nome"
+
+#. module: auto_backup
+#: help:db.backup,sftp_private_key:0
+msgid ""
+"Path to the private key file. Only the Odoo user should have read "
+"permissions for that file."
+msgstr ""
+
+#. module: auto_backup
+#: field:db.backup,sftp_private_key:0
+msgid "Private key location"
+msgstr ""
+
+#. module: auto_backup
+#: selection:db.backup,method:0
+msgid "Remote SFTP server"
+msgstr ""
+
+#. module: auto_backup
+#: field:db.backup,sftp_password:0
+msgid "SFTP Password"
+msgstr ""
+
+#. module: auto_backup
+#: field:db.backup,sftp_port:0
+msgid "SFTP Port"
+msgstr ""
+
+#. module: auto_backup
+#: field:db.backup,sftp_host:0
+msgid "SFTP Server"
+msgstr ""
+
+#. module: auto_backup
+#: view:db.backup:auto_backup.view_backup_conf_form
+msgid "SFTP Settings"
+msgstr ""
+
+#. module: auto_backup
+#: view:db.backup:auto_backup.view_backup_conf_search
+msgid "Search options"
+msgstr ""
+
+#. module: auto_backup
+#: view:db.backup:auto_backup.view_backup_conf_form
+msgid "Search the action named 'Backup scheduler'."
+msgstr ""
+
+#. module: auto_backup
+#: view:db.backup:auto_backup.view_backup_conf_form
+msgid ""
+"Set the scheduler to active and fill in how often you want backups "
+"generated."
+msgstr ""
+
+#. module: auto_backup
+#: field:db.backup,message_summary:0
+msgid "Summary"
+msgstr ""
+
+#. module: auto_backup
+#: help:db.backup,name:0
+msgid "Summary of this backup process"
+msgstr ""
+
+#. module: auto_backup
+#: view:db.backup:auto_backup.view_backup_conf_form
+msgid "Test SFTP Connection"
+msgstr ""
+
+#. module: auto_backup
+#: help:db.backup,sftp_host:0
+msgid ""
+"The host name or IP address from your remote server. For example 192.168.0.1"
+msgstr ""
+
+#. module: auto_backup
+#: help:db.backup,sftp_password:0
+msgid ""
+"The password for the SFTP connection. If you specify a private key file, "
+"then this is the password to decrypt it."
+msgstr ""
+
+#. module: auto_backup
+#: help:db.backup,sftp_port:0
+msgid "The port on the FTP server that accepts SSH/SFTP calls."
+msgstr ""
+
+#. module: auto_backup
+#: help:db.backup,sftp_user:0
+msgid ""
+"The username where the SFTP connection should be made with. This is the user"
+" on the external server."
+msgstr ""
+
+#. module: auto_backup
+#: field:db.backup,message_unread:0
+msgid "Unread Messages"
+msgstr ""
+
+#. module: auto_backup
+#: view:db.backup:auto_backup.view_backup_conf_form
+msgid ""
+"Use SFTP with caution! This writes files to external servers under the path "
+"you specify."
+msgstr ""
+
+#. module: auto_backup
+#: field:db.backup,sftp_user:0
+msgid "Username in the SFTP Server"
+msgstr ""
+
+#. module: auto_backup
+#: view:db.backup:auto_backup.view_backup_conf_form
+msgid "Warning:"
+msgstr ""
+
+#. module: auto_backup
+#: view:db.backup:auto_backup.view_backup_conf_form
+msgid "john"
+msgstr ""
+
+#. module: auto_backup
+#: view:db.backup:auto_backup.view_backup_conf_form
+msgid "sftp.example.com"
+msgstr ""
diff --git a/auto_backup/i18n/ru.po b/auto_backup/i18n/ru.po
new file mode 100644
index 00000000000..83d3f41ef21
--- /dev/null
+++ b/auto_backup/i18n/ru.po
@@ -0,0 +1,358 @@
+# Translation of Odoo Server.
+# This file contains the translation of the following modules:
+# * auto_backup
+# 
+# Translators:
+msgid ""
+msgstr ""
+"Project-Id-Version: server-tools (8.0)\n"
+"Report-Msgid-Bugs-To: \n"
+"POT-Creation-Date: 2016-04-14 07:02+0000\n"
+"PO-Revision-Date: 2016-04-05 07:21+0000\n"
+"Last-Translator: <>\n"
+"Language-Team: Russian (http://www.transifex.com/oca/OCA-server-tools-8-0/language/ru/)\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: \n"
+"Language: ru\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: auto_backup
+#: view:db.backup:auto_backup.view_backup_conf_form
+msgid "/home/odoo/.ssh/id_rsa"
+msgstr ""
+
+#. module: auto_backup
+#: help:db.backup,folder:0
+msgid "Absolute path for storing the backups"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.actions.act_window,name:auto_backup.action_backup_conf_form
+#: model:ir.ui.menu,name:auto_backup.backup_conf_menu
+msgid "Automated Backups"
+msgstr ""
+
+#. module: auto_backup
+#: view:db.backup:auto_backup.view_backup_conf_form
+msgid "Automatic backups of the database can be scheduled as follows:"
+msgstr ""
+
+#. module: auto_backup
+#: model:mail.message.subtype,name:auto_backup.failure
+msgid "Backup failed"
+msgstr ""
+
+#. module: auto_backup
+#: model:mail.message.subtype,name:auto_backup.success
+msgid "Backup successful"
+msgstr ""
+
+#. module: auto_backup
+#: view:db.backup:auto_backup.view_backup_conf_tree
+msgid "Backups"
+msgstr ""
+
+#. module: auto_backup
+#: help:db.backup,days_to_keep:0
+msgid ""
+"Backups older than this will be deleted automatically. Set 0 to disable "
+"autodeletion."
+msgstr ""
+
+#. module: auto_backup
+#: view:db.backup:auto_backup.view_backup_conf_form
+msgid "Basic backup configuration"
+msgstr ""
+
+#. module: auto_backup
+#: sql_constraint:db.backup:0
+msgid "Cannot duplicate a configuration."
+msgstr ""
+
+#. module: auto_backup
+#: help:db.backup,method:0
+msgid "Choose the storage method for this backup."
+msgstr ""
+
+#. module: auto_backup
+#: code:addons/auto_backup/models/db_backup.py:249
+#, python-format
+msgid "Cleanup of old database backups failed."
+msgstr ""
+
+#. module: auto_backup
+#: code:addons/auto_backup/models/db_backup.py:132
+#, python-format
+msgid "Connection Test Failed!"
+msgstr ""
+
+#. module: auto_backup
+#: code:addons/auto_backup/models/db_backup.py:129
+#, python-format
+msgid "Connection Test Succeeded!"
+msgstr ""
+
+#. module: auto_backup
+#: field:db.backup,create_uid:0
+msgid "Created by"
+msgstr ""
+
+#. module: auto_backup
+#: field:db.backup,create_date:0
+msgid "Created on"
+msgstr ""
+
+#. module: auto_backup
+#: code:addons/auto_backup/models/db_backup.py:208
+#: model:mail.message.subtype,description:auto_backup.failure
+#, python-format
+msgid "Database backup failed."
+msgstr ""
+
+#. module: auto_backup
+#: code:addons/auto_backup/models/db_backup.py:213
+#: model:mail.message.subtype,description:auto_backup.success
+#, python-format
+msgid "Database backup succeeded."
+msgstr ""
+
+#. module: auto_backup
+#: help:db.backup,message_last_post:0
+msgid "Date of the last message posted on the record."
+msgstr ""
+
+#. module: auto_backup
+#: field:db.backup,days_to_keep:0
+msgid "Days to keep"
+msgstr ""
+
+#. module: auto_backup
+#: code:addons/auto_backup/models/db_backup.py:120
+#, python-format
+msgid ""
+"Do not save backups on your filestore, or you will backup your backups too!"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model,name:auto_backup.model_db_backup
+msgid "Email Thread"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.actions.server,name:auto_backup.action_server_backup
+msgid "Execute backup(s)"
+msgstr ""
+
+#. module: auto_backup
+#: field:db.backup,folder:0
+msgid "Folder"
+msgstr ""
+
+#. module: auto_backup
+#: field:db.backup,message_follower_ids:0
+msgid "Followers"
+msgstr ""
+
+#. module: auto_backup
+#: view:db.backup:auto_backup.view_backup_conf_form
+msgid "Go to Settings / Technical / Automation / Scheduled Actions."
+msgstr ""
+
+#. module: auto_backup
+#: view:db.backup:auto_backup.view_backup_conf_form
+msgid "Help"
+msgstr ""
+
+#. module: auto_backup
+#: help:db.backup,message_summary:0
+msgid ""
+"Holds the Chatter summary (number of messages, ...). This summary is "
+"directly in html format in order to be inserted in kanban views."
+msgstr ""
+
+#. module: auto_backup
+#: sql_constraint:db.backup:0
+msgid "I cannot remove backups from the future. Ask Doc for that."
+msgstr ""
+
+#. module: auto_backup
+#: field:db.backup,id:0
+msgid "ID"
+msgstr ""
+
+#. module: auto_backup
+#: help:db.backup,message_unread:0
+msgid "If checked new messages require your attention."
+msgstr ""
+
+#. module: auto_backup
+#: field:db.backup,message_is_follower:0
+msgid "Is a Follower"
+msgstr ""
+
+#. module: auto_backup
+#: field:db.backup,message_last_post:0
+msgid "Last Message Date"
+msgstr ""
+
+#. module: auto_backup
+#: field:db.backup,write_uid:0
+msgid "Last Updated by"
+msgstr ""
+
+#. module: auto_backup
+#: field:db.backup,write_date:0
+msgid "Last Updated on"
+msgstr ""
+
+#. module: auto_backup
+#: selection:db.backup,method:0
+msgid "Local disk"
+msgstr ""
+
+#. module: auto_backup
+#: field:db.backup,message_ids:0
+msgid "Messages"
+msgstr ""
+
+#. module: auto_backup
+#: help:db.backup,message_ids:0
+msgid "Messages and communication history"
+msgstr ""
+
+#. module: auto_backup
+#: field:db.backup,method:0
+msgid "Method"
+msgstr ""
+
+#. module: auto_backup
+#: field:db.backup,name:0
+msgid "Name"
+msgstr "????????????????"
+
+#. module: auto_backup
+#: help:db.backup,sftp_private_key:0
+msgid ""
+"Path to the private key file. Only the Odoo user should have read "
+"permissions for that file."
+msgstr ""
+
+#. module: auto_backup
+#: field:db.backup,sftp_private_key:0
+msgid "Private key location"
+msgstr ""
+
+#. module: auto_backup
+#: selection:db.backup,method:0
+msgid "Remote SFTP server"
+msgstr ""
+
+#. module: auto_backup
+#: field:db.backup,sftp_password:0
+msgid "SFTP Password"
+msgstr ""
+
+#. module: auto_backup
+#: field:db.backup,sftp_port:0
+msgid "SFTP Port"
+msgstr ""
+
+#. module: auto_backup
+#: field:db.backup,sftp_host:0
+msgid "SFTP Server"
+msgstr ""
+
+#. module: auto_backup
+#: view:db.backup:auto_backup.view_backup_conf_form
+msgid "SFTP Settings"
+msgstr ""
+
+#. module: auto_backup
+#: view:db.backup:auto_backup.view_backup_conf_search
+msgid "Search options"
+msgstr ""
+
+#. module: auto_backup
+#: view:db.backup:auto_backup.view_backup_conf_form
+msgid "Search the action named 'Backup scheduler'."
+msgstr ""
+
+#. module: auto_backup
+#: view:db.backup:auto_backup.view_backup_conf_form
+msgid ""
+"Set the scheduler to active and fill in how often you want backups "
+"generated."
+msgstr ""
+
+#. module: auto_backup
+#: field:db.backup,message_summary:0
+msgid "Summary"
+msgstr ""
+
+#. module: auto_backup
+#: help:db.backup,name:0
+msgid "Summary of this backup process"
+msgstr ""
+
+#. module: auto_backup
+#: view:db.backup:auto_backup.view_backup_conf_form
+msgid "Test SFTP Connection"
+msgstr ""
+
+#. module: auto_backup
+#: help:db.backup,sftp_host:0
+msgid ""
+"The host name or IP address from your remote server. For example 192.168.0.1"
+msgstr ""
+
+#. module: auto_backup
+#: help:db.backup,sftp_password:0
+msgid ""
+"The password for the SFTP connection. If you specify a private key file, "
+"then this is the password to decrypt it."
+msgstr ""
+
+#. module: auto_backup
+#: help:db.backup,sftp_port:0
+msgid "The port on the FTP server that accepts SSH/SFTP calls."
+msgstr ""
+
+#. module: auto_backup
+#: help:db.backup,sftp_user:0
+msgid ""
+"The username where the SFTP connection should be made with. This is the user"
+" on the external server."
+msgstr ""
+
+#. module: auto_backup
+#: field:db.backup,message_unread:0
+msgid "Unread Messages"
+msgstr ""
+
+#. module: auto_backup
+#: view:db.backup:auto_backup.view_backup_conf_form
+msgid ""
+"Use SFTP with caution! This writes files to external servers under the path "
+"you specify."
+msgstr ""
+
+#. module: auto_backup
+#: field:db.backup,sftp_user:0
+msgid "Username in the SFTP Server"
+msgstr ""
+
+#. module: auto_backup
+#: view:db.backup:auto_backup.view_backup_conf_form
+msgid "Warning:"
+msgstr ""
+
+#. module: auto_backup
+#: view:db.backup:auto_backup.view_backup_conf_form
+msgid "john"
+msgstr ""
+
+#. module: auto_backup
+#: view:db.backup:auto_backup.view_backup_conf_form
+msgid "sftp.example.com"
+msgstr ""
diff --git a/auto_backup/i18n/sl.po b/auto_backup/i18n/sl.po
new file mode 100644
index 00000000000..41c5a6bbd72
--- /dev/null
+++ b/auto_backup/i18n/sl.po
@@ -0,0 +1,369 @@
+# Translation of Odoo Server.
+# This file contains the translation of the following modules:
+# * auto_backup
+# 
+# Translators:
+# Matja?? Mozeti?? <m.mozetic@matmoz.si>, 2016
+msgid ""
+msgstr ""
+"Project-Id-Version: server-tools (8.0)\n"
+"Report-Msgid-Bugs-To: \n"
+"POT-Creation-Date: 2016-05-28 02:41+0000\n"
+"PO-Revision-Date: 2016-05-05 05:57+0000\n"
+"Last-Translator: Matja?? Mozeti?? <m.mozetic@matmoz.si>\n"
+"Language-Team: Slovenian (http://www.transifex.com/oca/OCA-server-tools-8-0/language/sl/)\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: \n"
+"Language: sl\n"
+"Plural-Forms: nplurals=4; plural=(n%100==1 ? 0 : n%100==2 ? 1 : n%100==3 || n%100==4 ? 2 : 3);\n"
+
+#. module: auto_backup
+#: view:db.backup:auto_backup.view_backup_conf_form
+msgid "/home/odoo/.ssh/id_rsa"
+msgstr "/home/odoo/.ssh/id_rsa"
+
+#. module: auto_backup
+#: help:db.backup,folder:0
+msgid "Absolute path for storing the backups"
+msgstr "Absolutna pot za shranjevanje varnostnih kopij"
+
+#. module: auto_backup
+#: model:ir.actions.act_window,name:auto_backup.action_backup_conf_form
+#: model:ir.ui.menu,name:auto_backup.backup_conf_menu
+msgid "Automated Backups"
+msgstr "Samodejne varnostne kopije"
+
+#. module: auto_backup
+#: view:db.backup:auto_backup.view_backup_conf_form
+msgid "Automatic backups of the database can be scheduled as follows:"
+msgstr "Samodejne varnostne kopije podatkovne baze se lahko razporedi na:"
+
+#. module: auto_backup
+#: model:mail.message.subtype,name:auto_backup.failure
+msgid "Backup failed"
+msgstr "Varnostno kopiranje neuspe??no"
+
+#. module: auto_backup
+#: model:mail.message.subtype,name:auto_backup.success
+msgid "Backup successful"
+msgstr "Varnostno kopiranje uspe??no"
+
+#. module: auto_backup
+#: view:db.backup:auto_backup.view_backup_conf_tree
+msgid "Backups"
+msgstr "Varnostne kopije"
+
+#. module: auto_backup
+#: help:db.backup,days_to_keep:0
+msgid ""
+"Backups older than this will be deleted automatically. Set 0 to disable "
+"autodeletion."
+msgstr "Varnostne kopije starej??e od tega bodo samodejno izbrisane. Nastavite 0, da bi onemogo??ili samodejno brisanje."
+
+#. module: auto_backup
+#: view:db.backup:auto_backup.view_backup_conf_form
+msgid "Basic backup configuration"
+msgstr "Osnove nastavitve varnostnega kopiranja"
+
+#. module: auto_backup
+#: sql_constraint:db.backup:0
+msgid "Cannot duplicate a configuration."
+msgstr "Nastavitev ne morete podvojiti."
+
+#. module: auto_backup
+#: help:db.backup,method:0
+msgid "Choose the storage method for this backup."
+msgstr "Izberite metodo shranjevanja za to varnostno kopiranje."
+
+#. module: auto_backup
+#: code:addons/auto_backup/models/db_backup.py:247
+#, python-format
+msgid "Cleanup of old database backups failed."
+msgstr "Brisanje starih varnostnih kopij podatkovnih baz neuspe??no."
+
+#. module: auto_backup
+#: code:addons/auto_backup/models/db_backup.py:131
+#, python-format
+msgid "Connection Test Failed!"
+msgstr "Test povezave neuspe??en!"
+
+#. module: auto_backup
+#: code:addons/auto_backup/models/db_backup.py:128
+#, python-format
+msgid "Connection Test Succeeded!"
+msgstr "Test povezave uspel!"
+
+#. module: auto_backup
+#: field:db.backup,create_uid:0
+msgid "Created by"
+msgstr "Ustvaril"
+
+#. module: auto_backup
+#: field:db.backup,create_date:0
+msgid "Created on"
+msgstr "Ustvarjeno"
+
+#. module: auto_backup
+#: code:addons/auto_backup/models/db_backup.py:206
+#: model:mail.message.subtype,description:auto_backup.failure
+#, python-format
+msgid "Database backup failed."
+msgstr "Varnostno kopiranje podatkovne baze neuspe??no."
+
+#. module: auto_backup
+#: code:addons/auto_backup/models/db_backup.py:211
+#: model:mail.message.subtype,description:auto_backup.success
+#, python-format
+msgid "Database backup succeeded."
+msgstr "Varnostno kopiranje podatkovne baze uspe??no."
+
+#. module: auto_backup
+#: help:db.backup,message_last_post:0
+msgid "Date of the last message posted on the record."
+msgstr "Datum zadnjega sporo??ila objavljenega na zapisu."
+
+#. module: auto_backup
+#: field:db.backup,days_to_keep:0
+msgid "Days to keep"
+msgstr "Dni za hranjenje"
+
+#. module: auto_backup
+#: field:db.backup,display_name:0
+msgid "Display Name"
+msgstr "Prikazni naziv"
+
+#. module: auto_backup
+#: code:addons/auto_backup/models/db_backup.py:119
+#, python-format
+msgid ""
+"Do not save backups on your filestore, or you will backup your backups too!"
+msgstr "Ne hranite varnostnih kopij v 'filestore', saj boste tako kopirali tudi same varnostne kopije!"
+
+#. module: auto_backup
+#: model:ir.model,name:auto_backup.model_db_backup
+msgid "Email Thread"
+msgstr "E-po??tna nit"
+
+#. module: auto_backup
+#: model:ir.actions.server,name:auto_backup.action_server_backup
+msgid "Execute backup(s)"
+msgstr "Izvedi varnostno/a kopiranje(a)"
+
+#. module: auto_backup
+#: field:db.backup,folder:0
+msgid "Folder"
+msgstr "Mapa"
+
+#. module: auto_backup
+#: field:db.backup,message_follower_ids:0
+msgid "Followers"
+msgstr "Sledilci"
+
+#. module: auto_backup
+#: view:db.backup:auto_backup.view_backup_conf_form
+msgid "Go to Settings / Technical / Automation / Scheduled Actions."
+msgstr "Pojdi na Nastavitve / Tehni??no / Avtomatizacija / Planirana dejanja"
+
+#. module: auto_backup
+#: view:db.backup:auto_backup.view_backup_conf_form
+msgid "Help"
+msgstr "Pomo??"
+
+#. module: auto_backup
+#: help:db.backup,message_summary:0
+msgid ""
+"Holds the Chatter summary (number of messages, ...). This summary is "
+"directly in html format in order to be inserted in kanban views."
+msgstr "Povzetek (??tevilo sporo??il,..) v html formatu, da se lahko neposredno vstavi v poglede tipa kanban."
+
+#. module: auto_backup
+#: sql_constraint:db.backup:0
+msgid "I cannot remove backups from the future. Ask Doc for that."
+msgstr "Varnostnih kopij iz prihodnosti ne morete odstraniti."
+
+#. module: auto_backup
+#: field:db.backup,id:0
+msgid "ID"
+msgstr "ID"
+
+#. module: auto_backup
+#: help:db.backup,message_unread:0
+msgid "If checked new messages require your attention."
+msgstr "??e ozna??eno, zahtevajo nova sporo??ila va??o pozornost."
+
+#. module: auto_backup
+#: field:db.backup,message_is_follower:0
+msgid "Is a Follower"
+msgstr "Je sledilec"
+
+#. module: auto_backup
+#: field:db.backup,message_last_post:0
+msgid "Last Message Date"
+msgstr "Datum zadnjega sporo??ila"
+
+#. module: auto_backup
+#: field:db.backup,__last_update:0
+msgid "Last Modified on"
+msgstr "Zadnji?? spremenjeno"
+
+#. module: auto_backup
+#: field:db.backup,write_uid:0
+msgid "Last Updated by"
+msgstr "Zadnji posodobil"
+
+#. module: auto_backup
+#: field:db.backup,write_date:0
+msgid "Last Updated on"
+msgstr "Zadnji?? posodobljeno"
+
+#. module: auto_backup
+#: selection:db.backup,method:0
+msgid "Local disk"
+msgstr "Lokalni disk"
+
+#. module: auto_backup
+#: field:db.backup,message_ids:0
+msgid "Messages"
+msgstr "Sporo??ila"
+
+#. module: auto_backup
+#: help:db.backup,message_ids:0
+msgid "Messages and communication history"
+msgstr "Komunikacije in kronologija komunikacij"
+
+#. module: auto_backup
+#: field:db.backup,method:0
+msgid "Method"
+msgstr "Metoda"
+
+#. module: auto_backup
+#: field:db.backup,name:0
+msgid "Name"
+msgstr "Naziv"
+
+#. module: auto_backup
+#: help:db.backup,sftp_private_key:0
+msgid ""
+"Path to the private key file. Only the Odoo user should have read "
+"permissions for that file."
+msgstr "Pot do datoteke privatnega klju??a. Le Odoo uporabnik naj ima dovoljenje za branje te datoteke."
+
+#. module: auto_backup
+#: field:db.backup,sftp_private_key:0
+msgid "Private key location"
+msgstr "Lokacija privatnega klju??a"
+
+#. module: auto_backup
+#: selection:db.backup,method:0
+msgid "Remote SFTP server"
+msgstr "Oddaljeni SFTP stre??nik"
+
+#. module: auto_backup
+#: field:db.backup,sftp_password:0
+msgid "SFTP Password"
+msgstr "SFTP geslo"
+
+#. module: auto_backup
+#: field:db.backup,sftp_port:0
+msgid "SFTP Port"
+msgstr "SFTP port"
+
+#. module: auto_backup
+#: field:db.backup,sftp_host:0
+msgid "SFTP Server"
+msgstr "SFTP stre??nik"
+
+#. module: auto_backup
+#: view:db.backup:auto_backup.view_backup_conf_form
+msgid "SFTP Settings"
+msgstr "SFTP nastavitve"
+
+#. module: auto_backup
+#: view:db.backup:auto_backup.view_backup_conf_search
+msgid "Search options"
+msgstr "Iskalne opcije"
+
+#. module: auto_backup
+#: view:db.backup:auto_backup.view_backup_conf_form
+msgid "Search the action named 'Backup scheduler'."
+msgstr "Iskanje dejanja z nazivom 'Razporejevalnik varnostnih kopiranj'"
+
+#. module: auto_backup
+#: view:db.backup:auto_backup.view_backup_conf_form
+msgid ""
+"Set the scheduler to active and fill in how often you want backups "
+"generated."
+msgstr "Nastavite razporejevalnik kot aktiven in izpolnite, kako pogosto ??elite ustvarjati varnostne kopije."
+
+#. module: auto_backup
+#: field:db.backup,message_summary:0
+msgid "Summary"
+msgstr "Povzetek"
+
+#. module: auto_backup
+#: help:db.backup,name:0
+msgid "Summary of this backup process"
+msgstr "Povzetek procesa tega varnostnega kopiranja"
+
+#. module: auto_backup
+#: view:db.backup:auto_backup.view_backup_conf_form
+msgid "Test SFTP Connection"
+msgstr "Test SFTP povezave"
+
+#. module: auto_backup
+#: help:db.backup,sftp_host:0
+msgid ""
+"The host name or IP address from your remote server. For example 192.168.0.1"
+msgstr "IP naslov ali 'hostname' oddaljenega stre??nika. Npr. 192.168.0.1"
+
+#. module: auto_backup
+#: help:db.backup,sftp_password:0
+msgid ""
+"The password for the SFTP connection. If you specify a private key file, "
+"then this is the password to decrypt it."
+msgstr "Geslo za SFTP povezavo. ??e dolo??ite datoteko privatnega klju??a, je to geslo za de??ifriranje klju??a."
+
+#. module: auto_backup
+#: help:db.backup,sftp_port:0
+msgid "The port on the FTP server that accepts SSH/SFTP calls."
+msgstr "Vrata FTP stre??nika, ki sprejema SSH/SFTP klice."
+
+#. module: auto_backup
+#: help:db.backup,sftp_user:0
+msgid ""
+"The username where the SFTP connection should be made with. This is the user"
+" on the external server."
+msgstr "Uporabni??ko ime SFTP povezave. To je uporabnik zunanjega stre??nika."
+
+#. module: auto_backup
+#: field:db.backup,message_unread:0
+msgid "Unread Messages"
+msgstr "Neprebrana sporo??ila"
+
+#. module: auto_backup
+#: view:db.backup:auto_backup.view_backup_conf_form
+msgid ""
+"Use SFTP with caution! This writes files to external servers under the path "
+"you specify."
+msgstr "SFTP uporabljajte previdno! Datoteke se bodo zapisovale na zunanje stre??nike v pot, ki jo sami dolo??ite."
+
+#. module: auto_backup
+#: field:db.backup,sftp_user:0
+msgid "Username in the SFTP Server"
+msgstr "Uporabni??ko ime za SFTP stre??nik"
+
+#. module: auto_backup
+#: view:db.backup:auto_backup.view_backup_conf_form
+msgid "Warning:"
+msgstr "Opozorilo:"
+
+#. module: auto_backup
+#: view:db.backup:auto_backup.view_backup_conf_form
+msgid "john"
+msgstr "john"
+
+#. module: auto_backup
+#: view:db.backup:auto_backup.view_backup_conf_form
+msgid "sftp.example.com"
+msgstr "sftp.example.com"
diff --git a/auto_backup/i18n/tr.po b/auto_backup/i18n/tr.po
new file mode 100644
index 00000000000..b2ac5e8b0c1
--- /dev/null
+++ b/auto_backup/i18n/tr.po
@@ -0,0 +1,358 @@
+# Translation of Odoo Server.
+# This file contains the translation of the following modules:
+# * auto_backup
+# 
+# Translators:
+msgid ""
+msgstr ""
+"Project-Id-Version: server-tools (8.0)\n"
+"Report-Msgid-Bugs-To: \n"
+"POT-Creation-Date: 2016-04-14 07:02+0000\n"
+"PO-Revision-Date: 2016-04-05 07:21+0000\n"
+"Last-Translator: <>\n"
+"Language-Team: Turkish (http://www.transifex.com/oca/OCA-server-tools-8-0/language/tr/)\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: \n"
+"Language: tr\n"
+"Plural-Forms: nplurals=2; plural=(n > 1);\n"
+
+#. module: auto_backup
+#: view:db.backup:auto_backup.view_backup_conf_form
+msgid "/home/odoo/.ssh/id_rsa"
+msgstr ""
+
+#. module: auto_backup
+#: help:db.backup,folder:0
+msgid "Absolute path for storing the backups"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.actions.act_window,name:auto_backup.action_backup_conf_form
+#: model:ir.ui.menu,name:auto_backup.backup_conf_menu
+msgid "Automated Backups"
+msgstr ""
+
+#. module: auto_backup
+#: view:db.backup:auto_backup.view_backup_conf_form
+msgid "Automatic backups of the database can be scheduled as follows:"
+msgstr ""
+
+#. module: auto_backup
+#: model:mail.message.subtype,name:auto_backup.failure
+msgid "Backup failed"
+msgstr ""
+
+#. module: auto_backup
+#: model:mail.message.subtype,name:auto_backup.success
+msgid "Backup successful"
+msgstr ""
+
+#. module: auto_backup
+#: view:db.backup:auto_backup.view_backup_conf_tree
+msgid "Backups"
+msgstr ""
+
+#. module: auto_backup
+#: help:db.backup,days_to_keep:0
+msgid ""
+"Backups older than this will be deleted automatically. Set 0 to disable "
+"autodeletion."
+msgstr ""
+
+#. module: auto_backup
+#: view:db.backup:auto_backup.view_backup_conf_form
+msgid "Basic backup configuration"
+msgstr ""
+
+#. module: auto_backup
+#: sql_constraint:db.backup:0
+msgid "Cannot duplicate a configuration."
+msgstr ""
+
+#. module: auto_backup
+#: help:db.backup,method:0
+msgid "Choose the storage method for this backup."
+msgstr ""
+
+#. module: auto_backup
+#: code:addons/auto_backup/models/db_backup.py:249
+#, python-format
+msgid "Cleanup of old database backups failed."
+msgstr ""
+
+#. module: auto_backup
+#: code:addons/auto_backup/models/db_backup.py:132
+#, python-format
+msgid "Connection Test Failed!"
+msgstr ""
+
+#. module: auto_backup
+#: code:addons/auto_backup/models/db_backup.py:129
+#, python-format
+msgid "Connection Test Succeeded!"
+msgstr ""
+
+#. module: auto_backup
+#: field:db.backup,create_uid:0
+msgid "Created by"
+msgstr "Olu??turan"
+
+#. module: auto_backup
+#: field:db.backup,create_date:0
+msgid "Created on"
+msgstr "Olu??turuldu"
+
+#. module: auto_backup
+#: code:addons/auto_backup/models/db_backup.py:208
+#: model:mail.message.subtype,description:auto_backup.failure
+#, python-format
+msgid "Database backup failed."
+msgstr ""
+
+#. module: auto_backup
+#: code:addons/auto_backup/models/db_backup.py:213
+#: model:mail.message.subtype,description:auto_backup.success
+#, python-format
+msgid "Database backup succeeded."
+msgstr ""
+
+#. module: auto_backup
+#: help:db.backup,message_last_post:0
+msgid "Date of the last message posted on the record."
+msgstr "Kay??da eklenen son mesaj??n tarihi."
+
+#. module: auto_backup
+#: field:db.backup,days_to_keep:0
+msgid "Days to keep"
+msgstr ""
+
+#. module: auto_backup
+#: code:addons/auto_backup/models/db_backup.py:120
+#, python-format
+msgid ""
+"Do not save backups on your filestore, or you will backup your backups too!"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model,name:auto_backup.model_db_backup
+msgid "Email Thread"
+msgstr "Eposta konu??mas??"
+
+#. module: auto_backup
+#: model:ir.actions.server,name:auto_backup.action_server_backup
+msgid "Execute backup(s)"
+msgstr ""
+
+#. module: auto_backup
+#: field:db.backup,folder:0
+msgid "Folder"
+msgstr "Klas??r"
+
+#. module: auto_backup
+#: field:db.backup,message_follower_ids:0
+msgid "Followers"
+msgstr "Takip??iler"
+
+#. module: auto_backup
+#: view:db.backup:auto_backup.view_backup_conf_form
+msgid "Go to Settings / Technical / Automation / Scheduled Actions."
+msgstr ""
+
+#. module: auto_backup
+#: view:db.backup:auto_backup.view_backup_conf_form
+msgid "Help"
+msgstr ""
+
+#. module: auto_backup
+#: help:db.backup,message_summary:0
+msgid ""
+"Holds the Chatter summary (number of messages, ...). This summary is "
+"directly in html format in order to be inserted in kanban views."
+msgstr ""
+
+#. module: auto_backup
+#: sql_constraint:db.backup:0
+msgid "I cannot remove backups from the future. Ask Doc for that."
+msgstr ""
+
+#. module: auto_backup
+#: field:db.backup,id:0
+msgid "ID"
+msgstr "ID"
+
+#. module: auto_backup
+#: help:db.backup,message_unread:0
+msgid "If checked new messages require your attention."
+msgstr "E??er i??aretlenirse yeni mesajlar dikkatinizi ister."
+
+#. module: auto_backup
+#: field:db.backup,message_is_follower:0
+msgid "Is a Follower"
+msgstr "Takip ediyor"
+
+#. module: auto_backup
+#: field:db.backup,message_last_post:0
+msgid "Last Message Date"
+msgstr "Son mesaj tarihi"
+
+#. module: auto_backup
+#: field:db.backup,write_uid:0
+msgid "Last Updated by"
+msgstr "Son g??ncelleyen"
+
+#. module: auto_backup
+#: field:db.backup,write_date:0
+msgid "Last Updated on"
+msgstr "Son g??ncellenme"
+
+#. module: auto_backup
+#: selection:db.backup,method:0
+msgid "Local disk"
+msgstr ""
+
+#. module: auto_backup
+#: field:db.backup,message_ids:0
+msgid "Messages"
+msgstr "Mesajlar"
+
+#. module: auto_backup
+#: help:db.backup,message_ids:0
+msgid "Messages and communication history"
+msgstr ""
+
+#. module: auto_backup
+#: field:db.backup,method:0
+msgid "Method"
+msgstr "Method"
+
+#. module: auto_backup
+#: field:db.backup,name:0
+msgid "Name"
+msgstr "Ad??"
+
+#. module: auto_backup
+#: help:db.backup,sftp_private_key:0
+msgid ""
+"Path to the private key file. Only the Odoo user should have read "
+"permissions for that file."
+msgstr ""
+
+#. module: auto_backup
+#: field:db.backup,sftp_private_key:0
+msgid "Private key location"
+msgstr ""
+
+#. module: auto_backup
+#: selection:db.backup,method:0
+msgid "Remote SFTP server"
+msgstr ""
+
+#. module: auto_backup
+#: field:db.backup,sftp_password:0
+msgid "SFTP Password"
+msgstr ""
+
+#. module: auto_backup
+#: field:db.backup,sftp_port:0
+msgid "SFTP Port"
+msgstr ""
+
+#. module: auto_backup
+#: field:db.backup,sftp_host:0
+msgid "SFTP Server"
+msgstr ""
+
+#. module: auto_backup
+#: view:db.backup:auto_backup.view_backup_conf_form
+msgid "SFTP Settings"
+msgstr ""
+
+#. module: auto_backup
+#: view:db.backup:auto_backup.view_backup_conf_search
+msgid "Search options"
+msgstr ""
+
+#. module: auto_backup
+#: view:db.backup:auto_backup.view_backup_conf_form
+msgid "Search the action named 'Backup scheduler'."
+msgstr ""
+
+#. module: auto_backup
+#: view:db.backup:auto_backup.view_backup_conf_form
+msgid ""
+"Set the scheduler to active and fill in how often you want backups "
+"generated."
+msgstr ""
+
+#. module: auto_backup
+#: field:db.backup,message_summary:0
+msgid "Summary"
+msgstr "??zet"
+
+#. module: auto_backup
+#: help:db.backup,name:0
+msgid "Summary of this backup process"
+msgstr ""
+
+#. module: auto_backup
+#: view:db.backup:auto_backup.view_backup_conf_form
+msgid "Test SFTP Connection"
+msgstr ""
+
+#. module: auto_backup
+#: help:db.backup,sftp_host:0
+msgid ""
+"The host name or IP address from your remote server. For example 192.168.0.1"
+msgstr ""
+
+#. module: auto_backup
+#: help:db.backup,sftp_password:0
+msgid ""
+"The password for the SFTP connection. If you specify a private key file, "
+"then this is the password to decrypt it."
+msgstr ""
+
+#. module: auto_backup
+#: help:db.backup,sftp_port:0
+msgid "The port on the FTP server that accepts SSH/SFTP calls."
+msgstr ""
+
+#. module: auto_backup
+#: help:db.backup,sftp_user:0
+msgid ""
+"The username where the SFTP connection should be made with. This is the user"
+" on the external server."
+msgstr ""
+
+#. module: auto_backup
+#: field:db.backup,message_unread:0
+msgid "Unread Messages"
+msgstr "Okunmam???? mesajlar"
+
+#. module: auto_backup
+#: view:db.backup:auto_backup.view_backup_conf_form
+msgid ""
+"Use SFTP with caution! This writes files to external servers under the path "
+"you specify."
+msgstr ""
+
+#. module: auto_backup
+#: field:db.backup,sftp_user:0
+msgid "Username in the SFTP Server"
+msgstr ""
+
+#. module: auto_backup
+#: view:db.backup:auto_backup.view_backup_conf_form
+msgid "Warning:"
+msgstr ""
+
+#. module: auto_backup
+#: view:db.backup:auto_backup.view_backup_conf_form
+msgid "john"
+msgstr ""
+
+#. module: auto_backup
+#: view:db.backup:auto_backup.view_backup_conf_form
+msgid "sftp.example.com"
+msgstr ""
diff --git a/auto_backup/i18n/zh_CN.po b/auto_backup/i18n/zh_CN.po
index 77987b87964..1324e9072ab 100644
--- a/auto_backup/i18n/zh_CN.po
+++ b/auto_backup/i18n/zh_CN.po
@@ -1,42 +1,37 @@
 # Translation of Odoo Server.
 # This file contains the translation of the following modules:
-# 	* auto_backup
-#
+# * auto_backup
+# 
+# Translators:
 msgid ""
 msgstr ""
-"Project-Id-Version: Odoo Server 8.0\n"
+"Project-Id-Version: server-tools (8.0)\n"
 "Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2015-03-26 14:17+0000\n"
-"PO-Revision-Date: 2015-03-27 00:16+0800\n"
-"Last-Translator: <>\n"
-"Language-Team: Talway <1473162392@qq.com>\n"
+"POT-Creation-Date: 2016-04-14 07:02+0000\n"
+"PO-Revision-Date: 2016-04-05 07:21+0000\n"
+"Last-Translator: OCA Transbot <transbot@odoo-community.org>\n"
+"Language-Team: Chinese (China) (http://www.transifex.com/oca/OCA-server-tools-8-0/language/zh_CN/)\n"
 "MIME-Version: 1.0\n"
 "Content-Type: text/plain; charset=UTF-8\n"
-"Content-Transfer-Encoding: 8bit\n"
-"Plural-Forms: nplurals=1; plural=0;\n"
+"Content-Transfer-Encoding: \n"
 "Language: zh_CN\n"
-"X-Generator: Poedit 1.7.5\n"
+"Plural-Forms: nplurals=1; plural=0;\n"
 
 #. module: auto_backup
-#: code:addons/auto_backup/backup_scheduler.py:137
-#, python-format
-msgid "%s"
-msgstr "%s"
+#: view:db.backup:auto_backup.view_backup_conf_form
+msgid "/home/odoo/.ssh/id_rsa"
+msgstr ""
 
 #. module: auto_backup
-#: help:db.backup,bkp_dir:0
+#: help:db.backup,folder:0
 msgid "Absolute path for storing the backups"
 msgstr "??????????????????"
 
 #. module: auto_backup
-#: field:db.backup,sendmailsftpfail:0
-msgid "Auto. E-mail on backup fail"
-msgstr "FTP?????????????????????????????????"
-
-#. module: auto_backup
-#: field:db.backup,autoremove:0
-msgid "Auto. Remove Backups"
-msgstr "??????????????????"
+#: model:ir.actions.act_window,name:auto_backup.action_backup_conf_form
+#: model:ir.ui.menu,name:auto_backup.backup_conf_menu
+msgid "Automated Backups"
+msgstr ""
 
 #. module: auto_backup
 #: view:db.backup:auto_backup.view_backup_conf_form
@@ -44,9 +39,14 @@ msgid "Automatic backups of the database can be scheduled as follows:"
 msgstr "?????????????????????????????????????????????"
 
 #. module: auto_backup
-#: field:db.backup,bkp_dir:0
-msgid "Backup Directory"
-msgstr "????????????"
+#: model:mail.message.subtype,name:auto_backup.failure
+msgid "Backup failed"
+msgstr ""
+
+#. module: auto_backup
+#: model:mail.message.subtype,name:auto_backup.success
+msgid "Backup successful"
+msgstr ""
 
 #. module: auto_backup
 #: view:db.backup:auto_backup.view_backup_conf_tree
@@ -54,33 +54,44 @@ msgid "Backups"
 msgstr "??????"
 
 #. module: auto_backup
-#: help:db.backup,daystokeepsftp:0
+#: help:db.backup,days_to_keep:0
 msgid ""
-"Choose after how many days the backup should be deleted from the FTP server. For example:\n"
-"If you fill in 5 the backups will be removed after 5 days from the FTP server."
+"Backups older than this will be deleted automatically. Set 0 to disable "
+"autodeletion."
 msgstr ""
-"??????????????????????????????????????? FTP ????????????????????? \n"
-"??????????????? 5??? ???5 ?????? ???FTP ????????? ?????????????????????"
 
 #. module: auto_backup
-#: help:db.backup,daystokeep:0
-msgid ""
-"Choose after how many days the backup should be deleted. For example:\n"
-"If you fill in 5 the backups will be removed after 5 days."
+#: view:db.backup:auto_backup.view_backup_conf_form
+msgid "Basic backup configuration"
 msgstr ""
-"???????????????????????????????????????????????? \n"
-"???????????????5?????? 5 ?????????????????????"
 
 #. module: auto_backup
-#: model:ir.actions.act_window,name:auto_backup.action_backup_conf_form
-#: model:ir.ui.menu,name:auto_backup.backup_conf_menu
-msgid "Configure Backup"
-msgstr "???????????????"
+#: sql_constraint:db.backup:0
+msgid "Cannot duplicate a configuration."
+msgstr ""
 
 #. module: auto_backup
-#: view:db.backup:auto_backup.view_backup_conf_form
-msgid "Contact us!"
-msgstr "?????????????????????"
+#: help:db.backup,method:0
+msgid "Choose the storage method for this backup."
+msgstr ""
+
+#. module: auto_backup
+#: code:addons/auto_backup/models/db_backup.py:249
+#, python-format
+msgid "Cleanup of old database backups failed."
+msgstr ""
+
+#. module: auto_backup
+#: code:addons/auto_backup/models/db_backup.py:132
+#, python-format
+msgid "Connection Test Failed!"
+msgstr ""
+
+#. module: auto_backup
+#: code:addons/auto_backup/models/db_backup.py:129
+#, python-format
+msgid "Connection Test Succeeded!"
+msgstr ""
 
 #. module: auto_backup
 #: field:db.backup,create_uid:0
@@ -93,35 +104,55 @@ msgid "Created on"
 msgstr "????????????"
 
 #. module: auto_backup
-#: field:db.backup,name:0
-msgid "Database"
-msgstr "?????????"
+#: code:addons/auto_backup/models/db_backup.py:208
+#: model:mail.message.subtype,description:auto_backup.failure
+#, python-format
+msgid "Database backup failed."
+msgstr ""
 
 #. module: auto_backup
-#: help:db.backup,name:0
-msgid "Database you want to schedule backups for"
-msgstr "????????????????????????"
+#: code:addons/auto_backup/models/db_backup.py:213
+#: model:mail.message.subtype,description:auto_backup.success
+#, python-format
+msgid "Database backup succeeded."
+msgstr ""
+
+#. module: auto_backup
+#: help:db.backup,message_last_post:0
+msgid "Date of the last message posted on the record."
+msgstr ""
 
 #. module: auto_backup
-#: field:db.backup,emailtonotify:0
-msgid "E-mail to notify"
-msgstr "E-mail????????????"
+#: field:db.backup,days_to_keep:0
+msgid "Days to keep"
+msgstr ""
 
 #. module: auto_backup
-#: code:addons/auto_backup/backup_scheduler.py:106 constraint:db.backup:0
+#: code:addons/auto_backup/models/db_backup.py:120
 #, python-format
-msgid "Error ! No such database exists!"
-msgstr "?????? ??????????????????????????? ???"
+msgid ""
+"Do not save backups on your filestore, or you will backup your backups too!"
+msgstr ""
 
 #. module: auto_backup
-#: help:db.backup,emailtonotify:0
-msgid "Fill in the e-mail where you want to be notified that the backup failed on the FTP."
-msgstr "FTP?????????????????????????????????????????????"
+#: model:ir.model,name:auto_backup.model_db_backup
+msgid "Email Thread"
+msgstr ""
 
 #. module: auto_backup
-#: view:db.backup:auto_backup.view_backup_conf_form
-msgid "For example: /odoo/backups/"
-msgstr "????????? /odoo/backups/"
+#: model:ir.actions.server,name:auto_backup.action_server_backup
+msgid "Execute backup(s)"
+msgstr ""
+
+#. module: auto_backup
+#: field:db.backup,folder:0
+msgid "Folder"
+msgstr ""
+
+#. module: auto_backup
+#: field:db.backup,message_follower_ids:0
+msgid "Followers"
+msgstr ""
 
 #. module: auto_backup
 #: view:db.backup:auto_backup.view_backup_conf_form
@@ -134,9 +165,16 @@ msgid "Help"
 msgstr "??????"
 
 #. module: auto_backup
-#: field:db.backup,host:0
-msgid "Host"
-msgstr "?????????"
+#: help:db.backup,message_summary:0
+msgid ""
+"Holds the Chatter summary (number of messages, ...). This summary is "
+"directly in html format in order to be inserted in kanban views."
+msgstr ""
+
+#. module: auto_backup
+#: sql_constraint:db.backup:0
+msgid "I cannot remove backups from the future. Ask Doc for that."
+msgstr ""
 
 #. module: auto_backup
 #: field:db.backup,id:0
@@ -144,24 +182,19 @@ msgid "ID"
 msgstr "ID"
 
 #. module: auto_backup
-#: field:db.backup,sftpip:0
-msgid "IP Address SFTP Server"
-msgstr " SFTP ????????? IP ??????"
-
-#. module: auto_backup
-#: help:db.backup,sendmailsftpfail:0
-msgid "If you check this option you can choose to automaticly get e-mailed when the backup to the external server failed."
-msgstr "??????????????????????????????????????????????????????????????????????????????????????????????????????????????????"
+#: help:db.backup,message_unread:0
+msgid "If checked new messages require your attention."
+msgstr ""
 
 #. module: auto_backup
-#: help:db.backup,autoremove:0
-msgid "If you check this option you can choose to automaticly remove the backup after xx days"
-msgstr "?????????????????????????????????????????? xx ????????????????????????"
+#: field:db.backup,message_is_follower:0
+msgid "Is a Follower"
+msgstr ""
 
 #. module: auto_backup
-#: help:db.backup,sftpwrite:0
-msgid "If you check this option you can specify the details needed to write to a remote server with SFTP."
-msgstr "?????????????????????????????????????????????????????? sftp ????????????????????????????????????"
+#: field:db.backup,message_last_post:0
+msgid "Last Message Date"
+msgstr ""
 
 #. module: auto_backup
 #: field:db.backup,write_uid:0
@@ -174,50 +207,67 @@ msgid "Last Updated on"
 msgstr "??????????????????"
 
 #. module: auto_backup
-#: view:db.backup:auto_backup.view_backup_conf_form
-msgid "Local backup configuration"
-msgstr "??????????????????"
+#: selection:db.backup,method:0
+msgid "Local disk"
+msgstr ""
 
 #. module: auto_backup
-#: view:db.backup:auto_backup.view_backup_conf_form
-msgid "Need more help?"
-msgstr "????????????????????????"
+#: field:db.backup,message_ids:0
+msgid "Messages"
+msgstr ""
+
+#. module: auto_backup
+#: help:db.backup,message_ids:0
+msgid "Messages and communication history"
+msgstr ""
 
 #. module: auto_backup
-#: field:db.backup,sftppassword:0
-msgid "Password User SFTP Server"
-msgstr " SFTP???????????????"
+#: field:db.backup,method:0
+msgid "Method"
+msgstr ""
 
 #. module: auto_backup
-#: field:db.backup,sftppath:0
-msgid "Path external server"
-msgstr "???????????????"
+#: field:db.backup,name:0
+msgid "Name"
+msgstr ""
 
 #. module: auto_backup
-#: field:db.backup,port:0
-msgid "Port"
-msgstr "??????"
+#: help:db.backup,sftp_private_key:0
+msgid ""
+"Path to the private key file. Only the Odoo user should have read "
+"permissions for that file."
+msgstr ""
 
 #. module: auto_backup
-#: field:db.backup,daystokeepsftp:0
-msgid "Remove SFTP after x days"
-msgstr "??????????????????????????????"
+#: field:db.backup,sftp_private_key:0
+msgid "Private key location"
+msgstr ""
 
 #. module: auto_backup
-#: field:db.backup,daystokeep:0
-msgid "Remove after x days"
-msgstr "??????????????????"
+#: selection:db.backup,method:0
+msgid "Remote SFTP server"
+msgstr ""
 
 #. module: auto_backup
-#: view:db.backup:auto_backup.view_backup_conf_form
-msgid "SFTP"
-msgstr "SFTP"
+#: field:db.backup,sftp_password:0
+msgid "SFTP Password"
+msgstr ""
 
 #. module: auto_backup
-#: field:db.backup,sftpport:0
+#: field:db.backup,sftp_port:0
 msgid "SFTP Port"
 msgstr "SFTP ??????"
 
+#. module: auto_backup
+#: field:db.backup,sftp_host:0
+msgid "SFTP Server"
+msgstr ""
+
+#. module: auto_backup
+#: view:db.backup:auto_backup.view_backup_conf_form
+msgid "SFTP Settings"
+msgstr ""
+
 #. module: auto_backup
 #: view:db.backup:auto_backup.view_backup_conf_search
 msgid "Search options"
@@ -230,13 +280,20 @@ msgstr "?????????????????????????????????Backup scheduler??????"
 
 #. module: auto_backup
 #: view:db.backup:auto_backup.view_backup_conf_form
-msgid "Set the scheduler to active and fill in how often you want backups generated."
+msgid ""
+"Set the scheduler to active and fill in how often you want backups "
+"generated."
 msgstr "?????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????"
 
 #. module: auto_backup
-#: view:db.backup:auto_backup.view_backup_conf_form
-msgid "Test"
-msgstr "??????"
+#: field:db.backup,message_summary:0
+msgid "Summary"
+msgstr ""
+
+#. module: auto_backup
+#: help:db.backup,name:0
+msgid "Summary of this backup process"
+msgstr ""
 
 #. module: auto_backup
 #: view:db.backup:auto_backup.view_backup_conf_form
@@ -244,48 +301,46 @@ msgid "Test SFTP Connection"
 msgstr "?????? SFTP ??????"
 
 #. module: auto_backup
-#: help:db.backup,sftpip:0
-msgid "The IP address from your remote server. For example 192.168.0.1"
-msgstr "SFTP???????????? IP ?????????????????? 192.168.0.1"
-
-#. module: auto_backup
-#: help:db.backup,sftppath:0
+#: help:db.backup,sftp_host:0
 msgid ""
-"The location to the folder where the dumps should be written to. For example /odoo/backups/.\n"
-"Files will then be written to /odoo/backups/ on your remote server."
+"The host name or IP address from your remote server. For example 192.168.0.1"
 msgstr ""
-"????????????????????????????????????????????? /odoo/backups/???????????????????????????????????? /odoo/backups/.\n"
-"Files???"
 
 #. module: auto_backup
-#: help:db.backup,sftppassword:0
-msgid "The password from the user where the SFTP connection should be made with. This is the password from the user on the external server."
-msgstr "??? SFTP ??????????????????????????????????????????SFTP??????????????????????????????"
+#: help:db.backup,sftp_password:0
+msgid ""
+"The password for the SFTP connection. If you specify a private key file, "
+"then this is the password to decrypt it."
+msgstr ""
 
 #. module: auto_backup
-#: help:db.backup,sftpport:0
+#: help:db.backup,sftp_port:0
 msgid "The port on the FTP server that accepts SSH/SFTP calls."
 msgstr "?????? SSH/SFTP ?????????FTP ????????????????????????"
 
 #. module: auto_backup
-#: help:db.backup,sftpusername:0
-msgid "The username where the SFTP connection should be made with. This is the user on the external server."
+#: help:db.backup,sftp_user:0
+msgid ""
+"The username where the SFTP connection should be made with. This is the user"
+" on the external server."
 msgstr "SFTP ????????????????????????????????????SFTP????????????????????????"
 
 #. module: auto_backup
-#: view:db.backup:auto_backup.view_backup_conf_form
-msgid "This configures the scheduler for automatic backup of the given database running on given host at given port on regular intervals."
-msgstr "????????????????????????????????? ????????????????????????????????????"
+#: field:db.backup,message_unread:0
+msgid "Unread Messages"
+msgstr ""
 
 #. module: auto_backup
 #: view:db.backup:auto_backup.view_backup_conf_form
-msgid "Use SFTP with caution! This writes files to external servers under the path you specify."
+msgid ""
+"Use SFTP with caution! This writes files to external servers under the path "
+"you specify."
 msgstr "??????????????? SFTP???????????????????????????????????????????????????????????????SFTP???????????????????????????????????????????????????"
 
 #. module: auto_backup
-#: field:db.backup,sftpusername:0
-msgid "Username SFTP Server"
-msgstr "SFTP??????????????????"
+#: field:db.backup,sftp_user:0
+msgid "Username in the SFTP Server"
+msgstr ""
 
 #. module: auto_backup
 #: view:db.backup:auto_backup.view_backup_conf_form
@@ -293,6 +348,11 @@ msgid "Warning:"
 msgstr "?????????"
 
 #. module: auto_backup
-#: field:db.backup,sftpwrite:0
-msgid "Write to external server with sftp"
-msgstr "??????????????? sftp ?????????"
+#: view:db.backup:auto_backup.view_backup_conf_form
+msgid "john"
+msgstr ""
+
+#. module: auto_backup
+#: view:db.backup:auto_backup.view_backup_conf_form
+msgid "sftp.example.com"
+msgstr ""
diff --git a/auto_backup/models/db_backup.py b/auto_backup/models/db_backup.py
index 6a1af98a251..f21fd234a34 100644
--- a/auto_backup/models/db_backup.py
+++ b/auto_backup/models/db_backup.py
@@ -17,7 +17,7 @@
 try:
     import pysftp
 except ImportError:
-    _logger.warning('Cannot import pysftp')
+    _logger.debug('Cannot import pysftp')
 
 
 class DbBackup(models.Model):

From 663c05c8e1b5c8dac6d7efc21c1cf07c018cba84 Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?St=C3=A9phane=20Bidoul=20=28ACSONE=29?=
 <stephane.bidoul@acsone.eu>
Date: Mon, 15 Aug 2016 22:15:13 +0200
Subject: [PATCH 07/52] [FIX] remove en.po that was erroneously created by
 transbot

---
 auto_backup/i18n/en.po | 368 -----------------------------------------
 1 file changed, 368 deletions(-)
 delete mode 100644 auto_backup/i18n/en.po

diff --git a/auto_backup/i18n/en.po b/auto_backup/i18n/en.po
deleted file mode 100644
index 58bbc8a971e..00000000000
--- a/auto_backup/i18n/en.po
+++ /dev/null
@@ -1,368 +0,0 @@
-# Translation of Odoo Server.
-# This file contains the translation of the following modules:
-# * auto_backup
-# 
-# Translators:
-msgid ""
-msgstr ""
-"Project-Id-Version: server-tools (8.0)\n"
-"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2016-05-28 02:41+0000\n"
-"PO-Revision-Date: 2016-05-04 19:15+0000\n"
-"Last-Translator: OCA Transbot <transbot@odoo-community.org>\n"
-"Language-Team: English (http://www.transifex.com/oca/OCA-server-tools-8-0/language/en/)\n"
-"MIME-Version: 1.0\n"
-"Content-Type: text/plain; charset=UTF-8\n"
-"Content-Transfer-Encoding: \n"
-"Language: en\n"
-"Plural-Forms: nplurals=2; plural=(n != 1);\n"
-
-#. module: auto_backup
-#: view:db.backup:auto_backup.view_backup_conf_form
-msgid "/home/odoo/.ssh/id_rsa"
-msgstr "/home/odoo/.ssh/id_rsa"
-
-#. module: auto_backup
-#: help:db.backup,folder:0
-msgid "Absolute path for storing the backups"
-msgstr "Absolute path for storing the backups"
-
-#. module: auto_backup
-#: model:ir.actions.act_window,name:auto_backup.action_backup_conf_form
-#: model:ir.ui.menu,name:auto_backup.backup_conf_menu
-msgid "Automated Backups"
-msgstr "Automated Backups"
-
-#. module: auto_backup
-#: view:db.backup:auto_backup.view_backup_conf_form
-msgid "Automatic backups of the database can be scheduled as follows:"
-msgstr "Automatic backups of the database can be scheduled as follows:"
-
-#. module: auto_backup
-#: model:mail.message.subtype,name:auto_backup.failure
-msgid "Backup failed"
-msgstr "Backup failed"
-
-#. module: auto_backup
-#: model:mail.message.subtype,name:auto_backup.success
-msgid "Backup successful"
-msgstr "Backup successful"
-
-#. module: auto_backup
-#: view:db.backup:auto_backup.view_backup_conf_tree
-msgid "Backups"
-msgstr "Backups"
-
-#. module: auto_backup
-#: help:db.backup,days_to_keep:0
-msgid ""
-"Backups older than this will be deleted automatically. Set 0 to disable "
-"autodeletion."
-msgstr "Backups older than this will be deleted automatically. Set 0 to disable autodeletion."
-
-#. module: auto_backup
-#: view:db.backup:auto_backup.view_backup_conf_form
-msgid "Basic backup configuration"
-msgstr "Basic backup configuration"
-
-#. module: auto_backup
-#: sql_constraint:db.backup:0
-msgid "Cannot duplicate a configuration."
-msgstr "Cannot duplicate a configuration."
-
-#. module: auto_backup
-#: help:db.backup,method:0
-msgid "Choose the storage method for this backup."
-msgstr "Choose the storage method for this backup."
-
-#. module: auto_backup
-#: code:addons/auto_backup/models/db_backup.py:247
-#, python-format
-msgid "Cleanup of old database backups failed."
-msgstr "Cleanup of old database backups failed."
-
-#. module: auto_backup
-#: code:addons/auto_backup/models/db_backup.py:131
-#, python-format
-msgid "Connection Test Failed!"
-msgstr "Connection Test Failed!"
-
-#. module: auto_backup
-#: code:addons/auto_backup/models/db_backup.py:128
-#, python-format
-msgid "Connection Test Succeeded!"
-msgstr "Connection Test Succeeded!"
-
-#. module: auto_backup
-#: field:db.backup,create_uid:0
-msgid "Created by"
-msgstr "Created by"
-
-#. module: auto_backup
-#: field:db.backup,create_date:0
-msgid "Created on"
-msgstr "Created on"
-
-#. module: auto_backup
-#: code:addons/auto_backup/models/db_backup.py:206
-#: model:mail.message.subtype,description:auto_backup.failure
-#, python-format
-msgid "Database backup failed."
-msgstr "Database backup failed."
-
-#. module: auto_backup
-#: code:addons/auto_backup/models/db_backup.py:211
-#: model:mail.message.subtype,description:auto_backup.success
-#, python-format
-msgid "Database backup succeeded."
-msgstr "Database backup succeeded."
-
-#. module: auto_backup
-#: help:db.backup,message_last_post:0
-msgid "Date of the last message posted on the record."
-msgstr "Date of the last message posted on the record."
-
-#. module: auto_backup
-#: field:db.backup,days_to_keep:0
-msgid "Days to keep"
-msgstr "Days to keep"
-
-#. module: auto_backup
-#: field:db.backup,display_name:0
-msgid "Display Name"
-msgstr "Display Name"
-
-#. module: auto_backup
-#: code:addons/auto_backup/models/db_backup.py:119
-#, python-format
-msgid ""
-"Do not save backups on your filestore, or you will backup your backups too!"
-msgstr "Do not save backups on your filestore, or you will backup your backups too!"
-
-#. module: auto_backup
-#: model:ir.model,name:auto_backup.model_db_backup
-msgid "Email Thread"
-msgstr "Email Thread"
-
-#. module: auto_backup
-#: model:ir.actions.server,name:auto_backup.action_server_backup
-msgid "Execute backup(s)"
-msgstr "Execute backup(s)"
-
-#. module: auto_backup
-#: field:db.backup,folder:0
-msgid "Folder"
-msgstr "Folder"
-
-#. module: auto_backup
-#: field:db.backup,message_follower_ids:0
-msgid "Followers"
-msgstr "Followers"
-
-#. module: auto_backup
-#: view:db.backup:auto_backup.view_backup_conf_form
-msgid "Go to Settings / Technical / Automation / Scheduled Actions."
-msgstr "Go to Settings / Technical / Automation / Scheduled Actions."
-
-#. module: auto_backup
-#: view:db.backup:auto_backup.view_backup_conf_form
-msgid "Help"
-msgstr "Help"
-
-#. module: auto_backup
-#: help:db.backup,message_summary:0
-msgid ""
-"Holds the Chatter summary (number of messages, ...). This summary is "
-"directly in html format in order to be inserted in kanban views."
-msgstr "Holds the Chatter summary (number of messages, ...). This summary is directly in html format in order to be inserted in kanban views."
-
-#. module: auto_backup
-#: sql_constraint:db.backup:0
-msgid "I cannot remove backups from the future. Ask Doc for that."
-msgstr "I cannot remove backups from the future. Ask Doc for that."
-
-#. module: auto_backup
-#: field:db.backup,id:0
-msgid "ID"
-msgstr "ID"
-
-#. module: auto_backup
-#: help:db.backup,message_unread:0
-msgid "If checked new messages require your attention."
-msgstr "If checked new messages require your attention."
-
-#. module: auto_backup
-#: field:db.backup,message_is_follower:0
-msgid "Is a Follower"
-msgstr "Is a Follower"
-
-#. module: auto_backup
-#: field:db.backup,message_last_post:0
-msgid "Last Message Date"
-msgstr "Last Message Date"
-
-#. module: auto_backup
-#: field:db.backup,__last_update:0
-msgid "Last Modified on"
-msgstr "Last Modified on"
-
-#. module: auto_backup
-#: field:db.backup,write_uid:0
-msgid "Last Updated by"
-msgstr "Last Updated by"
-
-#. module: auto_backup
-#: field:db.backup,write_date:0
-msgid "Last Updated on"
-msgstr "Last Updated on"
-
-#. module: auto_backup
-#: selection:db.backup,method:0
-msgid "Local disk"
-msgstr "Local disk"
-
-#. module: auto_backup
-#: field:db.backup,message_ids:0
-msgid "Messages"
-msgstr "Messages"
-
-#. module: auto_backup
-#: help:db.backup,message_ids:0
-msgid "Messages and communication history"
-msgstr "Messages and communication history"
-
-#. module: auto_backup
-#: field:db.backup,method:0
-msgid "Method"
-msgstr "Method"
-
-#. module: auto_backup
-#: field:db.backup,name:0
-msgid "Name"
-msgstr "Name"
-
-#. module: auto_backup
-#: help:db.backup,sftp_private_key:0
-msgid ""
-"Path to the private key file. Only the Odoo user should have read "
-"permissions for that file."
-msgstr "Path to the private key file. Only the Odoo user should have read permissions for that file."
-
-#. module: auto_backup
-#: field:db.backup,sftp_private_key:0
-msgid "Private key location"
-msgstr "Private key location"
-
-#. module: auto_backup
-#: selection:db.backup,method:0
-msgid "Remote SFTP server"
-msgstr "Remote SFTP server"
-
-#. module: auto_backup
-#: field:db.backup,sftp_password:0
-msgid "SFTP Password"
-msgstr "SFTP Password"
-
-#. module: auto_backup
-#: field:db.backup,sftp_port:0
-msgid "SFTP Port"
-msgstr "SFTP Port"
-
-#. module: auto_backup
-#: field:db.backup,sftp_host:0
-msgid "SFTP Server"
-msgstr "SFTP Server"
-
-#. module: auto_backup
-#: view:db.backup:auto_backup.view_backup_conf_form
-msgid "SFTP Settings"
-msgstr "SFTP Settings"
-
-#. module: auto_backup
-#: view:db.backup:auto_backup.view_backup_conf_search
-msgid "Search options"
-msgstr "Search options"
-
-#. module: auto_backup
-#: view:db.backup:auto_backup.view_backup_conf_form
-msgid "Search the action named 'Backup scheduler'."
-msgstr "Search the action named 'Backup scheduler'."
-
-#. module: auto_backup
-#: view:db.backup:auto_backup.view_backup_conf_form
-msgid ""
-"Set the scheduler to active and fill in how often you want backups "
-"generated."
-msgstr "Set the scheduler to active and fill in how often you want backups generated."
-
-#. module: auto_backup
-#: field:db.backup,message_summary:0
-msgid "Summary"
-msgstr "Summary"
-
-#. module: auto_backup
-#: help:db.backup,name:0
-msgid "Summary of this backup process"
-msgstr "Summary of this backup process"
-
-#. module: auto_backup
-#: view:db.backup:auto_backup.view_backup_conf_form
-msgid "Test SFTP Connection"
-msgstr "Test SFTP Connection"
-
-#. module: auto_backup
-#: help:db.backup,sftp_host:0
-msgid ""
-"The host name or IP address from your remote server. For example 192.168.0.1"
-msgstr "The host name or IP address from your remote server. For example 192.168.0.1"
-
-#. module: auto_backup
-#: help:db.backup,sftp_password:0
-msgid ""
-"The password for the SFTP connection. If you specify a private key file, "
-"then this is the password to decrypt it."
-msgstr "The password for the SFTP connection. If you specify a private key file, then this is the password to decrypt it."
-
-#. module: auto_backup
-#: help:db.backup,sftp_port:0
-msgid "The port on the FTP server that accepts SSH/SFTP calls."
-msgstr "The port on the FTP server that accepts SSH/SFTP calls."
-
-#. module: auto_backup
-#: help:db.backup,sftp_user:0
-msgid ""
-"The username where the SFTP connection should be made with. This is the user"
-" on the external server."
-msgstr "The username where the SFTP connection should be made with. This is the user on the external server."
-
-#. module: auto_backup
-#: field:db.backup,message_unread:0
-msgid "Unread Messages"
-msgstr "Unread Messages"
-
-#. module: auto_backup
-#: view:db.backup:auto_backup.view_backup_conf_form
-msgid ""
-"Use SFTP with caution! This writes files to external servers under the path "
-"you specify."
-msgstr "Use SFTP with caution! This writes files to external servers under the path you specify."
-
-#. module: auto_backup
-#: field:db.backup,sftp_user:0
-msgid "Username in the SFTP Server"
-msgstr "Username in the SFTP Server"
-
-#. module: auto_backup
-#: view:db.backup:auto_backup.view_backup_conf_form
-msgid "Warning:"
-msgstr "Warning:"
-
-#. module: auto_backup
-#: view:db.backup:auto_backup.view_backup_conf_form
-msgid "john"
-msgstr "john"
-
-#. module: auto_backup
-#: view:db.backup:auto_backup.view_backup_conf_form
-msgid "sftp.example.com"
-msgstr "sftp.example.com"

From 5263b60af6cea1e2b9fc6230ff8687f7e9af9efd Mon Sep 17 00:00:00 2001
From: Dave Lasley <dave@laslabs.com>
Date: Mon, 22 Aug 2016 18:09:25 -0700
Subject: [PATCH 08/52] [MIG] auto_backup: Migrate to v9 * Add self.ensure_ones
 * Add test coverage

---
 auto_backup/README.rst                        |  20 +-
 .../{__openerp__.py => __manifest__.py}       |  19 +-
 auto_backup/data/backup_data.yml              |  28 ---
 auto_backup/data/ir_cron.xml                  |  18 ++
 auto_backup/data/mail_message_subtype.xml     |  19 ++
 auto_backup/models/db_backup.py               |  10 +-
 auto_backup/tests/__init__.py                 |   2 +-
 auto_backup/tests/test_auto_backup.py         |  28 ---
 auto_backup/tests/test_db_backup.py           | 232 ++++++++++++++++++
 auto_backup/view/db_backup_view.xml           |   9 +-
 10 files changed, 307 insertions(+), 78 deletions(-)
 rename auto_backup/{__openerp__.py => __manifest__.py} (67%)
 delete mode 100644 auto_backup/data/backup_data.yml
 create mode 100644 auto_backup/data/ir_cron.xml
 create mode 100644 auto_backup/data/mail_message_subtype.xml
 delete mode 100644 auto_backup/tests/test_auto_backup.py
 create mode 100644 auto_backup/tests/test_db_backup.py

diff --git a/auto_backup/README.rst b/auto_backup/README.rst
index 0f3f729c9a0..e71082a5f20 100644
--- a/auto_backup/README.rst
+++ b/auto_backup/README.rst
@@ -70,15 +70,24 @@ manually execute the selected processes.
 
 .. image:: https://odoo-community.org/website/image/ir.attachment/5784_f2813bd/datas
    :alt: Try me on Runbot
-   :target: https://runbot.odoo-community.org/runbot/149/8.0
+   :target: https://runbot.odoo-community.org/runbot/149/10.0
+
+Known issues / Roadmap
+======================
+
+* On larger databases, it is possible that backups will die due to Odoo server
+  settings. In order to circumvent this without frivolously changing settings,
+  you need to run the backup from outside of the main Odoo instance. How to do
+  this is outlined in `this blog post
+  <https://blog.laslabs.com/2016/10/running-python-scripts-within-odoos-environment/>`_.
 
 Bug Tracker
 ===========
 
-Bugs are tracked on `GitHub Issues <https://github.com/OCA/server-tools/issues>`_.
-In case of trouble, please check there if your issue has already been reported.
-If you spotted it first, help us smashing it by providing a detailed and welcomed feedback
-`here <https://github.com/OCA/server-tools/issues/new?body=module:%20auto_backup%0Aversion:%208.0%0A%0A**Steps%20to%20reproduce**%0A-%20...%0A%0A**Current%20behavior**%0A%0A**Expected%20behavior**>`_.
+Bugs are tracked on `GitHub Issues
+<https://github.com/OCA/server-tools/issues>`_. In case of trouble, please
+check there if your issue has already been reported. If you spotted it first,
+help us smashing it by providing a detailed and welcomed feedback.
 
 Credits
 =======
@@ -89,6 +98,7 @@ Contributors
 * Yenthe Van Ginneken <yenthe.vanginneken@vanroey.be>
 * Alessio Gerace <alessio.gerace@agilebg.com>
 * Jairo Llopis <yajo.sk8@gmail.com>
+* Dave Lasley <dave@laslabs.com>
 
 Maintainer
 ----------
diff --git a/auto_backup/__openerp__.py b/auto_backup/__manifest__.py
similarity index 67%
rename from auto_backup/__openerp__.py
rename to auto_backup/__manifest__.py
index b094e39067d..12f651d4270 100644
--- a/auto_backup/__openerp__.py
+++ b/auto_backup/__manifest__.py
@@ -7,19 +7,24 @@
 {
     "name": "Database Auto-Backup",
     "summary": "Backups database",
-    "version": "8.0.1.0.1",
+    "version": "10.0.1.0.0",
     "author": (
-        "VanRoey.be - Yenthe Van Ginneken, Agile Business Group,"
-        " Grupo ESOC Ingenier??a de Servicios,"
-        " Odoo Community Association (OCA)"
+        "Yenthe Van Ginneken, "
+        "Agile Business Group, "
+        "Grupo ESOC Ingenier??a de Servicios, "
+        "LasLabs, "
+        "Odoo Community Association (OCA)"
     ),
     'license': "AGPL-3",
     "website": "http://www.vanroey.be/applications/bedrijfsbeheer/odoo",
     "category": "Tools",
-    "depends": ['email_template'],
-    "demo": [],
+    "depends": [
+        'base_setup',
+        'mail',
+    ],
     "data": [
-        "data/backup_data.yml",
+        "data/ir_cron.xml",
+        "data/mail_message_subtype.xml",
         "security/ir.model.access.csv",
         "view/db_backup_view.xml",
     ],
diff --git a/auto_backup/data/backup_data.yml b/auto_backup/data/backup_data.yml
deleted file mode 100644
index 00ce17cc12f..00000000000
--- a/auto_backup/data/backup_data.yml
+++ /dev/null
@@ -1,28 +0,0 @@
-# -*- coding: utf-8 -*-
-# ?? 2016 Grupo ESOC Ingenier??a de Servicios, S.L.U. - Jairo Llopis
-# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl.html).
-
-# Cron job
-- !record {model: ir.cron, id: ir_cron_backupscheduler0}:
-    name: Backup scheduler
-    user_id: base.user_root
-    interval_number: 1
-    interval_type: days
-    numbercall: -1
-    nextcall: !eval
-        (datetime.now() + timedelta(days=1)).strftime("%Y-%m-%d 02:00:00")
-    model: db.backup
-    function: action_backup_all
-
-# New message subtypes
-- !record {model: mail.message.subtype, id: success}:
-    name: Backup successful
-    res_model: db.backup
-    default: False
-    description: Database backup succeeded.
-
-- !record {model: mail.message.subtype, id: failure}:
-    name: Backup failed
-    res_model: db.backup
-    default: True
-    description: Database backup failed.
diff --git a/auto_backup/data/ir_cron.xml b/auto_backup/data/ir_cron.xml
new file mode 100644
index 00000000000..6b62e364b0c
--- /dev/null
+++ b/auto_backup/data/ir_cron.xml
@@ -0,0 +1,18 @@
+<?xml version="1.0" encoding="UTF-8"?>
+
+<odoo noupdate="1">
+
+    <record id="ir_cron_backup_scheduler_0" model="ir.cron">
+        <field name="name">Backup Scheduler</field>
+        <field name="user_id" ref="base.user_root" />
+        <field name="interval_number">1</field>
+        <field name="interval_type">days</field>
+        <field name="numbercall">-1</field>
+        <field name="nextcall"
+               eval="(datetime.now() + timedelta(days=1)).strftime('%Y-%m-%d 02:00:00')"
+               />
+        <field name="model">db.backup</field>
+        <field name="function">action_backup_all</field>
+    </record>
+
+</odoo>
diff --git a/auto_backup/data/mail_message_subtype.xml b/auto_backup/data/mail_message_subtype.xml
new file mode 100644
index 00000000000..2dd820f975f
--- /dev/null
+++ b/auto_backup/data/mail_message_subtype.xml
@@ -0,0 +1,19 @@
+<?xml version="1.0" encoding="UTF-8"?>
+
+<odoo noupdate="1">
+
+    <record id="mail_message_subtype_success" model="mail.message.subtype">
+        <field name="name">Backup Successful</field>
+        <field name="description">Database backup succeeded.</field>
+        <field name="res_model">db.backup</field>
+        <field name="default" eval="False" />
+    </record>
+
+    <record id="mail_message_subtype_failure" model="mail.message.subtype">
+        <field name="name">Backup Failed</field>
+        <field name="description">Database backup failed.</field>
+        <field name="res_model">db.backup</field>
+        <field name="default" eval="True" />
+    </record>
+
+</odoo>
diff --git a/auto_backup/models/db_backup.py b/auto_backup/models/db_backup.py
index f21fd234a34..93fa83a1e9e 100644
--- a/auto_backup/models/db_backup.py
+++ b/auto_backup/models/db_backup.py
@@ -10,13 +10,13 @@
 from contextlib import contextmanager
 from datetime import datetime, timedelta
 from glob import iglob
-from openerp import exceptions, models, fields, api, _, tools
-from openerp.service import db
+from odoo import exceptions, models, fields, api, _, tools
+from odoo.service import db
 import logging
 _logger = logging.getLogger(__name__)
 try:
     import pysftp
-except ImportError:
+except ImportError:  # pragma: no cover
     _logger.debug('Cannot import pysftp')
 
 
@@ -107,8 +107,8 @@ def _compute_name(self):
                 rec.name = "sftp://%s@%s:%d%s" % (
                     rec.sftp_user, rec.sftp_host, rec.sftp_port, rec.folder)
 
-    @api.constrains("folder", "method")
     @api.multi
+    @api.constrains("folder", "method")
     def _check_folder(self):
         """Do not use the filestore or you will backup your backups."""
         for s in self:
@@ -235,6 +235,7 @@ def cleanup(self):
     @contextmanager
     def cleanup_log(self):
         """Log a possible cleanup failure."""
+        self.ensure_one()
         try:
             _logger.info("Starting cleanup process after database backup: %s",
                          self.name)
@@ -263,6 +264,7 @@ def filename(self, when):
     @api.multi
     def sftp_connection(self):
         """Return a new SFTP connection with found parameters."""
+        self.ensure_one()
         params = {
             "host": self.sftp_host,
             "username": self.sftp_user,
diff --git a/auto_backup/tests/__init__.py b/auto_backup/tests/__init__.py
index 37b76001129..ebbbca6dd49 100644
--- a/auto_backup/tests/__init__.py
+++ b/auto_backup/tests/__init__.py
@@ -4,4 +4,4 @@
 # ?? 2016 Grupo ESOC Ingenier??a de Servicios, S.L.U. - Jairo Llopis
 # License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl.html).
 
-from . import test_auto_backup
+from . import test_db_backup
diff --git a/auto_backup/tests/test_auto_backup.py b/auto_backup/tests/test_auto_backup.py
deleted file mode 100644
index 3a1bad5ba43..00000000000
--- a/auto_backup/tests/test_auto_backup.py
+++ /dev/null
@@ -1,28 +0,0 @@
-# -*- coding: utf-8 -*-
-# ?? 2015 Agile Business Group <http://www.agilebg.com>
-# ?? 2015 Alessio Gerace <alesiso.gerace@agilebg.com>
-# ?? 2016 Grupo ESOC Ingenier??a de Servicios, S.L.U. - Jairo Llopis
-# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl.html).
-
-import os
-from datetime import datetime
-from openerp.tests import common
-
-
-class TestsAutoBackup(common.TransactionCase):
-
-    def setUp(self):
-        super(TestsAutoBackup, self).setUp()
-        self.abk = self.env["db.backup"].create(
-            {
-                'name': u'T??st backup',
-            }
-        )
-
-    def test_local(self):
-        """A local database is backed up."""
-        filename = self.abk.filename(datetime.now())
-        self.abk.action_backup()
-        generated_backup = [f for f in os.listdir(self.abk.folder)
-                            if f >= filename]
-        self.assertEqual(len(generated_backup), 1)
diff --git a/auto_backup/tests/test_db_backup.py b/auto_backup/tests/test_db_backup.py
new file mode 100644
index 00000000000..722b2f2788b
--- /dev/null
+++ b/auto_backup/tests/test_db_backup.py
@@ -0,0 +1,232 @@
+# -*- coding: utf-8 -*-
+# ?? 2015 Agile Business Group <http://www.agilebg.com>
+# ?? 2015 Alessio Gerace <alesiso.gerace@agilebg.com>
+# ?? 2016 Grupo ESOC Ingenier??a de Servicios, S.L.U. - Jairo Llopis
+# Copyright 2016 LasLabs Inc.
+# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl.html).
+
+import os
+import mock
+
+from datetime import datetime
+from contextlib import contextmanager
+
+from odoo.tests import common
+from odoo import exceptions, tools
+
+try:
+    import pysftp
+except ImportError:
+    pass
+
+
+model = 'odoo.addons.auto_backup.models.db_backup'
+
+
+class TestConnectionException(pysftp.ConnectionException):
+    def __init__(self):
+        super(TestConnectionException, self).__init__('test', 'test')
+
+
+class TestDbBackup(common.TransactionCase):
+
+    def setUp(self):
+        super(TestDbBackup, self).setUp()
+        self.Model = self.env["db.backup"]
+
+    @contextmanager
+    def mock_assets(self):
+        """ It provides mocked core assets """
+        self.path_join_val = '/this/is/a/path'
+        with mock.patch('%s.db' % model) as db:
+            with mock.patch('%s.os' % model) as os:
+                with mock.patch('%s.shutil' % model) as shutil:
+                    os.path.join.return_value = self.path_join_val
+                    yield {
+                        'db': db,
+                        'os': os,
+                        'shutil': shutil,
+                    }
+
+    @contextmanager
+    def patch_filtered_sftp(self, record, mocks=None):
+        """ It patches filtered record and provides a mock """
+        if mocks is None:
+            mocks = ['sftp_connection']
+        mocks = {m: mock.DEFAULT for m in mocks}
+        with mock.patch.object(record, 'filtered') as filtered:
+            with mock.patch.object(record, 'backup_log'):
+                with mock.patch.multiple(record, **mocks):
+                    filtered.side_effect = [], [record]
+                    yield filtered
+
+    def new_record(self, method='sftp'):
+        vals = {
+            'name': u'T??st backup',
+            'method': method,
+        }
+        if method == 'sftp':
+            vals.update({
+                'sftp_host': 'test_host',
+                'sftp_port': '222',
+                'sftp_user': 'tuser',
+                'sftp_password': 'password',
+                'folder': '/folder/',
+            })
+        self.vals = vals
+        return self.Model.create(vals)
+
+    def test_compute_name_sftp(self):
+        """ It should create proper SFTP URI """
+        rec_id = self.new_record()
+        self.assertEqual(
+            'sftp://%(user)s@%(host)s:%(port)s%(folder)s' % {
+                'user': self.vals['sftp_user'],
+                'host': self.vals['sftp_host'],
+                'port': self.vals['sftp_port'],
+                'folder': self.vals['folder'],
+            },
+            rec_id.name,
+        )
+
+    def test_check_folder(self):
+        """ It should not allow recursive backups """
+        rec_id = self.new_record('local')
+        with self.assertRaises(exceptions.ValidationError):
+            rec_id.write({
+                'folder': '%s/another/path' % tools.config.filestore(
+                    self.env.cr.dbname
+                ),
+            })
+
+    @mock.patch('%s._' % model)
+    def test_action_sftp_test_connection_success(self, _):
+        """ It should raise connection succeeded warning """
+        rec_id = self.new_record()
+        with mock.patch.object(rec_id, 'sftp_connection'):
+            with self.assertRaises(exceptions.Warning):
+                rec_id.action_sftp_test_connection()
+            _.assert_called_once_with("Connection Test Succeeded!")
+
+    @mock.patch('%s._' % model)
+    def test_action_sftp_test_connection_fail(self, _):
+        """ It should raise connection fail warning """
+        rec_id = self.new_record()
+        with mock.patch.object(rec_id, 'sftp_connection') as conn:
+            conn().__enter__.side_effect = TestConnectionException
+            with self.assertRaises(exceptions.Warning):
+                rec_id.action_sftp_test_connection()
+            _.assert_called_once_with("Connection Test Failed!")
+
+    def test_action_backup_local(self):
+        """ It should backup local database """
+        rec_id = self.new_record('local')
+        filename = rec_id.filename(datetime.now())
+        rec_id.action_backup()
+        generated_backup = [f for f in os.listdir(rec_id.folder)
+                            if f >= filename]
+        self.assertEqual(1, len(generated_backup))
+
+    def test_action_backup_sftp_mkdirs(self):
+        """ It should create remote dirs """
+        rec_id = self.new_record()
+        with self.mock_assets():
+            with self.patch_filtered_sftp(rec_id):
+                conn = rec_id.sftp_connection().__enter__()
+                rec_id.action_backup()
+                conn.makedirs.assert_called_once_with(rec_id.folder)
+
+    def test_action_backup_sftp_mkdirs_conn_exception(self):
+        """ It should guard from ConnectionException on remote.mkdirs """
+        rec_id = self.new_record()
+        with self.mock_assets():
+            with self.patch_filtered_sftp(rec_id):
+                conn = rec_id.sftp_connection().__enter__()
+                conn.makedirs.side_effect = TestConnectionException
+                rec_id.action_backup()
+                # No error was raised, test pass
+                self.assertTrue(True)
+
+    def test_action_backup_sftp_remote_open(self):
+        """ It should open remote file w/ proper args """
+        rec_id = self.new_record()
+        with self.mock_assets() as assets:
+            with self.patch_filtered_sftp(rec_id):
+                conn = rec_id.sftp_connection().__enter__()
+                rec_id.action_backup()
+                conn.open.assert_called_once_with(
+                    assets['os'].path.join(),
+                    'wb'
+                )
+
+    def test_action_backup_sftp_remote_open(self):
+        """ It should open remote file w/ proper args """
+        rec_id = self.new_record()
+        with self.mock_assets() as assets:
+            with self.patch_filtered_sftp(rec_id):
+                conn = rec_id.sftp_connection().__enter__()
+                rec_id.action_backup()
+                conn.open.assert_called_once_with(
+                    assets['os'].path.join(),
+                    'wb'
+                )
+
+    def test_action_backup_all_search(self):
+        """ It should search all records """
+        rec_id = self.new_record()
+        with mock.patch.object(rec_id, 'search'):
+            rec_id.action_backup_all()
+            rec_id.search.assert_called_once_with([])
+
+    def test_action_backup_all_return(self):
+        """ It should return result of backup operation """
+        rec_id = self.new_record()
+        with mock.patch.object(rec_id, 'search'):
+            res = rec_id.action_backup_all()
+            self.assertEqual(
+                rec_id.search().action_backup(), res
+            )
+
+    @mock.patch('%s.pysftp' % model)
+    def test_sftp_connection_init_passwd(self, pysftp):
+        """ It should initiate SFTP connection w/ proper args and pass """
+        rec_id = self.new_record()
+        rec_id.sftp_connection()
+        pysftp.Connection.assert_called_once_with(
+            host=rec_id.sftp_host,
+            username=rec_id.sftp_user,
+            port=rec_id.sftp_port,
+            password=rec_id.sftp_password,
+        )
+
+    @mock.patch('%s.pysftp' % model)
+    def test_sftp_connection_init_key(self, pysftp):
+        """ It should initiate SFTP connection w/ proper args and key """
+        rec_id = self.new_record()
+        rec_id.write({
+            'sftp_private_key': 'pkey',
+            'sftp_password': 'pkeypass',
+        })
+        rec_id.sftp_connection()
+        pysftp.Connection.assert_called_once_with(
+            host=rec_id.sftp_host,
+            username=rec_id.sftp_user,
+            port=rec_id.sftp_port,
+            private_key=rec_id.sftp_private_key,
+            private_key_pass=rec_id.sftp_password,
+        )
+
+    @mock.patch('%s.pysftp' % model)
+    def test_sftp_connection_return(self, pysftp):
+        """ It should return new sftp connection """
+        rec_id = self.new_record()
+        res = rec_id.sftp_connection()
+        self.assertEqual(
+            pysftp.Connection(), res,
+        )
+
+    def test_filename(self):
+        """ It should not error and should return a .dump.zip file str """
+        now = datetime.now()
+        res = self.Model.filename(now)
+        self.assertTrue(res.endswith(".dump.zip"))
diff --git a/auto_backup/view/db_backup_view.xml b/auto_backup/view/db_backup_view.xml
index d1f11e4420b..f36ff2361f1 100644
--- a/auto_backup/view/db_backup_view.xml
+++ b/auto_backup/view/db_backup_view.xml
@@ -1,6 +1,5 @@
 <?xml version="1.0"?>
-<openerp>
-<data>
+<odoo>
 
     <record model="ir.ui.view" id="view_backup_conf_form">
         <field name="name">Automated Backups</field>
@@ -80,7 +79,7 @@
         res_model="db.backup"/>
 
     <menuitem
-        parent="base.menu_config"
+        parent="base_setup.menu_config"
         action="action_backup_conf_form"
         id="backup_conf_menu"/>
 
@@ -104,5 +103,5 @@
         <field name="model">db.backup</field>
         <field name="key2">client_action_multi</field>
     </record>
-</data>
-</openerp>
+
+</odoo>

From 29cce1cf8d44de2882f05a98fecf3ccfcc92619c Mon Sep 17 00:00:00 2001
From: "Yenthe V.G" <yenthevg@gmail.com>
Date: Mon, 23 Jan 2017 08:04:41 +0100
Subject: [PATCH 09/52] [auto_backup] FIX: failure type notification

Fixes https://github.com/OCA/server-tools/issues/710
---
 auto_backup/models/db_backup.py | 5 ++++-
 1 file changed, 4 insertions(+), 1 deletion(-)

diff --git a/auto_backup/models/db_backup.py b/auto_backup/models/db_backup.py
index 93fa83a1e9e..8503fe15646 100644
--- a/auto_backup/models/db_backup.py
+++ b/auto_backup/models/db_backup.py
@@ -205,7 +205,10 @@ def backup_log(self):
                 "<p>%s</p><pre>%s</pre>" % (
                     _("Database backup failed."),
                     escaped_tb),
-                subtype=self.env.ref("auto_backup.failure"))
+                subtype=self.env.ref(
+                    "auto_backup.mail_message_subtype_failure"
+                ),
+            )
         else:
             _logger.info("Database backup succeeded: %s", self.name)
             self.message_post(_("Database backup succeeded."))

From 621c59606fd5595b1a723f016ac823a1afe20ae7 Mon Sep 17 00:00:00 2001
From: Andrea Stirpe <a.stirpe@onestein.nl>
Date: Wed, 15 Feb 2017 02:24:05 +0100
Subject: [PATCH 10/52] [10.0][auto_backup] Menu entry moved (#735)

* [10.0][auto_backup] Menu entry moved

* Update version in manifest
---
 auto_backup/__manifest__.py         | 3 +--
 auto_backup/view/db_backup_view.xml | 2 +-
 2 files changed, 2 insertions(+), 3 deletions(-)

diff --git a/auto_backup/__manifest__.py b/auto_backup/__manifest__.py
index 12f651d4270..58927d9ac8e 100644
--- a/auto_backup/__manifest__.py
+++ b/auto_backup/__manifest__.py
@@ -7,7 +7,7 @@
 {
     "name": "Database Auto-Backup",
     "summary": "Backups database",
-    "version": "10.0.1.0.0",
+    "version": "10.0.1.0.1",
     "author": (
         "Yenthe Van Ginneken, "
         "Agile Business Group, "
@@ -19,7 +19,6 @@
     "website": "http://www.vanroey.be/applications/bedrijfsbeheer/odoo",
     "category": "Tools",
     "depends": [
-        'base_setup',
         'mail',
     ],
     "data": [
diff --git a/auto_backup/view/db_backup_view.xml b/auto_backup/view/db_backup_view.xml
index f36ff2361f1..4c4ee6579be 100644
--- a/auto_backup/view/db_backup_view.xml
+++ b/auto_backup/view/db_backup_view.xml
@@ -79,7 +79,7 @@
         res_model="db.backup"/>
 
     <menuitem
-        parent="base_setup.menu_config"
+        parent="base.next_id_9"
         action="action_backup_conf_form"
         id="backup_conf_menu"/>
 

From 2e03c0e1847e16b537316ddaf7615e1bfde50395 Mon Sep 17 00:00:00 2001
From: Lorenzo Battistini <lorenzo.battistini@agilebg.com>
Date: Fri, 17 Mar 2017 21:42:01 +0100
Subject: [PATCH 11/52] FIX sftp unlink path (#767)

---
 auto_backup/__manifest__.py     | 2 +-
 auto_backup/models/db_backup.py | 2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/auto_backup/__manifest__.py b/auto_backup/__manifest__.py
index 58927d9ac8e..7eba3b2a4b0 100644
--- a/auto_backup/__manifest__.py
+++ b/auto_backup/__manifest__.py
@@ -7,7 +7,7 @@
 {
     "name": "Database Auto-Backup",
     "summary": "Backups database",
-    "version": "10.0.1.0.1",
+    "version": "10.0.1.0.2",
     "author": (
         "Yenthe Van Ginneken, "
         "Agile Business Group, "
diff --git a/auto_backup/models/db_backup.py b/auto_backup/models/db_backup.py
index 8503fe15646..a28280190a4 100644
--- a/auto_backup/models/db_backup.py
+++ b/auto_backup/models/db_backup.py
@@ -232,7 +232,7 @@ def cleanup(self):
                         for name in remote.listdir(rec.folder):
                             if (name.endswith(".dump.zip") and
                                     os.path.basename(name) < oldest):
-                                remote.unlink(name)
+                                remote.unlink('%s/%s' % (rec.folder, name))
 
     @api.multi
     @contextmanager

From cc52bf14ed3e96b70136656959ab64c6580d1680 Mon Sep 17 00:00:00 2001
From: Andrea Stirpe <a.stirpe@onestein.nl>
Date: Mon, 1 May 2017 12:35:28 +0200
Subject: [PATCH 12/52] Fix icon Test SFTP Connection (#825)

---
 auto_backup/i18n/am.po              | 317 +++++++++++++++++++++++++++
 auto_backup/i18n/ar.po              | 317 +++++++++++++++++++++++++++
 auto_backup/i18n/bg.po              | 317 +++++++++++++++++++++++++++
 auto_backup/i18n/bs.po              | 317 +++++++++++++++++++++++++++
 auto_backup/i18n/ca.po              | 317 +++++++++++++++++++++++++++
 auto_backup/i18n/cs.po              | 317 +++++++++++++++++++++++++++
 auto_backup/i18n/da.po              | 317 +++++++++++++++++++++++++++
 auto_backup/i18n/de.po              | 214 ++++++++-----------
 auto_backup/i18n/el_GR.po           | 317 +++++++++++++++++++++++++++
 auto_backup/i18n/en_GB.po           | 317 +++++++++++++++++++++++++++
 auto_backup/i18n/es.po              | 222 +++++++++----------
 auto_backup/i18n/es_AR.po           | 317 +++++++++++++++++++++++++++
 auto_backup/i18n/es_CL.po           | 317 +++++++++++++++++++++++++++
 auto_backup/i18n/es_CO.po           | 317 +++++++++++++++++++++++++++
 auto_backup/i18n/es_CR.po           | 317 +++++++++++++++++++++++++++
 auto_backup/i18n/es_DO.po           | 317 +++++++++++++++++++++++++++
 auto_backup/i18n/es_EC.po           | 317 +++++++++++++++++++++++++++
 auto_backup/i18n/es_ES.po           | 317 +++++++++++++++++++++++++++
 auto_backup/i18n/es_MX.po           | 317 +++++++++++++++++++++++++++
 auto_backup/i18n/es_PE.po           | 317 +++++++++++++++++++++++++++
 auto_backup/i18n/es_PY.po           | 317 +++++++++++++++++++++++++++
 auto_backup/i18n/es_VE.po           | 317 +++++++++++++++++++++++++++
 auto_backup/i18n/et.po              | 317 +++++++++++++++++++++++++++
 auto_backup/i18n/eu.po              | 317 +++++++++++++++++++++++++++
 auto_backup/i18n/fa.po              | 317 +++++++++++++++++++++++++++
 auto_backup/i18n/fi.po              | 167 +++++----------
 auto_backup/i18n/fr.po              | 217 ++++++++-----------
 auto_backup/i18n/fr_CA.po           | 185 +++++++---------
 auto_backup/i18n/fr_CH.po           | 317 +++++++++++++++++++++++++++
 auto_backup/i18n/gl.po              | 317 +++++++++++++++++++++++++++
 auto_backup/i18n/gl_ES.po           | 317 +++++++++++++++++++++++++++
 auto_backup/i18n/he.po              | 317 +++++++++++++++++++++++++++
 auto_backup/i18n/hr.po              | 320 ++++++++++++++++++++++++++++
 auto_backup/i18n/hr_HR.po           | 317 +++++++++++++++++++++++++++
 auto_backup/i18n/hu.po              | 317 +++++++++++++++++++++++++++
 auto_backup/i18n/id.po              | 317 +++++++++++++++++++++++++++
 auto_backup/i18n/it.po              | 216 ++++++++-----------
 auto_backup/i18n/ja.po              | 317 +++++++++++++++++++++++++++
 auto_backup/i18n/ko.po              | 317 +++++++++++++++++++++++++++
 auto_backup/i18n/lt.po              | 317 +++++++++++++++++++++++++++
 auto_backup/i18n/lt_LT.po           | 317 +++++++++++++++++++++++++++
 auto_backup/i18n/lv.po              | 317 +++++++++++++++++++++++++++
 auto_backup/i18n/mk.po              | 317 +++++++++++++++++++++++++++
 auto_backup/i18n/mn.po              | 317 +++++++++++++++++++++++++++
 auto_backup/i18n/nb.po              | 317 +++++++++++++++++++++++++++
 auto_backup/i18n/nb_NO.po           | 317 +++++++++++++++++++++++++++
 auto_backup/i18n/pl.po              | 317 +++++++++++++++++++++++++++
 auto_backup/i18n/pt.po              | 317 +++++++++++++++++++++++++++
 auto_backup/i18n/pt_BR.po           | 178 ++++++----------
 auto_backup/i18n/pt_PT.po           | 317 +++++++++++++++++++++++++++
 auto_backup/i18n/ro.po              | 317 +++++++++++++++++++++++++++
 auto_backup/i18n/ru.po              | 183 ++++++----------
 auto_backup/i18n/sk.po              | 317 +++++++++++++++++++++++++++
 auto_backup/i18n/sl.po              | 202 +++++++-----------
 auto_backup/i18n/sr.po              | 317 +++++++++++++++++++++++++++
 auto_backup/i18n/sr@latin.po        | 317 +++++++++++++++++++++++++++
 auto_backup/i18n/sv.po              | 317 +++++++++++++++++++++++++++
 auto_backup/i18n/th.po              | 317 +++++++++++++++++++++++++++
 auto_backup/i18n/tr.po              | 179 ++++++----------
 auto_backup/i18n/tr_TR.po           | 317 +++++++++++++++++++++++++++
 auto_backup/i18n/uk.po              | 317 +++++++++++++++++++++++++++
 auto_backup/i18n/vi.po              | 317 +++++++++++++++++++++++++++
 auto_backup/i18n/vi_VN.po           | 317 +++++++++++++++++++++++++++
 auto_backup/i18n/zh_CN.po           | 179 ++++++----------
 auto_backup/i18n/zh_TW.po           | 317 +++++++++++++++++++++++++++
 auto_backup/models/db_backup.py     |   4 +-
 auto_backup/view/db_backup_view.xml |   2 +-
 67 files changed, 17973 insertions(+), 1296 deletions(-)
 create mode 100644 auto_backup/i18n/am.po
 create mode 100644 auto_backup/i18n/ar.po
 create mode 100644 auto_backup/i18n/bg.po
 create mode 100644 auto_backup/i18n/bs.po
 create mode 100644 auto_backup/i18n/ca.po
 create mode 100644 auto_backup/i18n/cs.po
 create mode 100644 auto_backup/i18n/da.po
 create mode 100644 auto_backup/i18n/el_GR.po
 create mode 100644 auto_backup/i18n/en_GB.po
 create mode 100644 auto_backup/i18n/es_AR.po
 create mode 100644 auto_backup/i18n/es_CL.po
 create mode 100644 auto_backup/i18n/es_CO.po
 create mode 100644 auto_backup/i18n/es_CR.po
 create mode 100644 auto_backup/i18n/es_DO.po
 create mode 100644 auto_backup/i18n/es_EC.po
 create mode 100644 auto_backup/i18n/es_ES.po
 create mode 100644 auto_backup/i18n/es_MX.po
 create mode 100644 auto_backup/i18n/es_PE.po
 create mode 100644 auto_backup/i18n/es_PY.po
 create mode 100644 auto_backup/i18n/es_VE.po
 create mode 100644 auto_backup/i18n/et.po
 create mode 100644 auto_backup/i18n/eu.po
 create mode 100644 auto_backup/i18n/fa.po
 create mode 100644 auto_backup/i18n/fr_CH.po
 create mode 100644 auto_backup/i18n/gl.po
 create mode 100644 auto_backup/i18n/gl_ES.po
 create mode 100644 auto_backup/i18n/he.po
 create mode 100644 auto_backup/i18n/hr.po
 create mode 100644 auto_backup/i18n/hr_HR.po
 create mode 100644 auto_backup/i18n/hu.po
 create mode 100644 auto_backup/i18n/id.po
 create mode 100644 auto_backup/i18n/ja.po
 create mode 100644 auto_backup/i18n/ko.po
 create mode 100644 auto_backup/i18n/lt.po
 create mode 100644 auto_backup/i18n/lt_LT.po
 create mode 100644 auto_backup/i18n/lv.po
 create mode 100644 auto_backup/i18n/mk.po
 create mode 100644 auto_backup/i18n/mn.po
 create mode 100644 auto_backup/i18n/nb.po
 create mode 100644 auto_backup/i18n/nb_NO.po
 create mode 100644 auto_backup/i18n/pl.po
 create mode 100644 auto_backup/i18n/pt.po
 create mode 100644 auto_backup/i18n/pt_PT.po
 create mode 100644 auto_backup/i18n/ro.po
 create mode 100644 auto_backup/i18n/sk.po
 create mode 100644 auto_backup/i18n/sr.po
 create mode 100644 auto_backup/i18n/sr@latin.po
 create mode 100644 auto_backup/i18n/sv.po
 create mode 100644 auto_backup/i18n/th.po
 create mode 100644 auto_backup/i18n/tr_TR.po
 create mode 100644 auto_backup/i18n/uk.po
 create mode 100644 auto_backup/i18n/vi.po
 create mode 100644 auto_backup/i18n/vi_VN.po
 create mode 100644 auto_backup/i18n/zh_TW.po

diff --git a/auto_backup/i18n/am.po b/auto_backup/i18n/am.po
new file mode 100644
index 00000000000..7f453333a43
--- /dev/null
+++ b/auto_backup/i18n/am.po
@@ -0,0 +1,317 @@
+# Translation of Odoo Server.
+# This file contains the translation of the following modules:
+# * auto_backup
+# 
+# Translators:
+# OCA Transbot <transbot@odoo-community.org>, 2016
+msgid ""
+msgstr ""
+"Project-Id-Version: Odoo Server 10.0\n"
+"Report-Msgid-Bugs-To: \n"
+"POT-Creation-Date: 2016-12-08 03:36+0000\n"
+"PO-Revision-Date: 2016-12-08 03:36+0000\n"
+"Last-Translator: OCA Transbot <transbot@odoo-community.org>, 2016\n"
+"Language-Team: Amharic (https://www.transifex.com/oca/teams/23907/am/)\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: \n"
+"Language: am\n"
+"Plural-Forms: nplurals=2; plural=(n > 1);\n"
+
+#. module: auto_backup
+#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+msgid "/home/odoo/.ssh/id_rsa"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,help:auto_backup.field_db_backup_folder
+msgid "Absolute path for storing the backups"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.actions.act_window,name:auto_backup.action_backup_conf_form
+#: model:ir.ui.menu,name:auto_backup.backup_conf_menu
+msgid "Automated Backups"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+msgid "Automatic backups of the database can be scheduled as follows:"
+msgstr ""
+
+#. module: auto_backup
+#: model:mail.message.subtype,name:auto_backup.mail_message_subtype_failure
+msgid "Backup Failed"
+msgstr ""
+
+#. module: auto_backup
+#: model:mail.message.subtype,name:auto_backup.mail_message_subtype_success
+msgid "Backup Successful"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_tree
+msgid "Backups"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,help:auto_backup.field_db_backup_days_to_keep
+msgid ""
+"Backups older than this will be deleted automatically. Set 0 to disable "
+"autodeletion."
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+msgid "Basic backup configuration"
+msgstr ""
+
+#. module: auto_backup
+#: sql_constraint:db.backup:0
+msgid "Cannot duplicate a configuration."
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,help:auto_backup.field_db_backup_method
+msgid "Choose the storage method for this backup."
+msgstr ""
+
+#. module: auto_backup
+#: code:addons/auto_backup/models/db_backup.py:248
+#, python-format
+msgid "Cleanup of old database backups failed."
+msgstr ""
+
+#. module: auto_backup
+#: code:addons/auto_backup/models/db_backup.py:131
+#, python-format
+msgid "Connection Test Failed!"
+msgstr ""
+
+#. module: auto_backup
+#: code:addons/auto_backup/models/db_backup.py:128
+#, python-format
+msgid "Connection Test Succeeded!"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup_create_uid
+msgid "Created by"
+msgstr "Creado por"
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup_create_date
+msgid "Created on"
+msgstr "Creado en"
+
+#. module: auto_backup
+#: code:addons/auto_backup/models/db_backup.py:206
+#: model:mail.message.subtype,description:auto_backup.mail_message_subtype_failure
+#, python-format
+msgid "Database backup failed."
+msgstr ""
+
+#. module: auto_backup
+#: code:addons/auto_backup/models/db_backup.py:211
+#: model:mail.message.subtype,description:auto_backup.mail_message_subtype_success
+#, python-format
+msgid "Database backup succeeded."
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup_days_to_keep
+msgid "Days to keep"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup_display_name
+msgid "Display Name"
+msgstr ""
+
+#. module: auto_backup
+#: code:addons/auto_backup/models/db_backup.py:119
+#, python-format
+msgid ""
+"Do not save backups on your filestore, or you will backup your backups too!"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.actions.server,name:auto_backup.action_server_backup
+msgid "Execute backup(s)"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup_folder
+msgid "Folder"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+msgid "Go to Settings / Technical / Automation / Scheduled Actions."
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+msgid "Help"
+msgstr ""
+
+#. module: auto_backup
+#: sql_constraint:db.backup:0
+msgid "I cannot remove backups from the future. Ask Doc for that."
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup_id
+msgid "ID"
+msgstr "ID"
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup___last_update
+msgid "Last Modified on"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup_write_uid
+msgid "Last Updated by"
+msgstr "??ltima actualizaci??n por"
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup_write_date
+msgid "Last Updated on"
+msgstr "??ltima actualizaci??n en"
+
+#. module: auto_backup
+#: selection:db.backup,method:0
+msgid "Local disk"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup_method
+msgid "Method"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup_name
+msgid "Name"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,help:auto_backup.field_db_backup_sftp_private_key
+msgid ""
+"Path to the private key file. Only the Odoo user should have read "
+"permissions for that file."
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup_sftp_private_key
+msgid "Private key location"
+msgstr ""
+
+#. module: auto_backup
+#: selection:db.backup,method:0
+msgid "Remote SFTP server"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup_sftp_password
+msgid "SFTP Password"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup_sftp_port
+msgid "SFTP Port"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup_sftp_host
+msgid "SFTP Server"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+msgid "SFTP Settings"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_search
+msgid "Search options"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+msgid "Search the action named 'Backup scheduler'."
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+msgid ""
+"Set the scheduler to active and fill in how often you want backups "
+"generated."
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,help:auto_backup.field_db_backup_name
+msgid "Summary of this backup process"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+msgid "Test SFTP Connection"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,help:auto_backup.field_db_backup_sftp_host
+msgid ""
+"The host name or IP address from your remote server. For example 192.168.0.1"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,help:auto_backup.field_db_backup_sftp_password
+msgid ""
+"The password for the SFTP connection. If you specify a private key file, "
+"then this is the password to decrypt it."
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,help:auto_backup.field_db_backup_sftp_port
+msgid "The port on the FTP server that accepts SSH/SFTP calls."
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,help:auto_backup.field_db_backup_sftp_user
+msgid ""
+"The username where the SFTP connection should be made with. This is the user"
+" on the external server."
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+msgid ""
+"Use SFTP with caution! This writes files to external servers under the path "
+"you specify."
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup_sftp_user
+msgid "Username in the SFTP Server"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+msgid "Warning:"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model,name:auto_backup.model_db_backup
+msgid "db.backup"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+msgid "john"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+msgid "sftp.example.com"
+msgstr ""
diff --git a/auto_backup/i18n/ar.po b/auto_backup/i18n/ar.po
new file mode 100644
index 00000000000..eb40f690b49
--- /dev/null
+++ b/auto_backup/i18n/ar.po
@@ -0,0 +1,317 @@
+# Translation of Odoo Server.
+# This file contains the translation of the following modules:
+# * auto_backup
+# 
+# Translators:
+# OCA Transbot <transbot@odoo-community.org>, 2016
+msgid ""
+msgstr ""
+"Project-Id-Version: Odoo Server 10.0\n"
+"Report-Msgid-Bugs-To: \n"
+"POT-Creation-Date: 2017-02-18 02:29+0000\n"
+"PO-Revision-Date: 2017-02-18 02:29+0000\n"
+"Last-Translator: OCA Transbot <transbot@odoo-community.org>, 2016\n"
+"Language-Team: Arabic (https://www.transifex.com/oca/teams/23907/ar/)\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: \n"
+"Language: ar\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: auto_backup
+#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+msgid "/home/odoo/.ssh/id_rsa"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,help:auto_backup.field_db_backup_folder
+msgid "Absolute path for storing the backups"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.actions.act_window,name:auto_backup.action_backup_conf_form
+#: model:ir.ui.menu,name:auto_backup.backup_conf_menu
+msgid "Automated Backups"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+msgid "Automatic backups of the database can be scheduled as follows:"
+msgstr ""
+
+#. module: auto_backup
+#: model:mail.message.subtype,name:auto_backup.mail_message_subtype_failure
+msgid "Backup Failed"
+msgstr ""
+
+#. module: auto_backup
+#: model:mail.message.subtype,name:auto_backup.mail_message_subtype_success
+msgid "Backup Successful"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_tree
+msgid "Backups"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,help:auto_backup.field_db_backup_days_to_keep
+msgid ""
+"Backups older than this will be deleted automatically. Set 0 to disable "
+"autodeletion."
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+msgid "Basic backup configuration"
+msgstr ""
+
+#. module: auto_backup
+#: sql_constraint:db.backup:0
+msgid "Cannot duplicate a configuration."
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,help:auto_backup.field_db_backup_method
+msgid "Choose the storage method for this backup."
+msgstr ""
+
+#. module: auto_backup
+#: code:addons/auto_backup/models/db_backup.py:251
+#, python-format
+msgid "Cleanup of old database backups failed."
+msgstr ""
+
+#. module: auto_backup
+#: code:addons/auto_backup/models/db_backup.py:131
+#, python-format
+msgid "Connection Test Failed!"
+msgstr ""
+
+#. module: auto_backup
+#: code:addons/auto_backup/models/db_backup.py:128
+#, python-format
+msgid "Connection Test Succeeded!"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup_create_uid
+msgid "Created by"
+msgstr "???????? ????????????"
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup_create_date
+msgid "Created on"
+msgstr "???????? ????"
+
+#. module: auto_backup
+#: code:addons/auto_backup/models/db_backup.py:206
+#: model:mail.message.subtype,description:auto_backup.mail_message_subtype_failure
+#, python-format
+msgid "Database backup failed."
+msgstr ""
+
+#. module: auto_backup
+#: code:addons/auto_backup/models/db_backup.py:214
+#: model:mail.message.subtype,description:auto_backup.mail_message_subtype_success
+#, python-format
+msgid "Database backup succeeded."
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup_days_to_keep
+msgid "Days to keep"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup_display_name
+msgid "Display Name"
+msgstr "?????? ??????????"
+
+#. module: auto_backup
+#: code:addons/auto_backup/models/db_backup.py:119
+#, python-format
+msgid ""
+"Do not save backups on your filestore, or you will backup your backups too!"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.actions.server,name:auto_backup.action_server_backup
+msgid "Execute backup(s)"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup_folder
+msgid "Folder"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+msgid "Go to Settings / Technical / Automation / Scheduled Actions."
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+msgid "Help"
+msgstr ""
+
+#. module: auto_backup
+#: sql_constraint:db.backup:0
+msgid "I cannot remove backups from the future. Ask Doc for that."
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup_id
+msgid "ID"
+msgstr "????????????"
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup___last_update
+msgid "Last Modified on"
+msgstr "?????? ?????????? ????"
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup_write_uid
+msgid "Last Updated by"
+msgstr "?????? ?????????? ????????????"
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup_write_date
+msgid "Last Updated on"
+msgstr "?????? ?????????? ????"
+
+#. module: auto_backup
+#: selection:db.backup,method:0
+msgid "Local disk"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup_method
+msgid "Method"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup_name
+msgid "Name"
+msgstr "??????????"
+
+#. module: auto_backup
+#: model:ir.model.fields,help:auto_backup.field_db_backup_sftp_private_key
+msgid ""
+"Path to the private key file. Only the Odoo user should have read "
+"permissions for that file."
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup_sftp_private_key
+msgid "Private key location"
+msgstr ""
+
+#. module: auto_backup
+#: selection:db.backup,method:0
+msgid "Remote SFTP server"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup_sftp_password
+msgid "SFTP Password"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup_sftp_port
+msgid "SFTP Port"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup_sftp_host
+msgid "SFTP Server"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+msgid "SFTP Settings"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_search
+msgid "Search options"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+msgid "Search the action named 'Backup scheduler'."
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+msgid ""
+"Set the scheduler to active and fill in how often you want backups "
+"generated."
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,help:auto_backup.field_db_backup_name
+msgid "Summary of this backup process"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+msgid "Test SFTP Connection"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,help:auto_backup.field_db_backup_sftp_host
+msgid ""
+"The host name or IP address from your remote server. For example 192.168.0.1"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,help:auto_backup.field_db_backup_sftp_password
+msgid ""
+"The password for the SFTP connection. If you specify a private key file, "
+"then this is the password to decrypt it."
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,help:auto_backup.field_db_backup_sftp_port
+msgid "The port on the FTP server that accepts SSH/SFTP calls."
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,help:auto_backup.field_db_backup_sftp_user
+msgid ""
+"The username where the SFTP connection should be made with. This is the user"
+" on the external server."
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+msgid ""
+"Use SFTP with caution! This writes files to external servers under the path "
+"you specify."
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup_sftp_user
+msgid "Username in the SFTP Server"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+msgid "Warning:"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model,name:auto_backup.model_db_backup
+msgid "db.backup"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+msgid "john"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+msgid "sftp.example.com"
+msgstr ""
diff --git a/auto_backup/i18n/bg.po b/auto_backup/i18n/bg.po
new file mode 100644
index 00000000000..edb84fb3873
--- /dev/null
+++ b/auto_backup/i18n/bg.po
@@ -0,0 +1,317 @@
+# Translation of Odoo Server.
+# This file contains the translation of the following modules:
+# * auto_backup
+# 
+# Translators:
+# OCA Transbot <transbot@odoo-community.org>, 2016
+msgid ""
+msgstr ""
+"Project-Id-Version: Odoo Server 10.0\n"
+"Report-Msgid-Bugs-To: \n"
+"POT-Creation-Date: 2017-02-18 02:29+0000\n"
+"PO-Revision-Date: 2017-02-18 02:29+0000\n"
+"Last-Translator: OCA Transbot <transbot@odoo-community.org>, 2016\n"
+"Language-Team: Bulgarian (https://www.transifex.com/oca/teams/23907/bg/)\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: \n"
+"Language: bg\n"
+"Plural-Forms: nplurals=2; plural=(n != 1);\n"
+
+#. module: auto_backup
+#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+msgid "/home/odoo/.ssh/id_rsa"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,help:auto_backup.field_db_backup_folder
+msgid "Absolute path for storing the backups"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.actions.act_window,name:auto_backup.action_backup_conf_form
+#: model:ir.ui.menu,name:auto_backup.backup_conf_menu
+msgid "Automated Backups"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+msgid "Automatic backups of the database can be scheduled as follows:"
+msgstr ""
+
+#. module: auto_backup
+#: model:mail.message.subtype,name:auto_backup.mail_message_subtype_failure
+msgid "Backup Failed"
+msgstr ""
+
+#. module: auto_backup
+#: model:mail.message.subtype,name:auto_backup.mail_message_subtype_success
+msgid "Backup Successful"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_tree
+msgid "Backups"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,help:auto_backup.field_db_backup_days_to_keep
+msgid ""
+"Backups older than this will be deleted automatically. Set 0 to disable "
+"autodeletion."
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+msgid "Basic backup configuration"
+msgstr ""
+
+#. module: auto_backup
+#: sql_constraint:db.backup:0
+msgid "Cannot duplicate a configuration."
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,help:auto_backup.field_db_backup_method
+msgid "Choose the storage method for this backup."
+msgstr ""
+
+#. module: auto_backup
+#: code:addons/auto_backup/models/db_backup.py:251
+#, python-format
+msgid "Cleanup of old database backups failed."
+msgstr ""
+
+#. module: auto_backup
+#: code:addons/auto_backup/models/db_backup.py:131
+#, python-format
+msgid "Connection Test Failed!"
+msgstr ""
+
+#. module: auto_backup
+#: code:addons/auto_backup/models/db_backup.py:128
+#, python-format
+msgid "Connection Test Succeeded!"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup_create_uid
+msgid "Created by"
+msgstr "?????????????????? ????"
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup_create_date
+msgid "Created on"
+msgstr "?????????????????? ????"
+
+#. module: auto_backup
+#: code:addons/auto_backup/models/db_backup.py:206
+#: model:mail.message.subtype,description:auto_backup.mail_message_subtype_failure
+#, python-format
+msgid "Database backup failed."
+msgstr ""
+
+#. module: auto_backup
+#: code:addons/auto_backup/models/db_backup.py:214
+#: model:mail.message.subtype,description:auto_backup.mail_message_subtype_success
+#, python-format
+msgid "Database backup succeeded."
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup_days_to_keep
+msgid "Days to keep"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup_display_name
+msgid "Display Name"
+msgstr "?????? ???? ??????????????????"
+
+#. module: auto_backup
+#: code:addons/auto_backup/models/db_backup.py:119
+#, python-format
+msgid ""
+"Do not save backups on your filestore, or you will backup your backups too!"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.actions.server,name:auto_backup.action_server_backup
+msgid "Execute backup(s)"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup_folder
+msgid "Folder"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+msgid "Go to Settings / Technical / Automation / Scheduled Actions."
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+msgid "Help"
+msgstr ""
+
+#. module: auto_backup
+#: sql_constraint:db.backup:0
+msgid "I cannot remove backups from the future. Ask Doc for that."
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup_id
+msgid "ID"
+msgstr "ID"
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup___last_update
+msgid "Last Modified on"
+msgstr "???????????????? ???????????????? ????"
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup_write_uid
+msgid "Last Updated by"
+msgstr "???????????????? ???????????????? ????"
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup_write_date
+msgid "Last Updated on"
+msgstr "???????????????? ???????????????? ????"
+
+#. module: auto_backup
+#: selection:db.backup,method:0
+msgid "Local disk"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup_method
+msgid "Method"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup_name
+msgid "Name"
+msgstr "??????"
+
+#. module: auto_backup
+#: model:ir.model.fields,help:auto_backup.field_db_backup_sftp_private_key
+msgid ""
+"Path to the private key file. Only the Odoo user should have read "
+"permissions for that file."
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup_sftp_private_key
+msgid "Private key location"
+msgstr ""
+
+#. module: auto_backup
+#: selection:db.backup,method:0
+msgid "Remote SFTP server"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup_sftp_password
+msgid "SFTP Password"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup_sftp_port
+msgid "SFTP Port"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup_sftp_host
+msgid "SFTP Server"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+msgid "SFTP Settings"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_search
+msgid "Search options"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+msgid "Search the action named 'Backup scheduler'."
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+msgid ""
+"Set the scheduler to active and fill in how often you want backups "
+"generated."
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,help:auto_backup.field_db_backup_name
+msgid "Summary of this backup process"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+msgid "Test SFTP Connection"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,help:auto_backup.field_db_backup_sftp_host
+msgid ""
+"The host name or IP address from your remote server. For example 192.168.0.1"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,help:auto_backup.field_db_backup_sftp_password
+msgid ""
+"The password for the SFTP connection. If you specify a private key file, "
+"then this is the password to decrypt it."
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,help:auto_backup.field_db_backup_sftp_port
+msgid "The port on the FTP server that accepts SSH/SFTP calls."
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,help:auto_backup.field_db_backup_sftp_user
+msgid ""
+"The username where the SFTP connection should be made with. This is the user"
+" on the external server."
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+msgid ""
+"Use SFTP with caution! This writes files to external servers under the path "
+"you specify."
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup_sftp_user
+msgid "Username in the SFTP Server"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+msgid "Warning:"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model,name:auto_backup.model_db_backup
+msgid "db.backup"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+msgid "john"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+msgid "sftp.example.com"
+msgstr ""
diff --git a/auto_backup/i18n/bs.po b/auto_backup/i18n/bs.po
new file mode 100644
index 00000000000..b19a70f2264
--- /dev/null
+++ b/auto_backup/i18n/bs.po
@@ -0,0 +1,317 @@
+# Translation of Odoo Server.
+# This file contains the translation of the following modules:
+# * auto_backup
+# 
+# Translators:
+# OCA Transbot <transbot@odoo-community.org>, 2016
+msgid ""
+msgstr ""
+"Project-Id-Version: Odoo Server 10.0\n"
+"Report-Msgid-Bugs-To: \n"
+"POT-Creation-Date: 2017-02-18 02:29+0000\n"
+"PO-Revision-Date: 2017-02-18 02:29+0000\n"
+"Last-Translator: OCA Transbot <transbot@odoo-community.org>, 2016\n"
+"Language-Team: Bosnian (https://www.transifex.com/oca/teams/23907/bs/)\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: \n"
+"Language: bs\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: auto_backup
+#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+msgid "/home/odoo/.ssh/id_rsa"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,help:auto_backup.field_db_backup_folder
+msgid "Absolute path for storing the backups"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.actions.act_window,name:auto_backup.action_backup_conf_form
+#: model:ir.ui.menu,name:auto_backup.backup_conf_menu
+msgid "Automated Backups"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+msgid "Automatic backups of the database can be scheduled as follows:"
+msgstr ""
+
+#. module: auto_backup
+#: model:mail.message.subtype,name:auto_backup.mail_message_subtype_failure
+msgid "Backup Failed"
+msgstr ""
+
+#. module: auto_backup
+#: model:mail.message.subtype,name:auto_backup.mail_message_subtype_success
+msgid "Backup Successful"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_tree
+msgid "Backups"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,help:auto_backup.field_db_backup_days_to_keep
+msgid ""
+"Backups older than this will be deleted automatically. Set 0 to disable "
+"autodeletion."
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+msgid "Basic backup configuration"
+msgstr ""
+
+#. module: auto_backup
+#: sql_constraint:db.backup:0
+msgid "Cannot duplicate a configuration."
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,help:auto_backup.field_db_backup_method
+msgid "Choose the storage method for this backup."
+msgstr ""
+
+#. module: auto_backup
+#: code:addons/auto_backup/models/db_backup.py:251
+#, python-format
+msgid "Cleanup of old database backups failed."
+msgstr ""
+
+#. module: auto_backup
+#: code:addons/auto_backup/models/db_backup.py:131
+#, python-format
+msgid "Connection Test Failed!"
+msgstr ""
+
+#. module: auto_backup
+#: code:addons/auto_backup/models/db_backup.py:128
+#, python-format
+msgid "Connection Test Succeeded!"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup_create_uid
+msgid "Created by"
+msgstr "Kreirao"
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup_create_date
+msgid "Created on"
+msgstr "Kreirano"
+
+#. module: auto_backup
+#: code:addons/auto_backup/models/db_backup.py:206
+#: model:mail.message.subtype,description:auto_backup.mail_message_subtype_failure
+#, python-format
+msgid "Database backup failed."
+msgstr ""
+
+#. module: auto_backup
+#: code:addons/auto_backup/models/db_backup.py:214
+#: model:mail.message.subtype,description:auto_backup.mail_message_subtype_success
+#, python-format
+msgid "Database backup succeeded."
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup_days_to_keep
+msgid "Days to keep"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup_display_name
+msgid "Display Name"
+msgstr "Prika??i naziv"
+
+#. module: auto_backup
+#: code:addons/auto_backup/models/db_backup.py:119
+#, python-format
+msgid ""
+"Do not save backups on your filestore, or you will backup your backups too!"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.actions.server,name:auto_backup.action_server_backup
+msgid "Execute backup(s)"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup_folder
+msgid "Folder"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+msgid "Go to Settings / Technical / Automation / Scheduled Actions."
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+msgid "Help"
+msgstr ""
+
+#. module: auto_backup
+#: sql_constraint:db.backup:0
+msgid "I cannot remove backups from the future. Ask Doc for that."
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup_id
+msgid "ID"
+msgstr "ID"
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup___last_update
+msgid "Last Modified on"
+msgstr "Zadnje mijenjano"
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup_write_uid
+msgid "Last Updated by"
+msgstr "Zadnji a??urirao"
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup_write_date
+msgid "Last Updated on"
+msgstr "Zadnje a??urirano"
+
+#. module: auto_backup
+#: selection:db.backup,method:0
+msgid "Local disk"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup_method
+msgid "Method"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup_name
+msgid "Name"
+msgstr "Ime"
+
+#. module: auto_backup
+#: model:ir.model.fields,help:auto_backup.field_db_backup_sftp_private_key
+msgid ""
+"Path to the private key file. Only the Odoo user should have read "
+"permissions for that file."
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup_sftp_private_key
+msgid "Private key location"
+msgstr ""
+
+#. module: auto_backup
+#: selection:db.backup,method:0
+msgid "Remote SFTP server"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup_sftp_password
+msgid "SFTP Password"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup_sftp_port
+msgid "SFTP Port"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup_sftp_host
+msgid "SFTP Server"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+msgid "SFTP Settings"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_search
+msgid "Search options"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+msgid "Search the action named 'Backup scheduler'."
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+msgid ""
+"Set the scheduler to active and fill in how often you want backups "
+"generated."
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,help:auto_backup.field_db_backup_name
+msgid "Summary of this backup process"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+msgid "Test SFTP Connection"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,help:auto_backup.field_db_backup_sftp_host
+msgid ""
+"The host name or IP address from your remote server. For example 192.168.0.1"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,help:auto_backup.field_db_backup_sftp_password
+msgid ""
+"The password for the SFTP connection. If you specify a private key file, "
+"then this is the password to decrypt it."
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,help:auto_backup.field_db_backup_sftp_port
+msgid "The port on the FTP server that accepts SSH/SFTP calls."
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,help:auto_backup.field_db_backup_sftp_user
+msgid ""
+"The username where the SFTP connection should be made with. This is the user"
+" on the external server."
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+msgid ""
+"Use SFTP with caution! This writes files to external servers under the path "
+"you specify."
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup_sftp_user
+msgid "Username in the SFTP Server"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+msgid "Warning:"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model,name:auto_backup.model_db_backup
+msgid "db.backup"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+msgid "john"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+msgid "sftp.example.com"
+msgstr ""
diff --git a/auto_backup/i18n/ca.po b/auto_backup/i18n/ca.po
new file mode 100644
index 00000000000..c74b059f1b1
--- /dev/null
+++ b/auto_backup/i18n/ca.po
@@ -0,0 +1,317 @@
+# Translation of Odoo Server.
+# This file contains the translation of the following modules:
+# * auto_backup
+# 
+# Translators:
+# OCA Transbot <transbot@odoo-community.org>, 2016
+msgid ""
+msgstr ""
+"Project-Id-Version: Odoo Server 10.0\n"
+"Report-Msgid-Bugs-To: \n"
+"POT-Creation-Date: 2017-02-22 00:54+0000\n"
+"PO-Revision-Date: 2017-02-22 00:54+0000\n"
+"Last-Translator: OCA Transbot <transbot@odoo-community.org>, 2016\n"
+"Language-Team: Catalan (https://www.transifex.com/oca/teams/23907/ca/)\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: \n"
+"Language: ca\n"
+"Plural-Forms: nplurals=2; plural=(n != 1);\n"
+
+#. module: auto_backup
+#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+msgid "/home/odoo/.ssh/id_rsa"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,help:auto_backup.field_db_backup_folder
+msgid "Absolute path for storing the backups"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.actions.act_window,name:auto_backup.action_backup_conf_form
+#: model:ir.ui.menu,name:auto_backup.backup_conf_menu
+msgid "Automated Backups"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+msgid "Automatic backups of the database can be scheduled as follows:"
+msgstr ""
+
+#. module: auto_backup
+#: model:mail.message.subtype,name:auto_backup.mail_message_subtype_failure
+msgid "Backup Failed"
+msgstr ""
+
+#. module: auto_backup
+#: model:mail.message.subtype,name:auto_backup.mail_message_subtype_success
+msgid "Backup Successful"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_tree
+msgid "Backups"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,help:auto_backup.field_db_backup_days_to_keep
+msgid ""
+"Backups older than this will be deleted automatically. Set 0 to disable "
+"autodeletion."
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+msgid "Basic backup configuration"
+msgstr ""
+
+#. module: auto_backup
+#: sql_constraint:db.backup:0
+msgid "Cannot duplicate a configuration."
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,help:auto_backup.field_db_backup_method
+msgid "Choose the storage method for this backup."
+msgstr ""
+
+#. module: auto_backup
+#: code:addons/auto_backup/models/db_backup.py:251
+#, python-format
+msgid "Cleanup of old database backups failed."
+msgstr ""
+
+#. module: auto_backup
+#: code:addons/auto_backup/models/db_backup.py:131
+#, python-format
+msgid "Connection Test Failed!"
+msgstr ""
+
+#. module: auto_backup
+#: code:addons/auto_backup/models/db_backup.py:128
+#, python-format
+msgid "Connection Test Succeeded!"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup_create_uid
+msgid "Created by"
+msgstr "Creat per"
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup_create_date
+msgid "Created on"
+msgstr "Creat el"
+
+#. module: auto_backup
+#: code:addons/auto_backup/models/db_backup.py:206
+#: model:mail.message.subtype,description:auto_backup.mail_message_subtype_failure
+#, python-format
+msgid "Database backup failed."
+msgstr ""
+
+#. module: auto_backup
+#: code:addons/auto_backup/models/db_backup.py:214
+#: model:mail.message.subtype,description:auto_backup.mail_message_subtype_success
+#, python-format
+msgid "Database backup succeeded."
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup_days_to_keep
+msgid "Days to keep"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup_display_name
+msgid "Display Name"
+msgstr "Veure el nom"
+
+#. module: auto_backup
+#: code:addons/auto_backup/models/db_backup.py:119
+#, python-format
+msgid ""
+"Do not save backups on your filestore, or you will backup your backups too!"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.actions.server,name:auto_backup.action_server_backup
+msgid "Execute backup(s)"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup_folder
+msgid "Folder"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+msgid "Go to Settings / Technical / Automation / Scheduled Actions."
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+msgid "Help"
+msgstr ""
+
+#. module: auto_backup
+#: sql_constraint:db.backup:0
+msgid "I cannot remove backups from the future. Ask Doc for that."
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup_id
+msgid "ID"
+msgstr "ID"
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup___last_update
+msgid "Last Modified on"
+msgstr "Darrera modificaci?? el"
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup_write_uid
+msgid "Last Updated by"
+msgstr "Darrera actualitzaci?? per"
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup_write_date
+msgid "Last Updated on"
+msgstr "Darrera actualitzaci?? de"
+
+#. module: auto_backup
+#: selection:db.backup,method:0
+msgid "Local disk"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup_method
+msgid "Method"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup_name
+msgid "Name"
+msgstr "Nom"
+
+#. module: auto_backup
+#: model:ir.model.fields,help:auto_backup.field_db_backup_sftp_private_key
+msgid ""
+"Path to the private key file. Only the Odoo user should have read "
+"permissions for that file."
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup_sftp_private_key
+msgid "Private key location"
+msgstr ""
+
+#. module: auto_backup
+#: selection:db.backup,method:0
+msgid "Remote SFTP server"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup_sftp_password
+msgid "SFTP Password"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup_sftp_port
+msgid "SFTP Port"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup_sftp_host
+msgid "SFTP Server"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+msgid "SFTP Settings"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_search
+msgid "Search options"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+msgid "Search the action named 'Backup scheduler'."
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+msgid ""
+"Set the scheduler to active and fill in how often you want backups "
+"generated."
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,help:auto_backup.field_db_backup_name
+msgid "Summary of this backup process"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+msgid "Test SFTP Connection"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,help:auto_backup.field_db_backup_sftp_host
+msgid ""
+"The host name or IP address from your remote server. For example 192.168.0.1"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,help:auto_backup.field_db_backup_sftp_password
+msgid ""
+"The password for the SFTP connection. If you specify a private key file, "
+"then this is the password to decrypt it."
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,help:auto_backup.field_db_backup_sftp_port
+msgid "The port on the FTP server that accepts SSH/SFTP calls."
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,help:auto_backup.field_db_backup_sftp_user
+msgid ""
+"The username where the SFTP connection should be made with. This is the user"
+" on the external server."
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+msgid ""
+"Use SFTP with caution! This writes files to external servers under the path "
+"you specify."
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup_sftp_user
+msgid "Username in the SFTP Server"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+msgid "Warning:"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model,name:auto_backup.model_db_backup
+msgid "db.backup"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+msgid "john"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+msgid "sftp.example.com"
+msgstr ""
diff --git a/auto_backup/i18n/cs.po b/auto_backup/i18n/cs.po
new file mode 100644
index 00000000000..069d90af40a
--- /dev/null
+++ b/auto_backup/i18n/cs.po
@@ -0,0 +1,317 @@
+# Translation of Odoo Server.
+# This file contains the translation of the following modules:
+# * auto_backup
+# 
+# Translators:
+# OCA Transbot <transbot@odoo-community.org>, 2016
+msgid ""
+msgstr ""
+"Project-Id-Version: Odoo Server 10.0\n"
+"Report-Msgid-Bugs-To: \n"
+"POT-Creation-Date: 2017-02-18 02:29+0000\n"
+"PO-Revision-Date: 2017-02-18 02:29+0000\n"
+"Last-Translator: OCA Transbot <transbot@odoo-community.org>, 2016\n"
+"Language-Team: Czech (https://www.transifex.com/oca/teams/23907/cs/)\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: \n"
+"Language: cs\n"
+"Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;\n"
+
+#. module: auto_backup
+#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+msgid "/home/odoo/.ssh/id_rsa"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,help:auto_backup.field_db_backup_folder
+msgid "Absolute path for storing the backups"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.actions.act_window,name:auto_backup.action_backup_conf_form
+#: model:ir.ui.menu,name:auto_backup.backup_conf_menu
+msgid "Automated Backups"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+msgid "Automatic backups of the database can be scheduled as follows:"
+msgstr ""
+
+#. module: auto_backup
+#: model:mail.message.subtype,name:auto_backup.mail_message_subtype_failure
+msgid "Backup Failed"
+msgstr ""
+
+#. module: auto_backup
+#: model:mail.message.subtype,name:auto_backup.mail_message_subtype_success
+msgid "Backup Successful"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_tree
+msgid "Backups"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,help:auto_backup.field_db_backup_days_to_keep
+msgid ""
+"Backups older than this will be deleted automatically. Set 0 to disable "
+"autodeletion."
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+msgid "Basic backup configuration"
+msgstr ""
+
+#. module: auto_backup
+#: sql_constraint:db.backup:0
+msgid "Cannot duplicate a configuration."
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,help:auto_backup.field_db_backup_method
+msgid "Choose the storage method for this backup."
+msgstr ""
+
+#. module: auto_backup
+#: code:addons/auto_backup/models/db_backup.py:251
+#, python-format
+msgid "Cleanup of old database backups failed."
+msgstr ""
+
+#. module: auto_backup
+#: code:addons/auto_backup/models/db_backup.py:131
+#, python-format
+msgid "Connection Test Failed!"
+msgstr ""
+
+#. module: auto_backup
+#: code:addons/auto_backup/models/db_backup.py:128
+#, python-format
+msgid "Connection Test Succeeded!"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup_create_uid
+msgid "Created by"
+msgstr "Vytvo??il(a)"
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup_create_date
+msgid "Created on"
+msgstr "Vytvo??eno"
+
+#. module: auto_backup
+#: code:addons/auto_backup/models/db_backup.py:206
+#: model:mail.message.subtype,description:auto_backup.mail_message_subtype_failure
+#, python-format
+msgid "Database backup failed."
+msgstr ""
+
+#. module: auto_backup
+#: code:addons/auto_backup/models/db_backup.py:214
+#: model:mail.message.subtype,description:auto_backup.mail_message_subtype_success
+#, python-format
+msgid "Database backup succeeded."
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup_days_to_keep
+msgid "Days to keep"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup_display_name
+msgid "Display Name"
+msgstr "Zobrazovan?? n??zev"
+
+#. module: auto_backup
+#: code:addons/auto_backup/models/db_backup.py:119
+#, python-format
+msgid ""
+"Do not save backups on your filestore, or you will backup your backups too!"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.actions.server,name:auto_backup.action_server_backup
+msgid "Execute backup(s)"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup_folder
+msgid "Folder"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+msgid "Go to Settings / Technical / Automation / Scheduled Actions."
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+msgid "Help"
+msgstr ""
+
+#. module: auto_backup
+#: sql_constraint:db.backup:0
+msgid "I cannot remove backups from the future. Ask Doc for that."
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup_id
+msgid "ID"
+msgstr "ID"
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup___last_update
+msgid "Last Modified on"
+msgstr "Naposled upraveno"
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup_write_uid
+msgid "Last Updated by"
+msgstr "Naposled upraveno"
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup_write_date
+msgid "Last Updated on"
+msgstr "Naposled upraveno"
+
+#. module: auto_backup
+#: selection:db.backup,method:0
+msgid "Local disk"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup_method
+msgid "Method"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup_name
+msgid "Name"
+msgstr "N??zev"
+
+#. module: auto_backup
+#: model:ir.model.fields,help:auto_backup.field_db_backup_sftp_private_key
+msgid ""
+"Path to the private key file. Only the Odoo user should have read "
+"permissions for that file."
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup_sftp_private_key
+msgid "Private key location"
+msgstr ""
+
+#. module: auto_backup
+#: selection:db.backup,method:0
+msgid "Remote SFTP server"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup_sftp_password
+msgid "SFTP Password"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup_sftp_port
+msgid "SFTP Port"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup_sftp_host
+msgid "SFTP Server"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+msgid "SFTP Settings"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_search
+msgid "Search options"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+msgid "Search the action named 'Backup scheduler'."
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+msgid ""
+"Set the scheduler to active and fill in how often you want backups "
+"generated."
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,help:auto_backup.field_db_backup_name
+msgid "Summary of this backup process"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+msgid "Test SFTP Connection"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,help:auto_backup.field_db_backup_sftp_host
+msgid ""
+"The host name or IP address from your remote server. For example 192.168.0.1"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,help:auto_backup.field_db_backup_sftp_password
+msgid ""
+"The password for the SFTP connection. If you specify a private key file, "
+"then this is the password to decrypt it."
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,help:auto_backup.field_db_backup_sftp_port
+msgid "The port on the FTP server that accepts SSH/SFTP calls."
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,help:auto_backup.field_db_backup_sftp_user
+msgid ""
+"The username where the SFTP connection should be made with. This is the user"
+" on the external server."
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+msgid ""
+"Use SFTP with caution! This writes files to external servers under the path "
+"you specify."
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup_sftp_user
+msgid "Username in the SFTP Server"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+msgid "Warning:"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model,name:auto_backup.model_db_backup
+msgid "db.backup"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+msgid "john"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+msgid "sftp.example.com"
+msgstr ""
diff --git a/auto_backup/i18n/da.po b/auto_backup/i18n/da.po
new file mode 100644
index 00000000000..dd85e5a2e0a
--- /dev/null
+++ b/auto_backup/i18n/da.po
@@ -0,0 +1,317 @@
+# Translation of Odoo Server.
+# This file contains the translation of the following modules:
+# * auto_backup
+# 
+# Translators:
+# OCA Transbot <transbot@odoo-community.org>, 2016
+msgid ""
+msgstr ""
+"Project-Id-Version: Odoo Server 10.0\n"
+"Report-Msgid-Bugs-To: \n"
+"POT-Creation-Date: 2017-02-18 02:29+0000\n"
+"PO-Revision-Date: 2017-02-18 02:29+0000\n"
+"Last-Translator: OCA Transbot <transbot@odoo-community.org>, 2016\n"
+"Language-Team: Danish (https://www.transifex.com/oca/teams/23907/da/)\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: \n"
+"Language: da\n"
+"Plural-Forms: nplurals=2; plural=(n != 1);\n"
+
+#. module: auto_backup
+#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+msgid "/home/odoo/.ssh/id_rsa"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,help:auto_backup.field_db_backup_folder
+msgid "Absolute path for storing the backups"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.actions.act_window,name:auto_backup.action_backup_conf_form
+#: model:ir.ui.menu,name:auto_backup.backup_conf_menu
+msgid "Automated Backups"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+msgid "Automatic backups of the database can be scheduled as follows:"
+msgstr ""
+
+#. module: auto_backup
+#: model:mail.message.subtype,name:auto_backup.mail_message_subtype_failure
+msgid "Backup Failed"
+msgstr ""
+
+#. module: auto_backup
+#: model:mail.message.subtype,name:auto_backup.mail_message_subtype_success
+msgid "Backup Successful"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_tree
+msgid "Backups"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,help:auto_backup.field_db_backup_days_to_keep
+msgid ""
+"Backups older than this will be deleted automatically. Set 0 to disable "
+"autodeletion."
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+msgid "Basic backup configuration"
+msgstr ""
+
+#. module: auto_backup
+#: sql_constraint:db.backup:0
+msgid "Cannot duplicate a configuration."
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,help:auto_backup.field_db_backup_method
+msgid "Choose the storage method for this backup."
+msgstr ""
+
+#. module: auto_backup
+#: code:addons/auto_backup/models/db_backup.py:251
+#, python-format
+msgid "Cleanup of old database backups failed."
+msgstr ""
+
+#. module: auto_backup
+#: code:addons/auto_backup/models/db_backup.py:131
+#, python-format
+msgid "Connection Test Failed!"
+msgstr ""
+
+#. module: auto_backup
+#: code:addons/auto_backup/models/db_backup.py:128
+#, python-format
+msgid "Connection Test Succeeded!"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup_create_uid
+msgid "Created by"
+msgstr "Oprettet af"
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup_create_date
+msgid "Created on"
+msgstr "Oprettet den"
+
+#. module: auto_backup
+#: code:addons/auto_backup/models/db_backup.py:206
+#: model:mail.message.subtype,description:auto_backup.mail_message_subtype_failure
+#, python-format
+msgid "Database backup failed."
+msgstr ""
+
+#. module: auto_backup
+#: code:addons/auto_backup/models/db_backup.py:214
+#: model:mail.message.subtype,description:auto_backup.mail_message_subtype_success
+#, python-format
+msgid "Database backup succeeded."
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup_days_to_keep
+msgid "Days to keep"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup_display_name
+msgid "Display Name"
+msgstr "Vist navn"
+
+#. module: auto_backup
+#: code:addons/auto_backup/models/db_backup.py:119
+#, python-format
+msgid ""
+"Do not save backups on your filestore, or you will backup your backups too!"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.actions.server,name:auto_backup.action_server_backup
+msgid "Execute backup(s)"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup_folder
+msgid "Folder"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+msgid "Go to Settings / Technical / Automation / Scheduled Actions."
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+msgid "Help"
+msgstr ""
+
+#. module: auto_backup
+#: sql_constraint:db.backup:0
+msgid "I cannot remove backups from the future. Ask Doc for that."
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup_id
+msgid "ID"
+msgstr "Id"
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup___last_update
+msgid "Last Modified on"
+msgstr "Sidst ??ndret den"
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup_write_uid
+msgid "Last Updated by"
+msgstr "Sidst opdateret af"
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup_write_date
+msgid "Last Updated on"
+msgstr "Sidst opdateret den"
+
+#. module: auto_backup
+#: selection:db.backup,method:0
+msgid "Local disk"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup_method
+msgid "Method"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup_name
+msgid "Name"
+msgstr "Navn"
+
+#. module: auto_backup
+#: model:ir.model.fields,help:auto_backup.field_db_backup_sftp_private_key
+msgid ""
+"Path to the private key file. Only the Odoo user should have read "
+"permissions for that file."
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup_sftp_private_key
+msgid "Private key location"
+msgstr ""
+
+#. module: auto_backup
+#: selection:db.backup,method:0
+msgid "Remote SFTP server"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup_sftp_password
+msgid "SFTP Password"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup_sftp_port
+msgid "SFTP Port"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup_sftp_host
+msgid "SFTP Server"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+msgid "SFTP Settings"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_search
+msgid "Search options"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+msgid "Search the action named 'Backup scheduler'."
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+msgid ""
+"Set the scheduler to active and fill in how often you want backups "
+"generated."
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,help:auto_backup.field_db_backup_name
+msgid "Summary of this backup process"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+msgid "Test SFTP Connection"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,help:auto_backup.field_db_backup_sftp_host
+msgid ""
+"The host name or IP address from your remote server. For example 192.168.0.1"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,help:auto_backup.field_db_backup_sftp_password
+msgid ""
+"The password for the SFTP connection. If you specify a private key file, "
+"then this is the password to decrypt it."
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,help:auto_backup.field_db_backup_sftp_port
+msgid "The port on the FTP server that accepts SSH/SFTP calls."
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,help:auto_backup.field_db_backup_sftp_user
+msgid ""
+"The username where the SFTP connection should be made with. This is the user"
+" on the external server."
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+msgid ""
+"Use SFTP with caution! This writes files to external servers under the path "
+"you specify."
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup_sftp_user
+msgid "Username in the SFTP Server"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+msgid "Warning:"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model,name:auto_backup.model_db_backup
+msgid "db.backup"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+msgid "john"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+msgid "sftp.example.com"
+msgstr ""
diff --git a/auto_backup/i18n/de.po b/auto_backup/i18n/de.po
index 17d3046d47c..b5461098768 100644
--- a/auto_backup/i18n/de.po
+++ b/auto_backup/i18n/de.po
@@ -3,14 +3,16 @@
 # * auto_backup
 # 
 # Translators:
+# OCA Transbot <transbot@odoo-community.org>, 2016
+# Niki Waibel <niki.waibel@gmail.com>, 2017
 msgid ""
 msgstr ""
-"Project-Id-Version: server-tools (8.0)\n"
+"Project-Id-Version: Odoo Server 10.0\n"
 "Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2016-04-14 07:02+0000\n"
-"PO-Revision-Date: 2016-04-05 07:21+0000\n"
-"Last-Translator: OCA Transbot <transbot@odoo-community.org>\n"
-"Language-Team: German (http://www.transifex.com/oca/OCA-server-tools-8-0/language/de/)\n"
+"POT-Creation-Date: 2017-02-08 03:37+0000\n"
+"PO-Revision-Date: 2017-02-08 03:37+0000\n"
+"Last-Translator: Niki Waibel <niki.waibel@gmail.com>, 2017\n"
+"Language-Team: German (https://www.transifex.com/oca/teams/23907/de/)\n"
 "MIME-Version: 1.0\n"
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: \n"
@@ -18,12 +20,12 @@ msgstr ""
 "Plural-Forms: nplurals=2; plural=(n != 1);\n"
 
 #. module: auto_backup
-#: view:db.backup:auto_backup.view_backup_conf_form
+#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
 msgid "/home/odoo/.ssh/id_rsa"
-msgstr ""
+msgstr "/home/odoo/.ssh/id_rsa"
 
 #. module: auto_backup
-#: help:db.backup,folder:0
+#: model:ir.model.fields,help:auto_backup.field_db_backup_folder
 msgid "Absolute path for storing the backups"
 msgstr "Absoluter Pfad zum Speichern der Sicherungen"
 
@@ -31,37 +33,38 @@ msgstr "Absoluter Pfad zum Speichern der Sicherungen"
 #: model:ir.actions.act_window,name:auto_backup.action_backup_conf_form
 #: model:ir.ui.menu,name:auto_backup.backup_conf_menu
 msgid "Automated Backups"
-msgstr ""
+msgstr "Automatisiertes Backup"
 
 #. module: auto_backup
-#: view:db.backup:auto_backup.view_backup_conf_form
+#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
 msgid "Automatic backups of the database can be scheduled as follows:"
-msgstr "Automatische Sicherungen der Datenbank k??nnen wie folgt geplant werden:"
+msgstr ""
+"Automatische Sicherungen der Datenbank k??nnen wie folgt geplant werden:"
 
 #. module: auto_backup
-#: model:mail.message.subtype,name:auto_backup.failure
-msgid "Backup failed"
-msgstr ""
+#: model:mail.message.subtype,name:auto_backup.mail_message_subtype_failure
+msgid "Backup Failed"
+msgstr "Backup fehlgeschlagen"
 
 #. module: auto_backup
-#: model:mail.message.subtype,name:auto_backup.success
-msgid "Backup successful"
-msgstr ""
+#: model:mail.message.subtype,name:auto_backup.mail_message_subtype_success
+msgid "Backup Successful"
+msgstr "Backup erfolgreich"
 
 #. module: auto_backup
-#: view:db.backup:auto_backup.view_backup_conf_tree
+#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_tree
 msgid "Backups"
 msgstr "Sicherungen"
 
 #. module: auto_backup
-#: help:db.backup,days_to_keep:0
+#: model:ir.model.fields,help:auto_backup.field_db_backup_days_to_keep
 msgid ""
 "Backups older than this will be deleted automatically. Set 0 to disable "
 "autodeletion."
 msgstr ""
 
 #. module: auto_backup
-#: view:db.backup:auto_backup.view_backup_conf_form
+#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
 msgid "Basic backup configuration"
 msgstr ""
 
@@ -71,138 +74,112 @@ msgid "Cannot duplicate a configuration."
 msgstr ""
 
 #. module: auto_backup
-#: help:db.backup,method:0
+#: model:ir.model.fields,help:auto_backup.field_db_backup_method
 msgid "Choose the storage method for this backup."
 msgstr ""
 
 #. module: auto_backup
-#: code:addons/auto_backup/models/db_backup.py:249
+#: code:addons/auto_backup/models/db_backup.py:251
 #, python-format
 msgid "Cleanup of old database backups failed."
 msgstr ""
 
 #. module: auto_backup
-#: code:addons/auto_backup/models/db_backup.py:132
+#: code:addons/auto_backup/models/db_backup.py:131
 #, python-format
 msgid "Connection Test Failed!"
 msgstr ""
 
 #. module: auto_backup
-#: code:addons/auto_backup/models/db_backup.py:129
+#: code:addons/auto_backup/models/db_backup.py:128
 #, python-format
 msgid "Connection Test Succeeded!"
 msgstr ""
 
 #. module: auto_backup
-#: field:db.backup,create_uid:0
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup_create_uid
 msgid "Created by"
 msgstr "Erstellt von"
 
 #. module: auto_backup
-#: field:db.backup,create_date:0
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup_create_date
 msgid "Created on"
 msgstr "Erstellt am:"
 
 #. module: auto_backup
-#: code:addons/auto_backup/models/db_backup.py:208
-#: model:mail.message.subtype,description:auto_backup.failure
+#: code:addons/auto_backup/models/db_backup.py:206
+#: model:mail.message.subtype,description:auto_backup.mail_message_subtype_failure
 #, python-format
 msgid "Database backup failed."
 msgstr ""
 
 #. module: auto_backup
-#: code:addons/auto_backup/models/db_backup.py:213
-#: model:mail.message.subtype,description:auto_backup.success
+#: code:addons/auto_backup/models/db_backup.py:214
+#: model:mail.message.subtype,description:auto_backup.mail_message_subtype_success
 #, python-format
 msgid "Database backup succeeded."
 msgstr ""
 
 #. module: auto_backup
-#: help:db.backup,message_last_post:0
-msgid "Date of the last message posted on the record."
-msgstr "Datum der letzten Meldung zu diesem Datensatz."
-
-#. module: auto_backup
-#: field:db.backup,days_to_keep:0
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup_days_to_keep
 msgid "Days to keep"
 msgstr ""
 
 #. module: auto_backup
-#: code:addons/auto_backup/models/db_backup.py:120
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup_display_name
+msgid "Display Name"
+msgstr "Anzeigename"
+
+#. module: auto_backup
+#: code:addons/auto_backup/models/db_backup.py:119
 #, python-format
 msgid ""
 "Do not save backups on your filestore, or you will backup your backups too!"
 msgstr ""
 
-#. module: auto_backup
-#: model:ir.model,name:auto_backup.model_db_backup
-msgid "Email Thread"
-msgstr "Email-Thread"
-
 #. module: auto_backup
 #: model:ir.actions.server,name:auto_backup.action_server_backup
 msgid "Execute backup(s)"
 msgstr ""
 
 #. module: auto_backup
-#: field:db.backup,folder:0
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup_folder
 msgid "Folder"
-msgstr ""
-
-#. module: auto_backup
-#: field:db.backup,message_follower_ids:0
-msgid "Followers"
-msgstr ""
+msgstr "Ordner"
 
 #. module: auto_backup
-#: view:db.backup:auto_backup.view_backup_conf_form
+#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
 msgid "Go to Settings / Technical / Automation / Scheduled Actions."
-msgstr "Gehen Sie zu Einstellungen / Technisch / Automation / Geplante Vorg??nge"
+msgstr ""
+"Gehen Sie zu Einstellungen / Technisch / Automation / Geplante Vorg??nge"
 
 #. module: auto_backup
-#: view:db.backup:auto_backup.view_backup_conf_form
+#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
 msgid "Help"
 msgstr "Hilfe"
 
-#. module: auto_backup
-#: help:db.backup,message_summary:0
-msgid ""
-"Holds the Chatter summary (number of messages, ...). This summary is "
-"directly in html format in order to be inserted in kanban views."
-msgstr ""
-
 #. module: auto_backup
 #: sql_constraint:db.backup:0
 msgid "I cannot remove backups from the future. Ask Doc for that."
 msgstr ""
 
 #. module: auto_backup
-#: field:db.backup,id:0
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup_id
 msgid "ID"
 msgstr "ID"
 
 #. module: auto_backup
-#: help:db.backup,message_unread:0
-msgid "If checked new messages require your attention."
-msgstr ""
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup___last_update
+msgid "Last Modified on"
+msgstr "Zuletzt ge??ndert am"
 
 #. module: auto_backup
-#: field:db.backup,message_is_follower:0
-msgid "Is a Follower"
-msgstr ""
-
-#. module: auto_backup
-#: field:db.backup,message_last_post:0
-msgid "Last Message Date"
-msgstr ""
-
-#. module: auto_backup
-#: field:db.backup,write_uid:0
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup_write_uid
 msgid "Last Updated by"
 msgstr "Zuletzt aktualisiert von"
 
 #. module: auto_backup
-#: field:db.backup,write_date:0
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup_write_date
 msgid "Last Updated on"
 msgstr "Zuletzt aktualisiert am"
 
@@ -212,34 +189,24 @@ msgid "Local disk"
 msgstr ""
 
 #. module: auto_backup
-#: field:db.backup,message_ids:0
-msgid "Messages"
-msgstr ""
-
-#. module: auto_backup
-#: help:db.backup,message_ids:0
-msgid "Messages and communication history"
-msgstr ""
-
-#. module: auto_backup
-#: field:db.backup,method:0
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup_method
 msgid "Method"
 msgstr "Methode"
 
 #. module: auto_backup
-#: field:db.backup,name:0
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup_name
 msgid "Name"
 msgstr "Name"
 
 #. module: auto_backup
-#: help:db.backup,sftp_private_key:0
+#: model:ir.model.fields,help:auto_backup.field_db_backup_sftp_private_key
 msgid ""
 "Path to the private key file. Only the Odoo user should have read "
 "permissions for that file."
 msgstr ""
 
 #. module: auto_backup
-#: field:db.backup,sftp_private_key:0
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup_sftp_private_key
 msgid "Private key location"
 msgstr ""
 
@@ -249,110 +216,111 @@ msgid "Remote SFTP server"
 msgstr ""
 
 #. module: auto_backup
-#: field:db.backup,sftp_password:0
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup_sftp_password
 msgid "SFTP Password"
-msgstr ""
+msgstr "SFTP-Passwort"
 
 #. module: auto_backup
-#: field:db.backup,sftp_port:0
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup_sftp_port
 msgid "SFTP Port"
 msgstr "SFTP-Port"
 
 #. module: auto_backup
-#: field:db.backup,sftp_host:0
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup_sftp_host
 msgid "SFTP Server"
-msgstr ""
+msgstr "SFTP-Server"
 
 #. module: auto_backup
-#: view:db.backup:auto_backup.view_backup_conf_form
+#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
 msgid "SFTP Settings"
-msgstr ""
+msgstr "SFTP Einstellungen"
 
 #. module: auto_backup
-#: view:db.backup:auto_backup.view_backup_conf_search
+#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_search
 msgid "Search options"
 msgstr "Suchkriterien"
 
 #. module: auto_backup
-#: view:db.backup:auto_backup.view_backup_conf_form
+#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
 msgid "Search the action named 'Backup scheduler'."
 msgstr "Suchen Sie die Aktion mit dem Namen \"Backup Scheduler\"."
 
 #. module: auto_backup
-#: view:db.backup:auto_backup.view_backup_conf_form
+#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
 msgid ""
 "Set the scheduler to active and fill in how often you want backups "
 "generated."
-msgstr "Setzen Sie die Aktion auf aktiv und geben Sie an wie oft die Sicherungen erstellt werden soll."
-
-#. module: auto_backup
-#: field:db.backup,message_summary:0
-msgid "Summary"
 msgstr ""
+"Setzen Sie die Aktion auf aktiv und geben Sie an wie oft die Sicherungen "
+"erstellt werden soll."
 
 #. module: auto_backup
-#: help:db.backup,name:0
+#: model:ir.model.fields,help:auto_backup.field_db_backup_name
 msgid "Summary of this backup process"
 msgstr ""
 
 #. module: auto_backup
-#: view:db.backup:auto_backup.view_backup_conf_form
+#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
 msgid "Test SFTP Connection"
 msgstr "Verbindung testen"
 
 #. module: auto_backup
-#: help:db.backup,sftp_host:0
+#: model:ir.model.fields,help:auto_backup.field_db_backup_sftp_host
 msgid ""
 "The host name or IP address from your remote server. For example 192.168.0.1"
 msgstr ""
 
 #. module: auto_backup
-#: help:db.backup,sftp_password:0
+#: model:ir.model.fields,help:auto_backup.field_db_backup_sftp_password
 msgid ""
 "The password for the SFTP connection. If you specify a private key file, "
 "then this is the password to decrypt it."
 msgstr ""
 
 #. module: auto_backup
-#: help:db.backup,sftp_port:0
+#: model:ir.model.fields,help:auto_backup.field_db_backup_sftp_port
 msgid "The port on the FTP server that accepts SSH/SFTP calls."
 msgstr "Der Port auf dem FTP-Server, der SSH/SFTP Anfragen annimmt."
 
 #. module: auto_backup
-#: help:db.backup,sftp_user:0
+#: model:ir.model.fields,help:auto_backup.field_db_backup_sftp_user
 msgid ""
 "The username where the SFTP connection should be made with. This is the user"
 " on the external server."
-msgstr "Der Benutzername mit dem die SFTP-Verbindung mit hergestellt werden soll. Dies ist der Benutzer auf dem externen Server."
-
-#. module: auto_backup
-#: field:db.backup,message_unread:0
-msgid "Unread Messages"
 msgstr ""
+"Der Benutzername mit dem die SFTP-Verbindung mit hergestellt werden soll. "
+"Dies ist der Benutzer auf dem externen Server."
 
 #. module: auto_backup
-#: view:db.backup:auto_backup.view_backup_conf_form
+#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
 msgid ""
 "Use SFTP with caution! This writes files to external servers under the path "
 "you specify."
-msgstr "Verwenden Sie SFTP mit Vorsicht! Dies schreibt Dateien auf externen Servern unter dem Pfad, den Sie angeben."
+msgstr ""
+"Verwenden Sie SFTP mit Vorsicht! Dies schreibt Dateien auf externen Servern "
+"unter dem Pfad, den Sie angeben."
 
 #. module: auto_backup
-#: field:db.backup,sftp_user:0
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup_sftp_user
 msgid "Username in the SFTP Server"
 msgstr ""
 
 #. module: auto_backup
-#: view:db.backup:auto_backup.view_backup_conf_form
+#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
 msgid "Warning:"
 msgstr "Warnung:"
 
 #. module: auto_backup
-#: view:db.backup:auto_backup.view_backup_conf_form
+#: model:ir.model,name:auto_backup.model_db_backup
+msgid "db.backup"
+msgstr "db.backup"
+
+#. module: auto_backup
+#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
 msgid "john"
-msgstr ""
+msgstr "john"
 
 #. module: auto_backup
-#: view:db.backup:auto_backup.view_backup_conf_form
+#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
 msgid "sftp.example.com"
-msgstr ""
+msgstr "sftp.example.com"
diff --git a/auto_backup/i18n/el_GR.po b/auto_backup/i18n/el_GR.po
new file mode 100644
index 00000000000..9b37468857c
--- /dev/null
+++ b/auto_backup/i18n/el_GR.po
@@ -0,0 +1,317 @@
+# Translation of Odoo Server.
+# This file contains the translation of the following modules:
+# * auto_backup
+# 
+# Translators:
+# OCA Transbot <transbot@odoo-community.org>, 2016
+msgid ""
+msgstr ""
+"Project-Id-Version: Odoo Server 10.0\n"
+"Report-Msgid-Bugs-To: \n"
+"POT-Creation-Date: 2017-02-18 02:29+0000\n"
+"PO-Revision-Date: 2017-02-18 02:29+0000\n"
+"Last-Translator: OCA Transbot <transbot@odoo-community.org>, 2016\n"
+"Language-Team: Greek (Greece) (https://www.transifex.com/oca/teams/23907/el_GR/)\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: \n"
+"Language: el_GR\n"
+"Plural-Forms: nplurals=2; plural=(n != 1);\n"
+
+#. module: auto_backup
+#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+msgid "/home/odoo/.ssh/id_rsa"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,help:auto_backup.field_db_backup_folder
+msgid "Absolute path for storing the backups"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.actions.act_window,name:auto_backup.action_backup_conf_form
+#: model:ir.ui.menu,name:auto_backup.backup_conf_menu
+msgid "Automated Backups"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+msgid "Automatic backups of the database can be scheduled as follows:"
+msgstr ""
+
+#. module: auto_backup
+#: model:mail.message.subtype,name:auto_backup.mail_message_subtype_failure
+msgid "Backup Failed"
+msgstr ""
+
+#. module: auto_backup
+#: model:mail.message.subtype,name:auto_backup.mail_message_subtype_success
+msgid "Backup Successful"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_tree
+msgid "Backups"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,help:auto_backup.field_db_backup_days_to_keep
+msgid ""
+"Backups older than this will be deleted automatically. Set 0 to disable "
+"autodeletion."
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+msgid "Basic backup configuration"
+msgstr ""
+
+#. module: auto_backup
+#: sql_constraint:db.backup:0
+msgid "Cannot duplicate a configuration."
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,help:auto_backup.field_db_backup_method
+msgid "Choose the storage method for this backup."
+msgstr ""
+
+#. module: auto_backup
+#: code:addons/auto_backup/models/db_backup.py:251
+#, python-format
+msgid "Cleanup of old database backups failed."
+msgstr ""
+
+#. module: auto_backup
+#: code:addons/auto_backup/models/db_backup.py:131
+#, python-format
+msgid "Connection Test Failed!"
+msgstr ""
+
+#. module: auto_backup
+#: code:addons/auto_backup/models/db_backup.py:128
+#, python-format
+msgid "Connection Test Succeeded!"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup_create_uid
+msgid "Created by"
+msgstr "?????????????????????????? ????????"
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup_create_date
+msgid "Created on"
+msgstr "?????????????????????????? ??????"
+
+#. module: auto_backup
+#: code:addons/auto_backup/models/db_backup.py:206
+#: model:mail.message.subtype,description:auto_backup.mail_message_subtype_failure
+#, python-format
+msgid "Database backup failed."
+msgstr ""
+
+#. module: auto_backup
+#: code:addons/auto_backup/models/db_backup.py:214
+#: model:mail.message.subtype,description:auto_backup.mail_message_subtype_success
+#, python-format
+msgid "Database backup succeeded."
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup_days_to_keep
+msgid "Days to keep"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup_display_name
+msgid "Display Name"
+msgstr ""
+
+#. module: auto_backup
+#: code:addons/auto_backup/models/db_backup.py:119
+#, python-format
+msgid ""
+"Do not save backups on your filestore, or you will backup your backups too!"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.actions.server,name:auto_backup.action_server_backup
+msgid "Execute backup(s)"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup_folder
+msgid "Folder"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+msgid "Go to Settings / Technical / Automation / Scheduled Actions."
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+msgid "Help"
+msgstr ""
+
+#. module: auto_backup
+#: sql_constraint:db.backup:0
+msgid "I cannot remove backups from the future. Ask Doc for that."
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup_id
+msgid "ID"
+msgstr "ID"
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup___last_update
+msgid "Last Modified on"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup_write_uid
+msgid "Last Updated by"
+msgstr "?????????????????? ?????????????????? ??????"
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup_write_date
+msgid "Last Updated on"
+msgstr "?????????????????? ?????????????????? ????????"
+
+#. module: auto_backup
+#: selection:db.backup,method:0
+msgid "Local disk"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup_method
+msgid "Method"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup_name
+msgid "Name"
+msgstr "????????????????"
+
+#. module: auto_backup
+#: model:ir.model.fields,help:auto_backup.field_db_backup_sftp_private_key
+msgid ""
+"Path to the private key file. Only the Odoo user should have read "
+"permissions for that file."
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup_sftp_private_key
+msgid "Private key location"
+msgstr ""
+
+#. module: auto_backup
+#: selection:db.backup,method:0
+msgid "Remote SFTP server"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup_sftp_password
+msgid "SFTP Password"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup_sftp_port
+msgid "SFTP Port"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup_sftp_host
+msgid "SFTP Server"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+msgid "SFTP Settings"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_search
+msgid "Search options"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+msgid "Search the action named 'Backup scheduler'."
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+msgid ""
+"Set the scheduler to active and fill in how often you want backups "
+"generated."
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,help:auto_backup.field_db_backup_name
+msgid "Summary of this backup process"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+msgid "Test SFTP Connection"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,help:auto_backup.field_db_backup_sftp_host
+msgid ""
+"The host name or IP address from your remote server. For example 192.168.0.1"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,help:auto_backup.field_db_backup_sftp_password
+msgid ""
+"The password for the SFTP connection. If you specify a private key file, "
+"then this is the password to decrypt it."
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,help:auto_backup.field_db_backup_sftp_port
+msgid "The port on the FTP server that accepts SSH/SFTP calls."
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,help:auto_backup.field_db_backup_sftp_user
+msgid ""
+"The username where the SFTP connection should be made with. This is the user"
+" on the external server."
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+msgid ""
+"Use SFTP with caution! This writes files to external servers under the path "
+"you specify."
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup_sftp_user
+msgid "Username in the SFTP Server"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+msgid "Warning:"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model,name:auto_backup.model_db_backup
+msgid "db.backup"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+msgid "john"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+msgid "sftp.example.com"
+msgstr ""
diff --git a/auto_backup/i18n/en_GB.po b/auto_backup/i18n/en_GB.po
new file mode 100644
index 00000000000..d5a6ea15abe
--- /dev/null
+++ b/auto_backup/i18n/en_GB.po
@@ -0,0 +1,317 @@
+# Translation of Odoo Server.
+# This file contains the translation of the following modules:
+# * auto_backup
+# 
+# Translators:
+# OCA Transbot <transbot@odoo-community.org>, 2016
+msgid ""
+msgstr ""
+"Project-Id-Version: Odoo Server 10.0\n"
+"Report-Msgid-Bugs-To: \n"
+"POT-Creation-Date: 2017-02-18 02:29+0000\n"
+"PO-Revision-Date: 2017-02-18 02:29+0000\n"
+"Last-Translator: OCA Transbot <transbot@odoo-community.org>, 2016\n"
+"Language-Team: English (United Kingdom) (https://www.transifex.com/oca/teams/23907/en_GB/)\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: \n"
+"Language: en_GB\n"
+"Plural-Forms: nplurals=2; plural=(n != 1);\n"
+
+#. module: auto_backup
+#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+msgid "/home/odoo/.ssh/id_rsa"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,help:auto_backup.field_db_backup_folder
+msgid "Absolute path for storing the backups"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.actions.act_window,name:auto_backup.action_backup_conf_form
+#: model:ir.ui.menu,name:auto_backup.backup_conf_menu
+msgid "Automated Backups"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+msgid "Automatic backups of the database can be scheduled as follows:"
+msgstr ""
+
+#. module: auto_backup
+#: model:mail.message.subtype,name:auto_backup.mail_message_subtype_failure
+msgid "Backup Failed"
+msgstr ""
+
+#. module: auto_backup
+#: model:mail.message.subtype,name:auto_backup.mail_message_subtype_success
+msgid "Backup Successful"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_tree
+msgid "Backups"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,help:auto_backup.field_db_backup_days_to_keep
+msgid ""
+"Backups older than this will be deleted automatically. Set 0 to disable "
+"autodeletion."
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+msgid "Basic backup configuration"
+msgstr ""
+
+#. module: auto_backup
+#: sql_constraint:db.backup:0
+msgid "Cannot duplicate a configuration."
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,help:auto_backup.field_db_backup_method
+msgid "Choose the storage method for this backup."
+msgstr ""
+
+#. module: auto_backup
+#: code:addons/auto_backup/models/db_backup.py:251
+#, python-format
+msgid "Cleanup of old database backups failed."
+msgstr ""
+
+#. module: auto_backup
+#: code:addons/auto_backup/models/db_backup.py:131
+#, python-format
+msgid "Connection Test Failed!"
+msgstr ""
+
+#. module: auto_backup
+#: code:addons/auto_backup/models/db_backup.py:128
+#, python-format
+msgid "Connection Test Succeeded!"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup_create_uid
+msgid "Created by"
+msgstr "Created by"
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup_create_date
+msgid "Created on"
+msgstr "Created on"
+
+#. module: auto_backup
+#: code:addons/auto_backup/models/db_backup.py:206
+#: model:mail.message.subtype,description:auto_backup.mail_message_subtype_failure
+#, python-format
+msgid "Database backup failed."
+msgstr ""
+
+#. module: auto_backup
+#: code:addons/auto_backup/models/db_backup.py:214
+#: model:mail.message.subtype,description:auto_backup.mail_message_subtype_success
+#, python-format
+msgid "Database backup succeeded."
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup_days_to_keep
+msgid "Days to keep"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup_display_name
+msgid "Display Name"
+msgstr "Display Name"
+
+#. module: auto_backup
+#: code:addons/auto_backup/models/db_backup.py:119
+#, python-format
+msgid ""
+"Do not save backups on your filestore, or you will backup your backups too!"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.actions.server,name:auto_backup.action_server_backup
+msgid "Execute backup(s)"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup_folder
+msgid "Folder"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+msgid "Go to Settings / Technical / Automation / Scheduled Actions."
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+msgid "Help"
+msgstr ""
+
+#. module: auto_backup
+#: sql_constraint:db.backup:0
+msgid "I cannot remove backups from the future. Ask Doc for that."
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup_id
+msgid "ID"
+msgstr "ID"
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup___last_update
+msgid "Last Modified on"
+msgstr "Last Modified on"
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup_write_uid
+msgid "Last Updated by"
+msgstr "Last Updated by"
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup_write_date
+msgid "Last Updated on"
+msgstr "Last Updated on"
+
+#. module: auto_backup
+#: selection:db.backup,method:0
+msgid "Local disk"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup_method
+msgid "Method"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup_name
+msgid "Name"
+msgstr "Name"
+
+#. module: auto_backup
+#: model:ir.model.fields,help:auto_backup.field_db_backup_sftp_private_key
+msgid ""
+"Path to the private key file. Only the Odoo user should have read "
+"permissions for that file."
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup_sftp_private_key
+msgid "Private key location"
+msgstr ""
+
+#. module: auto_backup
+#: selection:db.backup,method:0
+msgid "Remote SFTP server"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup_sftp_password
+msgid "SFTP Password"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup_sftp_port
+msgid "SFTP Port"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup_sftp_host
+msgid "SFTP Server"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+msgid "SFTP Settings"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_search
+msgid "Search options"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+msgid "Search the action named 'Backup scheduler'."
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+msgid ""
+"Set the scheduler to active and fill in how often you want backups "
+"generated."
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,help:auto_backup.field_db_backup_name
+msgid "Summary of this backup process"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+msgid "Test SFTP Connection"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,help:auto_backup.field_db_backup_sftp_host
+msgid ""
+"The host name or IP address from your remote server. For example 192.168.0.1"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,help:auto_backup.field_db_backup_sftp_password
+msgid ""
+"The password for the SFTP connection. If you specify a private key file, "
+"then this is the password to decrypt it."
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,help:auto_backup.field_db_backup_sftp_port
+msgid "The port on the FTP server that accepts SSH/SFTP calls."
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,help:auto_backup.field_db_backup_sftp_user
+msgid ""
+"The username where the SFTP connection should be made with. This is the user"
+" on the external server."
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+msgid ""
+"Use SFTP with caution! This writes files to external servers under the path "
+"you specify."
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup_sftp_user
+msgid "Username in the SFTP Server"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+msgid "Warning:"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model,name:auto_backup.model_db_backup
+msgid "db.backup"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+msgid "john"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+msgid "sftp.example.com"
+msgstr ""
diff --git a/auto_backup/i18n/es.po b/auto_backup/i18n/es.po
index dd4fc220b21..691cc62f3f4 100644
--- a/auto_backup/i18n/es.po
+++ b/auto_backup/i18n/es.po
@@ -3,15 +3,15 @@
 # * auto_backup
 # 
 # Translators:
-# Carles Antoli <carlesantoli@hotmail.com>, 2016
+# OCA Transbot <transbot@odoo-community.org>, 2016
 msgid ""
 msgstr ""
-"Project-Id-Version: server-tools (8.0)\n"
+"Project-Id-Version: Odoo Server 10.0\n"
 "Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2016-05-28 02:41+0000\n"
-"PO-Revision-Date: 2016-05-27 15:24+0000\n"
-"Last-Translator: OCA Transbot <transbot@odoo-community.org>\n"
-"Language-Team: Spanish (http://www.transifex.com/oca/OCA-server-tools-8-0/language/es/)\n"
+"POT-Creation-Date: 2017-06-01 14:58+0000\n"
+"PO-Revision-Date: 2017-06-01 14:58+0000\n"
+"Last-Translator: OCA Transbot <transbot@odoo-community.org>, 2016\n"
+"Language-Team: Spanish (https://www.transifex.com/oca/teams/23907/es/)\n"
 "MIME-Version: 1.0\n"
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: \n"
@@ -19,12 +19,12 @@ msgstr ""
 "Plural-Forms: nplurals=2; plural=(n != 1);\n"
 
 #. module: auto_backup
-#: view:db.backup:auto_backup.view_backup_conf_form
+#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
 msgid "/home/odoo/.ssh/id_rsa"
 msgstr "/home/odoo/.ssh/id_rsa"
 
 #. module: auto_backup
-#: help:db.backup,folder:0
+#: model:ir.model.fields,help:auto_backup.field_db_backup_folder
 msgid "Absolute path for storing the backups"
 msgstr "Ruta absoluta para almacenar las copias de seguridad"
 
@@ -35,34 +35,38 @@ msgid "Automated Backups"
 msgstr "Copias de seguridad automatizadas"
 
 #. module: auto_backup
-#: view:db.backup:auto_backup.view_backup_conf_form
+#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
 msgid "Automatic backups of the database can be scheduled as follows:"
-msgstr "Copias de seguridad autom??ticas de la base de datos se pueden programar de la siguiente manera:"
+msgstr ""
+"Copias de seguridad autom??ticas de la base de datos se pueden programar de "
+"la siguiente manera:"
 
 #. module: auto_backup
-#: model:mail.message.subtype,name:auto_backup.failure
-msgid "Backup failed"
-msgstr "La copia de seguridad ha fallado"
+#: model:mail.message.subtype,name:auto_backup.mail_message_subtype_failure
+msgid "Backup Failed"
+msgstr "Error de copia de seguridad"
 
 #. module: auto_backup
-#: model:mail.message.subtype,name:auto_backup.success
-msgid "Backup successful"
-msgstr "Copia de seguridad realizada con ??xito"
+#: model:mail.message.subtype,name:auto_backup.mail_message_subtype_success
+msgid "Backup Successful"
+msgstr "Copia de seguridad con ??xito"
 
 #. module: auto_backup
-#: view:db.backup:auto_backup.view_backup_conf_tree
+#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_tree
 msgid "Backups"
 msgstr "Copias de seguridad"
 
 #. module: auto_backup
-#: help:db.backup,days_to_keep:0
+#: model:ir.model.fields,help:auto_backup.field_db_backup_days_to_keep
 msgid ""
 "Backups older than this will be deleted automatically. Set 0 to disable "
 "autodeletion."
-msgstr "Las copias de seguridad m??s antiguas que ??sta se eliminar??n de forma autom??tica. Establecer a 0 para desactivar el borrado autom??tico."
+msgstr ""
+"Las copias de seguridad m??s antiguas que ??sta se eliminar??n de forma "
+"autom??tica. Establecer a 0 para desactivar el borrado autom??tico."
 
 #. module: auto_backup
-#: view:db.backup:auto_backup.view_backup_conf_form
+#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
 msgid "Basic backup configuration"
 msgstr "Configuraci??n b??sica de la copia de seguridad"
 
@@ -72,18 +76,20 @@ msgid "Cannot duplicate a configuration."
 msgstr "No se puede duplicar una configuraci??n."
 
 #. module: auto_backup
-#: help:db.backup,method:0
+#: model:ir.model.fields,help:auto_backup.field_db_backup_method
 msgid "Choose the storage method for this backup."
 msgstr "Elija el m??todo de almacenamiento para esta copia de seguridad."
 
 #. module: auto_backup
-#: code:addons/auto_backup/models/db_backup.py:247
+#: code:addons/auto_backup/models/db_backup.py:253
 #, python-format
 msgid "Cleanup of old database backups failed."
-msgstr "La limpieza de las copias de seguridad de las bases de datos antiguas ha fallado."
+msgstr ""
+"La limpieza de las copias de seguridad de las bases de datos antiguas ha "
+"fallado."
 
 #. module: auto_backup
-#: code:addons/auto_backup/models/db_backup.py:131
+#: code:addons/auto_backup/models/db_backup.py:133
 #, python-format
 msgid "Connection Test Failed!"
 msgstr "Error en la prueba de conexi??n!"
@@ -95,41 +101,36 @@ msgid "Connection Test Succeeded!"
 msgstr "Prueba de conexi??n correcta!"
 
 #. module: auto_backup
-#: field:db.backup,create_uid:0
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup_create_uid
 msgid "Created by"
 msgstr "Creado por"
 
 #. module: auto_backup
-#: field:db.backup,create_date:0
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup_create_date
 msgid "Created on"
 msgstr "Creado el"
 
 #. module: auto_backup
-#: code:addons/auto_backup/models/db_backup.py:206
-#: model:mail.message.subtype,description:auto_backup.failure
+#: code:addons/auto_backup/models/db_backup.py:208
+#: model:mail.message.subtype,description:auto_backup.mail_message_subtype_failure
 #, python-format
 msgid "Database backup failed."
 msgstr "La copia de seguridad de la base de datos ha fallado."
 
 #. module: auto_backup
-#: code:addons/auto_backup/models/db_backup.py:211
-#: model:mail.message.subtype,description:auto_backup.success
+#: code:addons/auto_backup/models/db_backup.py:216
+#: model:mail.message.subtype,description:auto_backup.mail_message_subtype_success
 #, python-format
 msgid "Database backup succeeded."
 msgstr "La copia de seguridad de la base de datos se realizo correctamente"
 
 #. module: auto_backup
-#: help:db.backup,message_last_post:0
-msgid "Date of the last message posted on the record."
-msgstr "Fecha del ??ltimo mensaje publicado en el registro."
-
-#. module: auto_backup
-#: field:db.backup,days_to_keep:0
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup_days_to_keep
 msgid "Days to keep"
 msgstr "D??as para conservar"
 
 #. module: auto_backup
-#: field:db.backup,display_name:0
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup_display_name
 msgid "Display Name"
 msgstr "Nombre a mostrar"
 
@@ -138,12 +139,9 @@ msgstr "Nombre a mostrar"
 #, python-format
 msgid ""
 "Do not save backups on your filestore, or you will backup your backups too!"
-msgstr "No guardar las copias de seguridad en su almac??n de archivos, o se copiaran las copias de seguridad tambi??n!"
-
-#. module: auto_backup
-#: model:ir.model,name:auto_backup.model_db_backup
-msgid "Email Thread"
-msgstr "Hilo correo electr??nico"
+msgstr ""
+"No guardar las copias de seguridad en su almac??n de archivos, o se copiaran "
+"las copias de seguridad tambi??n!"
 
 #. module: auto_backup
 #: model:ir.actions.server,name:auto_backup.action_server_backup
@@ -151,69 +149,44 @@ msgid "Execute backup(s)"
 msgstr "Ejecutar copia(s) de seguridad"
 
 #. module: auto_backup
-#: field:db.backup,folder:0
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup_folder
 msgid "Folder"
 msgstr "Carpeta"
 
 #. module: auto_backup
-#: field:db.backup,message_follower_ids:0
-msgid "Followers"
-msgstr "Seguidores"
-
-#. module: auto_backup
-#: view:db.backup:auto_backup.view_backup_conf_form
+#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
 msgid "Go to Settings / Technical / Automation / Scheduled Actions."
 msgstr "Ir a Configuraci??n / T??cnico / Automatizaci??n / Acciones Planificadas"
 
 #. module: auto_backup
-#: view:db.backup:auto_backup.view_backup_conf_form
+#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
 msgid "Help"
 msgstr "Ayuda"
 
-#. module: auto_backup
-#: help:db.backup,message_summary:0
-msgid ""
-"Holds the Chatter summary (number of messages, ...). This summary is "
-"directly in html format in order to be inserted in kanban views."
-msgstr "Guarda el resumen de la Charla (n??mero de mensajes, ...). Este resumen es en formato html directamente para ser insertado en vistas kanban."
-
 #. module: auto_backup
 #: sql_constraint:db.backup:0
 msgid "I cannot remove backups from the future. Ask Doc for that."
-msgstr "No puedo eliminar las copias de seguridad desde el futuro. Consulta la documentaci??n para eso."
+msgstr ""
+"No puedo eliminar las copias de seguridad desde el futuro. Consulta la "
+"documentaci??n para eso."
 
 #. module: auto_backup
-#: field:db.backup,id:0
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup_id
 msgid "ID"
 msgstr "ID"
 
 #. module: auto_backup
-#: help:db.backup,message_unread:0
-msgid "If checked new messages require your attention."
-msgstr "Si se marca los nuevos mensajes requerir??n su atenci??n."
-
-#. module: auto_backup
-#: field:db.backup,message_is_follower:0
-msgid "Is a Follower"
-msgstr "Es seguidor"
-
-#. module: auto_backup
-#: field:db.backup,message_last_post:0
-msgid "Last Message Date"
-msgstr "Fecha del ??ltimo mensaje"
-
-#. module: auto_backup
-#: field:db.backup,__last_update:0
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup___last_update
 msgid "Last Modified on"
 msgstr "??ltima actualizaci??n por"
 
 #. module: auto_backup
-#: field:db.backup,write_uid:0
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup_write_uid
 msgid "Last Updated by"
 msgstr "??ltima actualizaci??n por"
 
 #. module: auto_backup
-#: field:db.backup,write_date:0
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup_write_date
 msgid "Last Updated on"
 msgstr "??ltima actualizaci??n el"
 
@@ -223,34 +196,26 @@ msgid "Local disk"
 msgstr "Disco local"
 
 #. module: auto_backup
-#: field:db.backup,message_ids:0
-msgid "Messages"
-msgstr "Mensajes"
-
-#. module: auto_backup
-#: help:db.backup,message_ids:0
-msgid "Messages and communication history"
-msgstr "Hist??rico de mensajes y comunicaciones"
-
-#. module: auto_backup
-#: field:db.backup,method:0
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup_method
 msgid "Method"
 msgstr "M??todo"
 
 #. module: auto_backup
-#: field:db.backup,name:0
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup_name
 msgid "Name"
 msgstr "Nombre"
 
 #. module: auto_backup
-#: help:db.backup,sftp_private_key:0
+#: model:ir.model.fields,help:auto_backup.field_db_backup_sftp_private_key
 msgid ""
 "Path to the private key file. Only the Odoo user should have read "
 "permissions for that file."
-msgstr "Ruta del archivo de clave privada. S??lo el usuario Odoo debe tener permisos de lectura para ese archivo."
+msgstr ""
+"Ruta del archivo de clave privada. S??lo el usuario Odoo debe tener permisos "
+"de lectura para ese archivo."
 
 #. module: auto_backup
-#: field:db.backup,sftp_private_key:0
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup_sftp_private_key
 msgid "Private key location"
 msgstr "Ubicaci??n de la clave privada"
 
@@ -260,110 +225,115 @@ msgid "Remote SFTP server"
 msgstr "Servidor remoto SFTP"
 
 #. module: auto_backup
-#: field:db.backup,sftp_password:0
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup_sftp_password
 msgid "SFTP Password"
 msgstr "Contrase??a SFTP"
 
 #. module: auto_backup
-#: field:db.backup,sftp_port:0
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup_sftp_port
 msgid "SFTP Port"
 msgstr "Puerto SFTP"
 
 #. module: auto_backup
-#: field:db.backup,sftp_host:0
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup_sftp_host
 msgid "SFTP Server"
 msgstr "Servidor SFTP"
 
 #. module: auto_backup
-#: view:db.backup:auto_backup.view_backup_conf_form
+#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
 msgid "SFTP Settings"
 msgstr "Configuraci??n de SFTP"
 
 #. module: auto_backup
-#: view:db.backup:auto_backup.view_backup_conf_search
+#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_search
 msgid "Search options"
 msgstr "Opciones de b??squeda"
 
 #. module: auto_backup
-#: view:db.backup:auto_backup.view_backup_conf_form
+#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
 msgid "Search the action named 'Backup scheduler'."
 msgstr "Buscar la acci??n llamada 'Backup sheduler'."
 
 #. module: auto_backup
-#: view:db.backup:auto_backup.view_backup_conf_form
+#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
 msgid ""
 "Set the scheduler to active and fill in how often you want backups "
 "generated."
-msgstr "Ajuste el programador para activar y rellenar con qu?? frecuencia desea las copias de seguridad generadas."
-
-#. module: auto_backup
-#: field:db.backup,message_summary:0
-msgid "Summary"
-msgstr "Resumen"
+msgstr ""
+"Ajuste el programador para activar y rellenar con qu?? frecuencia desea las "
+"copias de seguridad generadas."
 
 #. module: auto_backup
-#: help:db.backup,name:0
+#: model:ir.model.fields,help:auto_backup.field_db_backup_name
 msgid "Summary of this backup process"
 msgstr "Resumen de este proceso de copia de seguridad"
 
 #. module: auto_backup
-#: view:db.backup:auto_backup.view_backup_conf_form
+#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
 msgid "Test SFTP Connection"
 msgstr "Prueba de conexi??n SFTP"
 
 #. module: auto_backup
-#: help:db.backup,sftp_host:0
+#: model:ir.model.fields,help:auto_backup.field_db_backup_sftp_host
 msgid ""
 "The host name or IP address from your remote server. For example 192.168.0.1"
-msgstr "El nombre del host o la direcci??n IP de su servidor remoto. Por ejemplo 192.168.0.1"
+msgstr ""
+"El nombre del host o la direcci??n IP de su servidor remoto. Por ejemplo "
+"192.168.0.1"
 
 #. module: auto_backup
-#: help:db.backup,sftp_password:0
+#: model:ir.model.fields,help:auto_backup.field_db_backup_sftp_password
 msgid ""
 "The password for the SFTP connection. If you specify a private key file, "
 "then this is the password to decrypt it."
-msgstr "La contrase??a para la conexi??n SFTP. Si se especifica un archivo de clave privada, entonces esta es la contrase??a para descifrarlo."
+msgstr ""
+"La contrase??a para la conexi??n SFTP. Si se especifica un archivo de clave "
+"privada, entonces esta es la contrase??a para descifrarlo."
 
 #. module: auto_backup
-#: help:db.backup,sftp_port:0
+#: model:ir.model.fields,help:auto_backup.field_db_backup_sftp_port
 msgid "The port on the FTP server that accepts SSH/SFTP calls."
 msgstr "El puerto en el servidor FTP que acepta llamadas de SSH/SFTP."
 
 #. module: auto_backup
-#: help:db.backup,sftp_user:0
+#: model:ir.model.fields,help:auto_backup.field_db_backup_sftp_user
 msgid ""
 "The username where the SFTP connection should be made with. This is the user"
 " on the external server."
-msgstr "El nombre de usuario donde la conexi??n SFTP se debe hacer con. Este es el usuario en el servidor externo."
-
-#. module: auto_backup
-#: field:db.backup,message_unread:0
-msgid "Unread Messages"
-msgstr "Mensajes sin leer"
+msgstr ""
+"El nombre de usuario donde la conexi??n SFTP se debe hacer con. Este es el "
+"usuario en el servidor externo."
 
 #. module: auto_backup
-#: view:db.backup:auto_backup.view_backup_conf_form
+#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
 msgid ""
 "Use SFTP with caution! This writes files to external servers under the path "
 "you specify."
-msgstr "Utilizar SFTP con precauci??n! Escribe archivos a servidores externos en la ruta que especifique."
+msgstr ""
+"Utilizar SFTP con precauci??n! Escribe archivos a servidores externos en la "
+"ruta que especifique."
 
 #. module: auto_backup
-#: field:db.backup,sftp_user:0
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup_sftp_user
 msgid "Username in the SFTP Server"
 msgstr "Nombre del usuario en el servidor SFTP"
 
 #. module: auto_backup
-#: view:db.backup:auto_backup.view_backup_conf_form
+#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
 msgid "Warning:"
 msgstr "Advertencia:"
 
 #. module: auto_backup
-#: view:db.backup:auto_backup.view_backup_conf_form
+#: model:ir.model,name:auto_backup.model_db_backup
+msgid "db.backup"
+msgstr "db.copia de seguridad"
+
+#. module: auto_backup
+#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
 msgid "john"
 msgstr "john"
 
 #. module: auto_backup
-#: view:db.backup:auto_backup.view_backup_conf_form
+#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
 msgid "sftp.example.com"
 msgstr "sftp.example.com"
diff --git a/auto_backup/i18n/es_AR.po b/auto_backup/i18n/es_AR.po
new file mode 100644
index 00000000000..35c2efa2e56
--- /dev/null
+++ b/auto_backup/i18n/es_AR.po
@@ -0,0 +1,317 @@
+# Translation of Odoo Server.
+# This file contains the translation of the following modules:
+# * auto_backup
+# 
+# Translators:
+# OCA Transbot <transbot@odoo-community.org>, 2016
+msgid ""
+msgstr ""
+"Project-Id-Version: Odoo Server 10.0\n"
+"Report-Msgid-Bugs-To: \n"
+"POT-Creation-Date: 2017-02-18 02:29+0000\n"
+"PO-Revision-Date: 2017-02-18 02:29+0000\n"
+"Last-Translator: OCA Transbot <transbot@odoo-community.org>, 2016\n"
+"Language-Team: Spanish (Argentina) (https://www.transifex.com/oca/teams/23907/es_AR/)\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: \n"
+"Language: es_AR\n"
+"Plural-Forms: nplurals=2; plural=(n != 1);\n"
+
+#. module: auto_backup
+#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+msgid "/home/odoo/.ssh/id_rsa"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,help:auto_backup.field_db_backup_folder
+msgid "Absolute path for storing the backups"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.actions.act_window,name:auto_backup.action_backup_conf_form
+#: model:ir.ui.menu,name:auto_backup.backup_conf_menu
+msgid "Automated Backups"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+msgid "Automatic backups of the database can be scheduled as follows:"
+msgstr ""
+
+#. module: auto_backup
+#: model:mail.message.subtype,name:auto_backup.mail_message_subtype_failure
+msgid "Backup Failed"
+msgstr ""
+
+#. module: auto_backup
+#: model:mail.message.subtype,name:auto_backup.mail_message_subtype_success
+msgid "Backup Successful"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_tree
+msgid "Backups"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,help:auto_backup.field_db_backup_days_to_keep
+msgid ""
+"Backups older than this will be deleted automatically. Set 0 to disable "
+"autodeletion."
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+msgid "Basic backup configuration"
+msgstr ""
+
+#. module: auto_backup
+#: sql_constraint:db.backup:0
+msgid "Cannot duplicate a configuration."
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,help:auto_backup.field_db_backup_method
+msgid "Choose the storage method for this backup."
+msgstr ""
+
+#. module: auto_backup
+#: code:addons/auto_backup/models/db_backup.py:251
+#, python-format
+msgid "Cleanup of old database backups failed."
+msgstr ""
+
+#. module: auto_backup
+#: code:addons/auto_backup/models/db_backup.py:131
+#, python-format
+msgid "Connection Test Failed!"
+msgstr ""
+
+#. module: auto_backup
+#: code:addons/auto_backup/models/db_backup.py:128
+#, python-format
+msgid "Connection Test Succeeded!"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup_create_uid
+msgid "Created by"
+msgstr "Creado por"
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup_create_date
+msgid "Created on"
+msgstr "Creado en"
+
+#. module: auto_backup
+#: code:addons/auto_backup/models/db_backup.py:206
+#: model:mail.message.subtype,description:auto_backup.mail_message_subtype_failure
+#, python-format
+msgid "Database backup failed."
+msgstr ""
+
+#. module: auto_backup
+#: code:addons/auto_backup/models/db_backup.py:214
+#: model:mail.message.subtype,description:auto_backup.mail_message_subtype_success
+#, python-format
+msgid "Database backup succeeded."
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup_days_to_keep
+msgid "Days to keep"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup_display_name
+msgid "Display Name"
+msgstr "Mostrar Nombre"
+
+#. module: auto_backup
+#: code:addons/auto_backup/models/db_backup.py:119
+#, python-format
+msgid ""
+"Do not save backups on your filestore, or you will backup your backups too!"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.actions.server,name:auto_backup.action_server_backup
+msgid "Execute backup(s)"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup_folder
+msgid "Folder"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+msgid "Go to Settings / Technical / Automation / Scheduled Actions."
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+msgid "Help"
+msgstr ""
+
+#. module: auto_backup
+#: sql_constraint:db.backup:0
+msgid "I cannot remove backups from the future. Ask Doc for that."
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup_id
+msgid "ID"
+msgstr "ID"
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup___last_update
+msgid "Last Modified on"
+msgstr "??ltima modificaci??n en"
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup_write_uid
+msgid "Last Updated by"
+msgstr "??ltima actualizaci??n realizada por"
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup_write_date
+msgid "Last Updated on"
+msgstr "??ltima actualizaci??n el"
+
+#. module: auto_backup
+#: selection:db.backup,method:0
+msgid "Local disk"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup_method
+msgid "Method"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup_name
+msgid "Name"
+msgstr "Nombre"
+
+#. module: auto_backup
+#: model:ir.model.fields,help:auto_backup.field_db_backup_sftp_private_key
+msgid ""
+"Path to the private key file. Only the Odoo user should have read "
+"permissions for that file."
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup_sftp_private_key
+msgid "Private key location"
+msgstr ""
+
+#. module: auto_backup
+#: selection:db.backup,method:0
+msgid "Remote SFTP server"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup_sftp_password
+msgid "SFTP Password"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup_sftp_port
+msgid "SFTP Port"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup_sftp_host
+msgid "SFTP Server"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+msgid "SFTP Settings"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_search
+msgid "Search options"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+msgid "Search the action named 'Backup scheduler'."
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+msgid ""
+"Set the scheduler to active and fill in how often you want backups "
+"generated."
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,help:auto_backup.field_db_backup_name
+msgid "Summary of this backup process"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+msgid "Test SFTP Connection"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,help:auto_backup.field_db_backup_sftp_host
+msgid ""
+"The host name or IP address from your remote server. For example 192.168.0.1"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,help:auto_backup.field_db_backup_sftp_password
+msgid ""
+"The password for the SFTP connection. If you specify a private key file, "
+"then this is the password to decrypt it."
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,help:auto_backup.field_db_backup_sftp_port
+msgid "The port on the FTP server that accepts SSH/SFTP calls."
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,help:auto_backup.field_db_backup_sftp_user
+msgid ""
+"The username where the SFTP connection should be made with. This is the user"
+" on the external server."
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+msgid ""
+"Use SFTP with caution! This writes files to external servers under the path "
+"you specify."
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup_sftp_user
+msgid "Username in the SFTP Server"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+msgid "Warning:"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model,name:auto_backup.model_db_backup
+msgid "db.backup"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+msgid "john"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+msgid "sftp.example.com"
+msgstr ""
diff --git a/auto_backup/i18n/es_CL.po b/auto_backup/i18n/es_CL.po
new file mode 100644
index 00000000000..261bb4bdbf1
--- /dev/null
+++ b/auto_backup/i18n/es_CL.po
@@ -0,0 +1,317 @@
+# Translation of Odoo Server.
+# This file contains the translation of the following modules:
+# * auto_backup
+# 
+# Translators:
+# OCA Transbot <transbot@odoo-community.org>, 2017
+msgid ""
+msgstr ""
+"Project-Id-Version: Odoo Server 10.0\n"
+"Report-Msgid-Bugs-To: \n"
+"POT-Creation-Date: 2017-02-18 02:29+0000\n"
+"PO-Revision-Date: 2017-02-18 02:29+0000\n"
+"Last-Translator: OCA Transbot <transbot@odoo-community.org>, 2017\n"
+"Language-Team: Spanish (Chile) (https://www.transifex.com/oca/teams/23907/es_CL/)\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: \n"
+"Language: es_CL\n"
+"Plural-Forms: nplurals=2; plural=(n != 1);\n"
+
+#. module: auto_backup
+#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+msgid "/home/odoo/.ssh/id_rsa"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,help:auto_backup.field_db_backup_folder
+msgid "Absolute path for storing the backups"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.actions.act_window,name:auto_backup.action_backup_conf_form
+#: model:ir.ui.menu,name:auto_backup.backup_conf_menu
+msgid "Automated Backups"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+msgid "Automatic backups of the database can be scheduled as follows:"
+msgstr ""
+
+#. module: auto_backup
+#: model:mail.message.subtype,name:auto_backup.mail_message_subtype_failure
+msgid "Backup Failed"
+msgstr ""
+
+#. module: auto_backup
+#: model:mail.message.subtype,name:auto_backup.mail_message_subtype_success
+msgid "Backup Successful"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_tree
+msgid "Backups"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,help:auto_backup.field_db_backup_days_to_keep
+msgid ""
+"Backups older than this will be deleted automatically. Set 0 to disable "
+"autodeletion."
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+msgid "Basic backup configuration"
+msgstr ""
+
+#. module: auto_backup
+#: sql_constraint:db.backup:0
+msgid "Cannot duplicate a configuration."
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,help:auto_backup.field_db_backup_method
+msgid "Choose the storage method for this backup."
+msgstr ""
+
+#. module: auto_backup
+#: code:addons/auto_backup/models/db_backup.py:251
+#, python-format
+msgid "Cleanup of old database backups failed."
+msgstr ""
+
+#. module: auto_backup
+#: code:addons/auto_backup/models/db_backup.py:131
+#, python-format
+msgid "Connection Test Failed!"
+msgstr ""
+
+#. module: auto_backup
+#: code:addons/auto_backup/models/db_backup.py:128
+#, python-format
+msgid "Connection Test Succeeded!"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup_create_uid
+msgid "Created by"
+msgstr "Creado por"
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup_create_date
+msgid "Created on"
+msgstr "Creado en"
+
+#. module: auto_backup
+#: code:addons/auto_backup/models/db_backup.py:206
+#: model:mail.message.subtype,description:auto_backup.mail_message_subtype_failure
+#, python-format
+msgid "Database backup failed."
+msgstr ""
+
+#. module: auto_backup
+#: code:addons/auto_backup/models/db_backup.py:214
+#: model:mail.message.subtype,description:auto_backup.mail_message_subtype_success
+#, python-format
+msgid "Database backup succeeded."
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup_days_to_keep
+msgid "Days to keep"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup_display_name
+msgid "Display Name"
+msgstr "Nombre mostrado"
+
+#. module: auto_backup
+#: code:addons/auto_backup/models/db_backup.py:119
+#, python-format
+msgid ""
+"Do not save backups on your filestore, or you will backup your backups too!"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.actions.server,name:auto_backup.action_server_backup
+msgid "Execute backup(s)"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup_folder
+msgid "Folder"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+msgid "Go to Settings / Technical / Automation / Scheduled Actions."
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+msgid "Help"
+msgstr ""
+
+#. module: auto_backup
+#: sql_constraint:db.backup:0
+msgid "I cannot remove backups from the future. Ask Doc for that."
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup_id
+msgid "ID"
+msgstr "ID (identificaci??n)"
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup___last_update
+msgid "Last Modified on"
+msgstr "??ltima modificaci??n en"
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup_write_uid
+msgid "Last Updated by"
+msgstr "??ltima actualizaci??n de"
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup_write_date
+msgid "Last Updated on"
+msgstr "??ltima actualizaci??n en"
+
+#. module: auto_backup
+#: selection:db.backup,method:0
+msgid "Local disk"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup_method
+msgid "Method"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup_name
+msgid "Name"
+msgstr "Nombre"
+
+#. module: auto_backup
+#: model:ir.model.fields,help:auto_backup.field_db_backup_sftp_private_key
+msgid ""
+"Path to the private key file. Only the Odoo user should have read "
+"permissions for that file."
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup_sftp_private_key
+msgid "Private key location"
+msgstr ""
+
+#. module: auto_backup
+#: selection:db.backup,method:0
+msgid "Remote SFTP server"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup_sftp_password
+msgid "SFTP Password"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup_sftp_port
+msgid "SFTP Port"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup_sftp_host
+msgid "SFTP Server"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+msgid "SFTP Settings"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_search
+msgid "Search options"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+msgid "Search the action named 'Backup scheduler'."
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+msgid ""
+"Set the scheduler to active and fill in how often you want backups "
+"generated."
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,help:auto_backup.field_db_backup_name
+msgid "Summary of this backup process"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+msgid "Test SFTP Connection"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,help:auto_backup.field_db_backup_sftp_host
+msgid ""
+"The host name or IP address from your remote server. For example 192.168.0.1"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,help:auto_backup.field_db_backup_sftp_password
+msgid ""
+"The password for the SFTP connection. If you specify a private key file, "
+"then this is the password to decrypt it."
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,help:auto_backup.field_db_backup_sftp_port
+msgid "The port on the FTP server that accepts SSH/SFTP calls."
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,help:auto_backup.field_db_backup_sftp_user
+msgid ""
+"The username where the SFTP connection should be made with. This is the user"
+" on the external server."
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+msgid ""
+"Use SFTP with caution! This writes files to external servers under the path "
+"you specify."
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup_sftp_user
+msgid "Username in the SFTP Server"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+msgid "Warning:"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model,name:auto_backup.model_db_backup
+msgid "db.backup"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+msgid "john"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+msgid "sftp.example.com"
+msgstr ""
diff --git a/auto_backup/i18n/es_CO.po b/auto_backup/i18n/es_CO.po
new file mode 100644
index 00000000000..3eeaf147eca
--- /dev/null
+++ b/auto_backup/i18n/es_CO.po
@@ -0,0 +1,317 @@
+# Translation of Odoo Server.
+# This file contains the translation of the following modules:
+# * auto_backup
+# 
+# Translators:
+# OCA Transbot <transbot@odoo-community.org>, 2016
+msgid ""
+msgstr ""
+"Project-Id-Version: Odoo Server 10.0\n"
+"Report-Msgid-Bugs-To: \n"
+"POT-Creation-Date: 2017-02-18 02:29+0000\n"
+"PO-Revision-Date: 2017-02-18 02:29+0000\n"
+"Last-Translator: OCA Transbot <transbot@odoo-community.org>, 2016\n"
+"Language-Team: Spanish (Colombia) (https://www.transifex.com/oca/teams/23907/es_CO/)\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: \n"
+"Language: es_CO\n"
+"Plural-Forms: nplurals=2; plural=(n != 1);\n"
+
+#. module: auto_backup
+#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+msgid "/home/odoo/.ssh/id_rsa"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,help:auto_backup.field_db_backup_folder
+msgid "Absolute path for storing the backups"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.actions.act_window,name:auto_backup.action_backup_conf_form
+#: model:ir.ui.menu,name:auto_backup.backup_conf_menu
+msgid "Automated Backups"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+msgid "Automatic backups of the database can be scheduled as follows:"
+msgstr ""
+
+#. module: auto_backup
+#: model:mail.message.subtype,name:auto_backup.mail_message_subtype_failure
+msgid "Backup Failed"
+msgstr ""
+
+#. module: auto_backup
+#: model:mail.message.subtype,name:auto_backup.mail_message_subtype_success
+msgid "Backup Successful"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_tree
+msgid "Backups"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,help:auto_backup.field_db_backup_days_to_keep
+msgid ""
+"Backups older than this will be deleted automatically. Set 0 to disable "
+"autodeletion."
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+msgid "Basic backup configuration"
+msgstr ""
+
+#. module: auto_backup
+#: sql_constraint:db.backup:0
+msgid "Cannot duplicate a configuration."
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,help:auto_backup.field_db_backup_method
+msgid "Choose the storage method for this backup."
+msgstr ""
+
+#. module: auto_backup
+#: code:addons/auto_backup/models/db_backup.py:251
+#, python-format
+msgid "Cleanup of old database backups failed."
+msgstr ""
+
+#. module: auto_backup
+#: code:addons/auto_backup/models/db_backup.py:131
+#, python-format
+msgid "Connection Test Failed!"
+msgstr ""
+
+#. module: auto_backup
+#: code:addons/auto_backup/models/db_backup.py:128
+#, python-format
+msgid "Connection Test Succeeded!"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup_create_uid
+msgid "Created by"
+msgstr "Creado por"
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup_create_date
+msgid "Created on"
+msgstr "Creado"
+
+#. module: auto_backup
+#: code:addons/auto_backup/models/db_backup.py:206
+#: model:mail.message.subtype,description:auto_backup.mail_message_subtype_failure
+#, python-format
+msgid "Database backup failed."
+msgstr ""
+
+#. module: auto_backup
+#: code:addons/auto_backup/models/db_backup.py:214
+#: model:mail.message.subtype,description:auto_backup.mail_message_subtype_success
+#, python-format
+msgid "Database backup succeeded."
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup_days_to_keep
+msgid "Days to keep"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup_display_name
+msgid "Display Name"
+msgstr "Nombre P??blico"
+
+#. module: auto_backup
+#: code:addons/auto_backup/models/db_backup.py:119
+#, python-format
+msgid ""
+"Do not save backups on your filestore, or you will backup your backups too!"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.actions.server,name:auto_backup.action_server_backup
+msgid "Execute backup(s)"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup_folder
+msgid "Folder"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+msgid "Go to Settings / Technical / Automation / Scheduled Actions."
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+msgid "Help"
+msgstr ""
+
+#. module: auto_backup
+#: sql_constraint:db.backup:0
+msgid "I cannot remove backups from the future. Ask Doc for that."
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup_id
+msgid "ID"
+msgstr "ID"
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup___last_update
+msgid "Last Modified on"
+msgstr "??ltima Modificaci??n el"
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup_write_uid
+msgid "Last Updated by"
+msgstr "Actualizado por"
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup_write_date
+msgid "Last Updated on"
+msgstr "Actualizado"
+
+#. module: auto_backup
+#: selection:db.backup,method:0
+msgid "Local disk"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup_method
+msgid "Method"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup_name
+msgid "Name"
+msgstr "Nombre"
+
+#. module: auto_backup
+#: model:ir.model.fields,help:auto_backup.field_db_backup_sftp_private_key
+msgid ""
+"Path to the private key file. Only the Odoo user should have read "
+"permissions for that file."
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup_sftp_private_key
+msgid "Private key location"
+msgstr ""
+
+#. module: auto_backup
+#: selection:db.backup,method:0
+msgid "Remote SFTP server"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup_sftp_password
+msgid "SFTP Password"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup_sftp_port
+msgid "SFTP Port"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup_sftp_host
+msgid "SFTP Server"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+msgid "SFTP Settings"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_search
+msgid "Search options"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+msgid "Search the action named 'Backup scheduler'."
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+msgid ""
+"Set the scheduler to active and fill in how often you want backups "
+"generated."
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,help:auto_backup.field_db_backup_name
+msgid "Summary of this backup process"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+msgid "Test SFTP Connection"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,help:auto_backup.field_db_backup_sftp_host
+msgid ""
+"The host name or IP address from your remote server. For example 192.168.0.1"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,help:auto_backup.field_db_backup_sftp_password
+msgid ""
+"The password for the SFTP connection. If you specify a private key file, "
+"then this is the password to decrypt it."
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,help:auto_backup.field_db_backup_sftp_port
+msgid "The port on the FTP server that accepts SSH/SFTP calls."
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,help:auto_backup.field_db_backup_sftp_user
+msgid ""
+"The username where the SFTP connection should be made with. This is the user"
+" on the external server."
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+msgid ""
+"Use SFTP with caution! This writes files to external servers under the path "
+"you specify."
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup_sftp_user
+msgid "Username in the SFTP Server"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+msgid "Warning:"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model,name:auto_backup.model_db_backup
+msgid "db.backup"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+msgid "john"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+msgid "sftp.example.com"
+msgstr ""
diff --git a/auto_backup/i18n/es_CR.po b/auto_backup/i18n/es_CR.po
new file mode 100644
index 00000000000..b34115b7014
--- /dev/null
+++ b/auto_backup/i18n/es_CR.po
@@ -0,0 +1,317 @@
+# Translation of Odoo Server.
+# This file contains the translation of the following modules:
+# * auto_backup
+# 
+# Translators:
+# OCA Transbot <transbot@odoo-community.org>, 2016
+msgid ""
+msgstr ""
+"Project-Id-Version: Odoo Server 10.0\n"
+"Report-Msgid-Bugs-To: \n"
+"POT-Creation-Date: 2017-02-18 02:29+0000\n"
+"PO-Revision-Date: 2017-02-18 02:29+0000\n"
+"Last-Translator: OCA Transbot <transbot@odoo-community.org>, 2016\n"
+"Language-Team: Spanish (Costa Rica) (https://www.transifex.com/oca/teams/23907/es_CR/)\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: \n"
+"Language: es_CR\n"
+"Plural-Forms: nplurals=2; plural=(n != 1);\n"
+
+#. module: auto_backup
+#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+msgid "/home/odoo/.ssh/id_rsa"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,help:auto_backup.field_db_backup_folder
+msgid "Absolute path for storing the backups"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.actions.act_window,name:auto_backup.action_backup_conf_form
+#: model:ir.ui.menu,name:auto_backup.backup_conf_menu
+msgid "Automated Backups"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+msgid "Automatic backups of the database can be scheduled as follows:"
+msgstr ""
+
+#. module: auto_backup
+#: model:mail.message.subtype,name:auto_backup.mail_message_subtype_failure
+msgid "Backup Failed"
+msgstr ""
+
+#. module: auto_backup
+#: model:mail.message.subtype,name:auto_backup.mail_message_subtype_success
+msgid "Backup Successful"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_tree
+msgid "Backups"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,help:auto_backup.field_db_backup_days_to_keep
+msgid ""
+"Backups older than this will be deleted automatically. Set 0 to disable "
+"autodeletion."
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+msgid "Basic backup configuration"
+msgstr ""
+
+#. module: auto_backup
+#: sql_constraint:db.backup:0
+msgid "Cannot duplicate a configuration."
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,help:auto_backup.field_db_backup_method
+msgid "Choose the storage method for this backup."
+msgstr ""
+
+#. module: auto_backup
+#: code:addons/auto_backup/models/db_backup.py:251
+#, python-format
+msgid "Cleanup of old database backups failed."
+msgstr ""
+
+#. module: auto_backup
+#: code:addons/auto_backup/models/db_backup.py:131
+#, python-format
+msgid "Connection Test Failed!"
+msgstr ""
+
+#. module: auto_backup
+#: code:addons/auto_backup/models/db_backup.py:128
+#, python-format
+msgid "Connection Test Succeeded!"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup_create_uid
+msgid "Created by"
+msgstr "Creado por"
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup_create_date
+msgid "Created on"
+msgstr "Creado en"
+
+#. module: auto_backup
+#: code:addons/auto_backup/models/db_backup.py:206
+#: model:mail.message.subtype,description:auto_backup.mail_message_subtype_failure
+#, python-format
+msgid "Database backup failed."
+msgstr ""
+
+#. module: auto_backup
+#: code:addons/auto_backup/models/db_backup.py:214
+#: model:mail.message.subtype,description:auto_backup.mail_message_subtype_success
+#, python-format
+msgid "Database backup succeeded."
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup_days_to_keep
+msgid "Days to keep"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup_display_name
+msgid "Display Name"
+msgstr ""
+
+#. module: auto_backup
+#: code:addons/auto_backup/models/db_backup.py:119
+#, python-format
+msgid ""
+"Do not save backups on your filestore, or you will backup your backups too!"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.actions.server,name:auto_backup.action_server_backup
+msgid "Execute backup(s)"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup_folder
+msgid "Folder"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+msgid "Go to Settings / Technical / Automation / Scheduled Actions."
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+msgid "Help"
+msgstr ""
+
+#. module: auto_backup
+#: sql_constraint:db.backup:0
+msgid "I cannot remove backups from the future. Ask Doc for that."
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup_id
+msgid "ID"
+msgstr "ID"
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup___last_update
+msgid "Last Modified on"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup_write_uid
+msgid "Last Updated by"
+msgstr "Ultima actualizaci??n por"
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup_write_date
+msgid "Last Updated on"
+msgstr "Ultima actualizaci??n en"
+
+#. module: auto_backup
+#: selection:db.backup,method:0
+msgid "Local disk"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup_method
+msgid "Method"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup_name
+msgid "Name"
+msgstr "Nombre"
+
+#. module: auto_backup
+#: model:ir.model.fields,help:auto_backup.field_db_backup_sftp_private_key
+msgid ""
+"Path to the private key file. Only the Odoo user should have read "
+"permissions for that file."
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup_sftp_private_key
+msgid "Private key location"
+msgstr ""
+
+#. module: auto_backup
+#: selection:db.backup,method:0
+msgid "Remote SFTP server"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup_sftp_password
+msgid "SFTP Password"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup_sftp_port
+msgid "SFTP Port"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup_sftp_host
+msgid "SFTP Server"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+msgid "SFTP Settings"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_search
+msgid "Search options"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+msgid "Search the action named 'Backup scheduler'."
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+msgid ""
+"Set the scheduler to active and fill in how often you want backups "
+"generated."
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,help:auto_backup.field_db_backup_name
+msgid "Summary of this backup process"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+msgid "Test SFTP Connection"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,help:auto_backup.field_db_backup_sftp_host
+msgid ""
+"The host name or IP address from your remote server. For example 192.168.0.1"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,help:auto_backup.field_db_backup_sftp_password
+msgid ""
+"The password for the SFTP connection. If you specify a private key file, "
+"then this is the password to decrypt it."
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,help:auto_backup.field_db_backup_sftp_port
+msgid "The port on the FTP server that accepts SSH/SFTP calls."
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,help:auto_backup.field_db_backup_sftp_user
+msgid ""
+"The username where the SFTP connection should be made with. This is the user"
+" on the external server."
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+msgid ""
+"Use SFTP with caution! This writes files to external servers under the path "
+"you specify."
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup_sftp_user
+msgid "Username in the SFTP Server"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+msgid "Warning:"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model,name:auto_backup.model_db_backup
+msgid "db.backup"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+msgid "john"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+msgid "sftp.example.com"
+msgstr ""
diff --git a/auto_backup/i18n/es_DO.po b/auto_backup/i18n/es_DO.po
new file mode 100644
index 00000000000..4e02402ce2b
--- /dev/null
+++ b/auto_backup/i18n/es_DO.po
@@ -0,0 +1,317 @@
+# Translation of Odoo Server.
+# This file contains the translation of the following modules:
+# * auto_backup
+# 
+# Translators:
+# OCA Transbot <transbot@odoo-community.org>, 2016
+msgid ""
+msgstr ""
+"Project-Id-Version: Odoo Server 10.0\n"
+"Report-Msgid-Bugs-To: \n"
+"POT-Creation-Date: 2017-02-18 02:29+0000\n"
+"PO-Revision-Date: 2017-02-18 02:29+0000\n"
+"Last-Translator: OCA Transbot <transbot@odoo-community.org>, 2016\n"
+"Language-Team: Spanish (Dominican Republic) (https://www.transifex.com/oca/teams/23907/es_DO/)\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: \n"
+"Language: es_DO\n"
+"Plural-Forms: nplurals=2; plural=(n != 1);\n"
+
+#. module: auto_backup
+#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+msgid "/home/odoo/.ssh/id_rsa"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,help:auto_backup.field_db_backup_folder
+msgid "Absolute path for storing the backups"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.actions.act_window,name:auto_backup.action_backup_conf_form
+#: model:ir.ui.menu,name:auto_backup.backup_conf_menu
+msgid "Automated Backups"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+msgid "Automatic backups of the database can be scheduled as follows:"
+msgstr ""
+
+#. module: auto_backup
+#: model:mail.message.subtype,name:auto_backup.mail_message_subtype_failure
+msgid "Backup Failed"
+msgstr ""
+
+#. module: auto_backup
+#: model:mail.message.subtype,name:auto_backup.mail_message_subtype_success
+msgid "Backup Successful"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_tree
+msgid "Backups"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,help:auto_backup.field_db_backup_days_to_keep
+msgid ""
+"Backups older than this will be deleted automatically. Set 0 to disable "
+"autodeletion."
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+msgid "Basic backup configuration"
+msgstr ""
+
+#. module: auto_backup
+#: sql_constraint:db.backup:0
+msgid "Cannot duplicate a configuration."
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,help:auto_backup.field_db_backup_method
+msgid "Choose the storage method for this backup."
+msgstr ""
+
+#. module: auto_backup
+#: code:addons/auto_backup/models/db_backup.py:251
+#, python-format
+msgid "Cleanup of old database backups failed."
+msgstr ""
+
+#. module: auto_backup
+#: code:addons/auto_backup/models/db_backup.py:131
+#, python-format
+msgid "Connection Test Failed!"
+msgstr ""
+
+#. module: auto_backup
+#: code:addons/auto_backup/models/db_backup.py:128
+#, python-format
+msgid "Connection Test Succeeded!"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup_create_uid
+msgid "Created by"
+msgstr "Creado por"
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup_create_date
+msgid "Created on"
+msgstr "Creado en"
+
+#. module: auto_backup
+#: code:addons/auto_backup/models/db_backup.py:206
+#: model:mail.message.subtype,description:auto_backup.mail_message_subtype_failure
+#, python-format
+msgid "Database backup failed."
+msgstr ""
+
+#. module: auto_backup
+#: code:addons/auto_backup/models/db_backup.py:214
+#: model:mail.message.subtype,description:auto_backup.mail_message_subtype_success
+#, python-format
+msgid "Database backup succeeded."
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup_days_to_keep
+msgid "Days to keep"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup_display_name
+msgid "Display Name"
+msgstr "Nombre mostrado"
+
+#. module: auto_backup
+#: code:addons/auto_backup/models/db_backup.py:119
+#, python-format
+msgid ""
+"Do not save backups on your filestore, or you will backup your backups too!"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.actions.server,name:auto_backup.action_server_backup
+msgid "Execute backup(s)"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup_folder
+msgid "Folder"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+msgid "Go to Settings / Technical / Automation / Scheduled Actions."
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+msgid "Help"
+msgstr ""
+
+#. module: auto_backup
+#: sql_constraint:db.backup:0
+msgid "I cannot remove backups from the future. Ask Doc for that."
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup_id
+msgid "ID"
+msgstr "ID (identificaci??n)"
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup___last_update
+msgid "Last Modified on"
+msgstr "??ltima modificaci??n en"
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup_write_uid
+msgid "Last Updated by"
+msgstr "??ltima actualizaci??n de"
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup_write_date
+msgid "Last Updated on"
+msgstr "??ltima actualizaci??n en"
+
+#. module: auto_backup
+#: selection:db.backup,method:0
+msgid "Local disk"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup_method
+msgid "Method"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup_name
+msgid "Name"
+msgstr "Nombre"
+
+#. module: auto_backup
+#: model:ir.model.fields,help:auto_backup.field_db_backup_sftp_private_key
+msgid ""
+"Path to the private key file. Only the Odoo user should have read "
+"permissions for that file."
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup_sftp_private_key
+msgid "Private key location"
+msgstr ""
+
+#. module: auto_backup
+#: selection:db.backup,method:0
+msgid "Remote SFTP server"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup_sftp_password
+msgid "SFTP Password"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup_sftp_port
+msgid "SFTP Port"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup_sftp_host
+msgid "SFTP Server"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+msgid "SFTP Settings"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_search
+msgid "Search options"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+msgid "Search the action named 'Backup scheduler'."
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+msgid ""
+"Set the scheduler to active and fill in how often you want backups "
+"generated."
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,help:auto_backup.field_db_backup_name
+msgid "Summary of this backup process"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+msgid "Test SFTP Connection"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,help:auto_backup.field_db_backup_sftp_host
+msgid ""
+"The host name or IP address from your remote server. For example 192.168.0.1"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,help:auto_backup.field_db_backup_sftp_password
+msgid ""
+"The password for the SFTP connection. If you specify a private key file, "
+"then this is the password to decrypt it."
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,help:auto_backup.field_db_backup_sftp_port
+msgid "The port on the FTP server that accepts SSH/SFTP calls."
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,help:auto_backup.field_db_backup_sftp_user
+msgid ""
+"The username where the SFTP connection should be made with. This is the user"
+" on the external server."
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+msgid ""
+"Use SFTP with caution! This writes files to external servers under the path "
+"you specify."
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup_sftp_user
+msgid "Username in the SFTP Server"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+msgid "Warning:"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model,name:auto_backup.model_db_backup
+msgid "db.backup"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+msgid "john"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+msgid "sftp.example.com"
+msgstr ""
diff --git a/auto_backup/i18n/es_EC.po b/auto_backup/i18n/es_EC.po
new file mode 100644
index 00000000000..9b258087a32
--- /dev/null
+++ b/auto_backup/i18n/es_EC.po
@@ -0,0 +1,317 @@
+# Translation of Odoo Server.
+# This file contains the translation of the following modules:
+# * auto_backup
+# 
+# Translators:
+# OCA Transbot <transbot@odoo-community.org>, 2016
+msgid ""
+msgstr ""
+"Project-Id-Version: Odoo Server 10.0\n"
+"Report-Msgid-Bugs-To: \n"
+"POT-Creation-Date: 2017-02-18 02:29+0000\n"
+"PO-Revision-Date: 2017-02-18 02:29+0000\n"
+"Last-Translator: OCA Transbot <transbot@odoo-community.org>, 2016\n"
+"Language-Team: Spanish (Ecuador) (https://www.transifex.com/oca/teams/23907/es_EC/)\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: \n"
+"Language: es_EC\n"
+"Plural-Forms: nplurals=2; plural=(n != 1);\n"
+
+#. module: auto_backup
+#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+msgid "/home/odoo/.ssh/id_rsa"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,help:auto_backup.field_db_backup_folder
+msgid "Absolute path for storing the backups"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.actions.act_window,name:auto_backup.action_backup_conf_form
+#: model:ir.ui.menu,name:auto_backup.backup_conf_menu
+msgid "Automated Backups"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+msgid "Automatic backups of the database can be scheduled as follows:"
+msgstr ""
+
+#. module: auto_backup
+#: model:mail.message.subtype,name:auto_backup.mail_message_subtype_failure
+msgid "Backup Failed"
+msgstr ""
+
+#. module: auto_backup
+#: model:mail.message.subtype,name:auto_backup.mail_message_subtype_success
+msgid "Backup Successful"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_tree
+msgid "Backups"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,help:auto_backup.field_db_backup_days_to_keep
+msgid ""
+"Backups older than this will be deleted automatically. Set 0 to disable "
+"autodeletion."
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+msgid "Basic backup configuration"
+msgstr ""
+
+#. module: auto_backup
+#: sql_constraint:db.backup:0
+msgid "Cannot duplicate a configuration."
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,help:auto_backup.field_db_backup_method
+msgid "Choose the storage method for this backup."
+msgstr ""
+
+#. module: auto_backup
+#: code:addons/auto_backup/models/db_backup.py:251
+#, python-format
+msgid "Cleanup of old database backups failed."
+msgstr ""
+
+#. module: auto_backup
+#: code:addons/auto_backup/models/db_backup.py:131
+#, python-format
+msgid "Connection Test Failed!"
+msgstr ""
+
+#. module: auto_backup
+#: code:addons/auto_backup/models/db_backup.py:128
+#, python-format
+msgid "Connection Test Succeeded!"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup_create_uid
+msgid "Created by"
+msgstr "Creado por"
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup_create_date
+msgid "Created on"
+msgstr "Creado en"
+
+#. module: auto_backup
+#: code:addons/auto_backup/models/db_backup.py:206
+#: model:mail.message.subtype,description:auto_backup.mail_message_subtype_failure
+#, python-format
+msgid "Database backup failed."
+msgstr ""
+
+#. module: auto_backup
+#: code:addons/auto_backup/models/db_backup.py:214
+#: model:mail.message.subtype,description:auto_backup.mail_message_subtype_success
+#, python-format
+msgid "Database backup succeeded."
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup_days_to_keep
+msgid "Days to keep"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup_display_name
+msgid "Display Name"
+msgstr "Nombre mostrado"
+
+#. module: auto_backup
+#: code:addons/auto_backup/models/db_backup.py:119
+#, python-format
+msgid ""
+"Do not save backups on your filestore, or you will backup your backups too!"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.actions.server,name:auto_backup.action_server_backup
+msgid "Execute backup(s)"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup_folder
+msgid "Folder"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+msgid "Go to Settings / Technical / Automation / Scheduled Actions."
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+msgid "Help"
+msgstr ""
+
+#. module: auto_backup
+#: sql_constraint:db.backup:0
+msgid "I cannot remove backups from the future. Ask Doc for that."
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup_id
+msgid "ID"
+msgstr "ID"
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup___last_update
+msgid "Last Modified on"
+msgstr "??ltima modificaci??n en"
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup_write_uid
+msgid "Last Updated by"
+msgstr "??ltima actualizaci??n de"
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup_write_date
+msgid "Last Updated on"
+msgstr "??ltima actualizaci??n en"
+
+#. module: auto_backup
+#: selection:db.backup,method:0
+msgid "Local disk"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup_method
+msgid "Method"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup_name
+msgid "Name"
+msgstr "Nombre"
+
+#. module: auto_backup
+#: model:ir.model.fields,help:auto_backup.field_db_backup_sftp_private_key
+msgid ""
+"Path to the private key file. Only the Odoo user should have read "
+"permissions for that file."
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup_sftp_private_key
+msgid "Private key location"
+msgstr ""
+
+#. module: auto_backup
+#: selection:db.backup,method:0
+msgid "Remote SFTP server"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup_sftp_password
+msgid "SFTP Password"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup_sftp_port
+msgid "SFTP Port"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup_sftp_host
+msgid "SFTP Server"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+msgid "SFTP Settings"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_search
+msgid "Search options"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+msgid "Search the action named 'Backup scheduler'."
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+msgid ""
+"Set the scheduler to active and fill in how often you want backups "
+"generated."
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,help:auto_backup.field_db_backup_name
+msgid "Summary of this backup process"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+msgid "Test SFTP Connection"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,help:auto_backup.field_db_backup_sftp_host
+msgid ""
+"The host name or IP address from your remote server. For example 192.168.0.1"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,help:auto_backup.field_db_backup_sftp_password
+msgid ""
+"The password for the SFTP connection. If you specify a private key file, "
+"then this is the password to decrypt it."
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,help:auto_backup.field_db_backup_sftp_port
+msgid "The port on the FTP server that accepts SSH/SFTP calls."
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,help:auto_backup.field_db_backup_sftp_user
+msgid ""
+"The username where the SFTP connection should be made with. This is the user"
+" on the external server."
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+msgid ""
+"Use SFTP with caution! This writes files to external servers under the path "
+"you specify."
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup_sftp_user
+msgid "Username in the SFTP Server"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+msgid "Warning:"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model,name:auto_backup.model_db_backup
+msgid "db.backup"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+msgid "john"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+msgid "sftp.example.com"
+msgstr ""
diff --git a/auto_backup/i18n/es_ES.po b/auto_backup/i18n/es_ES.po
new file mode 100644
index 00000000000..0a1b0444520
--- /dev/null
+++ b/auto_backup/i18n/es_ES.po
@@ -0,0 +1,317 @@
+# Translation of Odoo Server.
+# This file contains the translation of the following modules:
+# * auto_backup
+# 
+# Translators:
+# OCA Transbot <transbot@odoo-community.org>, 2016
+msgid ""
+msgstr ""
+"Project-Id-Version: Odoo Server 10.0\n"
+"Report-Msgid-Bugs-To: \n"
+"POT-Creation-Date: 2017-05-01 10:38+0000\n"
+"PO-Revision-Date: 2017-05-01 10:38+0000\n"
+"Last-Translator: OCA Transbot <transbot@odoo-community.org>, 2016\n"
+"Language-Team: Spanish (Spain) (https://www.transifex.com/oca/teams/23907/es_ES/)\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: \n"
+"Language: es_ES\n"
+"Plural-Forms: nplurals=2; plural=(n != 1);\n"
+
+#. module: auto_backup
+#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+msgid "/home/odoo/.ssh/id_rsa"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,help:auto_backup.field_db_backup_folder
+msgid "Absolute path for storing the backups"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.actions.act_window,name:auto_backup.action_backup_conf_form
+#: model:ir.ui.menu,name:auto_backup.backup_conf_menu
+msgid "Automated Backups"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+msgid "Automatic backups of the database can be scheduled as follows:"
+msgstr ""
+
+#. module: auto_backup
+#: model:mail.message.subtype,name:auto_backup.mail_message_subtype_failure
+msgid "Backup Failed"
+msgstr ""
+
+#. module: auto_backup
+#: model:mail.message.subtype,name:auto_backup.mail_message_subtype_success
+msgid "Backup Successful"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_tree
+msgid "Backups"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,help:auto_backup.field_db_backup_days_to_keep
+msgid ""
+"Backups older than this will be deleted automatically. Set 0 to disable "
+"autodeletion."
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+msgid "Basic backup configuration"
+msgstr ""
+
+#. module: auto_backup
+#: sql_constraint:db.backup:0
+msgid "Cannot duplicate a configuration."
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,help:auto_backup.field_db_backup_method
+msgid "Choose the storage method for this backup."
+msgstr ""
+
+#. module: auto_backup
+#: code:addons/auto_backup/models/db_backup.py:251
+#, python-format
+msgid "Cleanup of old database backups failed."
+msgstr ""
+
+#. module: auto_backup
+#: code:addons/auto_backup/models/db_backup.py:131
+#, python-format
+msgid "Connection Test Failed!"
+msgstr ""
+
+#. module: auto_backup
+#: code:addons/auto_backup/models/db_backup.py:128
+#, python-format
+msgid "Connection Test Succeeded!"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup_create_uid
+msgid "Created by"
+msgstr "Creado por"
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup_create_date
+msgid "Created on"
+msgstr "Creado en"
+
+#. module: auto_backup
+#: code:addons/auto_backup/models/db_backup.py:206
+#: model:mail.message.subtype,description:auto_backup.mail_message_subtype_failure
+#, python-format
+msgid "Database backup failed."
+msgstr ""
+
+#. module: auto_backup
+#: code:addons/auto_backup/models/db_backup.py:214
+#: model:mail.message.subtype,description:auto_backup.mail_message_subtype_success
+#, python-format
+msgid "Database backup succeeded."
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup_days_to_keep
+msgid "Days to keep"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup_display_name
+msgid "Display Name"
+msgstr "Nombre para mostrar"
+
+#. module: auto_backup
+#: code:addons/auto_backup/models/db_backup.py:119
+#, python-format
+msgid ""
+"Do not save backups on your filestore, or you will backup your backups too!"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.actions.server,name:auto_backup.action_server_backup
+msgid "Execute backup(s)"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup_folder
+msgid "Folder"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+msgid "Go to Settings / Technical / Automation / Scheduled Actions."
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+msgid "Help"
+msgstr ""
+
+#. module: auto_backup
+#: sql_constraint:db.backup:0
+msgid "I cannot remove backups from the future. Ask Doc for that."
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup_id
+msgid "ID"
+msgstr "ID"
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup___last_update
+msgid "Last Modified on"
+msgstr "??ltima modificaci??n en"
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup_write_uid
+msgid "Last Updated by"
+msgstr "??ltima actualizaci??n por"
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup_write_date
+msgid "Last Updated on"
+msgstr "??ltima actualizaci??n en"
+
+#. module: auto_backup
+#: selection:db.backup,method:0
+msgid "Local disk"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup_method
+msgid "Method"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup_name
+msgid "Name"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,help:auto_backup.field_db_backup_sftp_private_key
+msgid ""
+"Path to the private key file. Only the Odoo user should have read "
+"permissions for that file."
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup_sftp_private_key
+msgid "Private key location"
+msgstr ""
+
+#. module: auto_backup
+#: selection:db.backup,method:0
+msgid "Remote SFTP server"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup_sftp_password
+msgid "SFTP Password"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup_sftp_port
+msgid "SFTP Port"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup_sftp_host
+msgid "SFTP Server"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+msgid "SFTP Settings"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_search
+msgid "Search options"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+msgid "Search the action named 'Backup scheduler'."
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+msgid ""
+"Set the scheduler to active and fill in how often you want backups "
+"generated."
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,help:auto_backup.field_db_backup_name
+msgid "Summary of this backup process"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+msgid "Test SFTP Connection"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,help:auto_backup.field_db_backup_sftp_host
+msgid ""
+"The host name or IP address from your remote server. For example 192.168.0.1"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,help:auto_backup.field_db_backup_sftp_password
+msgid ""
+"The password for the SFTP connection. If you specify a private key file, "
+"then this is the password to decrypt it."
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,help:auto_backup.field_db_backup_sftp_port
+msgid "The port on the FTP server that accepts SSH/SFTP calls."
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,help:auto_backup.field_db_backup_sftp_user
+msgid ""
+"The username where the SFTP connection should be made with. This is the user"
+" on the external server."
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+msgid ""
+"Use SFTP with caution! This writes files to external servers under the path "
+"you specify."
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup_sftp_user
+msgid "Username in the SFTP Server"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+msgid "Warning:"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model,name:auto_backup.model_db_backup
+msgid "db.backup"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+msgid "john"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+msgid "sftp.example.com"
+msgstr ""
diff --git a/auto_backup/i18n/es_MX.po b/auto_backup/i18n/es_MX.po
new file mode 100644
index 00000000000..cd6ea8582e7
--- /dev/null
+++ b/auto_backup/i18n/es_MX.po
@@ -0,0 +1,317 @@
+# Translation of Odoo Server.
+# This file contains the translation of the following modules:
+# * auto_backup
+# 
+# Translators:
+# OCA Transbot <transbot@odoo-community.org>, 2016
+msgid ""
+msgstr ""
+"Project-Id-Version: Odoo Server 10.0\n"
+"Report-Msgid-Bugs-To: \n"
+"POT-Creation-Date: 2017-02-18 02:29+0000\n"
+"PO-Revision-Date: 2017-02-18 02:29+0000\n"
+"Last-Translator: OCA Transbot <transbot@odoo-community.org>, 2016\n"
+"Language-Team: Spanish (Mexico) (https://www.transifex.com/oca/teams/23907/es_MX/)\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: \n"
+"Language: es_MX\n"
+"Plural-Forms: nplurals=2; plural=(n != 1);\n"
+
+#. module: auto_backup
+#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+msgid "/home/odoo/.ssh/id_rsa"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,help:auto_backup.field_db_backup_folder
+msgid "Absolute path for storing the backups"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.actions.act_window,name:auto_backup.action_backup_conf_form
+#: model:ir.ui.menu,name:auto_backup.backup_conf_menu
+msgid "Automated Backups"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+msgid "Automatic backups of the database can be scheduled as follows:"
+msgstr ""
+
+#. module: auto_backup
+#: model:mail.message.subtype,name:auto_backup.mail_message_subtype_failure
+msgid "Backup Failed"
+msgstr ""
+
+#. module: auto_backup
+#: model:mail.message.subtype,name:auto_backup.mail_message_subtype_success
+msgid "Backup Successful"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_tree
+msgid "Backups"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,help:auto_backup.field_db_backup_days_to_keep
+msgid ""
+"Backups older than this will be deleted automatically. Set 0 to disable "
+"autodeletion."
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+msgid "Basic backup configuration"
+msgstr ""
+
+#. module: auto_backup
+#: sql_constraint:db.backup:0
+msgid "Cannot duplicate a configuration."
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,help:auto_backup.field_db_backup_method
+msgid "Choose the storage method for this backup."
+msgstr ""
+
+#. module: auto_backup
+#: code:addons/auto_backup/models/db_backup.py:251
+#, python-format
+msgid "Cleanup of old database backups failed."
+msgstr ""
+
+#. module: auto_backup
+#: code:addons/auto_backup/models/db_backup.py:131
+#, python-format
+msgid "Connection Test Failed!"
+msgstr ""
+
+#. module: auto_backup
+#: code:addons/auto_backup/models/db_backup.py:128
+#, python-format
+msgid "Connection Test Succeeded!"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup_create_uid
+msgid "Created by"
+msgstr "Creado por"
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup_create_date
+msgid "Created on"
+msgstr "Creado en"
+
+#. module: auto_backup
+#: code:addons/auto_backup/models/db_backup.py:206
+#: model:mail.message.subtype,description:auto_backup.mail_message_subtype_failure
+#, python-format
+msgid "Database backup failed."
+msgstr ""
+
+#. module: auto_backup
+#: code:addons/auto_backup/models/db_backup.py:214
+#: model:mail.message.subtype,description:auto_backup.mail_message_subtype_success
+#, python-format
+msgid "Database backup succeeded."
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup_days_to_keep
+msgid "Days to keep"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup_display_name
+msgid "Display Name"
+msgstr "Nombre desplegado"
+
+#. module: auto_backup
+#: code:addons/auto_backup/models/db_backup.py:119
+#, python-format
+msgid ""
+"Do not save backups on your filestore, or you will backup your backups too!"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.actions.server,name:auto_backup.action_server_backup
+msgid "Execute backup(s)"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup_folder
+msgid "Folder"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+msgid "Go to Settings / Technical / Automation / Scheduled Actions."
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+msgid "Help"
+msgstr ""
+
+#. module: auto_backup
+#: sql_constraint:db.backup:0
+msgid "I cannot remove backups from the future. Ask Doc for that."
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup_id
+msgid "ID"
+msgstr "ID"
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup___last_update
+msgid "Last Modified on"
+msgstr "Ultima modificacion realizada"
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup_write_uid
+msgid "Last Updated by"
+msgstr "Ultima actualizaci??n por"
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup_write_date
+msgid "Last Updated on"
+msgstr "Ultima actualizaci??n en"
+
+#. module: auto_backup
+#: selection:db.backup,method:0
+msgid "Local disk"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup_method
+msgid "Method"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup_name
+msgid "Name"
+msgstr "Nombre"
+
+#. module: auto_backup
+#: model:ir.model.fields,help:auto_backup.field_db_backup_sftp_private_key
+msgid ""
+"Path to the private key file. Only the Odoo user should have read "
+"permissions for that file."
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup_sftp_private_key
+msgid "Private key location"
+msgstr ""
+
+#. module: auto_backup
+#: selection:db.backup,method:0
+msgid "Remote SFTP server"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup_sftp_password
+msgid "SFTP Password"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup_sftp_port
+msgid "SFTP Port"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup_sftp_host
+msgid "SFTP Server"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+msgid "SFTP Settings"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_search
+msgid "Search options"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+msgid "Search the action named 'Backup scheduler'."
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+msgid ""
+"Set the scheduler to active and fill in how often you want backups "
+"generated."
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,help:auto_backup.field_db_backup_name
+msgid "Summary of this backup process"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+msgid "Test SFTP Connection"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,help:auto_backup.field_db_backup_sftp_host
+msgid ""
+"The host name or IP address from your remote server. For example 192.168.0.1"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,help:auto_backup.field_db_backup_sftp_password
+msgid ""
+"The password for the SFTP connection. If you specify a private key file, "
+"then this is the password to decrypt it."
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,help:auto_backup.field_db_backup_sftp_port
+msgid "The port on the FTP server that accepts SSH/SFTP calls."
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,help:auto_backup.field_db_backup_sftp_user
+msgid ""
+"The username where the SFTP connection should be made with. This is the user"
+" on the external server."
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+msgid ""
+"Use SFTP with caution! This writes files to external servers under the path "
+"you specify."
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup_sftp_user
+msgid "Username in the SFTP Server"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+msgid "Warning:"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model,name:auto_backup.model_db_backup
+msgid "db.backup"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+msgid "john"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+msgid "sftp.example.com"
+msgstr ""
diff --git a/auto_backup/i18n/es_PE.po b/auto_backup/i18n/es_PE.po
new file mode 100644
index 00000000000..72662000328
--- /dev/null
+++ b/auto_backup/i18n/es_PE.po
@@ -0,0 +1,317 @@
+# Translation of Odoo Server.
+# This file contains the translation of the following modules:
+# * auto_backup
+# 
+# Translators:
+# OCA Transbot <transbot@odoo-community.org>, 2017
+msgid ""
+msgstr ""
+"Project-Id-Version: Odoo Server 10.0\n"
+"Report-Msgid-Bugs-To: \n"
+"POT-Creation-Date: 2017-02-18 02:29+0000\n"
+"PO-Revision-Date: 2017-02-18 02:29+0000\n"
+"Last-Translator: OCA Transbot <transbot@odoo-community.org>, 2017\n"
+"Language-Team: Spanish (Peru) (https://www.transifex.com/oca/teams/23907/es_PE/)\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: \n"
+"Language: es_PE\n"
+"Plural-Forms: nplurals=2; plural=(n != 1);\n"
+
+#. module: auto_backup
+#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+msgid "/home/odoo/.ssh/id_rsa"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,help:auto_backup.field_db_backup_folder
+msgid "Absolute path for storing the backups"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.actions.act_window,name:auto_backup.action_backup_conf_form
+#: model:ir.ui.menu,name:auto_backup.backup_conf_menu
+msgid "Automated Backups"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+msgid "Automatic backups of the database can be scheduled as follows:"
+msgstr ""
+
+#. module: auto_backup
+#: model:mail.message.subtype,name:auto_backup.mail_message_subtype_failure
+msgid "Backup Failed"
+msgstr ""
+
+#. module: auto_backup
+#: model:mail.message.subtype,name:auto_backup.mail_message_subtype_success
+msgid "Backup Successful"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_tree
+msgid "Backups"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,help:auto_backup.field_db_backup_days_to_keep
+msgid ""
+"Backups older than this will be deleted automatically. Set 0 to disable "
+"autodeletion."
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+msgid "Basic backup configuration"
+msgstr ""
+
+#. module: auto_backup
+#: sql_constraint:db.backup:0
+msgid "Cannot duplicate a configuration."
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,help:auto_backup.field_db_backup_method
+msgid "Choose the storage method for this backup."
+msgstr ""
+
+#. module: auto_backup
+#: code:addons/auto_backup/models/db_backup.py:251
+#, python-format
+msgid "Cleanup of old database backups failed."
+msgstr ""
+
+#. module: auto_backup
+#: code:addons/auto_backup/models/db_backup.py:131
+#, python-format
+msgid "Connection Test Failed!"
+msgstr ""
+
+#. module: auto_backup
+#: code:addons/auto_backup/models/db_backup.py:128
+#, python-format
+msgid "Connection Test Succeeded!"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup_create_uid
+msgid "Created by"
+msgstr "Creado por"
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup_create_date
+msgid "Created on"
+msgstr "Creado en"
+
+#. module: auto_backup
+#: code:addons/auto_backup/models/db_backup.py:206
+#: model:mail.message.subtype,description:auto_backup.mail_message_subtype_failure
+#, python-format
+msgid "Database backup failed."
+msgstr ""
+
+#. module: auto_backup
+#: code:addons/auto_backup/models/db_backup.py:214
+#: model:mail.message.subtype,description:auto_backup.mail_message_subtype_success
+#, python-format
+msgid "Database backup succeeded."
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup_days_to_keep
+msgid "Days to keep"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup_display_name
+msgid "Display Name"
+msgstr "Nombre a Mostrar"
+
+#. module: auto_backup
+#: code:addons/auto_backup/models/db_backup.py:119
+#, python-format
+msgid ""
+"Do not save backups on your filestore, or you will backup your backups too!"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.actions.server,name:auto_backup.action_server_backup
+msgid "Execute backup(s)"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup_folder
+msgid "Folder"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+msgid "Go to Settings / Technical / Automation / Scheduled Actions."
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+msgid "Help"
+msgstr ""
+
+#. module: auto_backup
+#: sql_constraint:db.backup:0
+msgid "I cannot remove backups from the future. Ask Doc for that."
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup_id
+msgid "ID"
+msgstr "ID"
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup___last_update
+msgid "Last Modified on"
+msgstr "Ultima Modificaci??n en"
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup_write_uid
+msgid "Last Updated by"
+msgstr "Actualizado ??ltima vez por"
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup_write_date
+msgid "Last Updated on"
+msgstr "Ultima Actualizaci??n"
+
+#. module: auto_backup
+#: selection:db.backup,method:0
+msgid "Local disk"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup_method
+msgid "Method"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup_name
+msgid "Name"
+msgstr "Nombre"
+
+#. module: auto_backup
+#: model:ir.model.fields,help:auto_backup.field_db_backup_sftp_private_key
+msgid ""
+"Path to the private key file. Only the Odoo user should have read "
+"permissions for that file."
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup_sftp_private_key
+msgid "Private key location"
+msgstr ""
+
+#. module: auto_backup
+#: selection:db.backup,method:0
+msgid "Remote SFTP server"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup_sftp_password
+msgid "SFTP Password"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup_sftp_port
+msgid "SFTP Port"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup_sftp_host
+msgid "SFTP Server"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+msgid "SFTP Settings"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_search
+msgid "Search options"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+msgid "Search the action named 'Backup scheduler'."
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+msgid ""
+"Set the scheduler to active and fill in how often you want backups "
+"generated."
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,help:auto_backup.field_db_backup_name
+msgid "Summary of this backup process"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+msgid "Test SFTP Connection"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,help:auto_backup.field_db_backup_sftp_host
+msgid ""
+"The host name or IP address from your remote server. For example 192.168.0.1"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,help:auto_backup.field_db_backup_sftp_password
+msgid ""
+"The password for the SFTP connection. If you specify a private key file, "
+"then this is the password to decrypt it."
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,help:auto_backup.field_db_backup_sftp_port
+msgid "The port on the FTP server that accepts SSH/SFTP calls."
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,help:auto_backup.field_db_backup_sftp_user
+msgid ""
+"The username where the SFTP connection should be made with. This is the user"
+" on the external server."
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+msgid ""
+"Use SFTP with caution! This writes files to external servers under the path "
+"you specify."
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup_sftp_user
+msgid "Username in the SFTP Server"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+msgid "Warning:"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model,name:auto_backup.model_db_backup
+msgid "db.backup"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+msgid "john"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+msgid "sftp.example.com"
+msgstr ""
diff --git a/auto_backup/i18n/es_PY.po b/auto_backup/i18n/es_PY.po
new file mode 100644
index 00000000000..cf31df0a6f1
--- /dev/null
+++ b/auto_backup/i18n/es_PY.po
@@ -0,0 +1,317 @@
+# Translation of Odoo Server.
+# This file contains the translation of the following modules:
+# * auto_backup
+# 
+# Translators:
+# OCA Transbot <transbot@odoo-community.org>, 2016
+msgid ""
+msgstr ""
+"Project-Id-Version: Odoo Server 10.0\n"
+"Report-Msgid-Bugs-To: \n"
+"POT-Creation-Date: 2017-02-18 02:29+0000\n"
+"PO-Revision-Date: 2017-02-18 02:29+0000\n"
+"Last-Translator: OCA Transbot <transbot@odoo-community.org>, 2016\n"
+"Language-Team: Spanish (Paraguay) (https://www.transifex.com/oca/teams/23907/es_PY/)\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: \n"
+"Language: es_PY\n"
+"Plural-Forms: nplurals=2; plural=(n != 1);\n"
+
+#. module: auto_backup
+#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+msgid "/home/odoo/.ssh/id_rsa"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,help:auto_backup.field_db_backup_folder
+msgid "Absolute path for storing the backups"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.actions.act_window,name:auto_backup.action_backup_conf_form
+#: model:ir.ui.menu,name:auto_backup.backup_conf_menu
+msgid "Automated Backups"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+msgid "Automatic backups of the database can be scheduled as follows:"
+msgstr ""
+
+#. module: auto_backup
+#: model:mail.message.subtype,name:auto_backup.mail_message_subtype_failure
+msgid "Backup Failed"
+msgstr ""
+
+#. module: auto_backup
+#: model:mail.message.subtype,name:auto_backup.mail_message_subtype_success
+msgid "Backup Successful"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_tree
+msgid "Backups"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,help:auto_backup.field_db_backup_days_to_keep
+msgid ""
+"Backups older than this will be deleted automatically. Set 0 to disable "
+"autodeletion."
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+msgid "Basic backup configuration"
+msgstr ""
+
+#. module: auto_backup
+#: sql_constraint:db.backup:0
+msgid "Cannot duplicate a configuration."
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,help:auto_backup.field_db_backup_method
+msgid "Choose the storage method for this backup."
+msgstr ""
+
+#. module: auto_backup
+#: code:addons/auto_backup/models/db_backup.py:251
+#, python-format
+msgid "Cleanup of old database backups failed."
+msgstr ""
+
+#. module: auto_backup
+#: code:addons/auto_backup/models/db_backup.py:131
+#, python-format
+msgid "Connection Test Failed!"
+msgstr ""
+
+#. module: auto_backup
+#: code:addons/auto_backup/models/db_backup.py:128
+#, python-format
+msgid "Connection Test Succeeded!"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup_create_uid
+msgid "Created by"
+msgstr "Creado por"
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup_create_date
+msgid "Created on"
+msgstr "Creado en"
+
+#. module: auto_backup
+#: code:addons/auto_backup/models/db_backup.py:206
+#: model:mail.message.subtype,description:auto_backup.mail_message_subtype_failure
+#, python-format
+msgid "Database backup failed."
+msgstr ""
+
+#. module: auto_backup
+#: code:addons/auto_backup/models/db_backup.py:214
+#: model:mail.message.subtype,description:auto_backup.mail_message_subtype_success
+#, python-format
+msgid "Database backup succeeded."
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup_days_to_keep
+msgid "Days to keep"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup_display_name
+msgid "Display Name"
+msgstr ""
+
+#. module: auto_backup
+#: code:addons/auto_backup/models/db_backup.py:119
+#, python-format
+msgid ""
+"Do not save backups on your filestore, or you will backup your backups too!"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.actions.server,name:auto_backup.action_server_backup
+msgid "Execute backup(s)"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup_folder
+msgid "Folder"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+msgid "Go to Settings / Technical / Automation / Scheduled Actions."
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+msgid "Help"
+msgstr ""
+
+#. module: auto_backup
+#: sql_constraint:db.backup:0
+msgid "I cannot remove backups from the future. Ask Doc for that."
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup_id
+msgid "ID"
+msgstr "ID"
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup___last_update
+msgid "Last Modified on"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup_write_uid
+msgid "Last Updated by"
+msgstr "Ultima actualizaci??n por"
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup_write_date
+msgid "Last Updated on"
+msgstr "Ultima actualizaci??n en"
+
+#. module: auto_backup
+#: selection:db.backup,method:0
+msgid "Local disk"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup_method
+msgid "Method"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup_name
+msgid "Name"
+msgstr "Nombre"
+
+#. module: auto_backup
+#: model:ir.model.fields,help:auto_backup.field_db_backup_sftp_private_key
+msgid ""
+"Path to the private key file. Only the Odoo user should have read "
+"permissions for that file."
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup_sftp_private_key
+msgid "Private key location"
+msgstr ""
+
+#. module: auto_backup
+#: selection:db.backup,method:0
+msgid "Remote SFTP server"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup_sftp_password
+msgid "SFTP Password"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup_sftp_port
+msgid "SFTP Port"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup_sftp_host
+msgid "SFTP Server"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+msgid "SFTP Settings"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_search
+msgid "Search options"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+msgid "Search the action named 'Backup scheduler'."
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+msgid ""
+"Set the scheduler to active and fill in how often you want backups "
+"generated."
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,help:auto_backup.field_db_backup_name
+msgid "Summary of this backup process"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+msgid "Test SFTP Connection"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,help:auto_backup.field_db_backup_sftp_host
+msgid ""
+"The host name or IP address from your remote server. For example 192.168.0.1"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,help:auto_backup.field_db_backup_sftp_password
+msgid ""
+"The password for the SFTP connection. If you specify a private key file, "
+"then this is the password to decrypt it."
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,help:auto_backup.field_db_backup_sftp_port
+msgid "The port on the FTP server that accepts SSH/SFTP calls."
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,help:auto_backup.field_db_backup_sftp_user
+msgid ""
+"The username where the SFTP connection should be made with. This is the user"
+" on the external server."
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+msgid ""
+"Use SFTP with caution! This writes files to external servers under the path "
+"you specify."
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup_sftp_user
+msgid "Username in the SFTP Server"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+msgid "Warning:"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model,name:auto_backup.model_db_backup
+msgid "db.backup"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+msgid "john"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+msgid "sftp.example.com"
+msgstr ""
diff --git a/auto_backup/i18n/es_VE.po b/auto_backup/i18n/es_VE.po
new file mode 100644
index 00000000000..965095f473f
--- /dev/null
+++ b/auto_backup/i18n/es_VE.po
@@ -0,0 +1,317 @@
+# Translation of Odoo Server.
+# This file contains the translation of the following modules:
+# * auto_backup
+# 
+# Translators:
+# OCA Transbot <transbot@odoo-community.org>, 2016
+msgid ""
+msgstr ""
+"Project-Id-Version: Odoo Server 10.0\n"
+"Report-Msgid-Bugs-To: \n"
+"POT-Creation-Date: 2017-02-18 02:29+0000\n"
+"PO-Revision-Date: 2017-02-18 02:29+0000\n"
+"Last-Translator: OCA Transbot <transbot@odoo-community.org>, 2016\n"
+"Language-Team: Spanish (Venezuela) (https://www.transifex.com/oca/teams/23907/es_VE/)\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: \n"
+"Language: es_VE\n"
+"Plural-Forms: nplurals=2; plural=(n != 1);\n"
+
+#. module: auto_backup
+#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+msgid "/home/odoo/.ssh/id_rsa"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,help:auto_backup.field_db_backup_folder
+msgid "Absolute path for storing the backups"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.actions.act_window,name:auto_backup.action_backup_conf_form
+#: model:ir.ui.menu,name:auto_backup.backup_conf_menu
+msgid "Automated Backups"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+msgid "Automatic backups of the database can be scheduled as follows:"
+msgstr ""
+
+#. module: auto_backup
+#: model:mail.message.subtype,name:auto_backup.mail_message_subtype_failure
+msgid "Backup Failed"
+msgstr ""
+
+#. module: auto_backup
+#: model:mail.message.subtype,name:auto_backup.mail_message_subtype_success
+msgid "Backup Successful"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_tree
+msgid "Backups"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,help:auto_backup.field_db_backup_days_to_keep
+msgid ""
+"Backups older than this will be deleted automatically. Set 0 to disable "
+"autodeletion."
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+msgid "Basic backup configuration"
+msgstr ""
+
+#. module: auto_backup
+#: sql_constraint:db.backup:0
+msgid "Cannot duplicate a configuration."
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,help:auto_backup.field_db_backup_method
+msgid "Choose the storage method for this backup."
+msgstr ""
+
+#. module: auto_backup
+#: code:addons/auto_backup/models/db_backup.py:251
+#, python-format
+msgid "Cleanup of old database backups failed."
+msgstr ""
+
+#. module: auto_backup
+#: code:addons/auto_backup/models/db_backup.py:131
+#, python-format
+msgid "Connection Test Failed!"
+msgstr ""
+
+#. module: auto_backup
+#: code:addons/auto_backup/models/db_backup.py:128
+#, python-format
+msgid "Connection Test Succeeded!"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup_create_uid
+msgid "Created by"
+msgstr "Creado por"
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup_create_date
+msgid "Created on"
+msgstr "Creado en"
+
+#. module: auto_backup
+#: code:addons/auto_backup/models/db_backup.py:206
+#: model:mail.message.subtype,description:auto_backup.mail_message_subtype_failure
+#, python-format
+msgid "Database backup failed."
+msgstr ""
+
+#. module: auto_backup
+#: code:addons/auto_backup/models/db_backup.py:214
+#: model:mail.message.subtype,description:auto_backup.mail_message_subtype_success
+#, python-format
+msgid "Database backup succeeded."
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup_days_to_keep
+msgid "Days to keep"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup_display_name
+msgid "Display Name"
+msgstr "Mostrar nombre"
+
+#. module: auto_backup
+#: code:addons/auto_backup/models/db_backup.py:119
+#, python-format
+msgid ""
+"Do not save backups on your filestore, or you will backup your backups too!"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.actions.server,name:auto_backup.action_server_backup
+msgid "Execute backup(s)"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup_folder
+msgid "Folder"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+msgid "Go to Settings / Technical / Automation / Scheduled Actions."
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+msgid "Help"
+msgstr ""
+
+#. module: auto_backup
+#: sql_constraint:db.backup:0
+msgid "I cannot remove backups from the future. Ask Doc for that."
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup_id
+msgid "ID"
+msgstr "ID"
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup___last_update
+msgid "Last Modified on"
+msgstr "Modificada por ??ltima vez"
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup_write_uid
+msgid "Last Updated by"
+msgstr "Ultima actualizaci??n por"
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup_write_date
+msgid "Last Updated on"
+msgstr "Ultima actualizaci??n en"
+
+#. module: auto_backup
+#: selection:db.backup,method:0
+msgid "Local disk"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup_method
+msgid "Method"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup_name
+msgid "Name"
+msgstr "Nombre"
+
+#. module: auto_backup
+#: model:ir.model.fields,help:auto_backup.field_db_backup_sftp_private_key
+msgid ""
+"Path to the private key file. Only the Odoo user should have read "
+"permissions for that file."
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup_sftp_private_key
+msgid "Private key location"
+msgstr ""
+
+#. module: auto_backup
+#: selection:db.backup,method:0
+msgid "Remote SFTP server"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup_sftp_password
+msgid "SFTP Password"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup_sftp_port
+msgid "SFTP Port"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup_sftp_host
+msgid "SFTP Server"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+msgid "SFTP Settings"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_search
+msgid "Search options"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+msgid "Search the action named 'Backup scheduler'."
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+msgid ""
+"Set the scheduler to active and fill in how often you want backups "
+"generated."
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,help:auto_backup.field_db_backup_name
+msgid "Summary of this backup process"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+msgid "Test SFTP Connection"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,help:auto_backup.field_db_backup_sftp_host
+msgid ""
+"The host name or IP address from your remote server. For example 192.168.0.1"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,help:auto_backup.field_db_backup_sftp_password
+msgid ""
+"The password for the SFTP connection. If you specify a private key file, "
+"then this is the password to decrypt it."
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,help:auto_backup.field_db_backup_sftp_port
+msgid "The port on the FTP server that accepts SSH/SFTP calls."
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,help:auto_backup.field_db_backup_sftp_user
+msgid ""
+"The username where the SFTP connection should be made with. This is the user"
+" on the external server."
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+msgid ""
+"Use SFTP with caution! This writes files to external servers under the path "
+"you specify."
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup_sftp_user
+msgid "Username in the SFTP Server"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+msgid "Warning:"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model,name:auto_backup.model_db_backup
+msgid "db.backup"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+msgid "john"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+msgid "sftp.example.com"
+msgstr ""
diff --git a/auto_backup/i18n/et.po b/auto_backup/i18n/et.po
new file mode 100644
index 00000000000..96b4dc5ba4e
--- /dev/null
+++ b/auto_backup/i18n/et.po
@@ -0,0 +1,317 @@
+# Translation of Odoo Server.
+# This file contains the translation of the following modules:
+# * auto_backup
+# 
+# Translators:
+# OCA Transbot <transbot@odoo-community.org>, 2016
+msgid ""
+msgstr ""
+"Project-Id-Version: Odoo Server 10.0\n"
+"Report-Msgid-Bugs-To: \n"
+"POT-Creation-Date: 2017-02-18 02:29+0000\n"
+"PO-Revision-Date: 2017-02-18 02:29+0000\n"
+"Last-Translator: OCA Transbot <transbot@odoo-community.org>, 2016\n"
+"Language-Team: Estonian (https://www.transifex.com/oca/teams/23907/et/)\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: \n"
+"Language: et\n"
+"Plural-Forms: nplurals=2; plural=(n != 1);\n"
+
+#. module: auto_backup
+#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+msgid "/home/odoo/.ssh/id_rsa"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,help:auto_backup.field_db_backup_folder
+msgid "Absolute path for storing the backups"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.actions.act_window,name:auto_backup.action_backup_conf_form
+#: model:ir.ui.menu,name:auto_backup.backup_conf_menu
+msgid "Automated Backups"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+msgid "Automatic backups of the database can be scheduled as follows:"
+msgstr ""
+
+#. module: auto_backup
+#: model:mail.message.subtype,name:auto_backup.mail_message_subtype_failure
+msgid "Backup Failed"
+msgstr ""
+
+#. module: auto_backup
+#: model:mail.message.subtype,name:auto_backup.mail_message_subtype_success
+msgid "Backup Successful"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_tree
+msgid "Backups"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,help:auto_backup.field_db_backup_days_to_keep
+msgid ""
+"Backups older than this will be deleted automatically. Set 0 to disable "
+"autodeletion."
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+msgid "Basic backup configuration"
+msgstr ""
+
+#. module: auto_backup
+#: sql_constraint:db.backup:0
+msgid "Cannot duplicate a configuration."
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,help:auto_backup.field_db_backup_method
+msgid "Choose the storage method for this backup."
+msgstr ""
+
+#. module: auto_backup
+#: code:addons/auto_backup/models/db_backup.py:251
+#, python-format
+msgid "Cleanup of old database backups failed."
+msgstr ""
+
+#. module: auto_backup
+#: code:addons/auto_backup/models/db_backup.py:131
+#, python-format
+msgid "Connection Test Failed!"
+msgstr ""
+
+#. module: auto_backup
+#: code:addons/auto_backup/models/db_backup.py:128
+#, python-format
+msgid "Connection Test Succeeded!"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup_create_uid
+msgid "Created by"
+msgstr "Loonud"
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup_create_date
+msgid "Created on"
+msgstr "Loodud"
+
+#. module: auto_backup
+#: code:addons/auto_backup/models/db_backup.py:206
+#: model:mail.message.subtype,description:auto_backup.mail_message_subtype_failure
+#, python-format
+msgid "Database backup failed."
+msgstr ""
+
+#. module: auto_backup
+#: code:addons/auto_backup/models/db_backup.py:214
+#: model:mail.message.subtype,description:auto_backup.mail_message_subtype_success
+#, python-format
+msgid "Database backup succeeded."
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup_days_to_keep
+msgid "Days to keep"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup_display_name
+msgid "Display Name"
+msgstr "N??idatav nimi"
+
+#. module: auto_backup
+#: code:addons/auto_backup/models/db_backup.py:119
+#, python-format
+msgid ""
+"Do not save backups on your filestore, or you will backup your backups too!"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.actions.server,name:auto_backup.action_server_backup
+msgid "Execute backup(s)"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup_folder
+msgid "Folder"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+msgid "Go to Settings / Technical / Automation / Scheduled Actions."
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+msgid "Help"
+msgstr ""
+
+#. module: auto_backup
+#: sql_constraint:db.backup:0
+msgid "I cannot remove backups from the future. Ask Doc for that."
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup_id
+msgid "ID"
+msgstr "ID"
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup___last_update
+msgid "Last Modified on"
+msgstr "Viimati muudetud"
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup_write_uid
+msgid "Last Updated by"
+msgstr "Viimati uuendatud"
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup_write_date
+msgid "Last Updated on"
+msgstr "Viimati uuendatud"
+
+#. module: auto_backup
+#: selection:db.backup,method:0
+msgid "Local disk"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup_method
+msgid "Method"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup_name
+msgid "Name"
+msgstr "Nimi"
+
+#. module: auto_backup
+#: model:ir.model.fields,help:auto_backup.field_db_backup_sftp_private_key
+msgid ""
+"Path to the private key file. Only the Odoo user should have read "
+"permissions for that file."
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup_sftp_private_key
+msgid "Private key location"
+msgstr ""
+
+#. module: auto_backup
+#: selection:db.backup,method:0
+msgid "Remote SFTP server"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup_sftp_password
+msgid "SFTP Password"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup_sftp_port
+msgid "SFTP Port"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup_sftp_host
+msgid "SFTP Server"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+msgid "SFTP Settings"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_search
+msgid "Search options"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+msgid "Search the action named 'Backup scheduler'."
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+msgid ""
+"Set the scheduler to active and fill in how often you want backups "
+"generated."
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,help:auto_backup.field_db_backup_name
+msgid "Summary of this backup process"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+msgid "Test SFTP Connection"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,help:auto_backup.field_db_backup_sftp_host
+msgid ""
+"The host name or IP address from your remote server. For example 192.168.0.1"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,help:auto_backup.field_db_backup_sftp_password
+msgid ""
+"The password for the SFTP connection. If you specify a private key file, "
+"then this is the password to decrypt it."
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,help:auto_backup.field_db_backup_sftp_port
+msgid "The port on the FTP server that accepts SSH/SFTP calls."
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,help:auto_backup.field_db_backup_sftp_user
+msgid ""
+"The username where the SFTP connection should be made with. This is the user"
+" on the external server."
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+msgid ""
+"Use SFTP with caution! This writes files to external servers under the path "
+"you specify."
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup_sftp_user
+msgid "Username in the SFTP Server"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+msgid "Warning:"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model,name:auto_backup.model_db_backup
+msgid "db.backup"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+msgid "john"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+msgid "sftp.example.com"
+msgstr ""
diff --git a/auto_backup/i18n/eu.po b/auto_backup/i18n/eu.po
new file mode 100644
index 00000000000..6141d9e0bc3
--- /dev/null
+++ b/auto_backup/i18n/eu.po
@@ -0,0 +1,317 @@
+# Translation of Odoo Server.
+# This file contains the translation of the following modules:
+# * auto_backup
+# 
+# Translators:
+# OCA Transbot <transbot@odoo-community.org>, 2016
+msgid ""
+msgstr ""
+"Project-Id-Version: Odoo Server 10.0\n"
+"Report-Msgid-Bugs-To: \n"
+"POT-Creation-Date: 2017-02-18 02:29+0000\n"
+"PO-Revision-Date: 2017-02-18 02:29+0000\n"
+"Last-Translator: OCA Transbot <transbot@odoo-community.org>, 2016\n"
+"Language-Team: Basque (https://www.transifex.com/oca/teams/23907/eu/)\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: \n"
+"Language: eu\n"
+"Plural-Forms: nplurals=2; plural=(n != 1);\n"
+
+#. module: auto_backup
+#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+msgid "/home/odoo/.ssh/id_rsa"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,help:auto_backup.field_db_backup_folder
+msgid "Absolute path for storing the backups"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.actions.act_window,name:auto_backup.action_backup_conf_form
+#: model:ir.ui.menu,name:auto_backup.backup_conf_menu
+msgid "Automated Backups"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+msgid "Automatic backups of the database can be scheduled as follows:"
+msgstr ""
+
+#. module: auto_backup
+#: model:mail.message.subtype,name:auto_backup.mail_message_subtype_failure
+msgid "Backup Failed"
+msgstr ""
+
+#. module: auto_backup
+#: model:mail.message.subtype,name:auto_backup.mail_message_subtype_success
+msgid "Backup Successful"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_tree
+msgid "Backups"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,help:auto_backup.field_db_backup_days_to_keep
+msgid ""
+"Backups older than this will be deleted automatically. Set 0 to disable "
+"autodeletion."
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+msgid "Basic backup configuration"
+msgstr ""
+
+#. module: auto_backup
+#: sql_constraint:db.backup:0
+msgid "Cannot duplicate a configuration."
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,help:auto_backup.field_db_backup_method
+msgid "Choose the storage method for this backup."
+msgstr ""
+
+#. module: auto_backup
+#: code:addons/auto_backup/models/db_backup.py:251
+#, python-format
+msgid "Cleanup of old database backups failed."
+msgstr ""
+
+#. module: auto_backup
+#: code:addons/auto_backup/models/db_backup.py:131
+#, python-format
+msgid "Connection Test Failed!"
+msgstr ""
+
+#. module: auto_backup
+#: code:addons/auto_backup/models/db_backup.py:128
+#, python-format
+msgid "Connection Test Succeeded!"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup_create_uid
+msgid "Created by"
+msgstr "Nork sortua"
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup_create_date
+msgid "Created on"
+msgstr "Created on"
+
+#. module: auto_backup
+#: code:addons/auto_backup/models/db_backup.py:206
+#: model:mail.message.subtype,description:auto_backup.mail_message_subtype_failure
+#, python-format
+msgid "Database backup failed."
+msgstr ""
+
+#. module: auto_backup
+#: code:addons/auto_backup/models/db_backup.py:214
+#: model:mail.message.subtype,description:auto_backup.mail_message_subtype_success
+#, python-format
+msgid "Database backup succeeded."
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup_days_to_keep
+msgid "Days to keep"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup_display_name
+msgid "Display Name"
+msgstr "Izena erakutsi"
+
+#. module: auto_backup
+#: code:addons/auto_backup/models/db_backup.py:119
+#, python-format
+msgid ""
+"Do not save backups on your filestore, or you will backup your backups too!"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.actions.server,name:auto_backup.action_server_backup
+msgid "Execute backup(s)"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup_folder
+msgid "Folder"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+msgid "Go to Settings / Technical / Automation / Scheduled Actions."
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+msgid "Help"
+msgstr ""
+
+#. module: auto_backup
+#: sql_constraint:db.backup:0
+msgid "I cannot remove backups from the future. Ask Doc for that."
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup_id
+msgid "ID"
+msgstr "ID"
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup___last_update
+msgid "Last Modified on"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup_write_uid
+msgid "Last Updated by"
+msgstr "Last Updated by"
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup_write_date
+msgid "Last Updated on"
+msgstr "Last Updated on"
+
+#. module: auto_backup
+#: selection:db.backup,method:0
+msgid "Local disk"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup_method
+msgid "Method"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup_name
+msgid "Name"
+msgstr "Izena"
+
+#. module: auto_backup
+#: model:ir.model.fields,help:auto_backup.field_db_backup_sftp_private_key
+msgid ""
+"Path to the private key file. Only the Odoo user should have read "
+"permissions for that file."
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup_sftp_private_key
+msgid "Private key location"
+msgstr ""
+
+#. module: auto_backup
+#: selection:db.backup,method:0
+msgid "Remote SFTP server"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup_sftp_password
+msgid "SFTP Password"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup_sftp_port
+msgid "SFTP Port"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup_sftp_host
+msgid "SFTP Server"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+msgid "SFTP Settings"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_search
+msgid "Search options"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+msgid "Search the action named 'Backup scheduler'."
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+msgid ""
+"Set the scheduler to active and fill in how often you want backups "
+"generated."
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,help:auto_backup.field_db_backup_name
+msgid "Summary of this backup process"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+msgid "Test SFTP Connection"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,help:auto_backup.field_db_backup_sftp_host
+msgid ""
+"The host name or IP address from your remote server. For example 192.168.0.1"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,help:auto_backup.field_db_backup_sftp_password
+msgid ""
+"The password for the SFTP connection. If you specify a private key file, "
+"then this is the password to decrypt it."
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,help:auto_backup.field_db_backup_sftp_port
+msgid "The port on the FTP server that accepts SSH/SFTP calls."
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,help:auto_backup.field_db_backup_sftp_user
+msgid ""
+"The username where the SFTP connection should be made with. This is the user"
+" on the external server."
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+msgid ""
+"Use SFTP with caution! This writes files to external servers under the path "
+"you specify."
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup_sftp_user
+msgid "Username in the SFTP Server"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+msgid "Warning:"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model,name:auto_backup.model_db_backup
+msgid "db.backup"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+msgid "john"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+msgid "sftp.example.com"
+msgstr ""
diff --git a/auto_backup/i18n/fa.po b/auto_backup/i18n/fa.po
new file mode 100644
index 00000000000..acd5954b527
--- /dev/null
+++ b/auto_backup/i18n/fa.po
@@ -0,0 +1,317 @@
+# Translation of Odoo Server.
+# This file contains the translation of the following modules:
+# * auto_backup
+# 
+# Translators:
+# OCA Transbot <transbot@odoo-community.org>, 2016
+msgid ""
+msgstr ""
+"Project-Id-Version: Odoo Server 10.0\n"
+"Report-Msgid-Bugs-To: \n"
+"POT-Creation-Date: 2017-02-18 02:29+0000\n"
+"PO-Revision-Date: 2017-02-18 02:29+0000\n"
+"Last-Translator: OCA Transbot <transbot@odoo-community.org>, 2016\n"
+"Language-Team: Persian (https://www.transifex.com/oca/teams/23907/fa/)\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: \n"
+"Language: fa\n"
+"Plural-Forms: nplurals=1; plural=0;\n"
+
+#. module: auto_backup
+#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+msgid "/home/odoo/.ssh/id_rsa"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,help:auto_backup.field_db_backup_folder
+msgid "Absolute path for storing the backups"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.actions.act_window,name:auto_backup.action_backup_conf_form
+#: model:ir.ui.menu,name:auto_backup.backup_conf_menu
+msgid "Automated Backups"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+msgid "Automatic backups of the database can be scheduled as follows:"
+msgstr ""
+
+#. module: auto_backup
+#: model:mail.message.subtype,name:auto_backup.mail_message_subtype_failure
+msgid "Backup Failed"
+msgstr ""
+
+#. module: auto_backup
+#: model:mail.message.subtype,name:auto_backup.mail_message_subtype_success
+msgid "Backup Successful"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_tree
+msgid "Backups"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,help:auto_backup.field_db_backup_days_to_keep
+msgid ""
+"Backups older than this will be deleted automatically. Set 0 to disable "
+"autodeletion."
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+msgid "Basic backup configuration"
+msgstr ""
+
+#. module: auto_backup
+#: sql_constraint:db.backup:0
+msgid "Cannot duplicate a configuration."
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,help:auto_backup.field_db_backup_method
+msgid "Choose the storage method for this backup."
+msgstr ""
+
+#. module: auto_backup
+#: code:addons/auto_backup/models/db_backup.py:251
+#, python-format
+msgid "Cleanup of old database backups failed."
+msgstr ""
+
+#. module: auto_backup
+#: code:addons/auto_backup/models/db_backup.py:131
+#, python-format
+msgid "Connection Test Failed!"
+msgstr ""
+
+#. module: auto_backup
+#: code:addons/auto_backup/models/db_backup.py:128
+#, python-format
+msgid "Connection Test Succeeded!"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup_create_uid
+msgid "Created by"
+msgstr "?????????? ?????? ????????"
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup_create_date
+msgid "Created on"
+msgstr "?????????? ?????? ????"
+
+#. module: auto_backup
+#: code:addons/auto_backup/models/db_backup.py:206
+#: model:mail.message.subtype,description:auto_backup.mail_message_subtype_failure
+#, python-format
+msgid "Database backup failed."
+msgstr ""
+
+#. module: auto_backup
+#: code:addons/auto_backup/models/db_backup.py:214
+#: model:mail.message.subtype,description:auto_backup.mail_message_subtype_success
+#, python-format
+msgid "Database backup succeeded."
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup_days_to_keep
+msgid "Days to keep"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup_display_name
+msgid "Display Name"
+msgstr "?????? ????????????"
+
+#. module: auto_backup
+#: code:addons/auto_backup/models/db_backup.py:119
+#, python-format
+msgid ""
+"Do not save backups on your filestore, or you will backup your backups too!"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.actions.server,name:auto_backup.action_server_backup
+msgid "Execute backup(s)"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup_folder
+msgid "Folder"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+msgid "Go to Settings / Technical / Automation / Scheduled Actions."
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+msgid "Help"
+msgstr ""
+
+#. module: auto_backup
+#: sql_constraint:db.backup:0
+msgid "I cannot remove backups from the future. Ask Doc for that."
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup_id
+msgid "ID"
+msgstr "??????????"
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup___last_update
+msgid "Last Modified on"
+msgstr "?????????? ?????????? ???????????????????????"
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup_write_uid
+msgid "Last Updated by"
+msgstr "?????????? ???? ?????? ?????????? ????????"
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup_write_date
+msgid "Last Updated on"
+msgstr "?????????? ???? ?????? ?????????? ????"
+
+#. module: auto_backup
+#: selection:db.backup,method:0
+msgid "Local disk"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup_method
+msgid "Method"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup_name
+msgid "Name"
+msgstr "??????"
+
+#. module: auto_backup
+#: model:ir.model.fields,help:auto_backup.field_db_backup_sftp_private_key
+msgid ""
+"Path to the private key file. Only the Odoo user should have read "
+"permissions for that file."
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup_sftp_private_key
+msgid "Private key location"
+msgstr ""
+
+#. module: auto_backup
+#: selection:db.backup,method:0
+msgid "Remote SFTP server"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup_sftp_password
+msgid "SFTP Password"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup_sftp_port
+msgid "SFTP Port"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup_sftp_host
+msgid "SFTP Server"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+msgid "SFTP Settings"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_search
+msgid "Search options"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+msgid "Search the action named 'Backup scheduler'."
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+msgid ""
+"Set the scheduler to active and fill in how often you want backups "
+"generated."
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,help:auto_backup.field_db_backup_name
+msgid "Summary of this backup process"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+msgid "Test SFTP Connection"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,help:auto_backup.field_db_backup_sftp_host
+msgid ""
+"The host name or IP address from your remote server. For example 192.168.0.1"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,help:auto_backup.field_db_backup_sftp_password
+msgid ""
+"The password for the SFTP connection. If you specify a private key file, "
+"then this is the password to decrypt it."
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,help:auto_backup.field_db_backup_sftp_port
+msgid "The port on the FTP server that accepts SSH/SFTP calls."
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,help:auto_backup.field_db_backup_sftp_user
+msgid ""
+"The username where the SFTP connection should be made with. This is the user"
+" on the external server."
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+msgid ""
+"Use SFTP with caution! This writes files to external servers under the path "
+"you specify."
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup_sftp_user
+msgid "Username in the SFTP Server"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+msgid "Warning:"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model,name:auto_backup.model_db_backup
+msgid "db.backup"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+msgid "john"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+msgid "sftp.example.com"
+msgstr ""
diff --git a/auto_backup/i18n/fi.po b/auto_backup/i18n/fi.po
index 4ba73930969..a305212b810 100644
--- a/auto_backup/i18n/fi.po
+++ b/auto_backup/i18n/fi.po
@@ -3,14 +3,15 @@
 # * auto_backup
 # 
 # Translators:
+# OCA Transbot <transbot@odoo-community.org>, 2016
 msgid ""
 msgstr ""
-"Project-Id-Version: server-tools (8.0)\n"
+"Project-Id-Version: Odoo Server 10.0\n"
 "Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2016-06-09 18:30+0000\n"
-"PO-Revision-Date: 2016-06-06 13:57+0000\n"
-"Last-Translator: Jarmo Kortetj??rvi <jarmo.kortetjarvi@gmail.com>\n"
-"Language-Team: Finnish (http://www.transifex.com/oca/OCA-server-tools-8-0/language/fi/)\n"
+"POT-Creation-Date: 2016-12-08 03:36+0000\n"
+"PO-Revision-Date: 2016-12-08 03:36+0000\n"
+"Last-Translator: OCA Transbot <transbot@odoo-community.org>, 2016\n"
+"Language-Team: Finnish (https://www.transifex.com/oca/teams/23907/fi/)\n"
 "MIME-Version: 1.0\n"
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: \n"
@@ -18,12 +19,12 @@ msgstr ""
 "Plural-Forms: nplurals=2; plural=(n != 1);\n"
 
 #. module: auto_backup
-#: view:db.backup:auto_backup.view_backup_conf_form
+#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
 msgid "/home/odoo/.ssh/id_rsa"
 msgstr ""
 
 #. module: auto_backup
-#: help:db.backup,folder:0
+#: model:ir.model.fields,help:auto_backup.field_db_backup_folder
 msgid "Absolute path for storing the backups"
 msgstr ""
 
@@ -34,34 +35,34 @@ msgid "Automated Backups"
 msgstr ""
 
 #. module: auto_backup
-#: view:db.backup:auto_backup.view_backup_conf_form
+#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
 msgid "Automatic backups of the database can be scheduled as follows:"
 msgstr ""
 
 #. module: auto_backup
-#: model:mail.message.subtype,name:auto_backup.failure
-msgid "Backup failed"
+#: model:mail.message.subtype,name:auto_backup.mail_message_subtype_failure
+msgid "Backup Failed"
 msgstr ""
 
 #. module: auto_backup
-#: model:mail.message.subtype,name:auto_backup.success
-msgid "Backup successful"
+#: model:mail.message.subtype,name:auto_backup.mail_message_subtype_success
+msgid "Backup Successful"
 msgstr ""
 
 #. module: auto_backup
-#: view:db.backup:auto_backup.view_backup_conf_tree
+#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_tree
 msgid "Backups"
 msgstr ""
 
 #. module: auto_backup
-#: help:db.backup,days_to_keep:0
+#: model:ir.model.fields,help:auto_backup.field_db_backup_days_to_keep
 msgid ""
 "Backups older than this will be deleted automatically. Set 0 to disable "
 "autodeletion."
 msgstr ""
 
 #. module: auto_backup
-#: view:db.backup:auto_backup.view_backup_conf_form
+#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
 msgid "Basic backup configuration"
 msgstr ""
 
@@ -71,12 +72,12 @@ msgid "Cannot duplicate a configuration."
 msgstr ""
 
 #. module: auto_backup
-#: help:db.backup,method:0
+#: model:ir.model.fields,help:auto_backup.field_db_backup_method
 msgid "Choose the storage method for this backup."
 msgstr ""
 
 #. module: auto_backup
-#: code:addons/auto_backup/models/db_backup.py:247
+#: code:addons/auto_backup/models/db_backup.py:248
 #, python-format
 msgid "Cleanup of old database backups failed."
 msgstr ""
@@ -94,41 +95,36 @@ msgid "Connection Test Succeeded!"
 msgstr ""
 
 #. module: auto_backup
-#: field:db.backup,create_uid:0
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup_create_uid
 msgid "Created by"
 msgstr "Luonut"
 
 #. module: auto_backup
-#: field:db.backup,create_date:0
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup_create_date
 msgid "Created on"
 msgstr "Luotu"
 
 #. module: auto_backup
 #: code:addons/auto_backup/models/db_backup.py:206
-#: model:mail.message.subtype,description:auto_backup.failure
+#: model:mail.message.subtype,description:auto_backup.mail_message_subtype_failure
 #, python-format
 msgid "Database backup failed."
 msgstr ""
 
 #. module: auto_backup
 #: code:addons/auto_backup/models/db_backup.py:211
-#: model:mail.message.subtype,description:auto_backup.success
+#: model:mail.message.subtype,description:auto_backup.mail_message_subtype_success
 #, python-format
 msgid "Database backup succeeded."
 msgstr ""
 
 #. module: auto_backup
-#: help:db.backup,message_last_post:0
-msgid "Date of the last message posted on the record."
-msgstr "Viimeisimm??n l??hetetyn viestin p??iv??ys."
-
-#. module: auto_backup
-#: field:db.backup,days_to_keep:0
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup_days_to_keep
 msgid "Days to keep"
 msgstr ""
 
 #. module: auto_backup
-#: field:db.backup,display_name:0
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup_display_name
 msgid "Display Name"
 msgstr "Nimi"
 
@@ -139,80 +135,48 @@ msgid ""
 "Do not save backups on your filestore, or you will backup your backups too!"
 msgstr ""
 
-#. module: auto_backup
-#: model:ir.model,name:auto_backup.model_db_backup
-msgid "Email Thread"
-msgstr ""
-
 #. module: auto_backup
 #: model:ir.actions.server,name:auto_backup.action_server_backup
 msgid "Execute backup(s)"
 msgstr ""
 
 #. module: auto_backup
-#: field:db.backup,folder:0
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup_folder
 msgid "Folder"
 msgstr ""
 
 #. module: auto_backup
-#: field:db.backup,message_follower_ids:0
-msgid "Followers"
-msgstr "Seuraajat"
-
-#. module: auto_backup
-#: view:db.backup:auto_backup.view_backup_conf_form
+#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
 msgid "Go to Settings / Technical / Automation / Scheduled Actions."
 msgstr ""
 
 #. module: auto_backup
-#: view:db.backup:auto_backup.view_backup_conf_form
+#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
 msgid "Help"
 msgstr ""
 
-#. module: auto_backup
-#: help:db.backup,message_summary:0
-msgid ""
-"Holds the Chatter summary (number of messages, ...). This summary is "
-"directly in html format in order to be inserted in kanban views."
-msgstr "Sis??lt???? chatter-yhteenvedon (viestien m????r??, ...). T??m?? yhteenveto on html-formaatissa, jotta se voidaan n??ytt???? kanban-n??kym??ss??."
-
 #. module: auto_backup
 #: sql_constraint:db.backup:0
 msgid "I cannot remove backups from the future. Ask Doc for that."
 msgstr ""
 
 #. module: auto_backup
-#: field:db.backup,id:0
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup_id
 msgid "ID"
 msgstr "ID"
 
 #. module: auto_backup
-#: help:db.backup,message_unread:0
-msgid "If checked new messages require your attention."
-msgstr "Jos valittuna, uudet viestit vaatii toimenpiteit??."
-
-#. module: auto_backup
-#: field:db.backup,message_is_follower:0
-msgid "Is a Follower"
-msgstr "On seuraaja"
-
-#. module: auto_backup
-#: field:db.backup,message_last_post:0
-msgid "Last Message Date"
-msgstr "Viimeisimm??n viestin p??iv??ys"
-
-#. module: auto_backup
-#: field:db.backup,__last_update:0
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup___last_update
 msgid "Last Modified on"
 msgstr "Viimeksi muokattu"
 
 #. module: auto_backup
-#: field:db.backup,write_uid:0
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup_write_uid
 msgid "Last Updated by"
 msgstr "Viimeksi p??ivitt??nyt"
 
 #. module: auto_backup
-#: field:db.backup,write_date:0
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup_write_date
 msgid "Last Updated on"
 msgstr "Viimeksi p??ivitetty"
 
@@ -222,34 +186,24 @@ msgid "Local disk"
 msgstr ""
 
 #. module: auto_backup
-#: field:db.backup,message_ids:0
-msgid "Messages"
-msgstr "Viestej??"
-
-#. module: auto_backup
-#: help:db.backup,message_ids:0
-msgid "Messages and communication history"
-msgstr "Viesti- ja kommunikointihistoria"
-
-#. module: auto_backup
-#: field:db.backup,method:0
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup_method
 msgid "Method"
 msgstr ""
 
 #. module: auto_backup
-#: field:db.backup,name:0
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup_name
 msgid "Name"
 msgstr "Nimi"
 
 #. module: auto_backup
-#: help:db.backup,sftp_private_key:0
+#: model:ir.model.fields,help:auto_backup.field_db_backup_sftp_private_key
 msgid ""
 "Path to the private key file. Only the Odoo user should have read "
 "permissions for that file."
 msgstr ""
 
 #. module: auto_backup
-#: field:db.backup,sftp_private_key:0
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup_sftp_private_key
 msgid "Private key location"
 msgstr ""
 
@@ -259,110 +213,105 @@ msgid "Remote SFTP server"
 msgstr ""
 
 #. module: auto_backup
-#: field:db.backup,sftp_password:0
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup_sftp_password
 msgid "SFTP Password"
 msgstr ""
 
 #. module: auto_backup
-#: field:db.backup,sftp_port:0
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup_sftp_port
 msgid "SFTP Port"
 msgstr ""
 
 #. module: auto_backup
-#: field:db.backup,sftp_host:0
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup_sftp_host
 msgid "SFTP Server"
 msgstr ""
 
 #. module: auto_backup
-#: view:db.backup:auto_backup.view_backup_conf_form
+#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
 msgid "SFTP Settings"
 msgstr ""
 
 #. module: auto_backup
-#: view:db.backup:auto_backup.view_backup_conf_search
+#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_search
 msgid "Search options"
 msgstr ""
 
 #. module: auto_backup
-#: view:db.backup:auto_backup.view_backup_conf_form
+#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
 msgid "Search the action named 'Backup scheduler'."
 msgstr ""
 
 #. module: auto_backup
-#: view:db.backup:auto_backup.view_backup_conf_form
+#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
 msgid ""
 "Set the scheduler to active and fill in how often you want backups "
 "generated."
 msgstr ""
 
 #. module: auto_backup
-#: field:db.backup,message_summary:0
-msgid "Summary"
-msgstr "Yhteenveto"
-
-#. module: auto_backup
-#: help:db.backup,name:0
+#: model:ir.model.fields,help:auto_backup.field_db_backup_name
 msgid "Summary of this backup process"
 msgstr ""
 
 #. module: auto_backup
-#: view:db.backup:auto_backup.view_backup_conf_form
+#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
 msgid "Test SFTP Connection"
 msgstr ""
 
 #. module: auto_backup
-#: help:db.backup,sftp_host:0
+#: model:ir.model.fields,help:auto_backup.field_db_backup_sftp_host
 msgid ""
 "The host name or IP address from your remote server. For example 192.168.0.1"
 msgstr ""
 
 #. module: auto_backup
-#: help:db.backup,sftp_password:0
+#: model:ir.model.fields,help:auto_backup.field_db_backup_sftp_password
 msgid ""
 "The password for the SFTP connection. If you specify a private key file, "
 "then this is the password to decrypt it."
 msgstr ""
 
 #. module: auto_backup
-#: help:db.backup,sftp_port:0
+#: model:ir.model.fields,help:auto_backup.field_db_backup_sftp_port
 msgid "The port on the FTP server that accepts SSH/SFTP calls."
 msgstr ""
 
 #. module: auto_backup
-#: help:db.backup,sftp_user:0
+#: model:ir.model.fields,help:auto_backup.field_db_backup_sftp_user
 msgid ""
 "The username where the SFTP connection should be made with. This is the user"
 " on the external server."
 msgstr ""
 
 #. module: auto_backup
-#: field:db.backup,message_unread:0
-msgid "Unread Messages"
-msgstr "Lukemattomia viestej??"
-
-#. module: auto_backup
-#: view:db.backup:auto_backup.view_backup_conf_form
+#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
 msgid ""
 "Use SFTP with caution! This writes files to external servers under the path "
 "you specify."
 msgstr ""
 
 #. module: auto_backup
-#: field:db.backup,sftp_user:0
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup_sftp_user
 msgid "Username in the SFTP Server"
 msgstr ""
 
 #. module: auto_backup
-#: view:db.backup:auto_backup.view_backup_conf_form
+#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
 msgid "Warning:"
 msgstr ""
 
 #. module: auto_backup
-#: view:db.backup:auto_backup.view_backup_conf_form
+#: model:ir.model,name:auto_backup.model_db_backup
+msgid "db.backup"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
 msgid "john"
 msgstr ""
 
 #. module: auto_backup
-#: view:db.backup:auto_backup.view_backup_conf_form
+#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
 msgid "sftp.example.com"
 msgstr ""
diff --git a/auto_backup/i18n/fr.po b/auto_backup/i18n/fr.po
index b8a5e35c053..af3ebc5a88e 100644
--- a/auto_backup/i18n/fr.po
+++ b/auto_backup/i18n/fr.po
@@ -3,15 +3,15 @@
 # * auto_backup
 # 
 # Translators:
-# Christophe CHAUVET <christophe.chauvet@gmail.com>, 2016
+# OCA Transbot <transbot@odoo-community.org>, 2016
 msgid ""
 msgstr ""
-"Project-Id-Version: server-tools (8.0)\n"
+"Project-Id-Version: Odoo Server 10.0\n"
 "Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2016-06-17 02:42+0000\n"
-"PO-Revision-Date: 2016-06-23 09:27+0000\n"
-"Last-Translator: Christophe CHAUVET <christophe.chauvet@gmail.com>\n"
-"Language-Team: French (http://www.transifex.com/oca/OCA-server-tools-8-0/language/fr/)\n"
+"POT-Creation-Date: 2017-06-01 14:58+0000\n"
+"PO-Revision-Date: 2017-06-01 14:58+0000\n"
+"Last-Translator: OCA Transbot <transbot@odoo-community.org>, 2016\n"
+"Language-Team: French (https://www.transifex.com/oca/teams/23907/fr/)\n"
 "MIME-Version: 1.0\n"
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: \n"
@@ -19,117 +19,116 @@ msgstr ""
 "Plural-Forms: nplurals=2; plural=(n > 1);\n"
 
 #. module: auto_backup
-#: view:db.backup:auto_backup.view_backup_conf_form
+#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
 msgid "/home/odoo/.ssh/id_rsa"
 msgstr "/home/odoo/.ssh/id_rsa"
 
 #. module: auto_backup
-#: help:db.backup,folder:0
+#: model:ir.model.fields,help:auto_backup.field_db_backup_folder
 msgid "Absolute path for storing the backups"
-msgstr ""
+msgstr "Chemin absolu o?? sont conserv??es les sauvegardes"
 
 #. module: auto_backup
 #: model:ir.actions.act_window,name:auto_backup.action_backup_conf_form
 #: model:ir.ui.menu,name:auto_backup.backup_conf_menu
 msgid "Automated Backups"
-msgstr ""
+msgstr "Sauvegardes automatis??es"
 
 #. module: auto_backup
-#: view:db.backup:auto_backup.view_backup_conf_form
+#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
 msgid "Automatic backups of the database can be scheduled as follows:"
 msgstr ""
+"Les sauvegardes automatis??es de la base de donn??es peuvent ??tre programm??es "
+"comme suit:"
 
 #. module: auto_backup
-#: model:mail.message.subtype,name:auto_backup.failure
-msgid "Backup failed"
-msgstr ""
+#: model:mail.message.subtype,name:auto_backup.mail_message_subtype_failure
+msgid "Backup Failed"
+msgstr "??chec de la saugarde"
 
 #. module: auto_backup
-#: model:mail.message.subtype,name:auto_backup.success
-msgid "Backup successful"
-msgstr ""
+#: model:mail.message.subtype,name:auto_backup.mail_message_subtype_success
+msgid "Backup Successful"
+msgstr "Sauvegarde r??ussie"
 
 #. module: auto_backup
-#: view:db.backup:auto_backup.view_backup_conf_tree
+#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_tree
 msgid "Backups"
 msgstr "Sauvegardes"
 
 #. module: auto_backup
-#: help:db.backup,days_to_keep:0
+#: model:ir.model.fields,help:auto_backup.field_db_backup_days_to_keep
 msgid ""
 "Backups older than this will be deleted automatically. Set 0 to disable "
 "autodeletion."
 msgstr ""
+"Les sauvegardes plus anciennes que la valeur d??finie seront supprim??es "
+"automatiquement. D??finir ?? 0 pour d??sactiver la suppression automatique."
 
 #. module: auto_backup
-#: view:db.backup:auto_backup.view_backup_conf_form
+#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
 msgid "Basic backup configuration"
-msgstr ""
+msgstr "Configuration basique de sauvegarde"
 
 #. module: auto_backup
 #: sql_constraint:db.backup:0
 msgid "Cannot duplicate a configuration."
-msgstr ""
+msgstr "Impossible de dupliquer une configuration."
 
 #. module: auto_backup
-#: help:db.backup,method:0
+#: model:ir.model.fields,help:auto_backup.field_db_backup_method
 msgid "Choose the storage method for this backup."
-msgstr ""
+msgstr "Choisissez la m??thode de stockage pour cette sauvegarde."
 
 #. module: auto_backup
-#: code:addons/auto_backup/models/db_backup.py:247
+#: code:addons/auto_backup/models/db_backup.py:253
 #, python-format
 msgid "Cleanup of old database backups failed."
-msgstr ""
+msgstr "??chec du nettoyage des anciennes sauvegardes de la base de donn??es."
 
 #. module: auto_backup
-#: code:addons/auto_backup/models/db_backup.py:131
+#: code:addons/auto_backup/models/db_backup.py:133
 #, python-format
 msgid "Connection Test Failed!"
-msgstr ""
+msgstr "??chec du test de connexion !"
 
 #. module: auto_backup
 #: code:addons/auto_backup/models/db_backup.py:128
 #, python-format
 msgid "Connection Test Succeeded!"
-msgstr ""
+msgstr "Test de connexion r??ussi !"
 
 #. module: auto_backup
-#: field:db.backup,create_uid:0
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup_create_uid
 msgid "Created by"
 msgstr "Cr???? par"
 
 #. module: auto_backup
-#: field:db.backup,create_date:0
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup_create_date
 msgid "Created on"
 msgstr "Cr???? le"
 
 #. module: auto_backup
-#: code:addons/auto_backup/models/db_backup.py:206
-#: model:mail.message.subtype,description:auto_backup.failure
+#: code:addons/auto_backup/models/db_backup.py:208
+#: model:mail.message.subtype,description:auto_backup.mail_message_subtype_failure
 #, python-format
 msgid "Database backup failed."
-msgstr ""
+msgstr "??chec de la sauvegarde de la base de donn??es"
 
 #. module: auto_backup
-#: code:addons/auto_backup/models/db_backup.py:211
-#: model:mail.message.subtype,description:auto_backup.success
+#: code:addons/auto_backup/models/db_backup.py:216
+#: model:mail.message.subtype,description:auto_backup.mail_message_subtype_success
 #, python-format
 msgid "Database backup succeeded."
-msgstr ""
-
-#. module: auto_backup
-#: help:db.backup,message_last_post:0
-msgid "Date of the last message posted on the record."
-msgstr ""
+msgstr "Sauvegarde de la base de donn??es r??ussie."
 
 #. module: auto_backup
-#: field:db.backup,days_to_keep:0
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup_days_to_keep
 msgid "Days to keep"
-msgstr ""
+msgstr "Nombre de jours avant suppression"
 
 #. module: auto_backup
-#: field:db.backup,display_name:0
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup_display_name
 msgid "Display Name"
 msgstr "Nom affich??"
 
@@ -139,43 +138,29 @@ msgstr "Nom affich??"
 msgid ""
 "Do not save backups on your filestore, or you will backup your backups too!"
 msgstr ""
-
-#. module: auto_backup
-#: model:ir.model,name:auto_backup.model_db_backup
-msgid "Email Thread"
-msgstr ""
+"Ne conservez pas vos sauvegardes dans le filestore, sinon vos sauvegardes "
+"seront elles-m??mes sauvegard??es ! "
 
 #. module: auto_backup
 #: model:ir.actions.server,name:auto_backup.action_server_backup
 msgid "Execute backup(s)"
-msgstr ""
+msgstr "Lancer la/les sauvegarde(s)"
 
 #. module: auto_backup
-#: field:db.backup,folder:0
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup_folder
 msgid "Folder"
-msgstr ""
-
-#. module: auto_backup
-#: field:db.backup,message_follower_ids:0
-msgid "Followers"
-msgstr ""
+msgstr "Dossier"
 
 #. module: auto_backup
-#: view:db.backup:auto_backup.view_backup_conf_form
+#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
 msgid "Go to Settings / Technical / Automation / Scheduled Actions."
 msgstr ""
+"Allez sur Configuration / Technique / Automatisation / Actions planifi??es"
 
 #. module: auto_backup
-#: view:db.backup:auto_backup.view_backup_conf_form
+#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
 msgid "Help"
-msgstr ""
-
-#. module: auto_backup
-#: help:db.backup,message_summary:0
-msgid ""
-"Holds the Chatter summary (number of messages, ...). This summary is "
-"directly in html format in order to be inserted in kanban views."
-msgstr ""
+msgstr "Aide"
 
 #. module: auto_backup
 #: sql_constraint:db.backup:0
@@ -183,74 +168,51 @@ msgid "I cannot remove backups from the future. Ask Doc for that."
 msgstr ""
 
 #. module: auto_backup
-#: field:db.backup,id:0
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup_id
 msgid "ID"
 msgstr "ID"
 
 #. module: auto_backup
-#: help:db.backup,message_unread:0
-msgid "If checked new messages require your attention."
-msgstr ""
-
-#. module: auto_backup
-#: field:db.backup,message_is_follower:0
-msgid "Is a Follower"
-msgstr ""
-
-#. module: auto_backup
-#: field:db.backup,message_last_post:0
-msgid "Last Message Date"
-msgstr ""
-
-#. module: auto_backup
-#: field:db.backup,__last_update:0
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup___last_update
 msgid "Last Modified on"
 msgstr "Derni??re modification le"
 
 #. module: auto_backup
-#: field:db.backup,write_uid:0
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup_write_uid
 msgid "Last Updated by"
 msgstr "Mis ?? jour par"
 
 #. module: auto_backup
-#: field:db.backup,write_date:0
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup_write_date
 msgid "Last Updated on"
 msgstr "Mis ?? jour le"
 
 #. module: auto_backup
 #: selection:db.backup,method:0
 msgid "Local disk"
-msgstr ""
+msgstr "Disque local"
 
 #. module: auto_backup
-#: field:db.backup,message_ids:0
-msgid "Messages"
-msgstr ""
-
-#. module: auto_backup
-#: help:db.backup,message_ids:0
-msgid "Messages and communication history"
-msgstr ""
-
-#. module: auto_backup
-#: field:db.backup,method:0
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup_method
 msgid "Method"
 msgstr "M??thode"
 
 #. module: auto_backup
-#: field:db.backup,name:0
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup_name
 msgid "Name"
 msgstr "Nom"
 
 #. module: auto_backup
-#: help:db.backup,sftp_private_key:0
+#: model:ir.model.fields,help:auto_backup.field_db_backup_sftp_private_key
 msgid ""
 "Path to the private key file. Only the Odoo user should have read "
 "permissions for that file."
 msgstr ""
+"Chemin vers la cl?? priv??e. Seul l'utilisateur odoo devrait avoir les "
+"permissions de lecture sur ce fichier."
 
 #. module: auto_backup
-#: field:db.backup,sftp_private_key:0
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup_sftp_private_key
 msgid "Private key location"
 msgstr ""
 
@@ -260,110 +222,105 @@ msgid "Remote SFTP server"
 msgstr ""
 
 #. module: auto_backup
-#: field:db.backup,sftp_password:0
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup_sftp_password
 msgid "SFTP Password"
 msgstr ""
 
 #. module: auto_backup
-#: field:db.backup,sftp_port:0
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup_sftp_port
 msgid "SFTP Port"
 msgstr ""
 
 #. module: auto_backup
-#: field:db.backup,sftp_host:0
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup_sftp_host
 msgid "SFTP Server"
 msgstr ""
 
 #. module: auto_backup
-#: view:db.backup:auto_backup.view_backup_conf_form
+#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
 msgid "SFTP Settings"
 msgstr ""
 
 #. module: auto_backup
-#: view:db.backup:auto_backup.view_backup_conf_search
+#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_search
 msgid "Search options"
 msgstr ""
 
 #. module: auto_backup
-#: view:db.backup:auto_backup.view_backup_conf_form
+#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
 msgid "Search the action named 'Backup scheduler'."
 msgstr ""
 
 #. module: auto_backup
-#: view:db.backup:auto_backup.view_backup_conf_form
+#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
 msgid ""
 "Set the scheduler to active and fill in how often you want backups "
 "generated."
 msgstr ""
 
 #. module: auto_backup
-#: field:db.backup,message_summary:0
-msgid "Summary"
-msgstr "R??sum??"
-
-#. module: auto_backup
-#: help:db.backup,name:0
+#: model:ir.model.fields,help:auto_backup.field_db_backup_name
 msgid "Summary of this backup process"
 msgstr ""
 
 #. module: auto_backup
-#: view:db.backup:auto_backup.view_backup_conf_form
+#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
 msgid "Test SFTP Connection"
 msgstr ""
 
 #. module: auto_backup
-#: help:db.backup,sftp_host:0
+#: model:ir.model.fields,help:auto_backup.field_db_backup_sftp_host
 msgid ""
 "The host name or IP address from your remote server. For example 192.168.0.1"
 msgstr ""
 
 #. module: auto_backup
-#: help:db.backup,sftp_password:0
+#: model:ir.model.fields,help:auto_backup.field_db_backup_sftp_password
 msgid ""
 "The password for the SFTP connection. If you specify a private key file, "
 "then this is the password to decrypt it."
 msgstr ""
 
 #. module: auto_backup
-#: help:db.backup,sftp_port:0
+#: model:ir.model.fields,help:auto_backup.field_db_backup_sftp_port
 msgid "The port on the FTP server that accepts SSH/SFTP calls."
 msgstr ""
 
 #. module: auto_backup
-#: help:db.backup,sftp_user:0
+#: model:ir.model.fields,help:auto_backup.field_db_backup_sftp_user
 msgid ""
 "The username where the SFTP connection should be made with. This is the user"
 " on the external server."
 msgstr ""
 
 #. module: auto_backup
-#: field:db.backup,message_unread:0
-msgid "Unread Messages"
-msgstr ""
-
-#. module: auto_backup
-#: view:db.backup:auto_backup.view_backup_conf_form
+#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
 msgid ""
 "Use SFTP with caution! This writes files to external servers under the path "
 "you specify."
 msgstr ""
 
 #. module: auto_backup
-#: field:db.backup,sftp_user:0
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup_sftp_user
 msgid "Username in the SFTP Server"
 msgstr ""
 
 #. module: auto_backup
-#: view:db.backup:auto_backup.view_backup_conf_form
+#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
 msgid "Warning:"
 msgstr ""
 
 #. module: auto_backup
-#: view:db.backup:auto_backup.view_backup_conf_form
+#: model:ir.model,name:auto_backup.model_db_backup
+msgid "db.backup"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
 msgid "john"
 msgstr ""
 
 #. module: auto_backup
-#: view:db.backup:auto_backup.view_backup_conf_form
+#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
 msgid "sftp.example.com"
 msgstr ""
diff --git a/auto_backup/i18n/fr_CA.po b/auto_backup/i18n/fr_CA.po
index 5996cd518a8..0249e266907 100644
--- a/auto_backup/i18n/fr_CA.po
+++ b/auto_backup/i18n/fr_CA.po
@@ -3,14 +3,15 @@
 # * auto_backup
 # 
 # Translators:
+# OCA Transbot <transbot@odoo-community.org>, 2016
 msgid ""
 msgstr ""
-"Project-Id-Version: server-tools (8.0)\n"
+"Project-Id-Version: Odoo Server 10.0\n"
 "Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2016-04-14 07:02+0000\n"
-"PO-Revision-Date: 2016-04-05 07:21+0000\n"
-"Last-Translator: <>\n"
-"Language-Team: French (Canada) (http://www.transifex.com/oca/OCA-server-tools-8-0/language/fr_CA/)\n"
+"POT-Creation-Date: 2016-12-08 03:36+0000\n"
+"PO-Revision-Date: 2016-12-08 03:36+0000\n"
+"Last-Translator: OCA Transbot <transbot@odoo-community.org>, 2016\n"
+"Language-Team: French (Canada) (https://www.transifex.com/oca/teams/23907/fr_CA/)\n"
 "MIME-Version: 1.0\n"
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: \n"
@@ -18,12 +19,12 @@ msgstr ""
 "Plural-Forms: nplurals=2; plural=(n > 1);\n"
 
 #. module: auto_backup
-#: view:db.backup:auto_backup.view_backup_conf_form
+#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
 msgid "/home/odoo/.ssh/id_rsa"
 msgstr ""
 
 #. module: auto_backup
-#: help:db.backup,folder:0
+#: model:ir.model.fields,help:auto_backup.field_db_backup_folder
 msgid "Absolute path for storing the backups"
 msgstr ""
 
@@ -34,34 +35,34 @@ msgid "Automated Backups"
 msgstr ""
 
 #. module: auto_backup
-#: view:db.backup:auto_backup.view_backup_conf_form
+#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
 msgid "Automatic backups of the database can be scheduled as follows:"
 msgstr ""
 
 #. module: auto_backup
-#: model:mail.message.subtype,name:auto_backup.failure
-msgid "Backup failed"
+#: model:mail.message.subtype,name:auto_backup.mail_message_subtype_failure
+msgid "Backup Failed"
 msgstr ""
 
 #. module: auto_backup
-#: model:mail.message.subtype,name:auto_backup.success
-msgid "Backup successful"
+#: model:mail.message.subtype,name:auto_backup.mail_message_subtype_success
+msgid "Backup Successful"
 msgstr ""
 
 #. module: auto_backup
-#: view:db.backup:auto_backup.view_backup_conf_tree
+#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_tree
 msgid "Backups"
 msgstr ""
 
 #. module: auto_backup
-#: help:db.backup,days_to_keep:0
+#: model:ir.model.fields,help:auto_backup.field_db_backup_days_to_keep
 msgid ""
 "Backups older than this will be deleted automatically. Set 0 to disable "
 "autodeletion."
 msgstr ""
 
 #. module: auto_backup
-#: view:db.backup:auto_backup.view_backup_conf_form
+#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
 msgid "Basic backup configuration"
 msgstr ""
 
@@ -71,140 +72,113 @@ msgid "Cannot duplicate a configuration."
 msgstr ""
 
 #. module: auto_backup
-#: help:db.backup,method:0
+#: model:ir.model.fields,help:auto_backup.field_db_backup_method
 msgid "Choose the storage method for this backup."
 msgstr ""
 
 #. module: auto_backup
-#: code:addons/auto_backup/models/db_backup.py:249
+#: code:addons/auto_backup/models/db_backup.py:248
 #, python-format
 msgid "Cleanup of old database backups failed."
 msgstr ""
 
 #. module: auto_backup
-#: code:addons/auto_backup/models/db_backup.py:132
+#: code:addons/auto_backup/models/db_backup.py:131
 #, python-format
 msgid "Connection Test Failed!"
 msgstr ""
 
 #. module: auto_backup
-#: code:addons/auto_backup/models/db_backup.py:129
+#: code:addons/auto_backup/models/db_backup.py:128
 #, python-format
 msgid "Connection Test Succeeded!"
 msgstr ""
 
 #. module: auto_backup
-#: field:db.backup,create_uid:0
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup_create_uid
 msgid "Created by"
-msgstr ""
+msgstr "Cr???? par"
 
 #. module: auto_backup
-#: field:db.backup,create_date:0
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup_create_date
 msgid "Created on"
-msgstr ""
+msgstr "Cr???? le"
 
 #. module: auto_backup
-#: code:addons/auto_backup/models/db_backup.py:208
-#: model:mail.message.subtype,description:auto_backup.failure
+#: code:addons/auto_backup/models/db_backup.py:206
+#: model:mail.message.subtype,description:auto_backup.mail_message_subtype_failure
 #, python-format
 msgid "Database backup failed."
 msgstr ""
 
 #. module: auto_backup
-#: code:addons/auto_backup/models/db_backup.py:213
-#: model:mail.message.subtype,description:auto_backup.success
+#: code:addons/auto_backup/models/db_backup.py:211
+#: model:mail.message.subtype,description:auto_backup.mail_message_subtype_success
 #, python-format
 msgid "Database backup succeeded."
 msgstr ""
 
 #. module: auto_backup
-#: help:db.backup,message_last_post:0
-msgid "Date of the last message posted on the record."
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup_days_to_keep
+msgid "Days to keep"
 msgstr ""
 
 #. module: auto_backup
-#: field:db.backup,days_to_keep:0
-msgid "Days to keep"
-msgstr ""
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup_display_name
+msgid "Display Name"
+msgstr "Afficher le nom"
 
 #. module: auto_backup
-#: code:addons/auto_backup/models/db_backup.py:120
+#: code:addons/auto_backup/models/db_backup.py:119
 #, python-format
 msgid ""
 "Do not save backups on your filestore, or you will backup your backups too!"
 msgstr ""
 
-#. module: auto_backup
-#: model:ir.model,name:auto_backup.model_db_backup
-msgid "Email Thread"
-msgstr ""
-
 #. module: auto_backup
 #: model:ir.actions.server,name:auto_backup.action_server_backup
 msgid "Execute backup(s)"
 msgstr ""
 
 #. module: auto_backup
-#: field:db.backup,folder:0
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup_folder
 msgid "Folder"
 msgstr ""
 
 #. module: auto_backup
-#: field:db.backup,message_follower_ids:0
-msgid "Followers"
-msgstr ""
-
-#. module: auto_backup
-#: view:db.backup:auto_backup.view_backup_conf_form
+#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
 msgid "Go to Settings / Technical / Automation / Scheduled Actions."
 msgstr ""
 
 #. module: auto_backup
-#: view:db.backup:auto_backup.view_backup_conf_form
+#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
 msgid "Help"
 msgstr ""
 
-#. module: auto_backup
-#: help:db.backup,message_summary:0
-msgid ""
-"Holds the Chatter summary (number of messages, ...). This summary is "
-"directly in html format in order to be inserted in kanban views."
-msgstr ""
-
 #. module: auto_backup
 #: sql_constraint:db.backup:0
 msgid "I cannot remove backups from the future. Ask Doc for that."
 msgstr ""
 
 #. module: auto_backup
-#: field:db.backup,id:0
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup_id
 msgid "ID"
-msgstr ""
+msgstr "Identifiant"
 
 #. module: auto_backup
-#: help:db.backup,message_unread:0
-msgid "If checked new messages require your attention."
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup___last_update
+msgid "Last Modified on"
 msgstr ""
 
 #. module: auto_backup
-#: field:db.backup,message_is_follower:0
-msgid "Is a Follower"
-msgstr ""
-
-#. module: auto_backup
-#: field:db.backup,message_last_post:0
-msgid "Last Message Date"
-msgstr ""
-
-#. module: auto_backup
-#: field:db.backup,write_uid:0
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup_write_uid
 msgid "Last Updated by"
-msgstr ""
+msgstr "Derni??re mise ?? jour par"
 
 #. module: auto_backup
-#: field:db.backup,write_date:0
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup_write_date
 msgid "Last Updated on"
-msgstr ""
+msgstr "Derni??re mise ?? jour le"
 
 #. module: auto_backup
 #: selection:db.backup,method:0
@@ -212,34 +186,24 @@ msgid "Local disk"
 msgstr ""
 
 #. module: auto_backup
-#: field:db.backup,message_ids:0
-msgid "Messages"
-msgstr ""
-
-#. module: auto_backup
-#: help:db.backup,message_ids:0
-msgid "Messages and communication history"
-msgstr ""
-
-#. module: auto_backup
-#: field:db.backup,method:0
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup_method
 msgid "Method"
 msgstr ""
 
 #. module: auto_backup
-#: field:db.backup,name:0
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup_name
 msgid "Name"
 msgstr "Nom"
 
 #. module: auto_backup
-#: help:db.backup,sftp_private_key:0
+#: model:ir.model.fields,help:auto_backup.field_db_backup_sftp_private_key
 msgid ""
 "Path to the private key file. Only the Odoo user should have read "
 "permissions for that file."
 msgstr ""
 
 #. module: auto_backup
-#: field:db.backup,sftp_private_key:0
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup_sftp_private_key
 msgid "Private key location"
 msgstr ""
 
@@ -249,110 +213,105 @@ msgid "Remote SFTP server"
 msgstr ""
 
 #. module: auto_backup
-#: field:db.backup,sftp_password:0
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup_sftp_password
 msgid "SFTP Password"
 msgstr ""
 
 #. module: auto_backup
-#: field:db.backup,sftp_port:0
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup_sftp_port
 msgid "SFTP Port"
 msgstr ""
 
 #. module: auto_backup
-#: field:db.backup,sftp_host:0
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup_sftp_host
 msgid "SFTP Server"
 msgstr ""
 
 #. module: auto_backup
-#: view:db.backup:auto_backup.view_backup_conf_form
+#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
 msgid "SFTP Settings"
 msgstr ""
 
 #. module: auto_backup
-#: view:db.backup:auto_backup.view_backup_conf_search
+#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_search
 msgid "Search options"
 msgstr ""
 
 #. module: auto_backup
-#: view:db.backup:auto_backup.view_backup_conf_form
+#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
 msgid "Search the action named 'Backup scheduler'."
 msgstr ""
 
 #. module: auto_backup
-#: view:db.backup:auto_backup.view_backup_conf_form
+#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
 msgid ""
 "Set the scheduler to active and fill in how often you want backups "
 "generated."
 msgstr ""
 
 #. module: auto_backup
-#: field:db.backup,message_summary:0
-msgid "Summary"
-msgstr ""
-
-#. module: auto_backup
-#: help:db.backup,name:0
+#: model:ir.model.fields,help:auto_backup.field_db_backup_name
 msgid "Summary of this backup process"
 msgstr ""
 
 #. module: auto_backup
-#: view:db.backup:auto_backup.view_backup_conf_form
+#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
 msgid "Test SFTP Connection"
 msgstr ""
 
 #. module: auto_backup
-#: help:db.backup,sftp_host:0
+#: model:ir.model.fields,help:auto_backup.field_db_backup_sftp_host
 msgid ""
 "The host name or IP address from your remote server. For example 192.168.0.1"
 msgstr ""
 
 #. module: auto_backup
-#: help:db.backup,sftp_password:0
+#: model:ir.model.fields,help:auto_backup.field_db_backup_sftp_password
 msgid ""
 "The password for the SFTP connection. If you specify a private key file, "
 "then this is the password to decrypt it."
 msgstr ""
 
 #. module: auto_backup
-#: help:db.backup,sftp_port:0
+#: model:ir.model.fields,help:auto_backup.field_db_backup_sftp_port
 msgid "The port on the FTP server that accepts SSH/SFTP calls."
 msgstr ""
 
 #. module: auto_backup
-#: help:db.backup,sftp_user:0
+#: model:ir.model.fields,help:auto_backup.field_db_backup_sftp_user
 msgid ""
 "The username where the SFTP connection should be made with. This is the user"
 " on the external server."
 msgstr ""
 
 #. module: auto_backup
-#: field:db.backup,message_unread:0
-msgid "Unread Messages"
-msgstr ""
-
-#. module: auto_backup
-#: view:db.backup:auto_backup.view_backup_conf_form
+#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
 msgid ""
 "Use SFTP with caution! This writes files to external servers under the path "
 "you specify."
 msgstr ""
 
 #. module: auto_backup
-#: field:db.backup,sftp_user:0
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup_sftp_user
 msgid "Username in the SFTP Server"
 msgstr ""
 
 #. module: auto_backup
-#: view:db.backup:auto_backup.view_backup_conf_form
+#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
 msgid "Warning:"
 msgstr ""
 
 #. module: auto_backup
-#: view:db.backup:auto_backup.view_backup_conf_form
+#: model:ir.model,name:auto_backup.model_db_backup
+msgid "db.backup"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
 msgid "john"
 msgstr ""
 
 #. module: auto_backup
-#: view:db.backup:auto_backup.view_backup_conf_form
+#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
 msgid "sftp.example.com"
 msgstr ""
diff --git a/auto_backup/i18n/fr_CH.po b/auto_backup/i18n/fr_CH.po
new file mode 100644
index 00000000000..4bebbdc934a
--- /dev/null
+++ b/auto_backup/i18n/fr_CH.po
@@ -0,0 +1,317 @@
+# Translation of Odoo Server.
+# This file contains the translation of the following modules:
+# * auto_backup
+# 
+# Translators:
+# OCA Transbot <transbot@odoo-community.org>, 2016
+msgid ""
+msgstr ""
+"Project-Id-Version: Odoo Server 10.0\n"
+"Report-Msgid-Bugs-To: \n"
+"POT-Creation-Date: 2017-02-18 02:29+0000\n"
+"PO-Revision-Date: 2017-02-18 02:29+0000\n"
+"Last-Translator: OCA Transbot <transbot@odoo-community.org>, 2016\n"
+"Language-Team: French (Switzerland) (https://www.transifex.com/oca/teams/23907/fr_CH/)\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: \n"
+"Language: fr_CH\n"
+"Plural-Forms: nplurals=2; plural=(n > 1);\n"
+
+#. module: auto_backup
+#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+msgid "/home/odoo/.ssh/id_rsa"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,help:auto_backup.field_db_backup_folder
+msgid "Absolute path for storing the backups"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.actions.act_window,name:auto_backup.action_backup_conf_form
+#: model:ir.ui.menu,name:auto_backup.backup_conf_menu
+msgid "Automated Backups"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+msgid "Automatic backups of the database can be scheduled as follows:"
+msgstr ""
+
+#. module: auto_backup
+#: model:mail.message.subtype,name:auto_backup.mail_message_subtype_failure
+msgid "Backup Failed"
+msgstr ""
+
+#. module: auto_backup
+#: model:mail.message.subtype,name:auto_backup.mail_message_subtype_success
+msgid "Backup Successful"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_tree
+msgid "Backups"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,help:auto_backup.field_db_backup_days_to_keep
+msgid ""
+"Backups older than this will be deleted automatically. Set 0 to disable "
+"autodeletion."
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+msgid "Basic backup configuration"
+msgstr ""
+
+#. module: auto_backup
+#: sql_constraint:db.backup:0
+msgid "Cannot duplicate a configuration."
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,help:auto_backup.field_db_backup_method
+msgid "Choose the storage method for this backup."
+msgstr ""
+
+#. module: auto_backup
+#: code:addons/auto_backup/models/db_backup.py:251
+#, python-format
+msgid "Cleanup of old database backups failed."
+msgstr ""
+
+#. module: auto_backup
+#: code:addons/auto_backup/models/db_backup.py:131
+#, python-format
+msgid "Connection Test Failed!"
+msgstr ""
+
+#. module: auto_backup
+#: code:addons/auto_backup/models/db_backup.py:128
+#, python-format
+msgid "Connection Test Succeeded!"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup_create_uid
+msgid "Created by"
+msgstr "Cr???? par"
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup_create_date
+msgid "Created on"
+msgstr "Cr???? le"
+
+#. module: auto_backup
+#: code:addons/auto_backup/models/db_backup.py:206
+#: model:mail.message.subtype,description:auto_backup.mail_message_subtype_failure
+#, python-format
+msgid "Database backup failed."
+msgstr ""
+
+#. module: auto_backup
+#: code:addons/auto_backup/models/db_backup.py:214
+#: model:mail.message.subtype,description:auto_backup.mail_message_subtype_success
+#, python-format
+msgid "Database backup succeeded."
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup_days_to_keep
+msgid "Days to keep"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup_display_name
+msgid "Display Name"
+msgstr "Nom affich??"
+
+#. module: auto_backup
+#: code:addons/auto_backup/models/db_backup.py:119
+#, python-format
+msgid ""
+"Do not save backups on your filestore, or you will backup your backups too!"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.actions.server,name:auto_backup.action_server_backup
+msgid "Execute backup(s)"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup_folder
+msgid "Folder"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+msgid "Go to Settings / Technical / Automation / Scheduled Actions."
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+msgid "Help"
+msgstr ""
+
+#. module: auto_backup
+#: sql_constraint:db.backup:0
+msgid "I cannot remove backups from the future. Ask Doc for that."
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup_id
+msgid "ID"
+msgstr "ID"
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup___last_update
+msgid "Last Modified on"
+msgstr "Derni??re modification le"
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup_write_uid
+msgid "Last Updated by"
+msgstr "Modifi?? par"
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup_write_date
+msgid "Last Updated on"
+msgstr "Modifi?? le"
+
+#. module: auto_backup
+#: selection:db.backup,method:0
+msgid "Local disk"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup_method
+msgid "Method"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup_name
+msgid "Name"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,help:auto_backup.field_db_backup_sftp_private_key
+msgid ""
+"Path to the private key file. Only the Odoo user should have read "
+"permissions for that file."
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup_sftp_private_key
+msgid "Private key location"
+msgstr ""
+
+#. module: auto_backup
+#: selection:db.backup,method:0
+msgid "Remote SFTP server"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup_sftp_password
+msgid "SFTP Password"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup_sftp_port
+msgid "SFTP Port"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup_sftp_host
+msgid "SFTP Server"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+msgid "SFTP Settings"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_search
+msgid "Search options"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+msgid "Search the action named 'Backup scheduler'."
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+msgid ""
+"Set the scheduler to active and fill in how often you want backups "
+"generated."
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,help:auto_backup.field_db_backup_name
+msgid "Summary of this backup process"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+msgid "Test SFTP Connection"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,help:auto_backup.field_db_backup_sftp_host
+msgid ""
+"The host name or IP address from your remote server. For example 192.168.0.1"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,help:auto_backup.field_db_backup_sftp_password
+msgid ""
+"The password for the SFTP connection. If you specify a private key file, "
+"then this is the password to decrypt it."
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,help:auto_backup.field_db_backup_sftp_port
+msgid "The port on the FTP server that accepts SSH/SFTP calls."
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,help:auto_backup.field_db_backup_sftp_user
+msgid ""
+"The username where the SFTP connection should be made with. This is the user"
+" on the external server."
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+msgid ""
+"Use SFTP with caution! This writes files to external servers under the path "
+"you specify."
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup_sftp_user
+msgid "Username in the SFTP Server"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+msgid "Warning:"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model,name:auto_backup.model_db_backup
+msgid "db.backup"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+msgid "john"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+msgid "sftp.example.com"
+msgstr ""
diff --git a/auto_backup/i18n/gl.po b/auto_backup/i18n/gl.po
new file mode 100644
index 00000000000..6bc3d1a0a87
--- /dev/null
+++ b/auto_backup/i18n/gl.po
@@ -0,0 +1,317 @@
+# Translation of Odoo Server.
+# This file contains the translation of the following modules:
+# * auto_backup
+# 
+# Translators:
+# OCA Transbot <transbot@odoo-community.org>, 2016
+msgid ""
+msgstr ""
+"Project-Id-Version: Odoo Server 10.0\n"
+"Report-Msgid-Bugs-To: \n"
+"POT-Creation-Date: 2017-02-18 02:29+0000\n"
+"PO-Revision-Date: 2017-02-18 02:29+0000\n"
+"Last-Translator: OCA Transbot <transbot@odoo-community.org>, 2016\n"
+"Language-Team: Galician (https://www.transifex.com/oca/teams/23907/gl/)\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: \n"
+"Language: gl\n"
+"Plural-Forms: nplurals=2; plural=(n != 1);\n"
+
+#. module: auto_backup
+#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+msgid "/home/odoo/.ssh/id_rsa"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,help:auto_backup.field_db_backup_folder
+msgid "Absolute path for storing the backups"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.actions.act_window,name:auto_backup.action_backup_conf_form
+#: model:ir.ui.menu,name:auto_backup.backup_conf_menu
+msgid "Automated Backups"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+msgid "Automatic backups of the database can be scheduled as follows:"
+msgstr ""
+
+#. module: auto_backup
+#: model:mail.message.subtype,name:auto_backup.mail_message_subtype_failure
+msgid "Backup Failed"
+msgstr ""
+
+#. module: auto_backup
+#: model:mail.message.subtype,name:auto_backup.mail_message_subtype_success
+msgid "Backup Successful"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_tree
+msgid "Backups"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,help:auto_backup.field_db_backup_days_to_keep
+msgid ""
+"Backups older than this will be deleted automatically. Set 0 to disable "
+"autodeletion."
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+msgid "Basic backup configuration"
+msgstr ""
+
+#. module: auto_backup
+#: sql_constraint:db.backup:0
+msgid "Cannot duplicate a configuration."
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,help:auto_backup.field_db_backup_method
+msgid "Choose the storage method for this backup."
+msgstr ""
+
+#. module: auto_backup
+#: code:addons/auto_backup/models/db_backup.py:251
+#, python-format
+msgid "Cleanup of old database backups failed."
+msgstr ""
+
+#. module: auto_backup
+#: code:addons/auto_backup/models/db_backup.py:131
+#, python-format
+msgid "Connection Test Failed!"
+msgstr ""
+
+#. module: auto_backup
+#: code:addons/auto_backup/models/db_backup.py:128
+#, python-format
+msgid "Connection Test Succeeded!"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup_create_uid
+msgid "Created by"
+msgstr "Creada por"
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup_create_date
+msgid "Created on"
+msgstr "Creada en"
+
+#. module: auto_backup
+#: code:addons/auto_backup/models/db_backup.py:206
+#: model:mail.message.subtype,description:auto_backup.mail_message_subtype_failure
+#, python-format
+msgid "Database backup failed."
+msgstr ""
+
+#. module: auto_backup
+#: code:addons/auto_backup/models/db_backup.py:214
+#: model:mail.message.subtype,description:auto_backup.mail_message_subtype_success
+#, python-format
+msgid "Database backup succeeded."
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup_days_to_keep
+msgid "Days to keep"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup_display_name
+msgid "Display Name"
+msgstr ""
+
+#. module: auto_backup
+#: code:addons/auto_backup/models/db_backup.py:119
+#, python-format
+msgid ""
+"Do not save backups on your filestore, or you will backup your backups too!"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.actions.server,name:auto_backup.action_server_backup
+msgid "Execute backup(s)"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup_folder
+msgid "Folder"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+msgid "Go to Settings / Technical / Automation / Scheduled Actions."
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+msgid "Help"
+msgstr ""
+
+#. module: auto_backup
+#: sql_constraint:db.backup:0
+msgid "I cannot remove backups from the future. Ask Doc for that."
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup_id
+msgid "ID"
+msgstr "ID"
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup___last_update
+msgid "Last Modified on"
+msgstr "Modificado por ??ltima vez o"
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup_write_uid
+msgid "Last Updated by"
+msgstr "Actualizado por"
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup_write_date
+msgid "Last Updated on"
+msgstr "??ltima actualizaci??n"
+
+#. module: auto_backup
+#: selection:db.backup,method:0
+msgid "Local disk"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup_method
+msgid "Method"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup_name
+msgid "Name"
+msgstr "Nome"
+
+#. module: auto_backup
+#: model:ir.model.fields,help:auto_backup.field_db_backup_sftp_private_key
+msgid ""
+"Path to the private key file. Only the Odoo user should have read "
+"permissions for that file."
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup_sftp_private_key
+msgid "Private key location"
+msgstr ""
+
+#. module: auto_backup
+#: selection:db.backup,method:0
+msgid "Remote SFTP server"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup_sftp_password
+msgid "SFTP Password"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup_sftp_port
+msgid "SFTP Port"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup_sftp_host
+msgid "SFTP Server"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+msgid "SFTP Settings"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_search
+msgid "Search options"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+msgid "Search the action named 'Backup scheduler'."
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+msgid ""
+"Set the scheduler to active and fill in how often you want backups "
+"generated."
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,help:auto_backup.field_db_backup_name
+msgid "Summary of this backup process"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+msgid "Test SFTP Connection"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,help:auto_backup.field_db_backup_sftp_host
+msgid ""
+"The host name or IP address from your remote server. For example 192.168.0.1"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,help:auto_backup.field_db_backup_sftp_password
+msgid ""
+"The password for the SFTP connection. If you specify a private key file, "
+"then this is the password to decrypt it."
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,help:auto_backup.field_db_backup_sftp_port
+msgid "The port on the FTP server that accepts SSH/SFTP calls."
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,help:auto_backup.field_db_backup_sftp_user
+msgid ""
+"The username where the SFTP connection should be made with. This is the user"
+" on the external server."
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+msgid ""
+"Use SFTP with caution! This writes files to external servers under the path "
+"you specify."
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup_sftp_user
+msgid "Username in the SFTP Server"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+msgid "Warning:"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model,name:auto_backup.model_db_backup
+msgid "db.backup"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+msgid "john"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+msgid "sftp.example.com"
+msgstr ""
diff --git a/auto_backup/i18n/gl_ES.po b/auto_backup/i18n/gl_ES.po
new file mode 100644
index 00000000000..5f610d3f8c8
--- /dev/null
+++ b/auto_backup/i18n/gl_ES.po
@@ -0,0 +1,317 @@
+# Translation of Odoo Server.
+# This file contains the translation of the following modules:
+# * auto_backup
+# 
+# Translators:
+# OCA Transbot <transbot@odoo-community.org>, 2016
+msgid ""
+msgstr ""
+"Project-Id-Version: Odoo Server 10.0\n"
+"Report-Msgid-Bugs-To: \n"
+"POT-Creation-Date: 2016-12-08 03:36+0000\n"
+"PO-Revision-Date: 2016-12-08 03:36+0000\n"
+"Last-Translator: OCA Transbot <transbot@odoo-community.org>, 2016\n"
+"Language-Team: Galician (Spain) (https://www.transifex.com/oca/teams/23907/gl_ES/)\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: \n"
+"Language: gl_ES\n"
+"Plural-Forms: nplurals=2; plural=(n != 1);\n"
+
+#. module: auto_backup
+#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+msgid "/home/odoo/.ssh/id_rsa"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,help:auto_backup.field_db_backup_folder
+msgid "Absolute path for storing the backups"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.actions.act_window,name:auto_backup.action_backup_conf_form
+#: model:ir.ui.menu,name:auto_backup.backup_conf_menu
+msgid "Automated Backups"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+msgid "Automatic backups of the database can be scheduled as follows:"
+msgstr ""
+
+#. module: auto_backup
+#: model:mail.message.subtype,name:auto_backup.mail_message_subtype_failure
+msgid "Backup Failed"
+msgstr ""
+
+#. module: auto_backup
+#: model:mail.message.subtype,name:auto_backup.mail_message_subtype_success
+msgid "Backup Successful"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_tree
+msgid "Backups"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,help:auto_backup.field_db_backup_days_to_keep
+msgid ""
+"Backups older than this will be deleted automatically. Set 0 to disable "
+"autodeletion."
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+msgid "Basic backup configuration"
+msgstr ""
+
+#. module: auto_backup
+#: sql_constraint:db.backup:0
+msgid "Cannot duplicate a configuration."
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,help:auto_backup.field_db_backup_method
+msgid "Choose the storage method for this backup."
+msgstr ""
+
+#. module: auto_backup
+#: code:addons/auto_backup/models/db_backup.py:248
+#, python-format
+msgid "Cleanup of old database backups failed."
+msgstr ""
+
+#. module: auto_backup
+#: code:addons/auto_backup/models/db_backup.py:131
+#, python-format
+msgid "Connection Test Failed!"
+msgstr ""
+
+#. module: auto_backup
+#: code:addons/auto_backup/models/db_backup.py:128
+#, python-format
+msgid "Connection Test Succeeded!"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup_create_uid
+msgid "Created by"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup_create_date
+msgid "Created on"
+msgstr ""
+
+#. module: auto_backup
+#: code:addons/auto_backup/models/db_backup.py:206
+#: model:mail.message.subtype,description:auto_backup.mail_message_subtype_failure
+#, python-format
+msgid "Database backup failed."
+msgstr ""
+
+#. module: auto_backup
+#: code:addons/auto_backup/models/db_backup.py:211
+#: model:mail.message.subtype,description:auto_backup.mail_message_subtype_success
+#, python-format
+msgid "Database backup succeeded."
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup_days_to_keep
+msgid "Days to keep"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup_display_name
+msgid "Display Name"
+msgstr ""
+
+#. module: auto_backup
+#: code:addons/auto_backup/models/db_backup.py:119
+#, python-format
+msgid ""
+"Do not save backups on your filestore, or you will backup your backups too!"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.actions.server,name:auto_backup.action_server_backup
+msgid "Execute backup(s)"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup_folder
+msgid "Folder"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+msgid "Go to Settings / Technical / Automation / Scheduled Actions."
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+msgid "Help"
+msgstr ""
+
+#. module: auto_backup
+#: sql_constraint:db.backup:0
+msgid "I cannot remove backups from the future. Ask Doc for that."
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup_id
+msgid "ID"
+msgstr "ID"
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup___last_update
+msgid "Last Modified on"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup_write_uid
+msgid "Last Updated by"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup_write_date
+msgid "Last Updated on"
+msgstr ""
+
+#. module: auto_backup
+#: selection:db.backup,method:0
+msgid "Local disk"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup_method
+msgid "Method"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup_name
+msgid "Name"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,help:auto_backup.field_db_backup_sftp_private_key
+msgid ""
+"Path to the private key file. Only the Odoo user should have read "
+"permissions for that file."
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup_sftp_private_key
+msgid "Private key location"
+msgstr ""
+
+#. module: auto_backup
+#: selection:db.backup,method:0
+msgid "Remote SFTP server"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup_sftp_password
+msgid "SFTP Password"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup_sftp_port
+msgid "SFTP Port"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup_sftp_host
+msgid "SFTP Server"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+msgid "SFTP Settings"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_search
+msgid "Search options"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+msgid "Search the action named 'Backup scheduler'."
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+msgid ""
+"Set the scheduler to active and fill in how often you want backups "
+"generated."
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,help:auto_backup.field_db_backup_name
+msgid "Summary of this backup process"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+msgid "Test SFTP Connection"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,help:auto_backup.field_db_backup_sftp_host
+msgid ""
+"The host name or IP address from your remote server. For example 192.168.0.1"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,help:auto_backup.field_db_backup_sftp_password
+msgid ""
+"The password for the SFTP connection. If you specify a private key file, "
+"then this is the password to decrypt it."
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,help:auto_backup.field_db_backup_sftp_port
+msgid "The port on the FTP server that accepts SSH/SFTP calls."
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,help:auto_backup.field_db_backup_sftp_user
+msgid ""
+"The username where the SFTP connection should be made with. This is the user"
+" on the external server."
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+msgid ""
+"Use SFTP with caution! This writes files to external servers under the path "
+"you specify."
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup_sftp_user
+msgid "Username in the SFTP Server"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+msgid "Warning:"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model,name:auto_backup.model_db_backup
+msgid "db.backup"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+msgid "john"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+msgid "sftp.example.com"
+msgstr ""
diff --git a/auto_backup/i18n/he.po b/auto_backup/i18n/he.po
new file mode 100644
index 00000000000..d7d030a032c
--- /dev/null
+++ b/auto_backup/i18n/he.po
@@ -0,0 +1,317 @@
+# Translation of Odoo Server.
+# This file contains the translation of the following modules:
+# * auto_backup
+# 
+# Translators:
+# OCA Transbot <transbot@odoo-community.org>, 2016
+msgid ""
+msgstr ""
+"Project-Id-Version: Odoo Server 10.0\n"
+"Report-Msgid-Bugs-To: \n"
+"POT-Creation-Date: 2017-02-18 02:29+0000\n"
+"PO-Revision-Date: 2017-02-18 02:29+0000\n"
+"Last-Translator: OCA Transbot <transbot@odoo-community.org>, 2016\n"
+"Language-Team: Hebrew (https://www.transifex.com/oca/teams/23907/he/)\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: \n"
+"Language: he\n"
+"Plural-Forms: nplurals=2; plural=(n != 1);\n"
+
+#. module: auto_backup
+#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+msgid "/home/odoo/.ssh/id_rsa"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,help:auto_backup.field_db_backup_folder
+msgid "Absolute path for storing the backups"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.actions.act_window,name:auto_backup.action_backup_conf_form
+#: model:ir.ui.menu,name:auto_backup.backup_conf_menu
+msgid "Automated Backups"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+msgid "Automatic backups of the database can be scheduled as follows:"
+msgstr ""
+
+#. module: auto_backup
+#: model:mail.message.subtype,name:auto_backup.mail_message_subtype_failure
+msgid "Backup Failed"
+msgstr ""
+
+#. module: auto_backup
+#: model:mail.message.subtype,name:auto_backup.mail_message_subtype_success
+msgid "Backup Successful"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_tree
+msgid "Backups"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,help:auto_backup.field_db_backup_days_to_keep
+msgid ""
+"Backups older than this will be deleted automatically. Set 0 to disable "
+"autodeletion."
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+msgid "Basic backup configuration"
+msgstr ""
+
+#. module: auto_backup
+#: sql_constraint:db.backup:0
+msgid "Cannot duplicate a configuration."
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,help:auto_backup.field_db_backup_method
+msgid "Choose the storage method for this backup."
+msgstr ""
+
+#. module: auto_backup
+#: code:addons/auto_backup/models/db_backup.py:251
+#, python-format
+msgid "Cleanup of old database backups failed."
+msgstr ""
+
+#. module: auto_backup
+#: code:addons/auto_backup/models/db_backup.py:131
+#, python-format
+msgid "Connection Test Failed!"
+msgstr ""
+
+#. module: auto_backup
+#: code:addons/auto_backup/models/db_backup.py:128
+#, python-format
+msgid "Connection Test Succeeded!"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup_create_uid
+msgid "Created by"
+msgstr "???????? ???? ??????"
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup_create_date
+msgid "Created on"
+msgstr "???????? ??-"
+
+#. module: auto_backup
+#: code:addons/auto_backup/models/db_backup.py:206
+#: model:mail.message.subtype,description:auto_backup.mail_message_subtype_failure
+#, python-format
+msgid "Database backup failed."
+msgstr ""
+
+#. module: auto_backup
+#: code:addons/auto_backup/models/db_backup.py:214
+#: model:mail.message.subtype,description:auto_backup.mail_message_subtype_success
+#, python-format
+msgid "Database backup succeeded."
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup_days_to_keep
+msgid "Days to keep"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup_display_name
+msgid "Display Name"
+msgstr "?????? ??????????"
+
+#. module: auto_backup
+#: code:addons/auto_backup/models/db_backup.py:119
+#, python-format
+msgid ""
+"Do not save backups on your filestore, or you will backup your backups too!"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.actions.server,name:auto_backup.action_server_backup
+msgid "Execute backup(s)"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup_folder
+msgid "Folder"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+msgid "Go to Settings / Technical / Automation / Scheduled Actions."
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+msgid "Help"
+msgstr ""
+
+#. module: auto_backup
+#: sql_constraint:db.backup:0
+msgid "I cannot remove backups from the future. Ask Doc for that."
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup_id
+msgid "ID"
+msgstr "????????"
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup___last_update
+msgid "Last Modified on"
+msgstr "?????????? ?????????? ??????????"
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup_write_uid
+msgid "Last Updated by"
+msgstr "?????????? ?????????????? ???? ??????"
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup_write_date
+msgid "Last Updated on"
+msgstr "?????????? ?????????????? ????"
+
+#. module: auto_backup
+#: selection:db.backup,method:0
+msgid "Local disk"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup_method
+msgid "Method"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup_name
+msgid "Name"
+msgstr "????"
+
+#. module: auto_backup
+#: model:ir.model.fields,help:auto_backup.field_db_backup_sftp_private_key
+msgid ""
+"Path to the private key file. Only the Odoo user should have read "
+"permissions for that file."
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup_sftp_private_key
+msgid "Private key location"
+msgstr ""
+
+#. module: auto_backup
+#: selection:db.backup,method:0
+msgid "Remote SFTP server"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup_sftp_password
+msgid "SFTP Password"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup_sftp_port
+msgid "SFTP Port"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup_sftp_host
+msgid "SFTP Server"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+msgid "SFTP Settings"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_search
+msgid "Search options"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+msgid "Search the action named 'Backup scheduler'."
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+msgid ""
+"Set the scheduler to active and fill in how often you want backups "
+"generated."
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,help:auto_backup.field_db_backup_name
+msgid "Summary of this backup process"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+msgid "Test SFTP Connection"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,help:auto_backup.field_db_backup_sftp_host
+msgid ""
+"The host name or IP address from your remote server. For example 192.168.0.1"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,help:auto_backup.field_db_backup_sftp_password
+msgid ""
+"The password for the SFTP connection. If you specify a private key file, "
+"then this is the password to decrypt it."
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,help:auto_backup.field_db_backup_sftp_port
+msgid "The port on the FTP server that accepts SSH/SFTP calls."
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,help:auto_backup.field_db_backup_sftp_user
+msgid ""
+"The username where the SFTP connection should be made with. This is the user"
+" on the external server."
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+msgid ""
+"Use SFTP with caution! This writes files to external servers under the path "
+"you specify."
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup_sftp_user
+msgid "Username in the SFTP Server"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+msgid "Warning:"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model,name:auto_backup.model_db_backup
+msgid "db.backup"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+msgid "john"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+msgid "sftp.example.com"
+msgstr ""
diff --git a/auto_backup/i18n/hr.po b/auto_backup/i18n/hr.po
new file mode 100644
index 00000000000..e86d6ec6f59
--- /dev/null
+++ b/auto_backup/i18n/hr.po
@@ -0,0 +1,320 @@
+# Translation of Odoo Server.
+# This file contains the translation of the following modules:
+# * auto_backup
+# 
+# Translators:
+# OCA Transbot <transbot@odoo-community.org>, 2016
+# Bole <bole@dajmi5.com>, 2017
+msgid ""
+msgstr ""
+"Project-Id-Version: Odoo Server 10.0\n"
+"Report-Msgid-Bugs-To: \n"
+"POT-Creation-Date: 2017-06-01 14:58+0000\n"
+"PO-Revision-Date: 2017-06-01 14:58+0000\n"
+"Last-Translator: Bole <bole@dajmi5.com>, 2017\n"
+"Language-Team: Croatian (https://www.transifex.com/oca/teams/23907/hr/)\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: \n"
+"Language: hr\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: auto_backup
+#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+msgid "/home/odoo/.ssh/id_rsa"
+msgstr "/home/odoo/.ssh/id_rsa"
+
+#. module: auto_backup
+#: model:ir.model.fields,help:auto_backup.field_db_backup_folder
+msgid "Absolute path for storing the backups"
+msgstr "Apsolutna putanja za spremanje backupa"
+
+#. module: auto_backup
+#: model:ir.actions.act_window,name:auto_backup.action_backup_conf_form
+#: model:ir.ui.menu,name:auto_backup.backup_conf_menu
+msgid "Automated Backups"
+msgstr "Atuomatski backup"
+
+#. module: auto_backup
+#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+msgid "Automatic backups of the database can be scheduled as follows:"
+msgstr "Automatski backup baze mo??e biti zadan na sljede??i na??in:"
+
+#. module: auto_backup
+#: model:mail.message.subtype,name:auto_backup.mail_message_subtype_failure
+msgid "Backup Failed"
+msgstr "Backup nije uspio"
+
+#. module: auto_backup
+#: model:mail.message.subtype,name:auto_backup.mail_message_subtype_success
+msgid "Backup Successful"
+msgstr "Backup uspio"
+
+#. module: auto_backup
+#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_tree
+msgid "Backups"
+msgstr "Backupi"
+
+#. module: auto_backup
+#: model:ir.model.fields,help:auto_backup.field_db_backup_days_to_keep
+msgid ""
+"Backups older than this will be deleted automatically. Set 0 to disable "
+"autodeletion."
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+msgid "Basic backup configuration"
+msgstr "Osnovne postavke backupa"
+
+#. module: auto_backup
+#: sql_constraint:db.backup:0
+msgid "Cannot duplicate a configuration."
+msgstr "Nije mogu??e dupliciranje postavki."
+
+#. module: auto_backup
+#: model:ir.model.fields,help:auto_backup.field_db_backup_method
+msgid "Choose the storage method for this backup."
+msgstr "Odaberite metodu pohrane za ovaj backup."
+
+#. module: auto_backup
+#: code:addons/auto_backup/models/db_backup.py:253
+#, python-format
+msgid "Cleanup of old database backups failed."
+msgstr "??i????enje starih backup datoteka nije uspjelo."
+
+#. module: auto_backup
+#: code:addons/auto_backup/models/db_backup.py:133
+#, python-format
+msgid "Connection Test Failed!"
+msgstr "Provjera povezivanja nije uspjela!"
+
+#. module: auto_backup
+#: code:addons/auto_backup/models/db_backup.py:128
+#, python-format
+msgid "Connection Test Succeeded!"
+msgstr "Provjera povezivanja uspje??na!"
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup_create_uid
+msgid "Created by"
+msgstr "Kreirao"
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup_create_date
+msgid "Created on"
+msgstr "Kreirano "
+
+#. module: auto_backup
+#: code:addons/auto_backup/models/db_backup.py:208
+#: model:mail.message.subtype,description:auto_backup.mail_message_subtype_failure
+#, python-format
+msgid "Database backup failed."
+msgstr "Backup baze nije uspio."
+
+#. module: auto_backup
+#: code:addons/auto_backup/models/db_backup.py:216
+#: model:mail.message.subtype,description:auto_backup.mail_message_subtype_success
+#, python-format
+msgid "Database backup succeeded."
+msgstr "Backup baze uspje??an."
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup_days_to_keep
+msgid "Days to keep"
+msgstr "??uvati dana"
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup_display_name
+msgid "Display Name"
+msgstr "Prika??i naziv"
+
+#. module: auto_backup
+#: code:addons/auto_backup/models/db_backup.py:119
+#, python-format
+msgid ""
+"Do not save backups on your filestore, or you will backup your backups too!"
+msgstr ""
+"Nemojte ??uvati backup na va??em poslu??itelju me??u ostalim podacima, jer ??e se"
+" i on backupirati!"
+
+#. module: auto_backup
+#: model:ir.actions.server,name:auto_backup.action_server_backup
+msgid "Execute backup(s)"
+msgstr "Izvr??i backup(e)"
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup_folder
+msgid "Folder"
+msgstr "Folder"
+
+#. module: auto_backup
+#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+msgid "Go to Settings / Technical / Automation / Scheduled Actions."
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+msgid "Help"
+msgstr "Pomo??"
+
+#. module: auto_backup
+#: sql_constraint:db.backup:0
+msgid "I cannot remove backups from the future. Ask Doc for that."
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup_id
+msgid "ID"
+msgstr "ID"
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup___last_update
+msgid "Last Modified on"
+msgstr "Zadnja izmjena na"
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup_write_uid
+msgid "Last Updated by"
+msgstr "Zadnje a??uriranje izvr??io"
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup_write_date
+msgid "Last Updated on"
+msgstr "Zadnje a??uriranje na"
+
+#. module: auto_backup
+#: selection:db.backup,method:0
+msgid "Local disk"
+msgstr "Lokalni disk"
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup_method
+msgid "Method"
+msgstr "Metoda"
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup_name
+msgid "Name"
+msgstr "Ime"
+
+#. module: auto_backup
+#: model:ir.model.fields,help:auto_backup.field_db_backup_sftp_private_key
+msgid ""
+"Path to the private key file. Only the Odoo user should have read "
+"permissions for that file."
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup_sftp_private_key
+msgid "Private key location"
+msgstr "Lokacija privatnog klju??a"
+
+#. module: auto_backup
+#: selection:db.backup,method:0
+msgid "Remote SFTP server"
+msgstr "Udaljeni SFTP poslu??itelj"
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup_sftp_password
+msgid "SFTP Password"
+msgstr "SFTP Password"
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup_sftp_port
+msgid "SFTP Port"
+msgstr "SFTP Port"
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup_sftp_host
+msgid "SFTP Server"
+msgstr "SFTP Server"
+
+#. module: auto_backup
+#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+msgid "SFTP Settings"
+msgstr "SFTP Postavke"
+
+#. module: auto_backup
+#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_search
+msgid "Search options"
+msgstr "Opcije pretrage"
+
+#. module: auto_backup
+#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+msgid "Search the action named 'Backup scheduler'."
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+msgid ""
+"Set the scheduler to active and fill in how often you want backups "
+"generated."
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,help:auto_backup.field_db_backup_name
+msgid "Summary of this backup process"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+msgid "Test SFTP Connection"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,help:auto_backup.field_db_backup_sftp_host
+msgid ""
+"The host name or IP address from your remote server. For example 192.168.0.1"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,help:auto_backup.field_db_backup_sftp_password
+msgid ""
+"The password for the SFTP connection. If you specify a private key file, "
+"then this is the password to decrypt it."
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,help:auto_backup.field_db_backup_sftp_port
+msgid "The port on the FTP server that accepts SSH/SFTP calls."
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,help:auto_backup.field_db_backup_sftp_user
+msgid ""
+"The username where the SFTP connection should be made with. This is the user"
+" on the external server."
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+msgid ""
+"Use SFTP with caution! This writes files to external servers under the path "
+"you specify."
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup_sftp_user
+msgid "Username in the SFTP Server"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+msgid "Warning:"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model,name:auto_backup.model_db_backup
+msgid "db.backup"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+msgid "john"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+msgid "sftp.example.com"
+msgstr ""
diff --git a/auto_backup/i18n/hr_HR.po b/auto_backup/i18n/hr_HR.po
new file mode 100644
index 00000000000..812f187ca30
--- /dev/null
+++ b/auto_backup/i18n/hr_HR.po
@@ -0,0 +1,317 @@
+# Translation of Odoo Server.
+# This file contains the translation of the following modules:
+# * auto_backup
+# 
+# Translators:
+# OCA Transbot <transbot@odoo-community.org>, 2016
+msgid ""
+msgstr ""
+"Project-Id-Version: Odoo Server 10.0\n"
+"Report-Msgid-Bugs-To: \n"
+"POT-Creation-Date: 2017-02-22 00:54+0000\n"
+"PO-Revision-Date: 2017-02-22 00:54+0000\n"
+"Last-Translator: OCA Transbot <transbot@odoo-community.org>, 2016\n"
+"Language-Team: Croatian (Croatia) (https://www.transifex.com/oca/teams/23907/hr_HR/)\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: \n"
+"Language: hr_HR\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: auto_backup
+#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+msgid "/home/odoo/.ssh/id_rsa"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,help:auto_backup.field_db_backup_folder
+msgid "Absolute path for storing the backups"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.actions.act_window,name:auto_backup.action_backup_conf_form
+#: model:ir.ui.menu,name:auto_backup.backup_conf_menu
+msgid "Automated Backups"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+msgid "Automatic backups of the database can be scheduled as follows:"
+msgstr ""
+
+#. module: auto_backup
+#: model:mail.message.subtype,name:auto_backup.mail_message_subtype_failure
+msgid "Backup Failed"
+msgstr ""
+
+#. module: auto_backup
+#: model:mail.message.subtype,name:auto_backup.mail_message_subtype_success
+msgid "Backup Successful"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_tree
+msgid "Backups"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,help:auto_backup.field_db_backup_days_to_keep
+msgid ""
+"Backups older than this will be deleted automatically. Set 0 to disable "
+"autodeletion."
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+msgid "Basic backup configuration"
+msgstr ""
+
+#. module: auto_backup
+#: sql_constraint:db.backup:0
+msgid "Cannot duplicate a configuration."
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,help:auto_backup.field_db_backup_method
+msgid "Choose the storage method for this backup."
+msgstr ""
+
+#. module: auto_backup
+#: code:addons/auto_backup/models/db_backup.py:251
+#, python-format
+msgid "Cleanup of old database backups failed."
+msgstr ""
+
+#. module: auto_backup
+#: code:addons/auto_backup/models/db_backup.py:131
+#, python-format
+msgid "Connection Test Failed!"
+msgstr ""
+
+#. module: auto_backup
+#: code:addons/auto_backup/models/db_backup.py:128
+#, python-format
+msgid "Connection Test Succeeded!"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup_create_uid
+msgid "Created by"
+msgstr "Kreirao"
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup_create_date
+msgid "Created on"
+msgstr "Kreirano"
+
+#. module: auto_backup
+#: code:addons/auto_backup/models/db_backup.py:206
+#: model:mail.message.subtype,description:auto_backup.mail_message_subtype_failure
+#, python-format
+msgid "Database backup failed."
+msgstr ""
+
+#. module: auto_backup
+#: code:addons/auto_backup/models/db_backup.py:214
+#: model:mail.message.subtype,description:auto_backup.mail_message_subtype_success
+#, python-format
+msgid "Database backup succeeded."
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup_days_to_keep
+msgid "Days to keep"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup_display_name
+msgid "Display Name"
+msgstr "Naziv"
+
+#. module: auto_backup
+#: code:addons/auto_backup/models/db_backup.py:119
+#, python-format
+msgid ""
+"Do not save backups on your filestore, or you will backup your backups too!"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.actions.server,name:auto_backup.action_server_backup
+msgid "Execute backup(s)"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup_folder
+msgid "Folder"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+msgid "Go to Settings / Technical / Automation / Scheduled Actions."
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+msgid "Help"
+msgstr ""
+
+#. module: auto_backup
+#: sql_constraint:db.backup:0
+msgid "I cannot remove backups from the future. Ask Doc for that."
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup_id
+msgid "ID"
+msgstr "ID"
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup___last_update
+msgid "Last Modified on"
+msgstr "Zadnje modificirano"
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup_write_uid
+msgid "Last Updated by"
+msgstr "Zadnje a??urirao"
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup_write_date
+msgid "Last Updated on"
+msgstr "Zadnje a??urirano"
+
+#. module: auto_backup
+#: selection:db.backup,method:0
+msgid "Local disk"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup_method
+msgid "Method"
+msgstr "Metoda"
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup_name
+msgid "Name"
+msgstr "Naziv"
+
+#. module: auto_backup
+#: model:ir.model.fields,help:auto_backup.field_db_backup_sftp_private_key
+msgid ""
+"Path to the private key file. Only the Odoo user should have read "
+"permissions for that file."
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup_sftp_private_key
+msgid "Private key location"
+msgstr ""
+
+#. module: auto_backup
+#: selection:db.backup,method:0
+msgid "Remote SFTP server"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup_sftp_password
+msgid "SFTP Password"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup_sftp_port
+msgid "SFTP Port"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup_sftp_host
+msgid "SFTP Server"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+msgid "SFTP Settings"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_search
+msgid "Search options"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+msgid "Search the action named 'Backup scheduler'."
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+msgid ""
+"Set the scheduler to active and fill in how often you want backups "
+"generated."
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,help:auto_backup.field_db_backup_name
+msgid "Summary of this backup process"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+msgid "Test SFTP Connection"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,help:auto_backup.field_db_backup_sftp_host
+msgid ""
+"The host name or IP address from your remote server. For example 192.168.0.1"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,help:auto_backup.field_db_backup_sftp_password
+msgid ""
+"The password for the SFTP connection. If you specify a private key file, "
+"then this is the password to decrypt it."
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,help:auto_backup.field_db_backup_sftp_port
+msgid "The port on the FTP server that accepts SSH/SFTP calls."
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,help:auto_backup.field_db_backup_sftp_user
+msgid ""
+"The username where the SFTP connection should be made with. This is the user"
+" on the external server."
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+msgid ""
+"Use SFTP with caution! This writes files to external servers under the path "
+"you specify."
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup_sftp_user
+msgid "Username in the SFTP Server"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+msgid "Warning:"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model,name:auto_backup.model_db_backup
+msgid "db.backup"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+msgid "john"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+msgid "sftp.example.com"
+msgstr ""
diff --git a/auto_backup/i18n/hu.po b/auto_backup/i18n/hu.po
new file mode 100644
index 00000000000..96d6395768c
--- /dev/null
+++ b/auto_backup/i18n/hu.po
@@ -0,0 +1,317 @@
+# Translation of Odoo Server.
+# This file contains the translation of the following modules:
+# * auto_backup
+# 
+# Translators:
+# OCA Transbot <transbot@odoo-community.org>, 2016
+msgid ""
+msgstr ""
+"Project-Id-Version: Odoo Server 10.0\n"
+"Report-Msgid-Bugs-To: \n"
+"POT-Creation-Date: 2017-02-18 02:29+0000\n"
+"PO-Revision-Date: 2017-02-18 02:29+0000\n"
+"Last-Translator: OCA Transbot <transbot@odoo-community.org>, 2016\n"
+"Language-Team: Hungarian (https://www.transifex.com/oca/teams/23907/hu/)\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: \n"
+"Language: hu\n"
+"Plural-Forms: nplurals=2; plural=(n != 1);\n"
+
+#. module: auto_backup
+#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+msgid "/home/odoo/.ssh/id_rsa"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,help:auto_backup.field_db_backup_folder
+msgid "Absolute path for storing the backups"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.actions.act_window,name:auto_backup.action_backup_conf_form
+#: model:ir.ui.menu,name:auto_backup.backup_conf_menu
+msgid "Automated Backups"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+msgid "Automatic backups of the database can be scheduled as follows:"
+msgstr ""
+
+#. module: auto_backup
+#: model:mail.message.subtype,name:auto_backup.mail_message_subtype_failure
+msgid "Backup Failed"
+msgstr ""
+
+#. module: auto_backup
+#: model:mail.message.subtype,name:auto_backup.mail_message_subtype_success
+msgid "Backup Successful"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_tree
+msgid "Backups"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,help:auto_backup.field_db_backup_days_to_keep
+msgid ""
+"Backups older than this will be deleted automatically. Set 0 to disable "
+"autodeletion."
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+msgid "Basic backup configuration"
+msgstr ""
+
+#. module: auto_backup
+#: sql_constraint:db.backup:0
+msgid "Cannot duplicate a configuration."
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,help:auto_backup.field_db_backup_method
+msgid "Choose the storage method for this backup."
+msgstr ""
+
+#. module: auto_backup
+#: code:addons/auto_backup/models/db_backup.py:251
+#, python-format
+msgid "Cleanup of old database backups failed."
+msgstr ""
+
+#. module: auto_backup
+#: code:addons/auto_backup/models/db_backup.py:131
+#, python-format
+msgid "Connection Test Failed!"
+msgstr ""
+
+#. module: auto_backup
+#: code:addons/auto_backup/models/db_backup.py:128
+#, python-format
+msgid "Connection Test Succeeded!"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup_create_uid
+msgid "Created by"
+msgstr "K??sz??tette"
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup_create_date
+msgid "Created on"
+msgstr "L??trehoz??s d??tuma"
+
+#. module: auto_backup
+#: code:addons/auto_backup/models/db_backup.py:206
+#: model:mail.message.subtype,description:auto_backup.mail_message_subtype_failure
+#, python-format
+msgid "Database backup failed."
+msgstr ""
+
+#. module: auto_backup
+#: code:addons/auto_backup/models/db_backup.py:214
+#: model:mail.message.subtype,description:auto_backup.mail_message_subtype_success
+#, python-format
+msgid "Database backup succeeded."
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup_days_to_keep
+msgid "Days to keep"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup_display_name
+msgid "Display Name"
+msgstr "N??v megjelen??t??se"
+
+#. module: auto_backup
+#: code:addons/auto_backup/models/db_backup.py:119
+#, python-format
+msgid ""
+"Do not save backups on your filestore, or you will backup your backups too!"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.actions.server,name:auto_backup.action_server_backup
+msgid "Execute backup(s)"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup_folder
+msgid "Folder"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+msgid "Go to Settings / Technical / Automation / Scheduled Actions."
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+msgid "Help"
+msgstr ""
+
+#. module: auto_backup
+#: sql_constraint:db.backup:0
+msgid "I cannot remove backups from the future. Ask Doc for that."
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup_id
+msgid "ID"
+msgstr "Azonos??t?? ID"
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup___last_update
+msgid "Last Modified on"
+msgstr "Utols?? friss??t??s d??tuma"
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup_write_uid
+msgid "Last Updated by"
+msgstr "Utolj??ra friss??tve, ??ltal"
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup_write_date
+msgid "Last Updated on"
+msgstr "Utolj??ra friss??tve ekkor"
+
+#. module: auto_backup
+#: selection:db.backup,method:0
+msgid "Local disk"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup_method
+msgid "Method"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup_name
+msgid "Name"
+msgstr "N??v"
+
+#. module: auto_backup
+#: model:ir.model.fields,help:auto_backup.field_db_backup_sftp_private_key
+msgid ""
+"Path to the private key file. Only the Odoo user should have read "
+"permissions for that file."
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup_sftp_private_key
+msgid "Private key location"
+msgstr ""
+
+#. module: auto_backup
+#: selection:db.backup,method:0
+msgid "Remote SFTP server"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup_sftp_password
+msgid "SFTP Password"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup_sftp_port
+msgid "SFTP Port"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup_sftp_host
+msgid "SFTP Server"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+msgid "SFTP Settings"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_search
+msgid "Search options"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+msgid "Search the action named 'Backup scheduler'."
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+msgid ""
+"Set the scheduler to active and fill in how often you want backups "
+"generated."
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,help:auto_backup.field_db_backup_name
+msgid "Summary of this backup process"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+msgid "Test SFTP Connection"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,help:auto_backup.field_db_backup_sftp_host
+msgid ""
+"The host name or IP address from your remote server. For example 192.168.0.1"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,help:auto_backup.field_db_backup_sftp_password
+msgid ""
+"The password for the SFTP connection. If you specify a private key file, "
+"then this is the password to decrypt it."
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,help:auto_backup.field_db_backup_sftp_port
+msgid "The port on the FTP server that accepts SSH/SFTP calls."
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,help:auto_backup.field_db_backup_sftp_user
+msgid ""
+"The username where the SFTP connection should be made with. This is the user"
+" on the external server."
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+msgid ""
+"Use SFTP with caution! This writes files to external servers under the path "
+"you specify."
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup_sftp_user
+msgid "Username in the SFTP Server"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+msgid "Warning:"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model,name:auto_backup.model_db_backup
+msgid "db.backup"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+msgid "john"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+msgid "sftp.example.com"
+msgstr ""
diff --git a/auto_backup/i18n/id.po b/auto_backup/i18n/id.po
new file mode 100644
index 00000000000..b85fad2e40d
--- /dev/null
+++ b/auto_backup/i18n/id.po
@@ -0,0 +1,317 @@
+# Translation of Odoo Server.
+# This file contains the translation of the following modules:
+# * auto_backup
+# 
+# Translators:
+# OCA Transbot <transbot@odoo-community.org>, 2016
+msgid ""
+msgstr ""
+"Project-Id-Version: Odoo Server 10.0\n"
+"Report-Msgid-Bugs-To: \n"
+"POT-Creation-Date: 2017-02-18 02:29+0000\n"
+"PO-Revision-Date: 2017-02-18 02:29+0000\n"
+"Last-Translator: OCA Transbot <transbot@odoo-community.org>, 2016\n"
+"Language-Team: Indonesian (https://www.transifex.com/oca/teams/23907/id/)\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: \n"
+"Language: id\n"
+"Plural-Forms: nplurals=1; plural=0;\n"
+
+#. module: auto_backup
+#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+msgid "/home/odoo/.ssh/id_rsa"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,help:auto_backup.field_db_backup_folder
+msgid "Absolute path for storing the backups"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.actions.act_window,name:auto_backup.action_backup_conf_form
+#: model:ir.ui.menu,name:auto_backup.backup_conf_menu
+msgid "Automated Backups"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+msgid "Automatic backups of the database can be scheduled as follows:"
+msgstr ""
+
+#. module: auto_backup
+#: model:mail.message.subtype,name:auto_backup.mail_message_subtype_failure
+msgid "Backup Failed"
+msgstr ""
+
+#. module: auto_backup
+#: model:mail.message.subtype,name:auto_backup.mail_message_subtype_success
+msgid "Backup Successful"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_tree
+msgid "Backups"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,help:auto_backup.field_db_backup_days_to_keep
+msgid ""
+"Backups older than this will be deleted automatically. Set 0 to disable "
+"autodeletion."
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+msgid "Basic backup configuration"
+msgstr ""
+
+#. module: auto_backup
+#: sql_constraint:db.backup:0
+msgid "Cannot duplicate a configuration."
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,help:auto_backup.field_db_backup_method
+msgid "Choose the storage method for this backup."
+msgstr ""
+
+#. module: auto_backup
+#: code:addons/auto_backup/models/db_backup.py:251
+#, python-format
+msgid "Cleanup of old database backups failed."
+msgstr ""
+
+#. module: auto_backup
+#: code:addons/auto_backup/models/db_backup.py:131
+#, python-format
+msgid "Connection Test Failed!"
+msgstr ""
+
+#. module: auto_backup
+#: code:addons/auto_backup/models/db_backup.py:128
+#, python-format
+msgid "Connection Test Succeeded!"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup_create_uid
+msgid "Created by"
+msgstr "Dibuat oleh"
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup_create_date
+msgid "Created on"
+msgstr "Dibuat pada"
+
+#. module: auto_backup
+#: code:addons/auto_backup/models/db_backup.py:206
+#: model:mail.message.subtype,description:auto_backup.mail_message_subtype_failure
+#, python-format
+msgid "Database backup failed."
+msgstr ""
+
+#. module: auto_backup
+#: code:addons/auto_backup/models/db_backup.py:214
+#: model:mail.message.subtype,description:auto_backup.mail_message_subtype_success
+#, python-format
+msgid "Database backup succeeded."
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup_days_to_keep
+msgid "Days to keep"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup_display_name
+msgid "Display Name"
+msgstr "Nama Tampilan"
+
+#. module: auto_backup
+#: code:addons/auto_backup/models/db_backup.py:119
+#, python-format
+msgid ""
+"Do not save backups on your filestore, or you will backup your backups too!"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.actions.server,name:auto_backup.action_server_backup
+msgid "Execute backup(s)"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup_folder
+msgid "Folder"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+msgid "Go to Settings / Technical / Automation / Scheduled Actions."
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+msgid "Help"
+msgstr ""
+
+#. module: auto_backup
+#: sql_constraint:db.backup:0
+msgid "I cannot remove backups from the future. Ask Doc for that."
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup_id
+msgid "ID"
+msgstr "ID"
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup___last_update
+msgid "Last Modified on"
+msgstr "Terakhir Dimodifikasi pada"
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup_write_uid
+msgid "Last Updated by"
+msgstr "Diperbaharui oleh"
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup_write_date
+msgid "Last Updated on"
+msgstr "Diperbaharui pada"
+
+#. module: auto_backup
+#: selection:db.backup,method:0
+msgid "Local disk"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup_method
+msgid "Method"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup_name
+msgid "Name"
+msgstr "Nama"
+
+#. module: auto_backup
+#: model:ir.model.fields,help:auto_backup.field_db_backup_sftp_private_key
+msgid ""
+"Path to the private key file. Only the Odoo user should have read "
+"permissions for that file."
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup_sftp_private_key
+msgid "Private key location"
+msgstr ""
+
+#. module: auto_backup
+#: selection:db.backup,method:0
+msgid "Remote SFTP server"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup_sftp_password
+msgid "SFTP Password"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup_sftp_port
+msgid "SFTP Port"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup_sftp_host
+msgid "SFTP Server"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+msgid "SFTP Settings"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_search
+msgid "Search options"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+msgid "Search the action named 'Backup scheduler'."
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+msgid ""
+"Set the scheduler to active and fill in how often you want backups "
+"generated."
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,help:auto_backup.field_db_backup_name
+msgid "Summary of this backup process"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+msgid "Test SFTP Connection"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,help:auto_backup.field_db_backup_sftp_host
+msgid ""
+"The host name or IP address from your remote server. For example 192.168.0.1"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,help:auto_backup.field_db_backup_sftp_password
+msgid ""
+"The password for the SFTP connection. If you specify a private key file, "
+"then this is the password to decrypt it."
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,help:auto_backup.field_db_backup_sftp_port
+msgid "The port on the FTP server that accepts SSH/SFTP calls."
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,help:auto_backup.field_db_backup_sftp_user
+msgid ""
+"The username where the SFTP connection should be made with. This is the user"
+" on the external server."
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+msgid ""
+"Use SFTP with caution! This writes files to external servers under the path "
+"you specify."
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup_sftp_user
+msgid "Username in the SFTP Server"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+msgid "Warning:"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model,name:auto_backup.model_db_backup
+msgid "db.backup"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+msgid "john"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+msgid "sftp.example.com"
+msgstr ""
diff --git a/auto_backup/i18n/it.po b/auto_backup/i18n/it.po
index 1a984b425ff..7118a11976a 100644
--- a/auto_backup/i18n/it.po
+++ b/auto_backup/i18n/it.po
@@ -3,15 +3,15 @@
 # * auto_backup
 # 
 # Translators:
-# Paolo Valier, 2016
+# OCA Transbot <transbot@odoo-community.org>, 2016
 msgid ""
 msgstr ""
-"Project-Id-Version: server-tools (8.0)\n"
+"Project-Id-Version: Odoo Server 10.0\n"
 "Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2016-07-28 00:59+0000\n"
-"PO-Revision-Date: 2016-07-31 09:02+0000\n"
-"Last-Translator: Paolo Valier\n"
-"Language-Team: Italian (http://www.transifex.com/oca/OCA-server-tools-8-0/language/it/)\n"
+"POT-Creation-Date: 2017-06-01 14:58+0000\n"
+"PO-Revision-Date: 2017-06-01 14:58+0000\n"
+"Last-Translator: OCA Transbot <transbot@odoo-community.org>, 2016\n"
+"Language-Team: Italian (https://www.transifex.com/oca/teams/23907/it/)\n"
 "MIME-Version: 1.0\n"
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: \n"
@@ -19,12 +19,12 @@ msgstr ""
 "Plural-Forms: nplurals=2; plural=(n != 1);\n"
 
 #. module: auto_backup
-#: view:db.backup:auto_backup.view_backup_conf_form
+#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
 msgid "/home/odoo/.ssh/id_rsa"
 msgstr "/home/odoo/.ssh/id_rsa"
 
 #. module: auto_backup
-#: help:db.backup,folder:0
+#: model:ir.model.fields,help:auto_backup.field_db_backup_folder
 msgid "Absolute path for storing the backups"
 msgstr "Percorso assoluto per il salvataggio del DB"
 
@@ -35,34 +35,36 @@ msgid "Automated Backups"
 msgstr "Backup automatici"
 
 #. module: auto_backup
-#: view:db.backup:auto_backup.view_backup_conf_form
+#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
 msgid "Automatic backups of the database can be scheduled as follows:"
 msgstr "Il backup automatico del DB ?? pianificato come segue:"
 
 #. module: auto_backup
-#: model:mail.message.subtype,name:auto_backup.failure
-msgid "Backup failed"
-msgstr "Backup non riuscito"
+#: model:mail.message.subtype,name:auto_backup.mail_message_subtype_failure
+msgid "Backup Failed"
+msgstr "Backup Fallito"
 
 #. module: auto_backup
-#: model:mail.message.subtype,name:auto_backup.success
-msgid "Backup successful"
-msgstr "Backup riuscito"
+#: model:mail.message.subtype,name:auto_backup.mail_message_subtype_success
+msgid "Backup Successful"
+msgstr "Backup Riuscito"
 
 #. module: auto_backup
-#: view:db.backup:auto_backup.view_backup_conf_tree
+#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_tree
 msgid "Backups"
 msgstr "Backups"
 
 #. module: auto_backup
-#: help:db.backup,days_to_keep:0
+#: model:ir.model.fields,help:auto_backup.field_db_backup_days_to_keep
 msgid ""
 "Backups older than this will be deleted automatically. Set 0 to disable "
 "autodeletion."
-msgstr "I Backup antecedenti questo numero di giorni saranno eliminati automaticamente. Impostare a 0 per disattivare l'eliminazione automatica."
+msgstr ""
+"I Backup antecedenti questo numero di giorni saranno eliminati "
+"automaticamente. Impostare a 0 per disattivare l'eliminazione automatica."
 
 #. module: auto_backup
-#: view:db.backup:auto_backup.view_backup_conf_form
+#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
 msgid "Basic backup configuration"
 msgstr "Configurazione di base del Backup"
 
@@ -72,18 +74,18 @@ msgid "Cannot duplicate a configuration."
 msgstr "Impossibile duplicare una configurazione."
 
 #. module: auto_backup
-#: help:db.backup,method:0
+#: model:ir.model.fields,help:auto_backup.field_db_backup_method
 msgid "Choose the storage method for this backup."
 msgstr "Scegliere il tipo di archiviazione per questo metodo di backup. "
 
 #. module: auto_backup
-#: code:addons/auto_backup/models/db_backup.py:247
+#: code:addons/auto_backup/models/db_backup.py:253
 #, python-format
 msgid "Cleanup of old database backups failed."
 msgstr "Eliminazione dei vecchi backup di database non riuscita."
 
 #. module: auto_backup
-#: code:addons/auto_backup/models/db_backup.py:131
+#: code:addons/auto_backup/models/db_backup.py:133
 #, python-format
 msgid "Connection Test Failed!"
 msgstr "Test connessione Fallito!"
@@ -95,41 +97,36 @@ msgid "Connection Test Succeeded!"
 msgstr "Test connessione avvenuto con successo!"
 
 #. module: auto_backup
-#: field:db.backup,create_uid:0
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup_create_uid
 msgid "Created by"
 msgstr "Creato da"
 
 #. module: auto_backup
-#: field:db.backup,create_date:0
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup_create_date
 msgid "Created on"
 msgstr "Creato il"
 
 #. module: auto_backup
-#: code:addons/auto_backup/models/db_backup.py:206
-#: model:mail.message.subtype,description:auto_backup.failure
+#: code:addons/auto_backup/models/db_backup.py:208
+#: model:mail.message.subtype,description:auto_backup.mail_message_subtype_failure
 #, python-format
 msgid "Database backup failed."
 msgstr "Backup del Database non riuscito."
 
 #. module: auto_backup
-#: code:addons/auto_backup/models/db_backup.py:211
-#: model:mail.message.subtype,description:auto_backup.success
+#: code:addons/auto_backup/models/db_backup.py:216
+#: model:mail.message.subtype,description:auto_backup.mail_message_subtype_success
 #, python-format
 msgid "Database backup succeeded."
 msgstr "Backup del Database riuscito."
 
 #. module: auto_backup
-#: help:db.backup,message_last_post:0
-msgid "Date of the last message posted on the record."
-msgstr "Data dell'ultimo messaggio aggiunto al record."
-
-#. module: auto_backup
-#: field:db.backup,days_to_keep:0
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup_days_to_keep
 msgid "Days to keep"
 msgstr "Giorni da conservare"
 
 #. module: auto_backup
-#: field:db.backup,display_name:0
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup_display_name
 msgid "Display Name"
 msgstr "Nome da visualizzare"
 
@@ -138,12 +135,9 @@ msgstr "Nome da visualizzare"
 #, python-format
 msgid ""
 "Do not save backups on your filestore, or you will backup your backups too!"
-msgstr "Non salvare i backup nel proprio filestore altrimenti verr?? eseguita una copia di backup anche dei propri backup!"
-
-#. module: auto_backup
-#: model:ir.model,name:auto_backup.model_db_backup
-msgid "Email Thread"
-msgstr "Discussione Email"
+msgstr ""
+"Non salvare i backup nel proprio filestore altrimenti verr?? eseguita una "
+"copia di backup anche dei propri backup!"
 
 #. module: auto_backup
 #: model:ir.actions.server,name:auto_backup.action_server_backup
@@ -151,69 +145,45 @@ msgid "Execute backup(s)"
 msgstr "Esegui backup(s)"
 
 #. module: auto_backup
-#: field:db.backup,folder:0
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup_folder
 msgid "Folder"
 msgstr "Cartella"
 
 #. module: auto_backup
-#: field:db.backup,message_follower_ids:0
-msgid "Followers"
-msgstr "Followers"
-
-#. module: auto_backup
-#: view:db.backup:auto_backup.view_backup_conf_form
+#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
 msgid "Go to Settings / Technical / Automation / Scheduled Actions."
-msgstr "Andare in  Configurazione / Funzioni Tecniche / Automazione / Azioni Programmate."
+msgstr ""
+"Andare in  Configurazione / Funzioni Tecniche / Automazione / Azioni "
+"Programmate."
 
 #. module: auto_backup
-#: view:db.backup:auto_backup.view_backup_conf_form
+#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
 msgid "Help"
 msgstr "Aiuto"
 
-#. module: auto_backup
-#: help:db.backup,message_summary:0
-msgid ""
-"Holds the Chatter summary (number of messages, ...). This summary is "
-"directly in html format in order to be inserted in kanban views."
-msgstr "Contiene il riepilogo Chatter (numero di messaggi, ...). Questa sintesi ?? direttamente in formato HTML, al fine di essere inserita nelle viste kanban."
-
 #. module: auto_backup
 #: sql_constraint:db.backup:0
 msgid "I cannot remove backups from the future. Ask Doc for that."
-msgstr "Impossibile rimuovere backup dal futuro. Cercare nella Documentazione."
+msgstr ""
+"Impossibile rimuovere backup dal futuro. Cercare nella Documentazione."
 
 #. module: auto_backup
-#: field:db.backup,id:0
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup_id
 msgid "ID"
 msgstr "ID"
 
 #. module: auto_backup
-#: help:db.backup,message_unread:0
-msgid "If checked new messages require your attention."
-msgstr "Se selezionato i nuovi messaggi richiedono la tua attenzione."
-
-#. module: auto_backup
-#: field:db.backup,message_is_follower:0
-msgid "Is a Follower"
-msgstr "?? un follower"
-
-#. module: auto_backup
-#: field:db.backup,message_last_post:0
-msgid "Last Message Date"
-msgstr "Data dell'ultimo messaggio"
-
-#. module: auto_backup
-#: field:db.backup,__last_update:0
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup___last_update
 msgid "Last Modified on"
 msgstr "Ultima modifica il"
 
 #. module: auto_backup
-#: field:db.backup,write_uid:0
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup_write_uid
 msgid "Last Updated by"
 msgstr "Ultimo aggiornamento di"
 
 #. module: auto_backup
-#: field:db.backup,write_date:0
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup_write_date
 msgid "Last Updated on"
 msgstr "Ultimo aggiornamento il"
 
@@ -223,34 +193,26 @@ msgid "Local disk"
 msgstr "Disco locale"
 
 #. module: auto_backup
-#: field:db.backup,message_ids:0
-msgid "Messages"
-msgstr "Messaggi"
-
-#. module: auto_backup
-#: help:db.backup,message_ids:0
-msgid "Messages and communication history"
-msgstr "Messaggi e storico comunicazioni"
-
-#. module: auto_backup
-#: field:db.backup,method:0
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup_method
 msgid "Method"
 msgstr "Metodo"
 
 #. module: auto_backup
-#: field:db.backup,name:0
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup_name
 msgid "Name"
 msgstr "Nome"
 
 #. module: auto_backup
-#: help:db.backup,sftp_private_key:0
+#: model:ir.model.fields,help:auto_backup.field_db_backup_sftp_private_key
 msgid ""
 "Path to the private key file. Only the Odoo user should have read "
 "permissions for that file."
-msgstr "Percorso al file della chiave privata. Soltanto l'utente Odoo dovrebbe avere il permesso in lettura di questo file."
+msgstr ""
+"Percorso al file della chiave privata. Soltanto l'utente Odoo dovrebbe avere"
+" il permesso in lettura di questo file."
 
 #. module: auto_backup
-#: field:db.backup,sftp_private_key:0
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup_sftp_private_key
 msgid "Private key location"
 msgstr "Posizione chiave privata"
 
@@ -260,110 +222,114 @@ msgid "Remote SFTP server"
 msgstr "Server SFTP remoto"
 
 #. module: auto_backup
-#: field:db.backup,sftp_password:0
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup_sftp_password
 msgid "SFTP Password"
 msgstr "Password SFTP"
 
 #. module: auto_backup
-#: field:db.backup,sftp_port:0
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup_sftp_port
 msgid "SFTP Port"
 msgstr "Porta SFTP"
 
 #. module: auto_backup
-#: field:db.backup,sftp_host:0
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup_sftp_host
 msgid "SFTP Server"
 msgstr "Server SFTP"
 
 #. module: auto_backup
-#: view:db.backup:auto_backup.view_backup_conf_form
+#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
 msgid "SFTP Settings"
 msgstr "Impostazioni SFTP"
 
 #. module: auto_backup
-#: view:db.backup:auto_backup.view_backup_conf_search
+#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_search
 msgid "Search options"
 msgstr "Opzioni di ricerca"
 
 #. module: auto_backup
-#: view:db.backup:auto_backup.view_backup_conf_form
+#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
 msgid "Search the action named 'Backup scheduler'."
 msgstr "Cerca l'azione denominata 'Pianificazione del backup'."
 
 #. module: auto_backup
-#: view:db.backup:auto_backup.view_backup_conf_form
+#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
 msgid ""
 "Set the scheduler to active and fill in how often you want backups "
 "generated."
-msgstr "Impostare lo scheduler per attivare e compilare la frequenza con cui si desidera generare il backup."
-
-#. module: auto_backup
-#: field:db.backup,message_summary:0
-msgid "Summary"
-msgstr "Riepilogo"
+msgstr ""
+"Impostare lo scheduler per attivare e compilare la frequenza con cui si "
+"desidera generare il backup."
 
 #. module: auto_backup
-#: help:db.backup,name:0
+#: model:ir.model.fields,help:auto_backup.field_db_backup_name
 msgid "Summary of this backup process"
 msgstr "Riepilogo di questo processo di backup"
 
 #. module: auto_backup
-#: view:db.backup:auto_backup.view_backup_conf_form
+#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
 msgid "Test SFTP Connection"
 msgstr "Prova Connessione SFTP"
 
 #. module: auto_backup
-#: help:db.backup,sftp_host:0
+#: model:ir.model.fields,help:auto_backup.field_db_backup_sftp_host
 msgid ""
 "The host name or IP address from your remote server. For example 192.168.0.1"
-msgstr "Il nome host o l'indirizzo IP del tuo server remoto. Per esempio 192.168.0.1"
+msgstr ""
+"Il nome host o l'indirizzo IP del tuo server remoto. Per esempio 192.168.0.1"
 
 #. module: auto_backup
-#: help:db.backup,sftp_password:0
+#: model:ir.model.fields,help:auto_backup.field_db_backup_sftp_password
 msgid ""
 "The password for the SFTP connection. If you specify a private key file, "
 "then this is the password to decrypt it."
-msgstr "La password per la connessione SFTP. Se viene specificato un file per la chiave privata, allora questo ?? la password per decodificarla."
+msgstr ""
+"La password per la connessione SFTP. Se viene specificato un file per la "
+"chiave privata, allora questo ?? la password per decodificarla."
 
 #. module: auto_backup
-#: help:db.backup,sftp_port:0
+#: model:ir.model.fields,help:auto_backup.field_db_backup_sftp_port
 msgid "The port on the FTP server that accepts SSH/SFTP calls."
 msgstr "La porta sul server FTP che accetta chiamate SSH/SFTP."
 
 #. module: auto_backup
-#: help:db.backup,sftp_user:0
+#: model:ir.model.fields,help:auto_backup.field_db_backup_sftp_user
 msgid ""
 "The username where the SFTP connection should be made with. This is the user"
 " on the external server."
-msgstr "Il nome utente per la connessione SFTP. Questo ?? l'utente sul server esterno."
-
-#. module: auto_backup
-#: field:db.backup,message_unread:0
-msgid "Unread Messages"
-msgstr "Messaggi non letti"
+msgstr ""
+"Il nome utente per la connessione SFTP. Questo ?? l'utente sul server "
+"esterno."
 
 #. module: auto_backup
-#: view:db.backup:auto_backup.view_backup_conf_form
+#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
 msgid ""
 "Use SFTP with caution! This writes files to external servers under the path "
 "you specify."
-msgstr "Usare SFTP con cautela! Questa modalit?? scrive file nel percorso specificato su server esterni."
+msgstr ""
+"Usare SFTP con cautela! Questa modalit?? scrive file nel percorso specificato"
+" su server esterni."
 
 #. module: auto_backup
-#: field:db.backup,sftp_user:0
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup_sftp_user
 msgid "Username in the SFTP Server"
 msgstr "Nome utente presso il Server SFTP"
 
 #. module: auto_backup
-#: view:db.backup:auto_backup.view_backup_conf_form
+#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
 msgid "Warning:"
 msgstr "Avviso:"
 
 #. module: auto_backup
-#: view:db.backup:auto_backup.view_backup_conf_form
+#: model:ir.model,name:auto_backup.model_db_backup
+msgid "db.backup"
+msgstr "db.backup"
+
+#. module: auto_backup
+#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
 msgid "john"
 msgstr "john"
 
 #. module: auto_backup
-#: view:db.backup:auto_backup.view_backup_conf_form
+#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
 msgid "sftp.example.com"
 msgstr "sftp.example.com"
diff --git a/auto_backup/i18n/ja.po b/auto_backup/i18n/ja.po
new file mode 100644
index 00000000000..6f829638212
--- /dev/null
+++ b/auto_backup/i18n/ja.po
@@ -0,0 +1,317 @@
+# Translation of Odoo Server.
+# This file contains the translation of the following modules:
+# * auto_backup
+# 
+# Translators:
+# OCA Transbot <transbot@odoo-community.org>, 2016
+msgid ""
+msgstr ""
+"Project-Id-Version: Odoo Server 10.0\n"
+"Report-Msgid-Bugs-To: \n"
+"POT-Creation-Date: 2017-02-18 02:29+0000\n"
+"PO-Revision-Date: 2017-02-18 02:29+0000\n"
+"Last-Translator: OCA Transbot <transbot@odoo-community.org>, 2016\n"
+"Language-Team: Japanese (https://www.transifex.com/oca/teams/23907/ja/)\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: \n"
+"Language: ja\n"
+"Plural-Forms: nplurals=1; plural=0;\n"
+
+#. module: auto_backup
+#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+msgid "/home/odoo/.ssh/id_rsa"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,help:auto_backup.field_db_backup_folder
+msgid "Absolute path for storing the backups"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.actions.act_window,name:auto_backup.action_backup_conf_form
+#: model:ir.ui.menu,name:auto_backup.backup_conf_menu
+msgid "Automated Backups"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+msgid "Automatic backups of the database can be scheduled as follows:"
+msgstr ""
+
+#. module: auto_backup
+#: model:mail.message.subtype,name:auto_backup.mail_message_subtype_failure
+msgid "Backup Failed"
+msgstr ""
+
+#. module: auto_backup
+#: model:mail.message.subtype,name:auto_backup.mail_message_subtype_success
+msgid "Backup Successful"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_tree
+msgid "Backups"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,help:auto_backup.field_db_backup_days_to_keep
+msgid ""
+"Backups older than this will be deleted automatically. Set 0 to disable "
+"autodeletion."
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+msgid "Basic backup configuration"
+msgstr ""
+
+#. module: auto_backup
+#: sql_constraint:db.backup:0
+msgid "Cannot duplicate a configuration."
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,help:auto_backup.field_db_backup_method
+msgid "Choose the storage method for this backup."
+msgstr ""
+
+#. module: auto_backup
+#: code:addons/auto_backup/models/db_backup.py:251
+#, python-format
+msgid "Cleanup of old database backups failed."
+msgstr ""
+
+#. module: auto_backup
+#: code:addons/auto_backup/models/db_backup.py:131
+#, python-format
+msgid "Connection Test Failed!"
+msgstr ""
+
+#. module: auto_backup
+#: code:addons/auto_backup/models/db_backup.py:128
+#, python-format
+msgid "Connection Test Succeeded!"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup_create_uid
+msgid "Created by"
+msgstr "?????????"
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup_create_date
+msgid "Created on"
+msgstr "?????????"
+
+#. module: auto_backup
+#: code:addons/auto_backup/models/db_backup.py:206
+#: model:mail.message.subtype,description:auto_backup.mail_message_subtype_failure
+#, python-format
+msgid "Database backup failed."
+msgstr ""
+
+#. module: auto_backup
+#: code:addons/auto_backup/models/db_backup.py:214
+#: model:mail.message.subtype,description:auto_backup.mail_message_subtype_success
+#, python-format
+msgid "Database backup succeeded."
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup_days_to_keep
+msgid "Days to keep"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup_display_name
+msgid "Display Name"
+msgstr "?????????"
+
+#. module: auto_backup
+#: code:addons/auto_backup/models/db_backup.py:119
+#, python-format
+msgid ""
+"Do not save backups on your filestore, or you will backup your backups too!"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.actions.server,name:auto_backup.action_server_backup
+msgid "Execute backup(s)"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup_folder
+msgid "Folder"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+msgid "Go to Settings / Technical / Automation / Scheduled Actions."
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+msgid "Help"
+msgstr ""
+
+#. module: auto_backup
+#: sql_constraint:db.backup:0
+msgid "I cannot remove backups from the future. Ask Doc for that."
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup_id
+msgid "ID"
+msgstr "ID"
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup___last_update
+msgid "Last Modified on"
+msgstr "???????????????"
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup_write_uid
+msgid "Last Updated by"
+msgstr "???????????????"
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup_write_date
+msgid "Last Updated on"
+msgstr "???????????????"
+
+#. module: auto_backup
+#: selection:db.backup,method:0
+msgid "Local disk"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup_method
+msgid "Method"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup_name
+msgid "Name"
+msgstr "??????"
+
+#. module: auto_backup
+#: model:ir.model.fields,help:auto_backup.field_db_backup_sftp_private_key
+msgid ""
+"Path to the private key file. Only the Odoo user should have read "
+"permissions for that file."
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup_sftp_private_key
+msgid "Private key location"
+msgstr ""
+
+#. module: auto_backup
+#: selection:db.backup,method:0
+msgid "Remote SFTP server"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup_sftp_password
+msgid "SFTP Password"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup_sftp_port
+msgid "SFTP Port"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup_sftp_host
+msgid "SFTP Server"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+msgid "SFTP Settings"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_search
+msgid "Search options"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+msgid "Search the action named 'Backup scheduler'."
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+msgid ""
+"Set the scheduler to active and fill in how often you want backups "
+"generated."
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,help:auto_backup.field_db_backup_name
+msgid "Summary of this backup process"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+msgid "Test SFTP Connection"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,help:auto_backup.field_db_backup_sftp_host
+msgid ""
+"The host name or IP address from your remote server. For example 192.168.0.1"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,help:auto_backup.field_db_backup_sftp_password
+msgid ""
+"The password for the SFTP connection. If you specify a private key file, "
+"then this is the password to decrypt it."
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,help:auto_backup.field_db_backup_sftp_port
+msgid "The port on the FTP server that accepts SSH/SFTP calls."
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,help:auto_backup.field_db_backup_sftp_user
+msgid ""
+"The username where the SFTP connection should be made with. This is the user"
+" on the external server."
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+msgid ""
+"Use SFTP with caution! This writes files to external servers under the path "
+"you specify."
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup_sftp_user
+msgid "Username in the SFTP Server"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+msgid "Warning:"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model,name:auto_backup.model_db_backup
+msgid "db.backup"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+msgid "john"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+msgid "sftp.example.com"
+msgstr ""
diff --git a/auto_backup/i18n/ko.po b/auto_backup/i18n/ko.po
new file mode 100644
index 00000000000..a98eaf3bf71
--- /dev/null
+++ b/auto_backup/i18n/ko.po
@@ -0,0 +1,317 @@
+# Translation of Odoo Server.
+# This file contains the translation of the following modules:
+# * auto_backup
+# 
+# Translators:
+# OCA Transbot <transbot@odoo-community.org>, 2016
+msgid ""
+msgstr ""
+"Project-Id-Version: Odoo Server 10.0\n"
+"Report-Msgid-Bugs-To: \n"
+"POT-Creation-Date: 2017-02-18 02:29+0000\n"
+"PO-Revision-Date: 2017-02-18 02:29+0000\n"
+"Last-Translator: OCA Transbot <transbot@odoo-community.org>, 2016\n"
+"Language-Team: Korean (https://www.transifex.com/oca/teams/23907/ko/)\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: \n"
+"Language: ko\n"
+"Plural-Forms: nplurals=1; plural=0;\n"
+
+#. module: auto_backup
+#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+msgid "/home/odoo/.ssh/id_rsa"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,help:auto_backup.field_db_backup_folder
+msgid "Absolute path for storing the backups"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.actions.act_window,name:auto_backup.action_backup_conf_form
+#: model:ir.ui.menu,name:auto_backup.backup_conf_menu
+msgid "Automated Backups"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+msgid "Automatic backups of the database can be scheduled as follows:"
+msgstr ""
+
+#. module: auto_backup
+#: model:mail.message.subtype,name:auto_backup.mail_message_subtype_failure
+msgid "Backup Failed"
+msgstr ""
+
+#. module: auto_backup
+#: model:mail.message.subtype,name:auto_backup.mail_message_subtype_success
+msgid "Backup Successful"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_tree
+msgid "Backups"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,help:auto_backup.field_db_backup_days_to_keep
+msgid ""
+"Backups older than this will be deleted automatically. Set 0 to disable "
+"autodeletion."
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+msgid "Basic backup configuration"
+msgstr ""
+
+#. module: auto_backup
+#: sql_constraint:db.backup:0
+msgid "Cannot duplicate a configuration."
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,help:auto_backup.field_db_backup_method
+msgid "Choose the storage method for this backup."
+msgstr ""
+
+#. module: auto_backup
+#: code:addons/auto_backup/models/db_backup.py:251
+#, python-format
+msgid "Cleanup of old database backups failed."
+msgstr ""
+
+#. module: auto_backup
+#: code:addons/auto_backup/models/db_backup.py:131
+#, python-format
+msgid "Connection Test Failed!"
+msgstr ""
+
+#. module: auto_backup
+#: code:addons/auto_backup/models/db_backup.py:128
+#, python-format
+msgid "Connection Test Succeeded!"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup_create_uid
+msgid "Created by"
+msgstr "?????????"
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup_create_date
+msgid "Created on"
+msgstr "?????????"
+
+#. module: auto_backup
+#: code:addons/auto_backup/models/db_backup.py:206
+#: model:mail.message.subtype,description:auto_backup.mail_message_subtype_failure
+#, python-format
+msgid "Database backup failed."
+msgstr ""
+
+#. module: auto_backup
+#: code:addons/auto_backup/models/db_backup.py:214
+#: model:mail.message.subtype,description:auto_backup.mail_message_subtype_success
+#, python-format
+msgid "Database backup succeeded."
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup_days_to_keep
+msgid "Days to keep"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup_display_name
+msgid "Display Name"
+msgstr "?????? ??????"
+
+#. module: auto_backup
+#: code:addons/auto_backup/models/db_backup.py:119
+#, python-format
+msgid ""
+"Do not save backups on your filestore, or you will backup your backups too!"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.actions.server,name:auto_backup.action_server_backup
+msgid "Execute backup(s)"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup_folder
+msgid "Folder"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+msgid "Go to Settings / Technical / Automation / Scheduled Actions."
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+msgid "Help"
+msgstr ""
+
+#. module: auto_backup
+#: sql_constraint:db.backup:0
+msgid "I cannot remove backups from the future. Ask Doc for that."
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup_id
+msgid "ID"
+msgstr "ID"
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup___last_update
+msgid "Last Modified on"
+msgstr "?????? ??????"
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup_write_uid
+msgid "Last Updated by"
+msgstr "?????? ????????? ??????"
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup_write_date
+msgid "Last Updated on"
+msgstr "?????? ?????? ??????"
+
+#. module: auto_backup
+#: selection:db.backup,method:0
+msgid "Local disk"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup_method
+msgid "Method"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup_name
+msgid "Name"
+msgstr "??????"
+
+#. module: auto_backup
+#: model:ir.model.fields,help:auto_backup.field_db_backup_sftp_private_key
+msgid ""
+"Path to the private key file. Only the Odoo user should have read "
+"permissions for that file."
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup_sftp_private_key
+msgid "Private key location"
+msgstr ""
+
+#. module: auto_backup
+#: selection:db.backup,method:0
+msgid "Remote SFTP server"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup_sftp_password
+msgid "SFTP Password"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup_sftp_port
+msgid "SFTP Port"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup_sftp_host
+msgid "SFTP Server"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+msgid "SFTP Settings"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_search
+msgid "Search options"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+msgid "Search the action named 'Backup scheduler'."
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+msgid ""
+"Set the scheduler to active and fill in how often you want backups "
+"generated."
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,help:auto_backup.field_db_backup_name
+msgid "Summary of this backup process"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+msgid "Test SFTP Connection"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,help:auto_backup.field_db_backup_sftp_host
+msgid ""
+"The host name or IP address from your remote server. For example 192.168.0.1"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,help:auto_backup.field_db_backup_sftp_password
+msgid ""
+"The password for the SFTP connection. If you specify a private key file, "
+"then this is the password to decrypt it."
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,help:auto_backup.field_db_backup_sftp_port
+msgid "The port on the FTP server that accepts SSH/SFTP calls."
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,help:auto_backup.field_db_backup_sftp_user
+msgid ""
+"The username where the SFTP connection should be made with. This is the user"
+" on the external server."
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+msgid ""
+"Use SFTP with caution! This writes files to external servers under the path "
+"you specify."
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup_sftp_user
+msgid "Username in the SFTP Server"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+msgid "Warning:"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model,name:auto_backup.model_db_backup
+msgid "db.backup"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+msgid "john"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+msgid "sftp.example.com"
+msgstr ""
diff --git a/auto_backup/i18n/lt.po b/auto_backup/i18n/lt.po
new file mode 100644
index 00000000000..be157daa7b3
--- /dev/null
+++ b/auto_backup/i18n/lt.po
@@ -0,0 +1,317 @@
+# Translation of Odoo Server.
+# This file contains the translation of the following modules:
+# * auto_backup
+# 
+# Translators:
+# OCA Transbot <transbot@odoo-community.org>, 2016
+msgid ""
+msgstr ""
+"Project-Id-Version: Odoo Server 10.0\n"
+"Report-Msgid-Bugs-To: \n"
+"POT-Creation-Date: 2017-02-18 02:29+0000\n"
+"PO-Revision-Date: 2017-02-18 02:29+0000\n"
+"Last-Translator: OCA Transbot <transbot@odoo-community.org>, 2016\n"
+"Language-Team: Lithuanian (https://www.transifex.com/oca/teams/23907/lt/)\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: \n"
+"Language: lt\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: auto_backup
+#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+msgid "/home/odoo/.ssh/id_rsa"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,help:auto_backup.field_db_backup_folder
+msgid "Absolute path for storing the backups"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.actions.act_window,name:auto_backup.action_backup_conf_form
+#: model:ir.ui.menu,name:auto_backup.backup_conf_menu
+msgid "Automated Backups"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+msgid "Automatic backups of the database can be scheduled as follows:"
+msgstr ""
+
+#. module: auto_backup
+#: model:mail.message.subtype,name:auto_backup.mail_message_subtype_failure
+msgid "Backup Failed"
+msgstr ""
+
+#. module: auto_backup
+#: model:mail.message.subtype,name:auto_backup.mail_message_subtype_success
+msgid "Backup Successful"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_tree
+msgid "Backups"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,help:auto_backup.field_db_backup_days_to_keep
+msgid ""
+"Backups older than this will be deleted automatically. Set 0 to disable "
+"autodeletion."
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+msgid "Basic backup configuration"
+msgstr ""
+
+#. module: auto_backup
+#: sql_constraint:db.backup:0
+msgid "Cannot duplicate a configuration."
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,help:auto_backup.field_db_backup_method
+msgid "Choose the storage method for this backup."
+msgstr ""
+
+#. module: auto_backup
+#: code:addons/auto_backup/models/db_backup.py:251
+#, python-format
+msgid "Cleanup of old database backups failed."
+msgstr ""
+
+#. module: auto_backup
+#: code:addons/auto_backup/models/db_backup.py:131
+#, python-format
+msgid "Connection Test Failed!"
+msgstr ""
+
+#. module: auto_backup
+#: code:addons/auto_backup/models/db_backup.py:128
+#, python-format
+msgid "Connection Test Succeeded!"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup_create_uid
+msgid "Created by"
+msgstr "Suk??r??"
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup_create_date
+msgid "Created on"
+msgstr "Sukurta"
+
+#. module: auto_backup
+#: code:addons/auto_backup/models/db_backup.py:206
+#: model:mail.message.subtype,description:auto_backup.mail_message_subtype_failure
+#, python-format
+msgid "Database backup failed."
+msgstr ""
+
+#. module: auto_backup
+#: code:addons/auto_backup/models/db_backup.py:214
+#: model:mail.message.subtype,description:auto_backup.mail_message_subtype_success
+#, python-format
+msgid "Database backup succeeded."
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup_days_to_keep
+msgid "Days to keep"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup_display_name
+msgid "Display Name"
+msgstr "Vaizduojamas pavadinimas"
+
+#. module: auto_backup
+#: code:addons/auto_backup/models/db_backup.py:119
+#, python-format
+msgid ""
+"Do not save backups on your filestore, or you will backup your backups too!"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.actions.server,name:auto_backup.action_server_backup
+msgid "Execute backup(s)"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup_folder
+msgid "Folder"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+msgid "Go to Settings / Technical / Automation / Scheduled Actions."
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+msgid "Help"
+msgstr ""
+
+#. module: auto_backup
+#: sql_constraint:db.backup:0
+msgid "I cannot remove backups from the future. Ask Doc for that."
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup_id
+msgid "ID"
+msgstr "ID"
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup___last_update
+msgid "Last Modified on"
+msgstr "Paskutin?? kart?? keista"
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup_write_uid
+msgid "Last Updated by"
+msgstr "Paskutini kart?? atnaujino"
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup_write_date
+msgid "Last Updated on"
+msgstr "Paskutin?? kart?? atnaujinta"
+
+#. module: auto_backup
+#: selection:db.backup,method:0
+msgid "Local disk"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup_method
+msgid "Method"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup_name
+msgid "Name"
+msgstr "Pavadinimas"
+
+#. module: auto_backup
+#: model:ir.model.fields,help:auto_backup.field_db_backup_sftp_private_key
+msgid ""
+"Path to the private key file. Only the Odoo user should have read "
+"permissions for that file."
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup_sftp_private_key
+msgid "Private key location"
+msgstr ""
+
+#. module: auto_backup
+#: selection:db.backup,method:0
+msgid "Remote SFTP server"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup_sftp_password
+msgid "SFTP Password"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup_sftp_port
+msgid "SFTP Port"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup_sftp_host
+msgid "SFTP Server"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+msgid "SFTP Settings"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_search
+msgid "Search options"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+msgid "Search the action named 'Backup scheduler'."
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+msgid ""
+"Set the scheduler to active and fill in how often you want backups "
+"generated."
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,help:auto_backup.field_db_backup_name
+msgid "Summary of this backup process"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+msgid "Test SFTP Connection"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,help:auto_backup.field_db_backup_sftp_host
+msgid ""
+"The host name or IP address from your remote server. For example 192.168.0.1"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,help:auto_backup.field_db_backup_sftp_password
+msgid ""
+"The password for the SFTP connection. If you specify a private key file, "
+"then this is the password to decrypt it."
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,help:auto_backup.field_db_backup_sftp_port
+msgid "The port on the FTP server that accepts SSH/SFTP calls."
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,help:auto_backup.field_db_backup_sftp_user
+msgid ""
+"The username where the SFTP connection should be made with. This is the user"
+" on the external server."
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+msgid ""
+"Use SFTP with caution! This writes files to external servers under the path "
+"you specify."
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup_sftp_user
+msgid "Username in the SFTP Server"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+msgid "Warning:"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model,name:auto_backup.model_db_backup
+msgid "db.backup"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+msgid "john"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+msgid "sftp.example.com"
+msgstr ""
diff --git a/auto_backup/i18n/lt_LT.po b/auto_backup/i18n/lt_LT.po
new file mode 100644
index 00000000000..a20a77a0c7c
--- /dev/null
+++ b/auto_backup/i18n/lt_LT.po
@@ -0,0 +1,317 @@
+# Translation of Odoo Server.
+# This file contains the translation of the following modules:
+# * auto_backup
+# 
+# Translators:
+# OCA Transbot <transbot@odoo-community.org>, 2016
+msgid ""
+msgstr ""
+"Project-Id-Version: Odoo Server 10.0\n"
+"Report-Msgid-Bugs-To: \n"
+"POT-Creation-Date: 2016-12-08 03:36+0000\n"
+"PO-Revision-Date: 2016-12-08 03:36+0000\n"
+"Last-Translator: OCA Transbot <transbot@odoo-community.org>, 2016\n"
+"Language-Team: Lithuanian (Lithuania) (https://www.transifex.com/oca/teams/23907/lt_LT/)\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: \n"
+"Language: lt_LT\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: auto_backup
+#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+msgid "/home/odoo/.ssh/id_rsa"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,help:auto_backup.field_db_backup_folder
+msgid "Absolute path for storing the backups"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.actions.act_window,name:auto_backup.action_backup_conf_form
+#: model:ir.ui.menu,name:auto_backup.backup_conf_menu
+msgid "Automated Backups"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+msgid "Automatic backups of the database can be scheduled as follows:"
+msgstr ""
+
+#. module: auto_backup
+#: model:mail.message.subtype,name:auto_backup.mail_message_subtype_failure
+msgid "Backup Failed"
+msgstr ""
+
+#. module: auto_backup
+#: model:mail.message.subtype,name:auto_backup.mail_message_subtype_success
+msgid "Backup Successful"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_tree
+msgid "Backups"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,help:auto_backup.field_db_backup_days_to_keep
+msgid ""
+"Backups older than this will be deleted automatically. Set 0 to disable "
+"autodeletion."
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+msgid "Basic backup configuration"
+msgstr ""
+
+#. module: auto_backup
+#: sql_constraint:db.backup:0
+msgid "Cannot duplicate a configuration."
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,help:auto_backup.field_db_backup_method
+msgid "Choose the storage method for this backup."
+msgstr ""
+
+#. module: auto_backup
+#: code:addons/auto_backup/models/db_backup.py:248
+#, python-format
+msgid "Cleanup of old database backups failed."
+msgstr ""
+
+#. module: auto_backup
+#: code:addons/auto_backup/models/db_backup.py:131
+#, python-format
+msgid "Connection Test Failed!"
+msgstr ""
+
+#. module: auto_backup
+#: code:addons/auto_backup/models/db_backup.py:128
+#, python-format
+msgid "Connection Test Succeeded!"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup_create_uid
+msgid "Created by"
+msgstr "Suk??r??"
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup_create_date
+msgid "Created on"
+msgstr "Sukurta"
+
+#. module: auto_backup
+#: code:addons/auto_backup/models/db_backup.py:206
+#: model:mail.message.subtype,description:auto_backup.mail_message_subtype_failure
+#, python-format
+msgid "Database backup failed."
+msgstr ""
+
+#. module: auto_backup
+#: code:addons/auto_backup/models/db_backup.py:211
+#: model:mail.message.subtype,description:auto_backup.mail_message_subtype_success
+#, python-format
+msgid "Database backup succeeded."
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup_days_to_keep
+msgid "Days to keep"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup_display_name
+msgid "Display Name"
+msgstr ""
+
+#. module: auto_backup
+#: code:addons/auto_backup/models/db_backup.py:119
+#, python-format
+msgid ""
+"Do not save backups on your filestore, or you will backup your backups too!"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.actions.server,name:auto_backup.action_server_backup
+msgid "Execute backup(s)"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup_folder
+msgid "Folder"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+msgid "Go to Settings / Technical / Automation / Scheduled Actions."
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+msgid "Help"
+msgstr ""
+
+#. module: auto_backup
+#: sql_constraint:db.backup:0
+msgid "I cannot remove backups from the future. Ask Doc for that."
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup_id
+msgid "ID"
+msgstr "ID"
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup___last_update
+msgid "Last Modified on"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup_write_uid
+msgid "Last Updated by"
+msgstr "Paskutin?? kart?? atnaujino"
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup_write_date
+msgid "Last Updated on"
+msgstr "Paskutin?? kart?? atnaujinta"
+
+#. module: auto_backup
+#: selection:db.backup,method:0
+msgid "Local disk"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup_method
+msgid "Method"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup_name
+msgid "Name"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,help:auto_backup.field_db_backup_sftp_private_key
+msgid ""
+"Path to the private key file. Only the Odoo user should have read "
+"permissions for that file."
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup_sftp_private_key
+msgid "Private key location"
+msgstr ""
+
+#. module: auto_backup
+#: selection:db.backup,method:0
+msgid "Remote SFTP server"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup_sftp_password
+msgid "SFTP Password"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup_sftp_port
+msgid "SFTP Port"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup_sftp_host
+msgid "SFTP Server"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+msgid "SFTP Settings"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_search
+msgid "Search options"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+msgid "Search the action named 'Backup scheduler'."
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+msgid ""
+"Set the scheduler to active and fill in how often you want backups "
+"generated."
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,help:auto_backup.field_db_backup_name
+msgid "Summary of this backup process"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+msgid "Test SFTP Connection"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,help:auto_backup.field_db_backup_sftp_host
+msgid ""
+"The host name or IP address from your remote server. For example 192.168.0.1"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,help:auto_backup.field_db_backup_sftp_password
+msgid ""
+"The password for the SFTP connection. If you specify a private key file, "
+"then this is the password to decrypt it."
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,help:auto_backup.field_db_backup_sftp_port
+msgid "The port on the FTP server that accepts SSH/SFTP calls."
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,help:auto_backup.field_db_backup_sftp_user
+msgid ""
+"The username where the SFTP connection should be made with. This is the user"
+" on the external server."
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+msgid ""
+"Use SFTP with caution! This writes files to external servers under the path "
+"you specify."
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup_sftp_user
+msgid "Username in the SFTP Server"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+msgid "Warning:"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model,name:auto_backup.model_db_backup
+msgid "db.backup"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+msgid "john"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+msgid "sftp.example.com"
+msgstr ""
diff --git a/auto_backup/i18n/lv.po b/auto_backup/i18n/lv.po
new file mode 100644
index 00000000000..c3c660911d6
--- /dev/null
+++ b/auto_backup/i18n/lv.po
@@ -0,0 +1,317 @@
+# Translation of Odoo Server.
+# This file contains the translation of the following modules:
+# * auto_backup
+# 
+# Translators:
+# OCA Transbot <transbot@odoo-community.org>, 2016
+msgid ""
+msgstr ""
+"Project-Id-Version: Odoo Server 10.0\n"
+"Report-Msgid-Bugs-To: \n"
+"POT-Creation-Date: 2017-02-18 02:29+0000\n"
+"PO-Revision-Date: 2017-02-18 02:29+0000\n"
+"Last-Translator: OCA Transbot <transbot@odoo-community.org>, 2016\n"
+"Language-Team: Latvian (https://www.transifex.com/oca/teams/23907/lv/)\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: \n"
+"Language: lv\n"
+"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n != 0 ? 1 : 2);\n"
+
+#. module: auto_backup
+#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+msgid "/home/odoo/.ssh/id_rsa"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,help:auto_backup.field_db_backup_folder
+msgid "Absolute path for storing the backups"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.actions.act_window,name:auto_backup.action_backup_conf_form
+#: model:ir.ui.menu,name:auto_backup.backup_conf_menu
+msgid "Automated Backups"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+msgid "Automatic backups of the database can be scheduled as follows:"
+msgstr ""
+
+#. module: auto_backup
+#: model:mail.message.subtype,name:auto_backup.mail_message_subtype_failure
+msgid "Backup Failed"
+msgstr ""
+
+#. module: auto_backup
+#: model:mail.message.subtype,name:auto_backup.mail_message_subtype_success
+msgid "Backup Successful"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_tree
+msgid "Backups"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,help:auto_backup.field_db_backup_days_to_keep
+msgid ""
+"Backups older than this will be deleted automatically. Set 0 to disable "
+"autodeletion."
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+msgid "Basic backup configuration"
+msgstr ""
+
+#. module: auto_backup
+#: sql_constraint:db.backup:0
+msgid "Cannot duplicate a configuration."
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,help:auto_backup.field_db_backup_method
+msgid "Choose the storage method for this backup."
+msgstr ""
+
+#. module: auto_backup
+#: code:addons/auto_backup/models/db_backup.py:251
+#, python-format
+msgid "Cleanup of old database backups failed."
+msgstr ""
+
+#. module: auto_backup
+#: code:addons/auto_backup/models/db_backup.py:131
+#, python-format
+msgid "Connection Test Failed!"
+msgstr ""
+
+#. module: auto_backup
+#: code:addons/auto_backup/models/db_backup.py:128
+#, python-format
+msgid "Connection Test Succeeded!"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup_create_uid
+msgid "Created by"
+msgstr "Izveidoja"
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup_create_date
+msgid "Created on"
+msgstr "Izveidots"
+
+#. module: auto_backup
+#: code:addons/auto_backup/models/db_backup.py:206
+#: model:mail.message.subtype,description:auto_backup.mail_message_subtype_failure
+#, python-format
+msgid "Database backup failed."
+msgstr ""
+
+#. module: auto_backup
+#: code:addons/auto_backup/models/db_backup.py:214
+#: model:mail.message.subtype,description:auto_backup.mail_message_subtype_success
+#, python-format
+msgid "Database backup succeeded."
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup_days_to_keep
+msgid "Days to keep"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup_display_name
+msgid "Display Name"
+msgstr ""
+
+#. module: auto_backup
+#: code:addons/auto_backup/models/db_backup.py:119
+#, python-format
+msgid ""
+"Do not save backups on your filestore, or you will backup your backups too!"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.actions.server,name:auto_backup.action_server_backup
+msgid "Execute backup(s)"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup_folder
+msgid "Folder"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+msgid "Go to Settings / Technical / Automation / Scheduled Actions."
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+msgid "Help"
+msgstr ""
+
+#. module: auto_backup
+#: sql_constraint:db.backup:0
+msgid "I cannot remove backups from the future. Ask Doc for that."
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup_id
+msgid "ID"
+msgstr "ID"
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup___last_update
+msgid "Last Modified on"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup_write_uid
+msgid "Last Updated by"
+msgstr "P??d??jo reizi atjaunoja"
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup_write_date
+msgid "Last Updated on"
+msgstr "P??d??j??s izmai??as"
+
+#. module: auto_backup
+#: selection:db.backup,method:0
+msgid "Local disk"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup_method
+msgid "Method"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup_name
+msgid "Name"
+msgstr "Nosaukums"
+
+#. module: auto_backup
+#: model:ir.model.fields,help:auto_backup.field_db_backup_sftp_private_key
+msgid ""
+"Path to the private key file. Only the Odoo user should have read "
+"permissions for that file."
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup_sftp_private_key
+msgid "Private key location"
+msgstr ""
+
+#. module: auto_backup
+#: selection:db.backup,method:0
+msgid "Remote SFTP server"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup_sftp_password
+msgid "SFTP Password"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup_sftp_port
+msgid "SFTP Port"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup_sftp_host
+msgid "SFTP Server"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+msgid "SFTP Settings"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_search
+msgid "Search options"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+msgid "Search the action named 'Backup scheduler'."
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+msgid ""
+"Set the scheduler to active and fill in how often you want backups "
+"generated."
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,help:auto_backup.field_db_backup_name
+msgid "Summary of this backup process"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+msgid "Test SFTP Connection"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,help:auto_backup.field_db_backup_sftp_host
+msgid ""
+"The host name or IP address from your remote server. For example 192.168.0.1"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,help:auto_backup.field_db_backup_sftp_password
+msgid ""
+"The password for the SFTP connection. If you specify a private key file, "
+"then this is the password to decrypt it."
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,help:auto_backup.field_db_backup_sftp_port
+msgid "The port on the FTP server that accepts SSH/SFTP calls."
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,help:auto_backup.field_db_backup_sftp_user
+msgid ""
+"The username where the SFTP connection should be made with. This is the user"
+" on the external server."
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+msgid ""
+"Use SFTP with caution! This writes files to external servers under the path "
+"you specify."
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup_sftp_user
+msgid "Username in the SFTP Server"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+msgid "Warning:"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model,name:auto_backup.model_db_backup
+msgid "db.backup"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+msgid "john"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+msgid "sftp.example.com"
+msgstr ""
diff --git a/auto_backup/i18n/mk.po b/auto_backup/i18n/mk.po
new file mode 100644
index 00000000000..6ad742760ab
--- /dev/null
+++ b/auto_backup/i18n/mk.po
@@ -0,0 +1,317 @@
+# Translation of Odoo Server.
+# This file contains the translation of the following modules:
+# * auto_backup
+# 
+# Translators:
+# OCA Transbot <transbot@odoo-community.org>, 2016
+msgid ""
+msgstr ""
+"Project-Id-Version: Odoo Server 10.0\n"
+"Report-Msgid-Bugs-To: \n"
+"POT-Creation-Date: 2017-02-18 02:29+0000\n"
+"PO-Revision-Date: 2017-02-18 02:29+0000\n"
+"Last-Translator: OCA Transbot <transbot@odoo-community.org>, 2016\n"
+"Language-Team: Macedonian (https://www.transifex.com/oca/teams/23907/mk/)\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: \n"
+"Language: mk\n"
+"Plural-Forms: nplurals=2; plural=(n % 10 == 1 && n % 100 != 11) ? 0 : 1;\n"
+
+#. module: auto_backup
+#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+msgid "/home/odoo/.ssh/id_rsa"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,help:auto_backup.field_db_backup_folder
+msgid "Absolute path for storing the backups"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.actions.act_window,name:auto_backup.action_backup_conf_form
+#: model:ir.ui.menu,name:auto_backup.backup_conf_menu
+msgid "Automated Backups"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+msgid "Automatic backups of the database can be scheduled as follows:"
+msgstr ""
+
+#. module: auto_backup
+#: model:mail.message.subtype,name:auto_backup.mail_message_subtype_failure
+msgid "Backup Failed"
+msgstr ""
+
+#. module: auto_backup
+#: model:mail.message.subtype,name:auto_backup.mail_message_subtype_success
+msgid "Backup Successful"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_tree
+msgid "Backups"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,help:auto_backup.field_db_backup_days_to_keep
+msgid ""
+"Backups older than this will be deleted automatically. Set 0 to disable "
+"autodeletion."
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+msgid "Basic backup configuration"
+msgstr ""
+
+#. module: auto_backup
+#: sql_constraint:db.backup:0
+msgid "Cannot duplicate a configuration."
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,help:auto_backup.field_db_backup_method
+msgid "Choose the storage method for this backup."
+msgstr ""
+
+#. module: auto_backup
+#: code:addons/auto_backup/models/db_backup.py:251
+#, python-format
+msgid "Cleanup of old database backups failed."
+msgstr ""
+
+#. module: auto_backup
+#: code:addons/auto_backup/models/db_backup.py:131
+#, python-format
+msgid "Connection Test Failed!"
+msgstr ""
+
+#. module: auto_backup
+#: code:addons/auto_backup/models/db_backup.py:128
+#, python-format
+msgid "Connection Test Succeeded!"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup_create_uid
+msgid "Created by"
+msgstr "???????????????? ????"
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup_create_date
+msgid "Created on"
+msgstr "???????????????? ????"
+
+#. module: auto_backup
+#: code:addons/auto_backup/models/db_backup.py:206
+#: model:mail.message.subtype,description:auto_backup.mail_message_subtype_failure
+#, python-format
+msgid "Database backup failed."
+msgstr ""
+
+#. module: auto_backup
+#: code:addons/auto_backup/models/db_backup.py:214
+#: model:mail.message.subtype,description:auto_backup.mail_message_subtype_success
+#, python-format
+msgid "Database backup succeeded."
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup_days_to_keep
+msgid "Days to keep"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup_display_name
+msgid "Display Name"
+msgstr "?????????????? ??????"
+
+#. module: auto_backup
+#: code:addons/auto_backup/models/db_backup.py:119
+#, python-format
+msgid ""
+"Do not save backups on your filestore, or you will backup your backups too!"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.actions.server,name:auto_backup.action_server_backup
+msgid "Execute backup(s)"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup_folder
+msgid "Folder"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+msgid "Go to Settings / Technical / Automation / Scheduled Actions."
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+msgid "Help"
+msgstr ""
+
+#. module: auto_backup
+#: sql_constraint:db.backup:0
+msgid "I cannot remove backups from the future. Ask Doc for that."
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup_id
+msgid "ID"
+msgstr "ID"
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup___last_update
+msgid "Last Modified on"
+msgstr "???????????????? ?????????????? ????"
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup_write_uid
+msgid "Last Updated by"
+msgstr "???????????????? ?????????????????? ????"
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup_write_date
+msgid "Last Updated on"
+msgstr "???????????????? ?????????????????? ????"
+
+#. module: auto_backup
+#: selection:db.backup,method:0
+msgid "Local disk"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup_method
+msgid "Method"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup_name
+msgid "Name"
+msgstr "??????"
+
+#. module: auto_backup
+#: model:ir.model.fields,help:auto_backup.field_db_backup_sftp_private_key
+msgid ""
+"Path to the private key file. Only the Odoo user should have read "
+"permissions for that file."
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup_sftp_private_key
+msgid "Private key location"
+msgstr ""
+
+#. module: auto_backup
+#: selection:db.backup,method:0
+msgid "Remote SFTP server"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup_sftp_password
+msgid "SFTP Password"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup_sftp_port
+msgid "SFTP Port"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup_sftp_host
+msgid "SFTP Server"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+msgid "SFTP Settings"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_search
+msgid "Search options"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+msgid "Search the action named 'Backup scheduler'."
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+msgid ""
+"Set the scheduler to active and fill in how often you want backups "
+"generated."
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,help:auto_backup.field_db_backup_name
+msgid "Summary of this backup process"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+msgid "Test SFTP Connection"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,help:auto_backup.field_db_backup_sftp_host
+msgid ""
+"The host name or IP address from your remote server. For example 192.168.0.1"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,help:auto_backup.field_db_backup_sftp_password
+msgid ""
+"The password for the SFTP connection. If you specify a private key file, "
+"then this is the password to decrypt it."
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,help:auto_backup.field_db_backup_sftp_port
+msgid "The port on the FTP server that accepts SSH/SFTP calls."
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,help:auto_backup.field_db_backup_sftp_user
+msgid ""
+"The username where the SFTP connection should be made with. This is the user"
+" on the external server."
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+msgid ""
+"Use SFTP with caution! This writes files to external servers under the path "
+"you specify."
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup_sftp_user
+msgid "Username in the SFTP Server"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+msgid "Warning:"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model,name:auto_backup.model_db_backup
+msgid "db.backup"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+msgid "john"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+msgid "sftp.example.com"
+msgstr ""
diff --git a/auto_backup/i18n/mn.po b/auto_backup/i18n/mn.po
new file mode 100644
index 00000000000..90097b41c46
--- /dev/null
+++ b/auto_backup/i18n/mn.po
@@ -0,0 +1,317 @@
+# Translation of Odoo Server.
+# This file contains the translation of the following modules:
+# * auto_backup
+# 
+# Translators:
+# OCA Transbot <transbot@odoo-community.org>, 2016
+msgid ""
+msgstr ""
+"Project-Id-Version: Odoo Server 10.0\n"
+"Report-Msgid-Bugs-To: \n"
+"POT-Creation-Date: 2017-02-18 02:29+0000\n"
+"PO-Revision-Date: 2017-02-18 02:29+0000\n"
+"Last-Translator: OCA Transbot <transbot@odoo-community.org>, 2016\n"
+"Language-Team: Mongolian (https://www.transifex.com/oca/teams/23907/mn/)\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: \n"
+"Language: mn\n"
+"Plural-Forms: nplurals=2; plural=(n != 1);\n"
+
+#. module: auto_backup
+#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+msgid "/home/odoo/.ssh/id_rsa"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,help:auto_backup.field_db_backup_folder
+msgid "Absolute path for storing the backups"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.actions.act_window,name:auto_backup.action_backup_conf_form
+#: model:ir.ui.menu,name:auto_backup.backup_conf_menu
+msgid "Automated Backups"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+msgid "Automatic backups of the database can be scheduled as follows:"
+msgstr ""
+
+#. module: auto_backup
+#: model:mail.message.subtype,name:auto_backup.mail_message_subtype_failure
+msgid "Backup Failed"
+msgstr ""
+
+#. module: auto_backup
+#: model:mail.message.subtype,name:auto_backup.mail_message_subtype_success
+msgid "Backup Successful"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_tree
+msgid "Backups"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,help:auto_backup.field_db_backup_days_to_keep
+msgid ""
+"Backups older than this will be deleted automatically. Set 0 to disable "
+"autodeletion."
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+msgid "Basic backup configuration"
+msgstr ""
+
+#. module: auto_backup
+#: sql_constraint:db.backup:0
+msgid "Cannot duplicate a configuration."
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,help:auto_backup.field_db_backup_method
+msgid "Choose the storage method for this backup."
+msgstr ""
+
+#. module: auto_backup
+#: code:addons/auto_backup/models/db_backup.py:251
+#, python-format
+msgid "Cleanup of old database backups failed."
+msgstr ""
+
+#. module: auto_backup
+#: code:addons/auto_backup/models/db_backup.py:131
+#, python-format
+msgid "Connection Test Failed!"
+msgstr ""
+
+#. module: auto_backup
+#: code:addons/auto_backup/models/db_backup.py:128
+#, python-format
+msgid "Connection Test Succeeded!"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup_create_uid
+msgid "Created by"
+msgstr "??????????????"
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup_create_date
+msgid "Created on"
+msgstr "???????????????? ??????????"
+
+#. module: auto_backup
+#: code:addons/auto_backup/models/db_backup.py:206
+#: model:mail.message.subtype,description:auto_backup.mail_message_subtype_failure
+#, python-format
+msgid "Database backup failed."
+msgstr ""
+
+#. module: auto_backup
+#: code:addons/auto_backup/models/db_backup.py:214
+#: model:mail.message.subtype,description:auto_backup.mail_message_subtype_success
+#, python-format
+msgid "Database backup succeeded."
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup_days_to_keep
+msgid "Days to keep"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup_display_name
+msgid "Display Name"
+msgstr "?????????????????? ??????"
+
+#. module: auto_backup
+#: code:addons/auto_backup/models/db_backup.py:119
+#, python-format
+msgid ""
+"Do not save backups on your filestore, or you will backup your backups too!"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.actions.server,name:auto_backup.action_server_backup
+msgid "Execute backup(s)"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup_folder
+msgid "Folder"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+msgid "Go to Settings / Technical / Automation / Scheduled Actions."
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+msgid "Help"
+msgstr ""
+
+#. module: auto_backup
+#: sql_constraint:db.backup:0
+msgid "I cannot remove backups from the future. Ask Doc for that."
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup_id
+msgid "ID"
+msgstr "ID"
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup___last_update
+msgid "Last Modified on"
+msgstr "?????????????? ???????????? ???????????? ??????????"
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup_write_uid
+msgid "Last Updated by"
+msgstr "?????????????? ???????????? ????????????"
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup_write_date
+msgid "Last Updated on"
+msgstr "?????????????? ???????????? ???????????? ??????????"
+
+#. module: auto_backup
+#: selection:db.backup,method:0
+msgid "Local disk"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup_method
+msgid "Method"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup_name
+msgid "Name"
+msgstr "??????"
+
+#. module: auto_backup
+#: model:ir.model.fields,help:auto_backup.field_db_backup_sftp_private_key
+msgid ""
+"Path to the private key file. Only the Odoo user should have read "
+"permissions for that file."
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup_sftp_private_key
+msgid "Private key location"
+msgstr ""
+
+#. module: auto_backup
+#: selection:db.backup,method:0
+msgid "Remote SFTP server"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup_sftp_password
+msgid "SFTP Password"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup_sftp_port
+msgid "SFTP Port"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup_sftp_host
+msgid "SFTP Server"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+msgid "SFTP Settings"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_search
+msgid "Search options"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+msgid "Search the action named 'Backup scheduler'."
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+msgid ""
+"Set the scheduler to active and fill in how often you want backups "
+"generated."
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,help:auto_backup.field_db_backup_name
+msgid "Summary of this backup process"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+msgid "Test SFTP Connection"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,help:auto_backup.field_db_backup_sftp_host
+msgid ""
+"The host name or IP address from your remote server. For example 192.168.0.1"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,help:auto_backup.field_db_backup_sftp_password
+msgid ""
+"The password for the SFTP connection. If you specify a private key file, "
+"then this is the password to decrypt it."
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,help:auto_backup.field_db_backup_sftp_port
+msgid "The port on the FTP server that accepts SSH/SFTP calls."
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,help:auto_backup.field_db_backup_sftp_user
+msgid ""
+"The username where the SFTP connection should be made with. This is the user"
+" on the external server."
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+msgid ""
+"Use SFTP with caution! This writes files to external servers under the path "
+"you specify."
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup_sftp_user
+msgid "Username in the SFTP Server"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+msgid "Warning:"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model,name:auto_backup.model_db_backup
+msgid "db.backup"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+msgid "john"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+msgid "sftp.example.com"
+msgstr ""
diff --git a/auto_backup/i18n/nb.po b/auto_backup/i18n/nb.po
new file mode 100644
index 00000000000..9b3a9a00539
--- /dev/null
+++ b/auto_backup/i18n/nb.po
@@ -0,0 +1,317 @@
+# Translation of Odoo Server.
+# This file contains the translation of the following modules:
+# * auto_backup
+# 
+# Translators:
+# OCA Transbot <transbot@odoo-community.org>, 2016
+msgid ""
+msgstr ""
+"Project-Id-Version: Odoo Server 10.0\n"
+"Report-Msgid-Bugs-To: \n"
+"POT-Creation-Date: 2017-02-18 02:29+0000\n"
+"PO-Revision-Date: 2017-02-18 02:29+0000\n"
+"Last-Translator: OCA Transbot <transbot@odoo-community.org>, 2016\n"
+"Language-Team: Norwegian Bokm??l (https://www.transifex.com/oca/teams/23907/nb/)\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: \n"
+"Language: nb\n"
+"Plural-Forms: nplurals=2; plural=(n != 1);\n"
+
+#. module: auto_backup
+#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+msgid "/home/odoo/.ssh/id_rsa"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,help:auto_backup.field_db_backup_folder
+msgid "Absolute path for storing the backups"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.actions.act_window,name:auto_backup.action_backup_conf_form
+#: model:ir.ui.menu,name:auto_backup.backup_conf_menu
+msgid "Automated Backups"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+msgid "Automatic backups of the database can be scheduled as follows:"
+msgstr ""
+
+#. module: auto_backup
+#: model:mail.message.subtype,name:auto_backup.mail_message_subtype_failure
+msgid "Backup Failed"
+msgstr ""
+
+#. module: auto_backup
+#: model:mail.message.subtype,name:auto_backup.mail_message_subtype_success
+msgid "Backup Successful"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_tree
+msgid "Backups"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,help:auto_backup.field_db_backup_days_to_keep
+msgid ""
+"Backups older than this will be deleted automatically. Set 0 to disable "
+"autodeletion."
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+msgid "Basic backup configuration"
+msgstr ""
+
+#. module: auto_backup
+#: sql_constraint:db.backup:0
+msgid "Cannot duplicate a configuration."
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,help:auto_backup.field_db_backup_method
+msgid "Choose the storage method for this backup."
+msgstr ""
+
+#. module: auto_backup
+#: code:addons/auto_backup/models/db_backup.py:251
+#, python-format
+msgid "Cleanup of old database backups failed."
+msgstr ""
+
+#. module: auto_backup
+#: code:addons/auto_backup/models/db_backup.py:131
+#, python-format
+msgid "Connection Test Failed!"
+msgstr ""
+
+#. module: auto_backup
+#: code:addons/auto_backup/models/db_backup.py:128
+#, python-format
+msgid "Connection Test Succeeded!"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup_create_uid
+msgid "Created by"
+msgstr "Opprettet av"
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup_create_date
+msgid "Created on"
+msgstr "Opprettet"
+
+#. module: auto_backup
+#: code:addons/auto_backup/models/db_backup.py:206
+#: model:mail.message.subtype,description:auto_backup.mail_message_subtype_failure
+#, python-format
+msgid "Database backup failed."
+msgstr ""
+
+#. module: auto_backup
+#: code:addons/auto_backup/models/db_backup.py:214
+#: model:mail.message.subtype,description:auto_backup.mail_message_subtype_success
+#, python-format
+msgid "Database backup succeeded."
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup_days_to_keep
+msgid "Days to keep"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup_display_name
+msgid "Display Name"
+msgstr "Visnings navn"
+
+#. module: auto_backup
+#: code:addons/auto_backup/models/db_backup.py:119
+#, python-format
+msgid ""
+"Do not save backups on your filestore, or you will backup your backups too!"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.actions.server,name:auto_backup.action_server_backup
+msgid "Execute backup(s)"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup_folder
+msgid "Folder"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+msgid "Go to Settings / Technical / Automation / Scheduled Actions."
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+msgid "Help"
+msgstr ""
+
+#. module: auto_backup
+#: sql_constraint:db.backup:0
+msgid "I cannot remove backups from the future. Ask Doc for that."
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup_id
+msgid "ID"
+msgstr "ID"
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup___last_update
+msgid "Last Modified on"
+msgstr "Sist oppdatert "
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup_write_uid
+msgid "Last Updated by"
+msgstr "Sist oppdatert av"
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup_write_date
+msgid "Last Updated on"
+msgstr "Sist oppdatert"
+
+#. module: auto_backup
+#: selection:db.backup,method:0
+msgid "Local disk"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup_method
+msgid "Method"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup_name
+msgid "Name"
+msgstr "Navn"
+
+#. module: auto_backup
+#: model:ir.model.fields,help:auto_backup.field_db_backup_sftp_private_key
+msgid ""
+"Path to the private key file. Only the Odoo user should have read "
+"permissions for that file."
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup_sftp_private_key
+msgid "Private key location"
+msgstr ""
+
+#. module: auto_backup
+#: selection:db.backup,method:0
+msgid "Remote SFTP server"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup_sftp_password
+msgid "SFTP Password"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup_sftp_port
+msgid "SFTP Port"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup_sftp_host
+msgid "SFTP Server"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+msgid "SFTP Settings"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_search
+msgid "Search options"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+msgid "Search the action named 'Backup scheduler'."
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+msgid ""
+"Set the scheduler to active and fill in how often you want backups "
+"generated."
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,help:auto_backup.field_db_backup_name
+msgid "Summary of this backup process"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+msgid "Test SFTP Connection"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,help:auto_backup.field_db_backup_sftp_host
+msgid ""
+"The host name or IP address from your remote server. For example 192.168.0.1"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,help:auto_backup.field_db_backup_sftp_password
+msgid ""
+"The password for the SFTP connection. If you specify a private key file, "
+"then this is the password to decrypt it."
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,help:auto_backup.field_db_backup_sftp_port
+msgid "The port on the FTP server that accepts SSH/SFTP calls."
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,help:auto_backup.field_db_backup_sftp_user
+msgid ""
+"The username where the SFTP connection should be made with. This is the user"
+" on the external server."
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+msgid ""
+"Use SFTP with caution! This writes files to external servers under the path "
+"you specify."
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup_sftp_user
+msgid "Username in the SFTP Server"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+msgid "Warning:"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model,name:auto_backup.model_db_backup
+msgid "db.backup"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+msgid "john"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+msgid "sftp.example.com"
+msgstr ""
diff --git a/auto_backup/i18n/nb_NO.po b/auto_backup/i18n/nb_NO.po
new file mode 100644
index 00000000000..f1b27e13063
--- /dev/null
+++ b/auto_backup/i18n/nb_NO.po
@@ -0,0 +1,317 @@
+# Translation of Odoo Server.
+# This file contains the translation of the following modules:
+# * auto_backup
+# 
+# Translators:
+# OCA Transbot <transbot@odoo-community.org>, 2016
+msgid ""
+msgstr ""
+"Project-Id-Version: Odoo Server 10.0\n"
+"Report-Msgid-Bugs-To: \n"
+"POT-Creation-Date: 2016-12-08 03:36+0000\n"
+"PO-Revision-Date: 2016-12-08 03:36+0000\n"
+"Last-Translator: OCA Transbot <transbot@odoo-community.org>, 2016\n"
+"Language-Team: Norwegian Bokm??l (Norway) (https://www.transifex.com/oca/teams/23907/nb_NO/)\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: \n"
+"Language: nb_NO\n"
+"Plural-Forms: nplurals=2; plural=(n != 1);\n"
+
+#. module: auto_backup
+#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+msgid "/home/odoo/.ssh/id_rsa"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,help:auto_backup.field_db_backup_folder
+msgid "Absolute path for storing the backups"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.actions.act_window,name:auto_backup.action_backup_conf_form
+#: model:ir.ui.menu,name:auto_backup.backup_conf_menu
+msgid "Automated Backups"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+msgid "Automatic backups of the database can be scheduled as follows:"
+msgstr ""
+
+#. module: auto_backup
+#: model:mail.message.subtype,name:auto_backup.mail_message_subtype_failure
+msgid "Backup Failed"
+msgstr ""
+
+#. module: auto_backup
+#: model:mail.message.subtype,name:auto_backup.mail_message_subtype_success
+msgid "Backup Successful"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_tree
+msgid "Backups"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,help:auto_backup.field_db_backup_days_to_keep
+msgid ""
+"Backups older than this will be deleted automatically. Set 0 to disable "
+"autodeletion."
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+msgid "Basic backup configuration"
+msgstr ""
+
+#. module: auto_backup
+#: sql_constraint:db.backup:0
+msgid "Cannot duplicate a configuration."
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,help:auto_backup.field_db_backup_method
+msgid "Choose the storage method for this backup."
+msgstr ""
+
+#. module: auto_backup
+#: code:addons/auto_backup/models/db_backup.py:248
+#, python-format
+msgid "Cleanup of old database backups failed."
+msgstr ""
+
+#. module: auto_backup
+#: code:addons/auto_backup/models/db_backup.py:131
+#, python-format
+msgid "Connection Test Failed!"
+msgstr ""
+
+#. module: auto_backup
+#: code:addons/auto_backup/models/db_backup.py:128
+#, python-format
+msgid "Connection Test Succeeded!"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup_create_uid
+msgid "Created by"
+msgstr "Laget av"
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup_create_date
+msgid "Created on"
+msgstr "Laget den"
+
+#. module: auto_backup
+#: code:addons/auto_backup/models/db_backup.py:206
+#: model:mail.message.subtype,description:auto_backup.mail_message_subtype_failure
+#, python-format
+msgid "Database backup failed."
+msgstr ""
+
+#. module: auto_backup
+#: code:addons/auto_backup/models/db_backup.py:211
+#: model:mail.message.subtype,description:auto_backup.mail_message_subtype_success
+#, python-format
+msgid "Database backup succeeded."
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup_days_to_keep
+msgid "Days to keep"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup_display_name
+msgid "Display Name"
+msgstr "Vis navn"
+
+#. module: auto_backup
+#: code:addons/auto_backup/models/db_backup.py:119
+#, python-format
+msgid ""
+"Do not save backups on your filestore, or you will backup your backups too!"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.actions.server,name:auto_backup.action_server_backup
+msgid "Execute backup(s)"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup_folder
+msgid "Folder"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+msgid "Go to Settings / Technical / Automation / Scheduled Actions."
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+msgid "Help"
+msgstr ""
+
+#. module: auto_backup
+#: sql_constraint:db.backup:0
+msgid "I cannot remove backups from the future. Ask Doc for that."
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup_id
+msgid "ID"
+msgstr "ID"
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup___last_update
+msgid "Last Modified on"
+msgstr "Sist endret den"
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup_write_uid
+msgid "Last Updated by"
+msgstr "Sist oppdatert av"
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup_write_date
+msgid "Last Updated on"
+msgstr "Sist oppdatert den"
+
+#. module: auto_backup
+#: selection:db.backup,method:0
+msgid "Local disk"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup_method
+msgid "Method"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup_name
+msgid "Name"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,help:auto_backup.field_db_backup_sftp_private_key
+msgid ""
+"Path to the private key file. Only the Odoo user should have read "
+"permissions for that file."
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup_sftp_private_key
+msgid "Private key location"
+msgstr ""
+
+#. module: auto_backup
+#: selection:db.backup,method:0
+msgid "Remote SFTP server"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup_sftp_password
+msgid "SFTP Password"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup_sftp_port
+msgid "SFTP Port"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup_sftp_host
+msgid "SFTP Server"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+msgid "SFTP Settings"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_search
+msgid "Search options"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+msgid "Search the action named 'Backup scheduler'."
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+msgid ""
+"Set the scheduler to active and fill in how often you want backups "
+"generated."
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,help:auto_backup.field_db_backup_name
+msgid "Summary of this backup process"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+msgid "Test SFTP Connection"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,help:auto_backup.field_db_backup_sftp_host
+msgid ""
+"The host name or IP address from your remote server. For example 192.168.0.1"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,help:auto_backup.field_db_backup_sftp_password
+msgid ""
+"The password for the SFTP connection. If you specify a private key file, "
+"then this is the password to decrypt it."
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,help:auto_backup.field_db_backup_sftp_port
+msgid "The port on the FTP server that accepts SSH/SFTP calls."
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,help:auto_backup.field_db_backup_sftp_user
+msgid ""
+"The username where the SFTP connection should be made with. This is the user"
+" on the external server."
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+msgid ""
+"Use SFTP with caution! This writes files to external servers under the path "
+"you specify."
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup_sftp_user
+msgid "Username in the SFTP Server"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+msgid "Warning:"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model,name:auto_backup.model_db_backup
+msgid "db.backup"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+msgid "john"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+msgid "sftp.example.com"
+msgstr ""
diff --git a/auto_backup/i18n/pl.po b/auto_backup/i18n/pl.po
new file mode 100644
index 00000000000..8ed87208e55
--- /dev/null
+++ b/auto_backup/i18n/pl.po
@@ -0,0 +1,317 @@
+# Translation of Odoo Server.
+# This file contains the translation of the following modules:
+# * auto_backup
+# 
+# Translators:
+# OCA Transbot <transbot@odoo-community.org>, 2016
+msgid ""
+msgstr ""
+"Project-Id-Version: Odoo Server 10.0\n"
+"Report-Msgid-Bugs-To: \n"
+"POT-Creation-Date: 2017-02-18 02:29+0000\n"
+"PO-Revision-Date: 2017-02-18 02:29+0000\n"
+"Last-Translator: OCA Transbot <transbot@odoo-community.org>, 2016\n"
+"Language-Team: Polish (https://www.transifex.com/oca/teams/23907/pl/)\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: \n"
+"Language: pl\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: auto_backup
+#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+msgid "/home/odoo/.ssh/id_rsa"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,help:auto_backup.field_db_backup_folder
+msgid "Absolute path for storing the backups"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.actions.act_window,name:auto_backup.action_backup_conf_form
+#: model:ir.ui.menu,name:auto_backup.backup_conf_menu
+msgid "Automated Backups"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+msgid "Automatic backups of the database can be scheduled as follows:"
+msgstr ""
+
+#. module: auto_backup
+#: model:mail.message.subtype,name:auto_backup.mail_message_subtype_failure
+msgid "Backup Failed"
+msgstr ""
+
+#. module: auto_backup
+#: model:mail.message.subtype,name:auto_backup.mail_message_subtype_success
+msgid "Backup Successful"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_tree
+msgid "Backups"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,help:auto_backup.field_db_backup_days_to_keep
+msgid ""
+"Backups older than this will be deleted automatically. Set 0 to disable "
+"autodeletion."
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+msgid "Basic backup configuration"
+msgstr ""
+
+#. module: auto_backup
+#: sql_constraint:db.backup:0
+msgid "Cannot duplicate a configuration."
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,help:auto_backup.field_db_backup_method
+msgid "Choose the storage method for this backup."
+msgstr ""
+
+#. module: auto_backup
+#: code:addons/auto_backup/models/db_backup.py:251
+#, python-format
+msgid "Cleanup of old database backups failed."
+msgstr ""
+
+#. module: auto_backup
+#: code:addons/auto_backup/models/db_backup.py:131
+#, python-format
+msgid "Connection Test Failed!"
+msgstr ""
+
+#. module: auto_backup
+#: code:addons/auto_backup/models/db_backup.py:128
+#, python-format
+msgid "Connection Test Succeeded!"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup_create_uid
+msgid "Created by"
+msgstr "Utworzone przez"
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup_create_date
+msgid "Created on"
+msgstr "Data utworzenia"
+
+#. module: auto_backup
+#: code:addons/auto_backup/models/db_backup.py:206
+#: model:mail.message.subtype,description:auto_backup.mail_message_subtype_failure
+#, python-format
+msgid "Database backup failed."
+msgstr ""
+
+#. module: auto_backup
+#: code:addons/auto_backup/models/db_backup.py:214
+#: model:mail.message.subtype,description:auto_backup.mail_message_subtype_success
+#, python-format
+msgid "Database backup succeeded."
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup_days_to_keep
+msgid "Days to keep"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup_display_name
+msgid "Display Name"
+msgstr "Wy??wietlana nazwa "
+
+#. module: auto_backup
+#: code:addons/auto_backup/models/db_backup.py:119
+#, python-format
+msgid ""
+"Do not save backups on your filestore, or you will backup your backups too!"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.actions.server,name:auto_backup.action_server_backup
+msgid "Execute backup(s)"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup_folder
+msgid "Folder"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+msgid "Go to Settings / Technical / Automation / Scheduled Actions."
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+msgid "Help"
+msgstr ""
+
+#. module: auto_backup
+#: sql_constraint:db.backup:0
+msgid "I cannot remove backups from the future. Ask Doc for that."
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup_id
+msgid "ID"
+msgstr "ID"
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup___last_update
+msgid "Last Modified on"
+msgstr "Ostatnio modyfikowano"
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup_write_uid
+msgid "Last Updated by"
+msgstr "Ostatnio modyfikowane przez"
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup_write_date
+msgid "Last Updated on"
+msgstr "Data ostatniej modyfikacji"
+
+#. module: auto_backup
+#: selection:db.backup,method:0
+msgid "Local disk"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup_method
+msgid "Method"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup_name
+msgid "Name"
+msgstr "Nazwa"
+
+#. module: auto_backup
+#: model:ir.model.fields,help:auto_backup.field_db_backup_sftp_private_key
+msgid ""
+"Path to the private key file. Only the Odoo user should have read "
+"permissions for that file."
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup_sftp_private_key
+msgid "Private key location"
+msgstr ""
+
+#. module: auto_backup
+#: selection:db.backup,method:0
+msgid "Remote SFTP server"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup_sftp_password
+msgid "SFTP Password"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup_sftp_port
+msgid "SFTP Port"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup_sftp_host
+msgid "SFTP Server"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+msgid "SFTP Settings"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_search
+msgid "Search options"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+msgid "Search the action named 'Backup scheduler'."
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+msgid ""
+"Set the scheduler to active and fill in how often you want backups "
+"generated."
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,help:auto_backup.field_db_backup_name
+msgid "Summary of this backup process"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+msgid "Test SFTP Connection"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,help:auto_backup.field_db_backup_sftp_host
+msgid ""
+"The host name or IP address from your remote server. For example 192.168.0.1"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,help:auto_backup.field_db_backup_sftp_password
+msgid ""
+"The password for the SFTP connection. If you specify a private key file, "
+"then this is the password to decrypt it."
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,help:auto_backup.field_db_backup_sftp_port
+msgid "The port on the FTP server that accepts SSH/SFTP calls."
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,help:auto_backup.field_db_backup_sftp_user
+msgid ""
+"The username where the SFTP connection should be made with. This is the user"
+" on the external server."
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+msgid ""
+"Use SFTP with caution! This writes files to external servers under the path "
+"you specify."
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup_sftp_user
+msgid "Username in the SFTP Server"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+msgid "Warning:"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model,name:auto_backup.model_db_backup
+msgid "db.backup"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+msgid "john"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+msgid "sftp.example.com"
+msgstr ""
diff --git a/auto_backup/i18n/pt.po b/auto_backup/i18n/pt.po
new file mode 100644
index 00000000000..89e1a3a8cd9
--- /dev/null
+++ b/auto_backup/i18n/pt.po
@@ -0,0 +1,317 @@
+# Translation of Odoo Server.
+# This file contains the translation of the following modules:
+# * auto_backup
+# 
+# Translators:
+# OCA Transbot <transbot@odoo-community.org>, 2016
+msgid ""
+msgstr ""
+"Project-Id-Version: Odoo Server 10.0\n"
+"Report-Msgid-Bugs-To: \n"
+"POT-Creation-Date: 2017-02-18 02:29+0000\n"
+"PO-Revision-Date: 2017-02-18 02:29+0000\n"
+"Last-Translator: OCA Transbot <transbot@odoo-community.org>, 2016\n"
+"Language-Team: Portuguese (https://www.transifex.com/oca/teams/23907/pt/)\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: \n"
+"Language: pt\n"
+"Plural-Forms: nplurals=2; plural=(n != 1);\n"
+
+#. module: auto_backup
+#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+msgid "/home/odoo/.ssh/id_rsa"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,help:auto_backup.field_db_backup_folder
+msgid "Absolute path for storing the backups"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.actions.act_window,name:auto_backup.action_backup_conf_form
+#: model:ir.ui.menu,name:auto_backup.backup_conf_menu
+msgid "Automated Backups"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+msgid "Automatic backups of the database can be scheduled as follows:"
+msgstr ""
+
+#. module: auto_backup
+#: model:mail.message.subtype,name:auto_backup.mail_message_subtype_failure
+msgid "Backup Failed"
+msgstr ""
+
+#. module: auto_backup
+#: model:mail.message.subtype,name:auto_backup.mail_message_subtype_success
+msgid "Backup Successful"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_tree
+msgid "Backups"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,help:auto_backup.field_db_backup_days_to_keep
+msgid ""
+"Backups older than this will be deleted automatically. Set 0 to disable "
+"autodeletion."
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+msgid "Basic backup configuration"
+msgstr ""
+
+#. module: auto_backup
+#: sql_constraint:db.backup:0
+msgid "Cannot duplicate a configuration."
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,help:auto_backup.field_db_backup_method
+msgid "Choose the storage method for this backup."
+msgstr ""
+
+#. module: auto_backup
+#: code:addons/auto_backup/models/db_backup.py:251
+#, python-format
+msgid "Cleanup of old database backups failed."
+msgstr ""
+
+#. module: auto_backup
+#: code:addons/auto_backup/models/db_backup.py:131
+#, python-format
+msgid "Connection Test Failed!"
+msgstr ""
+
+#. module: auto_backup
+#: code:addons/auto_backup/models/db_backup.py:128
+#, python-format
+msgid "Connection Test Succeeded!"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup_create_uid
+msgid "Created by"
+msgstr "Criado por"
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup_create_date
+msgid "Created on"
+msgstr "Criado em"
+
+#. module: auto_backup
+#: code:addons/auto_backup/models/db_backup.py:206
+#: model:mail.message.subtype,description:auto_backup.mail_message_subtype_failure
+#, python-format
+msgid "Database backup failed."
+msgstr ""
+
+#. module: auto_backup
+#: code:addons/auto_backup/models/db_backup.py:214
+#: model:mail.message.subtype,description:auto_backup.mail_message_subtype_success
+#, python-format
+msgid "Database backup succeeded."
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup_days_to_keep
+msgid "Days to keep"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup_display_name
+msgid "Display Name"
+msgstr "Nome a Apresentar"
+
+#. module: auto_backup
+#: code:addons/auto_backup/models/db_backup.py:119
+#, python-format
+msgid ""
+"Do not save backups on your filestore, or you will backup your backups too!"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.actions.server,name:auto_backup.action_server_backup
+msgid "Execute backup(s)"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup_folder
+msgid "Folder"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+msgid "Go to Settings / Technical / Automation / Scheduled Actions."
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+msgid "Help"
+msgstr ""
+
+#. module: auto_backup
+#: sql_constraint:db.backup:0
+msgid "I cannot remove backups from the future. Ask Doc for that."
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup_id
+msgid "ID"
+msgstr "ID"
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup___last_update
+msgid "Last Modified on"
+msgstr "??ltima Modifica????o Em"
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup_write_uid
+msgid "Last Updated by"
+msgstr "??ltima Atualiza????o Por"
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup_write_date
+msgid "Last Updated on"
+msgstr "??ltima Atualiza????o Em"
+
+#. module: auto_backup
+#: selection:db.backup,method:0
+msgid "Local disk"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup_method
+msgid "Method"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup_name
+msgid "Name"
+msgstr "Nome"
+
+#. module: auto_backup
+#: model:ir.model.fields,help:auto_backup.field_db_backup_sftp_private_key
+msgid ""
+"Path to the private key file. Only the Odoo user should have read "
+"permissions for that file."
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup_sftp_private_key
+msgid "Private key location"
+msgstr ""
+
+#. module: auto_backup
+#: selection:db.backup,method:0
+msgid "Remote SFTP server"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup_sftp_password
+msgid "SFTP Password"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup_sftp_port
+msgid "SFTP Port"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup_sftp_host
+msgid "SFTP Server"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+msgid "SFTP Settings"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_search
+msgid "Search options"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+msgid "Search the action named 'Backup scheduler'."
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+msgid ""
+"Set the scheduler to active and fill in how often you want backups "
+"generated."
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,help:auto_backup.field_db_backup_name
+msgid "Summary of this backup process"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+msgid "Test SFTP Connection"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,help:auto_backup.field_db_backup_sftp_host
+msgid ""
+"The host name or IP address from your remote server. For example 192.168.0.1"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,help:auto_backup.field_db_backup_sftp_password
+msgid ""
+"The password for the SFTP connection. If you specify a private key file, "
+"then this is the password to decrypt it."
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,help:auto_backup.field_db_backup_sftp_port
+msgid "The port on the FTP server that accepts SSH/SFTP calls."
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,help:auto_backup.field_db_backup_sftp_user
+msgid ""
+"The username where the SFTP connection should be made with. This is the user"
+" on the external server."
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+msgid ""
+"Use SFTP with caution! This writes files to external servers under the path "
+"you specify."
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup_sftp_user
+msgid "Username in the SFTP Server"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+msgid "Warning:"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model,name:auto_backup.model_db_backup
+msgid "db.backup"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+msgid "john"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+msgid "sftp.example.com"
+msgstr ""
diff --git a/auto_backup/i18n/pt_BR.po b/auto_backup/i18n/pt_BR.po
index 30fe8f26e87..1e47c86ead8 100644
--- a/auto_backup/i18n/pt_BR.po
+++ b/auto_backup/i18n/pt_BR.po
@@ -3,15 +3,15 @@
 # * auto_backup
 # 
 # Translators:
-# Paulo Ricardo <ti@shoppingescritorio.com.br>, 2016
+# OCA Transbot <transbot@odoo-community.org>, 2016
 msgid ""
 msgstr ""
-"Project-Id-Version: server-tools (8.0)\n"
+"Project-Id-Version: Odoo Server 10.0\n"
 "Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2016-05-12 14:33+0000\n"
-"PO-Revision-Date: 2016-05-11 16:49+0000\n"
-"Last-Translator: Paulo Ricardo <ti@shoppingescritorio.com.br>\n"
-"Language-Team: Portuguese (Brazil) (http://www.transifex.com/oca/OCA-server-tools-8-0/language/pt_BR/)\n"
+"POT-Creation-Date: 2016-12-08 03:36+0000\n"
+"PO-Revision-Date: 2016-12-08 03:36+0000\n"
+"Last-Translator: OCA Transbot <transbot@odoo-community.org>, 2016\n"
+"Language-Team: Portuguese (Brazil) (https://www.transifex.com/oca/teams/23907/pt_BR/)\n"
 "MIME-Version: 1.0\n"
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: \n"
@@ -19,12 +19,12 @@ msgstr ""
 "Plural-Forms: nplurals=2; plural=(n > 1);\n"
 
 #. module: auto_backup
-#: view:db.backup:auto_backup.view_backup_conf_form
+#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
 msgid "/home/odoo/.ssh/id_rsa"
 msgstr ""
 
 #. module: auto_backup
-#: help:db.backup,folder:0
+#: model:ir.model.fields,help:auto_backup.field_db_backup_folder
 msgid "Absolute path for storing the backups"
 msgstr "Caminho absoluto para armazenar os backups"
 
@@ -35,34 +35,34 @@ msgid "Automated Backups"
 msgstr "Backups Autom??ticos"
 
 #. module: auto_backup
-#: view:db.backup:auto_backup.view_backup_conf_form
+#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
 msgid "Automatic backups of the database can be scheduled as follows:"
 msgstr ""
 
 #. module: auto_backup
-#: model:mail.message.subtype,name:auto_backup.failure
-msgid "Backup failed"
+#: model:mail.message.subtype,name:auto_backup.mail_message_subtype_failure
+msgid "Backup Failed"
 msgstr ""
 
 #. module: auto_backup
-#: model:mail.message.subtype,name:auto_backup.success
-msgid "Backup successful"
+#: model:mail.message.subtype,name:auto_backup.mail_message_subtype_success
+msgid "Backup Successful"
 msgstr ""
 
 #. module: auto_backup
-#: view:db.backup:auto_backup.view_backup_conf_tree
+#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_tree
 msgid "Backups"
 msgstr ""
 
 #. module: auto_backup
-#: help:db.backup,days_to_keep:0
+#: model:ir.model.fields,help:auto_backup.field_db_backup_days_to_keep
 msgid ""
 "Backups older than this will be deleted automatically. Set 0 to disable "
 "autodeletion."
 msgstr ""
 
 #. module: auto_backup
-#: view:db.backup:auto_backup.view_backup_conf_form
+#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
 msgid "Basic backup configuration"
 msgstr ""
 
@@ -72,148 +72,111 @@ msgid "Cannot duplicate a configuration."
 msgstr ""
 
 #. module: auto_backup
-#: help:db.backup,method:0
+#: model:ir.model.fields,help:auto_backup.field_db_backup_method
 msgid "Choose the storage method for this backup."
 msgstr ""
 
 #. module: auto_backup
-#: code:addons/auto_backup/models/db_backup.py:249
+#: code:addons/auto_backup/models/db_backup.py:248
 #, python-format
 msgid "Cleanup of old database backups failed."
 msgstr ""
 
 #. module: auto_backup
-#: code:addons/auto_backup/models/db_backup.py:132
+#: code:addons/auto_backup/models/db_backup.py:131
 #, python-format
 msgid "Connection Test Failed!"
 msgstr ""
 
 #. module: auto_backup
-#: code:addons/auto_backup/models/db_backup.py:129
+#: code:addons/auto_backup/models/db_backup.py:128
 #, python-format
 msgid "Connection Test Succeeded!"
 msgstr ""
 
 #. module: auto_backup
-#: field:db.backup,create_uid:0
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup_create_uid
 msgid "Created by"
 msgstr "Criado por"
 
 #. module: auto_backup
-#: field:db.backup,create_date:0
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup_create_date
 msgid "Created on"
 msgstr "Criado em"
 
 #. module: auto_backup
-#: code:addons/auto_backup/models/db_backup.py:208
-#: model:mail.message.subtype,description:auto_backup.failure
+#: code:addons/auto_backup/models/db_backup.py:206
+#: model:mail.message.subtype,description:auto_backup.mail_message_subtype_failure
 #, python-format
 msgid "Database backup failed."
 msgstr ""
 
 #. module: auto_backup
-#: code:addons/auto_backup/models/db_backup.py:213
-#: model:mail.message.subtype,description:auto_backup.success
+#: code:addons/auto_backup/models/db_backup.py:211
+#: model:mail.message.subtype,description:auto_backup.mail_message_subtype_success
 #, python-format
 msgid "Database backup succeeded."
 msgstr ""
 
 #. module: auto_backup
-#: help:db.backup,message_last_post:0
-msgid "Date of the last message posted on the record."
-msgstr ""
-
-#. module: auto_backup
-#: field:db.backup,days_to_keep:0
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup_days_to_keep
 msgid "Days to keep"
 msgstr ""
 
 #. module: auto_backup
-#: field:db.backup,display_name:0
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup_display_name
 msgid "Display Name"
 msgstr "Nome para Mostrar"
 
 #. module: auto_backup
-#: code:addons/auto_backup/models/db_backup.py:120
+#: code:addons/auto_backup/models/db_backup.py:119
 #, python-format
 msgid ""
 "Do not save backups on your filestore, or you will backup your backups too!"
 msgstr ""
 
-#. module: auto_backup
-#: model:ir.model,name:auto_backup.model_db_backup
-msgid "Email Thread"
-msgstr "Processo Email"
-
 #. module: auto_backup
 #: model:ir.actions.server,name:auto_backup.action_server_backup
 msgid "Execute backup(s)"
 msgstr ""
 
 #. module: auto_backup
-#: field:db.backup,folder:0
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup_folder
 msgid "Folder"
 msgstr "Pasta"
 
 #. module: auto_backup
-#: field:db.backup,message_follower_ids:0
-msgid "Followers"
-msgstr ""
-
-#. module: auto_backup
-#: view:db.backup:auto_backup.view_backup_conf_form
+#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
 msgid "Go to Settings / Technical / Automation / Scheduled Actions."
 msgstr ""
 
 #. module: auto_backup
-#: view:db.backup:auto_backup.view_backup_conf_form
+#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
 msgid "Help"
 msgstr ""
 
-#. module: auto_backup
-#: help:db.backup,message_summary:0
-msgid ""
-"Holds the Chatter summary (number of messages, ...). This summary is "
-"directly in html format in order to be inserted in kanban views."
-msgstr ""
-
 #. module: auto_backup
 #: sql_constraint:db.backup:0
 msgid "I cannot remove backups from the future. Ask Doc for that."
 msgstr ""
 
 #. module: auto_backup
-#: field:db.backup,id:0
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup_id
 msgid "ID"
 msgstr "Identifica????o"
 
 #. module: auto_backup
-#: help:db.backup,message_unread:0
-msgid "If checked new messages require your attention."
-msgstr ""
-
-#. module: auto_backup
-#: field:db.backup,message_is_follower:0
-msgid "Is a Follower"
-msgstr ""
-
-#. module: auto_backup
-#: field:db.backup,message_last_post:0
-msgid "Last Message Date"
-msgstr ""
-
-#. module: auto_backup
-#: field:db.backup,__last_update:0
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup___last_update
 msgid "Last Modified on"
 msgstr "??ltima atualiza????o em"
 
 #. module: auto_backup
-#: field:db.backup,write_uid:0
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup_write_uid
 msgid "Last Updated by"
 msgstr "??ltima atualiza????o por"
 
 #. module: auto_backup
-#: field:db.backup,write_date:0
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup_write_date
 msgid "Last Updated on"
 msgstr "??ltima atualiza????o em"
 
@@ -223,34 +186,24 @@ msgid "Local disk"
 msgstr ""
 
 #. module: auto_backup
-#: field:db.backup,message_ids:0
-msgid "Messages"
-msgstr ""
-
-#. module: auto_backup
-#: help:db.backup,message_ids:0
-msgid "Messages and communication history"
-msgstr ""
-
-#. module: auto_backup
-#: field:db.backup,method:0
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup_method
 msgid "Method"
 msgstr "M??todo"
 
 #. module: auto_backup
-#: field:db.backup,name:0
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup_name
 msgid "Name"
 msgstr "Nome"
 
 #. module: auto_backup
-#: help:db.backup,sftp_private_key:0
+#: model:ir.model.fields,help:auto_backup.field_db_backup_sftp_private_key
 msgid ""
 "Path to the private key file. Only the Odoo user should have read "
 "permissions for that file."
 msgstr ""
 
 #. module: auto_backup
-#: field:db.backup,sftp_private_key:0
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup_sftp_private_key
 msgid "Private key location"
 msgstr ""
 
@@ -260,110 +213,105 @@ msgid "Remote SFTP server"
 msgstr ""
 
 #. module: auto_backup
-#: field:db.backup,sftp_password:0
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup_sftp_password
 msgid "SFTP Password"
 msgstr ""
 
 #. module: auto_backup
-#: field:db.backup,sftp_port:0
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup_sftp_port
 msgid "SFTP Port"
 msgstr ""
 
 #. module: auto_backup
-#: field:db.backup,sftp_host:0
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup_sftp_host
 msgid "SFTP Server"
 msgstr ""
 
 #. module: auto_backup
-#: view:db.backup:auto_backup.view_backup_conf_form
+#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
 msgid "SFTP Settings"
 msgstr ""
 
 #. module: auto_backup
-#: view:db.backup:auto_backup.view_backup_conf_search
+#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_search
 msgid "Search options"
 msgstr ""
 
 #. module: auto_backup
-#: view:db.backup:auto_backup.view_backup_conf_form
+#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
 msgid "Search the action named 'Backup scheduler'."
 msgstr ""
 
 #. module: auto_backup
-#: view:db.backup:auto_backup.view_backup_conf_form
+#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
 msgid ""
 "Set the scheduler to active and fill in how often you want backups "
 "generated."
 msgstr ""
 
 #. module: auto_backup
-#: field:db.backup,message_summary:0
-msgid "Summary"
-msgstr ""
-
-#. module: auto_backup
-#: help:db.backup,name:0
+#: model:ir.model.fields,help:auto_backup.field_db_backup_name
 msgid "Summary of this backup process"
 msgstr ""
 
 #. module: auto_backup
-#: view:db.backup:auto_backup.view_backup_conf_form
+#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
 msgid "Test SFTP Connection"
 msgstr ""
 
 #. module: auto_backup
-#: help:db.backup,sftp_host:0
+#: model:ir.model.fields,help:auto_backup.field_db_backup_sftp_host
 msgid ""
 "The host name or IP address from your remote server. For example 192.168.0.1"
 msgstr ""
 
 #. module: auto_backup
-#: help:db.backup,sftp_password:0
+#: model:ir.model.fields,help:auto_backup.field_db_backup_sftp_password
 msgid ""
 "The password for the SFTP connection. If you specify a private key file, "
 "then this is the password to decrypt it."
 msgstr ""
 
 #. module: auto_backup
-#: help:db.backup,sftp_port:0
+#: model:ir.model.fields,help:auto_backup.field_db_backup_sftp_port
 msgid "The port on the FTP server that accepts SSH/SFTP calls."
 msgstr ""
 
 #. module: auto_backup
-#: help:db.backup,sftp_user:0
+#: model:ir.model.fields,help:auto_backup.field_db_backup_sftp_user
 msgid ""
 "The username where the SFTP connection should be made with. This is the user"
 " on the external server."
 msgstr ""
 
 #. module: auto_backup
-#: field:db.backup,message_unread:0
-msgid "Unread Messages"
-msgstr ""
-
-#. module: auto_backup
-#: view:db.backup:auto_backup.view_backup_conf_form
+#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
 msgid ""
 "Use SFTP with caution! This writes files to external servers under the path "
 "you specify."
 msgstr ""
 
 #. module: auto_backup
-#: field:db.backup,sftp_user:0
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup_sftp_user
 msgid "Username in the SFTP Server"
 msgstr ""
 
 #. module: auto_backup
-#: view:db.backup:auto_backup.view_backup_conf_form
+#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
 msgid "Warning:"
 msgstr ""
 
 #. module: auto_backup
-#: view:db.backup:auto_backup.view_backup_conf_form
+#: model:ir.model,name:auto_backup.model_db_backup
+msgid "db.backup"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
 msgid "john"
 msgstr ""
 
 #. module: auto_backup
-#: view:db.backup:auto_backup.view_backup_conf_form
+#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
 msgid "sftp.example.com"
 msgstr ""
diff --git a/auto_backup/i18n/pt_PT.po b/auto_backup/i18n/pt_PT.po
new file mode 100644
index 00000000000..15ddfae18e9
--- /dev/null
+++ b/auto_backup/i18n/pt_PT.po
@@ -0,0 +1,317 @@
+# Translation of Odoo Server.
+# This file contains the translation of the following modules:
+# * auto_backup
+# 
+# Translators:
+# OCA Transbot <transbot@odoo-community.org>, 2016
+msgid ""
+msgstr ""
+"Project-Id-Version: Odoo Server 10.0\n"
+"Report-Msgid-Bugs-To: \n"
+"POT-Creation-Date: 2017-02-22 00:54+0000\n"
+"PO-Revision-Date: 2017-02-22 00:54+0000\n"
+"Last-Translator: OCA Transbot <transbot@odoo-community.org>, 2016\n"
+"Language-Team: Portuguese (Portugal) (https://www.transifex.com/oca/teams/23907/pt_PT/)\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: \n"
+"Language: pt_PT\n"
+"Plural-Forms: nplurals=2; plural=(n != 1);\n"
+
+#. module: auto_backup
+#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+msgid "/home/odoo/.ssh/id_rsa"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,help:auto_backup.field_db_backup_folder
+msgid "Absolute path for storing the backups"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.actions.act_window,name:auto_backup.action_backup_conf_form
+#: model:ir.ui.menu,name:auto_backup.backup_conf_menu
+msgid "Automated Backups"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+msgid "Automatic backups of the database can be scheduled as follows:"
+msgstr ""
+
+#. module: auto_backup
+#: model:mail.message.subtype,name:auto_backup.mail_message_subtype_failure
+msgid "Backup Failed"
+msgstr ""
+
+#. module: auto_backup
+#: model:mail.message.subtype,name:auto_backup.mail_message_subtype_success
+msgid "Backup Successful"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_tree
+msgid "Backups"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,help:auto_backup.field_db_backup_days_to_keep
+msgid ""
+"Backups older than this will be deleted automatically. Set 0 to disable "
+"autodeletion."
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+msgid "Basic backup configuration"
+msgstr ""
+
+#. module: auto_backup
+#: sql_constraint:db.backup:0
+msgid "Cannot duplicate a configuration."
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,help:auto_backup.field_db_backup_method
+msgid "Choose the storage method for this backup."
+msgstr ""
+
+#. module: auto_backup
+#: code:addons/auto_backup/models/db_backup.py:251
+#, python-format
+msgid "Cleanup of old database backups failed."
+msgstr ""
+
+#. module: auto_backup
+#: code:addons/auto_backup/models/db_backup.py:131
+#, python-format
+msgid "Connection Test Failed!"
+msgstr ""
+
+#. module: auto_backup
+#: code:addons/auto_backup/models/db_backup.py:128
+#, python-format
+msgid "Connection Test Succeeded!"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup_create_uid
+msgid "Created by"
+msgstr "Criado por"
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup_create_date
+msgid "Created on"
+msgstr "Criado em"
+
+#. module: auto_backup
+#: code:addons/auto_backup/models/db_backup.py:206
+#: model:mail.message.subtype,description:auto_backup.mail_message_subtype_failure
+#, python-format
+msgid "Database backup failed."
+msgstr ""
+
+#. module: auto_backup
+#: code:addons/auto_backup/models/db_backup.py:214
+#: model:mail.message.subtype,description:auto_backup.mail_message_subtype_success
+#, python-format
+msgid "Database backup succeeded."
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup_days_to_keep
+msgid "Days to keep"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup_display_name
+msgid "Display Name"
+msgstr "Nome a Apresentar"
+
+#. module: auto_backup
+#: code:addons/auto_backup/models/db_backup.py:119
+#, python-format
+msgid ""
+"Do not save backups on your filestore, or you will backup your backups too!"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.actions.server,name:auto_backup.action_server_backup
+msgid "Execute backup(s)"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup_folder
+msgid "Folder"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+msgid "Go to Settings / Technical / Automation / Scheduled Actions."
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+msgid "Help"
+msgstr ""
+
+#. module: auto_backup
+#: sql_constraint:db.backup:0
+msgid "I cannot remove backups from the future. Ask Doc for that."
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup_id
+msgid "ID"
+msgstr "ID"
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup___last_update
+msgid "Last Modified on"
+msgstr "??ltima Modifica????o em"
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup_write_uid
+msgid "Last Updated by"
+msgstr "??ltima Modifica????o por"
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup_write_date
+msgid "Last Updated on"
+msgstr "??ltima Atualiza????o em"
+
+#. module: auto_backup
+#: selection:db.backup,method:0
+msgid "Local disk"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup_method
+msgid "Method"
+msgstr "M??todo"
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup_name
+msgid "Name"
+msgstr "Nome"
+
+#. module: auto_backup
+#: model:ir.model.fields,help:auto_backup.field_db_backup_sftp_private_key
+msgid ""
+"Path to the private key file. Only the Odoo user should have read "
+"permissions for that file."
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup_sftp_private_key
+msgid "Private key location"
+msgstr ""
+
+#. module: auto_backup
+#: selection:db.backup,method:0
+msgid "Remote SFTP server"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup_sftp_password
+msgid "SFTP Password"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup_sftp_port
+msgid "SFTP Port"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup_sftp_host
+msgid "SFTP Server"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+msgid "SFTP Settings"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_search
+msgid "Search options"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+msgid "Search the action named 'Backup scheduler'."
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+msgid ""
+"Set the scheduler to active and fill in how often you want backups "
+"generated."
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,help:auto_backup.field_db_backup_name
+msgid "Summary of this backup process"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+msgid "Test SFTP Connection"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,help:auto_backup.field_db_backup_sftp_host
+msgid ""
+"The host name or IP address from your remote server. For example 192.168.0.1"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,help:auto_backup.field_db_backup_sftp_password
+msgid ""
+"The password for the SFTP connection. If you specify a private key file, "
+"then this is the password to decrypt it."
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,help:auto_backup.field_db_backup_sftp_port
+msgid "The port on the FTP server that accepts SSH/SFTP calls."
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,help:auto_backup.field_db_backup_sftp_user
+msgid ""
+"The username where the SFTP connection should be made with. This is the user"
+" on the external server."
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+msgid ""
+"Use SFTP with caution! This writes files to external servers under the path "
+"you specify."
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup_sftp_user
+msgid "Username in the SFTP Server"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+msgid "Warning:"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model,name:auto_backup.model_db_backup
+msgid "db.backup"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+msgid "john"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+msgid "sftp.example.com"
+msgstr ""
diff --git a/auto_backup/i18n/ro.po b/auto_backup/i18n/ro.po
new file mode 100644
index 00000000000..a34877b4449
--- /dev/null
+++ b/auto_backup/i18n/ro.po
@@ -0,0 +1,317 @@
+# Translation of Odoo Server.
+# This file contains the translation of the following modules:
+# * auto_backup
+# 
+# Translators:
+# OCA Transbot <transbot@odoo-community.org>, 2016
+msgid ""
+msgstr ""
+"Project-Id-Version: Odoo Server 10.0\n"
+"Report-Msgid-Bugs-To: \n"
+"POT-Creation-Date: 2017-02-18 02:29+0000\n"
+"PO-Revision-Date: 2017-02-18 02:29+0000\n"
+"Last-Translator: OCA Transbot <transbot@odoo-community.org>, 2016\n"
+"Language-Team: Romanian (https://www.transifex.com/oca/teams/23907/ro/)\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: \n"
+"Language: ro\n"
+"Plural-Forms: nplurals=3; plural=(n==1?0:(((n%100>19)||((n%100==0)&&(n!=0)))?2:1));\n"
+
+#. module: auto_backup
+#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+msgid "/home/odoo/.ssh/id_rsa"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,help:auto_backup.field_db_backup_folder
+msgid "Absolute path for storing the backups"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.actions.act_window,name:auto_backup.action_backup_conf_form
+#: model:ir.ui.menu,name:auto_backup.backup_conf_menu
+msgid "Automated Backups"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+msgid "Automatic backups of the database can be scheduled as follows:"
+msgstr ""
+
+#. module: auto_backup
+#: model:mail.message.subtype,name:auto_backup.mail_message_subtype_failure
+msgid "Backup Failed"
+msgstr ""
+
+#. module: auto_backup
+#: model:mail.message.subtype,name:auto_backup.mail_message_subtype_success
+msgid "Backup Successful"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_tree
+msgid "Backups"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,help:auto_backup.field_db_backup_days_to_keep
+msgid ""
+"Backups older than this will be deleted automatically. Set 0 to disable "
+"autodeletion."
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+msgid "Basic backup configuration"
+msgstr ""
+
+#. module: auto_backup
+#: sql_constraint:db.backup:0
+msgid "Cannot duplicate a configuration."
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,help:auto_backup.field_db_backup_method
+msgid "Choose the storage method for this backup."
+msgstr ""
+
+#. module: auto_backup
+#: code:addons/auto_backup/models/db_backup.py:251
+#, python-format
+msgid "Cleanup of old database backups failed."
+msgstr ""
+
+#. module: auto_backup
+#: code:addons/auto_backup/models/db_backup.py:131
+#, python-format
+msgid "Connection Test Failed!"
+msgstr ""
+
+#. module: auto_backup
+#: code:addons/auto_backup/models/db_backup.py:128
+#, python-format
+msgid "Connection Test Succeeded!"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup_create_uid
+msgid "Created by"
+msgstr "Creat de"
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup_create_date
+msgid "Created on"
+msgstr "Creat la"
+
+#. module: auto_backup
+#: code:addons/auto_backup/models/db_backup.py:206
+#: model:mail.message.subtype,description:auto_backup.mail_message_subtype_failure
+#, python-format
+msgid "Database backup failed."
+msgstr ""
+
+#. module: auto_backup
+#: code:addons/auto_backup/models/db_backup.py:214
+#: model:mail.message.subtype,description:auto_backup.mail_message_subtype_success
+#, python-format
+msgid "Database backup succeeded."
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup_days_to_keep
+msgid "Days to keep"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup_display_name
+msgid "Display Name"
+msgstr "Nume Afi??at"
+
+#. module: auto_backup
+#: code:addons/auto_backup/models/db_backup.py:119
+#, python-format
+msgid ""
+"Do not save backups on your filestore, or you will backup your backups too!"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.actions.server,name:auto_backup.action_server_backup
+msgid "Execute backup(s)"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup_folder
+msgid "Folder"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+msgid "Go to Settings / Technical / Automation / Scheduled Actions."
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+msgid "Help"
+msgstr ""
+
+#. module: auto_backup
+#: sql_constraint:db.backup:0
+msgid "I cannot remove backups from the future. Ask Doc for that."
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup_id
+msgid "ID"
+msgstr "ID"
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup___last_update
+msgid "Last Modified on"
+msgstr "Ultima actualizare ??n"
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup_write_uid
+msgid "Last Updated by"
+msgstr "Ultima actualizare f??cut?? de"
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup_write_date
+msgid "Last Updated on"
+msgstr "Ultima actualizare la"
+
+#. module: auto_backup
+#: selection:db.backup,method:0
+msgid "Local disk"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup_method
+msgid "Method"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup_name
+msgid "Name"
+msgstr "Nume"
+
+#. module: auto_backup
+#: model:ir.model.fields,help:auto_backup.field_db_backup_sftp_private_key
+msgid ""
+"Path to the private key file. Only the Odoo user should have read "
+"permissions for that file."
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup_sftp_private_key
+msgid "Private key location"
+msgstr ""
+
+#. module: auto_backup
+#: selection:db.backup,method:0
+msgid "Remote SFTP server"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup_sftp_password
+msgid "SFTP Password"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup_sftp_port
+msgid "SFTP Port"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup_sftp_host
+msgid "SFTP Server"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+msgid "SFTP Settings"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_search
+msgid "Search options"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+msgid "Search the action named 'Backup scheduler'."
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+msgid ""
+"Set the scheduler to active and fill in how often you want backups "
+"generated."
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,help:auto_backup.field_db_backup_name
+msgid "Summary of this backup process"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+msgid "Test SFTP Connection"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,help:auto_backup.field_db_backup_sftp_host
+msgid ""
+"The host name or IP address from your remote server. For example 192.168.0.1"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,help:auto_backup.field_db_backup_sftp_password
+msgid ""
+"The password for the SFTP connection. If you specify a private key file, "
+"then this is the password to decrypt it."
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,help:auto_backup.field_db_backup_sftp_port
+msgid "The port on the FTP server that accepts SSH/SFTP calls."
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,help:auto_backup.field_db_backup_sftp_user
+msgid ""
+"The username where the SFTP connection should be made with. This is the user"
+" on the external server."
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+msgid ""
+"Use SFTP with caution! This writes files to external servers under the path "
+"you specify."
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup_sftp_user
+msgid "Username in the SFTP Server"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+msgid "Warning:"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model,name:auto_backup.model_db_backup
+msgid "db.backup"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+msgid "john"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+msgid "sftp.example.com"
+msgstr ""
diff --git a/auto_backup/i18n/ru.po b/auto_backup/i18n/ru.po
index 83d3f41ef21..ea05d719d9e 100644
--- a/auto_backup/i18n/ru.po
+++ b/auto_backup/i18n/ru.po
@@ -3,14 +3,15 @@
 # * auto_backup
 # 
 # Translators:
+# OCA Transbot <transbot@odoo-community.org>, 2016
 msgid ""
 msgstr ""
-"Project-Id-Version: server-tools (8.0)\n"
+"Project-Id-Version: Odoo Server 10.0\n"
 "Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2016-04-14 07:02+0000\n"
-"PO-Revision-Date: 2016-04-05 07:21+0000\n"
-"Last-Translator: <>\n"
-"Language-Team: Russian (http://www.transifex.com/oca/OCA-server-tools-8-0/language/ru/)\n"
+"POT-Creation-Date: 2016-12-08 03:36+0000\n"
+"PO-Revision-Date: 2016-12-08 03:36+0000\n"
+"Last-Translator: OCA Transbot <transbot@odoo-community.org>, 2016\n"
+"Language-Team: Russian (https://www.transifex.com/oca/teams/23907/ru/)\n"
 "MIME-Version: 1.0\n"
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: \n"
@@ -18,12 +19,12 @@ msgstr ""
 "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: auto_backup
-#: view:db.backup:auto_backup.view_backup_conf_form
+#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
 msgid "/home/odoo/.ssh/id_rsa"
 msgstr ""
 
 #. module: auto_backup
-#: help:db.backup,folder:0
+#: model:ir.model.fields,help:auto_backup.field_db_backup_folder
 msgid "Absolute path for storing the backups"
 msgstr ""
 
@@ -34,34 +35,34 @@ msgid "Automated Backups"
 msgstr ""
 
 #. module: auto_backup
-#: view:db.backup:auto_backup.view_backup_conf_form
+#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
 msgid "Automatic backups of the database can be scheduled as follows:"
 msgstr ""
 
 #. module: auto_backup
-#: model:mail.message.subtype,name:auto_backup.failure
-msgid "Backup failed"
+#: model:mail.message.subtype,name:auto_backup.mail_message_subtype_failure
+msgid "Backup Failed"
 msgstr ""
 
 #. module: auto_backup
-#: model:mail.message.subtype,name:auto_backup.success
-msgid "Backup successful"
+#: model:mail.message.subtype,name:auto_backup.mail_message_subtype_success
+msgid "Backup Successful"
 msgstr ""
 
 #. module: auto_backup
-#: view:db.backup:auto_backup.view_backup_conf_tree
+#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_tree
 msgid "Backups"
 msgstr ""
 
 #. module: auto_backup
-#: help:db.backup,days_to_keep:0
+#: model:ir.model.fields,help:auto_backup.field_db_backup_days_to_keep
 msgid ""
 "Backups older than this will be deleted automatically. Set 0 to disable "
 "autodeletion."
 msgstr ""
 
 #. module: auto_backup
-#: view:db.backup:auto_backup.view_backup_conf_form
+#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
 msgid "Basic backup configuration"
 msgstr ""
 
@@ -71,140 +72,113 @@ msgid "Cannot duplicate a configuration."
 msgstr ""
 
 #. module: auto_backup
-#: help:db.backup,method:0
+#: model:ir.model.fields,help:auto_backup.field_db_backup_method
 msgid "Choose the storage method for this backup."
 msgstr ""
 
 #. module: auto_backup
-#: code:addons/auto_backup/models/db_backup.py:249
+#: code:addons/auto_backup/models/db_backup.py:248
 #, python-format
 msgid "Cleanup of old database backups failed."
 msgstr ""
 
 #. module: auto_backup
-#: code:addons/auto_backup/models/db_backup.py:132
+#: code:addons/auto_backup/models/db_backup.py:131
 #, python-format
 msgid "Connection Test Failed!"
 msgstr ""
 
 #. module: auto_backup
-#: code:addons/auto_backup/models/db_backup.py:129
+#: code:addons/auto_backup/models/db_backup.py:128
 #, python-format
 msgid "Connection Test Succeeded!"
 msgstr ""
 
 #. module: auto_backup
-#: field:db.backup,create_uid:0
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup_create_uid
 msgid "Created by"
-msgstr ""
+msgstr "??????????????"
 
 #. module: auto_backup
-#: field:db.backup,create_date:0
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup_create_date
 msgid "Created on"
-msgstr ""
+msgstr "????????????"
 
 #. module: auto_backup
-#: code:addons/auto_backup/models/db_backup.py:208
-#: model:mail.message.subtype,description:auto_backup.failure
+#: code:addons/auto_backup/models/db_backup.py:206
+#: model:mail.message.subtype,description:auto_backup.mail_message_subtype_failure
 #, python-format
 msgid "Database backup failed."
 msgstr ""
 
 #. module: auto_backup
-#: code:addons/auto_backup/models/db_backup.py:213
-#: model:mail.message.subtype,description:auto_backup.success
+#: code:addons/auto_backup/models/db_backup.py:211
+#: model:mail.message.subtype,description:auto_backup.mail_message_subtype_success
 #, python-format
 msgid "Database backup succeeded."
 msgstr ""
 
 #. module: auto_backup
-#: help:db.backup,message_last_post:0
-msgid "Date of the last message posted on the record."
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup_days_to_keep
+msgid "Days to keep"
 msgstr ""
 
 #. module: auto_backup
-#: field:db.backup,days_to_keep:0
-msgid "Days to keep"
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup_display_name
+msgid "Display Name"
 msgstr ""
 
 #. module: auto_backup
-#: code:addons/auto_backup/models/db_backup.py:120
+#: code:addons/auto_backup/models/db_backup.py:119
 #, python-format
 msgid ""
 "Do not save backups on your filestore, or you will backup your backups too!"
 msgstr ""
 
-#. module: auto_backup
-#: model:ir.model,name:auto_backup.model_db_backup
-msgid "Email Thread"
-msgstr ""
-
 #. module: auto_backup
 #: model:ir.actions.server,name:auto_backup.action_server_backup
 msgid "Execute backup(s)"
 msgstr ""
 
 #. module: auto_backup
-#: field:db.backup,folder:0
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup_folder
 msgid "Folder"
 msgstr ""
 
 #. module: auto_backup
-#: field:db.backup,message_follower_ids:0
-msgid "Followers"
-msgstr ""
-
-#. module: auto_backup
-#: view:db.backup:auto_backup.view_backup_conf_form
+#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
 msgid "Go to Settings / Technical / Automation / Scheduled Actions."
 msgstr ""
 
 #. module: auto_backup
-#: view:db.backup:auto_backup.view_backup_conf_form
+#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
 msgid "Help"
 msgstr ""
 
-#. module: auto_backup
-#: help:db.backup,message_summary:0
-msgid ""
-"Holds the Chatter summary (number of messages, ...). This summary is "
-"directly in html format in order to be inserted in kanban views."
-msgstr ""
-
 #. module: auto_backup
 #: sql_constraint:db.backup:0
 msgid "I cannot remove backups from the future. Ask Doc for that."
 msgstr ""
 
 #. module: auto_backup
-#: field:db.backup,id:0
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup_id
 msgid "ID"
-msgstr ""
-
-#. module: auto_backup
-#: help:db.backup,message_unread:0
-msgid "If checked new messages require your attention."
-msgstr ""
-
-#. module: auto_backup
-#: field:db.backup,message_is_follower:0
-msgid "Is a Follower"
-msgstr ""
+msgstr "ID"
 
 #. module: auto_backup
-#: field:db.backup,message_last_post:0
-msgid "Last Message Date"
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup___last_update
+msgid "Last Modified on"
 msgstr ""
 
 #. module: auto_backup
-#: field:db.backup,write_uid:0
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup_write_uid
 msgid "Last Updated by"
-msgstr ""
+msgstr "?????????????????? ?????? ??????????????????"
 
 #. module: auto_backup
-#: field:db.backup,write_date:0
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup_write_date
 msgid "Last Updated on"
-msgstr ""
+msgstr "?????????????????? ?????? ??????????????????"
 
 #. module: auto_backup
 #: selection:db.backup,method:0
@@ -212,34 +186,24 @@ msgid "Local disk"
 msgstr ""
 
 #. module: auto_backup
-#: field:db.backup,message_ids:0
-msgid "Messages"
-msgstr ""
-
-#. module: auto_backup
-#: help:db.backup,message_ids:0
-msgid "Messages and communication history"
-msgstr ""
-
-#. module: auto_backup
-#: field:db.backup,method:0
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup_method
 msgid "Method"
 msgstr ""
 
 #. module: auto_backup
-#: field:db.backup,name:0
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup_name
 msgid "Name"
 msgstr "????????????????"
 
 #. module: auto_backup
-#: help:db.backup,sftp_private_key:0
+#: model:ir.model.fields,help:auto_backup.field_db_backup_sftp_private_key
 msgid ""
 "Path to the private key file. Only the Odoo user should have read "
 "permissions for that file."
 msgstr ""
 
 #. module: auto_backup
-#: field:db.backup,sftp_private_key:0
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup_sftp_private_key
 msgid "Private key location"
 msgstr ""
 
@@ -249,110 +213,105 @@ msgid "Remote SFTP server"
 msgstr ""
 
 #. module: auto_backup
-#: field:db.backup,sftp_password:0
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup_sftp_password
 msgid "SFTP Password"
 msgstr ""
 
 #. module: auto_backup
-#: field:db.backup,sftp_port:0
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup_sftp_port
 msgid "SFTP Port"
 msgstr ""
 
 #. module: auto_backup
-#: field:db.backup,sftp_host:0
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup_sftp_host
 msgid "SFTP Server"
 msgstr ""
 
 #. module: auto_backup
-#: view:db.backup:auto_backup.view_backup_conf_form
+#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
 msgid "SFTP Settings"
 msgstr ""
 
 #. module: auto_backup
-#: view:db.backup:auto_backup.view_backup_conf_search
+#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_search
 msgid "Search options"
 msgstr ""
 
 #. module: auto_backup
-#: view:db.backup:auto_backup.view_backup_conf_form
+#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
 msgid "Search the action named 'Backup scheduler'."
 msgstr ""
 
 #. module: auto_backup
-#: view:db.backup:auto_backup.view_backup_conf_form
+#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
 msgid ""
 "Set the scheduler to active and fill in how often you want backups "
 "generated."
 msgstr ""
 
 #. module: auto_backup
-#: field:db.backup,message_summary:0
-msgid "Summary"
-msgstr ""
-
-#. module: auto_backup
-#: help:db.backup,name:0
+#: model:ir.model.fields,help:auto_backup.field_db_backup_name
 msgid "Summary of this backup process"
 msgstr ""
 
 #. module: auto_backup
-#: view:db.backup:auto_backup.view_backup_conf_form
+#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
 msgid "Test SFTP Connection"
 msgstr ""
 
 #. module: auto_backup
-#: help:db.backup,sftp_host:0
+#: model:ir.model.fields,help:auto_backup.field_db_backup_sftp_host
 msgid ""
 "The host name or IP address from your remote server. For example 192.168.0.1"
 msgstr ""
 
 #. module: auto_backup
-#: help:db.backup,sftp_password:0
+#: model:ir.model.fields,help:auto_backup.field_db_backup_sftp_password
 msgid ""
 "The password for the SFTP connection. If you specify a private key file, "
 "then this is the password to decrypt it."
 msgstr ""
 
 #. module: auto_backup
-#: help:db.backup,sftp_port:0
+#: model:ir.model.fields,help:auto_backup.field_db_backup_sftp_port
 msgid "The port on the FTP server that accepts SSH/SFTP calls."
 msgstr ""
 
 #. module: auto_backup
-#: help:db.backup,sftp_user:0
+#: model:ir.model.fields,help:auto_backup.field_db_backup_sftp_user
 msgid ""
 "The username where the SFTP connection should be made with. This is the user"
 " on the external server."
 msgstr ""
 
 #. module: auto_backup
-#: field:db.backup,message_unread:0
-msgid "Unread Messages"
-msgstr ""
-
-#. module: auto_backup
-#: view:db.backup:auto_backup.view_backup_conf_form
+#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
 msgid ""
 "Use SFTP with caution! This writes files to external servers under the path "
 "you specify."
 msgstr ""
 
 #. module: auto_backup
-#: field:db.backup,sftp_user:0
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup_sftp_user
 msgid "Username in the SFTP Server"
 msgstr ""
 
 #. module: auto_backup
-#: view:db.backup:auto_backup.view_backup_conf_form
+#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
 msgid "Warning:"
 msgstr ""
 
 #. module: auto_backup
-#: view:db.backup:auto_backup.view_backup_conf_form
+#: model:ir.model,name:auto_backup.model_db_backup
+msgid "db.backup"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
 msgid "john"
 msgstr ""
 
 #. module: auto_backup
-#: view:db.backup:auto_backup.view_backup_conf_form
+#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
 msgid "sftp.example.com"
 msgstr ""
diff --git a/auto_backup/i18n/sk.po b/auto_backup/i18n/sk.po
new file mode 100644
index 00000000000..ce9724cfa24
--- /dev/null
+++ b/auto_backup/i18n/sk.po
@@ -0,0 +1,317 @@
+# Translation of Odoo Server.
+# This file contains the translation of the following modules:
+# * auto_backup
+# 
+# Translators:
+# OCA Transbot <transbot@odoo-community.org>, 2016
+msgid ""
+msgstr ""
+"Project-Id-Version: Odoo Server 10.0\n"
+"Report-Msgid-Bugs-To: \n"
+"POT-Creation-Date: 2017-02-18 02:29+0000\n"
+"PO-Revision-Date: 2017-02-18 02:29+0000\n"
+"Last-Translator: OCA Transbot <transbot@odoo-community.org>, 2016\n"
+"Language-Team: Slovak (https://www.transifex.com/oca/teams/23907/sk/)\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: \n"
+"Language: sk\n"
+"Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;\n"
+
+#. module: auto_backup
+#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+msgid "/home/odoo/.ssh/id_rsa"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,help:auto_backup.field_db_backup_folder
+msgid "Absolute path for storing the backups"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.actions.act_window,name:auto_backup.action_backup_conf_form
+#: model:ir.ui.menu,name:auto_backup.backup_conf_menu
+msgid "Automated Backups"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+msgid "Automatic backups of the database can be scheduled as follows:"
+msgstr ""
+
+#. module: auto_backup
+#: model:mail.message.subtype,name:auto_backup.mail_message_subtype_failure
+msgid "Backup Failed"
+msgstr ""
+
+#. module: auto_backup
+#: model:mail.message.subtype,name:auto_backup.mail_message_subtype_success
+msgid "Backup Successful"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_tree
+msgid "Backups"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,help:auto_backup.field_db_backup_days_to_keep
+msgid ""
+"Backups older than this will be deleted automatically. Set 0 to disable "
+"autodeletion."
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+msgid "Basic backup configuration"
+msgstr ""
+
+#. module: auto_backup
+#: sql_constraint:db.backup:0
+msgid "Cannot duplicate a configuration."
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,help:auto_backup.field_db_backup_method
+msgid "Choose the storage method for this backup."
+msgstr ""
+
+#. module: auto_backup
+#: code:addons/auto_backup/models/db_backup.py:251
+#, python-format
+msgid "Cleanup of old database backups failed."
+msgstr ""
+
+#. module: auto_backup
+#: code:addons/auto_backup/models/db_backup.py:131
+#, python-format
+msgid "Connection Test Failed!"
+msgstr ""
+
+#. module: auto_backup
+#: code:addons/auto_backup/models/db_backup.py:128
+#, python-format
+msgid "Connection Test Succeeded!"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup_create_uid
+msgid "Created by"
+msgstr "Vytvoril"
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup_create_date
+msgid "Created on"
+msgstr "Vytvoren??"
+
+#. module: auto_backup
+#: code:addons/auto_backup/models/db_backup.py:206
+#: model:mail.message.subtype,description:auto_backup.mail_message_subtype_failure
+#, python-format
+msgid "Database backup failed."
+msgstr ""
+
+#. module: auto_backup
+#: code:addons/auto_backup/models/db_backup.py:214
+#: model:mail.message.subtype,description:auto_backup.mail_message_subtype_success
+#, python-format
+msgid "Database backup succeeded."
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup_days_to_keep
+msgid "Days to keep"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup_display_name
+msgid "Display Name"
+msgstr "Zobrazi?? meno"
+
+#. module: auto_backup
+#: code:addons/auto_backup/models/db_backup.py:119
+#, python-format
+msgid ""
+"Do not save backups on your filestore, or you will backup your backups too!"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.actions.server,name:auto_backup.action_server_backup
+msgid "Execute backup(s)"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup_folder
+msgid "Folder"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+msgid "Go to Settings / Technical / Automation / Scheduled Actions."
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+msgid "Help"
+msgstr ""
+
+#. module: auto_backup
+#: sql_constraint:db.backup:0
+msgid "I cannot remove backups from the future. Ask Doc for that."
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup_id
+msgid "ID"
+msgstr "ID"
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup___last_update
+msgid "Last Modified on"
+msgstr "Posledn?? modifik??cia"
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup_write_uid
+msgid "Last Updated by"
+msgstr "Naposledy upravoval"
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup_write_date
+msgid "Last Updated on"
+msgstr "Naposledy upravovan??"
+
+#. module: auto_backup
+#: selection:db.backup,method:0
+msgid "Local disk"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup_method
+msgid "Method"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup_name
+msgid "Name"
+msgstr "Meno"
+
+#. module: auto_backup
+#: model:ir.model.fields,help:auto_backup.field_db_backup_sftp_private_key
+msgid ""
+"Path to the private key file. Only the Odoo user should have read "
+"permissions for that file."
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup_sftp_private_key
+msgid "Private key location"
+msgstr ""
+
+#. module: auto_backup
+#: selection:db.backup,method:0
+msgid "Remote SFTP server"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup_sftp_password
+msgid "SFTP Password"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup_sftp_port
+msgid "SFTP Port"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup_sftp_host
+msgid "SFTP Server"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+msgid "SFTP Settings"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_search
+msgid "Search options"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+msgid "Search the action named 'Backup scheduler'."
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+msgid ""
+"Set the scheduler to active and fill in how often you want backups "
+"generated."
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,help:auto_backup.field_db_backup_name
+msgid "Summary of this backup process"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+msgid "Test SFTP Connection"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,help:auto_backup.field_db_backup_sftp_host
+msgid ""
+"The host name or IP address from your remote server. For example 192.168.0.1"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,help:auto_backup.field_db_backup_sftp_password
+msgid ""
+"The password for the SFTP connection. If you specify a private key file, "
+"then this is the password to decrypt it."
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,help:auto_backup.field_db_backup_sftp_port
+msgid "The port on the FTP server that accepts SSH/SFTP calls."
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,help:auto_backup.field_db_backup_sftp_user
+msgid ""
+"The username where the SFTP connection should be made with. This is the user"
+" on the external server."
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+msgid ""
+"Use SFTP with caution! This writes files to external servers under the path "
+"you specify."
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup_sftp_user
+msgid "Username in the SFTP Server"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+msgid "Warning:"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model,name:auto_backup.model_db_backup
+msgid "db.backup"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+msgid "john"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+msgid "sftp.example.com"
+msgstr ""
diff --git a/auto_backup/i18n/sl.po b/auto_backup/i18n/sl.po
index 41c5a6bbd72..6e65afa3e29 100644
--- a/auto_backup/i18n/sl.po
+++ b/auto_backup/i18n/sl.po
@@ -3,15 +3,15 @@
 # * auto_backup
 # 
 # Translators:
-# Matja?? Mozeti?? <m.mozetic@matmoz.si>, 2016
+# OCA Transbot <transbot@odoo-community.org>, 2016
 msgid ""
 msgstr ""
-"Project-Id-Version: server-tools (8.0)\n"
+"Project-Id-Version: Odoo Server 10.0\n"
 "Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2016-05-28 02:41+0000\n"
-"PO-Revision-Date: 2016-05-05 05:57+0000\n"
-"Last-Translator: Matja?? Mozeti?? <m.mozetic@matmoz.si>\n"
-"Language-Team: Slovenian (http://www.transifex.com/oca/OCA-server-tools-8-0/language/sl/)\n"
+"POT-Creation-Date: 2017-06-01 14:58+0000\n"
+"PO-Revision-Date: 2017-06-01 14:58+0000\n"
+"Last-Translator: OCA Transbot <transbot@odoo-community.org>, 2016\n"
+"Language-Team: Slovenian (https://www.transifex.com/oca/teams/23907/sl/)\n"
 "MIME-Version: 1.0\n"
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: \n"
@@ -19,12 +19,12 @@ msgstr ""
 "Plural-Forms: nplurals=4; plural=(n%100==1 ? 0 : n%100==2 ? 1 : n%100==3 || n%100==4 ? 2 : 3);\n"
 
 #. module: auto_backup
-#: view:db.backup:auto_backup.view_backup_conf_form
+#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
 msgid "/home/odoo/.ssh/id_rsa"
 msgstr "/home/odoo/.ssh/id_rsa"
 
 #. module: auto_backup
-#: help:db.backup,folder:0
+#: model:ir.model.fields,help:auto_backup.field_db_backup_folder
 msgid "Absolute path for storing the backups"
 msgstr "Absolutna pot za shranjevanje varnostnih kopij"
 
@@ -35,34 +35,36 @@ msgid "Automated Backups"
 msgstr "Samodejne varnostne kopije"
 
 #. module: auto_backup
-#: view:db.backup:auto_backup.view_backup_conf_form
+#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
 msgid "Automatic backups of the database can be scheduled as follows:"
 msgstr "Samodejne varnostne kopije podatkovne baze se lahko razporedi na:"
 
 #. module: auto_backup
-#: model:mail.message.subtype,name:auto_backup.failure
-msgid "Backup failed"
-msgstr "Varnostno kopiranje neuspe??no"
+#: model:mail.message.subtype,name:auto_backup.mail_message_subtype_failure
+msgid "Backup Failed"
+msgstr ""
 
 #. module: auto_backup
-#: model:mail.message.subtype,name:auto_backup.success
-msgid "Backup successful"
-msgstr "Varnostno kopiranje uspe??no"
+#: model:mail.message.subtype,name:auto_backup.mail_message_subtype_success
+msgid "Backup Successful"
+msgstr ""
 
 #. module: auto_backup
-#: view:db.backup:auto_backup.view_backup_conf_tree
+#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_tree
 msgid "Backups"
 msgstr "Varnostne kopije"
 
 #. module: auto_backup
-#: help:db.backup,days_to_keep:0
+#: model:ir.model.fields,help:auto_backup.field_db_backup_days_to_keep
 msgid ""
 "Backups older than this will be deleted automatically. Set 0 to disable "
 "autodeletion."
-msgstr "Varnostne kopije starej??e od tega bodo samodejno izbrisane. Nastavite 0, da bi onemogo??ili samodejno brisanje."
+msgstr ""
+"Varnostne kopije starej??e od tega bodo samodejno izbrisane. Nastavite 0, da "
+"bi onemogo??ili samodejno brisanje."
 
 #. module: auto_backup
-#: view:db.backup:auto_backup.view_backup_conf_form
+#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
 msgid "Basic backup configuration"
 msgstr "Osnove nastavitve varnostnega kopiranja"
 
@@ -72,18 +74,18 @@ msgid "Cannot duplicate a configuration."
 msgstr "Nastavitev ne morete podvojiti."
 
 #. module: auto_backup
-#: help:db.backup,method:0
+#: model:ir.model.fields,help:auto_backup.field_db_backup_method
 msgid "Choose the storage method for this backup."
 msgstr "Izberite metodo shranjevanja za to varnostno kopiranje."
 
 #. module: auto_backup
-#: code:addons/auto_backup/models/db_backup.py:247
+#: code:addons/auto_backup/models/db_backup.py:253
 #, python-format
 msgid "Cleanup of old database backups failed."
 msgstr "Brisanje starih varnostnih kopij podatkovnih baz neuspe??no."
 
 #. module: auto_backup
-#: code:addons/auto_backup/models/db_backup.py:131
+#: code:addons/auto_backup/models/db_backup.py:133
 #, python-format
 msgid "Connection Test Failed!"
 msgstr "Test povezave neuspe??en!"
@@ -95,41 +97,36 @@ msgid "Connection Test Succeeded!"
 msgstr "Test povezave uspel!"
 
 #. module: auto_backup
-#: field:db.backup,create_uid:0
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup_create_uid
 msgid "Created by"
 msgstr "Ustvaril"
 
 #. module: auto_backup
-#: field:db.backup,create_date:0
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup_create_date
 msgid "Created on"
 msgstr "Ustvarjeno"
 
 #. module: auto_backup
-#: code:addons/auto_backup/models/db_backup.py:206
-#: model:mail.message.subtype,description:auto_backup.failure
+#: code:addons/auto_backup/models/db_backup.py:208
+#: model:mail.message.subtype,description:auto_backup.mail_message_subtype_failure
 #, python-format
 msgid "Database backup failed."
 msgstr "Varnostno kopiranje podatkovne baze neuspe??no."
 
 #. module: auto_backup
-#: code:addons/auto_backup/models/db_backup.py:211
-#: model:mail.message.subtype,description:auto_backup.success
+#: code:addons/auto_backup/models/db_backup.py:216
+#: model:mail.message.subtype,description:auto_backup.mail_message_subtype_success
 #, python-format
 msgid "Database backup succeeded."
 msgstr "Varnostno kopiranje podatkovne baze uspe??no."
 
 #. module: auto_backup
-#: help:db.backup,message_last_post:0
-msgid "Date of the last message posted on the record."
-msgstr "Datum zadnjega sporo??ila objavljenega na zapisu."
-
-#. module: auto_backup
-#: field:db.backup,days_to_keep:0
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup_days_to_keep
 msgid "Days to keep"
 msgstr "Dni za hranjenje"
 
 #. module: auto_backup
-#: field:db.backup,display_name:0
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup_display_name
 msgid "Display Name"
 msgstr "Prikazni naziv"
 
@@ -138,12 +135,9 @@ msgstr "Prikazni naziv"
 #, python-format
 msgid ""
 "Do not save backups on your filestore, or you will backup your backups too!"
-msgstr "Ne hranite varnostnih kopij v 'filestore', saj boste tako kopirali tudi same varnostne kopije!"
-
-#. module: auto_backup
-#: model:ir.model,name:auto_backup.model_db_backup
-msgid "Email Thread"
-msgstr "E-po??tna nit"
+msgstr ""
+"Ne hranite varnostnih kopij v 'filestore', saj boste tako kopirali tudi same"
+" varnostne kopije!"
 
 #. module: auto_backup
 #: model:ir.actions.server,name:auto_backup.action_server_backup
@@ -151,69 +145,42 @@ msgid "Execute backup(s)"
 msgstr "Izvedi varnostno/a kopiranje(a)"
 
 #. module: auto_backup
-#: field:db.backup,folder:0
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup_folder
 msgid "Folder"
 msgstr "Mapa"
 
 #. module: auto_backup
-#: field:db.backup,message_follower_ids:0
-msgid "Followers"
-msgstr "Sledilci"
-
-#. module: auto_backup
-#: view:db.backup:auto_backup.view_backup_conf_form
+#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
 msgid "Go to Settings / Technical / Automation / Scheduled Actions."
 msgstr "Pojdi na Nastavitve / Tehni??no / Avtomatizacija / Planirana dejanja"
 
 #. module: auto_backup
-#: view:db.backup:auto_backup.view_backup_conf_form
+#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
 msgid "Help"
 msgstr "Pomo??"
 
-#. module: auto_backup
-#: help:db.backup,message_summary:0
-msgid ""
-"Holds the Chatter summary (number of messages, ...). This summary is "
-"directly in html format in order to be inserted in kanban views."
-msgstr "Povzetek (??tevilo sporo??il,..) v html formatu, da se lahko neposredno vstavi v poglede tipa kanban."
-
 #. module: auto_backup
 #: sql_constraint:db.backup:0
 msgid "I cannot remove backups from the future. Ask Doc for that."
 msgstr "Varnostnih kopij iz prihodnosti ne morete odstraniti."
 
 #. module: auto_backup
-#: field:db.backup,id:0
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup_id
 msgid "ID"
 msgstr "ID"
 
 #. module: auto_backup
-#: help:db.backup,message_unread:0
-msgid "If checked new messages require your attention."
-msgstr "??e ozna??eno, zahtevajo nova sporo??ila va??o pozornost."
-
-#. module: auto_backup
-#: field:db.backup,message_is_follower:0
-msgid "Is a Follower"
-msgstr "Je sledilec"
-
-#. module: auto_backup
-#: field:db.backup,message_last_post:0
-msgid "Last Message Date"
-msgstr "Datum zadnjega sporo??ila"
-
-#. module: auto_backup
-#: field:db.backup,__last_update:0
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup___last_update
 msgid "Last Modified on"
 msgstr "Zadnji?? spremenjeno"
 
 #. module: auto_backup
-#: field:db.backup,write_uid:0
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup_write_uid
 msgid "Last Updated by"
 msgstr "Zadnji posodobil"
 
 #. module: auto_backup
-#: field:db.backup,write_date:0
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup_write_date
 msgid "Last Updated on"
 msgstr "Zadnji?? posodobljeno"
 
@@ -223,34 +190,26 @@ msgid "Local disk"
 msgstr "Lokalni disk"
 
 #. module: auto_backup
-#: field:db.backup,message_ids:0
-msgid "Messages"
-msgstr "Sporo??ila"
-
-#. module: auto_backup
-#: help:db.backup,message_ids:0
-msgid "Messages and communication history"
-msgstr "Komunikacije in kronologija komunikacij"
-
-#. module: auto_backup
-#: field:db.backup,method:0
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup_method
 msgid "Method"
 msgstr "Metoda"
 
 #. module: auto_backup
-#: field:db.backup,name:0
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup_name
 msgid "Name"
 msgstr "Naziv"
 
 #. module: auto_backup
-#: help:db.backup,sftp_private_key:0
+#: model:ir.model.fields,help:auto_backup.field_db_backup_sftp_private_key
 msgid ""
 "Path to the private key file. Only the Odoo user should have read "
 "permissions for that file."
-msgstr "Pot do datoteke privatnega klju??a. Le Odoo uporabnik naj ima dovoljenje za branje te datoteke."
+msgstr ""
+"Pot do datoteke privatnega klju??a. Le Odoo uporabnik naj ima dovoljenje za "
+"branje te datoteke."
 
 #. module: auto_backup
-#: field:db.backup,sftp_private_key:0
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup_sftp_private_key
 msgid "Private key location"
 msgstr "Lokacija privatnega klju??a"
 
@@ -260,110 +219,111 @@ msgid "Remote SFTP server"
 msgstr "Oddaljeni SFTP stre??nik"
 
 #. module: auto_backup
-#: field:db.backup,sftp_password:0
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup_sftp_password
 msgid "SFTP Password"
 msgstr "SFTP geslo"
 
 #. module: auto_backup
-#: field:db.backup,sftp_port:0
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup_sftp_port
 msgid "SFTP Port"
 msgstr "SFTP port"
 
 #. module: auto_backup
-#: field:db.backup,sftp_host:0
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup_sftp_host
 msgid "SFTP Server"
 msgstr "SFTP stre??nik"
 
 #. module: auto_backup
-#: view:db.backup:auto_backup.view_backup_conf_form
+#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
 msgid "SFTP Settings"
 msgstr "SFTP nastavitve"
 
 #. module: auto_backup
-#: view:db.backup:auto_backup.view_backup_conf_search
+#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_search
 msgid "Search options"
 msgstr "Iskalne opcije"
 
 #. module: auto_backup
-#: view:db.backup:auto_backup.view_backup_conf_form
+#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
 msgid "Search the action named 'Backup scheduler'."
 msgstr "Iskanje dejanja z nazivom 'Razporejevalnik varnostnih kopiranj'"
 
 #. module: auto_backup
-#: view:db.backup:auto_backup.view_backup_conf_form
+#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
 msgid ""
 "Set the scheduler to active and fill in how often you want backups "
 "generated."
-msgstr "Nastavite razporejevalnik kot aktiven in izpolnite, kako pogosto ??elite ustvarjati varnostne kopije."
-
-#. module: auto_backup
-#: field:db.backup,message_summary:0
-msgid "Summary"
-msgstr "Povzetek"
+msgstr ""
+"Nastavite razporejevalnik kot aktiven in izpolnite, kako pogosto ??elite "
+"ustvarjati varnostne kopije."
 
 #. module: auto_backup
-#: help:db.backup,name:0
+#: model:ir.model.fields,help:auto_backup.field_db_backup_name
 msgid "Summary of this backup process"
 msgstr "Povzetek procesa tega varnostnega kopiranja"
 
 #. module: auto_backup
-#: view:db.backup:auto_backup.view_backup_conf_form
+#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
 msgid "Test SFTP Connection"
 msgstr "Test SFTP povezave"
 
 #. module: auto_backup
-#: help:db.backup,sftp_host:0
+#: model:ir.model.fields,help:auto_backup.field_db_backup_sftp_host
 msgid ""
 "The host name or IP address from your remote server. For example 192.168.0.1"
 msgstr "IP naslov ali 'hostname' oddaljenega stre??nika. Npr. 192.168.0.1"
 
 #. module: auto_backup
-#: help:db.backup,sftp_password:0
+#: model:ir.model.fields,help:auto_backup.field_db_backup_sftp_password
 msgid ""
 "The password for the SFTP connection. If you specify a private key file, "
 "then this is the password to decrypt it."
-msgstr "Geslo za SFTP povezavo. ??e dolo??ite datoteko privatnega klju??a, je to geslo za de??ifriranje klju??a."
+msgstr ""
+"Geslo za SFTP povezavo. ??e dolo??ite datoteko privatnega klju??a, je to geslo "
+"za de??ifriranje klju??a."
 
 #. module: auto_backup
-#: help:db.backup,sftp_port:0
+#: model:ir.model.fields,help:auto_backup.field_db_backup_sftp_port
 msgid "The port on the FTP server that accepts SSH/SFTP calls."
 msgstr "Vrata FTP stre??nika, ki sprejema SSH/SFTP klice."
 
 #. module: auto_backup
-#: help:db.backup,sftp_user:0
+#: model:ir.model.fields,help:auto_backup.field_db_backup_sftp_user
 msgid ""
 "The username where the SFTP connection should be made with. This is the user"
 " on the external server."
 msgstr "Uporabni??ko ime SFTP povezave. To je uporabnik zunanjega stre??nika."
 
 #. module: auto_backup
-#: field:db.backup,message_unread:0
-msgid "Unread Messages"
-msgstr "Neprebrana sporo??ila"
-
-#. module: auto_backup
-#: view:db.backup:auto_backup.view_backup_conf_form
+#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
 msgid ""
 "Use SFTP with caution! This writes files to external servers under the path "
 "you specify."
-msgstr "SFTP uporabljajte previdno! Datoteke se bodo zapisovale na zunanje stre??nike v pot, ki jo sami dolo??ite."
+msgstr ""
+"SFTP uporabljajte previdno! Datoteke se bodo zapisovale na zunanje stre??nike"
+" v pot, ki jo sami dolo??ite."
 
 #. module: auto_backup
-#: field:db.backup,sftp_user:0
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup_sftp_user
 msgid "Username in the SFTP Server"
 msgstr "Uporabni??ko ime za SFTP stre??nik"
 
 #. module: auto_backup
-#: view:db.backup:auto_backup.view_backup_conf_form
+#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
 msgid "Warning:"
 msgstr "Opozorilo:"
 
 #. module: auto_backup
-#: view:db.backup:auto_backup.view_backup_conf_form
+#: model:ir.model,name:auto_backup.model_db_backup
+msgid "db.backup"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
 msgid "john"
 msgstr "john"
 
 #. module: auto_backup
-#: view:db.backup:auto_backup.view_backup_conf_form
+#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
 msgid "sftp.example.com"
 msgstr "sftp.example.com"
diff --git a/auto_backup/i18n/sr.po b/auto_backup/i18n/sr.po
new file mode 100644
index 00000000000..db873cfb0d2
--- /dev/null
+++ b/auto_backup/i18n/sr.po
@@ -0,0 +1,317 @@
+# Translation of Odoo Server.
+# This file contains the translation of the following modules:
+# * auto_backup
+# 
+# Translators:
+# OCA Transbot <transbot@odoo-community.org>, 2016
+msgid ""
+msgstr ""
+"Project-Id-Version: Odoo Server 10.0\n"
+"Report-Msgid-Bugs-To: \n"
+"POT-Creation-Date: 2017-02-18 02:29+0000\n"
+"PO-Revision-Date: 2017-02-18 02:29+0000\n"
+"Last-Translator: OCA Transbot <transbot@odoo-community.org>, 2016\n"
+"Language-Team: Serbian (https://www.transifex.com/oca/teams/23907/sr/)\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: \n"
+"Language: sr\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: auto_backup
+#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+msgid "/home/odoo/.ssh/id_rsa"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,help:auto_backup.field_db_backup_folder
+msgid "Absolute path for storing the backups"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.actions.act_window,name:auto_backup.action_backup_conf_form
+#: model:ir.ui.menu,name:auto_backup.backup_conf_menu
+msgid "Automated Backups"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+msgid "Automatic backups of the database can be scheduled as follows:"
+msgstr ""
+
+#. module: auto_backup
+#: model:mail.message.subtype,name:auto_backup.mail_message_subtype_failure
+msgid "Backup Failed"
+msgstr ""
+
+#. module: auto_backup
+#: model:mail.message.subtype,name:auto_backup.mail_message_subtype_success
+msgid "Backup Successful"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_tree
+msgid "Backups"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,help:auto_backup.field_db_backup_days_to_keep
+msgid ""
+"Backups older than this will be deleted automatically. Set 0 to disable "
+"autodeletion."
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+msgid "Basic backup configuration"
+msgstr ""
+
+#. module: auto_backup
+#: sql_constraint:db.backup:0
+msgid "Cannot duplicate a configuration."
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,help:auto_backup.field_db_backup_method
+msgid "Choose the storage method for this backup."
+msgstr ""
+
+#. module: auto_backup
+#: code:addons/auto_backup/models/db_backup.py:251
+#, python-format
+msgid "Cleanup of old database backups failed."
+msgstr ""
+
+#. module: auto_backup
+#: code:addons/auto_backup/models/db_backup.py:131
+#, python-format
+msgid "Connection Test Failed!"
+msgstr ""
+
+#. module: auto_backup
+#: code:addons/auto_backup/models/db_backup.py:128
+#, python-format
+msgid "Connection Test Succeeded!"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup_create_uid
+msgid "Created by"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup_create_date
+msgid "Created on"
+msgstr "Kreiran"
+
+#. module: auto_backup
+#: code:addons/auto_backup/models/db_backup.py:206
+#: model:mail.message.subtype,description:auto_backup.mail_message_subtype_failure
+#, python-format
+msgid "Database backup failed."
+msgstr ""
+
+#. module: auto_backup
+#: code:addons/auto_backup/models/db_backup.py:214
+#: model:mail.message.subtype,description:auto_backup.mail_message_subtype_success
+#, python-format
+msgid "Database backup succeeded."
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup_days_to_keep
+msgid "Days to keep"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup_display_name
+msgid "Display Name"
+msgstr ""
+
+#. module: auto_backup
+#: code:addons/auto_backup/models/db_backup.py:119
+#, python-format
+msgid ""
+"Do not save backups on your filestore, or you will backup your backups too!"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.actions.server,name:auto_backup.action_server_backup
+msgid "Execute backup(s)"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup_folder
+msgid "Folder"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+msgid "Go to Settings / Technical / Automation / Scheduled Actions."
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+msgid "Help"
+msgstr ""
+
+#. module: auto_backup
+#: sql_constraint:db.backup:0
+msgid "I cannot remove backups from the future. Ask Doc for that."
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup_id
+msgid "ID"
+msgstr "ID"
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup___last_update
+msgid "Last Modified on"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup_write_uid
+msgid "Last Updated by"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup_write_date
+msgid "Last Updated on"
+msgstr ""
+
+#. module: auto_backup
+#: selection:db.backup,method:0
+msgid "Local disk"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup_method
+msgid "Method"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup_name
+msgid "Name"
+msgstr "Ime"
+
+#. module: auto_backup
+#: model:ir.model.fields,help:auto_backup.field_db_backup_sftp_private_key
+msgid ""
+"Path to the private key file. Only the Odoo user should have read "
+"permissions for that file."
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup_sftp_private_key
+msgid "Private key location"
+msgstr ""
+
+#. module: auto_backup
+#: selection:db.backup,method:0
+msgid "Remote SFTP server"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup_sftp_password
+msgid "SFTP Password"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup_sftp_port
+msgid "SFTP Port"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup_sftp_host
+msgid "SFTP Server"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+msgid "SFTP Settings"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_search
+msgid "Search options"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+msgid "Search the action named 'Backup scheduler'."
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+msgid ""
+"Set the scheduler to active and fill in how often you want backups "
+"generated."
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,help:auto_backup.field_db_backup_name
+msgid "Summary of this backup process"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+msgid "Test SFTP Connection"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,help:auto_backup.field_db_backup_sftp_host
+msgid ""
+"The host name or IP address from your remote server. For example 192.168.0.1"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,help:auto_backup.field_db_backup_sftp_password
+msgid ""
+"The password for the SFTP connection. If you specify a private key file, "
+"then this is the password to decrypt it."
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,help:auto_backup.field_db_backup_sftp_port
+msgid "The port on the FTP server that accepts SSH/SFTP calls."
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,help:auto_backup.field_db_backup_sftp_user
+msgid ""
+"The username where the SFTP connection should be made with. This is the user"
+" on the external server."
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+msgid ""
+"Use SFTP with caution! This writes files to external servers under the path "
+"you specify."
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup_sftp_user
+msgid "Username in the SFTP Server"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+msgid "Warning:"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model,name:auto_backup.model_db_backup
+msgid "db.backup"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+msgid "john"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+msgid "sftp.example.com"
+msgstr ""
diff --git a/auto_backup/i18n/sr@latin.po b/auto_backup/i18n/sr@latin.po
new file mode 100644
index 00000000000..0b8451511bc
--- /dev/null
+++ b/auto_backup/i18n/sr@latin.po
@@ -0,0 +1,317 @@
+# Translation of Odoo Server.
+# This file contains the translation of the following modules:
+# * auto_backup
+# 
+# Translators:
+# OCA Transbot <transbot@odoo-community.org>, 2016
+msgid ""
+msgstr ""
+"Project-Id-Version: Odoo Server 10.0\n"
+"Report-Msgid-Bugs-To: \n"
+"POT-Creation-Date: 2017-02-18 02:29+0000\n"
+"PO-Revision-Date: 2017-02-18 02:29+0000\n"
+"Last-Translator: OCA Transbot <transbot@odoo-community.org>, 2016\n"
+"Language-Team: Serbian (Latin) (https://www.transifex.com/oca/teams/23907/sr@latin/)\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: \n"
+"Language: sr@latin\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: auto_backup
+#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+msgid "/home/odoo/.ssh/id_rsa"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,help:auto_backup.field_db_backup_folder
+msgid "Absolute path for storing the backups"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.actions.act_window,name:auto_backup.action_backup_conf_form
+#: model:ir.ui.menu,name:auto_backup.backup_conf_menu
+msgid "Automated Backups"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+msgid "Automatic backups of the database can be scheduled as follows:"
+msgstr ""
+
+#. module: auto_backup
+#: model:mail.message.subtype,name:auto_backup.mail_message_subtype_failure
+msgid "Backup Failed"
+msgstr ""
+
+#. module: auto_backup
+#: model:mail.message.subtype,name:auto_backup.mail_message_subtype_success
+msgid "Backup Successful"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_tree
+msgid "Backups"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,help:auto_backup.field_db_backup_days_to_keep
+msgid ""
+"Backups older than this will be deleted automatically. Set 0 to disable "
+"autodeletion."
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+msgid "Basic backup configuration"
+msgstr ""
+
+#. module: auto_backup
+#: sql_constraint:db.backup:0
+msgid "Cannot duplicate a configuration."
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,help:auto_backup.field_db_backup_method
+msgid "Choose the storage method for this backup."
+msgstr ""
+
+#. module: auto_backup
+#: code:addons/auto_backup/models/db_backup.py:251
+#, python-format
+msgid "Cleanup of old database backups failed."
+msgstr ""
+
+#. module: auto_backup
+#: code:addons/auto_backup/models/db_backup.py:131
+#, python-format
+msgid "Connection Test Failed!"
+msgstr ""
+
+#. module: auto_backup
+#: code:addons/auto_backup/models/db_backup.py:128
+#, python-format
+msgid "Connection Test Succeeded!"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup_create_uid
+msgid "Created by"
+msgstr "Kreirao"
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup_create_date
+msgid "Created on"
+msgstr "Kreiran"
+
+#. module: auto_backup
+#: code:addons/auto_backup/models/db_backup.py:206
+#: model:mail.message.subtype,description:auto_backup.mail_message_subtype_failure
+#, python-format
+msgid "Database backup failed."
+msgstr ""
+
+#. module: auto_backup
+#: code:addons/auto_backup/models/db_backup.py:214
+#: model:mail.message.subtype,description:auto_backup.mail_message_subtype_success
+#, python-format
+msgid "Database backup succeeded."
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup_days_to_keep
+msgid "Days to keep"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup_display_name
+msgid "Display Name"
+msgstr "Ime za prikaz"
+
+#. module: auto_backup
+#: code:addons/auto_backup/models/db_backup.py:119
+#, python-format
+msgid ""
+"Do not save backups on your filestore, or you will backup your backups too!"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.actions.server,name:auto_backup.action_server_backup
+msgid "Execute backup(s)"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup_folder
+msgid "Folder"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+msgid "Go to Settings / Technical / Automation / Scheduled Actions."
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+msgid "Help"
+msgstr ""
+
+#. module: auto_backup
+#: sql_constraint:db.backup:0
+msgid "I cannot remove backups from the future. Ask Doc for that."
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup_id
+msgid "ID"
+msgstr "ID"
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup___last_update
+msgid "Last Modified on"
+msgstr "Zadnja izmjena"
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup_write_uid
+msgid "Last Updated by"
+msgstr "Zadnja izmjena"
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup_write_date
+msgid "Last Updated on"
+msgstr "Zadnja izmjena"
+
+#. module: auto_backup
+#: selection:db.backup,method:0
+msgid "Local disk"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup_method
+msgid "Method"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup_name
+msgid "Name"
+msgstr "Ime:"
+
+#. module: auto_backup
+#: model:ir.model.fields,help:auto_backup.field_db_backup_sftp_private_key
+msgid ""
+"Path to the private key file. Only the Odoo user should have read "
+"permissions for that file."
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup_sftp_private_key
+msgid "Private key location"
+msgstr ""
+
+#. module: auto_backup
+#: selection:db.backup,method:0
+msgid "Remote SFTP server"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup_sftp_password
+msgid "SFTP Password"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup_sftp_port
+msgid "SFTP Port"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup_sftp_host
+msgid "SFTP Server"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+msgid "SFTP Settings"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_search
+msgid "Search options"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+msgid "Search the action named 'Backup scheduler'."
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+msgid ""
+"Set the scheduler to active and fill in how often you want backups "
+"generated."
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,help:auto_backup.field_db_backup_name
+msgid "Summary of this backup process"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+msgid "Test SFTP Connection"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,help:auto_backup.field_db_backup_sftp_host
+msgid ""
+"The host name or IP address from your remote server. For example 192.168.0.1"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,help:auto_backup.field_db_backup_sftp_password
+msgid ""
+"The password for the SFTP connection. If you specify a private key file, "
+"then this is the password to decrypt it."
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,help:auto_backup.field_db_backup_sftp_port
+msgid "The port on the FTP server that accepts SSH/SFTP calls."
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,help:auto_backup.field_db_backup_sftp_user
+msgid ""
+"The username where the SFTP connection should be made with. This is the user"
+" on the external server."
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+msgid ""
+"Use SFTP with caution! This writes files to external servers under the path "
+"you specify."
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup_sftp_user
+msgid "Username in the SFTP Server"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+msgid "Warning:"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model,name:auto_backup.model_db_backup
+msgid "db.backup"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+msgid "john"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+msgid "sftp.example.com"
+msgstr ""
diff --git a/auto_backup/i18n/sv.po b/auto_backup/i18n/sv.po
new file mode 100644
index 00000000000..f163cbed449
--- /dev/null
+++ b/auto_backup/i18n/sv.po
@@ -0,0 +1,317 @@
+# Translation of Odoo Server.
+# This file contains the translation of the following modules:
+# * auto_backup
+# 
+# Translators:
+# OCA Transbot <transbot@odoo-community.org>, 2016
+msgid ""
+msgstr ""
+"Project-Id-Version: Odoo Server 10.0\n"
+"Report-Msgid-Bugs-To: \n"
+"POT-Creation-Date: 2017-02-18 02:29+0000\n"
+"PO-Revision-Date: 2017-02-18 02:29+0000\n"
+"Last-Translator: OCA Transbot <transbot@odoo-community.org>, 2016\n"
+"Language-Team: Swedish (https://www.transifex.com/oca/teams/23907/sv/)\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: \n"
+"Language: sv\n"
+"Plural-Forms: nplurals=2; plural=(n != 1);\n"
+
+#. module: auto_backup
+#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+msgid "/home/odoo/.ssh/id_rsa"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,help:auto_backup.field_db_backup_folder
+msgid "Absolute path for storing the backups"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.actions.act_window,name:auto_backup.action_backup_conf_form
+#: model:ir.ui.menu,name:auto_backup.backup_conf_menu
+msgid "Automated Backups"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+msgid "Automatic backups of the database can be scheduled as follows:"
+msgstr ""
+
+#. module: auto_backup
+#: model:mail.message.subtype,name:auto_backup.mail_message_subtype_failure
+msgid "Backup Failed"
+msgstr ""
+
+#. module: auto_backup
+#: model:mail.message.subtype,name:auto_backup.mail_message_subtype_success
+msgid "Backup Successful"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_tree
+msgid "Backups"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,help:auto_backup.field_db_backup_days_to_keep
+msgid ""
+"Backups older than this will be deleted automatically. Set 0 to disable "
+"autodeletion."
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+msgid "Basic backup configuration"
+msgstr ""
+
+#. module: auto_backup
+#: sql_constraint:db.backup:0
+msgid "Cannot duplicate a configuration."
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,help:auto_backup.field_db_backup_method
+msgid "Choose the storage method for this backup."
+msgstr ""
+
+#. module: auto_backup
+#: code:addons/auto_backup/models/db_backup.py:251
+#, python-format
+msgid "Cleanup of old database backups failed."
+msgstr ""
+
+#. module: auto_backup
+#: code:addons/auto_backup/models/db_backup.py:131
+#, python-format
+msgid "Connection Test Failed!"
+msgstr ""
+
+#. module: auto_backup
+#: code:addons/auto_backup/models/db_backup.py:128
+#, python-format
+msgid "Connection Test Succeeded!"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup_create_uid
+msgid "Created by"
+msgstr "Skapad av"
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup_create_date
+msgid "Created on"
+msgstr "Skapad den"
+
+#. module: auto_backup
+#: code:addons/auto_backup/models/db_backup.py:206
+#: model:mail.message.subtype,description:auto_backup.mail_message_subtype_failure
+#, python-format
+msgid "Database backup failed."
+msgstr ""
+
+#. module: auto_backup
+#: code:addons/auto_backup/models/db_backup.py:214
+#: model:mail.message.subtype,description:auto_backup.mail_message_subtype_success
+#, python-format
+msgid "Database backup succeeded."
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup_days_to_keep
+msgid "Days to keep"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup_display_name
+msgid "Display Name"
+msgstr "Visa namn"
+
+#. module: auto_backup
+#: code:addons/auto_backup/models/db_backup.py:119
+#, python-format
+msgid ""
+"Do not save backups on your filestore, or you will backup your backups too!"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.actions.server,name:auto_backup.action_server_backup
+msgid "Execute backup(s)"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup_folder
+msgid "Folder"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+msgid "Go to Settings / Technical / Automation / Scheduled Actions."
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+msgid "Help"
+msgstr ""
+
+#. module: auto_backup
+#: sql_constraint:db.backup:0
+msgid "I cannot remove backups from the future. Ask Doc for that."
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup_id
+msgid "ID"
+msgstr "ID"
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup___last_update
+msgid "Last Modified on"
+msgstr "Senast redigerad"
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup_write_uid
+msgid "Last Updated by"
+msgstr "Senast uppdaterad av"
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup_write_date
+msgid "Last Updated on"
+msgstr "Senast uppdaterad"
+
+#. module: auto_backup
+#: selection:db.backup,method:0
+msgid "Local disk"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup_method
+msgid "Method"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup_name
+msgid "Name"
+msgstr "Namn"
+
+#. module: auto_backup
+#: model:ir.model.fields,help:auto_backup.field_db_backup_sftp_private_key
+msgid ""
+"Path to the private key file. Only the Odoo user should have read "
+"permissions for that file."
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup_sftp_private_key
+msgid "Private key location"
+msgstr ""
+
+#. module: auto_backup
+#: selection:db.backup,method:0
+msgid "Remote SFTP server"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup_sftp_password
+msgid "SFTP Password"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup_sftp_port
+msgid "SFTP Port"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup_sftp_host
+msgid "SFTP Server"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+msgid "SFTP Settings"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_search
+msgid "Search options"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+msgid "Search the action named 'Backup scheduler'."
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+msgid ""
+"Set the scheduler to active and fill in how often you want backups "
+"generated."
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,help:auto_backup.field_db_backup_name
+msgid "Summary of this backup process"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+msgid "Test SFTP Connection"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,help:auto_backup.field_db_backup_sftp_host
+msgid ""
+"The host name or IP address from your remote server. For example 192.168.0.1"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,help:auto_backup.field_db_backup_sftp_password
+msgid ""
+"The password for the SFTP connection. If you specify a private key file, "
+"then this is the password to decrypt it."
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,help:auto_backup.field_db_backup_sftp_port
+msgid "The port on the FTP server that accepts SSH/SFTP calls."
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,help:auto_backup.field_db_backup_sftp_user
+msgid ""
+"The username where the SFTP connection should be made with. This is the user"
+" on the external server."
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+msgid ""
+"Use SFTP with caution! This writes files to external servers under the path "
+"you specify."
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup_sftp_user
+msgid "Username in the SFTP Server"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+msgid "Warning:"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model,name:auto_backup.model_db_backup
+msgid "db.backup"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+msgid "john"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+msgid "sftp.example.com"
+msgstr ""
diff --git a/auto_backup/i18n/th.po b/auto_backup/i18n/th.po
new file mode 100644
index 00000000000..2cdfe382811
--- /dev/null
+++ b/auto_backup/i18n/th.po
@@ -0,0 +1,317 @@
+# Translation of Odoo Server.
+# This file contains the translation of the following modules:
+# * auto_backup
+# 
+# Translators:
+# OCA Transbot <transbot@odoo-community.org>, 2016
+msgid ""
+msgstr ""
+"Project-Id-Version: Odoo Server 10.0\n"
+"Report-Msgid-Bugs-To: \n"
+"POT-Creation-Date: 2017-02-18 02:29+0000\n"
+"PO-Revision-Date: 2017-02-18 02:29+0000\n"
+"Last-Translator: OCA Transbot <transbot@odoo-community.org>, 2016\n"
+"Language-Team: Thai (https://www.transifex.com/oca/teams/23907/th/)\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: \n"
+"Language: th\n"
+"Plural-Forms: nplurals=1; plural=0;\n"
+
+#. module: auto_backup
+#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+msgid "/home/odoo/.ssh/id_rsa"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,help:auto_backup.field_db_backup_folder
+msgid "Absolute path for storing the backups"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.actions.act_window,name:auto_backup.action_backup_conf_form
+#: model:ir.ui.menu,name:auto_backup.backup_conf_menu
+msgid "Automated Backups"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+msgid "Automatic backups of the database can be scheduled as follows:"
+msgstr ""
+
+#. module: auto_backup
+#: model:mail.message.subtype,name:auto_backup.mail_message_subtype_failure
+msgid "Backup Failed"
+msgstr ""
+
+#. module: auto_backup
+#: model:mail.message.subtype,name:auto_backup.mail_message_subtype_success
+msgid "Backup Successful"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_tree
+msgid "Backups"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,help:auto_backup.field_db_backup_days_to_keep
+msgid ""
+"Backups older than this will be deleted automatically. Set 0 to disable "
+"autodeletion."
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+msgid "Basic backup configuration"
+msgstr ""
+
+#. module: auto_backup
+#: sql_constraint:db.backup:0
+msgid "Cannot duplicate a configuration."
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,help:auto_backup.field_db_backup_method
+msgid "Choose the storage method for this backup."
+msgstr ""
+
+#. module: auto_backup
+#: code:addons/auto_backup/models/db_backup.py:251
+#, python-format
+msgid "Cleanup of old database backups failed."
+msgstr ""
+
+#. module: auto_backup
+#: code:addons/auto_backup/models/db_backup.py:131
+#, python-format
+msgid "Connection Test Failed!"
+msgstr ""
+
+#. module: auto_backup
+#: code:addons/auto_backup/models/db_backup.py:128
+#, python-format
+msgid "Connection Test Succeeded!"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup_create_uid
+msgid "Created by"
+msgstr "????????????????????????"
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup_create_date
+msgid "Created on"
+msgstr "??????????????????????????????"
+
+#. module: auto_backup
+#: code:addons/auto_backup/models/db_backup.py:206
+#: model:mail.message.subtype,description:auto_backup.mail_message_subtype_failure
+#, python-format
+msgid "Database backup failed."
+msgstr ""
+
+#. module: auto_backup
+#: code:addons/auto_backup/models/db_backup.py:214
+#: model:mail.message.subtype,description:auto_backup.mail_message_subtype_success
+#, python-format
+msgid "Database backup succeeded."
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup_days_to_keep
+msgid "Days to keep"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup_display_name
+msgid "Display Name"
+msgstr "??????????????????????????????????????????"
+
+#. module: auto_backup
+#: code:addons/auto_backup/models/db_backup.py:119
+#, python-format
+msgid ""
+"Do not save backups on your filestore, or you will backup your backups too!"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.actions.server,name:auto_backup.action_server_backup
+msgid "Execute backup(s)"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup_folder
+msgid "Folder"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+msgid "Go to Settings / Technical / Automation / Scheduled Actions."
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+msgid "Help"
+msgstr ""
+
+#. module: auto_backup
+#: sql_constraint:db.backup:0
+msgid "I cannot remove backups from the future. Ask Doc for that."
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup_id
+msgid "ID"
+msgstr "????????????"
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup___last_update
+msgid "Last Modified on"
+msgstr "??????????????????????????????????????????????????????????????????"
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup_write_uid
+msgid "Last Updated by"
+msgstr "???????????????????????????????????????????????????????????????"
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup_write_date
+msgid "Last Updated on"
+msgstr "?????????????????????????????????????????????????????????????????????"
+
+#. module: auto_backup
+#: selection:db.backup,method:0
+msgid "Local disk"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup_method
+msgid "Method"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup_name
+msgid "Name"
+msgstr "????????????"
+
+#. module: auto_backup
+#: model:ir.model.fields,help:auto_backup.field_db_backup_sftp_private_key
+msgid ""
+"Path to the private key file. Only the Odoo user should have read "
+"permissions for that file."
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup_sftp_private_key
+msgid "Private key location"
+msgstr ""
+
+#. module: auto_backup
+#: selection:db.backup,method:0
+msgid "Remote SFTP server"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup_sftp_password
+msgid "SFTP Password"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup_sftp_port
+msgid "SFTP Port"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup_sftp_host
+msgid "SFTP Server"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+msgid "SFTP Settings"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_search
+msgid "Search options"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+msgid "Search the action named 'Backup scheduler'."
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+msgid ""
+"Set the scheduler to active and fill in how often you want backups "
+"generated."
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,help:auto_backup.field_db_backup_name
+msgid "Summary of this backup process"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+msgid "Test SFTP Connection"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,help:auto_backup.field_db_backup_sftp_host
+msgid ""
+"The host name or IP address from your remote server. For example 192.168.0.1"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,help:auto_backup.field_db_backup_sftp_password
+msgid ""
+"The password for the SFTP connection. If you specify a private key file, "
+"then this is the password to decrypt it."
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,help:auto_backup.field_db_backup_sftp_port
+msgid "The port on the FTP server that accepts SSH/SFTP calls."
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,help:auto_backup.field_db_backup_sftp_user
+msgid ""
+"The username where the SFTP connection should be made with. This is the user"
+" on the external server."
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+msgid ""
+"Use SFTP with caution! This writes files to external servers under the path "
+"you specify."
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup_sftp_user
+msgid "Username in the SFTP Server"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+msgid "Warning:"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model,name:auto_backup.model_db_backup
+msgid "db.backup"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+msgid "john"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+msgid "sftp.example.com"
+msgstr ""
diff --git a/auto_backup/i18n/tr.po b/auto_backup/i18n/tr.po
index b2ac5e8b0c1..385e93b830a 100644
--- a/auto_backup/i18n/tr.po
+++ b/auto_backup/i18n/tr.po
@@ -3,14 +3,15 @@
 # * auto_backup
 # 
 # Translators:
+# OCA Transbot <transbot@odoo-community.org>, 2016
 msgid ""
 msgstr ""
-"Project-Id-Version: server-tools (8.0)\n"
+"Project-Id-Version: Odoo Server 10.0\n"
 "Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2016-04-14 07:02+0000\n"
-"PO-Revision-Date: 2016-04-05 07:21+0000\n"
-"Last-Translator: <>\n"
-"Language-Team: Turkish (http://www.transifex.com/oca/OCA-server-tools-8-0/language/tr/)\n"
+"POT-Creation-Date: 2017-02-18 02:29+0000\n"
+"PO-Revision-Date: 2017-02-18 02:29+0000\n"
+"Last-Translator: OCA Transbot <transbot@odoo-community.org>, 2016\n"
+"Language-Team: Turkish (https://www.transifex.com/oca/teams/23907/tr/)\n"
 "MIME-Version: 1.0\n"
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: \n"
@@ -18,12 +19,12 @@ msgstr ""
 "Plural-Forms: nplurals=2; plural=(n > 1);\n"
 
 #. module: auto_backup
-#: view:db.backup:auto_backup.view_backup_conf_form
+#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
 msgid "/home/odoo/.ssh/id_rsa"
 msgstr ""
 
 #. module: auto_backup
-#: help:db.backup,folder:0
+#: model:ir.model.fields,help:auto_backup.field_db_backup_folder
 msgid "Absolute path for storing the backups"
 msgstr ""
 
@@ -34,34 +35,34 @@ msgid "Automated Backups"
 msgstr ""
 
 #. module: auto_backup
-#: view:db.backup:auto_backup.view_backup_conf_form
+#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
 msgid "Automatic backups of the database can be scheduled as follows:"
 msgstr ""
 
 #. module: auto_backup
-#: model:mail.message.subtype,name:auto_backup.failure
-msgid "Backup failed"
+#: model:mail.message.subtype,name:auto_backup.mail_message_subtype_failure
+msgid "Backup Failed"
 msgstr ""
 
 #. module: auto_backup
-#: model:mail.message.subtype,name:auto_backup.success
-msgid "Backup successful"
+#: model:mail.message.subtype,name:auto_backup.mail_message_subtype_success
+msgid "Backup Successful"
 msgstr ""
 
 #. module: auto_backup
-#: view:db.backup:auto_backup.view_backup_conf_tree
+#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_tree
 msgid "Backups"
 msgstr ""
 
 #. module: auto_backup
-#: help:db.backup,days_to_keep:0
+#: model:ir.model.fields,help:auto_backup.field_db_backup_days_to_keep
 msgid ""
 "Backups older than this will be deleted automatically. Set 0 to disable "
 "autodeletion."
 msgstr ""
 
 #. module: auto_backup
-#: view:db.backup:auto_backup.view_backup_conf_form
+#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
 msgid "Basic backup configuration"
 msgstr ""
 
@@ -71,138 +72,111 @@ msgid "Cannot duplicate a configuration."
 msgstr ""
 
 #. module: auto_backup
-#: help:db.backup,method:0
+#: model:ir.model.fields,help:auto_backup.field_db_backup_method
 msgid "Choose the storage method for this backup."
 msgstr ""
 
 #. module: auto_backup
-#: code:addons/auto_backup/models/db_backup.py:249
+#: code:addons/auto_backup/models/db_backup.py:251
 #, python-format
 msgid "Cleanup of old database backups failed."
 msgstr ""
 
 #. module: auto_backup
-#: code:addons/auto_backup/models/db_backup.py:132
+#: code:addons/auto_backup/models/db_backup.py:131
 #, python-format
 msgid "Connection Test Failed!"
 msgstr ""
 
 #. module: auto_backup
-#: code:addons/auto_backup/models/db_backup.py:129
+#: code:addons/auto_backup/models/db_backup.py:128
 #, python-format
 msgid "Connection Test Succeeded!"
 msgstr ""
 
 #. module: auto_backup
-#: field:db.backup,create_uid:0
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup_create_uid
 msgid "Created by"
 msgstr "Olu??turan"
 
 #. module: auto_backup
-#: field:db.backup,create_date:0
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup_create_date
 msgid "Created on"
 msgstr "Olu??turuldu"
 
 #. module: auto_backup
-#: code:addons/auto_backup/models/db_backup.py:208
-#: model:mail.message.subtype,description:auto_backup.failure
+#: code:addons/auto_backup/models/db_backup.py:206
+#: model:mail.message.subtype,description:auto_backup.mail_message_subtype_failure
 #, python-format
 msgid "Database backup failed."
 msgstr ""
 
 #. module: auto_backup
-#: code:addons/auto_backup/models/db_backup.py:213
-#: model:mail.message.subtype,description:auto_backup.success
+#: code:addons/auto_backup/models/db_backup.py:214
+#: model:mail.message.subtype,description:auto_backup.mail_message_subtype_success
 #, python-format
 msgid "Database backup succeeded."
 msgstr ""
 
 #. module: auto_backup
-#: help:db.backup,message_last_post:0
-msgid "Date of the last message posted on the record."
-msgstr "Kay??da eklenen son mesaj??n tarihi."
-
-#. module: auto_backup
-#: field:db.backup,days_to_keep:0
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup_days_to_keep
 msgid "Days to keep"
 msgstr ""
 
 #. module: auto_backup
-#: code:addons/auto_backup/models/db_backup.py:120
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup_display_name
+msgid "Display Name"
+msgstr "G??r??nen ??sim"
+
+#. module: auto_backup
+#: code:addons/auto_backup/models/db_backup.py:119
 #, python-format
 msgid ""
 "Do not save backups on your filestore, or you will backup your backups too!"
 msgstr ""
 
-#. module: auto_backup
-#: model:ir.model,name:auto_backup.model_db_backup
-msgid "Email Thread"
-msgstr "Eposta konu??mas??"
-
 #. module: auto_backup
 #: model:ir.actions.server,name:auto_backup.action_server_backup
 msgid "Execute backup(s)"
 msgstr ""
 
 #. module: auto_backup
-#: field:db.backup,folder:0
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup_folder
 msgid "Folder"
 msgstr "Klas??r"
 
 #. module: auto_backup
-#: field:db.backup,message_follower_ids:0
-msgid "Followers"
-msgstr "Takip??iler"
-
-#. module: auto_backup
-#: view:db.backup:auto_backup.view_backup_conf_form
+#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
 msgid "Go to Settings / Technical / Automation / Scheduled Actions."
 msgstr ""
 
 #. module: auto_backup
-#: view:db.backup:auto_backup.view_backup_conf_form
+#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
 msgid "Help"
 msgstr ""
 
-#. module: auto_backup
-#: help:db.backup,message_summary:0
-msgid ""
-"Holds the Chatter summary (number of messages, ...). This summary is "
-"directly in html format in order to be inserted in kanban views."
-msgstr ""
-
 #. module: auto_backup
 #: sql_constraint:db.backup:0
 msgid "I cannot remove backups from the future. Ask Doc for that."
 msgstr ""
 
 #. module: auto_backup
-#: field:db.backup,id:0
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup_id
 msgid "ID"
 msgstr "ID"
 
 #. module: auto_backup
-#: help:db.backup,message_unread:0
-msgid "If checked new messages require your attention."
-msgstr "E??er i??aretlenirse yeni mesajlar dikkatinizi ister."
-
-#. module: auto_backup
-#: field:db.backup,message_is_follower:0
-msgid "Is a Follower"
-msgstr "Takip ediyor"
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup___last_update
+msgid "Last Modified on"
+msgstr "Son de??i??iklik"
 
 #. module: auto_backup
-#: field:db.backup,message_last_post:0
-msgid "Last Message Date"
-msgstr "Son mesaj tarihi"
-
-#. module: auto_backup
-#: field:db.backup,write_uid:0
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup_write_uid
 msgid "Last Updated by"
 msgstr "Son g??ncelleyen"
 
 #. module: auto_backup
-#: field:db.backup,write_date:0
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup_write_date
 msgid "Last Updated on"
 msgstr "Son g??ncellenme"
 
@@ -212,34 +186,24 @@ msgid "Local disk"
 msgstr ""
 
 #. module: auto_backup
-#: field:db.backup,message_ids:0
-msgid "Messages"
-msgstr "Mesajlar"
-
-#. module: auto_backup
-#: help:db.backup,message_ids:0
-msgid "Messages and communication history"
-msgstr ""
-
-#. module: auto_backup
-#: field:db.backup,method:0
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup_method
 msgid "Method"
 msgstr "Method"
 
 #. module: auto_backup
-#: field:db.backup,name:0
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup_name
 msgid "Name"
 msgstr "Ad??"
 
 #. module: auto_backup
-#: help:db.backup,sftp_private_key:0
+#: model:ir.model.fields,help:auto_backup.field_db_backup_sftp_private_key
 msgid ""
 "Path to the private key file. Only the Odoo user should have read "
 "permissions for that file."
 msgstr ""
 
 #. module: auto_backup
-#: field:db.backup,sftp_private_key:0
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup_sftp_private_key
 msgid "Private key location"
 msgstr ""
 
@@ -249,110 +213,105 @@ msgid "Remote SFTP server"
 msgstr ""
 
 #. module: auto_backup
-#: field:db.backup,sftp_password:0
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup_sftp_password
 msgid "SFTP Password"
 msgstr ""
 
 #. module: auto_backup
-#: field:db.backup,sftp_port:0
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup_sftp_port
 msgid "SFTP Port"
 msgstr ""
 
 #. module: auto_backup
-#: field:db.backup,sftp_host:0
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup_sftp_host
 msgid "SFTP Server"
 msgstr ""
 
 #. module: auto_backup
-#: view:db.backup:auto_backup.view_backup_conf_form
+#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
 msgid "SFTP Settings"
 msgstr ""
 
 #. module: auto_backup
-#: view:db.backup:auto_backup.view_backup_conf_search
+#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_search
 msgid "Search options"
 msgstr ""
 
 #. module: auto_backup
-#: view:db.backup:auto_backup.view_backup_conf_form
+#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
 msgid "Search the action named 'Backup scheduler'."
 msgstr ""
 
 #. module: auto_backup
-#: view:db.backup:auto_backup.view_backup_conf_form
+#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
 msgid ""
 "Set the scheduler to active and fill in how often you want backups "
 "generated."
 msgstr ""
 
 #. module: auto_backup
-#: field:db.backup,message_summary:0
-msgid "Summary"
-msgstr "??zet"
-
-#. module: auto_backup
-#: help:db.backup,name:0
+#: model:ir.model.fields,help:auto_backup.field_db_backup_name
 msgid "Summary of this backup process"
 msgstr ""
 
 #. module: auto_backup
-#: view:db.backup:auto_backup.view_backup_conf_form
+#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
 msgid "Test SFTP Connection"
 msgstr ""
 
 #. module: auto_backup
-#: help:db.backup,sftp_host:0
+#: model:ir.model.fields,help:auto_backup.field_db_backup_sftp_host
 msgid ""
 "The host name or IP address from your remote server. For example 192.168.0.1"
 msgstr ""
 
 #. module: auto_backup
-#: help:db.backup,sftp_password:0
+#: model:ir.model.fields,help:auto_backup.field_db_backup_sftp_password
 msgid ""
 "The password for the SFTP connection. If you specify a private key file, "
 "then this is the password to decrypt it."
 msgstr ""
 
 #. module: auto_backup
-#: help:db.backup,sftp_port:0
+#: model:ir.model.fields,help:auto_backup.field_db_backup_sftp_port
 msgid "The port on the FTP server that accepts SSH/SFTP calls."
 msgstr ""
 
 #. module: auto_backup
-#: help:db.backup,sftp_user:0
+#: model:ir.model.fields,help:auto_backup.field_db_backup_sftp_user
 msgid ""
 "The username where the SFTP connection should be made with. This is the user"
 " on the external server."
 msgstr ""
 
 #. module: auto_backup
-#: field:db.backup,message_unread:0
-msgid "Unread Messages"
-msgstr "Okunmam???? mesajlar"
-
-#. module: auto_backup
-#: view:db.backup:auto_backup.view_backup_conf_form
+#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
 msgid ""
 "Use SFTP with caution! This writes files to external servers under the path "
 "you specify."
 msgstr ""
 
 #. module: auto_backup
-#: field:db.backup,sftp_user:0
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup_sftp_user
 msgid "Username in the SFTP Server"
 msgstr ""
 
 #. module: auto_backup
-#: view:db.backup:auto_backup.view_backup_conf_form
+#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
 msgid "Warning:"
 msgstr ""
 
 #. module: auto_backup
-#: view:db.backup:auto_backup.view_backup_conf_form
+#: model:ir.model,name:auto_backup.model_db_backup
+msgid "db.backup"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
 msgid "john"
 msgstr ""
 
 #. module: auto_backup
-#: view:db.backup:auto_backup.view_backup_conf_form
+#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
 msgid "sftp.example.com"
 msgstr ""
diff --git a/auto_backup/i18n/tr_TR.po b/auto_backup/i18n/tr_TR.po
new file mode 100644
index 00000000000..fcf0e3621e5
--- /dev/null
+++ b/auto_backup/i18n/tr_TR.po
@@ -0,0 +1,317 @@
+# Translation of Odoo Server.
+# This file contains the translation of the following modules:
+# * auto_backup
+# 
+# Translators:
+# OCA Transbot <transbot@odoo-community.org>, 2017
+msgid ""
+msgstr ""
+"Project-Id-Version: Odoo Server 10.0\n"
+"Report-Msgid-Bugs-To: \n"
+"POT-Creation-Date: 2017-02-22 00:54+0000\n"
+"PO-Revision-Date: 2017-02-22 00:54+0000\n"
+"Last-Translator: OCA Transbot <transbot@odoo-community.org>, 2017\n"
+"Language-Team: Turkish (Turkey) (https://www.transifex.com/oca/teams/23907/tr_TR/)\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: \n"
+"Language: tr_TR\n"
+"Plural-Forms: nplurals=1; plural=0;\n"
+
+#. module: auto_backup
+#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+msgid "/home/odoo/.ssh/id_rsa"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,help:auto_backup.field_db_backup_folder
+msgid "Absolute path for storing the backups"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.actions.act_window,name:auto_backup.action_backup_conf_form
+#: model:ir.ui.menu,name:auto_backup.backup_conf_menu
+msgid "Automated Backups"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+msgid "Automatic backups of the database can be scheduled as follows:"
+msgstr ""
+
+#. module: auto_backup
+#: model:mail.message.subtype,name:auto_backup.mail_message_subtype_failure
+msgid "Backup Failed"
+msgstr ""
+
+#. module: auto_backup
+#: model:mail.message.subtype,name:auto_backup.mail_message_subtype_success
+msgid "Backup Successful"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_tree
+msgid "Backups"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,help:auto_backup.field_db_backup_days_to_keep
+msgid ""
+"Backups older than this will be deleted automatically. Set 0 to disable "
+"autodeletion."
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+msgid "Basic backup configuration"
+msgstr ""
+
+#. module: auto_backup
+#: sql_constraint:db.backup:0
+msgid "Cannot duplicate a configuration."
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,help:auto_backup.field_db_backup_method
+msgid "Choose the storage method for this backup."
+msgstr ""
+
+#. module: auto_backup
+#: code:addons/auto_backup/models/db_backup.py:251
+#, python-format
+msgid "Cleanup of old database backups failed."
+msgstr ""
+
+#. module: auto_backup
+#: code:addons/auto_backup/models/db_backup.py:131
+#, python-format
+msgid "Connection Test Failed!"
+msgstr ""
+
+#. module: auto_backup
+#: code:addons/auto_backup/models/db_backup.py:128
+#, python-format
+msgid "Connection Test Succeeded!"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup_create_uid
+msgid "Created by"
+msgstr "Olu??turan"
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup_create_date
+msgid "Created on"
+msgstr "Olu??turulma tarihi"
+
+#. module: auto_backup
+#: code:addons/auto_backup/models/db_backup.py:206
+#: model:mail.message.subtype,description:auto_backup.mail_message_subtype_failure
+#, python-format
+msgid "Database backup failed."
+msgstr ""
+
+#. module: auto_backup
+#: code:addons/auto_backup/models/db_backup.py:214
+#: model:mail.message.subtype,description:auto_backup.mail_message_subtype_success
+#, python-format
+msgid "Database backup succeeded."
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup_days_to_keep
+msgid "Days to keep"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup_display_name
+msgid "Display Name"
+msgstr "G??r??nen ad"
+
+#. module: auto_backup
+#: code:addons/auto_backup/models/db_backup.py:119
+#, python-format
+msgid ""
+"Do not save backups on your filestore, or you will backup your backups too!"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.actions.server,name:auto_backup.action_server_backup
+msgid "Execute backup(s)"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup_folder
+msgid "Folder"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+msgid "Go to Settings / Technical / Automation / Scheduled Actions."
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+msgid "Help"
+msgstr ""
+
+#. module: auto_backup
+#: sql_constraint:db.backup:0
+msgid "I cannot remove backups from the future. Ask Doc for that."
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup_id
+msgid "ID"
+msgstr "Kimlik"
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup___last_update
+msgid "Last Modified on"
+msgstr "En son g??ncelleme tarihi"
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup_write_uid
+msgid "Last Updated by"
+msgstr "En son g??ncelleyen "
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup_write_date
+msgid "Last Updated on"
+msgstr "En son g??ncelleme tarihi"
+
+#. module: auto_backup
+#: selection:db.backup,method:0
+msgid "Local disk"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup_method
+msgid "Method"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup_name
+msgid "Name"
+msgstr "Ad"
+
+#. module: auto_backup
+#: model:ir.model.fields,help:auto_backup.field_db_backup_sftp_private_key
+msgid ""
+"Path to the private key file. Only the Odoo user should have read "
+"permissions for that file."
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup_sftp_private_key
+msgid "Private key location"
+msgstr ""
+
+#. module: auto_backup
+#: selection:db.backup,method:0
+msgid "Remote SFTP server"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup_sftp_password
+msgid "SFTP Password"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup_sftp_port
+msgid "SFTP Port"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup_sftp_host
+msgid "SFTP Server"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+msgid "SFTP Settings"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_search
+msgid "Search options"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+msgid "Search the action named 'Backup scheduler'."
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+msgid ""
+"Set the scheduler to active and fill in how often you want backups "
+"generated."
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,help:auto_backup.field_db_backup_name
+msgid "Summary of this backup process"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+msgid "Test SFTP Connection"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,help:auto_backup.field_db_backup_sftp_host
+msgid ""
+"The host name or IP address from your remote server. For example 192.168.0.1"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,help:auto_backup.field_db_backup_sftp_password
+msgid ""
+"The password for the SFTP connection. If you specify a private key file, "
+"then this is the password to decrypt it."
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,help:auto_backup.field_db_backup_sftp_port
+msgid "The port on the FTP server that accepts SSH/SFTP calls."
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,help:auto_backup.field_db_backup_sftp_user
+msgid ""
+"The username where the SFTP connection should be made with. This is the user"
+" on the external server."
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+msgid ""
+"Use SFTP with caution! This writes files to external servers under the path "
+"you specify."
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup_sftp_user
+msgid "Username in the SFTP Server"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+msgid "Warning:"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model,name:auto_backup.model_db_backup
+msgid "db.backup"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+msgid "john"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+msgid "sftp.example.com"
+msgstr ""
diff --git a/auto_backup/i18n/uk.po b/auto_backup/i18n/uk.po
new file mode 100644
index 00000000000..f3f2cc0d8d7
--- /dev/null
+++ b/auto_backup/i18n/uk.po
@@ -0,0 +1,317 @@
+# Translation of Odoo Server.
+# This file contains the translation of the following modules:
+# * auto_backup
+# 
+# Translators:
+# OCA Transbot <transbot@odoo-community.org>, 2016
+msgid ""
+msgstr ""
+"Project-Id-Version: Odoo Server 10.0\n"
+"Report-Msgid-Bugs-To: \n"
+"POT-Creation-Date: 2017-02-18 02:29+0000\n"
+"PO-Revision-Date: 2017-02-18 02:29+0000\n"
+"Last-Translator: OCA Transbot <transbot@odoo-community.org>, 2016\n"
+"Language-Team: Ukrainian (https://www.transifex.com/oca/teams/23907/uk/)\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: \n"
+"Language: uk\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: auto_backup
+#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+msgid "/home/odoo/.ssh/id_rsa"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,help:auto_backup.field_db_backup_folder
+msgid "Absolute path for storing the backups"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.actions.act_window,name:auto_backup.action_backup_conf_form
+#: model:ir.ui.menu,name:auto_backup.backup_conf_menu
+msgid "Automated Backups"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+msgid "Automatic backups of the database can be scheduled as follows:"
+msgstr ""
+
+#. module: auto_backup
+#: model:mail.message.subtype,name:auto_backup.mail_message_subtype_failure
+msgid "Backup Failed"
+msgstr ""
+
+#. module: auto_backup
+#: model:mail.message.subtype,name:auto_backup.mail_message_subtype_success
+msgid "Backup Successful"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_tree
+msgid "Backups"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,help:auto_backup.field_db_backup_days_to_keep
+msgid ""
+"Backups older than this will be deleted automatically. Set 0 to disable "
+"autodeletion."
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+msgid "Basic backup configuration"
+msgstr ""
+
+#. module: auto_backup
+#: sql_constraint:db.backup:0
+msgid "Cannot duplicate a configuration."
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,help:auto_backup.field_db_backup_method
+msgid "Choose the storage method for this backup."
+msgstr ""
+
+#. module: auto_backup
+#: code:addons/auto_backup/models/db_backup.py:251
+#, python-format
+msgid "Cleanup of old database backups failed."
+msgstr ""
+
+#. module: auto_backup
+#: code:addons/auto_backup/models/db_backup.py:131
+#, python-format
+msgid "Connection Test Failed!"
+msgstr ""
+
+#. module: auto_backup
+#: code:addons/auto_backup/models/db_backup.py:128
+#, python-format
+msgid "Connection Test Succeeded!"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup_create_uid
+msgid "Created by"
+msgstr "??????????????"
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup_create_date
+msgid "Created on"
+msgstr "????????????????"
+
+#. module: auto_backup
+#: code:addons/auto_backup/models/db_backup.py:206
+#: model:mail.message.subtype,description:auto_backup.mail_message_subtype_failure
+#, python-format
+msgid "Database backup failed."
+msgstr ""
+
+#. module: auto_backup
+#: code:addons/auto_backup/models/db_backup.py:214
+#: model:mail.message.subtype,description:auto_backup.mail_message_subtype_success
+#, python-format
+msgid "Database backup succeeded."
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup_days_to_keep
+msgid "Days to keep"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup_display_name
+msgid "Display Name"
+msgstr "?????????? ?????? ????????????????????????"
+
+#. module: auto_backup
+#: code:addons/auto_backup/models/db_backup.py:119
+#, python-format
+msgid ""
+"Do not save backups on your filestore, or you will backup your backups too!"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.actions.server,name:auto_backup.action_server_backup
+msgid "Execute backup(s)"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup_folder
+msgid "Folder"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+msgid "Go to Settings / Technical / Automation / Scheduled Actions."
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+msgid "Help"
+msgstr ""
+
+#. module: auto_backup
+#: sql_constraint:db.backup:0
+msgid "I cannot remove backups from the future. Ask Doc for that."
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup_id
+msgid "ID"
+msgstr "ID"
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup___last_update
+msgid "Last Modified on"
+msgstr "?????????????? ??????????????????????"
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup_write_uid
+msgid "Last Updated by"
+msgstr "???????????????? ??????????????????????????"
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup_write_date
+msgid "Last Updated on"
+msgstr "???????? ?????????????????? ??????????"
+
+#. module: auto_backup
+#: selection:db.backup,method:0
+msgid "Local disk"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup_method
+msgid "Method"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup_name
+msgid "Name"
+msgstr "Name"
+
+#. module: auto_backup
+#: model:ir.model.fields,help:auto_backup.field_db_backup_sftp_private_key
+msgid ""
+"Path to the private key file. Only the Odoo user should have read "
+"permissions for that file."
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup_sftp_private_key
+msgid "Private key location"
+msgstr ""
+
+#. module: auto_backup
+#: selection:db.backup,method:0
+msgid "Remote SFTP server"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup_sftp_password
+msgid "SFTP Password"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup_sftp_port
+msgid "SFTP Port"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup_sftp_host
+msgid "SFTP Server"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+msgid "SFTP Settings"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_search
+msgid "Search options"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+msgid "Search the action named 'Backup scheduler'."
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+msgid ""
+"Set the scheduler to active and fill in how often you want backups "
+"generated."
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,help:auto_backup.field_db_backup_name
+msgid "Summary of this backup process"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+msgid "Test SFTP Connection"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,help:auto_backup.field_db_backup_sftp_host
+msgid ""
+"The host name or IP address from your remote server. For example 192.168.0.1"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,help:auto_backup.field_db_backup_sftp_password
+msgid ""
+"The password for the SFTP connection. If you specify a private key file, "
+"then this is the password to decrypt it."
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,help:auto_backup.field_db_backup_sftp_port
+msgid "The port on the FTP server that accepts SSH/SFTP calls."
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,help:auto_backup.field_db_backup_sftp_user
+msgid ""
+"The username where the SFTP connection should be made with. This is the user"
+" on the external server."
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+msgid ""
+"Use SFTP with caution! This writes files to external servers under the path "
+"you specify."
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup_sftp_user
+msgid "Username in the SFTP Server"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+msgid "Warning:"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model,name:auto_backup.model_db_backup
+msgid "db.backup"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+msgid "john"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+msgid "sftp.example.com"
+msgstr ""
diff --git a/auto_backup/i18n/vi.po b/auto_backup/i18n/vi.po
new file mode 100644
index 00000000000..2c55b2d3ee1
--- /dev/null
+++ b/auto_backup/i18n/vi.po
@@ -0,0 +1,317 @@
+# Translation of Odoo Server.
+# This file contains the translation of the following modules:
+# * auto_backup
+# 
+# Translators:
+# OCA Transbot <transbot@odoo-community.org>, 2016
+msgid ""
+msgstr ""
+"Project-Id-Version: Odoo Server 10.0\n"
+"Report-Msgid-Bugs-To: \n"
+"POT-Creation-Date: 2017-02-18 02:29+0000\n"
+"PO-Revision-Date: 2017-02-18 02:29+0000\n"
+"Last-Translator: OCA Transbot <transbot@odoo-community.org>, 2016\n"
+"Language-Team: Vietnamese (https://www.transifex.com/oca/teams/23907/vi/)\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: \n"
+"Language: vi\n"
+"Plural-Forms: nplurals=1; plural=0;\n"
+
+#. module: auto_backup
+#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+msgid "/home/odoo/.ssh/id_rsa"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,help:auto_backup.field_db_backup_folder
+msgid "Absolute path for storing the backups"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.actions.act_window,name:auto_backup.action_backup_conf_form
+#: model:ir.ui.menu,name:auto_backup.backup_conf_menu
+msgid "Automated Backups"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+msgid "Automatic backups of the database can be scheduled as follows:"
+msgstr ""
+
+#. module: auto_backup
+#: model:mail.message.subtype,name:auto_backup.mail_message_subtype_failure
+msgid "Backup Failed"
+msgstr ""
+
+#. module: auto_backup
+#: model:mail.message.subtype,name:auto_backup.mail_message_subtype_success
+msgid "Backup Successful"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_tree
+msgid "Backups"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,help:auto_backup.field_db_backup_days_to_keep
+msgid ""
+"Backups older than this will be deleted automatically. Set 0 to disable "
+"autodeletion."
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+msgid "Basic backup configuration"
+msgstr ""
+
+#. module: auto_backup
+#: sql_constraint:db.backup:0
+msgid "Cannot duplicate a configuration."
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,help:auto_backup.field_db_backup_method
+msgid "Choose the storage method for this backup."
+msgstr ""
+
+#. module: auto_backup
+#: code:addons/auto_backup/models/db_backup.py:251
+#, python-format
+msgid "Cleanup of old database backups failed."
+msgstr ""
+
+#. module: auto_backup
+#: code:addons/auto_backup/models/db_backup.py:131
+#, python-format
+msgid "Connection Test Failed!"
+msgstr ""
+
+#. module: auto_backup
+#: code:addons/auto_backup/models/db_backup.py:128
+#, python-format
+msgid "Connection Test Succeeded!"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup_create_uid
+msgid "Created by"
+msgstr "???????c t???o b???i"
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup_create_date
+msgid "Created on"
+msgstr "T???o tr??n"
+
+#. module: auto_backup
+#: code:addons/auto_backup/models/db_backup.py:206
+#: model:mail.message.subtype,description:auto_backup.mail_message_subtype_failure
+#, python-format
+msgid "Database backup failed."
+msgstr ""
+
+#. module: auto_backup
+#: code:addons/auto_backup/models/db_backup.py:214
+#: model:mail.message.subtype,description:auto_backup.mail_message_subtype_success
+#, python-format
+msgid "Database backup succeeded."
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup_days_to_keep
+msgid "Days to keep"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup_display_name
+msgid "Display Name"
+msgstr "T??n hi???n th???"
+
+#. module: auto_backup
+#: code:addons/auto_backup/models/db_backup.py:119
+#, python-format
+msgid ""
+"Do not save backups on your filestore, or you will backup your backups too!"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.actions.server,name:auto_backup.action_server_backup
+msgid "Execute backup(s)"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup_folder
+msgid "Folder"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+msgid "Go to Settings / Technical / Automation / Scheduled Actions."
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+msgid "Help"
+msgstr ""
+
+#. module: auto_backup
+#: sql_constraint:db.backup:0
+msgid "I cannot remove backups from the future. Ask Doc for that."
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup_id
+msgid "ID"
+msgstr "ID"
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup___last_update
+msgid "Last Modified on"
+msgstr "S???a l???n cu???i v??o"
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup_write_uid
+msgid "Last Updated by"
+msgstr "Last Updated by"
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup_write_date
+msgid "Last Updated on"
+msgstr "C???p nh???t l???n cu???i v??o"
+
+#. module: auto_backup
+#: selection:db.backup,method:0
+msgid "Local disk"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup_method
+msgid "Method"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup_name
+msgid "Name"
+msgstr "T??n"
+
+#. module: auto_backup
+#: model:ir.model.fields,help:auto_backup.field_db_backup_sftp_private_key
+msgid ""
+"Path to the private key file. Only the Odoo user should have read "
+"permissions for that file."
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup_sftp_private_key
+msgid "Private key location"
+msgstr ""
+
+#. module: auto_backup
+#: selection:db.backup,method:0
+msgid "Remote SFTP server"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup_sftp_password
+msgid "SFTP Password"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup_sftp_port
+msgid "SFTP Port"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup_sftp_host
+msgid "SFTP Server"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+msgid "SFTP Settings"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_search
+msgid "Search options"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+msgid "Search the action named 'Backup scheduler'."
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+msgid ""
+"Set the scheduler to active and fill in how often you want backups "
+"generated."
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,help:auto_backup.field_db_backup_name
+msgid "Summary of this backup process"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+msgid "Test SFTP Connection"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,help:auto_backup.field_db_backup_sftp_host
+msgid ""
+"The host name or IP address from your remote server. For example 192.168.0.1"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,help:auto_backup.field_db_backup_sftp_password
+msgid ""
+"The password for the SFTP connection. If you specify a private key file, "
+"then this is the password to decrypt it."
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,help:auto_backup.field_db_backup_sftp_port
+msgid "The port on the FTP server that accepts SSH/SFTP calls."
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,help:auto_backup.field_db_backup_sftp_user
+msgid ""
+"The username where the SFTP connection should be made with. This is the user"
+" on the external server."
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+msgid ""
+"Use SFTP with caution! This writes files to external servers under the path "
+"you specify."
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup_sftp_user
+msgid "Username in the SFTP Server"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+msgid "Warning:"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model,name:auto_backup.model_db_backup
+msgid "db.backup"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+msgid "john"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+msgid "sftp.example.com"
+msgstr ""
diff --git a/auto_backup/i18n/vi_VN.po b/auto_backup/i18n/vi_VN.po
new file mode 100644
index 00000000000..8aed39cd9e3
--- /dev/null
+++ b/auto_backup/i18n/vi_VN.po
@@ -0,0 +1,317 @@
+# Translation of Odoo Server.
+# This file contains the translation of the following modules:
+# * auto_backup
+# 
+# Translators:
+# OCA Transbot <transbot@odoo-community.org>, 2016
+msgid ""
+msgstr ""
+"Project-Id-Version: Odoo Server 10.0\n"
+"Report-Msgid-Bugs-To: \n"
+"POT-Creation-Date: 2017-02-18 02:29+0000\n"
+"PO-Revision-Date: 2017-02-18 02:29+0000\n"
+"Last-Translator: OCA Transbot <transbot@odoo-community.org>, 2016\n"
+"Language-Team: Vietnamese (Viet Nam) (https://www.transifex.com/oca/teams/23907/vi_VN/)\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: \n"
+"Language: vi_VN\n"
+"Plural-Forms: nplurals=1; plural=0;\n"
+
+#. module: auto_backup
+#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+msgid "/home/odoo/.ssh/id_rsa"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,help:auto_backup.field_db_backup_folder
+msgid "Absolute path for storing the backups"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.actions.act_window,name:auto_backup.action_backup_conf_form
+#: model:ir.ui.menu,name:auto_backup.backup_conf_menu
+msgid "Automated Backups"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+msgid "Automatic backups of the database can be scheduled as follows:"
+msgstr ""
+
+#. module: auto_backup
+#: model:mail.message.subtype,name:auto_backup.mail_message_subtype_failure
+msgid "Backup Failed"
+msgstr ""
+
+#. module: auto_backup
+#: model:mail.message.subtype,name:auto_backup.mail_message_subtype_success
+msgid "Backup Successful"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_tree
+msgid "Backups"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,help:auto_backup.field_db_backup_days_to_keep
+msgid ""
+"Backups older than this will be deleted automatically. Set 0 to disable "
+"autodeletion."
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+msgid "Basic backup configuration"
+msgstr ""
+
+#. module: auto_backup
+#: sql_constraint:db.backup:0
+msgid "Cannot duplicate a configuration."
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,help:auto_backup.field_db_backup_method
+msgid "Choose the storage method for this backup."
+msgstr ""
+
+#. module: auto_backup
+#: code:addons/auto_backup/models/db_backup.py:251
+#, python-format
+msgid "Cleanup of old database backups failed."
+msgstr ""
+
+#. module: auto_backup
+#: code:addons/auto_backup/models/db_backup.py:131
+#, python-format
+msgid "Connection Test Failed!"
+msgstr ""
+
+#. module: auto_backup
+#: code:addons/auto_backup/models/db_backup.py:128
+#, python-format
+msgid "Connection Test Succeeded!"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup_create_uid
+msgid "Created by"
+msgstr "T???o b???i"
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup_create_date
+msgid "Created on"
+msgstr "T???o v??o"
+
+#. module: auto_backup
+#: code:addons/auto_backup/models/db_backup.py:206
+#: model:mail.message.subtype,description:auto_backup.mail_message_subtype_failure
+#, python-format
+msgid "Database backup failed."
+msgstr ""
+
+#. module: auto_backup
+#: code:addons/auto_backup/models/db_backup.py:214
+#: model:mail.message.subtype,description:auto_backup.mail_message_subtype_success
+#, python-format
+msgid "Database backup succeeded."
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup_days_to_keep
+msgid "Days to keep"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup_display_name
+msgid "Display Name"
+msgstr ""
+
+#. module: auto_backup
+#: code:addons/auto_backup/models/db_backup.py:119
+#, python-format
+msgid ""
+"Do not save backups on your filestore, or you will backup your backups too!"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.actions.server,name:auto_backup.action_server_backup
+msgid "Execute backup(s)"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup_folder
+msgid "Folder"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+msgid "Go to Settings / Technical / Automation / Scheduled Actions."
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+msgid "Help"
+msgstr ""
+
+#. module: auto_backup
+#: sql_constraint:db.backup:0
+msgid "I cannot remove backups from the future. Ask Doc for that."
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup_id
+msgid "ID"
+msgstr "ID"
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup___last_update
+msgid "Last Modified on"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup_write_uid
+msgid "Last Updated by"
+msgstr "C???p nh???t l???n cu???i b???i"
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup_write_date
+msgid "Last Updated on"
+msgstr "C???p nh???t l???n cu???i v??o"
+
+#. module: auto_backup
+#: selection:db.backup,method:0
+msgid "Local disk"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup_method
+msgid "Method"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup_name
+msgid "Name"
+msgstr "T??n"
+
+#. module: auto_backup
+#: model:ir.model.fields,help:auto_backup.field_db_backup_sftp_private_key
+msgid ""
+"Path to the private key file. Only the Odoo user should have read "
+"permissions for that file."
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup_sftp_private_key
+msgid "Private key location"
+msgstr ""
+
+#. module: auto_backup
+#: selection:db.backup,method:0
+msgid "Remote SFTP server"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup_sftp_password
+msgid "SFTP Password"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup_sftp_port
+msgid "SFTP Port"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup_sftp_host
+msgid "SFTP Server"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+msgid "SFTP Settings"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_search
+msgid "Search options"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+msgid "Search the action named 'Backup scheduler'."
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+msgid ""
+"Set the scheduler to active and fill in how often you want backups "
+"generated."
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,help:auto_backup.field_db_backup_name
+msgid "Summary of this backup process"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+msgid "Test SFTP Connection"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,help:auto_backup.field_db_backup_sftp_host
+msgid ""
+"The host name or IP address from your remote server. For example 192.168.0.1"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,help:auto_backup.field_db_backup_sftp_password
+msgid ""
+"The password for the SFTP connection. If you specify a private key file, "
+"then this is the password to decrypt it."
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,help:auto_backup.field_db_backup_sftp_port
+msgid "The port on the FTP server that accepts SSH/SFTP calls."
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,help:auto_backup.field_db_backup_sftp_user
+msgid ""
+"The username where the SFTP connection should be made with. This is the user"
+" on the external server."
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+msgid ""
+"Use SFTP with caution! This writes files to external servers under the path "
+"you specify."
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup_sftp_user
+msgid "Username in the SFTP Server"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+msgid "Warning:"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model,name:auto_backup.model_db_backup
+msgid "db.backup"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+msgid "john"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+msgid "sftp.example.com"
+msgstr ""
diff --git a/auto_backup/i18n/zh_CN.po b/auto_backup/i18n/zh_CN.po
index 1324e9072ab..38c6fa176c3 100644
--- a/auto_backup/i18n/zh_CN.po
+++ b/auto_backup/i18n/zh_CN.po
@@ -3,14 +3,15 @@
 # * auto_backup
 # 
 # Translators:
+# OCA Transbot <transbot@odoo-community.org>, 2016
 msgid ""
 msgstr ""
-"Project-Id-Version: server-tools (8.0)\n"
+"Project-Id-Version: Odoo Server 10.0\n"
 "Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2016-04-14 07:02+0000\n"
-"PO-Revision-Date: 2016-04-05 07:21+0000\n"
-"Last-Translator: OCA Transbot <transbot@odoo-community.org>\n"
-"Language-Team: Chinese (China) (http://www.transifex.com/oca/OCA-server-tools-8-0/language/zh_CN/)\n"
+"POT-Creation-Date: 2016-12-08 03:36+0000\n"
+"PO-Revision-Date: 2016-12-08 03:36+0000\n"
+"Last-Translator: OCA Transbot <transbot@odoo-community.org>, 2016\n"
+"Language-Team: Chinese (China) (https://www.transifex.com/oca/teams/23907/zh_CN/)\n"
 "MIME-Version: 1.0\n"
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: \n"
@@ -18,12 +19,12 @@ msgstr ""
 "Plural-Forms: nplurals=1; plural=0;\n"
 
 #. module: auto_backup
-#: view:db.backup:auto_backup.view_backup_conf_form
+#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
 msgid "/home/odoo/.ssh/id_rsa"
 msgstr ""
 
 #. module: auto_backup
-#: help:db.backup,folder:0
+#: model:ir.model.fields,help:auto_backup.field_db_backup_folder
 msgid "Absolute path for storing the backups"
 msgstr "??????????????????"
 
@@ -34,34 +35,34 @@ msgid "Automated Backups"
 msgstr ""
 
 #. module: auto_backup
-#: view:db.backup:auto_backup.view_backup_conf_form
+#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
 msgid "Automatic backups of the database can be scheduled as follows:"
 msgstr "?????????????????????????????????????????????"
 
 #. module: auto_backup
-#: model:mail.message.subtype,name:auto_backup.failure
-msgid "Backup failed"
+#: model:mail.message.subtype,name:auto_backup.mail_message_subtype_failure
+msgid "Backup Failed"
 msgstr ""
 
 #. module: auto_backup
-#: model:mail.message.subtype,name:auto_backup.success
-msgid "Backup successful"
+#: model:mail.message.subtype,name:auto_backup.mail_message_subtype_success
+msgid "Backup Successful"
 msgstr ""
 
 #. module: auto_backup
-#: view:db.backup:auto_backup.view_backup_conf_tree
+#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_tree
 msgid "Backups"
 msgstr "??????"
 
 #. module: auto_backup
-#: help:db.backup,days_to_keep:0
+#: model:ir.model.fields,help:auto_backup.field_db_backup_days_to_keep
 msgid ""
 "Backups older than this will be deleted automatically. Set 0 to disable "
 "autodeletion."
 msgstr ""
 
 #. module: auto_backup
-#: view:db.backup:auto_backup.view_backup_conf_form
+#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
 msgid "Basic backup configuration"
 msgstr ""
 
@@ -71,138 +72,111 @@ msgid "Cannot duplicate a configuration."
 msgstr ""
 
 #. module: auto_backup
-#: help:db.backup,method:0
+#: model:ir.model.fields,help:auto_backup.field_db_backup_method
 msgid "Choose the storage method for this backup."
 msgstr ""
 
 #. module: auto_backup
-#: code:addons/auto_backup/models/db_backup.py:249
+#: code:addons/auto_backup/models/db_backup.py:248
 #, python-format
 msgid "Cleanup of old database backups failed."
 msgstr ""
 
 #. module: auto_backup
-#: code:addons/auto_backup/models/db_backup.py:132
+#: code:addons/auto_backup/models/db_backup.py:131
 #, python-format
 msgid "Connection Test Failed!"
 msgstr ""
 
 #. module: auto_backup
-#: code:addons/auto_backup/models/db_backup.py:129
+#: code:addons/auto_backup/models/db_backup.py:128
 #, python-format
 msgid "Connection Test Succeeded!"
 msgstr ""
 
 #. module: auto_backup
-#: field:db.backup,create_uid:0
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup_create_uid
 msgid "Created by"
 msgstr "?????????"
 
 #. module: auto_backup
-#: field:db.backup,create_date:0
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup_create_date
 msgid "Created on"
 msgstr "????????????"
 
 #. module: auto_backup
-#: code:addons/auto_backup/models/db_backup.py:208
-#: model:mail.message.subtype,description:auto_backup.failure
+#: code:addons/auto_backup/models/db_backup.py:206
+#: model:mail.message.subtype,description:auto_backup.mail_message_subtype_failure
 #, python-format
 msgid "Database backup failed."
 msgstr ""
 
 #. module: auto_backup
-#: code:addons/auto_backup/models/db_backup.py:213
-#: model:mail.message.subtype,description:auto_backup.success
+#: code:addons/auto_backup/models/db_backup.py:211
+#: model:mail.message.subtype,description:auto_backup.mail_message_subtype_success
 #, python-format
 msgid "Database backup succeeded."
 msgstr ""
 
 #. module: auto_backup
-#: help:db.backup,message_last_post:0
-msgid "Date of the last message posted on the record."
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup_days_to_keep
+msgid "Days to keep"
 msgstr ""
 
 #. module: auto_backup
-#: field:db.backup,days_to_keep:0
-msgid "Days to keep"
-msgstr ""
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup_display_name
+msgid "Display Name"
+msgstr "????????????"
 
 #. module: auto_backup
-#: code:addons/auto_backup/models/db_backup.py:120
+#: code:addons/auto_backup/models/db_backup.py:119
 #, python-format
 msgid ""
 "Do not save backups on your filestore, or you will backup your backups too!"
 msgstr ""
 
-#. module: auto_backup
-#: model:ir.model,name:auto_backup.model_db_backup
-msgid "Email Thread"
-msgstr ""
-
 #. module: auto_backup
 #: model:ir.actions.server,name:auto_backup.action_server_backup
 msgid "Execute backup(s)"
 msgstr ""
 
 #. module: auto_backup
-#: field:db.backup,folder:0
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup_folder
 msgid "Folder"
 msgstr ""
 
 #. module: auto_backup
-#: field:db.backup,message_follower_ids:0
-msgid "Followers"
-msgstr ""
-
-#. module: auto_backup
-#: view:db.backup:auto_backup.view_backup_conf_form
+#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
 msgid "Go to Settings / Technical / Automation / Scheduled Actions."
 msgstr "??????   ?????? / ?????? / ????????? / ???????????????"
 
 #. module: auto_backup
-#: view:db.backup:auto_backup.view_backup_conf_form
+#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
 msgid "Help"
 msgstr "??????"
 
-#. module: auto_backup
-#: help:db.backup,message_summary:0
-msgid ""
-"Holds the Chatter summary (number of messages, ...). This summary is "
-"directly in html format in order to be inserted in kanban views."
-msgstr ""
-
 #. module: auto_backup
 #: sql_constraint:db.backup:0
 msgid "I cannot remove backups from the future. Ask Doc for that."
 msgstr ""
 
 #. module: auto_backup
-#: field:db.backup,id:0
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup_id
 msgid "ID"
 msgstr "ID"
 
 #. module: auto_backup
-#: help:db.backup,message_unread:0
-msgid "If checked new messages require your attention."
-msgstr ""
-
-#. module: auto_backup
-#: field:db.backup,message_is_follower:0
-msgid "Is a Follower"
-msgstr ""
-
-#. module: auto_backup
-#: field:db.backup,message_last_post:0
-msgid "Last Message Date"
-msgstr ""
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup___last_update
+msgid "Last Modified on"
+msgstr "??????????????????"
 
 #. module: auto_backup
-#: field:db.backup,write_uid:0
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup_write_uid
 msgid "Last Updated by"
 msgstr "???????????????"
 
 #. module: auto_backup
-#: field:db.backup,write_date:0
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup_write_date
 msgid "Last Updated on"
 msgstr "??????????????????"
 
@@ -212,34 +186,24 @@ msgid "Local disk"
 msgstr ""
 
 #. module: auto_backup
-#: field:db.backup,message_ids:0
-msgid "Messages"
-msgstr ""
-
-#. module: auto_backup
-#: help:db.backup,message_ids:0
-msgid "Messages and communication history"
-msgstr ""
-
-#. module: auto_backup
-#: field:db.backup,method:0
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup_method
 msgid "Method"
 msgstr ""
 
 #. module: auto_backup
-#: field:db.backup,name:0
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup_name
 msgid "Name"
-msgstr ""
+msgstr "??????"
 
 #. module: auto_backup
-#: help:db.backup,sftp_private_key:0
+#: model:ir.model.fields,help:auto_backup.field_db_backup_sftp_private_key
 msgid ""
 "Path to the private key file. Only the Odoo user should have read "
 "permissions for that file."
 msgstr ""
 
 #. module: auto_backup
-#: field:db.backup,sftp_private_key:0
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup_sftp_private_key
 msgid "Private key location"
 msgstr ""
 
@@ -249,110 +213,105 @@ msgid "Remote SFTP server"
 msgstr ""
 
 #. module: auto_backup
-#: field:db.backup,sftp_password:0
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup_sftp_password
 msgid "SFTP Password"
 msgstr ""
 
 #. module: auto_backup
-#: field:db.backup,sftp_port:0
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup_sftp_port
 msgid "SFTP Port"
 msgstr "SFTP ??????"
 
 #. module: auto_backup
-#: field:db.backup,sftp_host:0
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup_sftp_host
 msgid "SFTP Server"
 msgstr ""
 
 #. module: auto_backup
-#: view:db.backup:auto_backup.view_backup_conf_form
+#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
 msgid "SFTP Settings"
 msgstr ""
 
 #. module: auto_backup
-#: view:db.backup:auto_backup.view_backup_conf_search
+#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_search
 msgid "Search options"
 msgstr "????????????"
 
 #. module: auto_backup
-#: view:db.backup:auto_backup.view_backup_conf_form
+#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
 msgid "Search the action named 'Backup scheduler'."
 msgstr "?????????????????????????????????Backup scheduler??????"
 
 #. module: auto_backup
-#: view:db.backup:auto_backup.view_backup_conf_form
+#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
 msgid ""
 "Set the scheduler to active and fill in how often you want backups "
 "generated."
 msgstr "?????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????"
 
 #. module: auto_backup
-#: field:db.backup,message_summary:0
-msgid "Summary"
-msgstr ""
-
-#. module: auto_backup
-#: help:db.backup,name:0
+#: model:ir.model.fields,help:auto_backup.field_db_backup_name
 msgid "Summary of this backup process"
 msgstr ""
 
 #. module: auto_backup
-#: view:db.backup:auto_backup.view_backup_conf_form
+#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
 msgid "Test SFTP Connection"
 msgstr "?????? SFTP ??????"
 
 #. module: auto_backup
-#: help:db.backup,sftp_host:0
+#: model:ir.model.fields,help:auto_backup.field_db_backup_sftp_host
 msgid ""
 "The host name or IP address from your remote server. For example 192.168.0.1"
 msgstr ""
 
 #. module: auto_backup
-#: help:db.backup,sftp_password:0
+#: model:ir.model.fields,help:auto_backup.field_db_backup_sftp_password
 msgid ""
 "The password for the SFTP connection. If you specify a private key file, "
 "then this is the password to decrypt it."
 msgstr ""
 
 #. module: auto_backup
-#: help:db.backup,sftp_port:0
+#: model:ir.model.fields,help:auto_backup.field_db_backup_sftp_port
 msgid "The port on the FTP server that accepts SSH/SFTP calls."
 msgstr "?????? SSH/SFTP ?????????FTP ????????????????????????"
 
 #. module: auto_backup
-#: help:db.backup,sftp_user:0
+#: model:ir.model.fields,help:auto_backup.field_db_backup_sftp_user
 msgid ""
 "The username where the SFTP connection should be made with. This is the user"
 " on the external server."
 msgstr "SFTP ????????????????????????????????????SFTP????????????????????????"
 
 #. module: auto_backup
-#: field:db.backup,message_unread:0
-msgid "Unread Messages"
-msgstr ""
-
-#. module: auto_backup
-#: view:db.backup:auto_backup.view_backup_conf_form
+#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
 msgid ""
 "Use SFTP with caution! This writes files to external servers under the path "
 "you specify."
 msgstr "??????????????? SFTP???????????????????????????????????????????????????????????????SFTP???????????????????????????????????????????????????"
 
 #. module: auto_backup
-#: field:db.backup,sftp_user:0
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup_sftp_user
 msgid "Username in the SFTP Server"
 msgstr ""
 
 #. module: auto_backup
-#: view:db.backup:auto_backup.view_backup_conf_form
+#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
 msgid "Warning:"
 msgstr "?????????"
 
 #. module: auto_backup
-#: view:db.backup:auto_backup.view_backup_conf_form
+#: model:ir.model,name:auto_backup.model_db_backup
+msgid "db.backup"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
 msgid "john"
 msgstr ""
 
 #. module: auto_backup
-#: view:db.backup:auto_backup.view_backup_conf_form
+#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
 msgid "sftp.example.com"
 msgstr ""
diff --git a/auto_backup/i18n/zh_TW.po b/auto_backup/i18n/zh_TW.po
new file mode 100644
index 00000000000..072759a25f4
--- /dev/null
+++ b/auto_backup/i18n/zh_TW.po
@@ -0,0 +1,317 @@
+# Translation of Odoo Server.
+# This file contains the translation of the following modules:
+# * auto_backup
+# 
+# Translators:
+# OCA Transbot <transbot@odoo-community.org>, 2016
+msgid ""
+msgstr ""
+"Project-Id-Version: Odoo Server 10.0\n"
+"Report-Msgid-Bugs-To: \n"
+"POT-Creation-Date: 2017-02-18 02:29+0000\n"
+"PO-Revision-Date: 2017-02-18 02:29+0000\n"
+"Last-Translator: OCA Transbot <transbot@odoo-community.org>, 2016\n"
+"Language-Team: Chinese (Taiwan) (https://www.transifex.com/oca/teams/23907/zh_TW/)\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: \n"
+"Language: zh_TW\n"
+"Plural-Forms: nplurals=1; plural=0;\n"
+
+#. module: auto_backup
+#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+msgid "/home/odoo/.ssh/id_rsa"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,help:auto_backup.field_db_backup_folder
+msgid "Absolute path for storing the backups"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.actions.act_window,name:auto_backup.action_backup_conf_form
+#: model:ir.ui.menu,name:auto_backup.backup_conf_menu
+msgid "Automated Backups"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+msgid "Automatic backups of the database can be scheduled as follows:"
+msgstr ""
+
+#. module: auto_backup
+#: model:mail.message.subtype,name:auto_backup.mail_message_subtype_failure
+msgid "Backup Failed"
+msgstr ""
+
+#. module: auto_backup
+#: model:mail.message.subtype,name:auto_backup.mail_message_subtype_success
+msgid "Backup Successful"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_tree
+msgid "Backups"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,help:auto_backup.field_db_backup_days_to_keep
+msgid ""
+"Backups older than this will be deleted automatically. Set 0 to disable "
+"autodeletion."
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+msgid "Basic backup configuration"
+msgstr ""
+
+#. module: auto_backup
+#: sql_constraint:db.backup:0
+msgid "Cannot duplicate a configuration."
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,help:auto_backup.field_db_backup_method
+msgid "Choose the storage method for this backup."
+msgstr ""
+
+#. module: auto_backup
+#: code:addons/auto_backup/models/db_backup.py:251
+#, python-format
+msgid "Cleanup of old database backups failed."
+msgstr ""
+
+#. module: auto_backup
+#: code:addons/auto_backup/models/db_backup.py:131
+#, python-format
+msgid "Connection Test Failed!"
+msgstr ""
+
+#. module: auto_backup
+#: code:addons/auto_backup/models/db_backup.py:128
+#, python-format
+msgid "Connection Test Succeeded!"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup_create_uid
+msgid "Created by"
+msgstr "?????????"
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup_create_date
+msgid "Created on"
+msgstr "?????????"
+
+#. module: auto_backup
+#: code:addons/auto_backup/models/db_backup.py:206
+#: model:mail.message.subtype,description:auto_backup.mail_message_subtype_failure
+#, python-format
+msgid "Database backup failed."
+msgstr ""
+
+#. module: auto_backup
+#: code:addons/auto_backup/models/db_backup.py:214
+#: model:mail.message.subtype,description:auto_backup.mail_message_subtype_success
+#, python-format
+msgid "Database backup succeeded."
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup_days_to_keep
+msgid "Days to keep"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup_display_name
+msgid "Display Name"
+msgstr "????????????"
+
+#. module: auto_backup
+#: code:addons/auto_backup/models/db_backup.py:119
+#, python-format
+msgid ""
+"Do not save backups on your filestore, or you will backup your backups too!"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.actions.server,name:auto_backup.action_server_backup
+msgid "Execute backup(s)"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup_folder
+msgid "Folder"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+msgid "Go to Settings / Technical / Automation / Scheduled Actions."
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+msgid "Help"
+msgstr ""
+
+#. module: auto_backup
+#: sql_constraint:db.backup:0
+msgid "I cannot remove backups from the future. Ask Doc for that."
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup_id
+msgid "ID"
+msgstr "ID"
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup___last_update
+msgid "Last Modified on"
+msgstr "????????????:"
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup_write_uid
+msgid "Last Updated by"
+msgstr "???????????????"
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup_write_date
+msgid "Last Updated on"
+msgstr "???????????????"
+
+#. module: auto_backup
+#: selection:db.backup,method:0
+msgid "Local disk"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup_method
+msgid "Method"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup_name
+msgid "Name"
+msgstr "??????"
+
+#. module: auto_backup
+#: model:ir.model.fields,help:auto_backup.field_db_backup_sftp_private_key
+msgid ""
+"Path to the private key file. Only the Odoo user should have read "
+"permissions for that file."
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup_sftp_private_key
+msgid "Private key location"
+msgstr ""
+
+#. module: auto_backup
+#: selection:db.backup,method:0
+msgid "Remote SFTP server"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup_sftp_password
+msgid "SFTP Password"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup_sftp_port
+msgid "SFTP Port"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup_sftp_host
+msgid "SFTP Server"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+msgid "SFTP Settings"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_search
+msgid "Search options"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+msgid "Search the action named 'Backup scheduler'."
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+msgid ""
+"Set the scheduler to active and fill in how often you want backups "
+"generated."
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,help:auto_backup.field_db_backup_name
+msgid "Summary of this backup process"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+msgid "Test SFTP Connection"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,help:auto_backup.field_db_backup_sftp_host
+msgid ""
+"The host name or IP address from your remote server. For example 192.168.0.1"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,help:auto_backup.field_db_backup_sftp_password
+msgid ""
+"The password for the SFTP connection. If you specify a private key file, "
+"then this is the password to decrypt it."
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,help:auto_backup.field_db_backup_sftp_port
+msgid "The port on the FTP server that accepts SSH/SFTP calls."
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,help:auto_backup.field_db_backup_sftp_user
+msgid ""
+"The username where the SFTP connection should be made with. This is the user"
+" on the external server."
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+msgid ""
+"Use SFTP with caution! This writes files to external servers under the path "
+"you specify."
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup_sftp_user
+msgid "Username in the SFTP Server"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+msgid "Warning:"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model,name:auto_backup.model_db_backup
+msgid "db.backup"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+msgid "john"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+msgid "sftp.example.com"
+msgstr ""
diff --git a/auto_backup/models/db_backup.py b/auto_backup/models/db_backup.py
index a28280190a4..2e8525a0baa 100644
--- a/auto_backup/models/db_backup.py
+++ b/auto_backup/models/db_backup.py
@@ -126,7 +126,9 @@ def action_sftp_test_connection(self):
             # Just open and close the connection
             with self.sftp_connection():
                 raise exceptions.Warning(_("Connection Test Succeeded!"))
-        except (pysftp.CredentialException, pysftp.ConnectionException):
+        except (pysftp.CredentialException,
+                pysftp.ConnectionException,
+                pysftp.SSHException):
             _logger.info("Connection Test Failed!", exc_info=True)
             raise exceptions.Warning(_("Connection Test Failed!"))
 
diff --git a/auto_backup/view/db_backup_view.xml b/auto_backup/view/db_backup_view.xml
index 4c4ee6579be..23731135ea8 100644
--- a/auto_backup/view/db_backup_view.xml
+++ b/auto_backup/view/db_backup_view.xml
@@ -31,7 +31,7 @@
                             name="action_sftp_test_connection"
                             type="object"
                             string="Test SFTP Connection"
-                            icon="gtk-network"/>
+                            icon="fa-television"/>
                     </group>
                 </div>
                 <separator string="Help" colspan="2"/>

From a63603a70b19ba8da2d26b81e9619fbed0e96ba6 Mon Sep 17 00:00:00 2001
From: Andrea <a.stirpe@onestein.nl>
Date: Thu, 15 Feb 2018 10:22:20 +0100
Subject: [PATCH 13/52] [11.0][MIG] auto_backup

---
 auto_backup/README.rst                    |  13 +-
 auto_backup/__init__.py                   |   6 +-
 auto_backup/__manifest__.py               |  12 +-
 auto_backup/data/ir_cron.xml              |  12 +-
 auto_backup/data/mail_message_subtype.xml |   3 +-
 auto_backup/i18n/ca.po                    |  60 ++--
 auto_backup/i18n/cs_CZ.po                 | 319 ++++++++++++++++++++++
 auto_backup/i18n/de.po                    |  57 ++--
 auto_backup/i18n/es.po                    |  58 ++--
 auto_backup/i18n/fr.po                    |  58 ++--
 auto_backup/i18n/hr.po                    |  59 ++--
 auto_backup/i18n/it.po                    |  58 ++--
 auto_backup/i18n/nl_NL.po                 | 319 ++++++++++++++++++++++
 auto_backup/i18n/pt.po                    |  56 ++--
 auto_backup/i18n/ro.po                    |  56 ++--
 auto_backup/i18n/sl.po                    |  58 ++--
 auto_backup/i18n/zh_CN.po                 |  54 ++--
 auto_backup/models/__init__.py            |   5 +-
 auto_backup/models/db_backup.py           |  57 ++--
 auto_backup/tests/__init__.py             |   6 +-
 auto_backup/tests/test_db_backup.py       |  28 +-
 auto_backup/view/db_backup_view.xml       |  55 ++--
 22 files changed, 1025 insertions(+), 384 deletions(-)
 create mode 100644 auto_backup/i18n/cs_CZ.po
 create mode 100644 auto_backup/i18n/nl_NL.po

diff --git a/auto_backup/README.rst b/auto_backup/README.rst
index e71082a5f20..ee196677565 100644
--- a/auto_backup/README.rst
+++ b/auto_backup/README.rst
@@ -1,5 +1,5 @@
-.. image:: https://img.shields.io/badge/licence-AGPL--3-blue.svg
-   :target: http://www.gnu.org/licenses/agpl-3.0-standalone.html
+.. image:: https://img.shields.io/badge/license-AGPL--3-blue.png
+   :target: https://www.gnu.org/licenses/agpl
    :alt: License: AGPL-3
 
 ====================
@@ -13,12 +13,12 @@ Installation
 
 Before installing this module, you need to execute::
 
-    pip install pysftp
+    pip3 install pysftp
 
 Configuration
 =============
 
-Go to *Settings -> Configuration -> Configure Backup* to
+Go to *Settings -> Database Structure -> Automated Backup* to
 create your configurations for each database that you needed
 to backups.
 
@@ -70,7 +70,7 @@ manually execute the selected processes.
 
 .. image:: https://odoo-community.org/website/image/ir.attachment/5784_f2813bd/datas
    :alt: Try me on Runbot
-   :target: https://runbot.odoo-community.org/runbot/149/10.0
+   :target: https://runbot.odoo-community.org/runbot/149/11.0
 
 Known issues / Roadmap
 ======================
@@ -87,7 +87,7 @@ Bug Tracker
 Bugs are tracked on `GitHub Issues
 <https://github.com/OCA/server-tools/issues>`_. In case of trouble, please
 check there if your issue has already been reported. If you spotted it first,
-help us smashing it by providing a detailed and welcomed feedback.
+help us smash it by providing detailed and welcomed feedback.
 
 Credits
 =======
@@ -99,6 +99,7 @@ Contributors
 * Alessio Gerace <alessio.gerace@agilebg.com>
 * Jairo Llopis <yajo.sk8@gmail.com>
 * Dave Lasley <dave@laslabs.com>
+* Andrea Stirpe <a.stirpe@onestein.nl>
 
 Maintainer
 ----------
diff --git a/auto_backup/__init__.py b/auto_backup/__init__.py
index e4106988562..31660d6a965 100644
--- a/auto_backup/__init__.py
+++ b/auto_backup/__init__.py
@@ -1,7 +1,3 @@
-# -*- coding: utf-8 -*-
-# ?? 2004-2009 Tiny SPRL (<http://tiny.be>).
-# ?? 2015 Agile Business Group <http://www.agilebg.com>
-# ?? 2016 Grupo ESOC Ingenier??a de Servicios, S.L.U. - Jairo Llopis
-# License GPL-3.0 or later (http://www.gnu.org/licenses/gpl.html).
+# License AGPL-3.0 or later (https://www.gnu.org/licenses/agpl).
 
 from . import models
diff --git a/auto_backup/__manifest__.py b/auto_backup/__manifest__.py
index 7eba3b2a4b0..559421a7c59 100644
--- a/auto_backup/__manifest__.py
+++ b/auto_backup/__manifest__.py
@@ -1,13 +1,12 @@
-# -*- coding: utf-8 -*-
 # ?? 2004-2009 Tiny SPRL (<http://tiny.be>).
 # ?? 2015 Agile Business Group <http://www.agilebg.com>
 # ?? 2016 Grupo ESOC Ingenier??a de Servicios, S.L.U. - Jairo Llopis
-# License GPL-3.0 or later (http://www.gnu.org/licenses/gpl.html).
+# License AGPL-3.0 or later (https://www.gnu.org/licenses/agpl).
 
 {
     "name": "Database Auto-Backup",
     "summary": "Backups database",
-    "version": "10.0.1.0.2",
+    "version": "11.0.1.0.0",
     "author": (
         "Yenthe Van Ginneken, "
         "Agile Business Group, "
@@ -15,11 +14,11 @@
         "LasLabs, "
         "Odoo Community Association (OCA)"
     ),
-    'license': "AGPL-3",
-    "website": "http://www.vanroey.be/applications/bedrijfsbeheer/odoo",
+    "license": "AGPL-3",
+    "website": "https://github.com/OCA/server-tools/",
     "category": "Tools",
     "depends": [
-        'mail',
+        "mail",
     ],
     "data": [
         "data/ir_cron.xml",
@@ -27,7 +26,6 @@
         "security/ir.model.access.csv",
         "view/db_backup_view.xml",
     ],
-    "application": True,
     "installable": True,
     "external_dependencies": {
         "python": ["pysftp"],
diff --git a/auto_backup/data/ir_cron.xml b/auto_backup/data/ir_cron.xml
index 6b62e364b0c..9fe1bfb76f4 100644
--- a/auto_backup/data/ir_cron.xml
+++ b/auto_backup/data/ir_cron.xml
@@ -1,5 +1,4 @@
-<?xml version="1.0" encoding="UTF-8"?>
-
+<?xml version="1.0" encoding="utf-8"?>
 <odoo noupdate="1">
 
     <record id="ir_cron_backup_scheduler_0" model="ir.cron">
@@ -8,11 +7,10 @@
         <field name="interval_number">1</field>
         <field name="interval_type">days</field>
         <field name="numbercall">-1</field>
-        <field name="nextcall"
-               eval="(datetime.now() + timedelta(days=1)).strftime('%Y-%m-%d 02:00:00')"
-               />
-        <field name="model">db.backup</field>
-        <field name="function">action_backup_all</field>
+        <field name="nextcall" eval="(datetime.now() + timedelta(days=1)).strftime('%Y-%m-%d 03:00:00')"/>
+        <field name="model_id" ref="model_db_backup"/>
+        <field name="state">code</field>
+        <field name="code">model.action_backup_all()</field>
     </record>
 
 </odoo>
diff --git a/auto_backup/data/mail_message_subtype.xml b/auto_backup/data/mail_message_subtype.xml
index 2dd820f975f..a0e8e932bca 100644
--- a/auto_backup/data/mail_message_subtype.xml
+++ b/auto_backup/data/mail_message_subtype.xml
@@ -1,5 +1,4 @@
-<?xml version="1.0" encoding="UTF-8"?>
-
+<?xml version="1.0" encoding="utf-8"?>
 <odoo noupdate="1">
 
     <record id="mail_message_subtype_success" model="mail.message.subtype">
diff --git a/auto_backup/i18n/ca.po b/auto_backup/i18n/ca.po
index c74b059f1b1..11362e8440e 100644
--- a/auto_backup/i18n/ca.po
+++ b/auto_backup/i18n/ca.po
@@ -3,14 +3,14 @@
 # * auto_backup
 # 
 # Translators:
-# OCA Transbot <transbot@odoo-community.org>, 2016
+# OCA Transbot <transbot@odoo-community.org>, 2018
 msgid ""
 msgstr ""
-"Project-Id-Version: Odoo Server 10.0\n"
+"Project-Id-Version: Odoo Server 11.0\n"
 "Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2017-02-22 00:54+0000\n"
-"PO-Revision-Date: 2017-02-22 00:54+0000\n"
-"Last-Translator: OCA Transbot <transbot@odoo-community.org>, 2016\n"
+"POT-Creation-Date: 2018-03-03 10:08+0000\n"
+"PO-Revision-Date: 2018-03-03 10:08+0000\n"
+"Last-Translator: OCA Transbot <transbot@odoo-community.org>, 2018\n"
 "Language-Team: Catalan (https://www.transifex.com/oca/teams/23907/ca/)\n"
 "MIME-Version: 1.0\n"
 "Content-Type: text/plain; charset=UTF-8\n"
@@ -45,13 +45,15 @@ msgid "Backup Failed"
 msgstr ""
 
 #. module: auto_backup
-#: model:mail.message.subtype,name:auto_backup.mail_message_subtype_success
-msgid "Backup Successful"
+#: model:ir.actions.server,name:auto_backup.ir_cron_backup_scheduler_0_ir_actions_server
+#: model:ir.cron,cron_name:auto_backup.ir_cron_backup_scheduler_0
+#: model:ir.cron,name:auto_backup.ir_cron_backup_scheduler_0
+msgid "Backup Scheduler"
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_tree
-msgid "Backups"
+#: model:mail.message.subtype,name:auto_backup.mail_message_subtype_success
+msgid "Backup Successful"
 msgstr ""
 
 #. module: auto_backup
@@ -77,19 +79,19 @@ msgid "Choose the storage method for this backup."
 msgstr ""
 
 #. module: auto_backup
-#: code:addons/auto_backup/models/db_backup.py:251
+#: code:addons/auto_backup/models/db_backup.py:249
 #, python-format
 msgid "Cleanup of old database backups failed."
 msgstr ""
 
 #. module: auto_backup
-#: code:addons/auto_backup/models/db_backup.py:131
+#: code:addons/auto_backup/models/db_backup.py:128
 #, python-format
 msgid "Connection Test Failed!"
 msgstr ""
 
 #. module: auto_backup
-#: code:addons/auto_backup/models/db_backup.py:128
+#: code:addons/auto_backup/models/db_backup.py:123
 #, python-format
 msgid "Connection Test Succeeded!"
 msgstr ""
@@ -105,14 +107,19 @@ msgid "Created on"
 msgstr "Creat el"
 
 #. module: auto_backup
-#: code:addons/auto_backup/models/db_backup.py:206
+#: model:ir.model,name:auto_backup.model_db_backup
+msgid "Database Backup"
+msgstr ""
+
+#. module: auto_backup
+#: code:addons/auto_backup/models/db_backup.py:203
 #: model:mail.message.subtype,description:auto_backup.mail_message_subtype_failure
 #, python-format
 msgid "Database backup failed."
 msgstr ""
 
 #. module: auto_backup
-#: code:addons/auto_backup/models/db_backup.py:214
+#: code:addons/auto_backup/models/db_backup.py:211
 #: model:mail.message.subtype,description:auto_backup.mail_message_subtype_success
 #, python-format
 msgid "Database backup succeeded."
@@ -120,21 +127,26 @@ msgstr ""
 
 #. module: auto_backup
 #: model:ir.model.fields,field_description:auto_backup.field_db_backup_days_to_keep
-msgid "Days to keep"
+msgid "Days To Keep"
 msgstr ""
 
 #. module: auto_backup
 #: model:ir.model.fields,field_description:auto_backup.field_db_backup_display_name
 msgid "Display Name"
-msgstr "Veure el nom"
+msgstr "Nom a mostrar"
 
 #. module: auto_backup
-#: code:addons/auto_backup/models/db_backup.py:119
+#: code:addons/auto_backup/models/db_backup.py:114
 #, python-format
 msgid ""
 "Do not save backups on your filestore, or you will backup your backups too!"
 msgstr ""
 
+#. module: auto_backup
+#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+msgid "Execute backup"
+msgstr ""
+
 #. module: auto_backup
 #: model:ir.actions.server,name:auto_backup.action_server_backup
 msgid "Execute backup(s)"
@@ -173,12 +185,12 @@ msgstr "Darrera modificaci?? el"
 #. module: auto_backup
 #: model:ir.model.fields,field_description:auto_backup.field_db_backup_write_uid
 msgid "Last Updated by"
-msgstr "Darrera actualitzaci?? per"
+msgstr "Darrera Actualitzaci?? per"
 
 #. module: auto_backup
 #: model:ir.model.fields,field_description:auto_backup.field_db_backup_write_date
 msgid "Last Updated on"
-msgstr "Darrera actualitzaci?? de"
+msgstr "Darrera Actualitzaci?? el"
 
 #. module: auto_backup
 #: selection:db.backup,method:0
@@ -232,11 +244,6 @@ msgstr ""
 msgid "SFTP Settings"
 msgstr ""
 
-#. module: auto_backup
-#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_search
-msgid "Search options"
-msgstr ""
-
 #. module: auto_backup
 #: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
 msgid "Search the action named 'Backup scheduler'."
@@ -301,11 +308,6 @@ msgstr ""
 msgid "Warning:"
 msgstr ""
 
-#. module: auto_backup
-#: model:ir.model,name:auto_backup.model_db_backup
-msgid "db.backup"
-msgstr ""
-
 #. module: auto_backup
 #: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
 msgid "john"
diff --git a/auto_backup/i18n/cs_CZ.po b/auto_backup/i18n/cs_CZ.po
new file mode 100644
index 00000000000..d88e88b7d13
--- /dev/null
+++ b/auto_backup/i18n/cs_CZ.po
@@ -0,0 +1,319 @@
+# Translation of Odoo Server.
+# This file contains the translation of the following modules:
+# * auto_backup
+# 
+# Translators:
+# Luk???? Spurn?? <lukasspurny8@gmail.com>, 2018
+msgid ""
+msgstr ""
+"Project-Id-Version: Odoo Server 11.0\n"
+"Report-Msgid-Bugs-To: \n"
+"POT-Creation-Date: 2018-03-03 10:08+0000\n"
+"PO-Revision-Date: 2018-03-03 10:08+0000\n"
+"Last-Translator: Luk???? Spurn?? <lukasspurny8@gmail.com>, 2018\n"
+"Language-Team: Czech (Czech Republic) (https://www.transifex.com/oca/teams/23907/cs_CZ/)\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: \n"
+"Language: cs_CZ\n"
+"Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;\n"
+
+#. module: auto_backup
+#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+msgid "/home/odoo/.ssh/id_rsa"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,help:auto_backup.field_db_backup_folder
+msgid "Absolute path for storing the backups"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.actions.act_window,name:auto_backup.action_backup_conf_form
+#: model:ir.ui.menu,name:auto_backup.backup_conf_menu
+msgid "Automated Backups"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+msgid "Automatic backups of the database can be scheduled as follows:"
+msgstr ""
+
+#. module: auto_backup
+#: model:mail.message.subtype,name:auto_backup.mail_message_subtype_failure
+msgid "Backup Failed"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.actions.server,name:auto_backup.ir_cron_backup_scheduler_0_ir_actions_server
+#: model:ir.cron,cron_name:auto_backup.ir_cron_backup_scheduler_0
+#: model:ir.cron,name:auto_backup.ir_cron_backup_scheduler_0
+msgid "Backup Scheduler"
+msgstr ""
+
+#. module: auto_backup
+#: model:mail.message.subtype,name:auto_backup.mail_message_subtype_success
+msgid "Backup Successful"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,help:auto_backup.field_db_backup_days_to_keep
+msgid ""
+"Backups older than this will be deleted automatically. Set 0 to disable "
+"autodeletion."
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+msgid "Basic backup configuration"
+msgstr ""
+
+#. module: auto_backup
+#: sql_constraint:db.backup:0
+msgid "Cannot duplicate a configuration."
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,help:auto_backup.field_db_backup_method
+msgid "Choose the storage method for this backup."
+msgstr ""
+
+#. module: auto_backup
+#: code:addons/auto_backup/models/db_backup.py:249
+#, python-format
+msgid "Cleanup of old database backups failed."
+msgstr ""
+
+#. module: auto_backup
+#: code:addons/auto_backup/models/db_backup.py:128
+#, python-format
+msgid "Connection Test Failed!"
+msgstr ""
+
+#. module: auto_backup
+#: code:addons/auto_backup/models/db_backup.py:123
+#, python-format
+msgid "Connection Test Succeeded!"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup_create_uid
+msgid "Created by"
+msgstr "Vytvo??il"
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup_create_date
+msgid "Created on"
+msgstr "Vytvo??eno"
+
+#. module: auto_backup
+#: model:ir.model,name:auto_backup.model_db_backup
+msgid "Database Backup"
+msgstr ""
+
+#. module: auto_backup
+#: code:addons/auto_backup/models/db_backup.py:203
+#: model:mail.message.subtype,description:auto_backup.mail_message_subtype_failure
+#, python-format
+msgid "Database backup failed."
+msgstr ""
+
+#. module: auto_backup
+#: code:addons/auto_backup/models/db_backup.py:211
+#: model:mail.message.subtype,description:auto_backup.mail_message_subtype_success
+#, python-format
+msgid "Database backup succeeded."
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup_days_to_keep
+msgid "Days To Keep"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup_display_name
+msgid "Display Name"
+msgstr "Zobrazit n??zev"
+
+#. module: auto_backup
+#: code:addons/auto_backup/models/db_backup.py:114
+#, python-format
+msgid ""
+"Do not save backups on your filestore, or you will backup your backups too!"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+msgid "Execute backup"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.actions.server,name:auto_backup.action_server_backup
+msgid "Execute backup(s)"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup_folder
+msgid "Folder"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+msgid "Go to Settings / Technical / Automation / Scheduled Actions."
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+msgid "Help"
+msgstr ""
+
+#. module: auto_backup
+#: sql_constraint:db.backup:0
+msgid "I cannot remove backups from the future. Ask Doc for that."
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup_id
+msgid "ID"
+msgstr "ID"
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup___last_update
+msgid "Last Modified on"
+msgstr "Posledn?? zm??na dne"
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup_write_uid
+msgid "Last Updated by"
+msgstr "Naposledy aktualizov??no"
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup_write_date
+msgid "Last Updated on"
+msgstr "Posledn?? aktualizace dne"
+
+#. module: auto_backup
+#: selection:db.backup,method:0
+msgid "Local disk"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup_method
+msgid "Method"
+msgstr "Metoda"
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup_name
+msgid "Name"
+msgstr "N??zev"
+
+#. module: auto_backup
+#: model:ir.model.fields,help:auto_backup.field_db_backup_sftp_private_key
+msgid ""
+"Path to the private key file. Only the Odoo user should have read "
+"permissions for that file."
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup_sftp_private_key
+msgid "Private key location"
+msgstr ""
+
+#. module: auto_backup
+#: selection:db.backup,method:0
+msgid "Remote SFTP server"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup_sftp_password
+msgid "SFTP Password"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup_sftp_port
+msgid "SFTP Port"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup_sftp_host
+msgid "SFTP Server"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+msgid "SFTP Settings"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+msgid "Search the action named 'Backup scheduler'."
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+msgid ""
+"Set the scheduler to active and fill in how often you want backups "
+"generated."
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,help:auto_backup.field_db_backup_name
+msgid "Summary of this backup process"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+msgid "Test SFTP Connection"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,help:auto_backup.field_db_backup_sftp_host
+msgid ""
+"The host name or IP address from your remote server. For example 192.168.0.1"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,help:auto_backup.field_db_backup_sftp_password
+msgid ""
+"The password for the SFTP connection. If you specify a private key file, "
+"then this is the password to decrypt it."
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,help:auto_backup.field_db_backup_sftp_port
+msgid "The port on the FTP server that accepts SSH/SFTP calls."
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,help:auto_backup.field_db_backup_sftp_user
+msgid ""
+"The username where the SFTP connection should be made with. This is the user"
+" on the external server."
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+msgid ""
+"Use SFTP with caution! This writes files to external servers under the path "
+"you specify."
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup_sftp_user
+msgid "Username in the SFTP Server"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+msgid "Warning:"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+msgid "john"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+msgid "sftp.example.com"
+msgstr ""
diff --git a/auto_backup/i18n/de.po b/auto_backup/i18n/de.po
index b5461098768..1c8ecf1b48f 100644
--- a/auto_backup/i18n/de.po
+++ b/auto_backup/i18n/de.po
@@ -3,15 +3,14 @@
 # * auto_backup
 # 
 # Translators:
-# OCA Transbot <transbot@odoo-community.org>, 2016
-# Niki Waibel <niki.waibel@gmail.com>, 2017
+# OCA Transbot <transbot@odoo-community.org>, 2018
 msgid ""
 msgstr ""
-"Project-Id-Version: Odoo Server 10.0\n"
+"Project-Id-Version: Odoo Server 11.0\n"
 "Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2017-02-08 03:37+0000\n"
-"PO-Revision-Date: 2017-02-08 03:37+0000\n"
-"Last-Translator: Niki Waibel <niki.waibel@gmail.com>, 2017\n"
+"POT-Creation-Date: 2018-03-03 10:08+0000\n"
+"PO-Revision-Date: 2018-03-03 10:08+0000\n"
+"Last-Translator: OCA Transbot <transbot@odoo-community.org>, 2018\n"
 "Language-Team: German (https://www.transifex.com/oca/teams/23907/de/)\n"
 "MIME-Version: 1.0\n"
 "Content-Type: text/plain; charset=UTF-8\n"
@@ -46,16 +45,18 @@ msgstr ""
 msgid "Backup Failed"
 msgstr "Backup fehlgeschlagen"
 
+#. module: auto_backup
+#: model:ir.actions.server,name:auto_backup.ir_cron_backup_scheduler_0_ir_actions_server
+#: model:ir.cron,cron_name:auto_backup.ir_cron_backup_scheduler_0
+#: model:ir.cron,name:auto_backup.ir_cron_backup_scheduler_0
+msgid "Backup Scheduler"
+msgstr ""
+
 #. module: auto_backup
 #: model:mail.message.subtype,name:auto_backup.mail_message_subtype_success
 msgid "Backup Successful"
 msgstr "Backup erfolgreich"
 
-#. module: auto_backup
-#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_tree
-msgid "Backups"
-msgstr "Sicherungen"
-
 #. module: auto_backup
 #: model:ir.model.fields,help:auto_backup.field_db_backup_days_to_keep
 msgid ""
@@ -79,19 +80,19 @@ msgid "Choose the storage method for this backup."
 msgstr ""
 
 #. module: auto_backup
-#: code:addons/auto_backup/models/db_backup.py:251
+#: code:addons/auto_backup/models/db_backup.py:249
 #, python-format
 msgid "Cleanup of old database backups failed."
 msgstr ""
 
 #. module: auto_backup
-#: code:addons/auto_backup/models/db_backup.py:131
+#: code:addons/auto_backup/models/db_backup.py:128
 #, python-format
 msgid "Connection Test Failed!"
 msgstr ""
 
 #. module: auto_backup
-#: code:addons/auto_backup/models/db_backup.py:128
+#: code:addons/auto_backup/models/db_backup.py:123
 #, python-format
 msgid "Connection Test Succeeded!"
 msgstr ""
@@ -107,14 +108,19 @@ msgid "Created on"
 msgstr "Erstellt am:"
 
 #. module: auto_backup
-#: code:addons/auto_backup/models/db_backup.py:206
+#: model:ir.model,name:auto_backup.model_db_backup
+msgid "Database Backup"
+msgstr ""
+
+#. module: auto_backup
+#: code:addons/auto_backup/models/db_backup.py:203
 #: model:mail.message.subtype,description:auto_backup.mail_message_subtype_failure
 #, python-format
 msgid "Database backup failed."
 msgstr ""
 
 #. module: auto_backup
-#: code:addons/auto_backup/models/db_backup.py:214
+#: code:addons/auto_backup/models/db_backup.py:211
 #: model:mail.message.subtype,description:auto_backup.mail_message_subtype_success
 #, python-format
 msgid "Database backup succeeded."
@@ -122,7 +128,7 @@ msgstr ""
 
 #. module: auto_backup
 #: model:ir.model.fields,field_description:auto_backup.field_db_backup_days_to_keep
-msgid "Days to keep"
+msgid "Days To Keep"
 msgstr ""
 
 #. module: auto_backup
@@ -131,12 +137,17 @@ msgid "Display Name"
 msgstr "Anzeigename"
 
 #. module: auto_backup
-#: code:addons/auto_backup/models/db_backup.py:119
+#: code:addons/auto_backup/models/db_backup.py:114
 #, python-format
 msgid ""
 "Do not save backups on your filestore, or you will backup your backups too!"
 msgstr ""
 
+#. module: auto_backup
+#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+msgid "Execute backup"
+msgstr ""
+
 #. module: auto_backup
 #: model:ir.actions.server,name:auto_backup.action_server_backup
 msgid "Execute backup(s)"
@@ -235,11 +246,6 @@ msgstr "SFTP-Server"
 msgid "SFTP Settings"
 msgstr "SFTP Einstellungen"
 
-#. module: auto_backup
-#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_search
-msgid "Search options"
-msgstr "Suchkriterien"
-
 #. module: auto_backup
 #: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
 msgid "Search the action named 'Backup scheduler'."
@@ -310,11 +316,6 @@ msgstr ""
 msgid "Warning:"
 msgstr "Warnung:"
 
-#. module: auto_backup
-#: model:ir.model,name:auto_backup.model_db_backup
-msgid "db.backup"
-msgstr "db.backup"
-
 #. module: auto_backup
 #: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
 msgid "john"
diff --git a/auto_backup/i18n/es.po b/auto_backup/i18n/es.po
index 691cc62f3f4..f285a32fb50 100644
--- a/auto_backup/i18n/es.po
+++ b/auto_backup/i18n/es.po
@@ -3,14 +3,14 @@
 # * auto_backup
 # 
 # Translators:
-# OCA Transbot <transbot@odoo-community.org>, 2016
+# OCA Transbot <transbot@odoo-community.org>, 2018
 msgid ""
 msgstr ""
-"Project-Id-Version: Odoo Server 10.0\n"
+"Project-Id-Version: Odoo Server 11.0\n"
 "Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2017-06-01 14:58+0000\n"
-"PO-Revision-Date: 2017-06-01 14:58+0000\n"
-"Last-Translator: OCA Transbot <transbot@odoo-community.org>, 2016\n"
+"POT-Creation-Date: 2018-03-03 10:08+0000\n"
+"PO-Revision-Date: 2018-03-03 10:08+0000\n"
+"Last-Translator: OCA Transbot <transbot@odoo-community.org>, 2018\n"
 "Language-Team: Spanish (https://www.transifex.com/oca/teams/23907/es/)\n"
 "MIME-Version: 1.0\n"
 "Content-Type: text/plain; charset=UTF-8\n"
@@ -46,16 +46,18 @@ msgstr ""
 msgid "Backup Failed"
 msgstr "Error de copia de seguridad"
 
+#. module: auto_backup
+#: model:ir.actions.server,name:auto_backup.ir_cron_backup_scheduler_0_ir_actions_server
+#: model:ir.cron,cron_name:auto_backup.ir_cron_backup_scheduler_0
+#: model:ir.cron,name:auto_backup.ir_cron_backup_scheduler_0
+msgid "Backup Scheduler"
+msgstr ""
+
 #. module: auto_backup
 #: model:mail.message.subtype,name:auto_backup.mail_message_subtype_success
 msgid "Backup Successful"
 msgstr "Copia de seguridad con ??xito"
 
-#. module: auto_backup
-#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_tree
-msgid "Backups"
-msgstr "Copias de seguridad"
-
 #. module: auto_backup
 #: model:ir.model.fields,help:auto_backup.field_db_backup_days_to_keep
 msgid ""
@@ -81,7 +83,7 @@ msgid "Choose the storage method for this backup."
 msgstr "Elija el m??todo de almacenamiento para esta copia de seguridad."
 
 #. module: auto_backup
-#: code:addons/auto_backup/models/db_backup.py:253
+#: code:addons/auto_backup/models/db_backup.py:249
 #, python-format
 msgid "Cleanup of old database backups failed."
 msgstr ""
@@ -89,13 +91,13 @@ msgstr ""
 "fallado."
 
 #. module: auto_backup
-#: code:addons/auto_backup/models/db_backup.py:133
+#: code:addons/auto_backup/models/db_backup.py:128
 #, python-format
 msgid "Connection Test Failed!"
 msgstr "Error en la prueba de conexi??n!"
 
 #. module: auto_backup
-#: code:addons/auto_backup/models/db_backup.py:128
+#: code:addons/auto_backup/models/db_backup.py:123
 #, python-format
 msgid "Connection Test Succeeded!"
 msgstr "Prueba de conexi??n correcta!"
@@ -111,14 +113,19 @@ msgid "Created on"
 msgstr "Creado el"
 
 #. module: auto_backup
-#: code:addons/auto_backup/models/db_backup.py:208
+#: model:ir.model,name:auto_backup.model_db_backup
+msgid "Database Backup"
+msgstr ""
+
+#. module: auto_backup
+#: code:addons/auto_backup/models/db_backup.py:203
 #: model:mail.message.subtype,description:auto_backup.mail_message_subtype_failure
 #, python-format
 msgid "Database backup failed."
 msgstr "La copia de seguridad de la base de datos ha fallado."
 
 #. module: auto_backup
-#: code:addons/auto_backup/models/db_backup.py:216
+#: code:addons/auto_backup/models/db_backup.py:211
 #: model:mail.message.subtype,description:auto_backup.mail_message_subtype_success
 #, python-format
 msgid "Database backup succeeded."
@@ -126,8 +133,8 @@ msgstr "La copia de seguridad de la base de datos se realizo correctamente"
 
 #. module: auto_backup
 #: model:ir.model.fields,field_description:auto_backup.field_db_backup_days_to_keep
-msgid "Days to keep"
-msgstr "D??as para conservar"
+msgid "Days To Keep"
+msgstr ""
 
 #. module: auto_backup
 #: model:ir.model.fields,field_description:auto_backup.field_db_backup_display_name
@@ -135,7 +142,7 @@ msgid "Display Name"
 msgstr "Nombre a mostrar"
 
 #. module: auto_backup
-#: code:addons/auto_backup/models/db_backup.py:119
+#: code:addons/auto_backup/models/db_backup.py:114
 #, python-format
 msgid ""
 "Do not save backups on your filestore, or you will backup your backups too!"
@@ -143,6 +150,11 @@ msgstr ""
 "No guardar las copias de seguridad en su almac??n de archivos, o se copiaran "
 "las copias de seguridad tambi??n!"
 
+#. module: auto_backup
+#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+msgid "Execute backup"
+msgstr ""
+
 #. module: auto_backup
 #: model:ir.actions.server,name:auto_backup.action_server_backup
 msgid "Execute backup(s)"
@@ -244,11 +256,6 @@ msgstr "Servidor SFTP"
 msgid "SFTP Settings"
 msgstr "Configuraci??n de SFTP"
 
-#. module: auto_backup
-#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_search
-msgid "Search options"
-msgstr "Opciones de b??squeda"
-
 #. module: auto_backup
 #: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
 msgid "Search the action named 'Backup scheduler'."
@@ -323,11 +330,6 @@ msgstr "Nombre del usuario en el servidor SFTP"
 msgid "Warning:"
 msgstr "Advertencia:"
 
-#. module: auto_backup
-#: model:ir.model,name:auto_backup.model_db_backup
-msgid "db.backup"
-msgstr "db.copia de seguridad"
-
 #. module: auto_backup
 #: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
 msgid "john"
diff --git a/auto_backup/i18n/fr.po b/auto_backup/i18n/fr.po
index af3ebc5a88e..fbbc5828582 100644
--- a/auto_backup/i18n/fr.po
+++ b/auto_backup/i18n/fr.po
@@ -3,14 +3,14 @@
 # * auto_backup
 # 
 # Translators:
-# OCA Transbot <transbot@odoo-community.org>, 2016
+# OCA Transbot <transbot@odoo-community.org>, 2018
 msgid ""
 msgstr ""
-"Project-Id-Version: Odoo Server 10.0\n"
+"Project-Id-Version: Odoo Server 11.0\n"
 "Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2017-06-01 14:58+0000\n"
-"PO-Revision-Date: 2017-06-01 14:58+0000\n"
-"Last-Translator: OCA Transbot <transbot@odoo-community.org>, 2016\n"
+"POT-Creation-Date: 2018-03-03 10:08+0000\n"
+"PO-Revision-Date: 2018-03-03 10:08+0000\n"
+"Last-Translator: OCA Transbot <transbot@odoo-community.org>, 2018\n"
 "Language-Team: French (https://www.transifex.com/oca/teams/23907/fr/)\n"
 "MIME-Version: 1.0\n"
 "Content-Type: text/plain; charset=UTF-8\n"
@@ -46,16 +46,18 @@ msgstr ""
 msgid "Backup Failed"
 msgstr "??chec de la saugarde"
 
+#. module: auto_backup
+#: model:ir.actions.server,name:auto_backup.ir_cron_backup_scheduler_0_ir_actions_server
+#: model:ir.cron,cron_name:auto_backup.ir_cron_backup_scheduler_0
+#: model:ir.cron,name:auto_backup.ir_cron_backup_scheduler_0
+msgid "Backup Scheduler"
+msgstr ""
+
 #. module: auto_backup
 #: model:mail.message.subtype,name:auto_backup.mail_message_subtype_success
 msgid "Backup Successful"
 msgstr "Sauvegarde r??ussie"
 
-#. module: auto_backup
-#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_tree
-msgid "Backups"
-msgstr "Sauvegardes"
-
 #. module: auto_backup
 #: model:ir.model.fields,help:auto_backup.field_db_backup_days_to_keep
 msgid ""
@@ -81,19 +83,19 @@ msgid "Choose the storage method for this backup."
 msgstr "Choisissez la m??thode de stockage pour cette sauvegarde."
 
 #. module: auto_backup
-#: code:addons/auto_backup/models/db_backup.py:253
+#: code:addons/auto_backup/models/db_backup.py:249
 #, python-format
 msgid "Cleanup of old database backups failed."
 msgstr "??chec du nettoyage des anciennes sauvegardes de la base de donn??es."
 
 #. module: auto_backup
-#: code:addons/auto_backup/models/db_backup.py:133
+#: code:addons/auto_backup/models/db_backup.py:128
 #, python-format
 msgid "Connection Test Failed!"
 msgstr "??chec du test de connexion !"
 
 #. module: auto_backup
-#: code:addons/auto_backup/models/db_backup.py:128
+#: code:addons/auto_backup/models/db_backup.py:123
 #, python-format
 msgid "Connection Test Succeeded!"
 msgstr "Test de connexion r??ussi !"
@@ -109,14 +111,19 @@ msgid "Created on"
 msgstr "Cr???? le"
 
 #. module: auto_backup
-#: code:addons/auto_backup/models/db_backup.py:208
+#: model:ir.model,name:auto_backup.model_db_backup
+msgid "Database Backup"
+msgstr ""
+
+#. module: auto_backup
+#: code:addons/auto_backup/models/db_backup.py:203
 #: model:mail.message.subtype,description:auto_backup.mail_message_subtype_failure
 #, python-format
 msgid "Database backup failed."
 msgstr "??chec de la sauvegarde de la base de donn??es"
 
 #. module: auto_backup
-#: code:addons/auto_backup/models/db_backup.py:216
+#: code:addons/auto_backup/models/db_backup.py:211
 #: model:mail.message.subtype,description:auto_backup.mail_message_subtype_success
 #, python-format
 msgid "Database backup succeeded."
@@ -124,8 +131,8 @@ msgstr "Sauvegarde de la base de donn??es r??ussie."
 
 #. module: auto_backup
 #: model:ir.model.fields,field_description:auto_backup.field_db_backup_days_to_keep
-msgid "Days to keep"
-msgstr "Nombre de jours avant suppression"
+msgid "Days To Keep"
+msgstr ""
 
 #. module: auto_backup
 #: model:ir.model.fields,field_description:auto_backup.field_db_backup_display_name
@@ -133,7 +140,7 @@ msgid "Display Name"
 msgstr "Nom affich??"
 
 #. module: auto_backup
-#: code:addons/auto_backup/models/db_backup.py:119
+#: code:addons/auto_backup/models/db_backup.py:114
 #, python-format
 msgid ""
 "Do not save backups on your filestore, or you will backup your backups too!"
@@ -141,6 +148,11 @@ msgstr ""
 "Ne conservez pas vos sauvegardes dans le filestore, sinon vos sauvegardes "
 "seront elles-m??mes sauvegard??es ! "
 
+#. module: auto_backup
+#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+msgid "Execute backup"
+msgstr ""
+
 #. module: auto_backup
 #: model:ir.actions.server,name:auto_backup.action_server_backup
 msgid "Execute backup(s)"
@@ -241,11 +253,6 @@ msgstr ""
 msgid "SFTP Settings"
 msgstr ""
 
-#. module: auto_backup
-#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_search
-msgid "Search options"
-msgstr ""
-
 #. module: auto_backup
 #: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
 msgid "Search the action named 'Backup scheduler'."
@@ -310,11 +317,6 @@ msgstr ""
 msgid "Warning:"
 msgstr ""
 
-#. module: auto_backup
-#: model:ir.model,name:auto_backup.model_db_backup
-msgid "db.backup"
-msgstr ""
-
 #. module: auto_backup
 #: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
 msgid "john"
diff --git a/auto_backup/i18n/hr.po b/auto_backup/i18n/hr.po
index e86d6ec6f59..96cf3e7afed 100644
--- a/auto_backup/i18n/hr.po
+++ b/auto_backup/i18n/hr.po
@@ -3,15 +3,14 @@
 # * auto_backup
 # 
 # Translators:
-# OCA Transbot <transbot@odoo-community.org>, 2016
-# Bole <bole@dajmi5.com>, 2017
+# OCA Transbot <transbot@odoo-community.org>, 2018
 msgid ""
 msgstr ""
-"Project-Id-Version: Odoo Server 10.0\n"
+"Project-Id-Version: Odoo Server 11.0\n"
 "Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2017-06-01 14:58+0000\n"
-"PO-Revision-Date: 2017-06-01 14:58+0000\n"
-"Last-Translator: Bole <bole@dajmi5.com>, 2017\n"
+"POT-Creation-Date: 2018-03-03 10:08+0000\n"
+"PO-Revision-Date: 2018-03-03 10:08+0000\n"
+"Last-Translator: OCA Transbot <transbot@odoo-community.org>, 2018\n"
 "Language-Team: Croatian (https://www.transifex.com/oca/teams/23907/hr/)\n"
 "MIME-Version: 1.0\n"
 "Content-Type: text/plain; charset=UTF-8\n"
@@ -45,16 +44,18 @@ msgstr "Automatski backup baze mo??e biti zadan na sljede??i na??in:"
 msgid "Backup Failed"
 msgstr "Backup nije uspio"
 
+#. module: auto_backup
+#: model:ir.actions.server,name:auto_backup.ir_cron_backup_scheduler_0_ir_actions_server
+#: model:ir.cron,cron_name:auto_backup.ir_cron_backup_scheduler_0
+#: model:ir.cron,name:auto_backup.ir_cron_backup_scheduler_0
+msgid "Backup Scheduler"
+msgstr ""
+
 #. module: auto_backup
 #: model:mail.message.subtype,name:auto_backup.mail_message_subtype_success
 msgid "Backup Successful"
 msgstr "Backup uspio"
 
-#. module: auto_backup
-#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_tree
-msgid "Backups"
-msgstr "Backupi"
-
 #. module: auto_backup
 #: model:ir.model.fields,help:auto_backup.field_db_backup_days_to_keep
 msgid ""
@@ -78,19 +79,19 @@ msgid "Choose the storage method for this backup."
 msgstr "Odaberite metodu pohrane za ovaj backup."
 
 #. module: auto_backup
-#: code:addons/auto_backup/models/db_backup.py:253
+#: code:addons/auto_backup/models/db_backup.py:249
 #, python-format
 msgid "Cleanup of old database backups failed."
 msgstr "??i????enje starih backup datoteka nije uspjelo."
 
 #. module: auto_backup
-#: code:addons/auto_backup/models/db_backup.py:133
+#: code:addons/auto_backup/models/db_backup.py:128
 #, python-format
 msgid "Connection Test Failed!"
 msgstr "Provjera povezivanja nije uspjela!"
 
 #. module: auto_backup
-#: code:addons/auto_backup/models/db_backup.py:128
+#: code:addons/auto_backup/models/db_backup.py:123
 #, python-format
 msgid "Connection Test Succeeded!"
 msgstr "Provjera povezivanja uspje??na!"
@@ -106,14 +107,19 @@ msgid "Created on"
 msgstr "Kreirano "
 
 #. module: auto_backup
-#: code:addons/auto_backup/models/db_backup.py:208
+#: model:ir.model,name:auto_backup.model_db_backup
+msgid "Database Backup"
+msgstr ""
+
+#. module: auto_backup
+#: code:addons/auto_backup/models/db_backup.py:203
 #: model:mail.message.subtype,description:auto_backup.mail_message_subtype_failure
 #, python-format
 msgid "Database backup failed."
 msgstr "Backup baze nije uspio."
 
 #. module: auto_backup
-#: code:addons/auto_backup/models/db_backup.py:216
+#: code:addons/auto_backup/models/db_backup.py:211
 #: model:mail.message.subtype,description:auto_backup.mail_message_subtype_success
 #, python-format
 msgid "Database backup succeeded."
@@ -121,8 +127,8 @@ msgstr "Backup baze uspje??an."
 
 #. module: auto_backup
 #: model:ir.model.fields,field_description:auto_backup.field_db_backup_days_to_keep
-msgid "Days to keep"
-msgstr "??uvati dana"
+msgid "Days To Keep"
+msgstr ""
 
 #. module: auto_backup
 #: model:ir.model.fields,field_description:auto_backup.field_db_backup_display_name
@@ -130,7 +136,7 @@ msgid "Display Name"
 msgstr "Prika??i naziv"
 
 #. module: auto_backup
-#: code:addons/auto_backup/models/db_backup.py:119
+#: code:addons/auto_backup/models/db_backup.py:114
 #, python-format
 msgid ""
 "Do not save backups on your filestore, or you will backup your backups too!"
@@ -138,6 +144,11 @@ msgstr ""
 "Nemojte ??uvati backup na va??em poslu??itelju me??u ostalim podacima, jer ??e se"
 " i on backupirati!"
 
+#. module: auto_backup
+#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+msgid "Execute backup"
+msgstr ""
+
 #. module: auto_backup
 #: model:ir.actions.server,name:auto_backup.action_server_backup
 msgid "Execute backup(s)"
@@ -235,11 +246,6 @@ msgstr "SFTP Server"
 msgid "SFTP Settings"
 msgstr "SFTP Postavke"
 
-#. module: auto_backup
-#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_search
-msgid "Search options"
-msgstr "Opcije pretrage"
-
 #. module: auto_backup
 #: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
 msgid "Search the action named 'Backup scheduler'."
@@ -304,11 +310,6 @@ msgstr ""
 msgid "Warning:"
 msgstr ""
 
-#. module: auto_backup
-#: model:ir.model,name:auto_backup.model_db_backup
-msgid "db.backup"
-msgstr ""
-
 #. module: auto_backup
 #: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
 msgid "john"
diff --git a/auto_backup/i18n/it.po b/auto_backup/i18n/it.po
index 7118a11976a..9807a63f033 100644
--- a/auto_backup/i18n/it.po
+++ b/auto_backup/i18n/it.po
@@ -3,14 +3,14 @@
 # * auto_backup
 # 
 # Translators:
-# OCA Transbot <transbot@odoo-community.org>, 2016
+# OCA Transbot <transbot@odoo-community.org>, 2018
 msgid ""
 msgstr ""
-"Project-Id-Version: Odoo Server 10.0\n"
+"Project-Id-Version: Odoo Server 11.0\n"
 "Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2017-06-01 14:58+0000\n"
-"PO-Revision-Date: 2017-06-01 14:58+0000\n"
-"Last-Translator: OCA Transbot <transbot@odoo-community.org>, 2016\n"
+"POT-Creation-Date: 2018-03-03 10:08+0000\n"
+"PO-Revision-Date: 2018-03-03 10:08+0000\n"
+"Last-Translator: OCA Transbot <transbot@odoo-community.org>, 2018\n"
 "Language-Team: Italian (https://www.transifex.com/oca/teams/23907/it/)\n"
 "MIME-Version: 1.0\n"
 "Content-Type: text/plain; charset=UTF-8\n"
@@ -44,16 +44,18 @@ msgstr "Il backup automatico del DB ?? pianificato come segue:"
 msgid "Backup Failed"
 msgstr "Backup Fallito"
 
+#. module: auto_backup
+#: model:ir.actions.server,name:auto_backup.ir_cron_backup_scheduler_0_ir_actions_server
+#: model:ir.cron,cron_name:auto_backup.ir_cron_backup_scheduler_0
+#: model:ir.cron,name:auto_backup.ir_cron_backup_scheduler_0
+msgid "Backup Scheduler"
+msgstr ""
+
 #. module: auto_backup
 #: model:mail.message.subtype,name:auto_backup.mail_message_subtype_success
 msgid "Backup Successful"
 msgstr "Backup Riuscito"
 
-#. module: auto_backup
-#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_tree
-msgid "Backups"
-msgstr "Backups"
-
 #. module: auto_backup
 #: model:ir.model.fields,help:auto_backup.field_db_backup_days_to_keep
 msgid ""
@@ -79,19 +81,19 @@ msgid "Choose the storage method for this backup."
 msgstr "Scegliere il tipo di archiviazione per questo metodo di backup. "
 
 #. module: auto_backup
-#: code:addons/auto_backup/models/db_backup.py:253
+#: code:addons/auto_backup/models/db_backup.py:249
 #, python-format
 msgid "Cleanup of old database backups failed."
 msgstr "Eliminazione dei vecchi backup di database non riuscita."
 
 #. module: auto_backup
-#: code:addons/auto_backup/models/db_backup.py:133
+#: code:addons/auto_backup/models/db_backup.py:128
 #, python-format
 msgid "Connection Test Failed!"
 msgstr "Test connessione Fallito!"
 
 #. module: auto_backup
-#: code:addons/auto_backup/models/db_backup.py:128
+#: code:addons/auto_backup/models/db_backup.py:123
 #, python-format
 msgid "Connection Test Succeeded!"
 msgstr "Test connessione avvenuto con successo!"
@@ -107,14 +109,19 @@ msgid "Created on"
 msgstr "Creato il"
 
 #. module: auto_backup
-#: code:addons/auto_backup/models/db_backup.py:208
+#: model:ir.model,name:auto_backup.model_db_backup
+msgid "Database Backup"
+msgstr ""
+
+#. module: auto_backup
+#: code:addons/auto_backup/models/db_backup.py:203
 #: model:mail.message.subtype,description:auto_backup.mail_message_subtype_failure
 #, python-format
 msgid "Database backup failed."
 msgstr "Backup del Database non riuscito."
 
 #. module: auto_backup
-#: code:addons/auto_backup/models/db_backup.py:216
+#: code:addons/auto_backup/models/db_backup.py:211
 #: model:mail.message.subtype,description:auto_backup.mail_message_subtype_success
 #, python-format
 msgid "Database backup succeeded."
@@ -122,8 +129,8 @@ msgstr "Backup del Database riuscito."
 
 #. module: auto_backup
 #: model:ir.model.fields,field_description:auto_backup.field_db_backup_days_to_keep
-msgid "Days to keep"
-msgstr "Giorni da conservare"
+msgid "Days To Keep"
+msgstr ""
 
 #. module: auto_backup
 #: model:ir.model.fields,field_description:auto_backup.field_db_backup_display_name
@@ -131,7 +138,7 @@ msgid "Display Name"
 msgstr "Nome da visualizzare"
 
 #. module: auto_backup
-#: code:addons/auto_backup/models/db_backup.py:119
+#: code:addons/auto_backup/models/db_backup.py:114
 #, python-format
 msgid ""
 "Do not save backups on your filestore, or you will backup your backups too!"
@@ -139,6 +146,11 @@ msgstr ""
 "Non salvare i backup nel proprio filestore altrimenti verr?? eseguita una "
 "copia di backup anche dei propri backup!"
 
+#. module: auto_backup
+#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+msgid "Execute backup"
+msgstr ""
+
 #. module: auto_backup
 #: model:ir.actions.server,name:auto_backup.action_server_backup
 msgid "Execute backup(s)"
@@ -241,11 +253,6 @@ msgstr "Server SFTP"
 msgid "SFTP Settings"
 msgstr "Impostazioni SFTP"
 
-#. module: auto_backup
-#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_search
-msgid "Search options"
-msgstr "Opzioni di ricerca"
-
 #. module: auto_backup
 #: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
 msgid "Search the action named 'Backup scheduler'."
@@ -319,11 +326,6 @@ msgstr "Nome utente presso il Server SFTP"
 msgid "Warning:"
 msgstr "Avviso:"
 
-#. module: auto_backup
-#: model:ir.model,name:auto_backup.model_db_backup
-msgid "db.backup"
-msgstr "db.backup"
-
 #. module: auto_backup
 #: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
 msgid "john"
diff --git a/auto_backup/i18n/nl_NL.po b/auto_backup/i18n/nl_NL.po
new file mode 100644
index 00000000000..8a994738f55
--- /dev/null
+++ b/auto_backup/i18n/nl_NL.po
@@ -0,0 +1,319 @@
+# Translation of Odoo Server.
+# This file contains the translation of the following modules:
+# * auto_backup
+# 
+# Translators:
+# OCA Transbot <transbot@odoo-community.org>, 2018
+msgid ""
+msgstr ""
+"Project-Id-Version: Odoo Server 11.0\n"
+"Report-Msgid-Bugs-To: \n"
+"POT-Creation-Date: 2018-03-03 10:08+0000\n"
+"PO-Revision-Date: 2018-03-03 10:08+0000\n"
+"Last-Translator: OCA Transbot <transbot@odoo-community.org>, 2018\n"
+"Language-Team: Dutch (Netherlands) (https://www.transifex.com/oca/teams/23907/nl_NL/)\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: \n"
+"Language: nl_NL\n"
+"Plural-Forms: nplurals=2; plural=(n != 1);\n"
+
+#. module: auto_backup
+#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+msgid "/home/odoo/.ssh/id_rsa"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,help:auto_backup.field_db_backup_folder
+msgid "Absolute path for storing the backups"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.actions.act_window,name:auto_backup.action_backup_conf_form
+#: model:ir.ui.menu,name:auto_backup.backup_conf_menu
+msgid "Automated Backups"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+msgid "Automatic backups of the database can be scheduled as follows:"
+msgstr ""
+
+#. module: auto_backup
+#: model:mail.message.subtype,name:auto_backup.mail_message_subtype_failure
+msgid "Backup Failed"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.actions.server,name:auto_backup.ir_cron_backup_scheduler_0_ir_actions_server
+#: model:ir.cron,cron_name:auto_backup.ir_cron_backup_scheduler_0
+#: model:ir.cron,name:auto_backup.ir_cron_backup_scheduler_0
+msgid "Backup Scheduler"
+msgstr ""
+
+#. module: auto_backup
+#: model:mail.message.subtype,name:auto_backup.mail_message_subtype_success
+msgid "Backup Successful"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,help:auto_backup.field_db_backup_days_to_keep
+msgid ""
+"Backups older than this will be deleted automatically. Set 0 to disable "
+"autodeletion."
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+msgid "Basic backup configuration"
+msgstr ""
+
+#. module: auto_backup
+#: sql_constraint:db.backup:0
+msgid "Cannot duplicate a configuration."
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,help:auto_backup.field_db_backup_method
+msgid "Choose the storage method for this backup."
+msgstr ""
+
+#. module: auto_backup
+#: code:addons/auto_backup/models/db_backup.py:249
+#, python-format
+msgid "Cleanup of old database backups failed."
+msgstr ""
+
+#. module: auto_backup
+#: code:addons/auto_backup/models/db_backup.py:128
+#, python-format
+msgid "Connection Test Failed!"
+msgstr ""
+
+#. module: auto_backup
+#: code:addons/auto_backup/models/db_backup.py:123
+#, python-format
+msgid "Connection Test Succeeded!"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup_create_uid
+msgid "Created by"
+msgstr "Aangemaakt door"
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup_create_date
+msgid "Created on"
+msgstr "Aangemaakt op"
+
+#. module: auto_backup
+#: model:ir.model,name:auto_backup.model_db_backup
+msgid "Database Backup"
+msgstr ""
+
+#. module: auto_backup
+#: code:addons/auto_backup/models/db_backup.py:203
+#: model:mail.message.subtype,description:auto_backup.mail_message_subtype_failure
+#, python-format
+msgid "Database backup failed."
+msgstr ""
+
+#. module: auto_backup
+#: code:addons/auto_backup/models/db_backup.py:211
+#: model:mail.message.subtype,description:auto_backup.mail_message_subtype_success
+#, python-format
+msgid "Database backup succeeded."
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup_days_to_keep
+msgid "Days To Keep"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup_display_name
+msgid "Display Name"
+msgstr "Weergavenaam"
+
+#. module: auto_backup
+#: code:addons/auto_backup/models/db_backup.py:114
+#, python-format
+msgid ""
+"Do not save backups on your filestore, or you will backup your backups too!"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+msgid "Execute backup"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.actions.server,name:auto_backup.action_server_backup
+msgid "Execute backup(s)"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup_folder
+msgid "Folder"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+msgid "Go to Settings / Technical / Automation / Scheduled Actions."
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+msgid "Help"
+msgstr ""
+
+#. module: auto_backup
+#: sql_constraint:db.backup:0
+msgid "I cannot remove backups from the future. Ask Doc for that."
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup_id
+msgid "ID"
+msgstr "ID"
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup___last_update
+msgid "Last Modified on"
+msgstr "Laatst gewijzigd op"
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup_write_uid
+msgid "Last Updated by"
+msgstr "Laatst bijgewerkt door"
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup_write_date
+msgid "Last Updated on"
+msgstr "Laatst bijgewerkt op"
+
+#. module: auto_backup
+#: selection:db.backup,method:0
+msgid "Local disk"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup_method
+msgid "Method"
+msgstr "Methode"
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup_name
+msgid "Name"
+msgstr "Naam"
+
+#. module: auto_backup
+#: model:ir.model.fields,help:auto_backup.field_db_backup_sftp_private_key
+msgid ""
+"Path to the private key file. Only the Odoo user should have read "
+"permissions for that file."
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup_sftp_private_key
+msgid "Private key location"
+msgstr ""
+
+#. module: auto_backup
+#: selection:db.backup,method:0
+msgid "Remote SFTP server"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup_sftp_password
+msgid "SFTP Password"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup_sftp_port
+msgid "SFTP Port"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup_sftp_host
+msgid "SFTP Server"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+msgid "SFTP Settings"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+msgid "Search the action named 'Backup scheduler'."
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+msgid ""
+"Set the scheduler to active and fill in how often you want backups "
+"generated."
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,help:auto_backup.field_db_backup_name
+msgid "Summary of this backup process"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+msgid "Test SFTP Connection"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,help:auto_backup.field_db_backup_sftp_host
+msgid ""
+"The host name or IP address from your remote server. For example 192.168.0.1"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,help:auto_backup.field_db_backup_sftp_password
+msgid ""
+"The password for the SFTP connection. If you specify a private key file, "
+"then this is the password to decrypt it."
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,help:auto_backup.field_db_backup_sftp_port
+msgid "The port on the FTP server that accepts SSH/SFTP calls."
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,help:auto_backup.field_db_backup_sftp_user
+msgid ""
+"The username where the SFTP connection should be made with. This is the user"
+" on the external server."
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+msgid ""
+"Use SFTP with caution! This writes files to external servers under the path "
+"you specify."
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup_sftp_user
+msgid "Username in the SFTP Server"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+msgid "Warning:"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+msgid "john"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+msgid "sftp.example.com"
+msgstr ""
diff --git a/auto_backup/i18n/pt.po b/auto_backup/i18n/pt.po
index 89e1a3a8cd9..e2dc68e74e1 100644
--- a/auto_backup/i18n/pt.po
+++ b/auto_backup/i18n/pt.po
@@ -3,14 +3,14 @@
 # * auto_backup
 # 
 # Translators:
-# OCA Transbot <transbot@odoo-community.org>, 2016
+# OCA Transbot <transbot@odoo-community.org>, 2018
 msgid ""
 msgstr ""
-"Project-Id-Version: Odoo Server 10.0\n"
+"Project-Id-Version: Odoo Server 11.0\n"
 "Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2017-02-18 02:29+0000\n"
-"PO-Revision-Date: 2017-02-18 02:29+0000\n"
-"Last-Translator: OCA Transbot <transbot@odoo-community.org>, 2016\n"
+"POT-Creation-Date: 2018-03-03 10:08+0000\n"
+"PO-Revision-Date: 2018-03-03 10:08+0000\n"
+"Last-Translator: OCA Transbot <transbot@odoo-community.org>, 2018\n"
 "Language-Team: Portuguese (https://www.transifex.com/oca/teams/23907/pt/)\n"
 "MIME-Version: 1.0\n"
 "Content-Type: text/plain; charset=UTF-8\n"
@@ -45,13 +45,15 @@ msgid "Backup Failed"
 msgstr ""
 
 #. module: auto_backup
-#: model:mail.message.subtype,name:auto_backup.mail_message_subtype_success
-msgid "Backup Successful"
+#: model:ir.actions.server,name:auto_backup.ir_cron_backup_scheduler_0_ir_actions_server
+#: model:ir.cron,cron_name:auto_backup.ir_cron_backup_scheduler_0
+#: model:ir.cron,name:auto_backup.ir_cron_backup_scheduler_0
+msgid "Backup Scheduler"
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_tree
-msgid "Backups"
+#: model:mail.message.subtype,name:auto_backup.mail_message_subtype_success
+msgid "Backup Successful"
 msgstr ""
 
 #. module: auto_backup
@@ -77,19 +79,19 @@ msgid "Choose the storage method for this backup."
 msgstr ""
 
 #. module: auto_backup
-#: code:addons/auto_backup/models/db_backup.py:251
+#: code:addons/auto_backup/models/db_backup.py:249
 #, python-format
 msgid "Cleanup of old database backups failed."
 msgstr ""
 
 #. module: auto_backup
-#: code:addons/auto_backup/models/db_backup.py:131
+#: code:addons/auto_backup/models/db_backup.py:128
 #, python-format
 msgid "Connection Test Failed!"
 msgstr ""
 
 #. module: auto_backup
-#: code:addons/auto_backup/models/db_backup.py:128
+#: code:addons/auto_backup/models/db_backup.py:123
 #, python-format
 msgid "Connection Test Succeeded!"
 msgstr ""
@@ -105,14 +107,19 @@ msgid "Created on"
 msgstr "Criado em"
 
 #. module: auto_backup
-#: code:addons/auto_backup/models/db_backup.py:206
+#: model:ir.model,name:auto_backup.model_db_backup
+msgid "Database Backup"
+msgstr ""
+
+#. module: auto_backup
+#: code:addons/auto_backup/models/db_backup.py:203
 #: model:mail.message.subtype,description:auto_backup.mail_message_subtype_failure
 #, python-format
 msgid "Database backup failed."
 msgstr ""
 
 #. module: auto_backup
-#: code:addons/auto_backup/models/db_backup.py:214
+#: code:addons/auto_backup/models/db_backup.py:211
 #: model:mail.message.subtype,description:auto_backup.mail_message_subtype_success
 #, python-format
 msgid "Database backup succeeded."
@@ -120,7 +127,7 @@ msgstr ""
 
 #. module: auto_backup
 #: model:ir.model.fields,field_description:auto_backup.field_db_backup_days_to_keep
-msgid "Days to keep"
+msgid "Days To Keep"
 msgstr ""
 
 #. module: auto_backup
@@ -129,12 +136,17 @@ msgid "Display Name"
 msgstr "Nome a Apresentar"
 
 #. module: auto_backup
-#: code:addons/auto_backup/models/db_backup.py:119
+#: code:addons/auto_backup/models/db_backup.py:114
 #, python-format
 msgid ""
 "Do not save backups on your filestore, or you will backup your backups too!"
 msgstr ""
 
+#. module: auto_backup
+#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+msgid "Execute backup"
+msgstr ""
+
 #. module: auto_backup
 #: model:ir.actions.server,name:auto_backup.action_server_backup
 msgid "Execute backup(s)"
@@ -188,7 +200,7 @@ msgstr ""
 #. module: auto_backup
 #: model:ir.model.fields,field_description:auto_backup.field_db_backup_method
 msgid "Method"
-msgstr ""
+msgstr "M??todo"
 
 #. module: auto_backup
 #: model:ir.model.fields,field_description:auto_backup.field_db_backup_name
@@ -232,11 +244,6 @@ msgstr ""
 msgid "SFTP Settings"
 msgstr ""
 
-#. module: auto_backup
-#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_search
-msgid "Search options"
-msgstr ""
-
 #. module: auto_backup
 #: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
 msgid "Search the action named 'Backup scheduler'."
@@ -301,11 +308,6 @@ msgstr ""
 msgid "Warning:"
 msgstr ""
 
-#. module: auto_backup
-#: model:ir.model,name:auto_backup.model_db_backup
-msgid "db.backup"
-msgstr ""
-
 #. module: auto_backup
 #: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
 msgid "john"
diff --git a/auto_backup/i18n/ro.po b/auto_backup/i18n/ro.po
index a34877b4449..5810c3d965f 100644
--- a/auto_backup/i18n/ro.po
+++ b/auto_backup/i18n/ro.po
@@ -3,14 +3,14 @@
 # * auto_backup
 # 
 # Translators:
-# OCA Transbot <transbot@odoo-community.org>, 2016
+# OCA Transbot <transbot@odoo-community.org>, 2018
 msgid ""
 msgstr ""
-"Project-Id-Version: Odoo Server 10.0\n"
+"Project-Id-Version: Odoo Server 11.0\n"
 "Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2017-02-18 02:29+0000\n"
-"PO-Revision-Date: 2017-02-18 02:29+0000\n"
-"Last-Translator: OCA Transbot <transbot@odoo-community.org>, 2016\n"
+"POT-Creation-Date: 2018-03-03 10:08+0000\n"
+"PO-Revision-Date: 2018-03-03 10:08+0000\n"
+"Last-Translator: OCA Transbot <transbot@odoo-community.org>, 2018\n"
 "Language-Team: Romanian (https://www.transifex.com/oca/teams/23907/ro/)\n"
 "MIME-Version: 1.0\n"
 "Content-Type: text/plain; charset=UTF-8\n"
@@ -45,13 +45,15 @@ msgid "Backup Failed"
 msgstr ""
 
 #. module: auto_backup
-#: model:mail.message.subtype,name:auto_backup.mail_message_subtype_success
-msgid "Backup Successful"
+#: model:ir.actions.server,name:auto_backup.ir_cron_backup_scheduler_0_ir_actions_server
+#: model:ir.cron,cron_name:auto_backup.ir_cron_backup_scheduler_0
+#: model:ir.cron,name:auto_backup.ir_cron_backup_scheduler_0
+msgid "Backup Scheduler"
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_tree
-msgid "Backups"
+#: model:mail.message.subtype,name:auto_backup.mail_message_subtype_success
+msgid "Backup Successful"
 msgstr ""
 
 #. module: auto_backup
@@ -77,19 +79,19 @@ msgid "Choose the storage method for this backup."
 msgstr ""
 
 #. module: auto_backup
-#: code:addons/auto_backup/models/db_backup.py:251
+#: code:addons/auto_backup/models/db_backup.py:249
 #, python-format
 msgid "Cleanup of old database backups failed."
 msgstr ""
 
 #. module: auto_backup
-#: code:addons/auto_backup/models/db_backup.py:131
+#: code:addons/auto_backup/models/db_backup.py:128
 #, python-format
 msgid "Connection Test Failed!"
 msgstr ""
 
 #. module: auto_backup
-#: code:addons/auto_backup/models/db_backup.py:128
+#: code:addons/auto_backup/models/db_backup.py:123
 #, python-format
 msgid "Connection Test Succeeded!"
 msgstr ""
@@ -105,14 +107,19 @@ msgid "Created on"
 msgstr "Creat la"
 
 #. module: auto_backup
-#: code:addons/auto_backup/models/db_backup.py:206
+#: model:ir.model,name:auto_backup.model_db_backup
+msgid "Database Backup"
+msgstr ""
+
+#. module: auto_backup
+#: code:addons/auto_backup/models/db_backup.py:203
 #: model:mail.message.subtype,description:auto_backup.mail_message_subtype_failure
 #, python-format
 msgid "Database backup failed."
 msgstr ""
 
 #. module: auto_backup
-#: code:addons/auto_backup/models/db_backup.py:214
+#: code:addons/auto_backup/models/db_backup.py:211
 #: model:mail.message.subtype,description:auto_backup.mail_message_subtype_success
 #, python-format
 msgid "Database backup succeeded."
@@ -120,7 +127,7 @@ msgstr ""
 
 #. module: auto_backup
 #: model:ir.model.fields,field_description:auto_backup.field_db_backup_days_to_keep
-msgid "Days to keep"
+msgid "Days To Keep"
 msgstr ""
 
 #. module: auto_backup
@@ -129,12 +136,17 @@ msgid "Display Name"
 msgstr "Nume Afi??at"
 
 #. module: auto_backup
-#: code:addons/auto_backup/models/db_backup.py:119
+#: code:addons/auto_backup/models/db_backup.py:114
 #, python-format
 msgid ""
 "Do not save backups on your filestore, or you will backup your backups too!"
 msgstr ""
 
+#. module: auto_backup
+#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+msgid "Execute backup"
+msgstr ""
+
 #. module: auto_backup
 #: model:ir.actions.server,name:auto_backup.action_server_backup
 msgid "Execute backup(s)"
@@ -188,7 +200,7 @@ msgstr ""
 #. module: auto_backup
 #: model:ir.model.fields,field_description:auto_backup.field_db_backup_method
 msgid "Method"
-msgstr ""
+msgstr "Metoda"
 
 #. module: auto_backup
 #: model:ir.model.fields,field_description:auto_backup.field_db_backup_name
@@ -232,11 +244,6 @@ msgstr ""
 msgid "SFTP Settings"
 msgstr ""
 
-#. module: auto_backup
-#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_search
-msgid "Search options"
-msgstr ""
-
 #. module: auto_backup
 #: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
 msgid "Search the action named 'Backup scheduler'."
@@ -301,11 +308,6 @@ msgstr ""
 msgid "Warning:"
 msgstr ""
 
-#. module: auto_backup
-#: model:ir.model,name:auto_backup.model_db_backup
-msgid "db.backup"
-msgstr ""
-
 #. module: auto_backup
 #: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
 msgid "john"
diff --git a/auto_backup/i18n/sl.po b/auto_backup/i18n/sl.po
index 6e65afa3e29..04d3d6ce23f 100644
--- a/auto_backup/i18n/sl.po
+++ b/auto_backup/i18n/sl.po
@@ -3,14 +3,14 @@
 # * auto_backup
 # 
 # Translators:
-# OCA Transbot <transbot@odoo-community.org>, 2016
+# OCA Transbot <transbot@odoo-community.org>, 2018
 msgid ""
 msgstr ""
-"Project-Id-Version: Odoo Server 10.0\n"
+"Project-Id-Version: Odoo Server 11.0\n"
 "Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2017-06-01 14:58+0000\n"
-"PO-Revision-Date: 2017-06-01 14:58+0000\n"
-"Last-Translator: OCA Transbot <transbot@odoo-community.org>, 2016\n"
+"POT-Creation-Date: 2018-03-03 10:08+0000\n"
+"PO-Revision-Date: 2018-03-03 10:08+0000\n"
+"Last-Translator: OCA Transbot <transbot@odoo-community.org>, 2018\n"
 "Language-Team: Slovenian (https://www.transifex.com/oca/teams/23907/sl/)\n"
 "MIME-Version: 1.0\n"
 "Content-Type: text/plain; charset=UTF-8\n"
@@ -45,14 +45,16 @@ msgid "Backup Failed"
 msgstr ""
 
 #. module: auto_backup
-#: model:mail.message.subtype,name:auto_backup.mail_message_subtype_success
-msgid "Backup Successful"
+#: model:ir.actions.server,name:auto_backup.ir_cron_backup_scheduler_0_ir_actions_server
+#: model:ir.cron,cron_name:auto_backup.ir_cron_backup_scheduler_0
+#: model:ir.cron,name:auto_backup.ir_cron_backup_scheduler_0
+msgid "Backup Scheduler"
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_tree
-msgid "Backups"
-msgstr "Varnostne kopije"
+#: model:mail.message.subtype,name:auto_backup.mail_message_subtype_success
+msgid "Backup Successful"
+msgstr ""
 
 #. module: auto_backup
 #: model:ir.model.fields,help:auto_backup.field_db_backup_days_to_keep
@@ -79,19 +81,19 @@ msgid "Choose the storage method for this backup."
 msgstr "Izberite metodo shranjevanja za to varnostno kopiranje."
 
 #. module: auto_backup
-#: code:addons/auto_backup/models/db_backup.py:253
+#: code:addons/auto_backup/models/db_backup.py:249
 #, python-format
 msgid "Cleanup of old database backups failed."
 msgstr "Brisanje starih varnostnih kopij podatkovnih baz neuspe??no."
 
 #. module: auto_backup
-#: code:addons/auto_backup/models/db_backup.py:133
+#: code:addons/auto_backup/models/db_backup.py:128
 #, python-format
 msgid "Connection Test Failed!"
 msgstr "Test povezave neuspe??en!"
 
 #. module: auto_backup
-#: code:addons/auto_backup/models/db_backup.py:128
+#: code:addons/auto_backup/models/db_backup.py:123
 #, python-format
 msgid "Connection Test Succeeded!"
 msgstr "Test povezave uspel!"
@@ -107,14 +109,19 @@ msgid "Created on"
 msgstr "Ustvarjeno"
 
 #. module: auto_backup
-#: code:addons/auto_backup/models/db_backup.py:208
+#: model:ir.model,name:auto_backup.model_db_backup
+msgid "Database Backup"
+msgstr ""
+
+#. module: auto_backup
+#: code:addons/auto_backup/models/db_backup.py:203
 #: model:mail.message.subtype,description:auto_backup.mail_message_subtype_failure
 #, python-format
 msgid "Database backup failed."
 msgstr "Varnostno kopiranje podatkovne baze neuspe??no."
 
 #. module: auto_backup
-#: code:addons/auto_backup/models/db_backup.py:216
+#: code:addons/auto_backup/models/db_backup.py:211
 #: model:mail.message.subtype,description:auto_backup.mail_message_subtype_success
 #, python-format
 msgid "Database backup succeeded."
@@ -122,8 +129,8 @@ msgstr "Varnostno kopiranje podatkovne baze uspe??no."
 
 #. module: auto_backup
 #: model:ir.model.fields,field_description:auto_backup.field_db_backup_days_to_keep
-msgid "Days to keep"
-msgstr "Dni za hranjenje"
+msgid "Days To Keep"
+msgstr ""
 
 #. module: auto_backup
 #: model:ir.model.fields,field_description:auto_backup.field_db_backup_display_name
@@ -131,7 +138,7 @@ msgid "Display Name"
 msgstr "Prikazni naziv"
 
 #. module: auto_backup
-#: code:addons/auto_backup/models/db_backup.py:119
+#: code:addons/auto_backup/models/db_backup.py:114
 #, python-format
 msgid ""
 "Do not save backups on your filestore, or you will backup your backups too!"
@@ -139,6 +146,11 @@ msgstr ""
 "Ne hranite varnostnih kopij v 'filestore', saj boste tako kopirali tudi same"
 " varnostne kopije!"
 
+#. module: auto_backup
+#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+msgid "Execute backup"
+msgstr ""
+
 #. module: auto_backup
 #: model:ir.actions.server,name:auto_backup.action_server_backup
 msgid "Execute backup(s)"
@@ -238,11 +250,6 @@ msgstr "SFTP stre??nik"
 msgid "SFTP Settings"
 msgstr "SFTP nastavitve"
 
-#. module: auto_backup
-#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_search
-msgid "Search options"
-msgstr "Iskalne opcije"
-
 #. module: auto_backup
 #: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
 msgid "Search the action named 'Backup scheduler'."
@@ -313,11 +320,6 @@ msgstr "Uporabni??ko ime za SFTP stre??nik"
 msgid "Warning:"
 msgstr "Opozorilo:"
 
-#. module: auto_backup
-#: model:ir.model,name:auto_backup.model_db_backup
-msgid "db.backup"
-msgstr ""
-
 #. module: auto_backup
 #: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
 msgid "john"
diff --git a/auto_backup/i18n/zh_CN.po b/auto_backup/i18n/zh_CN.po
index 38c6fa176c3..a0e460fd9ab 100644
--- a/auto_backup/i18n/zh_CN.po
+++ b/auto_backup/i18n/zh_CN.po
@@ -3,14 +3,14 @@
 # * auto_backup
 # 
 # Translators:
-# OCA Transbot <transbot@odoo-community.org>, 2016
+# OCA Transbot <transbot@odoo-community.org>, 2018
 msgid ""
 msgstr ""
-"Project-Id-Version: Odoo Server 10.0\n"
+"Project-Id-Version: Odoo Server 11.0\n"
 "Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2016-12-08 03:36+0000\n"
-"PO-Revision-Date: 2016-12-08 03:36+0000\n"
-"Last-Translator: OCA Transbot <transbot@odoo-community.org>, 2016\n"
+"POT-Creation-Date: 2018-03-03 10:08+0000\n"
+"PO-Revision-Date: 2018-03-03 10:08+0000\n"
+"Last-Translator: OCA Transbot <transbot@odoo-community.org>, 2018\n"
 "Language-Team: Chinese (China) (https://www.transifex.com/oca/teams/23907/zh_CN/)\n"
 "MIME-Version: 1.0\n"
 "Content-Type: text/plain; charset=UTF-8\n"
@@ -45,14 +45,16 @@ msgid "Backup Failed"
 msgstr ""
 
 #. module: auto_backup
-#: model:mail.message.subtype,name:auto_backup.mail_message_subtype_success
-msgid "Backup Successful"
+#: model:ir.actions.server,name:auto_backup.ir_cron_backup_scheduler_0_ir_actions_server
+#: model:ir.cron,cron_name:auto_backup.ir_cron_backup_scheduler_0
+#: model:ir.cron,name:auto_backup.ir_cron_backup_scheduler_0
+msgid "Backup Scheduler"
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_tree
-msgid "Backups"
-msgstr "??????"
+#: model:mail.message.subtype,name:auto_backup.mail_message_subtype_success
+msgid "Backup Successful"
+msgstr ""
 
 #. module: auto_backup
 #: model:ir.model.fields,help:auto_backup.field_db_backup_days_to_keep
@@ -77,19 +79,19 @@ msgid "Choose the storage method for this backup."
 msgstr ""
 
 #. module: auto_backup
-#: code:addons/auto_backup/models/db_backup.py:248
+#: code:addons/auto_backup/models/db_backup.py:249
 #, python-format
 msgid "Cleanup of old database backups failed."
 msgstr ""
 
 #. module: auto_backup
-#: code:addons/auto_backup/models/db_backup.py:131
+#: code:addons/auto_backup/models/db_backup.py:128
 #, python-format
 msgid "Connection Test Failed!"
 msgstr ""
 
 #. module: auto_backup
-#: code:addons/auto_backup/models/db_backup.py:128
+#: code:addons/auto_backup/models/db_backup.py:123
 #, python-format
 msgid "Connection Test Succeeded!"
 msgstr ""
@@ -105,7 +107,12 @@ msgid "Created on"
 msgstr "????????????"
 
 #. module: auto_backup
-#: code:addons/auto_backup/models/db_backup.py:206
+#: model:ir.model,name:auto_backup.model_db_backup
+msgid "Database Backup"
+msgstr ""
+
+#. module: auto_backup
+#: code:addons/auto_backup/models/db_backup.py:203
 #: model:mail.message.subtype,description:auto_backup.mail_message_subtype_failure
 #, python-format
 msgid "Database backup failed."
@@ -120,7 +127,7 @@ msgstr ""
 
 #. module: auto_backup
 #: model:ir.model.fields,field_description:auto_backup.field_db_backup_days_to_keep
-msgid "Days to keep"
+msgid "Days To Keep"
 msgstr ""
 
 #. module: auto_backup
@@ -129,12 +136,17 @@ msgid "Display Name"
 msgstr "????????????"
 
 #. module: auto_backup
-#: code:addons/auto_backup/models/db_backup.py:119
+#: code:addons/auto_backup/models/db_backup.py:114
 #, python-format
 msgid ""
 "Do not save backups on your filestore, or you will backup your backups too!"
 msgstr ""
 
+#. module: auto_backup
+#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+msgid "Execute backup"
+msgstr ""
+
 #. module: auto_backup
 #: model:ir.actions.server,name:auto_backup.action_server_backup
 msgid "Execute backup(s)"
@@ -232,11 +244,6 @@ msgstr ""
 msgid "SFTP Settings"
 msgstr ""
 
-#. module: auto_backup
-#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_search
-msgid "Search options"
-msgstr "????????????"
-
 #. module: auto_backup
 #: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
 msgid "Search the action named 'Backup scheduler'."
@@ -301,11 +308,6 @@ msgstr ""
 msgid "Warning:"
 msgstr "?????????"
 
-#. module: auto_backup
-#: model:ir.model,name:auto_backup.model_db_backup
-msgid "db.backup"
-msgstr ""
-
 #. module: auto_backup
 #: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
 msgid "john"
diff --git a/auto_backup/models/__init__.py b/auto_backup/models/__init__.py
index 50c79cdf26a..7486b7dbb32 100644
--- a/auto_backup/models/__init__.py
+++ b/auto_backup/models/__init__.py
@@ -1,6 +1,3 @@
-# -*- coding: utf-8 -*-
-# ?? 2004-2009 Tiny SPRL (<http://tiny.be>).
-# ?? 2016 Grupo ESOC Ingenier??a de Servicios, S.L.U. - Jairo Llopis
-# License AGPL-3.0 or later (http://www.gnu.org/licenses/gpl.html).
+# License AGPL-3.0 or later (https://www.gnu.org/licenses/agpl).
 
 from . import db_backup
diff --git a/auto_backup/models/db_backup.py b/auto_backup/models/db_backup.py
index 2e8525a0baa..1b10507cac7 100644
--- a/auto_backup/models/db_backup.py
+++ b/auto_backup/models/db_backup.py
@@ -1,18 +1,19 @@
-# -*- coding: utf-8 -*-
 # ?? 2004-2009 Tiny SPRL (<http://tiny.be>).
 # ?? 2015 Agile Business Group <http://www.agilebg.com>
 # ?? 2016 Grupo ESOC Ingenier??a de Servicios, S.L.U. - Jairo Llopis
-# License AGPL-3.0 or later (http://www.gnu.org/licenses/gpl.html).
+# License AGPL-3.0 or later (https://www.gnu.org/licenses/agpl).
 
+import logging
 import os
 import shutil
 import traceback
 from contextlib import contextmanager
 from datetime import datetime, timedelta
 from glob import iglob
-from odoo import exceptions, models, fields, api, _, tools
+
+from odoo import _, api, exceptions, fields, models, tools
 from odoo.service import db
-import logging
+
 _logger = logging.getLogger(__name__)
 try:
     import pysftp
@@ -21,6 +22,7 @@
 
 
 class DbBackup(models.Model):
+    _description = 'Database Backup'
     _name = 'db.backup'
     _inherit = "mail.thread"
 
@@ -31,59 +33,52 @@ class DbBackup(models.Model):
     ]
 
     name = fields.Char(
-        string="Name",
         compute="_compute_name",
         store=True,
         help="Summary of this backup process",
     )
     folder = fields.Char(
         default=lambda self: self._default_folder(),
-        oldname="bkp_dir",
         help='Absolute path for storing the backups',
         required=True
     )
     days_to_keep = fields.Integer(
-        oldname="daystokeep",
         required=True,
         default=0,
         help="Backups older than this will be deleted automatically. "
              "Set 0 to disable autodeletion.",
     )
     method = fields.Selection(
-        selection=[("local", "Local disk"), ("sftp", "Remote SFTP server")],
+        [("local", "Local disk"), ("sftp", "Remote SFTP server")],
         default="local",
         help="Choose the storage method for this backup.",
     )
     sftp_host = fields.Char(
-        string='SFTP Server',
-        oldname="sftpip",
+        'SFTP Server',
         help=(
             "The host name or IP address from your remote"
             " server. For example 192.168.0.1"
         )
     )
     sftp_port = fields.Integer(
-        string="SFTP Port",
+        "SFTP Port",
         default=22,
-        oldname="sftpport",
         help="The port on the FTP server that accepts SSH/SFTP calls."
     )
     sftp_user = fields.Char(
-        string='Username in the SFTP Server',
-        oldname="sftpusername",
+        'Username in the SFTP Server',
         help=(
             "The username where the SFTP connection "
             "should be made with. This is the user on the external server."
         )
     )
     sftp_password = fields.Char(
-        string="SFTP Password",
-        oldname="sftppassword",
+        "SFTP Password",
         help="The password for the SFTP connection. If you specify a private "
              "key file, then this is the password to decrypt it.",
     )
     sftp_private_key = fields.Char(
-        string="Private key location",
+        "Private key location",
         help="Path to the private key file. Only the Odoo user should have "
              "read permissions for that file.",
     )
@@ -111,9 +106,9 @@ def _compute_name(self):
     @api.constrains("folder", "method")
     def _check_folder(self):
         """Do not use the filestore or you will backup your backups."""
-        for s in self:
-            if (s.method == "local" and
-                    s.folder.startswith(
+        for record in self:
+            if (record.method == "local" and
+                    record.folder.startswith(
                         tools.config.filestore(self.env.cr.dbname))):
                 raise exceptions.ValidationError(
                     _("Do not save backups on your filestore, or you will "
@@ -200,10 +195,10 @@ def backup_log(self):
         try:
             _logger.info("Starting database backup: %s", self.name)
             yield
-        except:
+        except Exception:
             _logger.exception("Database backup failed: %s", self.name)
             escaped_tb = tools.html_escape(traceback.format_exc())
-            self.message_post(
+            self.message_post(  # pylint: disable=translation-required
                 "<p>%s</p><pre>%s</pre>" % (
                     _("Database backup failed."),
                     escaped_tb),
@@ -242,23 +237,25 @@ def cleanup_log(self):
         """Log a possible cleanup failure."""
         self.ensure_one()
         try:
-            _logger.info("Starting cleanup process after database backup: %s",
-                         self.name)
+            _logger.info(
+                "Starting cleanup process after database backup: %s",
+                self.name)
             yield
-        except:
+        except Exception:
             _logger.exception("Cleanup of old database backups failed: %s")
             escaped_tb = tools.html_escape(traceback.format_exc())
-            self.message_post(
+            self.message_post(  # pylint: disable=translation-required
                 "<p>%s</p><pre>%s</pre>" % (
                     _("Cleanup of old database backups failed."),
                     escaped_tb),
                 subtype=self.env.ref("auto_backup.failure"))
         else:
-            _logger.info("Cleanup of old database backups succeeded: %s",
-                         self.name)
+            _logger.info(
+                "Cleanup of old database backups succeeded: %s",
+                self.name)
 
-    @api.model
-    def filename(self, when):
+    @staticmethod
+    def filename(when):
         """Generate a file name for a backup.
 
         :param datetime.datetime when:
diff --git a/auto_backup/tests/__init__.py b/auto_backup/tests/__init__.py
index ebbbca6dd49..0bf2c86495d 100644
--- a/auto_backup/tests/__init__.py
+++ b/auto_backup/tests/__init__.py
@@ -1,7 +1,3 @@
-# -*- coding: utf-8 -*-
-# ?? 2015 Agile Business Group <http://www.agilebg.com>
-# ?? 2015 Alessio Gerace <alesiso.gerace@agilebg.com>
-# ?? 2016 Grupo ESOC Ingenier??a de Servicios, S.L.U. - Jairo Llopis
-# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl.html).
+# License AGPL-3.0 or later (https://www.gnu.org/licenses/agpl).
 
 from . import test_db_backup
diff --git a/auto_backup/tests/test_db_backup.py b/auto_backup/tests/test_db_backup.py
index 722b2f2788b..ef2972f3f36 100644
--- a/auto_backup/tests/test_db_backup.py
+++ b/auto_backup/tests/test_db_backup.py
@@ -1,18 +1,17 @@
-# -*- coding: utf-8 -*-
 # ?? 2015 Agile Business Group <http://www.agilebg.com>
 # ?? 2015 Alessio Gerace <alesiso.gerace@agilebg.com>
 # ?? 2016 Grupo ESOC Ingenier??a de Servicios, S.L.U. - Jairo Llopis
 # Copyright 2016 LasLabs Inc.
-# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl.html).
+# License AGPL-3.0 or later (https://www.gnu.org/licenses/agpl).
 
 import os
-import mock
-
-from datetime import datetime
 from contextlib import contextmanager
+from datetime import datetime, timedelta
+
+import mock
 
-from odoo.tests import common
 from odoo import exceptions, tools
+from odoo.tests import common
 
 try:
     import pysftp
@@ -127,6 +126,23 @@ def test_action_backup_local(self):
                             if f >= filename]
         self.assertEqual(1, len(generated_backup))
 
+    def test_action_backup_local_cleanup(self):
+        """ Backup local database and cleanup old databases """
+        rec_id = self.new_record('local')
+        rec_id.days_to_keep = 1
+        old_date = datetime.now() - timedelta(days=3)
+        filename = rec_id.filename(old_date)
+        rec_id.action_backup()
+        generated_backup = [f for f in os.listdir(rec_id.folder)
+                            if f >= filename]
+        self.assertEqual(2, len(generated_backup))
+
+        filename = rec_id.filename(datetime.now())
+        rec_id.action_backup()
+        generated_backup = [f for f in os.listdir(rec_id.folder)
+                            if f >= filename]
+        self.assertEqual(1, len(generated_backup))
+
     def test_action_backup_sftp_mkdirs(self):
         """ It should create remote dirs """
         rec_id = self.new_record()
diff --git a/auto_backup/view/db_backup_view.xml b/auto_backup/view/db_backup_view.xml
index 23731135ea8..42f826feb39 100644
--- a/auto_backup/view/db_backup_view.xml
+++ b/auto_backup/view/db_backup_view.xml
@@ -1,14 +1,16 @@
-<?xml version="1.0"?>
+<?xml version="1.0" encoding="utf-8"?>
 <odoo>
 
-    <record model="ir.ui.view" id="view_backup_conf_form">
-        <field name="name">Automated Backups</field>
+    <record id="view_backup_conf_form" model="ir.ui.view">
         <field name="model">db.backup</field>
-        <field name="type">form</field>
         <field name="arch" type="xml">
             <form>
-                <h1><field name="name"/></h1>
-
+                <header>
+                    <button name="action_backup" type="object" string="Execute backup" class="oe_highlight"/>
+                </header>
+                <div class="oe_title">
+                   <h1><field name="name"/></h1>
+                </div>
                 <group string="Basic backup configuration">
                     <field name="folder"/>
                     <field name="days_to_keep"/>
@@ -47,27 +49,23 @@
         </field>
     </record>
 
-    <record model="ir.ui.view" id="view_backup_conf_tree">
-        <field name="name">Automated Backups</field>
+    <record id="view_backup_conf_tree" model="ir.ui.view">
         <field name="model">db.backup</field>
-        <field name="type">tree</field>
         <field name="arch" type="xml">
-            <tree string="Backups">
-                <field name='name'/>
-                <field name='folder'/>
-                <field name="sftp_host"/>
+            <tree>
+                <field name="name"/>
+                <field name="folder"/>
+                <field name="days_to_keep"/>
             </tree>
         </field>
     </record>
 
-    <record model="ir.ui.view" id="view_backup_conf_search">
-        <field name="name">Automated Backups</field>
+    <record id="view_backup_conf_search" model="ir.ui.view">
         <field name="model">db.backup</field>
-        <field name="type">search</field>
         <field name="arch" type="xml">
-            <search string="Search options">
-                <field name='name'/>
-                <field name='folder'/>
+            <search>
+                <field name="name"/>
+                <field name="folder"/>
                 <field name="sftp_host"/>
             </search>
         </field>
@@ -86,22 +84,11 @@
     <!-- Execute backup from "More" menu -->
     <record id="action_server_backup" model="ir.actions.server">
         <field name="name">Execute backup(s)</field>
-        <field name="model_id" ref="model_db_backup"/>
-        <field name="code">
-            object.action_backup()
-        </field>
-    </record>
-
-    <record model="ir.values" id="action_backup">
-        <field name="name">Execute backup(s)</field>
-        <field name="action_id" ref="action_server_backup" />
-        <field
-            name="value"
-            eval="'ir.actions.server,%d' % ref('action_server_backup')" />
-        <field name="key">action</field>
+        <field name="type">ir.actions.server</field>
         <field name="model_id" ref="model_db_backup" />
-        <field name="model">db.backup</field>
-        <field name="key2">client_action_multi</field>
+        <field name="binding_model_id" ref="model_db_backup" />
+        <field name="state">code</field>
+        <field name="code">records.action_backup()</field>
     </record>
 
 </odoo>

From 434beb75279ade333cb08cb34189329dc97c9359 Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?St=C3=A9phane=20Bidoul=20=28ACSONE=29?=
 <stephane.bidoul@acsone.eu>
Date: Sun, 17 Jun 2018 22:35:53 +0200
Subject: [PATCH 14/52] [FIX] syntax error in nl.po

---
 auto_backup/i18n/am.po           |  53 ++--
 auto_backup/i18n/ar.po           |  58 ++--
 auto_backup/i18n/auto_backup.pot | 301 ++++++++++++++++++++
 auto_backup/i18n/bg.po           |  55 ++--
 auto_backup/i18n/bs.po           |  58 ++--
 auto_backup/i18n/ca.po           |  11 +-
 auto_backup/i18n/cs.po           |  55 ++--
 auto_backup/i18n/cs_CZ.po        |  14 +-
 auto_backup/i18n/da.po           |  55 ++--
 auto_backup/i18n/de.po           |  11 +-
 auto_backup/i18n/el_GR.po        |  58 ++--
 auto_backup/i18n/en_GB.po        |  58 ++--
 auto_backup/i18n/es.po           |  11 +-
 auto_backup/i18n/es_AR.po        |  58 ++--
 auto_backup/i18n/es_CL.po        |  58 ++--
 auto_backup/i18n/es_CO.po        |  58 ++--
 auto_backup/i18n/es_CR.po        |  58 ++--
 auto_backup/i18n/es_DO.po        |  58 ++--
 auto_backup/i18n/es_EC.po        |  58 ++--
 auto_backup/i18n/es_ES.po        |  58 ++--
 auto_backup/i18n/es_MX.po        |  58 ++--
 auto_backup/i18n/es_PE.po        |  58 ++--
 auto_backup/i18n/es_PY.po        |  58 ++--
 auto_backup/i18n/es_VE.po        |  58 ++--
 auto_backup/i18n/et.po           |  55 ++--
 auto_backup/i18n/eu.po           |  55 ++--
 auto_backup/i18n/fa.po           |  55 ++--
 auto_backup/i18n/fi.po           |  53 ++--
 auto_backup/i18n/fr.po           |  11 +-
 auto_backup/i18n/fr_CA.po        |  56 ++--
 auto_backup/i18n/fr_CH.po        |  58 ++--
 auto_backup/i18n/gl.po           |  55 ++--
 auto_backup/i18n/gl_ES.po        |  56 ++--
 auto_backup/i18n/he.po           |  55 ++--
 auto_backup/i18n/hr.po           |  18 +-
 auto_backup/i18n/hr_HR.po        |  61 ++--
 auto_backup/i18n/hu.po           |  55 ++--
 auto_backup/i18n/id.po           |  55 ++--
 auto_backup/i18n/it.po           |  25 +-
 auto_backup/i18n/ja.po           |  55 ++--
 auto_backup/i18n/ko.po           |  55 ++--
 auto_backup/i18n/lt.po           |  58 ++--
 auto_backup/i18n/lt_LT.po        |  59 ++--
 auto_backup/i18n/lv.po           |  58 ++--
 auto_backup/i18n/mk.po           |  55 ++--
 auto_backup/i18n/mn.po           |  55 ++--
 auto_backup/i18n/nb.po           |  58 ++--
 auto_backup/i18n/nb_NO.po        |  56 ++--
 auto_backup/i18n/nl.po           | 474 +++++++++++++++++++++----------
 auto_backup/i18n/nl_BE.po        | 474 +++++++++++++++++++++----------
 auto_backup/i18n/nl_NL.po        |  14 +-
 auto_backup/i18n/pl.po           |  59 ++--
 auto_backup/i18n/pt.po           |  11 +-
 auto_backup/i18n/pt_BR.po        |  57 ++--
 auto_backup/i18n/pt_PT.po        |  58 ++--
 auto_backup/i18n/ro.po           |  14 +-
 auto_backup/i18n/ru.po           |  57 ++--
 auto_backup/i18n/sk.po           |  55 ++--
 auto_backup/i18n/sl.po           |  22 +-
 auto_backup/i18n/sr.po           |  58 ++--
 auto_backup/i18n/sr@latin.po     |  61 ++--
 auto_backup/i18n/sv.po           |  55 ++--
 auto_backup/i18n/th.po           |  55 ++--
 auto_backup/i18n/tr.po           |  55 ++--
 auto_backup/i18n/tr_TR.po        |  58 ++--
 auto_backup/i18n/uk.po           |  58 ++--
 auto_backup/i18n/vi.po           |  55 ++--
 auto_backup/i18n/vi_VN.po        |  58 ++--
 auto_backup/i18n/zh_CN.po        |  22 +-
 auto_backup/i18n/zh_TW.po        |  58 ++--
 70 files changed, 2644 insertions(+), 1912 deletions(-)
 create mode 100644 auto_backup/i18n/auto_backup.pot

diff --git a/auto_backup/i18n/am.po b/auto_backup/i18n/am.po
index 7f453333a43..9856b1efb25 100644
--- a/auto_backup/i18n/am.po
+++ b/auto_backup/i18n/am.po
@@ -1,7 +1,7 @@
 # Translation of Odoo Server.
 # This file contains the translation of the following modules:
 # * auto_backup
-# 
+#
 # Translators:
 # OCA Transbot <transbot@odoo-community.org>, 2016
 msgid ""
@@ -12,10 +12,10 @@ msgstr ""
 "PO-Revision-Date: 2016-12-08 03:36+0000\n"
 "Last-Translator: OCA Transbot <transbot@odoo-community.org>, 2016\n"
 "Language-Team: Amharic (https://www.transifex.com/oca/teams/23907/am/)\n"
+"Language: am\n"
 "MIME-Version: 1.0\n"
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: \n"
-"Language: am\n"
 "Plural-Forms: nplurals=2; plural=(n > 1);\n"
 
 #. module: auto_backup
@@ -45,13 +45,15 @@ msgid "Backup Failed"
 msgstr ""
 
 #. module: auto_backup
-#: model:mail.message.subtype,name:auto_backup.mail_message_subtype_success
-msgid "Backup Successful"
+#: model:ir.actions.server,name:auto_backup.ir_cron_backup_scheduler_0_ir_actions_server
+#: model:ir.cron,cron_name:auto_backup.ir_cron_backup_scheduler_0
+#: model:ir.cron,name:auto_backup.ir_cron_backup_scheduler_0
+msgid "Backup Scheduler"
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_tree
-msgid "Backups"
+#: model:mail.message.subtype,name:auto_backup.mail_message_subtype_success
+msgid "Backup Successful"
 msgstr ""
 
 #. module: auto_backup
@@ -77,19 +79,19 @@ msgid "Choose the storage method for this backup."
 msgstr ""
 
 #. module: auto_backup
-#: code:addons/auto_backup/models/db_backup.py:248
+#: code:addons/auto_backup/models/db_backup.py:249
 #, python-format
 msgid "Cleanup of old database backups failed."
 msgstr ""
 
 #. module: auto_backup
-#: code:addons/auto_backup/models/db_backup.py:131
+#: code:addons/auto_backup/models/db_backup.py:128
 #, python-format
 msgid "Connection Test Failed!"
 msgstr ""
 
 #. module: auto_backup
-#: code:addons/auto_backup/models/db_backup.py:128
+#: code:addons/auto_backup/models/db_backup.py:123
 #, python-format
 msgid "Connection Test Succeeded!"
 msgstr ""
@@ -105,7 +107,12 @@ msgid "Created on"
 msgstr "Creado en"
 
 #. module: auto_backup
-#: code:addons/auto_backup/models/db_backup.py:206
+#: model:ir.model,name:auto_backup.model_db_backup
+msgid "Database Backup"
+msgstr ""
+
+#. module: auto_backup
+#: code:addons/auto_backup/models/db_backup.py:203
 #: model:mail.message.subtype,description:auto_backup.mail_message_subtype_failure
 #, python-format
 msgid "Database backup failed."
@@ -120,7 +127,7 @@ msgstr ""
 
 #. module: auto_backup
 #: model:ir.model.fields,field_description:auto_backup.field_db_backup_days_to_keep
-msgid "Days to keep"
+msgid "Days To Keep"
 msgstr ""
 
 #. module: auto_backup
@@ -129,12 +136,17 @@ msgid "Display Name"
 msgstr ""
 
 #. module: auto_backup
-#: code:addons/auto_backup/models/db_backup.py:119
+#: code:addons/auto_backup/models/db_backup.py:114
 #, python-format
 msgid ""
 "Do not save backups on your filestore, or you will backup your backups too!"
 msgstr ""
 
+#. module: auto_backup
+#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+msgid "Execute backup"
+msgstr ""
+
 #. module: auto_backup
 #: model:ir.actions.server,name:auto_backup.action_server_backup
 msgid "Execute backup(s)"
@@ -232,11 +244,6 @@ msgstr ""
 msgid "SFTP Settings"
 msgstr ""
 
-#. module: auto_backup
-#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_search
-msgid "Search options"
-msgstr ""
-
 #. module: auto_backup
 #: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
 msgid "Search the action named 'Backup scheduler'."
@@ -245,8 +252,7 @@ msgstr ""
 #. module: auto_backup
 #: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
 msgid ""
-"Set the scheduler to active and fill in how often you want backups "
-"generated."
+"Set the scheduler to active and fill in how often you want backups generated."
 msgstr ""
 
 #. module: auto_backup
@@ -280,8 +286,8 @@ msgstr ""
 #. module: auto_backup
 #: model:ir.model.fields,help:auto_backup.field_db_backup_sftp_user
 msgid ""
-"The username where the SFTP connection should be made with. This is the user"
-" on the external server."
+"The username where the SFTP connection should be made with. This is the user "
+"on the external server."
 msgstr ""
 
 #. module: auto_backup
@@ -301,11 +307,6 @@ msgstr ""
 msgid "Warning:"
 msgstr ""
 
-#. module: auto_backup
-#: model:ir.model,name:auto_backup.model_db_backup
-msgid "db.backup"
-msgstr ""
-
 #. module: auto_backup
 #: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
 msgid "john"
diff --git a/auto_backup/i18n/ar.po b/auto_backup/i18n/ar.po
index eb40f690b49..5eceea2bc25 100644
--- a/auto_backup/i18n/ar.po
+++ b/auto_backup/i18n/ar.po
@@ -1,7 +1,7 @@
 # Translation of Odoo Server.
 # This file contains the translation of the following modules:
 # * auto_backup
-# 
+#
 # Translators:
 # OCA Transbot <transbot@odoo-community.org>, 2016
 msgid ""
@@ -12,11 +12,12 @@ msgstr ""
 "PO-Revision-Date: 2017-02-18 02:29+0000\n"
 "Last-Translator: OCA Transbot <transbot@odoo-community.org>, 2016\n"
 "Language-Team: Arabic (https://www.transifex.com/oca/teams/23907/ar/)\n"
+"Language: ar\n"
 "MIME-Version: 1.0\n"
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: \n"
-"Language: ar\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"
+"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: auto_backup
 #: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
@@ -45,13 +46,15 @@ msgid "Backup Failed"
 msgstr ""
 
 #. module: auto_backup
-#: model:mail.message.subtype,name:auto_backup.mail_message_subtype_success
-msgid "Backup Successful"
+#: model:ir.actions.server,name:auto_backup.ir_cron_backup_scheduler_0_ir_actions_server
+#: model:ir.cron,cron_name:auto_backup.ir_cron_backup_scheduler_0
+#: model:ir.cron,name:auto_backup.ir_cron_backup_scheduler_0
+msgid "Backup Scheduler"
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_tree
-msgid "Backups"
+#: model:mail.message.subtype,name:auto_backup.mail_message_subtype_success
+msgid "Backup Successful"
 msgstr ""
 
 #. module: auto_backup
@@ -77,19 +80,19 @@ msgid "Choose the storage method for this backup."
 msgstr ""
 
 #. module: auto_backup
-#: code:addons/auto_backup/models/db_backup.py:251
+#: code:addons/auto_backup/models/db_backup.py:249
 #, python-format
 msgid "Cleanup of old database backups failed."
 msgstr ""
 
 #. module: auto_backup
-#: code:addons/auto_backup/models/db_backup.py:131
+#: code:addons/auto_backup/models/db_backup.py:128
 #, python-format
 msgid "Connection Test Failed!"
 msgstr ""
 
 #. module: auto_backup
-#: code:addons/auto_backup/models/db_backup.py:128
+#: code:addons/auto_backup/models/db_backup.py:123
 #, python-format
 msgid "Connection Test Succeeded!"
 msgstr ""
@@ -105,14 +108,19 @@ msgid "Created on"
 msgstr "???????? ????"
 
 #. module: auto_backup
-#: code:addons/auto_backup/models/db_backup.py:206
+#: model:ir.model,name:auto_backup.model_db_backup
+msgid "Database Backup"
+msgstr ""
+
+#. module: auto_backup
+#: code:addons/auto_backup/models/db_backup.py:203
 #: model:mail.message.subtype,description:auto_backup.mail_message_subtype_failure
 #, python-format
 msgid "Database backup failed."
 msgstr ""
 
 #. module: auto_backup
-#: code:addons/auto_backup/models/db_backup.py:214
+#: code:addons/auto_backup/models/db_backup.py:211
 #: model:mail.message.subtype,description:auto_backup.mail_message_subtype_success
 #, python-format
 msgid "Database backup succeeded."
@@ -120,7 +128,7 @@ msgstr ""
 
 #. module: auto_backup
 #: model:ir.model.fields,field_description:auto_backup.field_db_backup_days_to_keep
-msgid "Days to keep"
+msgid "Days To Keep"
 msgstr ""
 
 #. module: auto_backup
@@ -129,12 +137,17 @@ msgid "Display Name"
 msgstr "?????? ??????????"
 
 #. module: auto_backup
-#: code:addons/auto_backup/models/db_backup.py:119
+#: code:addons/auto_backup/models/db_backup.py:114
 #, python-format
 msgid ""
 "Do not save backups on your filestore, or you will backup your backups too!"
 msgstr ""
 
+#. module: auto_backup
+#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+msgid "Execute backup"
+msgstr ""
+
 #. module: auto_backup
 #: model:ir.actions.server,name:auto_backup.action_server_backup
 msgid "Execute backup(s)"
@@ -232,11 +245,6 @@ msgstr ""
 msgid "SFTP Settings"
 msgstr ""
 
-#. module: auto_backup
-#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_search
-msgid "Search options"
-msgstr ""
-
 #. module: auto_backup
 #: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
 msgid "Search the action named 'Backup scheduler'."
@@ -245,8 +253,7 @@ msgstr ""
 #. module: auto_backup
 #: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
 msgid ""
-"Set the scheduler to active and fill in how often you want backups "
-"generated."
+"Set the scheduler to active and fill in how often you want backups generated."
 msgstr ""
 
 #. module: auto_backup
@@ -280,8 +287,8 @@ msgstr ""
 #. module: auto_backup
 #: model:ir.model.fields,help:auto_backup.field_db_backup_sftp_user
 msgid ""
-"The username where the SFTP connection should be made with. This is the user"
-" on the external server."
+"The username where the SFTP connection should be made with. This is the user "
+"on the external server."
 msgstr ""
 
 #. module: auto_backup
@@ -301,11 +308,6 @@ msgstr ""
 msgid "Warning:"
 msgstr ""
 
-#. module: auto_backup
-#: model:ir.model,name:auto_backup.model_db_backup
-msgid "db.backup"
-msgstr ""
-
 #. module: auto_backup
 #: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
 msgid "john"
diff --git a/auto_backup/i18n/auto_backup.pot b/auto_backup/i18n/auto_backup.pot
new file mode 100644
index 00000000000..6d8eaf24ba0
--- /dev/null
+++ b/auto_backup/i18n/auto_backup.pot
@@ -0,0 +1,301 @@
+# Translation of Odoo Server.
+# This file contains the translation of the following modules:
+#	* auto_backup
+#
+msgid ""
+msgstr ""
+"Project-Id-Version: Odoo Server 11.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: auto_backup
+#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+msgid "/home/odoo/.ssh/id_rsa"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,help:auto_backup.field_db_backup_folder
+msgid "Absolute path for storing the backups"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.actions.act_window,name:auto_backup.action_backup_conf_form
+#: model:ir.ui.menu,name:auto_backup.backup_conf_menu
+msgid "Automated Backups"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+msgid "Automatic backups of the database can be scheduled as follows:"
+msgstr ""
+
+#. module: auto_backup
+#: model:mail.message.subtype,name:auto_backup.mail_message_subtype_failure
+msgid "Backup Failed"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.actions.server,name:auto_backup.ir_cron_backup_scheduler_0_ir_actions_server
+#: model:ir.cron,cron_name:auto_backup.ir_cron_backup_scheduler_0
+#: model:ir.cron,name:auto_backup.ir_cron_backup_scheduler_0
+msgid "Backup Scheduler"
+msgstr ""
+
+#. module: auto_backup
+#: model:mail.message.subtype,name:auto_backup.mail_message_subtype_success
+msgid "Backup Successful"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,help:auto_backup.field_db_backup_days_to_keep
+msgid "Backups older than this will be deleted automatically. Set 0 to disable autodeletion."
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+msgid "Basic backup configuration"
+msgstr ""
+
+#. module: auto_backup
+#: sql_constraint:db.backup:0
+msgid "Cannot duplicate a configuration."
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,help:auto_backup.field_db_backup_method
+msgid "Choose the storage method for this backup."
+msgstr ""
+
+#. module: auto_backup
+#: code:addons/auto_backup/models/db_backup.py:249
+#, python-format
+msgid "Cleanup of old database backups failed."
+msgstr ""
+
+#. module: auto_backup
+#: code:addons/auto_backup/models/db_backup.py:128
+#, python-format
+msgid "Connection Test Failed!"
+msgstr ""
+
+#. module: auto_backup
+#: code:addons/auto_backup/models/db_backup.py:123
+#, python-format
+msgid "Connection Test Succeeded!"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup_create_uid
+msgid "Created by"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup_create_date
+msgid "Created on"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model,name:auto_backup.model_db_backup
+msgid "Database Backup"
+msgstr ""
+
+#. module: auto_backup
+#: code:addons/auto_backup/models/db_backup.py:203
+#: model:mail.message.subtype,description:auto_backup.mail_message_subtype_failure
+#, python-format
+msgid "Database backup failed."
+msgstr ""
+
+#. module: auto_backup
+#: code:addons/auto_backup/models/db_backup.py:211
+#: model:mail.message.subtype,description:auto_backup.mail_message_subtype_success
+#, python-format
+msgid "Database backup succeeded."
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup_days_to_keep
+msgid "Days To Keep"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup_display_name
+msgid "Display Name"
+msgstr ""
+
+#. module: auto_backup
+#: code:addons/auto_backup/models/db_backup.py:114
+#, python-format
+msgid "Do not save backups on your filestore, or you will backup your backups too!"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+msgid "Execute backup"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.actions.server,name:auto_backup.action_server_backup
+msgid "Execute backup(s)"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup_folder
+msgid "Folder"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+msgid "Go to Settings / Technical / Automation / Scheduled Actions."
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+msgid "Help"
+msgstr ""
+
+#. module: auto_backup
+#: sql_constraint:db.backup:0
+msgid "I cannot remove backups from the future. Ask Doc for that."
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup_id
+msgid "ID"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup___last_update
+msgid "Last Modified on"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup_write_uid
+msgid "Last Updated by"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup_write_date
+msgid "Last Updated on"
+msgstr ""
+
+#. module: auto_backup
+#: selection:db.backup,method:0
+msgid "Local disk"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup_method
+msgid "Method"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup_name
+msgid "Name"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,help:auto_backup.field_db_backup_sftp_private_key
+msgid "Path to the private key file. Only the Odoo user should have read permissions for that file."
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup_sftp_private_key
+msgid "Private key location"
+msgstr ""
+
+#. module: auto_backup
+#: selection:db.backup,method:0
+msgid "Remote SFTP server"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup_sftp_password
+msgid "SFTP Password"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup_sftp_port
+msgid "SFTP Port"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup_sftp_host
+msgid "SFTP Server"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+msgid "SFTP Settings"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+msgid "Search the action named 'Backup scheduler'."
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+msgid "Set the scheduler to active and fill in how often you want backups generated."
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,help:auto_backup.field_db_backup_name
+msgid "Summary of this backup process"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+msgid "Test SFTP Connection"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,help:auto_backup.field_db_backup_sftp_host
+msgid "The host name or IP address from your remote server. For example 192.168.0.1"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,help:auto_backup.field_db_backup_sftp_password
+msgid "The password for the SFTP connection. If you specify a private key file, then this is the password to decrypt it."
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,help:auto_backup.field_db_backup_sftp_port
+msgid "The port on the FTP server that accepts SSH/SFTP calls."
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,help:auto_backup.field_db_backup_sftp_user
+msgid "The username where the SFTP connection should be made with. This is the user on the external server."
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+msgid "Use SFTP with caution! This writes files to external servers under the path you specify."
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup_sftp_user
+msgid "Username in the SFTP Server"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+msgid "Warning:"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+msgid "john"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+msgid "sftp.example.com"
+msgstr ""
+
diff --git a/auto_backup/i18n/bg.po b/auto_backup/i18n/bg.po
index edb84fb3873..576646953a3 100644
--- a/auto_backup/i18n/bg.po
+++ b/auto_backup/i18n/bg.po
@@ -1,7 +1,7 @@
 # Translation of Odoo Server.
 # This file contains the translation of the following modules:
 # * auto_backup
-# 
+#
 # Translators:
 # OCA Transbot <transbot@odoo-community.org>, 2016
 msgid ""
@@ -12,10 +12,10 @@ msgstr ""
 "PO-Revision-Date: 2017-02-18 02:29+0000\n"
 "Last-Translator: OCA Transbot <transbot@odoo-community.org>, 2016\n"
 "Language-Team: Bulgarian (https://www.transifex.com/oca/teams/23907/bg/)\n"
+"Language: bg\n"
 "MIME-Version: 1.0\n"
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: \n"
-"Language: bg\n"
 "Plural-Forms: nplurals=2; plural=(n != 1);\n"
 
 #. module: auto_backup
@@ -45,13 +45,15 @@ msgid "Backup Failed"
 msgstr ""
 
 #. module: auto_backup
-#: model:mail.message.subtype,name:auto_backup.mail_message_subtype_success
-msgid "Backup Successful"
+#: model:ir.actions.server,name:auto_backup.ir_cron_backup_scheduler_0_ir_actions_server
+#: model:ir.cron,cron_name:auto_backup.ir_cron_backup_scheduler_0
+#: model:ir.cron,name:auto_backup.ir_cron_backup_scheduler_0
+msgid "Backup Scheduler"
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_tree
-msgid "Backups"
+#: model:mail.message.subtype,name:auto_backup.mail_message_subtype_success
+msgid "Backup Successful"
 msgstr ""
 
 #. module: auto_backup
@@ -77,19 +79,19 @@ msgid "Choose the storage method for this backup."
 msgstr ""
 
 #. module: auto_backup
-#: code:addons/auto_backup/models/db_backup.py:251
+#: code:addons/auto_backup/models/db_backup.py:249
 #, python-format
 msgid "Cleanup of old database backups failed."
 msgstr ""
 
 #. module: auto_backup
-#: code:addons/auto_backup/models/db_backup.py:131
+#: code:addons/auto_backup/models/db_backup.py:128
 #, python-format
 msgid "Connection Test Failed!"
 msgstr ""
 
 #. module: auto_backup
-#: code:addons/auto_backup/models/db_backup.py:128
+#: code:addons/auto_backup/models/db_backup.py:123
 #, python-format
 msgid "Connection Test Succeeded!"
 msgstr ""
@@ -105,14 +107,19 @@ msgid "Created on"
 msgstr "?????????????????? ????"
 
 #. module: auto_backup
-#: code:addons/auto_backup/models/db_backup.py:206
+#: model:ir.model,name:auto_backup.model_db_backup
+msgid "Database Backup"
+msgstr ""
+
+#. module: auto_backup
+#: code:addons/auto_backup/models/db_backup.py:203
 #: model:mail.message.subtype,description:auto_backup.mail_message_subtype_failure
 #, python-format
 msgid "Database backup failed."
 msgstr ""
 
 #. module: auto_backup
-#: code:addons/auto_backup/models/db_backup.py:214
+#: code:addons/auto_backup/models/db_backup.py:211
 #: model:mail.message.subtype,description:auto_backup.mail_message_subtype_success
 #, python-format
 msgid "Database backup succeeded."
@@ -120,7 +127,7 @@ msgstr ""
 
 #. module: auto_backup
 #: model:ir.model.fields,field_description:auto_backup.field_db_backup_days_to_keep
-msgid "Days to keep"
+msgid "Days To Keep"
 msgstr ""
 
 #. module: auto_backup
@@ -129,12 +136,17 @@ msgid "Display Name"
 msgstr "?????? ???? ??????????????????"
 
 #. module: auto_backup
-#: code:addons/auto_backup/models/db_backup.py:119
+#: code:addons/auto_backup/models/db_backup.py:114
 #, python-format
 msgid ""
 "Do not save backups on your filestore, or you will backup your backups too!"
 msgstr ""
 
+#. module: auto_backup
+#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+msgid "Execute backup"
+msgstr ""
+
 #. module: auto_backup
 #: model:ir.actions.server,name:auto_backup.action_server_backup
 msgid "Execute backup(s)"
@@ -232,11 +244,6 @@ msgstr ""
 msgid "SFTP Settings"
 msgstr ""
 
-#. module: auto_backup
-#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_search
-msgid "Search options"
-msgstr ""
-
 #. module: auto_backup
 #: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
 msgid "Search the action named 'Backup scheduler'."
@@ -245,8 +252,7 @@ msgstr ""
 #. module: auto_backup
 #: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
 msgid ""
-"Set the scheduler to active and fill in how often you want backups "
-"generated."
+"Set the scheduler to active and fill in how often you want backups generated."
 msgstr ""
 
 #. module: auto_backup
@@ -280,8 +286,8 @@ msgstr ""
 #. module: auto_backup
 #: model:ir.model.fields,help:auto_backup.field_db_backup_sftp_user
 msgid ""
-"The username where the SFTP connection should be made with. This is the user"
-" on the external server."
+"The username where the SFTP connection should be made with. This is the user "
+"on the external server."
 msgstr ""
 
 #. module: auto_backup
@@ -301,11 +307,6 @@ msgstr ""
 msgid "Warning:"
 msgstr ""
 
-#. module: auto_backup
-#: model:ir.model,name:auto_backup.model_db_backup
-msgid "db.backup"
-msgstr ""
-
 #. module: auto_backup
 #: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
 msgid "john"
diff --git a/auto_backup/i18n/bs.po b/auto_backup/i18n/bs.po
index b19a70f2264..5bc5521a17f 100644
--- a/auto_backup/i18n/bs.po
+++ b/auto_backup/i18n/bs.po
@@ -1,7 +1,7 @@
 # Translation of Odoo Server.
 # This file contains the translation of the following modules:
 # * auto_backup
-# 
+#
 # Translators:
 # OCA Transbot <transbot@odoo-community.org>, 2016
 msgid ""
@@ -12,11 +12,12 @@ msgstr ""
 "PO-Revision-Date: 2017-02-18 02:29+0000\n"
 "Last-Translator: OCA Transbot <transbot@odoo-community.org>, 2016\n"
 "Language-Team: Bosnian (https://www.transifex.com/oca/teams/23907/bs/)\n"
+"Language: bs\n"
 "MIME-Version: 1.0\n"
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: \n"
-"Language: bs\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"
+"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: auto_backup
 #: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
@@ -45,13 +46,15 @@ msgid "Backup Failed"
 msgstr ""
 
 #. module: auto_backup
-#: model:mail.message.subtype,name:auto_backup.mail_message_subtype_success
-msgid "Backup Successful"
+#: model:ir.actions.server,name:auto_backup.ir_cron_backup_scheduler_0_ir_actions_server
+#: model:ir.cron,cron_name:auto_backup.ir_cron_backup_scheduler_0
+#: model:ir.cron,name:auto_backup.ir_cron_backup_scheduler_0
+msgid "Backup Scheduler"
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_tree
-msgid "Backups"
+#: model:mail.message.subtype,name:auto_backup.mail_message_subtype_success
+msgid "Backup Successful"
 msgstr ""
 
 #. module: auto_backup
@@ -77,19 +80,19 @@ msgid "Choose the storage method for this backup."
 msgstr ""
 
 #. module: auto_backup
-#: code:addons/auto_backup/models/db_backup.py:251
+#: code:addons/auto_backup/models/db_backup.py:249
 #, python-format
 msgid "Cleanup of old database backups failed."
 msgstr ""
 
 #. module: auto_backup
-#: code:addons/auto_backup/models/db_backup.py:131
+#: code:addons/auto_backup/models/db_backup.py:128
 #, python-format
 msgid "Connection Test Failed!"
 msgstr ""
 
 #. module: auto_backup
-#: code:addons/auto_backup/models/db_backup.py:128
+#: code:addons/auto_backup/models/db_backup.py:123
 #, python-format
 msgid "Connection Test Succeeded!"
 msgstr ""
@@ -105,14 +108,19 @@ msgid "Created on"
 msgstr "Kreirano"
 
 #. module: auto_backup
-#: code:addons/auto_backup/models/db_backup.py:206
+#: model:ir.model,name:auto_backup.model_db_backup
+msgid "Database Backup"
+msgstr ""
+
+#. module: auto_backup
+#: code:addons/auto_backup/models/db_backup.py:203
 #: model:mail.message.subtype,description:auto_backup.mail_message_subtype_failure
 #, python-format
 msgid "Database backup failed."
 msgstr ""
 
 #. module: auto_backup
-#: code:addons/auto_backup/models/db_backup.py:214
+#: code:addons/auto_backup/models/db_backup.py:211
 #: model:mail.message.subtype,description:auto_backup.mail_message_subtype_success
 #, python-format
 msgid "Database backup succeeded."
@@ -120,7 +128,7 @@ msgstr ""
 
 #. module: auto_backup
 #: model:ir.model.fields,field_description:auto_backup.field_db_backup_days_to_keep
-msgid "Days to keep"
+msgid "Days To Keep"
 msgstr ""
 
 #. module: auto_backup
@@ -129,12 +137,17 @@ msgid "Display Name"
 msgstr "Prika??i naziv"
 
 #. module: auto_backup
-#: code:addons/auto_backup/models/db_backup.py:119
+#: code:addons/auto_backup/models/db_backup.py:114
 #, python-format
 msgid ""
 "Do not save backups on your filestore, or you will backup your backups too!"
 msgstr ""
 
+#. module: auto_backup
+#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+msgid "Execute backup"
+msgstr ""
+
 #. module: auto_backup
 #: model:ir.actions.server,name:auto_backup.action_server_backup
 msgid "Execute backup(s)"
@@ -232,11 +245,6 @@ msgstr ""
 msgid "SFTP Settings"
 msgstr ""
 
-#. module: auto_backup
-#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_search
-msgid "Search options"
-msgstr ""
-
 #. module: auto_backup
 #: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
 msgid "Search the action named 'Backup scheduler'."
@@ -245,8 +253,7 @@ msgstr ""
 #. module: auto_backup
 #: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
 msgid ""
-"Set the scheduler to active and fill in how often you want backups "
-"generated."
+"Set the scheduler to active and fill in how often you want backups generated."
 msgstr ""
 
 #. module: auto_backup
@@ -280,8 +287,8 @@ msgstr ""
 #. module: auto_backup
 #: model:ir.model.fields,help:auto_backup.field_db_backup_sftp_user
 msgid ""
-"The username where the SFTP connection should be made with. This is the user"
-" on the external server."
+"The username where the SFTP connection should be made with. This is the user "
+"on the external server."
 msgstr ""
 
 #. module: auto_backup
@@ -301,11 +308,6 @@ msgstr ""
 msgid "Warning:"
 msgstr ""
 
-#. module: auto_backup
-#: model:ir.model,name:auto_backup.model_db_backup
-msgid "db.backup"
-msgstr ""
-
 #. module: auto_backup
 #: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
 msgid "john"
diff --git a/auto_backup/i18n/ca.po b/auto_backup/i18n/ca.po
index 11362e8440e..8548f923c4f 100644
--- a/auto_backup/i18n/ca.po
+++ b/auto_backup/i18n/ca.po
@@ -1,7 +1,7 @@
 # Translation of Odoo Server.
 # This file contains the translation of the following modules:
 # * auto_backup
-# 
+#
 # Translators:
 # OCA Transbot <transbot@odoo-community.org>, 2018
 msgid ""
@@ -12,10 +12,10 @@ msgstr ""
 "PO-Revision-Date: 2018-03-03 10:08+0000\n"
 "Last-Translator: OCA Transbot <transbot@odoo-community.org>, 2018\n"
 "Language-Team: Catalan (https://www.transifex.com/oca/teams/23907/ca/)\n"
+"Language: ca\n"
 "MIME-Version: 1.0\n"
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: \n"
-"Language: ca\n"
 "Plural-Forms: nplurals=2; plural=(n != 1);\n"
 
 #. module: auto_backup
@@ -252,8 +252,7 @@ msgstr ""
 #. module: auto_backup
 #: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
 msgid ""
-"Set the scheduler to active and fill in how often you want backups "
-"generated."
+"Set the scheduler to active and fill in how often you want backups generated."
 msgstr ""
 
 #. module: auto_backup
@@ -287,8 +286,8 @@ msgstr ""
 #. module: auto_backup
 #: model:ir.model.fields,help:auto_backup.field_db_backup_sftp_user
 msgid ""
-"The username where the SFTP connection should be made with. This is the user"
-" on the external server."
+"The username where the SFTP connection should be made with. This is the user "
+"on the external server."
 msgstr ""
 
 #. module: auto_backup
diff --git a/auto_backup/i18n/cs.po b/auto_backup/i18n/cs.po
index 069d90af40a..ae9cf678bfc 100644
--- a/auto_backup/i18n/cs.po
+++ b/auto_backup/i18n/cs.po
@@ -1,7 +1,7 @@
 # Translation of Odoo Server.
 # This file contains the translation of the following modules:
 # * auto_backup
-# 
+#
 # Translators:
 # OCA Transbot <transbot@odoo-community.org>, 2016
 msgid ""
@@ -12,10 +12,10 @@ msgstr ""
 "PO-Revision-Date: 2017-02-18 02:29+0000\n"
 "Last-Translator: OCA Transbot <transbot@odoo-community.org>, 2016\n"
 "Language-Team: Czech (https://www.transifex.com/oca/teams/23907/cs/)\n"
+"Language: cs\n"
 "MIME-Version: 1.0\n"
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: \n"
-"Language: cs\n"
 "Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;\n"
 
 #. module: auto_backup
@@ -45,13 +45,15 @@ msgid "Backup Failed"
 msgstr ""
 
 #. module: auto_backup
-#: model:mail.message.subtype,name:auto_backup.mail_message_subtype_success
-msgid "Backup Successful"
+#: model:ir.actions.server,name:auto_backup.ir_cron_backup_scheduler_0_ir_actions_server
+#: model:ir.cron,cron_name:auto_backup.ir_cron_backup_scheduler_0
+#: model:ir.cron,name:auto_backup.ir_cron_backup_scheduler_0
+msgid "Backup Scheduler"
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_tree
-msgid "Backups"
+#: model:mail.message.subtype,name:auto_backup.mail_message_subtype_success
+msgid "Backup Successful"
 msgstr ""
 
 #. module: auto_backup
@@ -77,19 +79,19 @@ msgid "Choose the storage method for this backup."
 msgstr ""
 
 #. module: auto_backup
-#: code:addons/auto_backup/models/db_backup.py:251
+#: code:addons/auto_backup/models/db_backup.py:249
 #, python-format
 msgid "Cleanup of old database backups failed."
 msgstr ""
 
 #. module: auto_backup
-#: code:addons/auto_backup/models/db_backup.py:131
+#: code:addons/auto_backup/models/db_backup.py:128
 #, python-format
 msgid "Connection Test Failed!"
 msgstr ""
 
 #. module: auto_backup
-#: code:addons/auto_backup/models/db_backup.py:128
+#: code:addons/auto_backup/models/db_backup.py:123
 #, python-format
 msgid "Connection Test Succeeded!"
 msgstr ""
@@ -105,14 +107,19 @@ msgid "Created on"
 msgstr "Vytvo??eno"
 
 #. module: auto_backup
-#: code:addons/auto_backup/models/db_backup.py:206
+#: model:ir.model,name:auto_backup.model_db_backup
+msgid "Database Backup"
+msgstr ""
+
+#. module: auto_backup
+#: code:addons/auto_backup/models/db_backup.py:203
 #: model:mail.message.subtype,description:auto_backup.mail_message_subtype_failure
 #, python-format
 msgid "Database backup failed."
 msgstr ""
 
 #. module: auto_backup
-#: code:addons/auto_backup/models/db_backup.py:214
+#: code:addons/auto_backup/models/db_backup.py:211
 #: model:mail.message.subtype,description:auto_backup.mail_message_subtype_success
 #, python-format
 msgid "Database backup succeeded."
@@ -120,7 +127,7 @@ msgstr ""
 
 #. module: auto_backup
 #: model:ir.model.fields,field_description:auto_backup.field_db_backup_days_to_keep
-msgid "Days to keep"
+msgid "Days To Keep"
 msgstr ""
 
 #. module: auto_backup
@@ -129,12 +136,17 @@ msgid "Display Name"
 msgstr "Zobrazovan?? n??zev"
 
 #. module: auto_backup
-#: code:addons/auto_backup/models/db_backup.py:119
+#: code:addons/auto_backup/models/db_backup.py:114
 #, python-format
 msgid ""
 "Do not save backups on your filestore, or you will backup your backups too!"
 msgstr ""
 
+#. module: auto_backup
+#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+msgid "Execute backup"
+msgstr ""
+
 #. module: auto_backup
 #: model:ir.actions.server,name:auto_backup.action_server_backup
 msgid "Execute backup(s)"
@@ -232,11 +244,6 @@ msgstr ""
 msgid "SFTP Settings"
 msgstr ""
 
-#. module: auto_backup
-#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_search
-msgid "Search options"
-msgstr ""
-
 #. module: auto_backup
 #: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
 msgid "Search the action named 'Backup scheduler'."
@@ -245,8 +252,7 @@ msgstr ""
 #. module: auto_backup
 #: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
 msgid ""
-"Set the scheduler to active and fill in how often you want backups "
-"generated."
+"Set the scheduler to active and fill in how often you want backups generated."
 msgstr ""
 
 #. module: auto_backup
@@ -280,8 +286,8 @@ msgstr ""
 #. module: auto_backup
 #: model:ir.model.fields,help:auto_backup.field_db_backup_sftp_user
 msgid ""
-"The username where the SFTP connection should be made with. This is the user"
-" on the external server."
+"The username where the SFTP connection should be made with. This is the user "
+"on the external server."
 msgstr ""
 
 #. module: auto_backup
@@ -301,11 +307,6 @@ msgstr ""
 msgid "Warning:"
 msgstr ""
 
-#. module: auto_backup
-#: model:ir.model,name:auto_backup.model_db_backup
-msgid "db.backup"
-msgstr ""
-
 #. module: auto_backup
 #: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
 msgid "john"
diff --git a/auto_backup/i18n/cs_CZ.po b/auto_backup/i18n/cs_CZ.po
index d88e88b7d13..3e49e71ecd6 100644
--- a/auto_backup/i18n/cs_CZ.po
+++ b/auto_backup/i18n/cs_CZ.po
@@ -1,7 +1,7 @@
 # Translation of Odoo Server.
 # This file contains the translation of the following modules:
 # * auto_backup
-# 
+#
 # Translators:
 # Luk???? Spurn?? <lukasspurny8@gmail.com>, 2018
 msgid ""
@@ -11,11 +11,12 @@ msgstr ""
 "POT-Creation-Date: 2018-03-03 10:08+0000\n"
 "PO-Revision-Date: 2018-03-03 10:08+0000\n"
 "Last-Translator: Luk???? Spurn?? <lukasspurny8@gmail.com>, 2018\n"
-"Language-Team: Czech (Czech Republic) (https://www.transifex.com/oca/teams/23907/cs_CZ/)\n"
+"Language-Team: Czech (Czech Republic) (https://www.transifex.com/oca/"
+"teams/23907/cs_CZ/)\n"
+"Language: cs_CZ\n"
 "MIME-Version: 1.0\n"
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: \n"
-"Language: cs_CZ\n"
 "Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;\n"
 
 #. module: auto_backup
@@ -252,8 +253,7 @@ msgstr ""
 #. module: auto_backup
 #: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
 msgid ""
-"Set the scheduler to active and fill in how often you want backups "
-"generated."
+"Set the scheduler to active and fill in how often you want backups generated."
 msgstr ""
 
 #. module: auto_backup
@@ -287,8 +287,8 @@ msgstr ""
 #. module: auto_backup
 #: model:ir.model.fields,help:auto_backup.field_db_backup_sftp_user
 msgid ""
-"The username where the SFTP connection should be made with. This is the user"
-" on the external server."
+"The username where the SFTP connection should be made with. This is the user "
+"on the external server."
 msgstr ""
 
 #. module: auto_backup
diff --git a/auto_backup/i18n/da.po b/auto_backup/i18n/da.po
index dd85e5a2e0a..eeab6c914f9 100644
--- a/auto_backup/i18n/da.po
+++ b/auto_backup/i18n/da.po
@@ -1,7 +1,7 @@
 # Translation of Odoo Server.
 # This file contains the translation of the following modules:
 # * auto_backup
-# 
+#
 # Translators:
 # OCA Transbot <transbot@odoo-community.org>, 2016
 msgid ""
@@ -12,10 +12,10 @@ msgstr ""
 "PO-Revision-Date: 2017-02-18 02:29+0000\n"
 "Last-Translator: OCA Transbot <transbot@odoo-community.org>, 2016\n"
 "Language-Team: Danish (https://www.transifex.com/oca/teams/23907/da/)\n"
+"Language: da\n"
 "MIME-Version: 1.0\n"
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: \n"
-"Language: da\n"
 "Plural-Forms: nplurals=2; plural=(n != 1);\n"
 
 #. module: auto_backup
@@ -45,13 +45,15 @@ msgid "Backup Failed"
 msgstr ""
 
 #. module: auto_backup
-#: model:mail.message.subtype,name:auto_backup.mail_message_subtype_success
-msgid "Backup Successful"
+#: model:ir.actions.server,name:auto_backup.ir_cron_backup_scheduler_0_ir_actions_server
+#: model:ir.cron,cron_name:auto_backup.ir_cron_backup_scheduler_0
+#: model:ir.cron,name:auto_backup.ir_cron_backup_scheduler_0
+msgid "Backup Scheduler"
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_tree
-msgid "Backups"
+#: model:mail.message.subtype,name:auto_backup.mail_message_subtype_success
+msgid "Backup Successful"
 msgstr ""
 
 #. module: auto_backup
@@ -77,19 +79,19 @@ msgid "Choose the storage method for this backup."
 msgstr ""
 
 #. module: auto_backup
-#: code:addons/auto_backup/models/db_backup.py:251
+#: code:addons/auto_backup/models/db_backup.py:249
 #, python-format
 msgid "Cleanup of old database backups failed."
 msgstr ""
 
 #. module: auto_backup
-#: code:addons/auto_backup/models/db_backup.py:131
+#: code:addons/auto_backup/models/db_backup.py:128
 #, python-format
 msgid "Connection Test Failed!"
 msgstr ""
 
 #. module: auto_backup
-#: code:addons/auto_backup/models/db_backup.py:128
+#: code:addons/auto_backup/models/db_backup.py:123
 #, python-format
 msgid "Connection Test Succeeded!"
 msgstr ""
@@ -105,14 +107,19 @@ msgid "Created on"
 msgstr "Oprettet den"
 
 #. module: auto_backup
-#: code:addons/auto_backup/models/db_backup.py:206
+#: model:ir.model,name:auto_backup.model_db_backup
+msgid "Database Backup"
+msgstr ""
+
+#. module: auto_backup
+#: code:addons/auto_backup/models/db_backup.py:203
 #: model:mail.message.subtype,description:auto_backup.mail_message_subtype_failure
 #, python-format
 msgid "Database backup failed."
 msgstr ""
 
 #. module: auto_backup
-#: code:addons/auto_backup/models/db_backup.py:214
+#: code:addons/auto_backup/models/db_backup.py:211
 #: model:mail.message.subtype,description:auto_backup.mail_message_subtype_success
 #, python-format
 msgid "Database backup succeeded."
@@ -120,7 +127,7 @@ msgstr ""
 
 #. module: auto_backup
 #: model:ir.model.fields,field_description:auto_backup.field_db_backup_days_to_keep
-msgid "Days to keep"
+msgid "Days To Keep"
 msgstr ""
 
 #. module: auto_backup
@@ -129,12 +136,17 @@ msgid "Display Name"
 msgstr "Vist navn"
 
 #. module: auto_backup
-#: code:addons/auto_backup/models/db_backup.py:119
+#: code:addons/auto_backup/models/db_backup.py:114
 #, python-format
 msgid ""
 "Do not save backups on your filestore, or you will backup your backups too!"
 msgstr ""
 
+#. module: auto_backup
+#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+msgid "Execute backup"
+msgstr ""
+
 #. module: auto_backup
 #: model:ir.actions.server,name:auto_backup.action_server_backup
 msgid "Execute backup(s)"
@@ -232,11 +244,6 @@ msgstr ""
 msgid "SFTP Settings"
 msgstr ""
 
-#. module: auto_backup
-#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_search
-msgid "Search options"
-msgstr ""
-
 #. module: auto_backup
 #: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
 msgid "Search the action named 'Backup scheduler'."
@@ -245,8 +252,7 @@ msgstr ""
 #. module: auto_backup
 #: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
 msgid ""
-"Set the scheduler to active and fill in how often you want backups "
-"generated."
+"Set the scheduler to active and fill in how often you want backups generated."
 msgstr ""
 
 #. module: auto_backup
@@ -280,8 +286,8 @@ msgstr ""
 #. module: auto_backup
 #: model:ir.model.fields,help:auto_backup.field_db_backup_sftp_user
 msgid ""
-"The username where the SFTP connection should be made with. This is the user"
-" on the external server."
+"The username where the SFTP connection should be made with. This is the user "
+"on the external server."
 msgstr ""
 
 #. module: auto_backup
@@ -301,11 +307,6 @@ msgstr ""
 msgid "Warning:"
 msgstr ""
 
-#. module: auto_backup
-#: model:ir.model,name:auto_backup.model_db_backup
-msgid "db.backup"
-msgstr ""
-
 #. module: auto_backup
 #: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
 msgid "john"
diff --git a/auto_backup/i18n/de.po b/auto_backup/i18n/de.po
index 1c8ecf1b48f..a7d675a2857 100644
--- a/auto_backup/i18n/de.po
+++ b/auto_backup/i18n/de.po
@@ -1,7 +1,7 @@
 # Translation of Odoo Server.
 # This file contains the translation of the following modules:
 # * auto_backup
-# 
+#
 # Translators:
 # OCA Transbot <transbot@odoo-community.org>, 2018
 msgid ""
@@ -12,10 +12,10 @@ msgstr ""
 "PO-Revision-Date: 2018-03-03 10:08+0000\n"
 "Last-Translator: OCA Transbot <transbot@odoo-community.org>, 2018\n"
 "Language-Team: German (https://www.transifex.com/oca/teams/23907/de/)\n"
+"Language: de\n"
 "MIME-Version: 1.0\n"
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: \n"
-"Language: de\n"
 "Plural-Forms: nplurals=2; plural=(n != 1);\n"
 
 #. module: auto_backup
@@ -254,8 +254,7 @@ msgstr "Suchen Sie die Aktion mit dem Namen \"Backup Scheduler\"."
 #. module: auto_backup
 #: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
 msgid ""
-"Set the scheduler to active and fill in how often you want backups "
-"generated."
+"Set the scheduler to active and fill in how often you want backups generated."
 msgstr ""
 "Setzen Sie die Aktion auf aktiv und geben Sie an wie oft die Sicherungen "
 "erstellt werden soll."
@@ -291,8 +290,8 @@ msgstr "Der Port auf dem FTP-Server, der SSH/SFTP Anfragen annimmt."
 #. module: auto_backup
 #: model:ir.model.fields,help:auto_backup.field_db_backup_sftp_user
 msgid ""
-"The username where the SFTP connection should be made with. This is the user"
-" on the external server."
+"The username where the SFTP connection should be made with. This is the user "
+"on the external server."
 msgstr ""
 "Der Benutzername mit dem die SFTP-Verbindung mit hergestellt werden soll. "
 "Dies ist der Benutzer auf dem externen Server."
diff --git a/auto_backup/i18n/el_GR.po b/auto_backup/i18n/el_GR.po
index 9b37468857c..442bfb84744 100644
--- a/auto_backup/i18n/el_GR.po
+++ b/auto_backup/i18n/el_GR.po
@@ -1,7 +1,7 @@
 # Translation of Odoo Server.
 # This file contains the translation of the following modules:
 # * auto_backup
-# 
+#
 # Translators:
 # OCA Transbot <transbot@odoo-community.org>, 2016
 msgid ""
@@ -11,11 +11,12 @@ msgstr ""
 "POT-Creation-Date: 2017-02-18 02:29+0000\n"
 "PO-Revision-Date: 2017-02-18 02:29+0000\n"
 "Last-Translator: OCA Transbot <transbot@odoo-community.org>, 2016\n"
-"Language-Team: Greek (Greece) (https://www.transifex.com/oca/teams/23907/el_GR/)\n"
+"Language-Team: Greek (Greece) (https://www.transifex.com/oca/teams/23907/"
+"el_GR/)\n"
+"Language: el_GR\n"
 "MIME-Version: 1.0\n"
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: \n"
-"Language: el_GR\n"
 "Plural-Forms: nplurals=2; plural=(n != 1);\n"
 
 #. module: auto_backup
@@ -45,13 +46,15 @@ msgid "Backup Failed"
 msgstr ""
 
 #. module: auto_backup
-#: model:mail.message.subtype,name:auto_backup.mail_message_subtype_success
-msgid "Backup Successful"
+#: model:ir.actions.server,name:auto_backup.ir_cron_backup_scheduler_0_ir_actions_server
+#: model:ir.cron,cron_name:auto_backup.ir_cron_backup_scheduler_0
+#: model:ir.cron,name:auto_backup.ir_cron_backup_scheduler_0
+msgid "Backup Scheduler"
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_tree
-msgid "Backups"
+#: model:mail.message.subtype,name:auto_backup.mail_message_subtype_success
+msgid "Backup Successful"
 msgstr ""
 
 #. module: auto_backup
@@ -77,19 +80,19 @@ msgid "Choose the storage method for this backup."
 msgstr ""
 
 #. module: auto_backup
-#: code:addons/auto_backup/models/db_backup.py:251
+#: code:addons/auto_backup/models/db_backup.py:249
 #, python-format
 msgid "Cleanup of old database backups failed."
 msgstr ""
 
 #. module: auto_backup
-#: code:addons/auto_backup/models/db_backup.py:131
+#: code:addons/auto_backup/models/db_backup.py:128
 #, python-format
 msgid "Connection Test Failed!"
 msgstr ""
 
 #. module: auto_backup
-#: code:addons/auto_backup/models/db_backup.py:128
+#: code:addons/auto_backup/models/db_backup.py:123
 #, python-format
 msgid "Connection Test Succeeded!"
 msgstr ""
@@ -105,14 +108,19 @@ msgid "Created on"
 msgstr "?????????????????????????? ??????"
 
 #. module: auto_backup
-#: code:addons/auto_backup/models/db_backup.py:206
+#: model:ir.model,name:auto_backup.model_db_backup
+msgid "Database Backup"
+msgstr ""
+
+#. module: auto_backup
+#: code:addons/auto_backup/models/db_backup.py:203
 #: model:mail.message.subtype,description:auto_backup.mail_message_subtype_failure
 #, python-format
 msgid "Database backup failed."
 msgstr ""
 
 #. module: auto_backup
-#: code:addons/auto_backup/models/db_backup.py:214
+#: code:addons/auto_backup/models/db_backup.py:211
 #: model:mail.message.subtype,description:auto_backup.mail_message_subtype_success
 #, python-format
 msgid "Database backup succeeded."
@@ -120,7 +128,7 @@ msgstr ""
 
 #. module: auto_backup
 #: model:ir.model.fields,field_description:auto_backup.field_db_backup_days_to_keep
-msgid "Days to keep"
+msgid "Days To Keep"
 msgstr ""
 
 #. module: auto_backup
@@ -129,12 +137,17 @@ msgid "Display Name"
 msgstr ""
 
 #. module: auto_backup
-#: code:addons/auto_backup/models/db_backup.py:119
+#: code:addons/auto_backup/models/db_backup.py:114
 #, python-format
 msgid ""
 "Do not save backups on your filestore, or you will backup your backups too!"
 msgstr ""
 
+#. module: auto_backup
+#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+msgid "Execute backup"
+msgstr ""
+
 #. module: auto_backup
 #: model:ir.actions.server,name:auto_backup.action_server_backup
 msgid "Execute backup(s)"
@@ -232,11 +245,6 @@ msgstr ""
 msgid "SFTP Settings"
 msgstr ""
 
-#. module: auto_backup
-#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_search
-msgid "Search options"
-msgstr ""
-
 #. module: auto_backup
 #: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
 msgid "Search the action named 'Backup scheduler'."
@@ -245,8 +253,7 @@ msgstr ""
 #. module: auto_backup
 #: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
 msgid ""
-"Set the scheduler to active and fill in how often you want backups "
-"generated."
+"Set the scheduler to active and fill in how often you want backups generated."
 msgstr ""
 
 #. module: auto_backup
@@ -280,8 +287,8 @@ msgstr ""
 #. module: auto_backup
 #: model:ir.model.fields,help:auto_backup.field_db_backup_sftp_user
 msgid ""
-"The username where the SFTP connection should be made with. This is the user"
-" on the external server."
+"The username where the SFTP connection should be made with. This is the user "
+"on the external server."
 msgstr ""
 
 #. module: auto_backup
@@ -301,11 +308,6 @@ msgstr ""
 msgid "Warning:"
 msgstr ""
 
-#. module: auto_backup
-#: model:ir.model,name:auto_backup.model_db_backup
-msgid "db.backup"
-msgstr ""
-
 #. module: auto_backup
 #: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
 msgid "john"
diff --git a/auto_backup/i18n/en_GB.po b/auto_backup/i18n/en_GB.po
index d5a6ea15abe..9f790e8659a 100644
--- a/auto_backup/i18n/en_GB.po
+++ b/auto_backup/i18n/en_GB.po
@@ -1,7 +1,7 @@
 # Translation of Odoo Server.
 # This file contains the translation of the following modules:
 # * auto_backup
-# 
+#
 # Translators:
 # OCA Transbot <transbot@odoo-community.org>, 2016
 msgid ""
@@ -11,11 +11,12 @@ msgstr ""
 "POT-Creation-Date: 2017-02-18 02:29+0000\n"
 "PO-Revision-Date: 2017-02-18 02:29+0000\n"
 "Last-Translator: OCA Transbot <transbot@odoo-community.org>, 2016\n"
-"Language-Team: English (United Kingdom) (https://www.transifex.com/oca/teams/23907/en_GB/)\n"
+"Language-Team: English (United Kingdom) (https://www.transifex.com/oca/"
+"teams/23907/en_GB/)\n"
+"Language: en_GB\n"
 "MIME-Version: 1.0\n"
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: \n"
-"Language: en_GB\n"
 "Plural-Forms: nplurals=2; plural=(n != 1);\n"
 
 #. module: auto_backup
@@ -45,13 +46,15 @@ msgid "Backup Failed"
 msgstr ""
 
 #. module: auto_backup
-#: model:mail.message.subtype,name:auto_backup.mail_message_subtype_success
-msgid "Backup Successful"
+#: model:ir.actions.server,name:auto_backup.ir_cron_backup_scheduler_0_ir_actions_server
+#: model:ir.cron,cron_name:auto_backup.ir_cron_backup_scheduler_0
+#: model:ir.cron,name:auto_backup.ir_cron_backup_scheduler_0
+msgid "Backup Scheduler"
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_tree
-msgid "Backups"
+#: model:mail.message.subtype,name:auto_backup.mail_message_subtype_success
+msgid "Backup Successful"
 msgstr ""
 
 #. module: auto_backup
@@ -77,19 +80,19 @@ msgid "Choose the storage method for this backup."
 msgstr ""
 
 #. module: auto_backup
-#: code:addons/auto_backup/models/db_backup.py:251
+#: code:addons/auto_backup/models/db_backup.py:249
 #, python-format
 msgid "Cleanup of old database backups failed."
 msgstr ""
 
 #. module: auto_backup
-#: code:addons/auto_backup/models/db_backup.py:131
+#: code:addons/auto_backup/models/db_backup.py:128
 #, python-format
 msgid "Connection Test Failed!"
 msgstr ""
 
 #. module: auto_backup
-#: code:addons/auto_backup/models/db_backup.py:128
+#: code:addons/auto_backup/models/db_backup.py:123
 #, python-format
 msgid "Connection Test Succeeded!"
 msgstr ""
@@ -105,14 +108,19 @@ msgid "Created on"
 msgstr "Created on"
 
 #. module: auto_backup
-#: code:addons/auto_backup/models/db_backup.py:206
+#: model:ir.model,name:auto_backup.model_db_backup
+msgid "Database Backup"
+msgstr ""
+
+#. module: auto_backup
+#: code:addons/auto_backup/models/db_backup.py:203
 #: model:mail.message.subtype,description:auto_backup.mail_message_subtype_failure
 #, python-format
 msgid "Database backup failed."
 msgstr ""
 
 #. module: auto_backup
-#: code:addons/auto_backup/models/db_backup.py:214
+#: code:addons/auto_backup/models/db_backup.py:211
 #: model:mail.message.subtype,description:auto_backup.mail_message_subtype_success
 #, python-format
 msgid "Database backup succeeded."
@@ -120,7 +128,7 @@ msgstr ""
 
 #. module: auto_backup
 #: model:ir.model.fields,field_description:auto_backup.field_db_backup_days_to_keep
-msgid "Days to keep"
+msgid "Days To Keep"
 msgstr ""
 
 #. module: auto_backup
@@ -129,12 +137,17 @@ msgid "Display Name"
 msgstr "Display Name"
 
 #. module: auto_backup
-#: code:addons/auto_backup/models/db_backup.py:119
+#: code:addons/auto_backup/models/db_backup.py:114
 #, python-format
 msgid ""
 "Do not save backups on your filestore, or you will backup your backups too!"
 msgstr ""
 
+#. module: auto_backup
+#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+msgid "Execute backup"
+msgstr ""
+
 #. module: auto_backup
 #: model:ir.actions.server,name:auto_backup.action_server_backup
 msgid "Execute backup(s)"
@@ -232,11 +245,6 @@ msgstr ""
 msgid "SFTP Settings"
 msgstr ""
 
-#. module: auto_backup
-#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_search
-msgid "Search options"
-msgstr ""
-
 #. module: auto_backup
 #: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
 msgid "Search the action named 'Backup scheduler'."
@@ -245,8 +253,7 @@ msgstr ""
 #. module: auto_backup
 #: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
 msgid ""
-"Set the scheduler to active and fill in how often you want backups "
-"generated."
+"Set the scheduler to active and fill in how often you want backups generated."
 msgstr ""
 
 #. module: auto_backup
@@ -280,8 +287,8 @@ msgstr ""
 #. module: auto_backup
 #: model:ir.model.fields,help:auto_backup.field_db_backup_sftp_user
 msgid ""
-"The username where the SFTP connection should be made with. This is the user"
-" on the external server."
+"The username where the SFTP connection should be made with. This is the user "
+"on the external server."
 msgstr ""
 
 #. module: auto_backup
@@ -301,11 +308,6 @@ msgstr ""
 msgid "Warning:"
 msgstr ""
 
-#. module: auto_backup
-#: model:ir.model,name:auto_backup.model_db_backup
-msgid "db.backup"
-msgstr ""
-
 #. module: auto_backup
 #: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
 msgid "john"
diff --git a/auto_backup/i18n/es.po b/auto_backup/i18n/es.po
index f285a32fb50..6d9f3bce149 100644
--- a/auto_backup/i18n/es.po
+++ b/auto_backup/i18n/es.po
@@ -1,7 +1,7 @@
 # Translation of Odoo Server.
 # This file contains the translation of the following modules:
 # * auto_backup
-# 
+#
 # Translators:
 # OCA Transbot <transbot@odoo-community.org>, 2018
 msgid ""
@@ -12,10 +12,10 @@ msgstr ""
 "PO-Revision-Date: 2018-03-03 10:08+0000\n"
 "Last-Translator: OCA Transbot <transbot@odoo-community.org>, 2018\n"
 "Language-Team: Spanish (https://www.transifex.com/oca/teams/23907/es/)\n"
+"Language: es\n"
 "MIME-Version: 1.0\n"
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: \n"
-"Language: es\n"
 "Plural-Forms: nplurals=2; plural=(n != 1);\n"
 
 #. module: auto_backup
@@ -264,8 +264,7 @@ msgstr "Buscar la acci??n llamada 'Backup sheduler'."
 #. module: auto_backup
 #: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
 msgid ""
-"Set the scheduler to active and fill in how often you want backups "
-"generated."
+"Set the scheduler to active and fill in how often you want backups generated."
 msgstr ""
 "Ajuste el programador para activar y rellenar con qu?? frecuencia desea las "
 "copias de seguridad generadas."
@@ -305,8 +304,8 @@ msgstr "El puerto en el servidor FTP que acepta llamadas de SSH/SFTP."
 #. module: auto_backup
 #: model:ir.model.fields,help:auto_backup.field_db_backup_sftp_user
 msgid ""
-"The username where the SFTP connection should be made with. This is the user"
-" on the external server."
+"The username where the SFTP connection should be made with. This is the user "
+"on the external server."
 msgstr ""
 "El nombre de usuario donde la conexi??n SFTP se debe hacer con. Este es el "
 "usuario en el servidor externo."
diff --git a/auto_backup/i18n/es_AR.po b/auto_backup/i18n/es_AR.po
index 35c2efa2e56..bbe4d1bc7ea 100644
--- a/auto_backup/i18n/es_AR.po
+++ b/auto_backup/i18n/es_AR.po
@@ -1,7 +1,7 @@
 # Translation of Odoo Server.
 # This file contains the translation of the following modules:
 # * auto_backup
-# 
+#
 # Translators:
 # OCA Transbot <transbot@odoo-community.org>, 2016
 msgid ""
@@ -11,11 +11,12 @@ msgstr ""
 "POT-Creation-Date: 2017-02-18 02:29+0000\n"
 "PO-Revision-Date: 2017-02-18 02:29+0000\n"
 "Last-Translator: OCA Transbot <transbot@odoo-community.org>, 2016\n"
-"Language-Team: Spanish (Argentina) (https://www.transifex.com/oca/teams/23907/es_AR/)\n"
+"Language-Team: Spanish (Argentina) (https://www.transifex.com/oca/"
+"teams/23907/es_AR/)\n"
+"Language: es_AR\n"
 "MIME-Version: 1.0\n"
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: \n"
-"Language: es_AR\n"
 "Plural-Forms: nplurals=2; plural=(n != 1);\n"
 
 #. module: auto_backup
@@ -45,13 +46,15 @@ msgid "Backup Failed"
 msgstr ""
 
 #. module: auto_backup
-#: model:mail.message.subtype,name:auto_backup.mail_message_subtype_success
-msgid "Backup Successful"
+#: model:ir.actions.server,name:auto_backup.ir_cron_backup_scheduler_0_ir_actions_server
+#: model:ir.cron,cron_name:auto_backup.ir_cron_backup_scheduler_0
+#: model:ir.cron,name:auto_backup.ir_cron_backup_scheduler_0
+msgid "Backup Scheduler"
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_tree
-msgid "Backups"
+#: model:mail.message.subtype,name:auto_backup.mail_message_subtype_success
+msgid "Backup Successful"
 msgstr ""
 
 #. module: auto_backup
@@ -77,19 +80,19 @@ msgid "Choose the storage method for this backup."
 msgstr ""
 
 #. module: auto_backup
-#: code:addons/auto_backup/models/db_backup.py:251
+#: code:addons/auto_backup/models/db_backup.py:249
 #, python-format
 msgid "Cleanup of old database backups failed."
 msgstr ""
 
 #. module: auto_backup
-#: code:addons/auto_backup/models/db_backup.py:131
+#: code:addons/auto_backup/models/db_backup.py:128
 #, python-format
 msgid "Connection Test Failed!"
 msgstr ""
 
 #. module: auto_backup
-#: code:addons/auto_backup/models/db_backup.py:128
+#: code:addons/auto_backup/models/db_backup.py:123
 #, python-format
 msgid "Connection Test Succeeded!"
 msgstr ""
@@ -105,14 +108,19 @@ msgid "Created on"
 msgstr "Creado en"
 
 #. module: auto_backup
-#: code:addons/auto_backup/models/db_backup.py:206
+#: model:ir.model,name:auto_backup.model_db_backup
+msgid "Database Backup"
+msgstr ""
+
+#. module: auto_backup
+#: code:addons/auto_backup/models/db_backup.py:203
 #: model:mail.message.subtype,description:auto_backup.mail_message_subtype_failure
 #, python-format
 msgid "Database backup failed."
 msgstr ""
 
 #. module: auto_backup
-#: code:addons/auto_backup/models/db_backup.py:214
+#: code:addons/auto_backup/models/db_backup.py:211
 #: model:mail.message.subtype,description:auto_backup.mail_message_subtype_success
 #, python-format
 msgid "Database backup succeeded."
@@ -120,7 +128,7 @@ msgstr ""
 
 #. module: auto_backup
 #: model:ir.model.fields,field_description:auto_backup.field_db_backup_days_to_keep
-msgid "Days to keep"
+msgid "Days To Keep"
 msgstr ""
 
 #. module: auto_backup
@@ -129,12 +137,17 @@ msgid "Display Name"
 msgstr "Mostrar Nombre"
 
 #. module: auto_backup
-#: code:addons/auto_backup/models/db_backup.py:119
+#: code:addons/auto_backup/models/db_backup.py:114
 #, python-format
 msgid ""
 "Do not save backups on your filestore, or you will backup your backups too!"
 msgstr ""
 
+#. module: auto_backup
+#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+msgid "Execute backup"
+msgstr ""
+
 #. module: auto_backup
 #: model:ir.actions.server,name:auto_backup.action_server_backup
 msgid "Execute backup(s)"
@@ -232,11 +245,6 @@ msgstr ""
 msgid "SFTP Settings"
 msgstr ""
 
-#. module: auto_backup
-#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_search
-msgid "Search options"
-msgstr ""
-
 #. module: auto_backup
 #: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
 msgid "Search the action named 'Backup scheduler'."
@@ -245,8 +253,7 @@ msgstr ""
 #. module: auto_backup
 #: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
 msgid ""
-"Set the scheduler to active and fill in how often you want backups "
-"generated."
+"Set the scheduler to active and fill in how often you want backups generated."
 msgstr ""
 
 #. module: auto_backup
@@ -280,8 +287,8 @@ msgstr ""
 #. module: auto_backup
 #: model:ir.model.fields,help:auto_backup.field_db_backup_sftp_user
 msgid ""
-"The username where the SFTP connection should be made with. This is the user"
-" on the external server."
+"The username where the SFTP connection should be made with. This is the user "
+"on the external server."
 msgstr ""
 
 #. module: auto_backup
@@ -301,11 +308,6 @@ msgstr ""
 msgid "Warning:"
 msgstr ""
 
-#. module: auto_backup
-#: model:ir.model,name:auto_backup.model_db_backup
-msgid "db.backup"
-msgstr ""
-
 #. module: auto_backup
 #: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
 msgid "john"
diff --git a/auto_backup/i18n/es_CL.po b/auto_backup/i18n/es_CL.po
index 261bb4bdbf1..b15d5e4478a 100644
--- a/auto_backup/i18n/es_CL.po
+++ b/auto_backup/i18n/es_CL.po
@@ -1,7 +1,7 @@
 # Translation of Odoo Server.
 # This file contains the translation of the following modules:
 # * auto_backup
-# 
+#
 # Translators:
 # OCA Transbot <transbot@odoo-community.org>, 2017
 msgid ""
@@ -11,11 +11,12 @@ msgstr ""
 "POT-Creation-Date: 2017-02-18 02:29+0000\n"
 "PO-Revision-Date: 2017-02-18 02:29+0000\n"
 "Last-Translator: OCA Transbot <transbot@odoo-community.org>, 2017\n"
-"Language-Team: Spanish (Chile) (https://www.transifex.com/oca/teams/23907/es_CL/)\n"
+"Language-Team: Spanish (Chile) (https://www.transifex.com/oca/teams/23907/"
+"es_CL/)\n"
+"Language: es_CL\n"
 "MIME-Version: 1.0\n"
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: \n"
-"Language: es_CL\n"
 "Plural-Forms: nplurals=2; plural=(n != 1);\n"
 
 #. module: auto_backup
@@ -45,13 +46,15 @@ msgid "Backup Failed"
 msgstr ""
 
 #. module: auto_backup
-#: model:mail.message.subtype,name:auto_backup.mail_message_subtype_success
-msgid "Backup Successful"
+#: model:ir.actions.server,name:auto_backup.ir_cron_backup_scheduler_0_ir_actions_server
+#: model:ir.cron,cron_name:auto_backup.ir_cron_backup_scheduler_0
+#: model:ir.cron,name:auto_backup.ir_cron_backup_scheduler_0
+msgid "Backup Scheduler"
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_tree
-msgid "Backups"
+#: model:mail.message.subtype,name:auto_backup.mail_message_subtype_success
+msgid "Backup Successful"
 msgstr ""
 
 #. module: auto_backup
@@ -77,19 +80,19 @@ msgid "Choose the storage method for this backup."
 msgstr ""
 
 #. module: auto_backup
-#: code:addons/auto_backup/models/db_backup.py:251
+#: code:addons/auto_backup/models/db_backup.py:249
 #, python-format
 msgid "Cleanup of old database backups failed."
 msgstr ""
 
 #. module: auto_backup
-#: code:addons/auto_backup/models/db_backup.py:131
+#: code:addons/auto_backup/models/db_backup.py:128
 #, python-format
 msgid "Connection Test Failed!"
 msgstr ""
 
 #. module: auto_backup
-#: code:addons/auto_backup/models/db_backup.py:128
+#: code:addons/auto_backup/models/db_backup.py:123
 #, python-format
 msgid "Connection Test Succeeded!"
 msgstr ""
@@ -105,14 +108,19 @@ msgid "Created on"
 msgstr "Creado en"
 
 #. module: auto_backup
-#: code:addons/auto_backup/models/db_backup.py:206
+#: model:ir.model,name:auto_backup.model_db_backup
+msgid "Database Backup"
+msgstr ""
+
+#. module: auto_backup
+#: code:addons/auto_backup/models/db_backup.py:203
 #: model:mail.message.subtype,description:auto_backup.mail_message_subtype_failure
 #, python-format
 msgid "Database backup failed."
 msgstr ""
 
 #. module: auto_backup
-#: code:addons/auto_backup/models/db_backup.py:214
+#: code:addons/auto_backup/models/db_backup.py:211
 #: model:mail.message.subtype,description:auto_backup.mail_message_subtype_success
 #, python-format
 msgid "Database backup succeeded."
@@ -120,7 +128,7 @@ msgstr ""
 
 #. module: auto_backup
 #: model:ir.model.fields,field_description:auto_backup.field_db_backup_days_to_keep
-msgid "Days to keep"
+msgid "Days To Keep"
 msgstr ""
 
 #. module: auto_backup
@@ -129,12 +137,17 @@ msgid "Display Name"
 msgstr "Nombre mostrado"
 
 #. module: auto_backup
-#: code:addons/auto_backup/models/db_backup.py:119
+#: code:addons/auto_backup/models/db_backup.py:114
 #, python-format
 msgid ""
 "Do not save backups on your filestore, or you will backup your backups too!"
 msgstr ""
 
+#. module: auto_backup
+#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+msgid "Execute backup"
+msgstr ""
+
 #. module: auto_backup
 #: model:ir.actions.server,name:auto_backup.action_server_backup
 msgid "Execute backup(s)"
@@ -232,11 +245,6 @@ msgstr ""
 msgid "SFTP Settings"
 msgstr ""
 
-#. module: auto_backup
-#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_search
-msgid "Search options"
-msgstr ""
-
 #. module: auto_backup
 #: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
 msgid "Search the action named 'Backup scheduler'."
@@ -245,8 +253,7 @@ msgstr ""
 #. module: auto_backup
 #: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
 msgid ""
-"Set the scheduler to active and fill in how often you want backups "
-"generated."
+"Set the scheduler to active and fill in how often you want backups generated."
 msgstr ""
 
 #. module: auto_backup
@@ -280,8 +287,8 @@ msgstr ""
 #. module: auto_backup
 #: model:ir.model.fields,help:auto_backup.field_db_backup_sftp_user
 msgid ""
-"The username where the SFTP connection should be made with. This is the user"
-" on the external server."
+"The username where the SFTP connection should be made with. This is the user "
+"on the external server."
 msgstr ""
 
 #. module: auto_backup
@@ -301,11 +308,6 @@ msgstr ""
 msgid "Warning:"
 msgstr ""
 
-#. module: auto_backup
-#: model:ir.model,name:auto_backup.model_db_backup
-msgid "db.backup"
-msgstr ""
-
 #. module: auto_backup
 #: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
 msgid "john"
diff --git a/auto_backup/i18n/es_CO.po b/auto_backup/i18n/es_CO.po
index 3eeaf147eca..82b2c1d3a1e 100644
--- a/auto_backup/i18n/es_CO.po
+++ b/auto_backup/i18n/es_CO.po
@@ -1,7 +1,7 @@
 # Translation of Odoo Server.
 # This file contains the translation of the following modules:
 # * auto_backup
-# 
+#
 # Translators:
 # OCA Transbot <transbot@odoo-community.org>, 2016
 msgid ""
@@ -11,11 +11,12 @@ msgstr ""
 "POT-Creation-Date: 2017-02-18 02:29+0000\n"
 "PO-Revision-Date: 2017-02-18 02:29+0000\n"
 "Last-Translator: OCA Transbot <transbot@odoo-community.org>, 2016\n"
-"Language-Team: Spanish (Colombia) (https://www.transifex.com/oca/teams/23907/es_CO/)\n"
+"Language-Team: Spanish (Colombia) (https://www.transifex.com/oca/teams/23907/"
+"es_CO/)\n"
+"Language: es_CO\n"
 "MIME-Version: 1.0\n"
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: \n"
-"Language: es_CO\n"
 "Plural-Forms: nplurals=2; plural=(n != 1);\n"
 
 #. module: auto_backup
@@ -45,13 +46,15 @@ msgid "Backup Failed"
 msgstr ""
 
 #. module: auto_backup
-#: model:mail.message.subtype,name:auto_backup.mail_message_subtype_success
-msgid "Backup Successful"
+#: model:ir.actions.server,name:auto_backup.ir_cron_backup_scheduler_0_ir_actions_server
+#: model:ir.cron,cron_name:auto_backup.ir_cron_backup_scheduler_0
+#: model:ir.cron,name:auto_backup.ir_cron_backup_scheduler_0
+msgid "Backup Scheduler"
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_tree
-msgid "Backups"
+#: model:mail.message.subtype,name:auto_backup.mail_message_subtype_success
+msgid "Backup Successful"
 msgstr ""
 
 #. module: auto_backup
@@ -77,19 +80,19 @@ msgid "Choose the storage method for this backup."
 msgstr ""
 
 #. module: auto_backup
-#: code:addons/auto_backup/models/db_backup.py:251
+#: code:addons/auto_backup/models/db_backup.py:249
 #, python-format
 msgid "Cleanup of old database backups failed."
 msgstr ""
 
 #. module: auto_backup
-#: code:addons/auto_backup/models/db_backup.py:131
+#: code:addons/auto_backup/models/db_backup.py:128
 #, python-format
 msgid "Connection Test Failed!"
 msgstr ""
 
 #. module: auto_backup
-#: code:addons/auto_backup/models/db_backup.py:128
+#: code:addons/auto_backup/models/db_backup.py:123
 #, python-format
 msgid "Connection Test Succeeded!"
 msgstr ""
@@ -105,14 +108,19 @@ msgid "Created on"
 msgstr "Creado"
 
 #. module: auto_backup
-#: code:addons/auto_backup/models/db_backup.py:206
+#: model:ir.model,name:auto_backup.model_db_backup
+msgid "Database Backup"
+msgstr ""
+
+#. module: auto_backup
+#: code:addons/auto_backup/models/db_backup.py:203
 #: model:mail.message.subtype,description:auto_backup.mail_message_subtype_failure
 #, python-format
 msgid "Database backup failed."
 msgstr ""
 
 #. module: auto_backup
-#: code:addons/auto_backup/models/db_backup.py:214
+#: code:addons/auto_backup/models/db_backup.py:211
 #: model:mail.message.subtype,description:auto_backup.mail_message_subtype_success
 #, python-format
 msgid "Database backup succeeded."
@@ -120,7 +128,7 @@ msgstr ""
 
 #. module: auto_backup
 #: model:ir.model.fields,field_description:auto_backup.field_db_backup_days_to_keep
-msgid "Days to keep"
+msgid "Days To Keep"
 msgstr ""
 
 #. module: auto_backup
@@ -129,12 +137,17 @@ msgid "Display Name"
 msgstr "Nombre P??blico"
 
 #. module: auto_backup
-#: code:addons/auto_backup/models/db_backup.py:119
+#: code:addons/auto_backup/models/db_backup.py:114
 #, python-format
 msgid ""
 "Do not save backups on your filestore, or you will backup your backups too!"
 msgstr ""
 
+#. module: auto_backup
+#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+msgid "Execute backup"
+msgstr ""
+
 #. module: auto_backup
 #: model:ir.actions.server,name:auto_backup.action_server_backup
 msgid "Execute backup(s)"
@@ -232,11 +245,6 @@ msgstr ""
 msgid "SFTP Settings"
 msgstr ""
 
-#. module: auto_backup
-#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_search
-msgid "Search options"
-msgstr ""
-
 #. module: auto_backup
 #: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
 msgid "Search the action named 'Backup scheduler'."
@@ -245,8 +253,7 @@ msgstr ""
 #. module: auto_backup
 #: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
 msgid ""
-"Set the scheduler to active and fill in how often you want backups "
-"generated."
+"Set the scheduler to active and fill in how often you want backups generated."
 msgstr ""
 
 #. module: auto_backup
@@ -280,8 +287,8 @@ msgstr ""
 #. module: auto_backup
 #: model:ir.model.fields,help:auto_backup.field_db_backup_sftp_user
 msgid ""
-"The username where the SFTP connection should be made with. This is the user"
-" on the external server."
+"The username where the SFTP connection should be made with. This is the user "
+"on the external server."
 msgstr ""
 
 #. module: auto_backup
@@ -301,11 +308,6 @@ msgstr ""
 msgid "Warning:"
 msgstr ""
 
-#. module: auto_backup
-#: model:ir.model,name:auto_backup.model_db_backup
-msgid "db.backup"
-msgstr ""
-
 #. module: auto_backup
 #: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
 msgid "john"
diff --git a/auto_backup/i18n/es_CR.po b/auto_backup/i18n/es_CR.po
index b34115b7014..fe99d78e0a8 100644
--- a/auto_backup/i18n/es_CR.po
+++ b/auto_backup/i18n/es_CR.po
@@ -1,7 +1,7 @@
 # Translation of Odoo Server.
 # This file contains the translation of the following modules:
 # * auto_backup
-# 
+#
 # Translators:
 # OCA Transbot <transbot@odoo-community.org>, 2016
 msgid ""
@@ -11,11 +11,12 @@ msgstr ""
 "POT-Creation-Date: 2017-02-18 02:29+0000\n"
 "PO-Revision-Date: 2017-02-18 02:29+0000\n"
 "Last-Translator: OCA Transbot <transbot@odoo-community.org>, 2016\n"
-"Language-Team: Spanish (Costa Rica) (https://www.transifex.com/oca/teams/23907/es_CR/)\n"
+"Language-Team: Spanish (Costa Rica) (https://www.transifex.com/oca/"
+"teams/23907/es_CR/)\n"
+"Language: es_CR\n"
 "MIME-Version: 1.0\n"
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: \n"
-"Language: es_CR\n"
 "Plural-Forms: nplurals=2; plural=(n != 1);\n"
 
 #. module: auto_backup
@@ -45,13 +46,15 @@ msgid "Backup Failed"
 msgstr ""
 
 #. module: auto_backup
-#: model:mail.message.subtype,name:auto_backup.mail_message_subtype_success
-msgid "Backup Successful"
+#: model:ir.actions.server,name:auto_backup.ir_cron_backup_scheduler_0_ir_actions_server
+#: model:ir.cron,cron_name:auto_backup.ir_cron_backup_scheduler_0
+#: model:ir.cron,name:auto_backup.ir_cron_backup_scheduler_0
+msgid "Backup Scheduler"
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_tree
-msgid "Backups"
+#: model:mail.message.subtype,name:auto_backup.mail_message_subtype_success
+msgid "Backup Successful"
 msgstr ""
 
 #. module: auto_backup
@@ -77,19 +80,19 @@ msgid "Choose the storage method for this backup."
 msgstr ""
 
 #. module: auto_backup
-#: code:addons/auto_backup/models/db_backup.py:251
+#: code:addons/auto_backup/models/db_backup.py:249
 #, python-format
 msgid "Cleanup of old database backups failed."
 msgstr ""
 
 #. module: auto_backup
-#: code:addons/auto_backup/models/db_backup.py:131
+#: code:addons/auto_backup/models/db_backup.py:128
 #, python-format
 msgid "Connection Test Failed!"
 msgstr ""
 
 #. module: auto_backup
-#: code:addons/auto_backup/models/db_backup.py:128
+#: code:addons/auto_backup/models/db_backup.py:123
 #, python-format
 msgid "Connection Test Succeeded!"
 msgstr ""
@@ -105,14 +108,19 @@ msgid "Created on"
 msgstr "Creado en"
 
 #. module: auto_backup
-#: code:addons/auto_backup/models/db_backup.py:206
+#: model:ir.model,name:auto_backup.model_db_backup
+msgid "Database Backup"
+msgstr ""
+
+#. module: auto_backup
+#: code:addons/auto_backup/models/db_backup.py:203
 #: model:mail.message.subtype,description:auto_backup.mail_message_subtype_failure
 #, python-format
 msgid "Database backup failed."
 msgstr ""
 
 #. module: auto_backup
-#: code:addons/auto_backup/models/db_backup.py:214
+#: code:addons/auto_backup/models/db_backup.py:211
 #: model:mail.message.subtype,description:auto_backup.mail_message_subtype_success
 #, python-format
 msgid "Database backup succeeded."
@@ -120,7 +128,7 @@ msgstr ""
 
 #. module: auto_backup
 #: model:ir.model.fields,field_description:auto_backup.field_db_backup_days_to_keep
-msgid "Days to keep"
+msgid "Days To Keep"
 msgstr ""
 
 #. module: auto_backup
@@ -129,12 +137,17 @@ msgid "Display Name"
 msgstr ""
 
 #. module: auto_backup
-#: code:addons/auto_backup/models/db_backup.py:119
+#: code:addons/auto_backup/models/db_backup.py:114
 #, python-format
 msgid ""
 "Do not save backups on your filestore, or you will backup your backups too!"
 msgstr ""
 
+#. module: auto_backup
+#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+msgid "Execute backup"
+msgstr ""
+
 #. module: auto_backup
 #: model:ir.actions.server,name:auto_backup.action_server_backup
 msgid "Execute backup(s)"
@@ -232,11 +245,6 @@ msgstr ""
 msgid "SFTP Settings"
 msgstr ""
 
-#. module: auto_backup
-#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_search
-msgid "Search options"
-msgstr ""
-
 #. module: auto_backup
 #: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
 msgid "Search the action named 'Backup scheduler'."
@@ -245,8 +253,7 @@ msgstr ""
 #. module: auto_backup
 #: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
 msgid ""
-"Set the scheduler to active and fill in how often you want backups "
-"generated."
+"Set the scheduler to active and fill in how often you want backups generated."
 msgstr ""
 
 #. module: auto_backup
@@ -280,8 +287,8 @@ msgstr ""
 #. module: auto_backup
 #: model:ir.model.fields,help:auto_backup.field_db_backup_sftp_user
 msgid ""
-"The username where the SFTP connection should be made with. This is the user"
-" on the external server."
+"The username where the SFTP connection should be made with. This is the user "
+"on the external server."
 msgstr ""
 
 #. module: auto_backup
@@ -301,11 +308,6 @@ msgstr ""
 msgid "Warning:"
 msgstr ""
 
-#. module: auto_backup
-#: model:ir.model,name:auto_backup.model_db_backup
-msgid "db.backup"
-msgstr ""
-
 #. module: auto_backup
 #: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
 msgid "john"
diff --git a/auto_backup/i18n/es_DO.po b/auto_backup/i18n/es_DO.po
index 4e02402ce2b..22ab35e2c23 100644
--- a/auto_backup/i18n/es_DO.po
+++ b/auto_backup/i18n/es_DO.po
@@ -1,7 +1,7 @@
 # Translation of Odoo Server.
 # This file contains the translation of the following modules:
 # * auto_backup
-# 
+#
 # Translators:
 # OCA Transbot <transbot@odoo-community.org>, 2016
 msgid ""
@@ -11,11 +11,12 @@ msgstr ""
 "POT-Creation-Date: 2017-02-18 02:29+0000\n"
 "PO-Revision-Date: 2017-02-18 02:29+0000\n"
 "Last-Translator: OCA Transbot <transbot@odoo-community.org>, 2016\n"
-"Language-Team: Spanish (Dominican Republic) (https://www.transifex.com/oca/teams/23907/es_DO/)\n"
+"Language-Team: Spanish (Dominican Republic) (https://www.transifex.com/oca/"
+"teams/23907/es_DO/)\n"
+"Language: es_DO\n"
 "MIME-Version: 1.0\n"
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: \n"
-"Language: es_DO\n"
 "Plural-Forms: nplurals=2; plural=(n != 1);\n"
 
 #. module: auto_backup
@@ -45,13 +46,15 @@ msgid "Backup Failed"
 msgstr ""
 
 #. module: auto_backup
-#: model:mail.message.subtype,name:auto_backup.mail_message_subtype_success
-msgid "Backup Successful"
+#: model:ir.actions.server,name:auto_backup.ir_cron_backup_scheduler_0_ir_actions_server
+#: model:ir.cron,cron_name:auto_backup.ir_cron_backup_scheduler_0
+#: model:ir.cron,name:auto_backup.ir_cron_backup_scheduler_0
+msgid "Backup Scheduler"
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_tree
-msgid "Backups"
+#: model:mail.message.subtype,name:auto_backup.mail_message_subtype_success
+msgid "Backup Successful"
 msgstr ""
 
 #. module: auto_backup
@@ -77,19 +80,19 @@ msgid "Choose the storage method for this backup."
 msgstr ""
 
 #. module: auto_backup
-#: code:addons/auto_backup/models/db_backup.py:251
+#: code:addons/auto_backup/models/db_backup.py:249
 #, python-format
 msgid "Cleanup of old database backups failed."
 msgstr ""
 
 #. module: auto_backup
-#: code:addons/auto_backup/models/db_backup.py:131
+#: code:addons/auto_backup/models/db_backup.py:128
 #, python-format
 msgid "Connection Test Failed!"
 msgstr ""
 
 #. module: auto_backup
-#: code:addons/auto_backup/models/db_backup.py:128
+#: code:addons/auto_backup/models/db_backup.py:123
 #, python-format
 msgid "Connection Test Succeeded!"
 msgstr ""
@@ -105,14 +108,19 @@ msgid "Created on"
 msgstr "Creado en"
 
 #. module: auto_backup
-#: code:addons/auto_backup/models/db_backup.py:206
+#: model:ir.model,name:auto_backup.model_db_backup
+msgid "Database Backup"
+msgstr ""
+
+#. module: auto_backup
+#: code:addons/auto_backup/models/db_backup.py:203
 #: model:mail.message.subtype,description:auto_backup.mail_message_subtype_failure
 #, python-format
 msgid "Database backup failed."
 msgstr ""
 
 #. module: auto_backup
-#: code:addons/auto_backup/models/db_backup.py:214
+#: code:addons/auto_backup/models/db_backup.py:211
 #: model:mail.message.subtype,description:auto_backup.mail_message_subtype_success
 #, python-format
 msgid "Database backup succeeded."
@@ -120,7 +128,7 @@ msgstr ""
 
 #. module: auto_backup
 #: model:ir.model.fields,field_description:auto_backup.field_db_backup_days_to_keep
-msgid "Days to keep"
+msgid "Days To Keep"
 msgstr ""
 
 #. module: auto_backup
@@ -129,12 +137,17 @@ msgid "Display Name"
 msgstr "Nombre mostrado"
 
 #. module: auto_backup
-#: code:addons/auto_backup/models/db_backup.py:119
+#: code:addons/auto_backup/models/db_backup.py:114
 #, python-format
 msgid ""
 "Do not save backups on your filestore, or you will backup your backups too!"
 msgstr ""
 
+#. module: auto_backup
+#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+msgid "Execute backup"
+msgstr ""
+
 #. module: auto_backup
 #: model:ir.actions.server,name:auto_backup.action_server_backup
 msgid "Execute backup(s)"
@@ -232,11 +245,6 @@ msgstr ""
 msgid "SFTP Settings"
 msgstr ""
 
-#. module: auto_backup
-#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_search
-msgid "Search options"
-msgstr ""
-
 #. module: auto_backup
 #: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
 msgid "Search the action named 'Backup scheduler'."
@@ -245,8 +253,7 @@ msgstr ""
 #. module: auto_backup
 #: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
 msgid ""
-"Set the scheduler to active and fill in how often you want backups "
-"generated."
+"Set the scheduler to active and fill in how often you want backups generated."
 msgstr ""
 
 #. module: auto_backup
@@ -280,8 +287,8 @@ msgstr ""
 #. module: auto_backup
 #: model:ir.model.fields,help:auto_backup.field_db_backup_sftp_user
 msgid ""
-"The username where the SFTP connection should be made with. This is the user"
-" on the external server."
+"The username where the SFTP connection should be made with. This is the user "
+"on the external server."
 msgstr ""
 
 #. module: auto_backup
@@ -301,11 +308,6 @@ msgstr ""
 msgid "Warning:"
 msgstr ""
 
-#. module: auto_backup
-#: model:ir.model,name:auto_backup.model_db_backup
-msgid "db.backup"
-msgstr ""
-
 #. module: auto_backup
 #: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
 msgid "john"
diff --git a/auto_backup/i18n/es_EC.po b/auto_backup/i18n/es_EC.po
index 9b258087a32..ef5347b370c 100644
--- a/auto_backup/i18n/es_EC.po
+++ b/auto_backup/i18n/es_EC.po
@@ -1,7 +1,7 @@
 # Translation of Odoo Server.
 # This file contains the translation of the following modules:
 # * auto_backup
-# 
+#
 # Translators:
 # OCA Transbot <transbot@odoo-community.org>, 2016
 msgid ""
@@ -11,11 +11,12 @@ msgstr ""
 "POT-Creation-Date: 2017-02-18 02:29+0000\n"
 "PO-Revision-Date: 2017-02-18 02:29+0000\n"
 "Last-Translator: OCA Transbot <transbot@odoo-community.org>, 2016\n"
-"Language-Team: Spanish (Ecuador) (https://www.transifex.com/oca/teams/23907/es_EC/)\n"
+"Language-Team: Spanish (Ecuador) (https://www.transifex.com/oca/teams/23907/"
+"es_EC/)\n"
+"Language: es_EC\n"
 "MIME-Version: 1.0\n"
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: \n"
-"Language: es_EC\n"
 "Plural-Forms: nplurals=2; plural=(n != 1);\n"
 
 #. module: auto_backup
@@ -45,13 +46,15 @@ msgid "Backup Failed"
 msgstr ""
 
 #. module: auto_backup
-#: model:mail.message.subtype,name:auto_backup.mail_message_subtype_success
-msgid "Backup Successful"
+#: model:ir.actions.server,name:auto_backup.ir_cron_backup_scheduler_0_ir_actions_server
+#: model:ir.cron,cron_name:auto_backup.ir_cron_backup_scheduler_0
+#: model:ir.cron,name:auto_backup.ir_cron_backup_scheduler_0
+msgid "Backup Scheduler"
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_tree
-msgid "Backups"
+#: model:mail.message.subtype,name:auto_backup.mail_message_subtype_success
+msgid "Backup Successful"
 msgstr ""
 
 #. module: auto_backup
@@ -77,19 +80,19 @@ msgid "Choose the storage method for this backup."
 msgstr ""
 
 #. module: auto_backup
-#: code:addons/auto_backup/models/db_backup.py:251
+#: code:addons/auto_backup/models/db_backup.py:249
 #, python-format
 msgid "Cleanup of old database backups failed."
 msgstr ""
 
 #. module: auto_backup
-#: code:addons/auto_backup/models/db_backup.py:131
+#: code:addons/auto_backup/models/db_backup.py:128
 #, python-format
 msgid "Connection Test Failed!"
 msgstr ""
 
 #. module: auto_backup
-#: code:addons/auto_backup/models/db_backup.py:128
+#: code:addons/auto_backup/models/db_backup.py:123
 #, python-format
 msgid "Connection Test Succeeded!"
 msgstr ""
@@ -105,14 +108,19 @@ msgid "Created on"
 msgstr "Creado en"
 
 #. module: auto_backup
-#: code:addons/auto_backup/models/db_backup.py:206
+#: model:ir.model,name:auto_backup.model_db_backup
+msgid "Database Backup"
+msgstr ""
+
+#. module: auto_backup
+#: code:addons/auto_backup/models/db_backup.py:203
 #: model:mail.message.subtype,description:auto_backup.mail_message_subtype_failure
 #, python-format
 msgid "Database backup failed."
 msgstr ""
 
 #. module: auto_backup
-#: code:addons/auto_backup/models/db_backup.py:214
+#: code:addons/auto_backup/models/db_backup.py:211
 #: model:mail.message.subtype,description:auto_backup.mail_message_subtype_success
 #, python-format
 msgid "Database backup succeeded."
@@ -120,7 +128,7 @@ msgstr ""
 
 #. module: auto_backup
 #: model:ir.model.fields,field_description:auto_backup.field_db_backup_days_to_keep
-msgid "Days to keep"
+msgid "Days To Keep"
 msgstr ""
 
 #. module: auto_backup
@@ -129,12 +137,17 @@ msgid "Display Name"
 msgstr "Nombre mostrado"
 
 #. module: auto_backup
-#: code:addons/auto_backup/models/db_backup.py:119
+#: code:addons/auto_backup/models/db_backup.py:114
 #, python-format
 msgid ""
 "Do not save backups on your filestore, or you will backup your backups too!"
 msgstr ""
 
+#. module: auto_backup
+#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+msgid "Execute backup"
+msgstr ""
+
 #. module: auto_backup
 #: model:ir.actions.server,name:auto_backup.action_server_backup
 msgid "Execute backup(s)"
@@ -232,11 +245,6 @@ msgstr ""
 msgid "SFTP Settings"
 msgstr ""
 
-#. module: auto_backup
-#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_search
-msgid "Search options"
-msgstr ""
-
 #. module: auto_backup
 #: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
 msgid "Search the action named 'Backup scheduler'."
@@ -245,8 +253,7 @@ msgstr ""
 #. module: auto_backup
 #: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
 msgid ""
-"Set the scheduler to active and fill in how often you want backups "
-"generated."
+"Set the scheduler to active and fill in how often you want backups generated."
 msgstr ""
 
 #. module: auto_backup
@@ -280,8 +287,8 @@ msgstr ""
 #. module: auto_backup
 #: model:ir.model.fields,help:auto_backup.field_db_backup_sftp_user
 msgid ""
-"The username where the SFTP connection should be made with. This is the user"
-" on the external server."
+"The username where the SFTP connection should be made with. This is the user "
+"on the external server."
 msgstr ""
 
 #. module: auto_backup
@@ -301,11 +308,6 @@ msgstr ""
 msgid "Warning:"
 msgstr ""
 
-#. module: auto_backup
-#: model:ir.model,name:auto_backup.model_db_backup
-msgid "db.backup"
-msgstr ""
-
 #. module: auto_backup
 #: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
 msgid "john"
diff --git a/auto_backup/i18n/es_ES.po b/auto_backup/i18n/es_ES.po
index 0a1b0444520..7343867925d 100644
--- a/auto_backup/i18n/es_ES.po
+++ b/auto_backup/i18n/es_ES.po
@@ -1,7 +1,7 @@
 # Translation of Odoo Server.
 # This file contains the translation of the following modules:
 # * auto_backup
-# 
+#
 # Translators:
 # OCA Transbot <transbot@odoo-community.org>, 2016
 msgid ""
@@ -11,11 +11,12 @@ msgstr ""
 "POT-Creation-Date: 2017-05-01 10:38+0000\n"
 "PO-Revision-Date: 2017-05-01 10:38+0000\n"
 "Last-Translator: OCA Transbot <transbot@odoo-community.org>, 2016\n"
-"Language-Team: Spanish (Spain) (https://www.transifex.com/oca/teams/23907/es_ES/)\n"
+"Language-Team: Spanish (Spain) (https://www.transifex.com/oca/teams/23907/"
+"es_ES/)\n"
+"Language: es_ES\n"
 "MIME-Version: 1.0\n"
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: \n"
-"Language: es_ES\n"
 "Plural-Forms: nplurals=2; plural=(n != 1);\n"
 
 #. module: auto_backup
@@ -45,13 +46,15 @@ msgid "Backup Failed"
 msgstr ""
 
 #. module: auto_backup
-#: model:mail.message.subtype,name:auto_backup.mail_message_subtype_success
-msgid "Backup Successful"
+#: model:ir.actions.server,name:auto_backup.ir_cron_backup_scheduler_0_ir_actions_server
+#: model:ir.cron,cron_name:auto_backup.ir_cron_backup_scheduler_0
+#: model:ir.cron,name:auto_backup.ir_cron_backup_scheduler_0
+msgid "Backup Scheduler"
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_tree
-msgid "Backups"
+#: model:mail.message.subtype,name:auto_backup.mail_message_subtype_success
+msgid "Backup Successful"
 msgstr ""
 
 #. module: auto_backup
@@ -77,19 +80,19 @@ msgid "Choose the storage method for this backup."
 msgstr ""
 
 #. module: auto_backup
-#: code:addons/auto_backup/models/db_backup.py:251
+#: code:addons/auto_backup/models/db_backup.py:249
 #, python-format
 msgid "Cleanup of old database backups failed."
 msgstr ""
 
 #. module: auto_backup
-#: code:addons/auto_backup/models/db_backup.py:131
+#: code:addons/auto_backup/models/db_backup.py:128
 #, python-format
 msgid "Connection Test Failed!"
 msgstr ""
 
 #. module: auto_backup
-#: code:addons/auto_backup/models/db_backup.py:128
+#: code:addons/auto_backup/models/db_backup.py:123
 #, python-format
 msgid "Connection Test Succeeded!"
 msgstr ""
@@ -105,14 +108,19 @@ msgid "Created on"
 msgstr "Creado en"
 
 #. module: auto_backup
-#: code:addons/auto_backup/models/db_backup.py:206
+#: model:ir.model,name:auto_backup.model_db_backup
+msgid "Database Backup"
+msgstr ""
+
+#. module: auto_backup
+#: code:addons/auto_backup/models/db_backup.py:203
 #: model:mail.message.subtype,description:auto_backup.mail_message_subtype_failure
 #, python-format
 msgid "Database backup failed."
 msgstr ""
 
 #. module: auto_backup
-#: code:addons/auto_backup/models/db_backup.py:214
+#: code:addons/auto_backup/models/db_backup.py:211
 #: model:mail.message.subtype,description:auto_backup.mail_message_subtype_success
 #, python-format
 msgid "Database backup succeeded."
@@ -120,7 +128,7 @@ msgstr ""
 
 #. module: auto_backup
 #: model:ir.model.fields,field_description:auto_backup.field_db_backup_days_to_keep
-msgid "Days to keep"
+msgid "Days To Keep"
 msgstr ""
 
 #. module: auto_backup
@@ -129,12 +137,17 @@ msgid "Display Name"
 msgstr "Nombre para mostrar"
 
 #. module: auto_backup
-#: code:addons/auto_backup/models/db_backup.py:119
+#: code:addons/auto_backup/models/db_backup.py:114
 #, python-format
 msgid ""
 "Do not save backups on your filestore, or you will backup your backups too!"
 msgstr ""
 
+#. module: auto_backup
+#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+msgid "Execute backup"
+msgstr ""
+
 #. module: auto_backup
 #: model:ir.actions.server,name:auto_backup.action_server_backup
 msgid "Execute backup(s)"
@@ -232,11 +245,6 @@ msgstr ""
 msgid "SFTP Settings"
 msgstr ""
 
-#. module: auto_backup
-#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_search
-msgid "Search options"
-msgstr ""
-
 #. module: auto_backup
 #: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
 msgid "Search the action named 'Backup scheduler'."
@@ -245,8 +253,7 @@ msgstr ""
 #. module: auto_backup
 #: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
 msgid ""
-"Set the scheduler to active and fill in how often you want backups "
-"generated."
+"Set the scheduler to active and fill in how often you want backups generated."
 msgstr ""
 
 #. module: auto_backup
@@ -280,8 +287,8 @@ msgstr ""
 #. module: auto_backup
 #: model:ir.model.fields,help:auto_backup.field_db_backup_sftp_user
 msgid ""
-"The username where the SFTP connection should be made with. This is the user"
-" on the external server."
+"The username where the SFTP connection should be made with. This is the user "
+"on the external server."
 msgstr ""
 
 #. module: auto_backup
@@ -301,11 +308,6 @@ msgstr ""
 msgid "Warning:"
 msgstr ""
 
-#. module: auto_backup
-#: model:ir.model,name:auto_backup.model_db_backup
-msgid "db.backup"
-msgstr ""
-
 #. module: auto_backup
 #: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
 msgid "john"
diff --git a/auto_backup/i18n/es_MX.po b/auto_backup/i18n/es_MX.po
index cd6ea8582e7..3188fe55c47 100644
--- a/auto_backup/i18n/es_MX.po
+++ b/auto_backup/i18n/es_MX.po
@@ -1,7 +1,7 @@
 # Translation of Odoo Server.
 # This file contains the translation of the following modules:
 # * auto_backup
-# 
+#
 # Translators:
 # OCA Transbot <transbot@odoo-community.org>, 2016
 msgid ""
@@ -11,11 +11,12 @@ msgstr ""
 "POT-Creation-Date: 2017-02-18 02:29+0000\n"
 "PO-Revision-Date: 2017-02-18 02:29+0000\n"
 "Last-Translator: OCA Transbot <transbot@odoo-community.org>, 2016\n"
-"Language-Team: Spanish (Mexico) (https://www.transifex.com/oca/teams/23907/es_MX/)\n"
+"Language-Team: Spanish (Mexico) (https://www.transifex.com/oca/teams/23907/"
+"es_MX/)\n"
+"Language: es_MX\n"
 "MIME-Version: 1.0\n"
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: \n"
-"Language: es_MX\n"
 "Plural-Forms: nplurals=2; plural=(n != 1);\n"
 
 #. module: auto_backup
@@ -45,13 +46,15 @@ msgid "Backup Failed"
 msgstr ""
 
 #. module: auto_backup
-#: model:mail.message.subtype,name:auto_backup.mail_message_subtype_success
-msgid "Backup Successful"
+#: model:ir.actions.server,name:auto_backup.ir_cron_backup_scheduler_0_ir_actions_server
+#: model:ir.cron,cron_name:auto_backup.ir_cron_backup_scheduler_0
+#: model:ir.cron,name:auto_backup.ir_cron_backup_scheduler_0
+msgid "Backup Scheduler"
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_tree
-msgid "Backups"
+#: model:mail.message.subtype,name:auto_backup.mail_message_subtype_success
+msgid "Backup Successful"
 msgstr ""
 
 #. module: auto_backup
@@ -77,19 +80,19 @@ msgid "Choose the storage method for this backup."
 msgstr ""
 
 #. module: auto_backup
-#: code:addons/auto_backup/models/db_backup.py:251
+#: code:addons/auto_backup/models/db_backup.py:249
 #, python-format
 msgid "Cleanup of old database backups failed."
 msgstr ""
 
 #. module: auto_backup
-#: code:addons/auto_backup/models/db_backup.py:131
+#: code:addons/auto_backup/models/db_backup.py:128
 #, python-format
 msgid "Connection Test Failed!"
 msgstr ""
 
 #. module: auto_backup
-#: code:addons/auto_backup/models/db_backup.py:128
+#: code:addons/auto_backup/models/db_backup.py:123
 #, python-format
 msgid "Connection Test Succeeded!"
 msgstr ""
@@ -105,14 +108,19 @@ msgid "Created on"
 msgstr "Creado en"
 
 #. module: auto_backup
-#: code:addons/auto_backup/models/db_backup.py:206
+#: model:ir.model,name:auto_backup.model_db_backup
+msgid "Database Backup"
+msgstr ""
+
+#. module: auto_backup
+#: code:addons/auto_backup/models/db_backup.py:203
 #: model:mail.message.subtype,description:auto_backup.mail_message_subtype_failure
 #, python-format
 msgid "Database backup failed."
 msgstr ""
 
 #. module: auto_backup
-#: code:addons/auto_backup/models/db_backup.py:214
+#: code:addons/auto_backup/models/db_backup.py:211
 #: model:mail.message.subtype,description:auto_backup.mail_message_subtype_success
 #, python-format
 msgid "Database backup succeeded."
@@ -120,7 +128,7 @@ msgstr ""
 
 #. module: auto_backup
 #: model:ir.model.fields,field_description:auto_backup.field_db_backup_days_to_keep
-msgid "Days to keep"
+msgid "Days To Keep"
 msgstr ""
 
 #. module: auto_backup
@@ -129,12 +137,17 @@ msgid "Display Name"
 msgstr "Nombre desplegado"
 
 #. module: auto_backup
-#: code:addons/auto_backup/models/db_backup.py:119
+#: code:addons/auto_backup/models/db_backup.py:114
 #, python-format
 msgid ""
 "Do not save backups on your filestore, or you will backup your backups too!"
 msgstr ""
 
+#. module: auto_backup
+#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+msgid "Execute backup"
+msgstr ""
+
 #. module: auto_backup
 #: model:ir.actions.server,name:auto_backup.action_server_backup
 msgid "Execute backup(s)"
@@ -232,11 +245,6 @@ msgstr ""
 msgid "SFTP Settings"
 msgstr ""
 
-#. module: auto_backup
-#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_search
-msgid "Search options"
-msgstr ""
-
 #. module: auto_backup
 #: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
 msgid "Search the action named 'Backup scheduler'."
@@ -245,8 +253,7 @@ msgstr ""
 #. module: auto_backup
 #: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
 msgid ""
-"Set the scheduler to active and fill in how often you want backups "
-"generated."
+"Set the scheduler to active and fill in how often you want backups generated."
 msgstr ""
 
 #. module: auto_backup
@@ -280,8 +287,8 @@ msgstr ""
 #. module: auto_backup
 #: model:ir.model.fields,help:auto_backup.field_db_backup_sftp_user
 msgid ""
-"The username where the SFTP connection should be made with. This is the user"
-" on the external server."
+"The username where the SFTP connection should be made with. This is the user "
+"on the external server."
 msgstr ""
 
 #. module: auto_backup
@@ -301,11 +308,6 @@ msgstr ""
 msgid "Warning:"
 msgstr ""
 
-#. module: auto_backup
-#: model:ir.model,name:auto_backup.model_db_backup
-msgid "db.backup"
-msgstr ""
-
 #. module: auto_backup
 #: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
 msgid "john"
diff --git a/auto_backup/i18n/es_PE.po b/auto_backup/i18n/es_PE.po
index 72662000328..beb06096a41 100644
--- a/auto_backup/i18n/es_PE.po
+++ b/auto_backup/i18n/es_PE.po
@@ -1,7 +1,7 @@
 # Translation of Odoo Server.
 # This file contains the translation of the following modules:
 # * auto_backup
-# 
+#
 # Translators:
 # OCA Transbot <transbot@odoo-community.org>, 2017
 msgid ""
@@ -11,11 +11,12 @@ msgstr ""
 "POT-Creation-Date: 2017-02-18 02:29+0000\n"
 "PO-Revision-Date: 2017-02-18 02:29+0000\n"
 "Last-Translator: OCA Transbot <transbot@odoo-community.org>, 2017\n"
-"Language-Team: Spanish (Peru) (https://www.transifex.com/oca/teams/23907/es_PE/)\n"
+"Language-Team: Spanish (Peru) (https://www.transifex.com/oca/teams/23907/"
+"es_PE/)\n"
+"Language: es_PE\n"
 "MIME-Version: 1.0\n"
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: \n"
-"Language: es_PE\n"
 "Plural-Forms: nplurals=2; plural=(n != 1);\n"
 
 #. module: auto_backup
@@ -45,13 +46,15 @@ msgid "Backup Failed"
 msgstr ""
 
 #. module: auto_backup
-#: model:mail.message.subtype,name:auto_backup.mail_message_subtype_success
-msgid "Backup Successful"
+#: model:ir.actions.server,name:auto_backup.ir_cron_backup_scheduler_0_ir_actions_server
+#: model:ir.cron,cron_name:auto_backup.ir_cron_backup_scheduler_0
+#: model:ir.cron,name:auto_backup.ir_cron_backup_scheduler_0
+msgid "Backup Scheduler"
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_tree
-msgid "Backups"
+#: model:mail.message.subtype,name:auto_backup.mail_message_subtype_success
+msgid "Backup Successful"
 msgstr ""
 
 #. module: auto_backup
@@ -77,19 +80,19 @@ msgid "Choose the storage method for this backup."
 msgstr ""
 
 #. module: auto_backup
-#: code:addons/auto_backup/models/db_backup.py:251
+#: code:addons/auto_backup/models/db_backup.py:249
 #, python-format
 msgid "Cleanup of old database backups failed."
 msgstr ""
 
 #. module: auto_backup
-#: code:addons/auto_backup/models/db_backup.py:131
+#: code:addons/auto_backup/models/db_backup.py:128
 #, python-format
 msgid "Connection Test Failed!"
 msgstr ""
 
 #. module: auto_backup
-#: code:addons/auto_backup/models/db_backup.py:128
+#: code:addons/auto_backup/models/db_backup.py:123
 #, python-format
 msgid "Connection Test Succeeded!"
 msgstr ""
@@ -105,14 +108,19 @@ msgid "Created on"
 msgstr "Creado en"
 
 #. module: auto_backup
-#: code:addons/auto_backup/models/db_backup.py:206
+#: model:ir.model,name:auto_backup.model_db_backup
+msgid "Database Backup"
+msgstr ""
+
+#. module: auto_backup
+#: code:addons/auto_backup/models/db_backup.py:203
 #: model:mail.message.subtype,description:auto_backup.mail_message_subtype_failure
 #, python-format
 msgid "Database backup failed."
 msgstr ""
 
 #. module: auto_backup
-#: code:addons/auto_backup/models/db_backup.py:214
+#: code:addons/auto_backup/models/db_backup.py:211
 #: model:mail.message.subtype,description:auto_backup.mail_message_subtype_success
 #, python-format
 msgid "Database backup succeeded."
@@ -120,7 +128,7 @@ msgstr ""
 
 #. module: auto_backup
 #: model:ir.model.fields,field_description:auto_backup.field_db_backup_days_to_keep
-msgid "Days to keep"
+msgid "Days To Keep"
 msgstr ""
 
 #. module: auto_backup
@@ -129,12 +137,17 @@ msgid "Display Name"
 msgstr "Nombre a Mostrar"
 
 #. module: auto_backup
-#: code:addons/auto_backup/models/db_backup.py:119
+#: code:addons/auto_backup/models/db_backup.py:114
 #, python-format
 msgid ""
 "Do not save backups on your filestore, or you will backup your backups too!"
 msgstr ""
 
+#. module: auto_backup
+#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+msgid "Execute backup"
+msgstr ""
+
 #. module: auto_backup
 #: model:ir.actions.server,name:auto_backup.action_server_backup
 msgid "Execute backup(s)"
@@ -232,11 +245,6 @@ msgstr ""
 msgid "SFTP Settings"
 msgstr ""
 
-#. module: auto_backup
-#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_search
-msgid "Search options"
-msgstr ""
-
 #. module: auto_backup
 #: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
 msgid "Search the action named 'Backup scheduler'."
@@ -245,8 +253,7 @@ msgstr ""
 #. module: auto_backup
 #: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
 msgid ""
-"Set the scheduler to active and fill in how often you want backups "
-"generated."
+"Set the scheduler to active and fill in how often you want backups generated."
 msgstr ""
 
 #. module: auto_backup
@@ -280,8 +287,8 @@ msgstr ""
 #. module: auto_backup
 #: model:ir.model.fields,help:auto_backup.field_db_backup_sftp_user
 msgid ""
-"The username where the SFTP connection should be made with. This is the user"
-" on the external server."
+"The username where the SFTP connection should be made with. This is the user "
+"on the external server."
 msgstr ""
 
 #. module: auto_backup
@@ -301,11 +308,6 @@ msgstr ""
 msgid "Warning:"
 msgstr ""
 
-#. module: auto_backup
-#: model:ir.model,name:auto_backup.model_db_backup
-msgid "db.backup"
-msgstr ""
-
 #. module: auto_backup
 #: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
 msgid "john"
diff --git a/auto_backup/i18n/es_PY.po b/auto_backup/i18n/es_PY.po
index cf31df0a6f1..49b6d8aed73 100644
--- a/auto_backup/i18n/es_PY.po
+++ b/auto_backup/i18n/es_PY.po
@@ -1,7 +1,7 @@
 # Translation of Odoo Server.
 # This file contains the translation of the following modules:
 # * auto_backup
-# 
+#
 # Translators:
 # OCA Transbot <transbot@odoo-community.org>, 2016
 msgid ""
@@ -11,11 +11,12 @@ msgstr ""
 "POT-Creation-Date: 2017-02-18 02:29+0000\n"
 "PO-Revision-Date: 2017-02-18 02:29+0000\n"
 "Last-Translator: OCA Transbot <transbot@odoo-community.org>, 2016\n"
-"Language-Team: Spanish (Paraguay) (https://www.transifex.com/oca/teams/23907/es_PY/)\n"
+"Language-Team: Spanish (Paraguay) (https://www.transifex.com/oca/teams/23907/"
+"es_PY/)\n"
+"Language: es_PY\n"
 "MIME-Version: 1.0\n"
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: \n"
-"Language: es_PY\n"
 "Plural-Forms: nplurals=2; plural=(n != 1);\n"
 
 #. module: auto_backup
@@ -45,13 +46,15 @@ msgid "Backup Failed"
 msgstr ""
 
 #. module: auto_backup
-#: model:mail.message.subtype,name:auto_backup.mail_message_subtype_success
-msgid "Backup Successful"
+#: model:ir.actions.server,name:auto_backup.ir_cron_backup_scheduler_0_ir_actions_server
+#: model:ir.cron,cron_name:auto_backup.ir_cron_backup_scheduler_0
+#: model:ir.cron,name:auto_backup.ir_cron_backup_scheduler_0
+msgid "Backup Scheduler"
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_tree
-msgid "Backups"
+#: model:mail.message.subtype,name:auto_backup.mail_message_subtype_success
+msgid "Backup Successful"
 msgstr ""
 
 #. module: auto_backup
@@ -77,19 +80,19 @@ msgid "Choose the storage method for this backup."
 msgstr ""
 
 #. module: auto_backup
-#: code:addons/auto_backup/models/db_backup.py:251
+#: code:addons/auto_backup/models/db_backup.py:249
 #, python-format
 msgid "Cleanup of old database backups failed."
 msgstr ""
 
 #. module: auto_backup
-#: code:addons/auto_backup/models/db_backup.py:131
+#: code:addons/auto_backup/models/db_backup.py:128
 #, python-format
 msgid "Connection Test Failed!"
 msgstr ""
 
 #. module: auto_backup
-#: code:addons/auto_backup/models/db_backup.py:128
+#: code:addons/auto_backup/models/db_backup.py:123
 #, python-format
 msgid "Connection Test Succeeded!"
 msgstr ""
@@ -105,14 +108,19 @@ msgid "Created on"
 msgstr "Creado en"
 
 #. module: auto_backup
-#: code:addons/auto_backup/models/db_backup.py:206
+#: model:ir.model,name:auto_backup.model_db_backup
+msgid "Database Backup"
+msgstr ""
+
+#. module: auto_backup
+#: code:addons/auto_backup/models/db_backup.py:203
 #: model:mail.message.subtype,description:auto_backup.mail_message_subtype_failure
 #, python-format
 msgid "Database backup failed."
 msgstr ""
 
 #. module: auto_backup
-#: code:addons/auto_backup/models/db_backup.py:214
+#: code:addons/auto_backup/models/db_backup.py:211
 #: model:mail.message.subtype,description:auto_backup.mail_message_subtype_success
 #, python-format
 msgid "Database backup succeeded."
@@ -120,7 +128,7 @@ msgstr ""
 
 #. module: auto_backup
 #: model:ir.model.fields,field_description:auto_backup.field_db_backup_days_to_keep
-msgid "Days to keep"
+msgid "Days To Keep"
 msgstr ""
 
 #. module: auto_backup
@@ -129,12 +137,17 @@ msgid "Display Name"
 msgstr ""
 
 #. module: auto_backup
-#: code:addons/auto_backup/models/db_backup.py:119
+#: code:addons/auto_backup/models/db_backup.py:114
 #, python-format
 msgid ""
 "Do not save backups on your filestore, or you will backup your backups too!"
 msgstr ""
 
+#. module: auto_backup
+#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+msgid "Execute backup"
+msgstr ""
+
 #. module: auto_backup
 #: model:ir.actions.server,name:auto_backup.action_server_backup
 msgid "Execute backup(s)"
@@ -232,11 +245,6 @@ msgstr ""
 msgid "SFTP Settings"
 msgstr ""
 
-#. module: auto_backup
-#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_search
-msgid "Search options"
-msgstr ""
-
 #. module: auto_backup
 #: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
 msgid "Search the action named 'Backup scheduler'."
@@ -245,8 +253,7 @@ msgstr ""
 #. module: auto_backup
 #: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
 msgid ""
-"Set the scheduler to active and fill in how often you want backups "
-"generated."
+"Set the scheduler to active and fill in how often you want backups generated."
 msgstr ""
 
 #. module: auto_backup
@@ -280,8 +287,8 @@ msgstr ""
 #. module: auto_backup
 #: model:ir.model.fields,help:auto_backup.field_db_backup_sftp_user
 msgid ""
-"The username where the SFTP connection should be made with. This is the user"
-" on the external server."
+"The username where the SFTP connection should be made with. This is the user "
+"on the external server."
 msgstr ""
 
 #. module: auto_backup
@@ -301,11 +308,6 @@ msgstr ""
 msgid "Warning:"
 msgstr ""
 
-#. module: auto_backup
-#: model:ir.model,name:auto_backup.model_db_backup
-msgid "db.backup"
-msgstr ""
-
 #. module: auto_backup
 #: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
 msgid "john"
diff --git a/auto_backup/i18n/es_VE.po b/auto_backup/i18n/es_VE.po
index 965095f473f..15430ceda8c 100644
--- a/auto_backup/i18n/es_VE.po
+++ b/auto_backup/i18n/es_VE.po
@@ -1,7 +1,7 @@
 # Translation of Odoo Server.
 # This file contains the translation of the following modules:
 # * auto_backup
-# 
+#
 # Translators:
 # OCA Transbot <transbot@odoo-community.org>, 2016
 msgid ""
@@ -11,11 +11,12 @@ msgstr ""
 "POT-Creation-Date: 2017-02-18 02:29+0000\n"
 "PO-Revision-Date: 2017-02-18 02:29+0000\n"
 "Last-Translator: OCA Transbot <transbot@odoo-community.org>, 2016\n"
-"Language-Team: Spanish (Venezuela) (https://www.transifex.com/oca/teams/23907/es_VE/)\n"
+"Language-Team: Spanish (Venezuela) (https://www.transifex.com/oca/"
+"teams/23907/es_VE/)\n"
+"Language: es_VE\n"
 "MIME-Version: 1.0\n"
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: \n"
-"Language: es_VE\n"
 "Plural-Forms: nplurals=2; plural=(n != 1);\n"
 
 #. module: auto_backup
@@ -45,13 +46,15 @@ msgid "Backup Failed"
 msgstr ""
 
 #. module: auto_backup
-#: model:mail.message.subtype,name:auto_backup.mail_message_subtype_success
-msgid "Backup Successful"
+#: model:ir.actions.server,name:auto_backup.ir_cron_backup_scheduler_0_ir_actions_server
+#: model:ir.cron,cron_name:auto_backup.ir_cron_backup_scheduler_0
+#: model:ir.cron,name:auto_backup.ir_cron_backup_scheduler_0
+msgid "Backup Scheduler"
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_tree
-msgid "Backups"
+#: model:mail.message.subtype,name:auto_backup.mail_message_subtype_success
+msgid "Backup Successful"
 msgstr ""
 
 #. module: auto_backup
@@ -77,19 +80,19 @@ msgid "Choose the storage method for this backup."
 msgstr ""
 
 #. module: auto_backup
-#: code:addons/auto_backup/models/db_backup.py:251
+#: code:addons/auto_backup/models/db_backup.py:249
 #, python-format
 msgid "Cleanup of old database backups failed."
 msgstr ""
 
 #. module: auto_backup
-#: code:addons/auto_backup/models/db_backup.py:131
+#: code:addons/auto_backup/models/db_backup.py:128
 #, python-format
 msgid "Connection Test Failed!"
 msgstr ""
 
 #. module: auto_backup
-#: code:addons/auto_backup/models/db_backup.py:128
+#: code:addons/auto_backup/models/db_backup.py:123
 #, python-format
 msgid "Connection Test Succeeded!"
 msgstr ""
@@ -105,14 +108,19 @@ msgid "Created on"
 msgstr "Creado en"
 
 #. module: auto_backup
-#: code:addons/auto_backup/models/db_backup.py:206
+#: model:ir.model,name:auto_backup.model_db_backup
+msgid "Database Backup"
+msgstr ""
+
+#. module: auto_backup
+#: code:addons/auto_backup/models/db_backup.py:203
 #: model:mail.message.subtype,description:auto_backup.mail_message_subtype_failure
 #, python-format
 msgid "Database backup failed."
 msgstr ""
 
 #. module: auto_backup
-#: code:addons/auto_backup/models/db_backup.py:214
+#: code:addons/auto_backup/models/db_backup.py:211
 #: model:mail.message.subtype,description:auto_backup.mail_message_subtype_success
 #, python-format
 msgid "Database backup succeeded."
@@ -120,7 +128,7 @@ msgstr ""
 
 #. module: auto_backup
 #: model:ir.model.fields,field_description:auto_backup.field_db_backup_days_to_keep
-msgid "Days to keep"
+msgid "Days To Keep"
 msgstr ""
 
 #. module: auto_backup
@@ -129,12 +137,17 @@ msgid "Display Name"
 msgstr "Mostrar nombre"
 
 #. module: auto_backup
-#: code:addons/auto_backup/models/db_backup.py:119
+#: code:addons/auto_backup/models/db_backup.py:114
 #, python-format
 msgid ""
 "Do not save backups on your filestore, or you will backup your backups too!"
 msgstr ""
 
+#. module: auto_backup
+#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+msgid "Execute backup"
+msgstr ""
+
 #. module: auto_backup
 #: model:ir.actions.server,name:auto_backup.action_server_backup
 msgid "Execute backup(s)"
@@ -232,11 +245,6 @@ msgstr ""
 msgid "SFTP Settings"
 msgstr ""
 
-#. module: auto_backup
-#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_search
-msgid "Search options"
-msgstr ""
-
 #. module: auto_backup
 #: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
 msgid "Search the action named 'Backup scheduler'."
@@ -245,8 +253,7 @@ msgstr ""
 #. module: auto_backup
 #: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
 msgid ""
-"Set the scheduler to active and fill in how often you want backups "
-"generated."
+"Set the scheduler to active and fill in how often you want backups generated."
 msgstr ""
 
 #. module: auto_backup
@@ -280,8 +287,8 @@ msgstr ""
 #. module: auto_backup
 #: model:ir.model.fields,help:auto_backup.field_db_backup_sftp_user
 msgid ""
-"The username where the SFTP connection should be made with. This is the user"
-" on the external server."
+"The username where the SFTP connection should be made with. This is the user "
+"on the external server."
 msgstr ""
 
 #. module: auto_backup
@@ -301,11 +308,6 @@ msgstr ""
 msgid "Warning:"
 msgstr ""
 
-#. module: auto_backup
-#: model:ir.model,name:auto_backup.model_db_backup
-msgid "db.backup"
-msgstr ""
-
 #. module: auto_backup
 #: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
 msgid "john"
diff --git a/auto_backup/i18n/et.po b/auto_backup/i18n/et.po
index 96b4dc5ba4e..d50f299ddfc 100644
--- a/auto_backup/i18n/et.po
+++ b/auto_backup/i18n/et.po
@@ -1,7 +1,7 @@
 # Translation of Odoo Server.
 # This file contains the translation of the following modules:
 # * auto_backup
-# 
+#
 # Translators:
 # OCA Transbot <transbot@odoo-community.org>, 2016
 msgid ""
@@ -12,10 +12,10 @@ msgstr ""
 "PO-Revision-Date: 2017-02-18 02:29+0000\n"
 "Last-Translator: OCA Transbot <transbot@odoo-community.org>, 2016\n"
 "Language-Team: Estonian (https://www.transifex.com/oca/teams/23907/et/)\n"
+"Language: et\n"
 "MIME-Version: 1.0\n"
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: \n"
-"Language: et\n"
 "Plural-Forms: nplurals=2; plural=(n != 1);\n"
 
 #. module: auto_backup
@@ -45,13 +45,15 @@ msgid "Backup Failed"
 msgstr ""
 
 #. module: auto_backup
-#: model:mail.message.subtype,name:auto_backup.mail_message_subtype_success
-msgid "Backup Successful"
+#: model:ir.actions.server,name:auto_backup.ir_cron_backup_scheduler_0_ir_actions_server
+#: model:ir.cron,cron_name:auto_backup.ir_cron_backup_scheduler_0
+#: model:ir.cron,name:auto_backup.ir_cron_backup_scheduler_0
+msgid "Backup Scheduler"
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_tree
-msgid "Backups"
+#: model:mail.message.subtype,name:auto_backup.mail_message_subtype_success
+msgid "Backup Successful"
 msgstr ""
 
 #. module: auto_backup
@@ -77,19 +79,19 @@ msgid "Choose the storage method for this backup."
 msgstr ""
 
 #. module: auto_backup
-#: code:addons/auto_backup/models/db_backup.py:251
+#: code:addons/auto_backup/models/db_backup.py:249
 #, python-format
 msgid "Cleanup of old database backups failed."
 msgstr ""
 
 #. module: auto_backup
-#: code:addons/auto_backup/models/db_backup.py:131
+#: code:addons/auto_backup/models/db_backup.py:128
 #, python-format
 msgid "Connection Test Failed!"
 msgstr ""
 
 #. module: auto_backup
-#: code:addons/auto_backup/models/db_backup.py:128
+#: code:addons/auto_backup/models/db_backup.py:123
 #, python-format
 msgid "Connection Test Succeeded!"
 msgstr ""
@@ -105,14 +107,19 @@ msgid "Created on"
 msgstr "Loodud"
 
 #. module: auto_backup
-#: code:addons/auto_backup/models/db_backup.py:206
+#: model:ir.model,name:auto_backup.model_db_backup
+msgid "Database Backup"
+msgstr ""
+
+#. module: auto_backup
+#: code:addons/auto_backup/models/db_backup.py:203
 #: model:mail.message.subtype,description:auto_backup.mail_message_subtype_failure
 #, python-format
 msgid "Database backup failed."
 msgstr ""
 
 #. module: auto_backup
-#: code:addons/auto_backup/models/db_backup.py:214
+#: code:addons/auto_backup/models/db_backup.py:211
 #: model:mail.message.subtype,description:auto_backup.mail_message_subtype_success
 #, python-format
 msgid "Database backup succeeded."
@@ -120,7 +127,7 @@ msgstr ""
 
 #. module: auto_backup
 #: model:ir.model.fields,field_description:auto_backup.field_db_backup_days_to_keep
-msgid "Days to keep"
+msgid "Days To Keep"
 msgstr ""
 
 #. module: auto_backup
@@ -129,12 +136,17 @@ msgid "Display Name"
 msgstr "N??idatav nimi"
 
 #. module: auto_backup
-#: code:addons/auto_backup/models/db_backup.py:119
+#: code:addons/auto_backup/models/db_backup.py:114
 #, python-format
 msgid ""
 "Do not save backups on your filestore, or you will backup your backups too!"
 msgstr ""
 
+#. module: auto_backup
+#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+msgid "Execute backup"
+msgstr ""
+
 #. module: auto_backup
 #: model:ir.actions.server,name:auto_backup.action_server_backup
 msgid "Execute backup(s)"
@@ -232,11 +244,6 @@ msgstr ""
 msgid "SFTP Settings"
 msgstr ""
 
-#. module: auto_backup
-#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_search
-msgid "Search options"
-msgstr ""
-
 #. module: auto_backup
 #: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
 msgid "Search the action named 'Backup scheduler'."
@@ -245,8 +252,7 @@ msgstr ""
 #. module: auto_backup
 #: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
 msgid ""
-"Set the scheduler to active and fill in how often you want backups "
-"generated."
+"Set the scheduler to active and fill in how often you want backups generated."
 msgstr ""
 
 #. module: auto_backup
@@ -280,8 +286,8 @@ msgstr ""
 #. module: auto_backup
 #: model:ir.model.fields,help:auto_backup.field_db_backup_sftp_user
 msgid ""
-"The username where the SFTP connection should be made with. This is the user"
-" on the external server."
+"The username where the SFTP connection should be made with. This is the user "
+"on the external server."
 msgstr ""
 
 #. module: auto_backup
@@ -301,11 +307,6 @@ msgstr ""
 msgid "Warning:"
 msgstr ""
 
-#. module: auto_backup
-#: model:ir.model,name:auto_backup.model_db_backup
-msgid "db.backup"
-msgstr ""
-
 #. module: auto_backup
 #: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
 msgid "john"
diff --git a/auto_backup/i18n/eu.po b/auto_backup/i18n/eu.po
index 6141d9e0bc3..92071351c8c 100644
--- a/auto_backup/i18n/eu.po
+++ b/auto_backup/i18n/eu.po
@@ -1,7 +1,7 @@
 # Translation of Odoo Server.
 # This file contains the translation of the following modules:
 # * auto_backup
-# 
+#
 # Translators:
 # OCA Transbot <transbot@odoo-community.org>, 2016
 msgid ""
@@ -12,10 +12,10 @@ msgstr ""
 "PO-Revision-Date: 2017-02-18 02:29+0000\n"
 "Last-Translator: OCA Transbot <transbot@odoo-community.org>, 2016\n"
 "Language-Team: Basque (https://www.transifex.com/oca/teams/23907/eu/)\n"
+"Language: eu\n"
 "MIME-Version: 1.0\n"
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: \n"
-"Language: eu\n"
 "Plural-Forms: nplurals=2; plural=(n != 1);\n"
 
 #. module: auto_backup
@@ -45,13 +45,15 @@ msgid "Backup Failed"
 msgstr ""
 
 #. module: auto_backup
-#: model:mail.message.subtype,name:auto_backup.mail_message_subtype_success
-msgid "Backup Successful"
+#: model:ir.actions.server,name:auto_backup.ir_cron_backup_scheduler_0_ir_actions_server
+#: model:ir.cron,cron_name:auto_backup.ir_cron_backup_scheduler_0
+#: model:ir.cron,name:auto_backup.ir_cron_backup_scheduler_0
+msgid "Backup Scheduler"
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_tree
-msgid "Backups"
+#: model:mail.message.subtype,name:auto_backup.mail_message_subtype_success
+msgid "Backup Successful"
 msgstr ""
 
 #. module: auto_backup
@@ -77,19 +79,19 @@ msgid "Choose the storage method for this backup."
 msgstr ""
 
 #. module: auto_backup
-#: code:addons/auto_backup/models/db_backup.py:251
+#: code:addons/auto_backup/models/db_backup.py:249
 #, python-format
 msgid "Cleanup of old database backups failed."
 msgstr ""
 
 #. module: auto_backup
-#: code:addons/auto_backup/models/db_backup.py:131
+#: code:addons/auto_backup/models/db_backup.py:128
 #, python-format
 msgid "Connection Test Failed!"
 msgstr ""
 
 #. module: auto_backup
-#: code:addons/auto_backup/models/db_backup.py:128
+#: code:addons/auto_backup/models/db_backup.py:123
 #, python-format
 msgid "Connection Test Succeeded!"
 msgstr ""
@@ -105,14 +107,19 @@ msgid "Created on"
 msgstr "Created on"
 
 #. module: auto_backup
-#: code:addons/auto_backup/models/db_backup.py:206
+#: model:ir.model,name:auto_backup.model_db_backup
+msgid "Database Backup"
+msgstr ""
+
+#. module: auto_backup
+#: code:addons/auto_backup/models/db_backup.py:203
 #: model:mail.message.subtype,description:auto_backup.mail_message_subtype_failure
 #, python-format
 msgid "Database backup failed."
 msgstr ""
 
 #. module: auto_backup
-#: code:addons/auto_backup/models/db_backup.py:214
+#: code:addons/auto_backup/models/db_backup.py:211
 #: model:mail.message.subtype,description:auto_backup.mail_message_subtype_success
 #, python-format
 msgid "Database backup succeeded."
@@ -120,7 +127,7 @@ msgstr ""
 
 #. module: auto_backup
 #: model:ir.model.fields,field_description:auto_backup.field_db_backup_days_to_keep
-msgid "Days to keep"
+msgid "Days To Keep"
 msgstr ""
 
 #. module: auto_backup
@@ -129,12 +136,17 @@ msgid "Display Name"
 msgstr "Izena erakutsi"
 
 #. module: auto_backup
-#: code:addons/auto_backup/models/db_backup.py:119
+#: code:addons/auto_backup/models/db_backup.py:114
 #, python-format
 msgid ""
 "Do not save backups on your filestore, or you will backup your backups too!"
 msgstr ""
 
+#. module: auto_backup
+#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+msgid "Execute backup"
+msgstr ""
+
 #. module: auto_backup
 #: model:ir.actions.server,name:auto_backup.action_server_backup
 msgid "Execute backup(s)"
@@ -232,11 +244,6 @@ msgstr ""
 msgid "SFTP Settings"
 msgstr ""
 
-#. module: auto_backup
-#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_search
-msgid "Search options"
-msgstr ""
-
 #. module: auto_backup
 #: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
 msgid "Search the action named 'Backup scheduler'."
@@ -245,8 +252,7 @@ msgstr ""
 #. module: auto_backup
 #: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
 msgid ""
-"Set the scheduler to active and fill in how often you want backups "
-"generated."
+"Set the scheduler to active and fill in how often you want backups generated."
 msgstr ""
 
 #. module: auto_backup
@@ -280,8 +286,8 @@ msgstr ""
 #. module: auto_backup
 #: model:ir.model.fields,help:auto_backup.field_db_backup_sftp_user
 msgid ""
-"The username where the SFTP connection should be made with. This is the user"
-" on the external server."
+"The username where the SFTP connection should be made with. This is the user "
+"on the external server."
 msgstr ""
 
 #. module: auto_backup
@@ -301,11 +307,6 @@ msgstr ""
 msgid "Warning:"
 msgstr ""
 
-#. module: auto_backup
-#: model:ir.model,name:auto_backup.model_db_backup
-msgid "db.backup"
-msgstr ""
-
 #. module: auto_backup
 #: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
 msgid "john"
diff --git a/auto_backup/i18n/fa.po b/auto_backup/i18n/fa.po
index acd5954b527..79fbf0665b8 100644
--- a/auto_backup/i18n/fa.po
+++ b/auto_backup/i18n/fa.po
@@ -1,7 +1,7 @@
 # Translation of Odoo Server.
 # This file contains the translation of the following modules:
 # * auto_backup
-# 
+#
 # Translators:
 # OCA Transbot <transbot@odoo-community.org>, 2016
 msgid ""
@@ -12,10 +12,10 @@ msgstr ""
 "PO-Revision-Date: 2017-02-18 02:29+0000\n"
 "Last-Translator: OCA Transbot <transbot@odoo-community.org>, 2016\n"
 "Language-Team: Persian (https://www.transifex.com/oca/teams/23907/fa/)\n"
+"Language: fa\n"
 "MIME-Version: 1.0\n"
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: \n"
-"Language: fa\n"
 "Plural-Forms: nplurals=1; plural=0;\n"
 
 #. module: auto_backup
@@ -45,13 +45,15 @@ msgid "Backup Failed"
 msgstr ""
 
 #. module: auto_backup
-#: model:mail.message.subtype,name:auto_backup.mail_message_subtype_success
-msgid "Backup Successful"
+#: model:ir.actions.server,name:auto_backup.ir_cron_backup_scheduler_0_ir_actions_server
+#: model:ir.cron,cron_name:auto_backup.ir_cron_backup_scheduler_0
+#: model:ir.cron,name:auto_backup.ir_cron_backup_scheduler_0
+msgid "Backup Scheduler"
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_tree
-msgid "Backups"
+#: model:mail.message.subtype,name:auto_backup.mail_message_subtype_success
+msgid "Backup Successful"
 msgstr ""
 
 #. module: auto_backup
@@ -77,19 +79,19 @@ msgid "Choose the storage method for this backup."
 msgstr ""
 
 #. module: auto_backup
-#: code:addons/auto_backup/models/db_backup.py:251
+#: code:addons/auto_backup/models/db_backup.py:249
 #, python-format
 msgid "Cleanup of old database backups failed."
 msgstr ""
 
 #. module: auto_backup
-#: code:addons/auto_backup/models/db_backup.py:131
+#: code:addons/auto_backup/models/db_backup.py:128
 #, python-format
 msgid "Connection Test Failed!"
 msgstr ""
 
 #. module: auto_backup
-#: code:addons/auto_backup/models/db_backup.py:128
+#: code:addons/auto_backup/models/db_backup.py:123
 #, python-format
 msgid "Connection Test Succeeded!"
 msgstr ""
@@ -105,14 +107,19 @@ msgid "Created on"
 msgstr "?????????? ?????? ????"
 
 #. module: auto_backup
-#: code:addons/auto_backup/models/db_backup.py:206
+#: model:ir.model,name:auto_backup.model_db_backup
+msgid "Database Backup"
+msgstr ""
+
+#. module: auto_backup
+#: code:addons/auto_backup/models/db_backup.py:203
 #: model:mail.message.subtype,description:auto_backup.mail_message_subtype_failure
 #, python-format
 msgid "Database backup failed."
 msgstr ""
 
 #. module: auto_backup
-#: code:addons/auto_backup/models/db_backup.py:214
+#: code:addons/auto_backup/models/db_backup.py:211
 #: model:mail.message.subtype,description:auto_backup.mail_message_subtype_success
 #, python-format
 msgid "Database backup succeeded."
@@ -120,7 +127,7 @@ msgstr ""
 
 #. module: auto_backup
 #: model:ir.model.fields,field_description:auto_backup.field_db_backup_days_to_keep
-msgid "Days to keep"
+msgid "Days To Keep"
 msgstr ""
 
 #. module: auto_backup
@@ -129,12 +136,17 @@ msgid "Display Name"
 msgstr "?????? ????????????"
 
 #. module: auto_backup
-#: code:addons/auto_backup/models/db_backup.py:119
+#: code:addons/auto_backup/models/db_backup.py:114
 #, python-format
 msgid ""
 "Do not save backups on your filestore, or you will backup your backups too!"
 msgstr ""
 
+#. module: auto_backup
+#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+msgid "Execute backup"
+msgstr ""
+
 #. module: auto_backup
 #: model:ir.actions.server,name:auto_backup.action_server_backup
 msgid "Execute backup(s)"
@@ -232,11 +244,6 @@ msgstr ""
 msgid "SFTP Settings"
 msgstr ""
 
-#. module: auto_backup
-#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_search
-msgid "Search options"
-msgstr ""
-
 #. module: auto_backup
 #: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
 msgid "Search the action named 'Backup scheduler'."
@@ -245,8 +252,7 @@ msgstr ""
 #. module: auto_backup
 #: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
 msgid ""
-"Set the scheduler to active and fill in how often you want backups "
-"generated."
+"Set the scheduler to active and fill in how often you want backups generated."
 msgstr ""
 
 #. module: auto_backup
@@ -280,8 +286,8 @@ msgstr ""
 #. module: auto_backup
 #: model:ir.model.fields,help:auto_backup.field_db_backup_sftp_user
 msgid ""
-"The username where the SFTP connection should be made with. This is the user"
-" on the external server."
+"The username where the SFTP connection should be made with. This is the user "
+"on the external server."
 msgstr ""
 
 #. module: auto_backup
@@ -301,11 +307,6 @@ msgstr ""
 msgid "Warning:"
 msgstr ""
 
-#. module: auto_backup
-#: model:ir.model,name:auto_backup.model_db_backup
-msgid "db.backup"
-msgstr ""
-
 #. module: auto_backup
 #: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
 msgid "john"
diff --git a/auto_backup/i18n/fi.po b/auto_backup/i18n/fi.po
index a305212b810..da0fc7e52a1 100644
--- a/auto_backup/i18n/fi.po
+++ b/auto_backup/i18n/fi.po
@@ -1,7 +1,7 @@
 # Translation of Odoo Server.
 # This file contains the translation of the following modules:
 # * auto_backup
-# 
+#
 # Translators:
 # OCA Transbot <transbot@odoo-community.org>, 2016
 msgid ""
@@ -12,10 +12,10 @@ msgstr ""
 "PO-Revision-Date: 2016-12-08 03:36+0000\n"
 "Last-Translator: OCA Transbot <transbot@odoo-community.org>, 2016\n"
 "Language-Team: Finnish (https://www.transifex.com/oca/teams/23907/fi/)\n"
+"Language: fi\n"
 "MIME-Version: 1.0\n"
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: \n"
-"Language: fi\n"
 "Plural-Forms: nplurals=2; plural=(n != 1);\n"
 
 #. module: auto_backup
@@ -45,13 +45,15 @@ msgid "Backup Failed"
 msgstr ""
 
 #. module: auto_backup
-#: model:mail.message.subtype,name:auto_backup.mail_message_subtype_success
-msgid "Backup Successful"
+#: model:ir.actions.server,name:auto_backup.ir_cron_backup_scheduler_0_ir_actions_server
+#: model:ir.cron,cron_name:auto_backup.ir_cron_backup_scheduler_0
+#: model:ir.cron,name:auto_backup.ir_cron_backup_scheduler_0
+msgid "Backup Scheduler"
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_tree
-msgid "Backups"
+#: model:mail.message.subtype,name:auto_backup.mail_message_subtype_success
+msgid "Backup Successful"
 msgstr ""
 
 #. module: auto_backup
@@ -77,19 +79,19 @@ msgid "Choose the storage method for this backup."
 msgstr ""
 
 #. module: auto_backup
-#: code:addons/auto_backup/models/db_backup.py:248
+#: code:addons/auto_backup/models/db_backup.py:249
 #, python-format
 msgid "Cleanup of old database backups failed."
 msgstr ""
 
 #. module: auto_backup
-#: code:addons/auto_backup/models/db_backup.py:131
+#: code:addons/auto_backup/models/db_backup.py:128
 #, python-format
 msgid "Connection Test Failed!"
 msgstr ""
 
 #. module: auto_backup
-#: code:addons/auto_backup/models/db_backup.py:128
+#: code:addons/auto_backup/models/db_backup.py:123
 #, python-format
 msgid "Connection Test Succeeded!"
 msgstr ""
@@ -105,7 +107,12 @@ msgid "Created on"
 msgstr "Luotu"
 
 #. module: auto_backup
-#: code:addons/auto_backup/models/db_backup.py:206
+#: model:ir.model,name:auto_backup.model_db_backup
+msgid "Database Backup"
+msgstr ""
+
+#. module: auto_backup
+#: code:addons/auto_backup/models/db_backup.py:203
 #: model:mail.message.subtype,description:auto_backup.mail_message_subtype_failure
 #, python-format
 msgid "Database backup failed."
@@ -120,7 +127,7 @@ msgstr ""
 
 #. module: auto_backup
 #: model:ir.model.fields,field_description:auto_backup.field_db_backup_days_to_keep
-msgid "Days to keep"
+msgid "Days To Keep"
 msgstr ""
 
 #. module: auto_backup
@@ -129,12 +136,17 @@ msgid "Display Name"
 msgstr "Nimi"
 
 #. module: auto_backup
-#: code:addons/auto_backup/models/db_backup.py:119
+#: code:addons/auto_backup/models/db_backup.py:114
 #, python-format
 msgid ""
 "Do not save backups on your filestore, or you will backup your backups too!"
 msgstr ""
 
+#. module: auto_backup
+#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+msgid "Execute backup"
+msgstr ""
+
 #. module: auto_backup
 #: model:ir.actions.server,name:auto_backup.action_server_backup
 msgid "Execute backup(s)"
@@ -232,11 +244,6 @@ msgstr ""
 msgid "SFTP Settings"
 msgstr ""
 
-#. module: auto_backup
-#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_search
-msgid "Search options"
-msgstr ""
-
 #. module: auto_backup
 #: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
 msgid "Search the action named 'Backup scheduler'."
@@ -245,8 +252,7 @@ msgstr ""
 #. module: auto_backup
 #: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
 msgid ""
-"Set the scheduler to active and fill in how often you want backups "
-"generated."
+"Set the scheduler to active and fill in how often you want backups generated."
 msgstr ""
 
 #. module: auto_backup
@@ -280,8 +286,8 @@ msgstr ""
 #. module: auto_backup
 #: model:ir.model.fields,help:auto_backup.field_db_backup_sftp_user
 msgid ""
-"The username where the SFTP connection should be made with. This is the user"
-" on the external server."
+"The username where the SFTP connection should be made with. This is the user "
+"on the external server."
 msgstr ""
 
 #. module: auto_backup
@@ -301,11 +307,6 @@ msgstr ""
 msgid "Warning:"
 msgstr ""
 
-#. module: auto_backup
-#: model:ir.model,name:auto_backup.model_db_backup
-msgid "db.backup"
-msgstr ""
-
 #. module: auto_backup
 #: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
 msgid "john"
diff --git a/auto_backup/i18n/fr.po b/auto_backup/i18n/fr.po
index fbbc5828582..8d0b9a06358 100644
--- a/auto_backup/i18n/fr.po
+++ b/auto_backup/i18n/fr.po
@@ -1,7 +1,7 @@
 # Translation of Odoo Server.
 # This file contains the translation of the following modules:
 # * auto_backup
-# 
+#
 # Translators:
 # OCA Transbot <transbot@odoo-community.org>, 2018
 msgid ""
@@ -12,10 +12,10 @@ msgstr ""
 "PO-Revision-Date: 2018-03-03 10:08+0000\n"
 "Last-Translator: OCA Transbot <transbot@odoo-community.org>, 2018\n"
 "Language-Team: French (https://www.transifex.com/oca/teams/23907/fr/)\n"
+"Language: fr\n"
 "MIME-Version: 1.0\n"
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: \n"
-"Language: fr\n"
 "Plural-Forms: nplurals=2; plural=(n > 1);\n"
 
 #. module: auto_backup
@@ -261,8 +261,7 @@ msgstr ""
 #. module: auto_backup
 #: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
 msgid ""
-"Set the scheduler to active and fill in how often you want backups "
-"generated."
+"Set the scheduler to active and fill in how often you want backups generated."
 msgstr ""
 
 #. module: auto_backup
@@ -296,8 +295,8 @@ msgstr ""
 #. module: auto_backup
 #: model:ir.model.fields,help:auto_backup.field_db_backup_sftp_user
 msgid ""
-"The username where the SFTP connection should be made with. This is the user"
-" on the external server."
+"The username where the SFTP connection should be made with. This is the user "
+"on the external server."
 msgstr ""
 
 #. module: auto_backup
diff --git a/auto_backup/i18n/fr_CA.po b/auto_backup/i18n/fr_CA.po
index 0249e266907..60f6c44faa1 100644
--- a/auto_backup/i18n/fr_CA.po
+++ b/auto_backup/i18n/fr_CA.po
@@ -1,7 +1,7 @@
 # Translation of Odoo Server.
 # This file contains the translation of the following modules:
 # * auto_backup
-# 
+#
 # Translators:
 # OCA Transbot <transbot@odoo-community.org>, 2016
 msgid ""
@@ -11,11 +11,12 @@ msgstr ""
 "POT-Creation-Date: 2016-12-08 03:36+0000\n"
 "PO-Revision-Date: 2016-12-08 03:36+0000\n"
 "Last-Translator: OCA Transbot <transbot@odoo-community.org>, 2016\n"
-"Language-Team: French (Canada) (https://www.transifex.com/oca/teams/23907/fr_CA/)\n"
+"Language-Team: French (Canada) (https://www.transifex.com/oca/teams/23907/"
+"fr_CA/)\n"
+"Language: fr_CA\n"
 "MIME-Version: 1.0\n"
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: \n"
-"Language: fr_CA\n"
 "Plural-Forms: nplurals=2; plural=(n > 1);\n"
 
 #. module: auto_backup
@@ -45,13 +46,15 @@ msgid "Backup Failed"
 msgstr ""
 
 #. module: auto_backup
-#: model:mail.message.subtype,name:auto_backup.mail_message_subtype_success
-msgid "Backup Successful"
+#: model:ir.actions.server,name:auto_backup.ir_cron_backup_scheduler_0_ir_actions_server
+#: model:ir.cron,cron_name:auto_backup.ir_cron_backup_scheduler_0
+#: model:ir.cron,name:auto_backup.ir_cron_backup_scheduler_0
+msgid "Backup Scheduler"
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_tree
-msgid "Backups"
+#: model:mail.message.subtype,name:auto_backup.mail_message_subtype_success
+msgid "Backup Successful"
 msgstr ""
 
 #. module: auto_backup
@@ -77,19 +80,19 @@ msgid "Choose the storage method for this backup."
 msgstr ""
 
 #. module: auto_backup
-#: code:addons/auto_backup/models/db_backup.py:248
+#: code:addons/auto_backup/models/db_backup.py:249
 #, python-format
 msgid "Cleanup of old database backups failed."
 msgstr ""
 
 #. module: auto_backup
-#: code:addons/auto_backup/models/db_backup.py:131
+#: code:addons/auto_backup/models/db_backup.py:128
 #, python-format
 msgid "Connection Test Failed!"
 msgstr ""
 
 #. module: auto_backup
-#: code:addons/auto_backup/models/db_backup.py:128
+#: code:addons/auto_backup/models/db_backup.py:123
 #, python-format
 msgid "Connection Test Succeeded!"
 msgstr ""
@@ -105,7 +108,12 @@ msgid "Created on"
 msgstr "Cr???? le"
 
 #. module: auto_backup
-#: code:addons/auto_backup/models/db_backup.py:206
+#: model:ir.model,name:auto_backup.model_db_backup
+msgid "Database Backup"
+msgstr ""
+
+#. module: auto_backup
+#: code:addons/auto_backup/models/db_backup.py:203
 #: model:mail.message.subtype,description:auto_backup.mail_message_subtype_failure
 #, python-format
 msgid "Database backup failed."
@@ -120,7 +128,7 @@ msgstr ""
 
 #. module: auto_backup
 #: model:ir.model.fields,field_description:auto_backup.field_db_backup_days_to_keep
-msgid "Days to keep"
+msgid "Days To Keep"
 msgstr ""
 
 #. module: auto_backup
@@ -129,12 +137,17 @@ msgid "Display Name"
 msgstr "Afficher le nom"
 
 #. module: auto_backup
-#: code:addons/auto_backup/models/db_backup.py:119
+#: code:addons/auto_backup/models/db_backup.py:114
 #, python-format
 msgid ""
 "Do not save backups on your filestore, or you will backup your backups too!"
 msgstr ""
 
+#. module: auto_backup
+#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+msgid "Execute backup"
+msgstr ""
+
 #. module: auto_backup
 #: model:ir.actions.server,name:auto_backup.action_server_backup
 msgid "Execute backup(s)"
@@ -232,11 +245,6 @@ msgstr ""
 msgid "SFTP Settings"
 msgstr ""
 
-#. module: auto_backup
-#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_search
-msgid "Search options"
-msgstr ""
-
 #. module: auto_backup
 #: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
 msgid "Search the action named 'Backup scheduler'."
@@ -245,8 +253,7 @@ msgstr ""
 #. module: auto_backup
 #: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
 msgid ""
-"Set the scheduler to active and fill in how often you want backups "
-"generated."
+"Set the scheduler to active and fill in how often you want backups generated."
 msgstr ""
 
 #. module: auto_backup
@@ -280,8 +287,8 @@ msgstr ""
 #. module: auto_backup
 #: model:ir.model.fields,help:auto_backup.field_db_backup_sftp_user
 msgid ""
-"The username where the SFTP connection should be made with. This is the user"
-" on the external server."
+"The username where the SFTP connection should be made with. This is the user "
+"on the external server."
 msgstr ""
 
 #. module: auto_backup
@@ -301,11 +308,6 @@ msgstr ""
 msgid "Warning:"
 msgstr ""
 
-#. module: auto_backup
-#: model:ir.model,name:auto_backup.model_db_backup
-msgid "db.backup"
-msgstr ""
-
 #. module: auto_backup
 #: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
 msgid "john"
diff --git a/auto_backup/i18n/fr_CH.po b/auto_backup/i18n/fr_CH.po
index 4bebbdc934a..0c273722d53 100644
--- a/auto_backup/i18n/fr_CH.po
+++ b/auto_backup/i18n/fr_CH.po
@@ -1,7 +1,7 @@
 # Translation of Odoo Server.
 # This file contains the translation of the following modules:
 # * auto_backup
-# 
+#
 # Translators:
 # OCA Transbot <transbot@odoo-community.org>, 2016
 msgid ""
@@ -11,11 +11,12 @@ msgstr ""
 "POT-Creation-Date: 2017-02-18 02:29+0000\n"
 "PO-Revision-Date: 2017-02-18 02:29+0000\n"
 "Last-Translator: OCA Transbot <transbot@odoo-community.org>, 2016\n"
-"Language-Team: French (Switzerland) (https://www.transifex.com/oca/teams/23907/fr_CH/)\n"
+"Language-Team: French (Switzerland) (https://www.transifex.com/oca/"
+"teams/23907/fr_CH/)\n"
+"Language: fr_CH\n"
 "MIME-Version: 1.0\n"
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: \n"
-"Language: fr_CH\n"
 "Plural-Forms: nplurals=2; plural=(n > 1);\n"
 
 #. module: auto_backup
@@ -45,13 +46,15 @@ msgid "Backup Failed"
 msgstr ""
 
 #. module: auto_backup
-#: model:mail.message.subtype,name:auto_backup.mail_message_subtype_success
-msgid "Backup Successful"
+#: model:ir.actions.server,name:auto_backup.ir_cron_backup_scheduler_0_ir_actions_server
+#: model:ir.cron,cron_name:auto_backup.ir_cron_backup_scheduler_0
+#: model:ir.cron,name:auto_backup.ir_cron_backup_scheduler_0
+msgid "Backup Scheduler"
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_tree
-msgid "Backups"
+#: model:mail.message.subtype,name:auto_backup.mail_message_subtype_success
+msgid "Backup Successful"
 msgstr ""
 
 #. module: auto_backup
@@ -77,19 +80,19 @@ msgid "Choose the storage method for this backup."
 msgstr ""
 
 #. module: auto_backup
-#: code:addons/auto_backup/models/db_backup.py:251
+#: code:addons/auto_backup/models/db_backup.py:249
 #, python-format
 msgid "Cleanup of old database backups failed."
 msgstr ""
 
 #. module: auto_backup
-#: code:addons/auto_backup/models/db_backup.py:131
+#: code:addons/auto_backup/models/db_backup.py:128
 #, python-format
 msgid "Connection Test Failed!"
 msgstr ""
 
 #. module: auto_backup
-#: code:addons/auto_backup/models/db_backup.py:128
+#: code:addons/auto_backup/models/db_backup.py:123
 #, python-format
 msgid "Connection Test Succeeded!"
 msgstr ""
@@ -105,14 +108,19 @@ msgid "Created on"
 msgstr "Cr???? le"
 
 #. module: auto_backup
-#: code:addons/auto_backup/models/db_backup.py:206
+#: model:ir.model,name:auto_backup.model_db_backup
+msgid "Database Backup"
+msgstr ""
+
+#. module: auto_backup
+#: code:addons/auto_backup/models/db_backup.py:203
 #: model:mail.message.subtype,description:auto_backup.mail_message_subtype_failure
 #, python-format
 msgid "Database backup failed."
 msgstr ""
 
 #. module: auto_backup
-#: code:addons/auto_backup/models/db_backup.py:214
+#: code:addons/auto_backup/models/db_backup.py:211
 #: model:mail.message.subtype,description:auto_backup.mail_message_subtype_success
 #, python-format
 msgid "Database backup succeeded."
@@ -120,7 +128,7 @@ msgstr ""
 
 #. module: auto_backup
 #: model:ir.model.fields,field_description:auto_backup.field_db_backup_days_to_keep
-msgid "Days to keep"
+msgid "Days To Keep"
 msgstr ""
 
 #. module: auto_backup
@@ -129,12 +137,17 @@ msgid "Display Name"
 msgstr "Nom affich??"
 
 #. module: auto_backup
-#: code:addons/auto_backup/models/db_backup.py:119
+#: code:addons/auto_backup/models/db_backup.py:114
 #, python-format
 msgid ""
 "Do not save backups on your filestore, or you will backup your backups too!"
 msgstr ""
 
+#. module: auto_backup
+#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+msgid "Execute backup"
+msgstr ""
+
 #. module: auto_backup
 #: model:ir.actions.server,name:auto_backup.action_server_backup
 msgid "Execute backup(s)"
@@ -232,11 +245,6 @@ msgstr ""
 msgid "SFTP Settings"
 msgstr ""
 
-#. module: auto_backup
-#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_search
-msgid "Search options"
-msgstr ""
-
 #. module: auto_backup
 #: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
 msgid "Search the action named 'Backup scheduler'."
@@ -245,8 +253,7 @@ msgstr ""
 #. module: auto_backup
 #: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
 msgid ""
-"Set the scheduler to active and fill in how often you want backups "
-"generated."
+"Set the scheduler to active and fill in how often you want backups generated."
 msgstr ""
 
 #. module: auto_backup
@@ -280,8 +287,8 @@ msgstr ""
 #. module: auto_backup
 #: model:ir.model.fields,help:auto_backup.field_db_backup_sftp_user
 msgid ""
-"The username where the SFTP connection should be made with. This is the user"
-" on the external server."
+"The username where the SFTP connection should be made with. This is the user "
+"on the external server."
 msgstr ""
 
 #. module: auto_backup
@@ -301,11 +308,6 @@ msgstr ""
 msgid "Warning:"
 msgstr ""
 
-#. module: auto_backup
-#: model:ir.model,name:auto_backup.model_db_backup
-msgid "db.backup"
-msgstr ""
-
 #. module: auto_backup
 #: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
 msgid "john"
diff --git a/auto_backup/i18n/gl.po b/auto_backup/i18n/gl.po
index 6bc3d1a0a87..df9c32a4e2c 100644
--- a/auto_backup/i18n/gl.po
+++ b/auto_backup/i18n/gl.po
@@ -1,7 +1,7 @@
 # Translation of Odoo Server.
 # This file contains the translation of the following modules:
 # * auto_backup
-# 
+#
 # Translators:
 # OCA Transbot <transbot@odoo-community.org>, 2016
 msgid ""
@@ -12,10 +12,10 @@ msgstr ""
 "PO-Revision-Date: 2017-02-18 02:29+0000\n"
 "Last-Translator: OCA Transbot <transbot@odoo-community.org>, 2016\n"
 "Language-Team: Galician (https://www.transifex.com/oca/teams/23907/gl/)\n"
+"Language: gl\n"
 "MIME-Version: 1.0\n"
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: \n"
-"Language: gl\n"
 "Plural-Forms: nplurals=2; plural=(n != 1);\n"
 
 #. module: auto_backup
@@ -45,13 +45,15 @@ msgid "Backup Failed"
 msgstr ""
 
 #. module: auto_backup
-#: model:mail.message.subtype,name:auto_backup.mail_message_subtype_success
-msgid "Backup Successful"
+#: model:ir.actions.server,name:auto_backup.ir_cron_backup_scheduler_0_ir_actions_server
+#: model:ir.cron,cron_name:auto_backup.ir_cron_backup_scheduler_0
+#: model:ir.cron,name:auto_backup.ir_cron_backup_scheduler_0
+msgid "Backup Scheduler"
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_tree
-msgid "Backups"
+#: model:mail.message.subtype,name:auto_backup.mail_message_subtype_success
+msgid "Backup Successful"
 msgstr ""
 
 #. module: auto_backup
@@ -77,19 +79,19 @@ msgid "Choose the storage method for this backup."
 msgstr ""
 
 #. module: auto_backup
-#: code:addons/auto_backup/models/db_backup.py:251
+#: code:addons/auto_backup/models/db_backup.py:249
 #, python-format
 msgid "Cleanup of old database backups failed."
 msgstr ""
 
 #. module: auto_backup
-#: code:addons/auto_backup/models/db_backup.py:131
+#: code:addons/auto_backup/models/db_backup.py:128
 #, python-format
 msgid "Connection Test Failed!"
 msgstr ""
 
 #. module: auto_backup
-#: code:addons/auto_backup/models/db_backup.py:128
+#: code:addons/auto_backup/models/db_backup.py:123
 #, python-format
 msgid "Connection Test Succeeded!"
 msgstr ""
@@ -105,14 +107,19 @@ msgid "Created on"
 msgstr "Creada en"
 
 #. module: auto_backup
-#: code:addons/auto_backup/models/db_backup.py:206
+#: model:ir.model,name:auto_backup.model_db_backup
+msgid "Database Backup"
+msgstr ""
+
+#. module: auto_backup
+#: code:addons/auto_backup/models/db_backup.py:203
 #: model:mail.message.subtype,description:auto_backup.mail_message_subtype_failure
 #, python-format
 msgid "Database backup failed."
 msgstr ""
 
 #. module: auto_backup
-#: code:addons/auto_backup/models/db_backup.py:214
+#: code:addons/auto_backup/models/db_backup.py:211
 #: model:mail.message.subtype,description:auto_backup.mail_message_subtype_success
 #, python-format
 msgid "Database backup succeeded."
@@ -120,7 +127,7 @@ msgstr ""
 
 #. module: auto_backup
 #: model:ir.model.fields,field_description:auto_backup.field_db_backup_days_to_keep
-msgid "Days to keep"
+msgid "Days To Keep"
 msgstr ""
 
 #. module: auto_backup
@@ -129,12 +136,17 @@ msgid "Display Name"
 msgstr ""
 
 #. module: auto_backup
-#: code:addons/auto_backup/models/db_backup.py:119
+#: code:addons/auto_backup/models/db_backup.py:114
 #, python-format
 msgid ""
 "Do not save backups on your filestore, or you will backup your backups too!"
 msgstr ""
 
+#. module: auto_backup
+#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+msgid "Execute backup"
+msgstr ""
+
 #. module: auto_backup
 #: model:ir.actions.server,name:auto_backup.action_server_backup
 msgid "Execute backup(s)"
@@ -232,11 +244,6 @@ msgstr ""
 msgid "SFTP Settings"
 msgstr ""
 
-#. module: auto_backup
-#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_search
-msgid "Search options"
-msgstr ""
-
 #. module: auto_backup
 #: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
 msgid "Search the action named 'Backup scheduler'."
@@ -245,8 +252,7 @@ msgstr ""
 #. module: auto_backup
 #: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
 msgid ""
-"Set the scheduler to active and fill in how often you want backups "
-"generated."
+"Set the scheduler to active and fill in how often you want backups generated."
 msgstr ""
 
 #. module: auto_backup
@@ -280,8 +286,8 @@ msgstr ""
 #. module: auto_backup
 #: model:ir.model.fields,help:auto_backup.field_db_backup_sftp_user
 msgid ""
-"The username where the SFTP connection should be made with. This is the user"
-" on the external server."
+"The username where the SFTP connection should be made with. This is the user "
+"on the external server."
 msgstr ""
 
 #. module: auto_backup
@@ -301,11 +307,6 @@ msgstr ""
 msgid "Warning:"
 msgstr ""
 
-#. module: auto_backup
-#: model:ir.model,name:auto_backup.model_db_backup
-msgid "db.backup"
-msgstr ""
-
 #. module: auto_backup
 #: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
 msgid "john"
diff --git a/auto_backup/i18n/gl_ES.po b/auto_backup/i18n/gl_ES.po
index 5f610d3f8c8..b682da8353a 100644
--- a/auto_backup/i18n/gl_ES.po
+++ b/auto_backup/i18n/gl_ES.po
@@ -1,7 +1,7 @@
 # Translation of Odoo Server.
 # This file contains the translation of the following modules:
 # * auto_backup
-# 
+#
 # Translators:
 # OCA Transbot <transbot@odoo-community.org>, 2016
 msgid ""
@@ -11,11 +11,12 @@ msgstr ""
 "POT-Creation-Date: 2016-12-08 03:36+0000\n"
 "PO-Revision-Date: 2016-12-08 03:36+0000\n"
 "Last-Translator: OCA Transbot <transbot@odoo-community.org>, 2016\n"
-"Language-Team: Galician (Spain) (https://www.transifex.com/oca/teams/23907/gl_ES/)\n"
+"Language-Team: Galician (Spain) (https://www.transifex.com/oca/teams/23907/"
+"gl_ES/)\n"
+"Language: gl_ES\n"
 "MIME-Version: 1.0\n"
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: \n"
-"Language: gl_ES\n"
 "Plural-Forms: nplurals=2; plural=(n != 1);\n"
 
 #. module: auto_backup
@@ -45,13 +46,15 @@ msgid "Backup Failed"
 msgstr ""
 
 #. module: auto_backup
-#: model:mail.message.subtype,name:auto_backup.mail_message_subtype_success
-msgid "Backup Successful"
+#: model:ir.actions.server,name:auto_backup.ir_cron_backup_scheduler_0_ir_actions_server
+#: model:ir.cron,cron_name:auto_backup.ir_cron_backup_scheduler_0
+#: model:ir.cron,name:auto_backup.ir_cron_backup_scheduler_0
+msgid "Backup Scheduler"
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_tree
-msgid "Backups"
+#: model:mail.message.subtype,name:auto_backup.mail_message_subtype_success
+msgid "Backup Successful"
 msgstr ""
 
 #. module: auto_backup
@@ -77,19 +80,19 @@ msgid "Choose the storage method for this backup."
 msgstr ""
 
 #. module: auto_backup
-#: code:addons/auto_backup/models/db_backup.py:248
+#: code:addons/auto_backup/models/db_backup.py:249
 #, python-format
 msgid "Cleanup of old database backups failed."
 msgstr ""
 
 #. module: auto_backup
-#: code:addons/auto_backup/models/db_backup.py:131
+#: code:addons/auto_backup/models/db_backup.py:128
 #, python-format
 msgid "Connection Test Failed!"
 msgstr ""
 
 #. module: auto_backup
-#: code:addons/auto_backup/models/db_backup.py:128
+#: code:addons/auto_backup/models/db_backup.py:123
 #, python-format
 msgid "Connection Test Succeeded!"
 msgstr ""
@@ -105,7 +108,12 @@ msgid "Created on"
 msgstr ""
 
 #. module: auto_backup
-#: code:addons/auto_backup/models/db_backup.py:206
+#: model:ir.model,name:auto_backup.model_db_backup
+msgid "Database Backup"
+msgstr ""
+
+#. module: auto_backup
+#: code:addons/auto_backup/models/db_backup.py:203
 #: model:mail.message.subtype,description:auto_backup.mail_message_subtype_failure
 #, python-format
 msgid "Database backup failed."
@@ -120,7 +128,7 @@ msgstr ""
 
 #. module: auto_backup
 #: model:ir.model.fields,field_description:auto_backup.field_db_backup_days_to_keep
-msgid "Days to keep"
+msgid "Days To Keep"
 msgstr ""
 
 #. module: auto_backup
@@ -129,12 +137,17 @@ msgid "Display Name"
 msgstr ""
 
 #. module: auto_backup
-#: code:addons/auto_backup/models/db_backup.py:119
+#: code:addons/auto_backup/models/db_backup.py:114
 #, python-format
 msgid ""
 "Do not save backups on your filestore, or you will backup your backups too!"
 msgstr ""
 
+#. module: auto_backup
+#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+msgid "Execute backup"
+msgstr ""
+
 #. module: auto_backup
 #: model:ir.actions.server,name:auto_backup.action_server_backup
 msgid "Execute backup(s)"
@@ -232,11 +245,6 @@ msgstr ""
 msgid "SFTP Settings"
 msgstr ""
 
-#. module: auto_backup
-#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_search
-msgid "Search options"
-msgstr ""
-
 #. module: auto_backup
 #: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
 msgid "Search the action named 'Backup scheduler'."
@@ -245,8 +253,7 @@ msgstr ""
 #. module: auto_backup
 #: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
 msgid ""
-"Set the scheduler to active and fill in how often you want backups "
-"generated."
+"Set the scheduler to active and fill in how often you want backups generated."
 msgstr ""
 
 #. module: auto_backup
@@ -280,8 +287,8 @@ msgstr ""
 #. module: auto_backup
 #: model:ir.model.fields,help:auto_backup.field_db_backup_sftp_user
 msgid ""
-"The username where the SFTP connection should be made with. This is the user"
-" on the external server."
+"The username where the SFTP connection should be made with. This is the user "
+"on the external server."
 msgstr ""
 
 #. module: auto_backup
@@ -301,11 +308,6 @@ msgstr ""
 msgid "Warning:"
 msgstr ""
 
-#. module: auto_backup
-#: model:ir.model,name:auto_backup.model_db_backup
-msgid "db.backup"
-msgstr ""
-
 #. module: auto_backup
 #: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
 msgid "john"
diff --git a/auto_backup/i18n/he.po b/auto_backup/i18n/he.po
index d7d030a032c..962a5c8506a 100644
--- a/auto_backup/i18n/he.po
+++ b/auto_backup/i18n/he.po
@@ -1,7 +1,7 @@
 # Translation of Odoo Server.
 # This file contains the translation of the following modules:
 # * auto_backup
-# 
+#
 # Translators:
 # OCA Transbot <transbot@odoo-community.org>, 2016
 msgid ""
@@ -12,10 +12,10 @@ msgstr ""
 "PO-Revision-Date: 2017-02-18 02:29+0000\n"
 "Last-Translator: OCA Transbot <transbot@odoo-community.org>, 2016\n"
 "Language-Team: Hebrew (https://www.transifex.com/oca/teams/23907/he/)\n"
+"Language: he\n"
 "MIME-Version: 1.0\n"
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: \n"
-"Language: he\n"
 "Plural-Forms: nplurals=2; plural=(n != 1);\n"
 
 #. module: auto_backup
@@ -45,13 +45,15 @@ msgid "Backup Failed"
 msgstr ""
 
 #. module: auto_backup
-#: model:mail.message.subtype,name:auto_backup.mail_message_subtype_success
-msgid "Backup Successful"
+#: model:ir.actions.server,name:auto_backup.ir_cron_backup_scheduler_0_ir_actions_server
+#: model:ir.cron,cron_name:auto_backup.ir_cron_backup_scheduler_0
+#: model:ir.cron,name:auto_backup.ir_cron_backup_scheduler_0
+msgid "Backup Scheduler"
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_tree
-msgid "Backups"
+#: model:mail.message.subtype,name:auto_backup.mail_message_subtype_success
+msgid "Backup Successful"
 msgstr ""
 
 #. module: auto_backup
@@ -77,19 +79,19 @@ msgid "Choose the storage method for this backup."
 msgstr ""
 
 #. module: auto_backup
-#: code:addons/auto_backup/models/db_backup.py:251
+#: code:addons/auto_backup/models/db_backup.py:249
 #, python-format
 msgid "Cleanup of old database backups failed."
 msgstr ""
 
 #. module: auto_backup
-#: code:addons/auto_backup/models/db_backup.py:131
+#: code:addons/auto_backup/models/db_backup.py:128
 #, python-format
 msgid "Connection Test Failed!"
 msgstr ""
 
 #. module: auto_backup
-#: code:addons/auto_backup/models/db_backup.py:128
+#: code:addons/auto_backup/models/db_backup.py:123
 #, python-format
 msgid "Connection Test Succeeded!"
 msgstr ""
@@ -105,14 +107,19 @@ msgid "Created on"
 msgstr "???????? ??-"
 
 #. module: auto_backup
-#: code:addons/auto_backup/models/db_backup.py:206
+#: model:ir.model,name:auto_backup.model_db_backup
+msgid "Database Backup"
+msgstr ""
+
+#. module: auto_backup
+#: code:addons/auto_backup/models/db_backup.py:203
 #: model:mail.message.subtype,description:auto_backup.mail_message_subtype_failure
 #, python-format
 msgid "Database backup failed."
 msgstr ""
 
 #. module: auto_backup
-#: code:addons/auto_backup/models/db_backup.py:214
+#: code:addons/auto_backup/models/db_backup.py:211
 #: model:mail.message.subtype,description:auto_backup.mail_message_subtype_success
 #, python-format
 msgid "Database backup succeeded."
@@ -120,7 +127,7 @@ msgstr ""
 
 #. module: auto_backup
 #: model:ir.model.fields,field_description:auto_backup.field_db_backup_days_to_keep
-msgid "Days to keep"
+msgid "Days To Keep"
 msgstr ""
 
 #. module: auto_backup
@@ -129,12 +136,17 @@ msgid "Display Name"
 msgstr "?????? ??????????"
 
 #. module: auto_backup
-#: code:addons/auto_backup/models/db_backup.py:119
+#: code:addons/auto_backup/models/db_backup.py:114
 #, python-format
 msgid ""
 "Do not save backups on your filestore, or you will backup your backups too!"
 msgstr ""
 
+#. module: auto_backup
+#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+msgid "Execute backup"
+msgstr ""
+
 #. module: auto_backup
 #: model:ir.actions.server,name:auto_backup.action_server_backup
 msgid "Execute backup(s)"
@@ -232,11 +244,6 @@ msgstr ""
 msgid "SFTP Settings"
 msgstr ""
 
-#. module: auto_backup
-#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_search
-msgid "Search options"
-msgstr ""
-
 #. module: auto_backup
 #: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
 msgid "Search the action named 'Backup scheduler'."
@@ -245,8 +252,7 @@ msgstr ""
 #. module: auto_backup
 #: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
 msgid ""
-"Set the scheduler to active and fill in how often you want backups "
-"generated."
+"Set the scheduler to active and fill in how often you want backups generated."
 msgstr ""
 
 #. module: auto_backup
@@ -280,8 +286,8 @@ msgstr ""
 #. module: auto_backup
 #: model:ir.model.fields,help:auto_backup.field_db_backup_sftp_user
 msgid ""
-"The username where the SFTP connection should be made with. This is the user"
-" on the external server."
+"The username where the SFTP connection should be made with. This is the user "
+"on the external server."
 msgstr ""
 
 #. module: auto_backup
@@ -301,11 +307,6 @@ msgstr ""
 msgid "Warning:"
 msgstr ""
 
-#. module: auto_backup
-#: model:ir.model,name:auto_backup.model_db_backup
-msgid "db.backup"
-msgstr ""
-
 #. module: auto_backup
 #: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
 msgid "john"
diff --git a/auto_backup/i18n/hr.po b/auto_backup/i18n/hr.po
index 96cf3e7afed..0ab7f7729fe 100644
--- a/auto_backup/i18n/hr.po
+++ b/auto_backup/i18n/hr.po
@@ -1,7 +1,7 @@
 # Translation of Odoo Server.
 # This file contains the translation of the following modules:
 # * auto_backup
-# 
+#
 # Translators:
 # OCA Transbot <transbot@odoo-community.org>, 2018
 msgid ""
@@ -12,11 +12,12 @@ msgstr ""
 "PO-Revision-Date: 2018-03-03 10:08+0000\n"
 "Last-Translator: OCA Transbot <transbot@odoo-community.org>, 2018\n"
 "Language-Team: Croatian (https://www.transifex.com/oca/teams/23907/hr/)\n"
+"Language: hr\n"
 "MIME-Version: 1.0\n"
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: \n"
-"Language: hr\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"
+"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: auto_backup
 #: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
@@ -141,8 +142,8 @@ msgstr "Prika??i naziv"
 msgid ""
 "Do not save backups on your filestore, or you will backup your backups too!"
 msgstr ""
-"Nemojte ??uvati backup na va??em poslu??itelju me??u ostalim podacima, jer ??e se"
-" i on backupirati!"
+"Nemojte ??uvati backup na va??em poslu??itelju me??u ostalim podacima, jer ??e se "
+"i on backupirati!"
 
 #. module: auto_backup
 #: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
@@ -254,8 +255,7 @@ msgstr ""
 #. module: auto_backup
 #: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
 msgid ""
-"Set the scheduler to active and fill in how often you want backups "
-"generated."
+"Set the scheduler to active and fill in how often you want backups generated."
 msgstr ""
 
 #. module: auto_backup
@@ -289,8 +289,8 @@ msgstr ""
 #. module: auto_backup
 #: model:ir.model.fields,help:auto_backup.field_db_backup_sftp_user
 msgid ""
-"The username where the SFTP connection should be made with. This is the user"
-" on the external server."
+"The username where the SFTP connection should be made with. This is the user "
+"on the external server."
 msgstr ""
 
 #. module: auto_backup
diff --git a/auto_backup/i18n/hr_HR.po b/auto_backup/i18n/hr_HR.po
index 812f187ca30..0be109bbea3 100644
--- a/auto_backup/i18n/hr_HR.po
+++ b/auto_backup/i18n/hr_HR.po
@@ -1,7 +1,7 @@
 # Translation of Odoo Server.
 # This file contains the translation of the following modules:
 # * auto_backup
-# 
+#
 # Translators:
 # OCA Transbot <transbot@odoo-community.org>, 2016
 msgid ""
@@ -11,12 +11,14 @@ msgstr ""
 "POT-Creation-Date: 2017-02-22 00:54+0000\n"
 "PO-Revision-Date: 2017-02-22 00:54+0000\n"
 "Last-Translator: OCA Transbot <transbot@odoo-community.org>, 2016\n"
-"Language-Team: Croatian (Croatia) (https://www.transifex.com/oca/teams/23907/hr_HR/)\n"
+"Language-Team: Croatian (Croatia) (https://www.transifex.com/oca/teams/23907/"
+"hr_HR/)\n"
+"Language: hr_HR\n"
 "MIME-Version: 1.0\n"
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: \n"
-"Language: hr_HR\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"
+"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: auto_backup
 #: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
@@ -45,13 +47,15 @@ msgid "Backup Failed"
 msgstr ""
 
 #. module: auto_backup
-#: model:mail.message.subtype,name:auto_backup.mail_message_subtype_success
-msgid "Backup Successful"
+#: model:ir.actions.server,name:auto_backup.ir_cron_backup_scheduler_0_ir_actions_server
+#: model:ir.cron,cron_name:auto_backup.ir_cron_backup_scheduler_0
+#: model:ir.cron,name:auto_backup.ir_cron_backup_scheduler_0
+msgid "Backup Scheduler"
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_tree
-msgid "Backups"
+#: model:mail.message.subtype,name:auto_backup.mail_message_subtype_success
+msgid "Backup Successful"
 msgstr ""
 
 #. module: auto_backup
@@ -77,19 +81,19 @@ msgid "Choose the storage method for this backup."
 msgstr ""
 
 #. module: auto_backup
-#: code:addons/auto_backup/models/db_backup.py:251
+#: code:addons/auto_backup/models/db_backup.py:249
 #, python-format
 msgid "Cleanup of old database backups failed."
 msgstr ""
 
 #. module: auto_backup
-#: code:addons/auto_backup/models/db_backup.py:131
+#: code:addons/auto_backup/models/db_backup.py:128
 #, python-format
 msgid "Connection Test Failed!"
 msgstr ""
 
 #. module: auto_backup
-#: code:addons/auto_backup/models/db_backup.py:128
+#: code:addons/auto_backup/models/db_backup.py:123
 #, python-format
 msgid "Connection Test Succeeded!"
 msgstr ""
@@ -105,14 +109,19 @@ msgid "Created on"
 msgstr "Kreirano"
 
 #. module: auto_backup
-#: code:addons/auto_backup/models/db_backup.py:206
+#: model:ir.model,name:auto_backup.model_db_backup
+msgid "Database Backup"
+msgstr ""
+
+#. module: auto_backup
+#: code:addons/auto_backup/models/db_backup.py:203
 #: model:mail.message.subtype,description:auto_backup.mail_message_subtype_failure
 #, python-format
 msgid "Database backup failed."
 msgstr ""
 
 #. module: auto_backup
-#: code:addons/auto_backup/models/db_backup.py:214
+#: code:addons/auto_backup/models/db_backup.py:211
 #: model:mail.message.subtype,description:auto_backup.mail_message_subtype_success
 #, python-format
 msgid "Database backup succeeded."
@@ -120,7 +129,7 @@ msgstr ""
 
 #. module: auto_backup
 #: model:ir.model.fields,field_description:auto_backup.field_db_backup_days_to_keep
-msgid "Days to keep"
+msgid "Days To Keep"
 msgstr ""
 
 #. module: auto_backup
@@ -129,12 +138,17 @@ msgid "Display Name"
 msgstr "Naziv"
 
 #. module: auto_backup
-#: code:addons/auto_backup/models/db_backup.py:119
+#: code:addons/auto_backup/models/db_backup.py:114
 #, python-format
 msgid ""
 "Do not save backups on your filestore, or you will backup your backups too!"
 msgstr ""
 
+#. module: auto_backup
+#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+msgid "Execute backup"
+msgstr ""
+
 #. module: auto_backup
 #: model:ir.actions.server,name:auto_backup.action_server_backup
 msgid "Execute backup(s)"
@@ -232,11 +246,6 @@ msgstr ""
 msgid "SFTP Settings"
 msgstr ""
 
-#. module: auto_backup
-#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_search
-msgid "Search options"
-msgstr ""
-
 #. module: auto_backup
 #: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
 msgid "Search the action named 'Backup scheduler'."
@@ -245,8 +254,7 @@ msgstr ""
 #. module: auto_backup
 #: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
 msgid ""
-"Set the scheduler to active and fill in how often you want backups "
-"generated."
+"Set the scheduler to active and fill in how often you want backups generated."
 msgstr ""
 
 #. module: auto_backup
@@ -280,8 +288,8 @@ msgstr ""
 #. module: auto_backup
 #: model:ir.model.fields,help:auto_backup.field_db_backup_sftp_user
 msgid ""
-"The username where the SFTP connection should be made with. This is the user"
-" on the external server."
+"The username where the SFTP connection should be made with. This is the user "
+"on the external server."
 msgstr ""
 
 #. module: auto_backup
@@ -301,11 +309,6 @@ msgstr ""
 msgid "Warning:"
 msgstr ""
 
-#. module: auto_backup
-#: model:ir.model,name:auto_backup.model_db_backup
-msgid "db.backup"
-msgstr ""
-
 #. module: auto_backup
 #: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
 msgid "john"
diff --git a/auto_backup/i18n/hu.po b/auto_backup/i18n/hu.po
index 96d6395768c..01c178aaff8 100644
--- a/auto_backup/i18n/hu.po
+++ b/auto_backup/i18n/hu.po
@@ -1,7 +1,7 @@
 # Translation of Odoo Server.
 # This file contains the translation of the following modules:
 # * auto_backup
-# 
+#
 # Translators:
 # OCA Transbot <transbot@odoo-community.org>, 2016
 msgid ""
@@ -12,10 +12,10 @@ msgstr ""
 "PO-Revision-Date: 2017-02-18 02:29+0000\n"
 "Last-Translator: OCA Transbot <transbot@odoo-community.org>, 2016\n"
 "Language-Team: Hungarian (https://www.transifex.com/oca/teams/23907/hu/)\n"
+"Language: hu\n"
 "MIME-Version: 1.0\n"
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: \n"
-"Language: hu\n"
 "Plural-Forms: nplurals=2; plural=(n != 1);\n"
 
 #. module: auto_backup
@@ -45,13 +45,15 @@ msgid "Backup Failed"
 msgstr ""
 
 #. module: auto_backup
-#: model:mail.message.subtype,name:auto_backup.mail_message_subtype_success
-msgid "Backup Successful"
+#: model:ir.actions.server,name:auto_backup.ir_cron_backup_scheduler_0_ir_actions_server
+#: model:ir.cron,cron_name:auto_backup.ir_cron_backup_scheduler_0
+#: model:ir.cron,name:auto_backup.ir_cron_backup_scheduler_0
+msgid "Backup Scheduler"
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_tree
-msgid "Backups"
+#: model:mail.message.subtype,name:auto_backup.mail_message_subtype_success
+msgid "Backup Successful"
 msgstr ""
 
 #. module: auto_backup
@@ -77,19 +79,19 @@ msgid "Choose the storage method for this backup."
 msgstr ""
 
 #. module: auto_backup
-#: code:addons/auto_backup/models/db_backup.py:251
+#: code:addons/auto_backup/models/db_backup.py:249
 #, python-format
 msgid "Cleanup of old database backups failed."
 msgstr ""
 
 #. module: auto_backup
-#: code:addons/auto_backup/models/db_backup.py:131
+#: code:addons/auto_backup/models/db_backup.py:128
 #, python-format
 msgid "Connection Test Failed!"
 msgstr ""
 
 #. module: auto_backup
-#: code:addons/auto_backup/models/db_backup.py:128
+#: code:addons/auto_backup/models/db_backup.py:123
 #, python-format
 msgid "Connection Test Succeeded!"
 msgstr ""
@@ -105,14 +107,19 @@ msgid "Created on"
 msgstr "L??trehoz??s d??tuma"
 
 #. module: auto_backup
-#: code:addons/auto_backup/models/db_backup.py:206
+#: model:ir.model,name:auto_backup.model_db_backup
+msgid "Database Backup"
+msgstr ""
+
+#. module: auto_backup
+#: code:addons/auto_backup/models/db_backup.py:203
 #: model:mail.message.subtype,description:auto_backup.mail_message_subtype_failure
 #, python-format
 msgid "Database backup failed."
 msgstr ""
 
 #. module: auto_backup
-#: code:addons/auto_backup/models/db_backup.py:214
+#: code:addons/auto_backup/models/db_backup.py:211
 #: model:mail.message.subtype,description:auto_backup.mail_message_subtype_success
 #, python-format
 msgid "Database backup succeeded."
@@ -120,7 +127,7 @@ msgstr ""
 
 #. module: auto_backup
 #: model:ir.model.fields,field_description:auto_backup.field_db_backup_days_to_keep
-msgid "Days to keep"
+msgid "Days To Keep"
 msgstr ""
 
 #. module: auto_backup
@@ -129,12 +136,17 @@ msgid "Display Name"
 msgstr "N??v megjelen??t??se"
 
 #. module: auto_backup
-#: code:addons/auto_backup/models/db_backup.py:119
+#: code:addons/auto_backup/models/db_backup.py:114
 #, python-format
 msgid ""
 "Do not save backups on your filestore, or you will backup your backups too!"
 msgstr ""
 
+#. module: auto_backup
+#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+msgid "Execute backup"
+msgstr ""
+
 #. module: auto_backup
 #: model:ir.actions.server,name:auto_backup.action_server_backup
 msgid "Execute backup(s)"
@@ -232,11 +244,6 @@ msgstr ""
 msgid "SFTP Settings"
 msgstr ""
 
-#. module: auto_backup
-#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_search
-msgid "Search options"
-msgstr ""
-
 #. module: auto_backup
 #: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
 msgid "Search the action named 'Backup scheduler'."
@@ -245,8 +252,7 @@ msgstr ""
 #. module: auto_backup
 #: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
 msgid ""
-"Set the scheduler to active and fill in how often you want backups "
-"generated."
+"Set the scheduler to active and fill in how often you want backups generated."
 msgstr ""
 
 #. module: auto_backup
@@ -280,8 +286,8 @@ msgstr ""
 #. module: auto_backup
 #: model:ir.model.fields,help:auto_backup.field_db_backup_sftp_user
 msgid ""
-"The username where the SFTP connection should be made with. This is the user"
-" on the external server."
+"The username where the SFTP connection should be made with. This is the user "
+"on the external server."
 msgstr ""
 
 #. module: auto_backup
@@ -301,11 +307,6 @@ msgstr ""
 msgid "Warning:"
 msgstr ""
 
-#. module: auto_backup
-#: model:ir.model,name:auto_backup.model_db_backup
-msgid "db.backup"
-msgstr ""
-
 #. module: auto_backup
 #: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
 msgid "john"
diff --git a/auto_backup/i18n/id.po b/auto_backup/i18n/id.po
index b85fad2e40d..8987d0315a3 100644
--- a/auto_backup/i18n/id.po
+++ b/auto_backup/i18n/id.po
@@ -1,7 +1,7 @@
 # Translation of Odoo Server.
 # This file contains the translation of the following modules:
 # * auto_backup
-# 
+#
 # Translators:
 # OCA Transbot <transbot@odoo-community.org>, 2016
 msgid ""
@@ -12,10 +12,10 @@ msgstr ""
 "PO-Revision-Date: 2017-02-18 02:29+0000\n"
 "Last-Translator: OCA Transbot <transbot@odoo-community.org>, 2016\n"
 "Language-Team: Indonesian (https://www.transifex.com/oca/teams/23907/id/)\n"
+"Language: id\n"
 "MIME-Version: 1.0\n"
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: \n"
-"Language: id\n"
 "Plural-Forms: nplurals=1; plural=0;\n"
 
 #. module: auto_backup
@@ -45,13 +45,15 @@ msgid "Backup Failed"
 msgstr ""
 
 #. module: auto_backup
-#: model:mail.message.subtype,name:auto_backup.mail_message_subtype_success
-msgid "Backup Successful"
+#: model:ir.actions.server,name:auto_backup.ir_cron_backup_scheduler_0_ir_actions_server
+#: model:ir.cron,cron_name:auto_backup.ir_cron_backup_scheduler_0
+#: model:ir.cron,name:auto_backup.ir_cron_backup_scheduler_0
+msgid "Backup Scheduler"
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_tree
-msgid "Backups"
+#: model:mail.message.subtype,name:auto_backup.mail_message_subtype_success
+msgid "Backup Successful"
 msgstr ""
 
 #. module: auto_backup
@@ -77,19 +79,19 @@ msgid "Choose the storage method for this backup."
 msgstr ""
 
 #. module: auto_backup
-#: code:addons/auto_backup/models/db_backup.py:251
+#: code:addons/auto_backup/models/db_backup.py:249
 #, python-format
 msgid "Cleanup of old database backups failed."
 msgstr ""
 
 #. module: auto_backup
-#: code:addons/auto_backup/models/db_backup.py:131
+#: code:addons/auto_backup/models/db_backup.py:128
 #, python-format
 msgid "Connection Test Failed!"
 msgstr ""
 
 #. module: auto_backup
-#: code:addons/auto_backup/models/db_backup.py:128
+#: code:addons/auto_backup/models/db_backup.py:123
 #, python-format
 msgid "Connection Test Succeeded!"
 msgstr ""
@@ -105,14 +107,19 @@ msgid "Created on"
 msgstr "Dibuat pada"
 
 #. module: auto_backup
-#: code:addons/auto_backup/models/db_backup.py:206
+#: model:ir.model,name:auto_backup.model_db_backup
+msgid "Database Backup"
+msgstr ""
+
+#. module: auto_backup
+#: code:addons/auto_backup/models/db_backup.py:203
 #: model:mail.message.subtype,description:auto_backup.mail_message_subtype_failure
 #, python-format
 msgid "Database backup failed."
 msgstr ""
 
 #. module: auto_backup
-#: code:addons/auto_backup/models/db_backup.py:214
+#: code:addons/auto_backup/models/db_backup.py:211
 #: model:mail.message.subtype,description:auto_backup.mail_message_subtype_success
 #, python-format
 msgid "Database backup succeeded."
@@ -120,7 +127,7 @@ msgstr ""
 
 #. module: auto_backup
 #: model:ir.model.fields,field_description:auto_backup.field_db_backup_days_to_keep
-msgid "Days to keep"
+msgid "Days To Keep"
 msgstr ""
 
 #. module: auto_backup
@@ -129,12 +136,17 @@ msgid "Display Name"
 msgstr "Nama Tampilan"
 
 #. module: auto_backup
-#: code:addons/auto_backup/models/db_backup.py:119
+#: code:addons/auto_backup/models/db_backup.py:114
 #, python-format
 msgid ""
 "Do not save backups on your filestore, or you will backup your backups too!"
 msgstr ""
 
+#. module: auto_backup
+#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+msgid "Execute backup"
+msgstr ""
+
 #. module: auto_backup
 #: model:ir.actions.server,name:auto_backup.action_server_backup
 msgid "Execute backup(s)"
@@ -232,11 +244,6 @@ msgstr ""
 msgid "SFTP Settings"
 msgstr ""
 
-#. module: auto_backup
-#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_search
-msgid "Search options"
-msgstr ""
-
 #. module: auto_backup
 #: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
 msgid "Search the action named 'Backup scheduler'."
@@ -245,8 +252,7 @@ msgstr ""
 #. module: auto_backup
 #: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
 msgid ""
-"Set the scheduler to active and fill in how often you want backups "
-"generated."
+"Set the scheduler to active and fill in how often you want backups generated."
 msgstr ""
 
 #. module: auto_backup
@@ -280,8 +286,8 @@ msgstr ""
 #. module: auto_backup
 #: model:ir.model.fields,help:auto_backup.field_db_backup_sftp_user
 msgid ""
-"The username where the SFTP connection should be made with. This is the user"
-" on the external server."
+"The username where the SFTP connection should be made with. This is the user "
+"on the external server."
 msgstr ""
 
 #. module: auto_backup
@@ -301,11 +307,6 @@ msgstr ""
 msgid "Warning:"
 msgstr ""
 
-#. module: auto_backup
-#: model:ir.model,name:auto_backup.model_db_backup
-msgid "db.backup"
-msgstr ""
-
 #. module: auto_backup
 #: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
 msgid "john"
diff --git a/auto_backup/i18n/it.po b/auto_backup/i18n/it.po
index 9807a63f033..8819ed1cbd6 100644
--- a/auto_backup/i18n/it.po
+++ b/auto_backup/i18n/it.po
@@ -1,7 +1,7 @@
 # Translation of Odoo Server.
 # This file contains the translation of the following modules:
 # * auto_backup
-# 
+#
 # Translators:
 # OCA Transbot <transbot@odoo-community.org>, 2018
 msgid ""
@@ -12,10 +12,10 @@ msgstr ""
 "PO-Revision-Date: 2018-03-03 10:08+0000\n"
 "Last-Translator: OCA Transbot <transbot@odoo-community.org>, 2018\n"
 "Language-Team: Italian (https://www.transifex.com/oca/teams/23907/it/)\n"
+"Language: it\n"
 "MIME-Version: 1.0\n"
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: \n"
-"Language: it\n"
 "Plural-Forms: nplurals=2; plural=(n != 1);\n"
 
 #. module: auto_backup
@@ -176,8 +176,7 @@ msgstr "Aiuto"
 #. module: auto_backup
 #: sql_constraint:db.backup:0
 msgid "I cannot remove backups from the future. Ask Doc for that."
-msgstr ""
-"Impossibile rimuovere backup dal futuro. Cercare nella Documentazione."
+msgstr "Impossibile rimuovere backup dal futuro. Cercare nella Documentazione."
 
 #. module: auto_backup
 #: model:ir.model.fields,field_description:auto_backup.field_db_backup_id
@@ -220,8 +219,8 @@ msgid ""
 "Path to the private key file. Only the Odoo user should have read "
 "permissions for that file."
 msgstr ""
-"Percorso al file della chiave privata. Soltanto l'utente Odoo dovrebbe avere"
-" il permesso in lettura di questo file."
+"Percorso al file della chiave privata. Soltanto l'utente Odoo dovrebbe avere "
+"il permesso in lettura di questo file."
 
 #. module: auto_backup
 #: model:ir.model.fields,field_description:auto_backup.field_db_backup_sftp_private_key
@@ -261,8 +260,7 @@ msgstr "Cerca l'azione denominata 'Pianificazione del backup'."
 #. module: auto_backup
 #: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
 msgid ""
-"Set the scheduler to active and fill in how often you want backups "
-"generated."
+"Set the scheduler to active and fill in how often you want backups generated."
 msgstr ""
 "Impostare lo scheduler per attivare e compilare la frequenza con cui si "
 "desidera generare il backup."
@@ -301,11 +299,10 @@ msgstr "La porta sul server FTP che accetta chiamate SSH/SFTP."
 #. module: auto_backup
 #: model:ir.model.fields,help:auto_backup.field_db_backup_sftp_user
 msgid ""
-"The username where the SFTP connection should be made with. This is the user"
-" on the external server."
+"The username where the SFTP connection should be made with. This is the user "
+"on the external server."
 msgstr ""
-"Il nome utente per la connessione SFTP. Questo ?? l'utente sul server "
-"esterno."
+"Il nome utente per la connessione SFTP. Questo ?? l'utente sul server esterno."
 
 #. module: auto_backup
 #: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
@@ -313,8 +310,8 @@ msgid ""
 "Use SFTP with caution! This writes files to external servers under the path "
 "you specify."
 msgstr ""
-"Usare SFTP con cautela! Questa modalit?? scrive file nel percorso specificato"
-" su server esterni."
+"Usare SFTP con cautela! Questa modalit?? scrive file nel percorso specificato "
+"su server esterni."
 
 #. module: auto_backup
 #: model:ir.model.fields,field_description:auto_backup.field_db_backup_sftp_user
diff --git a/auto_backup/i18n/ja.po b/auto_backup/i18n/ja.po
index 6f829638212..c5a19cff1f7 100644
--- a/auto_backup/i18n/ja.po
+++ b/auto_backup/i18n/ja.po
@@ -1,7 +1,7 @@
 # Translation of Odoo Server.
 # This file contains the translation of the following modules:
 # * auto_backup
-# 
+#
 # Translators:
 # OCA Transbot <transbot@odoo-community.org>, 2016
 msgid ""
@@ -12,10 +12,10 @@ msgstr ""
 "PO-Revision-Date: 2017-02-18 02:29+0000\n"
 "Last-Translator: OCA Transbot <transbot@odoo-community.org>, 2016\n"
 "Language-Team: Japanese (https://www.transifex.com/oca/teams/23907/ja/)\n"
+"Language: ja\n"
 "MIME-Version: 1.0\n"
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: \n"
-"Language: ja\n"
 "Plural-Forms: nplurals=1; plural=0;\n"
 
 #. module: auto_backup
@@ -45,13 +45,15 @@ msgid "Backup Failed"
 msgstr ""
 
 #. module: auto_backup
-#: model:mail.message.subtype,name:auto_backup.mail_message_subtype_success
-msgid "Backup Successful"
+#: model:ir.actions.server,name:auto_backup.ir_cron_backup_scheduler_0_ir_actions_server
+#: model:ir.cron,cron_name:auto_backup.ir_cron_backup_scheduler_0
+#: model:ir.cron,name:auto_backup.ir_cron_backup_scheduler_0
+msgid "Backup Scheduler"
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_tree
-msgid "Backups"
+#: model:mail.message.subtype,name:auto_backup.mail_message_subtype_success
+msgid "Backup Successful"
 msgstr ""
 
 #. module: auto_backup
@@ -77,19 +79,19 @@ msgid "Choose the storage method for this backup."
 msgstr ""
 
 #. module: auto_backup
-#: code:addons/auto_backup/models/db_backup.py:251
+#: code:addons/auto_backup/models/db_backup.py:249
 #, python-format
 msgid "Cleanup of old database backups failed."
 msgstr ""
 
 #. module: auto_backup
-#: code:addons/auto_backup/models/db_backup.py:131
+#: code:addons/auto_backup/models/db_backup.py:128
 #, python-format
 msgid "Connection Test Failed!"
 msgstr ""
 
 #. module: auto_backup
-#: code:addons/auto_backup/models/db_backup.py:128
+#: code:addons/auto_backup/models/db_backup.py:123
 #, python-format
 msgid "Connection Test Succeeded!"
 msgstr ""
@@ -105,14 +107,19 @@ msgid "Created on"
 msgstr "?????????"
 
 #. module: auto_backup
-#: code:addons/auto_backup/models/db_backup.py:206
+#: model:ir.model,name:auto_backup.model_db_backup
+msgid "Database Backup"
+msgstr ""
+
+#. module: auto_backup
+#: code:addons/auto_backup/models/db_backup.py:203
 #: model:mail.message.subtype,description:auto_backup.mail_message_subtype_failure
 #, python-format
 msgid "Database backup failed."
 msgstr ""
 
 #. module: auto_backup
-#: code:addons/auto_backup/models/db_backup.py:214
+#: code:addons/auto_backup/models/db_backup.py:211
 #: model:mail.message.subtype,description:auto_backup.mail_message_subtype_success
 #, python-format
 msgid "Database backup succeeded."
@@ -120,7 +127,7 @@ msgstr ""
 
 #. module: auto_backup
 #: model:ir.model.fields,field_description:auto_backup.field_db_backup_days_to_keep
-msgid "Days to keep"
+msgid "Days To Keep"
 msgstr ""
 
 #. module: auto_backup
@@ -129,12 +136,17 @@ msgid "Display Name"
 msgstr "?????????"
 
 #. module: auto_backup
-#: code:addons/auto_backup/models/db_backup.py:119
+#: code:addons/auto_backup/models/db_backup.py:114
 #, python-format
 msgid ""
 "Do not save backups on your filestore, or you will backup your backups too!"
 msgstr ""
 
+#. module: auto_backup
+#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+msgid "Execute backup"
+msgstr ""
+
 #. module: auto_backup
 #: model:ir.actions.server,name:auto_backup.action_server_backup
 msgid "Execute backup(s)"
@@ -232,11 +244,6 @@ msgstr ""
 msgid "SFTP Settings"
 msgstr ""
 
-#. module: auto_backup
-#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_search
-msgid "Search options"
-msgstr ""
-
 #. module: auto_backup
 #: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
 msgid "Search the action named 'Backup scheduler'."
@@ -245,8 +252,7 @@ msgstr ""
 #. module: auto_backup
 #: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
 msgid ""
-"Set the scheduler to active and fill in how often you want backups "
-"generated."
+"Set the scheduler to active and fill in how often you want backups generated."
 msgstr ""
 
 #. module: auto_backup
@@ -280,8 +286,8 @@ msgstr ""
 #. module: auto_backup
 #: model:ir.model.fields,help:auto_backup.field_db_backup_sftp_user
 msgid ""
-"The username where the SFTP connection should be made with. This is the user"
-" on the external server."
+"The username where the SFTP connection should be made with. This is the user "
+"on the external server."
 msgstr ""
 
 #. module: auto_backup
@@ -301,11 +307,6 @@ msgstr ""
 msgid "Warning:"
 msgstr ""
 
-#. module: auto_backup
-#: model:ir.model,name:auto_backup.model_db_backup
-msgid "db.backup"
-msgstr ""
-
 #. module: auto_backup
 #: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
 msgid "john"
diff --git a/auto_backup/i18n/ko.po b/auto_backup/i18n/ko.po
index a98eaf3bf71..17f0a2ea669 100644
--- a/auto_backup/i18n/ko.po
+++ b/auto_backup/i18n/ko.po
@@ -1,7 +1,7 @@
 # Translation of Odoo Server.
 # This file contains the translation of the following modules:
 # * auto_backup
-# 
+#
 # Translators:
 # OCA Transbot <transbot@odoo-community.org>, 2016
 msgid ""
@@ -12,10 +12,10 @@ msgstr ""
 "PO-Revision-Date: 2017-02-18 02:29+0000\n"
 "Last-Translator: OCA Transbot <transbot@odoo-community.org>, 2016\n"
 "Language-Team: Korean (https://www.transifex.com/oca/teams/23907/ko/)\n"
+"Language: ko\n"
 "MIME-Version: 1.0\n"
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: \n"
-"Language: ko\n"
 "Plural-Forms: nplurals=1; plural=0;\n"
 
 #. module: auto_backup
@@ -45,13 +45,15 @@ msgid "Backup Failed"
 msgstr ""
 
 #. module: auto_backup
-#: model:mail.message.subtype,name:auto_backup.mail_message_subtype_success
-msgid "Backup Successful"
+#: model:ir.actions.server,name:auto_backup.ir_cron_backup_scheduler_0_ir_actions_server
+#: model:ir.cron,cron_name:auto_backup.ir_cron_backup_scheduler_0
+#: model:ir.cron,name:auto_backup.ir_cron_backup_scheduler_0
+msgid "Backup Scheduler"
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_tree
-msgid "Backups"
+#: model:mail.message.subtype,name:auto_backup.mail_message_subtype_success
+msgid "Backup Successful"
 msgstr ""
 
 #. module: auto_backup
@@ -77,19 +79,19 @@ msgid "Choose the storage method for this backup."
 msgstr ""
 
 #. module: auto_backup
-#: code:addons/auto_backup/models/db_backup.py:251
+#: code:addons/auto_backup/models/db_backup.py:249
 #, python-format
 msgid "Cleanup of old database backups failed."
 msgstr ""
 
 #. module: auto_backup
-#: code:addons/auto_backup/models/db_backup.py:131
+#: code:addons/auto_backup/models/db_backup.py:128
 #, python-format
 msgid "Connection Test Failed!"
 msgstr ""
 
 #. module: auto_backup
-#: code:addons/auto_backup/models/db_backup.py:128
+#: code:addons/auto_backup/models/db_backup.py:123
 #, python-format
 msgid "Connection Test Succeeded!"
 msgstr ""
@@ -105,14 +107,19 @@ msgid "Created on"
 msgstr "?????????"
 
 #. module: auto_backup
-#: code:addons/auto_backup/models/db_backup.py:206
+#: model:ir.model,name:auto_backup.model_db_backup
+msgid "Database Backup"
+msgstr ""
+
+#. module: auto_backup
+#: code:addons/auto_backup/models/db_backup.py:203
 #: model:mail.message.subtype,description:auto_backup.mail_message_subtype_failure
 #, python-format
 msgid "Database backup failed."
 msgstr ""
 
 #. module: auto_backup
-#: code:addons/auto_backup/models/db_backup.py:214
+#: code:addons/auto_backup/models/db_backup.py:211
 #: model:mail.message.subtype,description:auto_backup.mail_message_subtype_success
 #, python-format
 msgid "Database backup succeeded."
@@ -120,7 +127,7 @@ msgstr ""
 
 #. module: auto_backup
 #: model:ir.model.fields,field_description:auto_backup.field_db_backup_days_to_keep
-msgid "Days to keep"
+msgid "Days To Keep"
 msgstr ""
 
 #. module: auto_backup
@@ -129,12 +136,17 @@ msgid "Display Name"
 msgstr "?????? ??????"
 
 #. module: auto_backup
-#: code:addons/auto_backup/models/db_backup.py:119
+#: code:addons/auto_backup/models/db_backup.py:114
 #, python-format
 msgid ""
 "Do not save backups on your filestore, or you will backup your backups too!"
 msgstr ""
 
+#. module: auto_backup
+#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+msgid "Execute backup"
+msgstr ""
+
 #. module: auto_backup
 #: model:ir.actions.server,name:auto_backup.action_server_backup
 msgid "Execute backup(s)"
@@ -232,11 +244,6 @@ msgstr ""
 msgid "SFTP Settings"
 msgstr ""
 
-#. module: auto_backup
-#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_search
-msgid "Search options"
-msgstr ""
-
 #. module: auto_backup
 #: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
 msgid "Search the action named 'Backup scheduler'."
@@ -245,8 +252,7 @@ msgstr ""
 #. module: auto_backup
 #: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
 msgid ""
-"Set the scheduler to active and fill in how often you want backups "
-"generated."
+"Set the scheduler to active and fill in how often you want backups generated."
 msgstr ""
 
 #. module: auto_backup
@@ -280,8 +286,8 @@ msgstr ""
 #. module: auto_backup
 #: model:ir.model.fields,help:auto_backup.field_db_backup_sftp_user
 msgid ""
-"The username where the SFTP connection should be made with. This is the user"
-" on the external server."
+"The username where the SFTP connection should be made with. This is the user "
+"on the external server."
 msgstr ""
 
 #. module: auto_backup
@@ -301,11 +307,6 @@ msgstr ""
 msgid "Warning:"
 msgstr ""
 
-#. module: auto_backup
-#: model:ir.model,name:auto_backup.model_db_backup
-msgid "db.backup"
-msgstr ""
-
 #. module: auto_backup
 #: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
 msgid "john"
diff --git a/auto_backup/i18n/lt.po b/auto_backup/i18n/lt.po
index be157daa7b3..70a964f3305 100644
--- a/auto_backup/i18n/lt.po
+++ b/auto_backup/i18n/lt.po
@@ -1,7 +1,7 @@
 # Translation of Odoo Server.
 # This file contains the translation of the following modules:
 # * auto_backup
-# 
+#
 # Translators:
 # OCA Transbot <transbot@odoo-community.org>, 2016
 msgid ""
@@ -12,11 +12,12 @@ msgstr ""
 "PO-Revision-Date: 2017-02-18 02:29+0000\n"
 "Last-Translator: OCA Transbot <transbot@odoo-community.org>, 2016\n"
 "Language-Team: Lithuanian (https://www.transifex.com/oca/teams/23907/lt/)\n"
+"Language: lt\n"
 "MIME-Version: 1.0\n"
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: \n"
-"Language: lt\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"
+"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: auto_backup
 #: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
@@ -45,13 +46,15 @@ msgid "Backup Failed"
 msgstr ""
 
 #. module: auto_backup
-#: model:mail.message.subtype,name:auto_backup.mail_message_subtype_success
-msgid "Backup Successful"
+#: model:ir.actions.server,name:auto_backup.ir_cron_backup_scheduler_0_ir_actions_server
+#: model:ir.cron,cron_name:auto_backup.ir_cron_backup_scheduler_0
+#: model:ir.cron,name:auto_backup.ir_cron_backup_scheduler_0
+msgid "Backup Scheduler"
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_tree
-msgid "Backups"
+#: model:mail.message.subtype,name:auto_backup.mail_message_subtype_success
+msgid "Backup Successful"
 msgstr ""
 
 #. module: auto_backup
@@ -77,19 +80,19 @@ msgid "Choose the storage method for this backup."
 msgstr ""
 
 #. module: auto_backup
-#: code:addons/auto_backup/models/db_backup.py:251
+#: code:addons/auto_backup/models/db_backup.py:249
 #, python-format
 msgid "Cleanup of old database backups failed."
 msgstr ""
 
 #. module: auto_backup
-#: code:addons/auto_backup/models/db_backup.py:131
+#: code:addons/auto_backup/models/db_backup.py:128
 #, python-format
 msgid "Connection Test Failed!"
 msgstr ""
 
 #. module: auto_backup
-#: code:addons/auto_backup/models/db_backup.py:128
+#: code:addons/auto_backup/models/db_backup.py:123
 #, python-format
 msgid "Connection Test Succeeded!"
 msgstr ""
@@ -105,14 +108,19 @@ msgid "Created on"
 msgstr "Sukurta"
 
 #. module: auto_backup
-#: code:addons/auto_backup/models/db_backup.py:206
+#: model:ir.model,name:auto_backup.model_db_backup
+msgid "Database Backup"
+msgstr ""
+
+#. module: auto_backup
+#: code:addons/auto_backup/models/db_backup.py:203
 #: model:mail.message.subtype,description:auto_backup.mail_message_subtype_failure
 #, python-format
 msgid "Database backup failed."
 msgstr ""
 
 #. module: auto_backup
-#: code:addons/auto_backup/models/db_backup.py:214
+#: code:addons/auto_backup/models/db_backup.py:211
 #: model:mail.message.subtype,description:auto_backup.mail_message_subtype_success
 #, python-format
 msgid "Database backup succeeded."
@@ -120,7 +128,7 @@ msgstr ""
 
 #. module: auto_backup
 #: model:ir.model.fields,field_description:auto_backup.field_db_backup_days_to_keep
-msgid "Days to keep"
+msgid "Days To Keep"
 msgstr ""
 
 #. module: auto_backup
@@ -129,12 +137,17 @@ msgid "Display Name"
 msgstr "Vaizduojamas pavadinimas"
 
 #. module: auto_backup
-#: code:addons/auto_backup/models/db_backup.py:119
+#: code:addons/auto_backup/models/db_backup.py:114
 #, python-format
 msgid ""
 "Do not save backups on your filestore, or you will backup your backups too!"
 msgstr ""
 
+#. module: auto_backup
+#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+msgid "Execute backup"
+msgstr ""
+
 #. module: auto_backup
 #: model:ir.actions.server,name:auto_backup.action_server_backup
 msgid "Execute backup(s)"
@@ -232,11 +245,6 @@ msgstr ""
 msgid "SFTP Settings"
 msgstr ""
 
-#. module: auto_backup
-#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_search
-msgid "Search options"
-msgstr ""
-
 #. module: auto_backup
 #: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
 msgid "Search the action named 'Backup scheduler'."
@@ -245,8 +253,7 @@ msgstr ""
 #. module: auto_backup
 #: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
 msgid ""
-"Set the scheduler to active and fill in how often you want backups "
-"generated."
+"Set the scheduler to active and fill in how often you want backups generated."
 msgstr ""
 
 #. module: auto_backup
@@ -280,8 +287,8 @@ msgstr ""
 #. module: auto_backup
 #: model:ir.model.fields,help:auto_backup.field_db_backup_sftp_user
 msgid ""
-"The username where the SFTP connection should be made with. This is the user"
-" on the external server."
+"The username where the SFTP connection should be made with. This is the user "
+"on the external server."
 msgstr ""
 
 #. module: auto_backup
@@ -301,11 +308,6 @@ msgstr ""
 msgid "Warning:"
 msgstr ""
 
-#. module: auto_backup
-#: model:ir.model,name:auto_backup.model_db_backup
-msgid "db.backup"
-msgstr ""
-
 #. module: auto_backup
 #: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
 msgid "john"
diff --git a/auto_backup/i18n/lt_LT.po b/auto_backup/i18n/lt_LT.po
index a20a77a0c7c..8dfe16c4abf 100644
--- a/auto_backup/i18n/lt_LT.po
+++ b/auto_backup/i18n/lt_LT.po
@@ -1,7 +1,7 @@
 # Translation of Odoo Server.
 # This file contains the translation of the following modules:
 # * auto_backup
-# 
+#
 # Translators:
 # OCA Transbot <transbot@odoo-community.org>, 2016
 msgid ""
@@ -11,12 +11,14 @@ msgstr ""
 "POT-Creation-Date: 2016-12-08 03:36+0000\n"
 "PO-Revision-Date: 2016-12-08 03:36+0000\n"
 "Last-Translator: OCA Transbot <transbot@odoo-community.org>, 2016\n"
-"Language-Team: Lithuanian (Lithuania) (https://www.transifex.com/oca/teams/23907/lt_LT/)\n"
+"Language-Team: Lithuanian (Lithuania) (https://www.transifex.com/oca/"
+"teams/23907/lt_LT/)\n"
+"Language: lt_LT\n"
 "MIME-Version: 1.0\n"
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: \n"
-"Language: lt_LT\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"
+"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: auto_backup
 #: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
@@ -45,13 +47,15 @@ msgid "Backup Failed"
 msgstr ""
 
 #. module: auto_backup
-#: model:mail.message.subtype,name:auto_backup.mail_message_subtype_success
-msgid "Backup Successful"
+#: model:ir.actions.server,name:auto_backup.ir_cron_backup_scheduler_0_ir_actions_server
+#: model:ir.cron,cron_name:auto_backup.ir_cron_backup_scheduler_0
+#: model:ir.cron,name:auto_backup.ir_cron_backup_scheduler_0
+msgid "Backup Scheduler"
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_tree
-msgid "Backups"
+#: model:mail.message.subtype,name:auto_backup.mail_message_subtype_success
+msgid "Backup Successful"
 msgstr ""
 
 #. module: auto_backup
@@ -77,19 +81,19 @@ msgid "Choose the storage method for this backup."
 msgstr ""
 
 #. module: auto_backup
-#: code:addons/auto_backup/models/db_backup.py:248
+#: code:addons/auto_backup/models/db_backup.py:249
 #, python-format
 msgid "Cleanup of old database backups failed."
 msgstr ""
 
 #. module: auto_backup
-#: code:addons/auto_backup/models/db_backup.py:131
+#: code:addons/auto_backup/models/db_backup.py:128
 #, python-format
 msgid "Connection Test Failed!"
 msgstr ""
 
 #. module: auto_backup
-#: code:addons/auto_backup/models/db_backup.py:128
+#: code:addons/auto_backup/models/db_backup.py:123
 #, python-format
 msgid "Connection Test Succeeded!"
 msgstr ""
@@ -105,7 +109,12 @@ msgid "Created on"
 msgstr "Sukurta"
 
 #. module: auto_backup
-#: code:addons/auto_backup/models/db_backup.py:206
+#: model:ir.model,name:auto_backup.model_db_backup
+msgid "Database Backup"
+msgstr ""
+
+#. module: auto_backup
+#: code:addons/auto_backup/models/db_backup.py:203
 #: model:mail.message.subtype,description:auto_backup.mail_message_subtype_failure
 #, python-format
 msgid "Database backup failed."
@@ -120,7 +129,7 @@ msgstr ""
 
 #. module: auto_backup
 #: model:ir.model.fields,field_description:auto_backup.field_db_backup_days_to_keep
-msgid "Days to keep"
+msgid "Days To Keep"
 msgstr ""
 
 #. module: auto_backup
@@ -129,12 +138,17 @@ msgid "Display Name"
 msgstr ""
 
 #. module: auto_backup
-#: code:addons/auto_backup/models/db_backup.py:119
+#: code:addons/auto_backup/models/db_backup.py:114
 #, python-format
 msgid ""
 "Do not save backups on your filestore, or you will backup your backups too!"
 msgstr ""
 
+#. module: auto_backup
+#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+msgid "Execute backup"
+msgstr ""
+
 #. module: auto_backup
 #: model:ir.actions.server,name:auto_backup.action_server_backup
 msgid "Execute backup(s)"
@@ -232,11 +246,6 @@ msgstr ""
 msgid "SFTP Settings"
 msgstr ""
 
-#. module: auto_backup
-#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_search
-msgid "Search options"
-msgstr ""
-
 #. module: auto_backup
 #: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
 msgid "Search the action named 'Backup scheduler'."
@@ -245,8 +254,7 @@ msgstr ""
 #. module: auto_backup
 #: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
 msgid ""
-"Set the scheduler to active and fill in how often you want backups "
-"generated."
+"Set the scheduler to active and fill in how often you want backups generated."
 msgstr ""
 
 #. module: auto_backup
@@ -280,8 +288,8 @@ msgstr ""
 #. module: auto_backup
 #: model:ir.model.fields,help:auto_backup.field_db_backup_sftp_user
 msgid ""
-"The username where the SFTP connection should be made with. This is the user"
-" on the external server."
+"The username where the SFTP connection should be made with. This is the user "
+"on the external server."
 msgstr ""
 
 #. module: auto_backup
@@ -301,11 +309,6 @@ msgstr ""
 msgid "Warning:"
 msgstr ""
 
-#. module: auto_backup
-#: model:ir.model,name:auto_backup.model_db_backup
-msgid "db.backup"
-msgstr ""
-
 #. module: auto_backup
 #: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
 msgid "john"
diff --git a/auto_backup/i18n/lv.po b/auto_backup/i18n/lv.po
index c3c660911d6..06e10742865 100644
--- a/auto_backup/i18n/lv.po
+++ b/auto_backup/i18n/lv.po
@@ -1,7 +1,7 @@
 # Translation of Odoo Server.
 # This file contains the translation of the following modules:
 # * auto_backup
-# 
+#
 # Translators:
 # OCA Transbot <transbot@odoo-community.org>, 2016
 msgid ""
@@ -12,11 +12,12 @@ msgstr ""
 "PO-Revision-Date: 2017-02-18 02:29+0000\n"
 "Last-Translator: OCA Transbot <transbot@odoo-community.org>, 2016\n"
 "Language-Team: Latvian (https://www.transifex.com/oca/teams/23907/lv/)\n"
+"Language: lv\n"
 "MIME-Version: 1.0\n"
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: \n"
-"Language: lv\n"
-"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n != 0 ? 1 : 2);\n"
+"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n != 0 ? 1 : "
+"2);\n"
 
 #. module: auto_backup
 #: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
@@ -45,13 +46,15 @@ msgid "Backup Failed"
 msgstr ""
 
 #. module: auto_backup
-#: model:mail.message.subtype,name:auto_backup.mail_message_subtype_success
-msgid "Backup Successful"
+#: model:ir.actions.server,name:auto_backup.ir_cron_backup_scheduler_0_ir_actions_server
+#: model:ir.cron,cron_name:auto_backup.ir_cron_backup_scheduler_0
+#: model:ir.cron,name:auto_backup.ir_cron_backup_scheduler_0
+msgid "Backup Scheduler"
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_tree
-msgid "Backups"
+#: model:mail.message.subtype,name:auto_backup.mail_message_subtype_success
+msgid "Backup Successful"
 msgstr ""
 
 #. module: auto_backup
@@ -77,19 +80,19 @@ msgid "Choose the storage method for this backup."
 msgstr ""
 
 #. module: auto_backup
-#: code:addons/auto_backup/models/db_backup.py:251
+#: code:addons/auto_backup/models/db_backup.py:249
 #, python-format
 msgid "Cleanup of old database backups failed."
 msgstr ""
 
 #. module: auto_backup
-#: code:addons/auto_backup/models/db_backup.py:131
+#: code:addons/auto_backup/models/db_backup.py:128
 #, python-format
 msgid "Connection Test Failed!"
 msgstr ""
 
 #. module: auto_backup
-#: code:addons/auto_backup/models/db_backup.py:128
+#: code:addons/auto_backup/models/db_backup.py:123
 #, python-format
 msgid "Connection Test Succeeded!"
 msgstr ""
@@ -105,14 +108,19 @@ msgid "Created on"
 msgstr "Izveidots"
 
 #. module: auto_backup
-#: code:addons/auto_backup/models/db_backup.py:206
+#: model:ir.model,name:auto_backup.model_db_backup
+msgid "Database Backup"
+msgstr ""
+
+#. module: auto_backup
+#: code:addons/auto_backup/models/db_backup.py:203
 #: model:mail.message.subtype,description:auto_backup.mail_message_subtype_failure
 #, python-format
 msgid "Database backup failed."
 msgstr ""
 
 #. module: auto_backup
-#: code:addons/auto_backup/models/db_backup.py:214
+#: code:addons/auto_backup/models/db_backup.py:211
 #: model:mail.message.subtype,description:auto_backup.mail_message_subtype_success
 #, python-format
 msgid "Database backup succeeded."
@@ -120,7 +128,7 @@ msgstr ""
 
 #. module: auto_backup
 #: model:ir.model.fields,field_description:auto_backup.field_db_backup_days_to_keep
-msgid "Days to keep"
+msgid "Days To Keep"
 msgstr ""
 
 #. module: auto_backup
@@ -129,12 +137,17 @@ msgid "Display Name"
 msgstr ""
 
 #. module: auto_backup
-#: code:addons/auto_backup/models/db_backup.py:119
+#: code:addons/auto_backup/models/db_backup.py:114
 #, python-format
 msgid ""
 "Do not save backups on your filestore, or you will backup your backups too!"
 msgstr ""
 
+#. module: auto_backup
+#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+msgid "Execute backup"
+msgstr ""
+
 #. module: auto_backup
 #: model:ir.actions.server,name:auto_backup.action_server_backup
 msgid "Execute backup(s)"
@@ -232,11 +245,6 @@ msgstr ""
 msgid "SFTP Settings"
 msgstr ""
 
-#. module: auto_backup
-#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_search
-msgid "Search options"
-msgstr ""
-
 #. module: auto_backup
 #: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
 msgid "Search the action named 'Backup scheduler'."
@@ -245,8 +253,7 @@ msgstr ""
 #. module: auto_backup
 #: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
 msgid ""
-"Set the scheduler to active and fill in how often you want backups "
-"generated."
+"Set the scheduler to active and fill in how often you want backups generated."
 msgstr ""
 
 #. module: auto_backup
@@ -280,8 +287,8 @@ msgstr ""
 #. module: auto_backup
 #: model:ir.model.fields,help:auto_backup.field_db_backup_sftp_user
 msgid ""
-"The username where the SFTP connection should be made with. This is the user"
-" on the external server."
+"The username where the SFTP connection should be made with. This is the user "
+"on the external server."
 msgstr ""
 
 #. module: auto_backup
@@ -301,11 +308,6 @@ msgstr ""
 msgid "Warning:"
 msgstr ""
 
-#. module: auto_backup
-#: model:ir.model,name:auto_backup.model_db_backup
-msgid "db.backup"
-msgstr ""
-
 #. module: auto_backup
 #: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
 msgid "john"
diff --git a/auto_backup/i18n/mk.po b/auto_backup/i18n/mk.po
index 6ad742760ab..1abc3ebf038 100644
--- a/auto_backup/i18n/mk.po
+++ b/auto_backup/i18n/mk.po
@@ -1,7 +1,7 @@
 # Translation of Odoo Server.
 # This file contains the translation of the following modules:
 # * auto_backup
-# 
+#
 # Translators:
 # OCA Transbot <transbot@odoo-community.org>, 2016
 msgid ""
@@ -12,10 +12,10 @@ msgstr ""
 "PO-Revision-Date: 2017-02-18 02:29+0000\n"
 "Last-Translator: OCA Transbot <transbot@odoo-community.org>, 2016\n"
 "Language-Team: Macedonian (https://www.transifex.com/oca/teams/23907/mk/)\n"
+"Language: mk\n"
 "MIME-Version: 1.0\n"
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: \n"
-"Language: mk\n"
 "Plural-Forms: nplurals=2; plural=(n % 10 == 1 && n % 100 != 11) ? 0 : 1;\n"
 
 #. module: auto_backup
@@ -45,13 +45,15 @@ msgid "Backup Failed"
 msgstr ""
 
 #. module: auto_backup
-#: model:mail.message.subtype,name:auto_backup.mail_message_subtype_success
-msgid "Backup Successful"
+#: model:ir.actions.server,name:auto_backup.ir_cron_backup_scheduler_0_ir_actions_server
+#: model:ir.cron,cron_name:auto_backup.ir_cron_backup_scheduler_0
+#: model:ir.cron,name:auto_backup.ir_cron_backup_scheduler_0
+msgid "Backup Scheduler"
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_tree
-msgid "Backups"
+#: model:mail.message.subtype,name:auto_backup.mail_message_subtype_success
+msgid "Backup Successful"
 msgstr ""
 
 #. module: auto_backup
@@ -77,19 +79,19 @@ msgid "Choose the storage method for this backup."
 msgstr ""
 
 #. module: auto_backup
-#: code:addons/auto_backup/models/db_backup.py:251
+#: code:addons/auto_backup/models/db_backup.py:249
 #, python-format
 msgid "Cleanup of old database backups failed."
 msgstr ""
 
 #. module: auto_backup
-#: code:addons/auto_backup/models/db_backup.py:131
+#: code:addons/auto_backup/models/db_backup.py:128
 #, python-format
 msgid "Connection Test Failed!"
 msgstr ""
 
 #. module: auto_backup
-#: code:addons/auto_backup/models/db_backup.py:128
+#: code:addons/auto_backup/models/db_backup.py:123
 #, python-format
 msgid "Connection Test Succeeded!"
 msgstr ""
@@ -105,14 +107,19 @@ msgid "Created on"
 msgstr "???????????????? ????"
 
 #. module: auto_backup
-#: code:addons/auto_backup/models/db_backup.py:206
+#: model:ir.model,name:auto_backup.model_db_backup
+msgid "Database Backup"
+msgstr ""
+
+#. module: auto_backup
+#: code:addons/auto_backup/models/db_backup.py:203
 #: model:mail.message.subtype,description:auto_backup.mail_message_subtype_failure
 #, python-format
 msgid "Database backup failed."
 msgstr ""
 
 #. module: auto_backup
-#: code:addons/auto_backup/models/db_backup.py:214
+#: code:addons/auto_backup/models/db_backup.py:211
 #: model:mail.message.subtype,description:auto_backup.mail_message_subtype_success
 #, python-format
 msgid "Database backup succeeded."
@@ -120,7 +127,7 @@ msgstr ""
 
 #. module: auto_backup
 #: model:ir.model.fields,field_description:auto_backup.field_db_backup_days_to_keep
-msgid "Days to keep"
+msgid "Days To Keep"
 msgstr ""
 
 #. module: auto_backup
@@ -129,12 +136,17 @@ msgid "Display Name"
 msgstr "?????????????? ??????"
 
 #. module: auto_backup
-#: code:addons/auto_backup/models/db_backup.py:119
+#: code:addons/auto_backup/models/db_backup.py:114
 #, python-format
 msgid ""
 "Do not save backups on your filestore, or you will backup your backups too!"
 msgstr ""
 
+#. module: auto_backup
+#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+msgid "Execute backup"
+msgstr ""
+
 #. module: auto_backup
 #: model:ir.actions.server,name:auto_backup.action_server_backup
 msgid "Execute backup(s)"
@@ -232,11 +244,6 @@ msgstr ""
 msgid "SFTP Settings"
 msgstr ""
 
-#. module: auto_backup
-#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_search
-msgid "Search options"
-msgstr ""
-
 #. module: auto_backup
 #: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
 msgid "Search the action named 'Backup scheduler'."
@@ -245,8 +252,7 @@ msgstr ""
 #. module: auto_backup
 #: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
 msgid ""
-"Set the scheduler to active and fill in how often you want backups "
-"generated."
+"Set the scheduler to active and fill in how often you want backups generated."
 msgstr ""
 
 #. module: auto_backup
@@ -280,8 +286,8 @@ msgstr ""
 #. module: auto_backup
 #: model:ir.model.fields,help:auto_backup.field_db_backup_sftp_user
 msgid ""
-"The username where the SFTP connection should be made with. This is the user"
-" on the external server."
+"The username where the SFTP connection should be made with. This is the user "
+"on the external server."
 msgstr ""
 
 #. module: auto_backup
@@ -301,11 +307,6 @@ msgstr ""
 msgid "Warning:"
 msgstr ""
 
-#. module: auto_backup
-#: model:ir.model,name:auto_backup.model_db_backup
-msgid "db.backup"
-msgstr ""
-
 #. module: auto_backup
 #: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
 msgid "john"
diff --git a/auto_backup/i18n/mn.po b/auto_backup/i18n/mn.po
index 90097b41c46..33a3c026145 100644
--- a/auto_backup/i18n/mn.po
+++ b/auto_backup/i18n/mn.po
@@ -1,7 +1,7 @@
 # Translation of Odoo Server.
 # This file contains the translation of the following modules:
 # * auto_backup
-# 
+#
 # Translators:
 # OCA Transbot <transbot@odoo-community.org>, 2016
 msgid ""
@@ -12,10 +12,10 @@ msgstr ""
 "PO-Revision-Date: 2017-02-18 02:29+0000\n"
 "Last-Translator: OCA Transbot <transbot@odoo-community.org>, 2016\n"
 "Language-Team: Mongolian (https://www.transifex.com/oca/teams/23907/mn/)\n"
+"Language: mn\n"
 "MIME-Version: 1.0\n"
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: \n"
-"Language: mn\n"
 "Plural-Forms: nplurals=2; plural=(n != 1);\n"
 
 #. module: auto_backup
@@ -45,13 +45,15 @@ msgid "Backup Failed"
 msgstr ""
 
 #. module: auto_backup
-#: model:mail.message.subtype,name:auto_backup.mail_message_subtype_success
-msgid "Backup Successful"
+#: model:ir.actions.server,name:auto_backup.ir_cron_backup_scheduler_0_ir_actions_server
+#: model:ir.cron,cron_name:auto_backup.ir_cron_backup_scheduler_0
+#: model:ir.cron,name:auto_backup.ir_cron_backup_scheduler_0
+msgid "Backup Scheduler"
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_tree
-msgid "Backups"
+#: model:mail.message.subtype,name:auto_backup.mail_message_subtype_success
+msgid "Backup Successful"
 msgstr ""
 
 #. module: auto_backup
@@ -77,19 +79,19 @@ msgid "Choose the storage method for this backup."
 msgstr ""
 
 #. module: auto_backup
-#: code:addons/auto_backup/models/db_backup.py:251
+#: code:addons/auto_backup/models/db_backup.py:249
 #, python-format
 msgid "Cleanup of old database backups failed."
 msgstr ""
 
 #. module: auto_backup
-#: code:addons/auto_backup/models/db_backup.py:131
+#: code:addons/auto_backup/models/db_backup.py:128
 #, python-format
 msgid "Connection Test Failed!"
 msgstr ""
 
 #. module: auto_backup
-#: code:addons/auto_backup/models/db_backup.py:128
+#: code:addons/auto_backup/models/db_backup.py:123
 #, python-format
 msgid "Connection Test Succeeded!"
 msgstr ""
@@ -105,14 +107,19 @@ msgid "Created on"
 msgstr "???????????????? ??????????"
 
 #. module: auto_backup
-#: code:addons/auto_backup/models/db_backup.py:206
+#: model:ir.model,name:auto_backup.model_db_backup
+msgid "Database Backup"
+msgstr ""
+
+#. module: auto_backup
+#: code:addons/auto_backup/models/db_backup.py:203
 #: model:mail.message.subtype,description:auto_backup.mail_message_subtype_failure
 #, python-format
 msgid "Database backup failed."
 msgstr ""
 
 #. module: auto_backup
-#: code:addons/auto_backup/models/db_backup.py:214
+#: code:addons/auto_backup/models/db_backup.py:211
 #: model:mail.message.subtype,description:auto_backup.mail_message_subtype_success
 #, python-format
 msgid "Database backup succeeded."
@@ -120,7 +127,7 @@ msgstr ""
 
 #. module: auto_backup
 #: model:ir.model.fields,field_description:auto_backup.field_db_backup_days_to_keep
-msgid "Days to keep"
+msgid "Days To Keep"
 msgstr ""
 
 #. module: auto_backup
@@ -129,12 +136,17 @@ msgid "Display Name"
 msgstr "?????????????????? ??????"
 
 #. module: auto_backup
-#: code:addons/auto_backup/models/db_backup.py:119
+#: code:addons/auto_backup/models/db_backup.py:114
 #, python-format
 msgid ""
 "Do not save backups on your filestore, or you will backup your backups too!"
 msgstr ""
 
+#. module: auto_backup
+#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+msgid "Execute backup"
+msgstr ""
+
 #. module: auto_backup
 #: model:ir.actions.server,name:auto_backup.action_server_backup
 msgid "Execute backup(s)"
@@ -232,11 +244,6 @@ msgstr ""
 msgid "SFTP Settings"
 msgstr ""
 
-#. module: auto_backup
-#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_search
-msgid "Search options"
-msgstr ""
-
 #. module: auto_backup
 #: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
 msgid "Search the action named 'Backup scheduler'."
@@ -245,8 +252,7 @@ msgstr ""
 #. module: auto_backup
 #: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
 msgid ""
-"Set the scheduler to active and fill in how often you want backups "
-"generated."
+"Set the scheduler to active and fill in how often you want backups generated."
 msgstr ""
 
 #. module: auto_backup
@@ -280,8 +286,8 @@ msgstr ""
 #. module: auto_backup
 #: model:ir.model.fields,help:auto_backup.field_db_backup_sftp_user
 msgid ""
-"The username where the SFTP connection should be made with. This is the user"
-" on the external server."
+"The username where the SFTP connection should be made with. This is the user "
+"on the external server."
 msgstr ""
 
 #. module: auto_backup
@@ -301,11 +307,6 @@ msgstr ""
 msgid "Warning:"
 msgstr ""
 
-#. module: auto_backup
-#: model:ir.model,name:auto_backup.model_db_backup
-msgid "db.backup"
-msgstr ""
-
 #. module: auto_backup
 #: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
 msgid "john"
diff --git a/auto_backup/i18n/nb.po b/auto_backup/i18n/nb.po
index 9b3a9a00539..ff721290912 100644
--- a/auto_backup/i18n/nb.po
+++ b/auto_backup/i18n/nb.po
@@ -1,7 +1,7 @@
 # Translation of Odoo Server.
 # This file contains the translation of the following modules:
 # * auto_backup
-# 
+#
 # Translators:
 # OCA Transbot <transbot@odoo-community.org>, 2016
 msgid ""
@@ -11,11 +11,12 @@ msgstr ""
 "POT-Creation-Date: 2017-02-18 02:29+0000\n"
 "PO-Revision-Date: 2017-02-18 02:29+0000\n"
 "Last-Translator: OCA Transbot <transbot@odoo-community.org>, 2016\n"
-"Language-Team: Norwegian Bokm??l (https://www.transifex.com/oca/teams/23907/nb/)\n"
+"Language-Team: Norwegian Bokm??l (https://www.transifex.com/oca/teams/23907/"
+"nb/)\n"
+"Language: nb\n"
 "MIME-Version: 1.0\n"
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: \n"
-"Language: nb\n"
 "Plural-Forms: nplurals=2; plural=(n != 1);\n"
 
 #. module: auto_backup
@@ -45,13 +46,15 @@ msgid "Backup Failed"
 msgstr ""
 
 #. module: auto_backup
-#: model:mail.message.subtype,name:auto_backup.mail_message_subtype_success
-msgid "Backup Successful"
+#: model:ir.actions.server,name:auto_backup.ir_cron_backup_scheduler_0_ir_actions_server
+#: model:ir.cron,cron_name:auto_backup.ir_cron_backup_scheduler_0
+#: model:ir.cron,name:auto_backup.ir_cron_backup_scheduler_0
+msgid "Backup Scheduler"
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_tree
-msgid "Backups"
+#: model:mail.message.subtype,name:auto_backup.mail_message_subtype_success
+msgid "Backup Successful"
 msgstr ""
 
 #. module: auto_backup
@@ -77,19 +80,19 @@ msgid "Choose the storage method for this backup."
 msgstr ""
 
 #. module: auto_backup
-#: code:addons/auto_backup/models/db_backup.py:251
+#: code:addons/auto_backup/models/db_backup.py:249
 #, python-format
 msgid "Cleanup of old database backups failed."
 msgstr ""
 
 #. module: auto_backup
-#: code:addons/auto_backup/models/db_backup.py:131
+#: code:addons/auto_backup/models/db_backup.py:128
 #, python-format
 msgid "Connection Test Failed!"
 msgstr ""
 
 #. module: auto_backup
-#: code:addons/auto_backup/models/db_backup.py:128
+#: code:addons/auto_backup/models/db_backup.py:123
 #, python-format
 msgid "Connection Test Succeeded!"
 msgstr ""
@@ -105,14 +108,19 @@ msgid "Created on"
 msgstr "Opprettet"
 
 #. module: auto_backup
-#: code:addons/auto_backup/models/db_backup.py:206
+#: model:ir.model,name:auto_backup.model_db_backup
+msgid "Database Backup"
+msgstr ""
+
+#. module: auto_backup
+#: code:addons/auto_backup/models/db_backup.py:203
 #: model:mail.message.subtype,description:auto_backup.mail_message_subtype_failure
 #, python-format
 msgid "Database backup failed."
 msgstr ""
 
 #. module: auto_backup
-#: code:addons/auto_backup/models/db_backup.py:214
+#: code:addons/auto_backup/models/db_backup.py:211
 #: model:mail.message.subtype,description:auto_backup.mail_message_subtype_success
 #, python-format
 msgid "Database backup succeeded."
@@ -120,7 +128,7 @@ msgstr ""
 
 #. module: auto_backup
 #: model:ir.model.fields,field_description:auto_backup.field_db_backup_days_to_keep
-msgid "Days to keep"
+msgid "Days To Keep"
 msgstr ""
 
 #. module: auto_backup
@@ -129,12 +137,17 @@ msgid "Display Name"
 msgstr "Visnings navn"
 
 #. module: auto_backup
-#: code:addons/auto_backup/models/db_backup.py:119
+#: code:addons/auto_backup/models/db_backup.py:114
 #, python-format
 msgid ""
 "Do not save backups on your filestore, or you will backup your backups too!"
 msgstr ""
 
+#. module: auto_backup
+#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+msgid "Execute backup"
+msgstr ""
+
 #. module: auto_backup
 #: model:ir.actions.server,name:auto_backup.action_server_backup
 msgid "Execute backup(s)"
@@ -232,11 +245,6 @@ msgstr ""
 msgid "SFTP Settings"
 msgstr ""
 
-#. module: auto_backup
-#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_search
-msgid "Search options"
-msgstr ""
-
 #. module: auto_backup
 #: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
 msgid "Search the action named 'Backup scheduler'."
@@ -245,8 +253,7 @@ msgstr ""
 #. module: auto_backup
 #: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
 msgid ""
-"Set the scheduler to active and fill in how often you want backups "
-"generated."
+"Set the scheduler to active and fill in how often you want backups generated."
 msgstr ""
 
 #. module: auto_backup
@@ -280,8 +287,8 @@ msgstr ""
 #. module: auto_backup
 #: model:ir.model.fields,help:auto_backup.field_db_backup_sftp_user
 msgid ""
-"The username where the SFTP connection should be made with. This is the user"
-" on the external server."
+"The username where the SFTP connection should be made with. This is the user "
+"on the external server."
 msgstr ""
 
 #. module: auto_backup
@@ -301,11 +308,6 @@ msgstr ""
 msgid "Warning:"
 msgstr ""
 
-#. module: auto_backup
-#: model:ir.model,name:auto_backup.model_db_backup
-msgid "db.backup"
-msgstr ""
-
 #. module: auto_backup
 #: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
 msgid "john"
diff --git a/auto_backup/i18n/nb_NO.po b/auto_backup/i18n/nb_NO.po
index f1b27e13063..0888de80920 100644
--- a/auto_backup/i18n/nb_NO.po
+++ b/auto_backup/i18n/nb_NO.po
@@ -1,7 +1,7 @@
 # Translation of Odoo Server.
 # This file contains the translation of the following modules:
 # * auto_backup
-# 
+#
 # Translators:
 # OCA Transbot <transbot@odoo-community.org>, 2016
 msgid ""
@@ -11,11 +11,12 @@ msgstr ""
 "POT-Creation-Date: 2016-12-08 03:36+0000\n"
 "PO-Revision-Date: 2016-12-08 03:36+0000\n"
 "Last-Translator: OCA Transbot <transbot@odoo-community.org>, 2016\n"
-"Language-Team: Norwegian Bokm??l (Norway) (https://www.transifex.com/oca/teams/23907/nb_NO/)\n"
+"Language-Team: Norwegian Bokm??l (Norway) (https://www.transifex.com/oca/"
+"teams/23907/nb_NO/)\n"
+"Language: nb_NO\n"
 "MIME-Version: 1.0\n"
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: \n"
-"Language: nb_NO\n"
 "Plural-Forms: nplurals=2; plural=(n != 1);\n"
 
 #. module: auto_backup
@@ -45,13 +46,15 @@ msgid "Backup Failed"
 msgstr ""
 
 #. module: auto_backup
-#: model:mail.message.subtype,name:auto_backup.mail_message_subtype_success
-msgid "Backup Successful"
+#: model:ir.actions.server,name:auto_backup.ir_cron_backup_scheduler_0_ir_actions_server
+#: model:ir.cron,cron_name:auto_backup.ir_cron_backup_scheduler_0
+#: model:ir.cron,name:auto_backup.ir_cron_backup_scheduler_0
+msgid "Backup Scheduler"
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_tree
-msgid "Backups"
+#: model:mail.message.subtype,name:auto_backup.mail_message_subtype_success
+msgid "Backup Successful"
 msgstr ""
 
 #. module: auto_backup
@@ -77,19 +80,19 @@ msgid "Choose the storage method for this backup."
 msgstr ""
 
 #. module: auto_backup
-#: code:addons/auto_backup/models/db_backup.py:248
+#: code:addons/auto_backup/models/db_backup.py:249
 #, python-format
 msgid "Cleanup of old database backups failed."
 msgstr ""
 
 #. module: auto_backup
-#: code:addons/auto_backup/models/db_backup.py:131
+#: code:addons/auto_backup/models/db_backup.py:128
 #, python-format
 msgid "Connection Test Failed!"
 msgstr ""
 
 #. module: auto_backup
-#: code:addons/auto_backup/models/db_backup.py:128
+#: code:addons/auto_backup/models/db_backup.py:123
 #, python-format
 msgid "Connection Test Succeeded!"
 msgstr ""
@@ -105,7 +108,12 @@ msgid "Created on"
 msgstr "Laget den"
 
 #. module: auto_backup
-#: code:addons/auto_backup/models/db_backup.py:206
+#: model:ir.model,name:auto_backup.model_db_backup
+msgid "Database Backup"
+msgstr ""
+
+#. module: auto_backup
+#: code:addons/auto_backup/models/db_backup.py:203
 #: model:mail.message.subtype,description:auto_backup.mail_message_subtype_failure
 #, python-format
 msgid "Database backup failed."
@@ -120,7 +128,7 @@ msgstr ""
 
 #. module: auto_backup
 #: model:ir.model.fields,field_description:auto_backup.field_db_backup_days_to_keep
-msgid "Days to keep"
+msgid "Days To Keep"
 msgstr ""
 
 #. module: auto_backup
@@ -129,12 +137,17 @@ msgid "Display Name"
 msgstr "Vis navn"
 
 #. module: auto_backup
-#: code:addons/auto_backup/models/db_backup.py:119
+#: code:addons/auto_backup/models/db_backup.py:114
 #, python-format
 msgid ""
 "Do not save backups on your filestore, or you will backup your backups too!"
 msgstr ""
 
+#. module: auto_backup
+#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+msgid "Execute backup"
+msgstr ""
+
 #. module: auto_backup
 #: model:ir.actions.server,name:auto_backup.action_server_backup
 msgid "Execute backup(s)"
@@ -232,11 +245,6 @@ msgstr ""
 msgid "SFTP Settings"
 msgstr ""
 
-#. module: auto_backup
-#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_search
-msgid "Search options"
-msgstr ""
-
 #. module: auto_backup
 #: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
 msgid "Search the action named 'Backup scheduler'."
@@ -245,8 +253,7 @@ msgstr ""
 #. module: auto_backup
 #: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
 msgid ""
-"Set the scheduler to active and fill in how often you want backups "
-"generated."
+"Set the scheduler to active and fill in how often you want backups generated."
 msgstr ""
 
 #. module: auto_backup
@@ -280,8 +287,8 @@ msgstr ""
 #. module: auto_backup
 #: model:ir.model.fields,help:auto_backup.field_db_backup_sftp_user
 msgid ""
-"The username where the SFTP connection should be made with. This is the user"
-" on the external server."
+"The username where the SFTP connection should be made with. This is the user "
+"on the external server."
 msgstr ""
 
 #. module: auto_backup
@@ -301,11 +308,6 @@ msgstr ""
 msgid "Warning:"
 msgstr ""
 
-#. module: auto_backup
-#: model:ir.model,name:auto_backup.model_db_backup
-msgid "db.backup"
-msgstr ""
-
 #. module: auto_backup
 #: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
 msgid "john"
diff --git a/auto_backup/i18n/nl.po b/auto_backup/i18n/nl.po
index 8d739798b29..661db9dc3b6 100644
--- a/auto_backup/i18n/nl.po
+++ b/auto_backup/i18n/nl.po
@@ -1,6 +1,6 @@
 # Translation of Odoo Server.
 # This file contains the translation of the following modules:
-#	* auto_backup
+# 	* auto_backup
 #
 msgid ""
 msgstr ""
@@ -10,283 +10,453 @@ msgstr ""
 "PO-Revision-Date: 2015-03-26 14:17+0000\n"
 "Last-Translator: <>\n"
 "Language-Team: \n"
+"Language: \n"
 "MIME-Version: 1.0\n"
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: \n"
 "Plural-Forms: \n"
 
 #. module: auto_backup
-#: code:addons/auto_backup/backup_scheduler.py:137
-#, python-format
-msgid "%s"
-msgstr "%s"
+#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+msgid "/home/odoo/.ssh/id_rsa"
+msgstr ""
 
 #. module: auto_backup
-#: help:db.backup,bkp_dir:0
+#: model:ir.model.fields,help:auto_backup.field_db_backup_folder
 msgid "Absolute path for storing the backups"
 msgstr "Absoluut pad om backups te bewaren"
 
 #. module: auto_backup
-#: field:db.backup,sendmailsftpfail:0
-msgid "Auto. E-mail on backup fail"
-msgstr "Auto. e-mailen wanneer backup mislukt"
-
-#. module: auto_backup
-#: field:db.backup,autoremove:0
-msgid "Auto. Remove Backups"
+#: model:ir.actions.act_window,name:auto_backup.action_backup_conf_form
+#: model:ir.ui.menu,name:auto_backup.backup_conf_menu
+#, fuzzy
+msgid "Automated Backups"
 msgstr "Auto. backups verwijderen"
 
 #. module: auto_backup
-#: view:db.backup:auto_backup.view_backup_conf_form
+#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
 msgid "Automatic backups of the database can be scheduled as follows:"
-msgstr "Automatische backups van de database kunnen als volgend gepland worden:"
+msgstr ""
+"Automatische backups van de database kunnen als volgend gepland worden:"
 
 #. module: auto_backup
-#: field:db.backup,bkp_dir:0
-msgid "Backup Directory"
+#: model:mail.message.subtype,name:auto_backup.mail_message_subtype_failure
+#, fuzzy
+msgid "Backup Failed"
 msgstr "Backup folder"
 
 #. module: auto_backup
-#: view:db.backup:auto_backup.view_backup_conf_tree
-msgid "Backups"
-msgstr "Backups"
+#: model:ir.actions.server,name:auto_backup.ir_cron_backup_scheduler_0_ir_actions_server
+#: model:ir.cron,cron_name:auto_backup.ir_cron_backup_scheduler_0
+#: model:ir.cron,name:auto_backup.ir_cron_backup_scheduler_0
+msgid "Backup Scheduler"
+msgstr ""
 
 #. module: auto_backup
-#: help:db.backup,daystokeepsftp:0
-msgid "Choose after how many days the backup should be deleted from the FTP server. For example:\n"
-"If you fill in 5 the backups will be removed after 5 days from the FTP server."
-msgstr "Kies na hoeveel dagen de backups verwijderd moeten worden van de FTP server. Bijvoorbeeld:\n"
-"Als u 5 invult zal de backup na 5 dagen verwijderd worden van de FTP server."
+#: model:mail.message.subtype,name:auto_backup.mail_message_subtype_success
+msgid "Backup Successful"
+msgstr ""
 
 #. module: auto_backup
-#: help:db.backup,daystokeep:0
-msgid "Choose after how many days the backup should be deleted. For example:\n"
-"If you fill in 5 the backups will be removed after 5 days."
-msgstr "Kies na hoeveel dagen de backup verwijderd moet worden. Bijvoorbeeld:\n"
-"Als u 5 invult zal de backup verwijderd worden na 5 dagen."
+#: model:ir.model.fields,help:auto_backup.field_db_backup_days_to_keep
+msgid ""
+"Backups older than this will be deleted automatically. Set 0 to disable "
+"autodeletion."
+msgstr ""
 
 #. module: auto_backup
-#: model:ir.actions.act_window,name:auto_backup.action_backup_conf_form
-#: model:ir.ui.menu,name:auto_backup.backup_conf_menu
-msgid "Configure Backup"
-msgstr "Configureer backup"
+#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+#, fuzzy
+msgid "Basic backup configuration"
+msgstr "Lokale backup configuratie"
+
+#. module: auto_backup
+#: sql_constraint:db.backup:0
+#, fuzzy
+msgid "Cannot duplicate a configuration."
+msgstr "Lokale backup configuratie"
+
+#. module: auto_backup
+#: model:ir.model.fields,help:auto_backup.field_db_backup_method
+msgid "Choose the storage method for this backup."
+msgstr ""
+
+#. module: auto_backup
+#: code:addons/auto_backup/models/db_backup.py:249
+#, python-format
+msgid "Cleanup of old database backups failed."
+msgstr ""
+
+#. module: auto_backup
+#: code:addons/auto_backup/models/db_backup.py:128
+#, python-format
+msgid "Connection Test Failed!"
+msgstr ""
 
 #. module: auto_backup
-#: view:db.backup:auto_backup.view_backup_conf_form
-msgid "Contact us!"
-msgstr "Contacteer ons!"
+#: code:addons/auto_backup/models/db_backup.py:123
+#, python-format
+msgid "Connection Test Succeeded!"
+msgstr ""
 
 #. module: auto_backup
-#: field:db.backup,create_uid:0
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup_create_uid
 msgid "Created by"
 msgstr "Gemaakt door"
 
 #. module: auto_backup
-#: field:db.backup,create_date:0
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup_create_date
 msgid "Created on"
 msgstr "Gemaakt op"
 
 #. module: auto_backup
-#: field:db.backup,name:0
-msgid "Database"
+#: model:ir.model,name:auto_backup.model_db_backup
+#, fuzzy
+msgid "Database Backup"
 msgstr "Database"
 
 #. module: auto_backup
-#: help:db.backup,name:0
-msgid "Database you want to schedule backups for"
-msgstr "Database waar u backups voor wilt plannen"
+#: code:addons/auto_backup/models/db_backup.py:203
+#: model:mail.message.subtype,description:auto_backup.mail_message_subtype_failure
+#, python-format
+msgid "Database backup failed."
+msgstr ""
 
 #. module: auto_backup
-#: field:db.backup,emailtonotify:0
-msgid "E-mail to notify"
-msgstr "E-mail om te verwittigen"
+#: code:addons/auto_backup/models/db_backup.py:211
+#: model:mail.message.subtype,description:auto_backup.mail_message_subtype_success
+#, python-format
+msgid "Database backup succeeded."
+msgstr ""
 
 #. module: auto_backup
-#: code:addons/auto_backup/backup_scheduler.py:106
-#: constraint:db.backup:0
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup_days_to_keep
+msgid "Days To Keep"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup_display_name
+msgid "Display Name"
+msgstr ""
+
+#. module: auto_backup
+#: code:addons/auto_backup/models/db_backup.py:114
 #, python-format
-msgid "Error ! No such database exists!"
-msgstr "Error! Deze database bestaat niet!"
+msgid ""
+"Do not save backups on your filestore, or you will backup your backups too!"
+msgstr ""
 
 #. module: auto_backup
-#: help:db.backup,emailtonotify:0
-msgid "Fill in the e-mail where you want to be notified that the backup failed on the FTP."
-msgstr "Vul de e-mail in waarop u wilt verwittigd worden als de backup mislukt op de FTP."
+#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+msgid "Execute backup"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.actions.server,name:auto_backup.action_server_backup
+msgid "Execute backup(s)"
+msgstr ""
 
 #. module: auto_backup
-#: view:db.backup:auto_backup.view_backup_conf_form
-msgid "For example: /odoo/backups/"
-msgstr "Bijvoorbeeld: /odoo/backups/"
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup_folder
+msgid "Folder"
+msgstr ""
 
 #. module: auto_backup
-#: view:db.backup:auto_backup.view_backup_conf_form
+#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
 msgid "Go to Settings / Technical / Automation / Scheduled Actions."
 msgstr "Ga naar Instellingen / Technsich / Automatisering / Geplande acties"
 
 #. module: auto_backup
-#: view:db.backup:auto_backup.view_backup_conf_form
+#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
 msgid "Help"
 msgstr "Help"
 
 #. module: auto_backup
-#: field:db.backup,host:0
-msgid "Host"
-msgstr "Host"
+#: sql_constraint:db.backup:0
+msgid "I cannot remove backups from the future. Ask Doc for that."
+msgstr ""
 
 #. module: auto_backup
-#: field:db.backup,id:0
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup_id
 msgid "ID"
 msgstr "ID"
 
 #. module: auto_backup
-#: field:db.backup,sftpip:0
-msgid "IP Address SFTP Server"
-msgstr "IP adres SFTP server"
-
-#. module: auto_backup
-#: help:db.backup,sendmailsftpfail:0
-msgid "If you check this option you can choose to automaticly get e-mailed when the backup to the external server failed."
-msgstr "Als u deze optie aanvinkt kan u kiezen om automatisch een e-mail aan te krijgen als de backup
-naar de externe server mislukt."
-
-#. module: auto_backup
-#: help:db.backup,autoremove:0
-msgid "If you check this option you can choose to automaticly remove the backup after xx days"
-msgstr "Als u deze optie aanvinkt kan u kiezen om automatisch backups te verwijderen na xx dagen"
-
-#. module: auto_backup
-#: help:db.backup,sftpwrite:0
-msgid "If you check this option you can specify the details needed to write to a remote server with SFTP."
-msgstr "Als u deze optie aanvinkt kan u de details invullen die nodig zijn om te connecteren met de externe SFTP server."
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup___last_update
+#, fuzzy
+msgid "Last Modified on"
+msgstr "Laatst bijgewerkt op"
 
 #. module: auto_backup
-#: field:db.backup,write_uid:0
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup_write_uid
 msgid "Last Updated by"
 msgstr "Laatst bijgewerkt door"
 
 #. module: auto_backup
-#: field:db.backup,write_date:0
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup_write_date
 msgid "Last Updated on"
 msgstr "Laatst bijgewerkt op"
 
 #. module: auto_backup
-#: view:db.backup:auto_backup.view_backup_conf_form
-msgid "Local backup configuration"
-msgstr "Lokale backup configuratie"
-
-#. module: auto_backup
-#: view:db.backup:auto_backup.view_backup_conf_form
-msgid "Need more help?"
-msgstr "Meer hulp nodig?"
+#: selection:db.backup,method:0
+msgid "Local disk"
+msgstr ""
 
 #. module: auto_backup
-#: field:db.backup,sftppassword:0
-msgid "Password User SFTP Server"
-msgstr "Wachtwoord gebruiker SFTP server"
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup_method
+msgid "Method"
+msgstr ""
 
 #. module: auto_backup
-#: field:db.backup,sftppath:0
-msgid "Path external server"
-msgstr "Pad externe server"
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup_name
+msgid "Name"
+msgstr ""
 
 #. module: auto_backup
-#: field:db.backup,port:0
-msgid "Port"
-msgstr "Poort"
+#: model:ir.model.fields,help:auto_backup.field_db_backup_sftp_private_key
+msgid ""
+"Path to the private key file. Only the Odoo user should have read "
+"permissions for that file."
+msgstr ""
 
 #. module: auto_backup
-#: field:db.backup,daystokeepsftp:0
-msgid "Remove SFTP after x days"
-msgstr "SFTP verwijderen na x dagen"
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup_sftp_private_key
+msgid "Private key location"
+msgstr ""
 
 #. module: auto_backup
-#: field:db.backup,daystokeep:0
-msgid "Remove after x days"
-msgstr "Verwijderen na x dagen"
+#: selection:db.backup,method:0
+#, fuzzy
+msgid "Remote SFTP server"
+msgstr "Gebruikersnaam SFTP Server"
 
 #. module: auto_backup
-#: view:db.backup:auto_backup.view_backup_conf_form
-msgid "SFTP"
-msgstr "SFTP"
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup_sftp_password
+#, fuzzy
+msgid "SFTP Password"
+msgstr "SFTP poort"
 
 #. module: auto_backup
-#: field:db.backup,sftpport:0
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup_sftp_port
 msgid "SFTP Port"
 msgstr "SFTP poort"
 
 #. module: auto_backup
-#: view:db.backup:auto_backup.view_backup_conf_search
-msgid "Search options"
-msgstr "Zoekopties"
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup_sftp_host
+#, fuzzy
+msgid "SFTP Server"
+msgstr "Gebruikersnaam SFTP Server"
+
+#. module: auto_backup
+#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+msgid "SFTP Settings"
+msgstr ""
 
 #. module: auto_backup
-#: view:db.backup:auto_backup.view_backup_conf_form
+#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
 msgid "Search the action named 'Backup scheduler'."
 msgstr "Zoek de actie genaamd 'Backup scheduler'."
 
 #. module: auto_backup
-#: view:db.backup:auto_backup.view_backup_conf_form
-msgid "Set the scheduler to active and fill in how often you want backups generated."
-msgstr "Zet de planner op actief en vul in hoe vaak de backup moet gemaakt worden."
+#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+msgid ""
+"Set the scheduler to active and fill in how often you want backups generated."
+msgstr ""
+"Zet de planner op actief en vul in hoe vaak de backup moet gemaakt worden."
 
 #. module: auto_backup
-#: view:db.backup:auto_backup.view_backup_conf_form
-msgid "Test"
-msgstr "Test"
+#: model:ir.model.fields,help:auto_backup.field_db_backup_name
+msgid "Summary of this backup process"
+msgstr ""
 
 #. module: auto_backup
-#: view:db.backup:auto_backup.view_backup_conf_form
+#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
 msgid "Test SFTP Connection"
 msgstr "Test SFTP Connectie"
 
 #. module: auto_backup
-#: help:db.backup,sftpip:0
-msgid "The IP address from your remote server. For example 192.168.0.1"
+#: model:ir.model.fields,help:auto_backup.field_db_backup_sftp_host
+#, fuzzy
+msgid ""
+"The host name or IP address from your remote server. For example 192.168.0.1"
 msgstr "Het IP adres van uw externe server. Bijvoorbeeld: 192.168.0.1"
 
 #. module: auto_backup
-#: help:db.backup,sftppath:0
-msgid "The location to the folder where the dumps should be written to. For example /odoo/backups/.\n"
-"Files will then be written to /odoo/backups/ on your remote server."
-msgstr "De locatie naar de folder waar de backup naar toe moet geschreven worden. Bijvoorbeeld odoo/backups/\n"
-"Bestanden worden dan naar /odoo/backups/ geschreven op de externe server"
-
-#. module: auto_backup
-#: help:db.backup,sftppassword:0
-msgid "The password from the user where the SFTP connection should be made with. This is the password from the user on the external server."
-msgstr "Het wachtwoord van de gebruiker waar de SFTP connectie mee moet gemaakt worden. Dit is het wachtwoord van de gebruiker op de externe server."
+#: model:ir.model.fields,help:auto_backup.field_db_backup_sftp_password
+#, fuzzy
+msgid ""
+"The password for the SFTP connection. If you specify a private key file, "
+"then this is the password to decrypt it."
+msgstr ""
+"Het wachtwoord van de gebruiker waar de SFTP connectie mee moet gemaakt "
+"worden. Dit is het wachtwoord van de gebruiker op de externe server."
 
 #. module: auto_backup
-#: help:db.backup,sftpport:0
+#: model:ir.model.fields,help:auto_backup.field_db_backup_sftp_port
 msgid "The port on the FTP server that accepts SSH/SFTP calls."
 msgstr "De poort op de FTP server die SSH/SFTP accepteert."
 
 #. module: auto_backup
-#: help:db.backup,sftpusername:0
-msgid "The username where the SFTP connection should be made with. This is the user on the external server."
-msgstr "De gebruikersnaam waar de SFTP connectie mee gemaakt moet worden. Dit is de gebruiker op de externe server."
-
-#. module: auto_backup
-#: view:db.backup:auto_backup.view_backup_conf_form
-msgid "This configures the scheduler for automatic backup of the given database running on given host at given port on regular intervals."
-msgstr "Dit configureert de planner voor automatische backups op de ingegeven database waar de host, poort en database op zijn ingegeven voor reguliere intervallen."
+#: model:ir.model.fields,help:auto_backup.field_db_backup_sftp_user
+msgid ""
+"The username where the SFTP connection should be made with. This is the user "
+"on the external server."
+msgstr ""
+"De gebruikersnaam waar de SFTP connectie mee gemaakt moet worden. Dit is de "
+"gebruiker op de externe server."
 
 #. module: auto_backup
-#: view:db.backup:auto_backup.view_backup_conf_form
-msgid "Use SFTP with caution! This writes files to external servers under the path you specify."
-msgstr "Gebruik SFTP voorzichtig! Dit schrijft bestanden naar externe servers onder het pad dat u opgeeft."
+#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+msgid ""
+"Use SFTP with caution! This writes files to external servers under the path "
+"you specify."
+msgstr ""
+"Gebruik SFTP voorzichtig! Dit schrijft bestanden naar externe servers onder "
+"het pad dat u opgeeft."
 
 #. module: auto_backup
-#: field:db.backup,sftpusername:0
-msgid "Username SFTP Server"
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup_sftp_user
+#, fuzzy
+msgid "Username in the SFTP Server"
 msgstr "Gebruikersnaam SFTP Server"
 
 #. module: auto_backup
-#: view:db.backup:auto_backup.view_backup_conf_form
+#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
 msgid "Warning:"
 msgstr "Waarschuwing:"
 
 #. module: auto_backup
-#: field:db.backup,sftpwrite:0
-msgid "Write to external server with sftp"
-msgstr "Schrijf naar externe server met SFTP"
+#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+msgid "john"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+msgid "sftp.example.com"
+msgstr ""
+
+#~ msgid "%s"
+#~ msgstr "%s"
+
+#~ msgid "Auto. E-mail on backup fail"
+#~ msgstr "Auto. e-mailen wanneer backup mislukt"
+
+#~ msgid "Backups"
+#~ msgstr "Backups"
+
+#~ msgid ""
+#~ "Choose after how many days the backup should be deleted from the FTP "
+#~ "server. For example:\n"
+#~ "If you fill in 5 the backups will be removed after 5 days from the FTP "
+#~ "server."
+#~ msgstr ""
+#~ "Kies na hoeveel dagen de backups verwijderd moeten worden van de FTP "
+#~ "server. Bijvoorbeeld:\n"
+#~ "Als u 5 invult zal de backup na 5 dagen verwijderd worden van de FTP "
+#~ "server."
+
+#~ msgid ""
+#~ "Choose after how many days the backup should be deleted. For example:\n"
+#~ "If you fill in 5 the backups will be removed after 5 days."
+#~ msgstr ""
+#~ "Kies na hoeveel dagen de backup verwijderd moet worden. Bijvoorbeeld:\n"
+#~ "Als u 5 invult zal de backup verwijderd worden na 5 dagen."
+
+#~ msgid "Configure Backup"
+#~ msgstr "Configureer backup"
+
+#~ msgid "Contact us!"
+#~ msgstr "Contacteer ons!"
+
+#~ msgid "Database you want to schedule backups for"
+#~ msgstr "Database waar u backups voor wilt plannen"
+
+#~ msgid "E-mail to notify"
+#~ msgstr "E-mail om te verwittigen"
+
+#~ msgid "Error ! No such database exists!"
+#~ msgstr "Error! Deze database bestaat niet!"
+
+#~ msgid ""
+#~ "Fill in the e-mail where you want to be notified that the backup failed "
+#~ "on the FTP."
+#~ msgstr ""
+#~ "Vul de e-mail in waarop u wilt verwittigd worden als de backup mislukt op "
+#~ "de FTP."
+
+#~ msgid "For example: /odoo/backups/"
+#~ msgstr "Bijvoorbeeld: /odoo/backups/"
+
+#~ msgid "Host"
+#~ msgstr "Host"
+
+#~ msgid "IP Address SFTP Server"
+#~ msgstr "IP adres SFTP server"
+
+#~ msgid ""
+#~ "If you check this option you can choose to automaticly get e-mailed when "
+#~ "the backup to the external server failed."
+#~ msgstr ""
+#~ "Als u deze optie aanvinkt kan u kiezen om automatisch een e-mail aan te "
+#~ "krijgen als de backup naar de externe server mislukt."
+
+#~ msgid ""
+#~ "If you check this option you can choose to automaticly remove the backup "
+#~ "after xx days"
+#~ msgstr ""
+#~ "Als u deze optie aanvinkt kan u kiezen om automatisch backups te "
+#~ "verwijderen na xx dagen"
+
+#~ msgid ""
+#~ "If you check this option you can specify the details needed to write to a "
+#~ "remote server with SFTP."
+#~ msgstr ""
+#~ "Als u deze optie aanvinkt kan u de details invullen die nodig zijn om te "
+#~ "connecteren met de externe SFTP server."
+
+#~ msgid "Need more help?"
+#~ msgstr "Meer hulp nodig?"
+
+#~ msgid "Password User SFTP Server"
+#~ msgstr "Wachtwoord gebruiker SFTP server"
+
+#~ msgid "Path external server"
+#~ msgstr "Pad externe server"
+
+#~ msgid "Port"
+#~ msgstr "Poort"
+
+#~ msgid "Remove SFTP after x days"
+#~ msgstr "SFTP verwijderen na x dagen"
+
+#~ msgid "Remove after x days"
+#~ msgstr "Verwijderen na x dagen"
+
+#~ msgid "SFTP"
+#~ msgstr "SFTP"
+
+#~ msgid "Search options"
+#~ msgstr "Zoekopties"
+
+#~ msgid "Test"
+#~ msgstr "Test"
+
+#~ msgid ""
+#~ "The location to the folder where the dumps should be written to. For "
+#~ "example /odoo/backups/.\n"
+#~ "Files will then be written to /odoo/backups/ on your remote server."
+#~ msgstr ""
+#~ "De locatie naar de folder waar de backup naar toe moet geschreven worden. "
+#~ "Bijvoorbeeld odoo/backups/\n"
+#~ "Bestanden worden dan naar /odoo/backups/ geschreven op de externe server"
+
+#~ msgid ""
+#~ "This configures the scheduler for automatic backup of the given database "
+#~ "running on given host at given port on regular intervals."
+#~ msgstr ""
+#~ "Dit configureert de planner voor automatische backups op de ingegeven "
+#~ "database waar de host, poort en database op zijn ingegeven voor reguliere "
+#~ "intervallen."
+
+#~ msgid "Write to external server with sftp"
+#~ msgstr "Schrijf naar externe server met SFTP"
diff --git a/auto_backup/i18n/nl_BE.po b/auto_backup/i18n/nl_BE.po
index 8d739798b29..661db9dc3b6 100644
--- a/auto_backup/i18n/nl_BE.po
+++ b/auto_backup/i18n/nl_BE.po
@@ -1,6 +1,6 @@
 # Translation of Odoo Server.
 # This file contains the translation of the following modules:
-#	* auto_backup
+# 	* auto_backup
 #
 msgid ""
 msgstr ""
@@ -10,283 +10,453 @@ msgstr ""
 "PO-Revision-Date: 2015-03-26 14:17+0000\n"
 "Last-Translator: <>\n"
 "Language-Team: \n"
+"Language: \n"
 "MIME-Version: 1.0\n"
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: \n"
 "Plural-Forms: \n"
 
 #. module: auto_backup
-#: code:addons/auto_backup/backup_scheduler.py:137
-#, python-format
-msgid "%s"
-msgstr "%s"
+#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+msgid "/home/odoo/.ssh/id_rsa"
+msgstr ""
 
 #. module: auto_backup
-#: help:db.backup,bkp_dir:0
+#: model:ir.model.fields,help:auto_backup.field_db_backup_folder
 msgid "Absolute path for storing the backups"
 msgstr "Absoluut pad om backups te bewaren"
 
 #. module: auto_backup
-#: field:db.backup,sendmailsftpfail:0
-msgid "Auto. E-mail on backup fail"
-msgstr "Auto. e-mailen wanneer backup mislukt"
-
-#. module: auto_backup
-#: field:db.backup,autoremove:0
-msgid "Auto. Remove Backups"
+#: model:ir.actions.act_window,name:auto_backup.action_backup_conf_form
+#: model:ir.ui.menu,name:auto_backup.backup_conf_menu
+#, fuzzy
+msgid "Automated Backups"
 msgstr "Auto. backups verwijderen"
 
 #. module: auto_backup
-#: view:db.backup:auto_backup.view_backup_conf_form
+#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
 msgid "Automatic backups of the database can be scheduled as follows:"
-msgstr "Automatische backups van de database kunnen als volgend gepland worden:"
+msgstr ""
+"Automatische backups van de database kunnen als volgend gepland worden:"
 
 #. module: auto_backup
-#: field:db.backup,bkp_dir:0
-msgid "Backup Directory"
+#: model:mail.message.subtype,name:auto_backup.mail_message_subtype_failure
+#, fuzzy
+msgid "Backup Failed"
 msgstr "Backup folder"
 
 #. module: auto_backup
-#: view:db.backup:auto_backup.view_backup_conf_tree
-msgid "Backups"
-msgstr "Backups"
+#: model:ir.actions.server,name:auto_backup.ir_cron_backup_scheduler_0_ir_actions_server
+#: model:ir.cron,cron_name:auto_backup.ir_cron_backup_scheduler_0
+#: model:ir.cron,name:auto_backup.ir_cron_backup_scheduler_0
+msgid "Backup Scheduler"
+msgstr ""
 
 #. module: auto_backup
-#: help:db.backup,daystokeepsftp:0
-msgid "Choose after how many days the backup should be deleted from the FTP server. For example:\n"
-"If you fill in 5 the backups will be removed after 5 days from the FTP server."
-msgstr "Kies na hoeveel dagen de backups verwijderd moeten worden van de FTP server. Bijvoorbeeld:\n"
-"Als u 5 invult zal de backup na 5 dagen verwijderd worden van de FTP server."
+#: model:mail.message.subtype,name:auto_backup.mail_message_subtype_success
+msgid "Backup Successful"
+msgstr ""
 
 #. module: auto_backup
-#: help:db.backup,daystokeep:0
-msgid "Choose after how many days the backup should be deleted. For example:\n"
-"If you fill in 5 the backups will be removed after 5 days."
-msgstr "Kies na hoeveel dagen de backup verwijderd moet worden. Bijvoorbeeld:\n"
-"Als u 5 invult zal de backup verwijderd worden na 5 dagen."
+#: model:ir.model.fields,help:auto_backup.field_db_backup_days_to_keep
+msgid ""
+"Backups older than this will be deleted automatically. Set 0 to disable "
+"autodeletion."
+msgstr ""
 
 #. module: auto_backup
-#: model:ir.actions.act_window,name:auto_backup.action_backup_conf_form
-#: model:ir.ui.menu,name:auto_backup.backup_conf_menu
-msgid "Configure Backup"
-msgstr "Configureer backup"
+#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+#, fuzzy
+msgid "Basic backup configuration"
+msgstr "Lokale backup configuratie"
+
+#. module: auto_backup
+#: sql_constraint:db.backup:0
+#, fuzzy
+msgid "Cannot duplicate a configuration."
+msgstr "Lokale backup configuratie"
+
+#. module: auto_backup
+#: model:ir.model.fields,help:auto_backup.field_db_backup_method
+msgid "Choose the storage method for this backup."
+msgstr ""
+
+#. module: auto_backup
+#: code:addons/auto_backup/models/db_backup.py:249
+#, python-format
+msgid "Cleanup of old database backups failed."
+msgstr ""
+
+#. module: auto_backup
+#: code:addons/auto_backup/models/db_backup.py:128
+#, python-format
+msgid "Connection Test Failed!"
+msgstr ""
 
 #. module: auto_backup
-#: view:db.backup:auto_backup.view_backup_conf_form
-msgid "Contact us!"
-msgstr "Contacteer ons!"
+#: code:addons/auto_backup/models/db_backup.py:123
+#, python-format
+msgid "Connection Test Succeeded!"
+msgstr ""
 
 #. module: auto_backup
-#: field:db.backup,create_uid:0
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup_create_uid
 msgid "Created by"
 msgstr "Gemaakt door"
 
 #. module: auto_backup
-#: field:db.backup,create_date:0
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup_create_date
 msgid "Created on"
 msgstr "Gemaakt op"
 
 #. module: auto_backup
-#: field:db.backup,name:0
-msgid "Database"
+#: model:ir.model,name:auto_backup.model_db_backup
+#, fuzzy
+msgid "Database Backup"
 msgstr "Database"
 
 #. module: auto_backup
-#: help:db.backup,name:0
-msgid "Database you want to schedule backups for"
-msgstr "Database waar u backups voor wilt plannen"
+#: code:addons/auto_backup/models/db_backup.py:203
+#: model:mail.message.subtype,description:auto_backup.mail_message_subtype_failure
+#, python-format
+msgid "Database backup failed."
+msgstr ""
 
 #. module: auto_backup
-#: field:db.backup,emailtonotify:0
-msgid "E-mail to notify"
-msgstr "E-mail om te verwittigen"
+#: code:addons/auto_backup/models/db_backup.py:211
+#: model:mail.message.subtype,description:auto_backup.mail_message_subtype_success
+#, python-format
+msgid "Database backup succeeded."
+msgstr ""
 
 #. module: auto_backup
-#: code:addons/auto_backup/backup_scheduler.py:106
-#: constraint:db.backup:0
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup_days_to_keep
+msgid "Days To Keep"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup_display_name
+msgid "Display Name"
+msgstr ""
+
+#. module: auto_backup
+#: code:addons/auto_backup/models/db_backup.py:114
 #, python-format
-msgid "Error ! No such database exists!"
-msgstr "Error! Deze database bestaat niet!"
+msgid ""
+"Do not save backups on your filestore, or you will backup your backups too!"
+msgstr ""
 
 #. module: auto_backup
-#: help:db.backup,emailtonotify:0
-msgid "Fill in the e-mail where you want to be notified that the backup failed on the FTP."
-msgstr "Vul de e-mail in waarop u wilt verwittigd worden als de backup mislukt op de FTP."
+#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+msgid "Execute backup"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.actions.server,name:auto_backup.action_server_backup
+msgid "Execute backup(s)"
+msgstr ""
 
 #. module: auto_backup
-#: view:db.backup:auto_backup.view_backup_conf_form
-msgid "For example: /odoo/backups/"
-msgstr "Bijvoorbeeld: /odoo/backups/"
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup_folder
+msgid "Folder"
+msgstr ""
 
 #. module: auto_backup
-#: view:db.backup:auto_backup.view_backup_conf_form
+#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
 msgid "Go to Settings / Technical / Automation / Scheduled Actions."
 msgstr "Ga naar Instellingen / Technsich / Automatisering / Geplande acties"
 
 #. module: auto_backup
-#: view:db.backup:auto_backup.view_backup_conf_form
+#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
 msgid "Help"
 msgstr "Help"
 
 #. module: auto_backup
-#: field:db.backup,host:0
-msgid "Host"
-msgstr "Host"
+#: sql_constraint:db.backup:0
+msgid "I cannot remove backups from the future. Ask Doc for that."
+msgstr ""
 
 #. module: auto_backup
-#: field:db.backup,id:0
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup_id
 msgid "ID"
 msgstr "ID"
 
 #. module: auto_backup
-#: field:db.backup,sftpip:0
-msgid "IP Address SFTP Server"
-msgstr "IP adres SFTP server"
-
-#. module: auto_backup
-#: help:db.backup,sendmailsftpfail:0
-msgid "If you check this option you can choose to automaticly get e-mailed when the backup to the external server failed."
-msgstr "Als u deze optie aanvinkt kan u kiezen om automatisch een e-mail aan te krijgen als de backup
-naar de externe server mislukt."
-
-#. module: auto_backup
-#: help:db.backup,autoremove:0
-msgid "If you check this option you can choose to automaticly remove the backup after xx days"
-msgstr "Als u deze optie aanvinkt kan u kiezen om automatisch backups te verwijderen na xx dagen"
-
-#. module: auto_backup
-#: help:db.backup,sftpwrite:0
-msgid "If you check this option you can specify the details needed to write to a remote server with SFTP."
-msgstr "Als u deze optie aanvinkt kan u de details invullen die nodig zijn om te connecteren met de externe SFTP server."
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup___last_update
+#, fuzzy
+msgid "Last Modified on"
+msgstr "Laatst bijgewerkt op"
 
 #. module: auto_backup
-#: field:db.backup,write_uid:0
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup_write_uid
 msgid "Last Updated by"
 msgstr "Laatst bijgewerkt door"
 
 #. module: auto_backup
-#: field:db.backup,write_date:0
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup_write_date
 msgid "Last Updated on"
 msgstr "Laatst bijgewerkt op"
 
 #. module: auto_backup
-#: view:db.backup:auto_backup.view_backup_conf_form
-msgid "Local backup configuration"
-msgstr "Lokale backup configuratie"
-
-#. module: auto_backup
-#: view:db.backup:auto_backup.view_backup_conf_form
-msgid "Need more help?"
-msgstr "Meer hulp nodig?"
+#: selection:db.backup,method:0
+msgid "Local disk"
+msgstr ""
 
 #. module: auto_backup
-#: field:db.backup,sftppassword:0
-msgid "Password User SFTP Server"
-msgstr "Wachtwoord gebruiker SFTP server"
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup_method
+msgid "Method"
+msgstr ""
 
 #. module: auto_backup
-#: field:db.backup,sftppath:0
-msgid "Path external server"
-msgstr "Pad externe server"
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup_name
+msgid "Name"
+msgstr ""
 
 #. module: auto_backup
-#: field:db.backup,port:0
-msgid "Port"
-msgstr "Poort"
+#: model:ir.model.fields,help:auto_backup.field_db_backup_sftp_private_key
+msgid ""
+"Path to the private key file. Only the Odoo user should have read "
+"permissions for that file."
+msgstr ""
 
 #. module: auto_backup
-#: field:db.backup,daystokeepsftp:0
-msgid "Remove SFTP after x days"
-msgstr "SFTP verwijderen na x dagen"
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup_sftp_private_key
+msgid "Private key location"
+msgstr ""
 
 #. module: auto_backup
-#: field:db.backup,daystokeep:0
-msgid "Remove after x days"
-msgstr "Verwijderen na x dagen"
+#: selection:db.backup,method:0
+#, fuzzy
+msgid "Remote SFTP server"
+msgstr "Gebruikersnaam SFTP Server"
 
 #. module: auto_backup
-#: view:db.backup:auto_backup.view_backup_conf_form
-msgid "SFTP"
-msgstr "SFTP"
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup_sftp_password
+#, fuzzy
+msgid "SFTP Password"
+msgstr "SFTP poort"
 
 #. module: auto_backup
-#: field:db.backup,sftpport:0
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup_sftp_port
 msgid "SFTP Port"
 msgstr "SFTP poort"
 
 #. module: auto_backup
-#: view:db.backup:auto_backup.view_backup_conf_search
-msgid "Search options"
-msgstr "Zoekopties"
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup_sftp_host
+#, fuzzy
+msgid "SFTP Server"
+msgstr "Gebruikersnaam SFTP Server"
+
+#. module: auto_backup
+#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+msgid "SFTP Settings"
+msgstr ""
 
 #. module: auto_backup
-#: view:db.backup:auto_backup.view_backup_conf_form
+#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
 msgid "Search the action named 'Backup scheduler'."
 msgstr "Zoek de actie genaamd 'Backup scheduler'."
 
 #. module: auto_backup
-#: view:db.backup:auto_backup.view_backup_conf_form
-msgid "Set the scheduler to active and fill in how often you want backups generated."
-msgstr "Zet de planner op actief en vul in hoe vaak de backup moet gemaakt worden."
+#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+msgid ""
+"Set the scheduler to active and fill in how often you want backups generated."
+msgstr ""
+"Zet de planner op actief en vul in hoe vaak de backup moet gemaakt worden."
 
 #. module: auto_backup
-#: view:db.backup:auto_backup.view_backup_conf_form
-msgid "Test"
-msgstr "Test"
+#: model:ir.model.fields,help:auto_backup.field_db_backup_name
+msgid "Summary of this backup process"
+msgstr ""
 
 #. module: auto_backup
-#: view:db.backup:auto_backup.view_backup_conf_form
+#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
 msgid "Test SFTP Connection"
 msgstr "Test SFTP Connectie"
 
 #. module: auto_backup
-#: help:db.backup,sftpip:0
-msgid "The IP address from your remote server. For example 192.168.0.1"
+#: model:ir.model.fields,help:auto_backup.field_db_backup_sftp_host
+#, fuzzy
+msgid ""
+"The host name or IP address from your remote server. For example 192.168.0.1"
 msgstr "Het IP adres van uw externe server. Bijvoorbeeld: 192.168.0.1"
 
 #. module: auto_backup
-#: help:db.backup,sftppath:0
-msgid "The location to the folder where the dumps should be written to. For example /odoo/backups/.\n"
-"Files will then be written to /odoo/backups/ on your remote server."
-msgstr "De locatie naar de folder waar de backup naar toe moet geschreven worden. Bijvoorbeeld odoo/backups/\n"
-"Bestanden worden dan naar /odoo/backups/ geschreven op de externe server"
-
-#. module: auto_backup
-#: help:db.backup,sftppassword:0
-msgid "The password from the user where the SFTP connection should be made with. This is the password from the user on the external server."
-msgstr "Het wachtwoord van de gebruiker waar de SFTP connectie mee moet gemaakt worden. Dit is het wachtwoord van de gebruiker op de externe server."
+#: model:ir.model.fields,help:auto_backup.field_db_backup_sftp_password
+#, fuzzy
+msgid ""
+"The password for the SFTP connection. If you specify a private key file, "
+"then this is the password to decrypt it."
+msgstr ""
+"Het wachtwoord van de gebruiker waar de SFTP connectie mee moet gemaakt "
+"worden. Dit is het wachtwoord van de gebruiker op de externe server."
 
 #. module: auto_backup
-#: help:db.backup,sftpport:0
+#: model:ir.model.fields,help:auto_backup.field_db_backup_sftp_port
 msgid "The port on the FTP server that accepts SSH/SFTP calls."
 msgstr "De poort op de FTP server die SSH/SFTP accepteert."
 
 #. module: auto_backup
-#: help:db.backup,sftpusername:0
-msgid "The username where the SFTP connection should be made with. This is the user on the external server."
-msgstr "De gebruikersnaam waar de SFTP connectie mee gemaakt moet worden. Dit is de gebruiker op de externe server."
-
-#. module: auto_backup
-#: view:db.backup:auto_backup.view_backup_conf_form
-msgid "This configures the scheduler for automatic backup of the given database running on given host at given port on regular intervals."
-msgstr "Dit configureert de planner voor automatische backups op de ingegeven database waar de host, poort en database op zijn ingegeven voor reguliere intervallen."
+#: model:ir.model.fields,help:auto_backup.field_db_backup_sftp_user
+msgid ""
+"The username where the SFTP connection should be made with. This is the user "
+"on the external server."
+msgstr ""
+"De gebruikersnaam waar de SFTP connectie mee gemaakt moet worden. Dit is de "
+"gebruiker op de externe server."
 
 #. module: auto_backup
-#: view:db.backup:auto_backup.view_backup_conf_form
-msgid "Use SFTP with caution! This writes files to external servers under the path you specify."
-msgstr "Gebruik SFTP voorzichtig! Dit schrijft bestanden naar externe servers onder het pad dat u opgeeft."
+#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+msgid ""
+"Use SFTP with caution! This writes files to external servers under the path "
+"you specify."
+msgstr ""
+"Gebruik SFTP voorzichtig! Dit schrijft bestanden naar externe servers onder "
+"het pad dat u opgeeft."
 
 #. module: auto_backup
-#: field:db.backup,sftpusername:0
-msgid "Username SFTP Server"
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup_sftp_user
+#, fuzzy
+msgid "Username in the SFTP Server"
 msgstr "Gebruikersnaam SFTP Server"
 
 #. module: auto_backup
-#: view:db.backup:auto_backup.view_backup_conf_form
+#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
 msgid "Warning:"
 msgstr "Waarschuwing:"
 
 #. module: auto_backup
-#: field:db.backup,sftpwrite:0
-msgid "Write to external server with sftp"
-msgstr "Schrijf naar externe server met SFTP"
+#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+msgid "john"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+msgid "sftp.example.com"
+msgstr ""
+
+#~ msgid "%s"
+#~ msgstr "%s"
+
+#~ msgid "Auto. E-mail on backup fail"
+#~ msgstr "Auto. e-mailen wanneer backup mislukt"
+
+#~ msgid "Backups"
+#~ msgstr "Backups"
+
+#~ msgid ""
+#~ "Choose after how many days the backup should be deleted from the FTP "
+#~ "server. For example:\n"
+#~ "If you fill in 5 the backups will be removed after 5 days from the FTP "
+#~ "server."
+#~ msgstr ""
+#~ "Kies na hoeveel dagen de backups verwijderd moeten worden van de FTP "
+#~ "server. Bijvoorbeeld:\n"
+#~ "Als u 5 invult zal de backup na 5 dagen verwijderd worden van de FTP "
+#~ "server."
+
+#~ msgid ""
+#~ "Choose after how many days the backup should be deleted. For example:\n"
+#~ "If you fill in 5 the backups will be removed after 5 days."
+#~ msgstr ""
+#~ "Kies na hoeveel dagen de backup verwijderd moet worden. Bijvoorbeeld:\n"
+#~ "Als u 5 invult zal de backup verwijderd worden na 5 dagen."
+
+#~ msgid "Configure Backup"
+#~ msgstr "Configureer backup"
+
+#~ msgid "Contact us!"
+#~ msgstr "Contacteer ons!"
+
+#~ msgid "Database you want to schedule backups for"
+#~ msgstr "Database waar u backups voor wilt plannen"
+
+#~ msgid "E-mail to notify"
+#~ msgstr "E-mail om te verwittigen"
+
+#~ msgid "Error ! No such database exists!"
+#~ msgstr "Error! Deze database bestaat niet!"
+
+#~ msgid ""
+#~ "Fill in the e-mail where you want to be notified that the backup failed "
+#~ "on the FTP."
+#~ msgstr ""
+#~ "Vul de e-mail in waarop u wilt verwittigd worden als de backup mislukt op "
+#~ "de FTP."
+
+#~ msgid "For example: /odoo/backups/"
+#~ msgstr "Bijvoorbeeld: /odoo/backups/"
+
+#~ msgid "Host"
+#~ msgstr "Host"
+
+#~ msgid "IP Address SFTP Server"
+#~ msgstr "IP adres SFTP server"
+
+#~ msgid ""
+#~ "If you check this option you can choose to automaticly get e-mailed when "
+#~ "the backup to the external server failed."
+#~ msgstr ""
+#~ "Als u deze optie aanvinkt kan u kiezen om automatisch een e-mail aan te "
+#~ "krijgen als de backup naar de externe server mislukt."
+
+#~ msgid ""
+#~ "If you check this option you can choose to automaticly remove the backup "
+#~ "after xx days"
+#~ msgstr ""
+#~ "Als u deze optie aanvinkt kan u kiezen om automatisch backups te "
+#~ "verwijderen na xx dagen"
+
+#~ msgid ""
+#~ "If you check this option you can specify the details needed to write to a "
+#~ "remote server with SFTP."
+#~ msgstr ""
+#~ "Als u deze optie aanvinkt kan u de details invullen die nodig zijn om te "
+#~ "connecteren met de externe SFTP server."
+
+#~ msgid "Need more help?"
+#~ msgstr "Meer hulp nodig?"
+
+#~ msgid "Password User SFTP Server"
+#~ msgstr "Wachtwoord gebruiker SFTP server"
+
+#~ msgid "Path external server"
+#~ msgstr "Pad externe server"
+
+#~ msgid "Port"
+#~ msgstr "Poort"
+
+#~ msgid "Remove SFTP after x days"
+#~ msgstr "SFTP verwijderen na x dagen"
+
+#~ msgid "Remove after x days"
+#~ msgstr "Verwijderen na x dagen"
+
+#~ msgid "SFTP"
+#~ msgstr "SFTP"
+
+#~ msgid "Search options"
+#~ msgstr "Zoekopties"
+
+#~ msgid "Test"
+#~ msgstr "Test"
+
+#~ msgid ""
+#~ "The location to the folder where the dumps should be written to. For "
+#~ "example /odoo/backups/.\n"
+#~ "Files will then be written to /odoo/backups/ on your remote server."
+#~ msgstr ""
+#~ "De locatie naar de folder waar de backup naar toe moet geschreven worden. "
+#~ "Bijvoorbeeld odoo/backups/\n"
+#~ "Bestanden worden dan naar /odoo/backups/ geschreven op de externe server"
+
+#~ msgid ""
+#~ "This configures the scheduler for automatic backup of the given database "
+#~ "running on given host at given port on regular intervals."
+#~ msgstr ""
+#~ "Dit configureert de planner voor automatische backups op de ingegeven "
+#~ "database waar de host, poort en database op zijn ingegeven voor reguliere "
+#~ "intervallen."
+
+#~ msgid "Write to external server with sftp"
+#~ msgstr "Schrijf naar externe server met SFTP"
diff --git a/auto_backup/i18n/nl_NL.po b/auto_backup/i18n/nl_NL.po
index 8a994738f55..58027d6fd8c 100644
--- a/auto_backup/i18n/nl_NL.po
+++ b/auto_backup/i18n/nl_NL.po
@@ -1,7 +1,7 @@
 # Translation of Odoo Server.
 # This file contains the translation of the following modules:
 # * auto_backup
-# 
+#
 # Translators:
 # OCA Transbot <transbot@odoo-community.org>, 2018
 msgid ""
@@ -11,11 +11,12 @@ msgstr ""
 "POT-Creation-Date: 2018-03-03 10:08+0000\n"
 "PO-Revision-Date: 2018-03-03 10:08+0000\n"
 "Last-Translator: OCA Transbot <transbot@odoo-community.org>, 2018\n"
-"Language-Team: Dutch (Netherlands) (https://www.transifex.com/oca/teams/23907/nl_NL/)\n"
+"Language-Team: Dutch (Netherlands) (https://www.transifex.com/oca/"
+"teams/23907/nl_NL/)\n"
+"Language: nl_NL\n"
 "MIME-Version: 1.0\n"
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: \n"
-"Language: nl_NL\n"
 "Plural-Forms: nplurals=2; plural=(n != 1);\n"
 
 #. module: auto_backup
@@ -252,8 +253,7 @@ msgstr ""
 #. module: auto_backup
 #: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
 msgid ""
-"Set the scheduler to active and fill in how often you want backups "
-"generated."
+"Set the scheduler to active and fill in how often you want backups generated."
 msgstr ""
 
 #. module: auto_backup
@@ -287,8 +287,8 @@ msgstr ""
 #. module: auto_backup
 #: model:ir.model.fields,help:auto_backup.field_db_backup_sftp_user
 msgid ""
-"The username where the SFTP connection should be made with. This is the user"
-" on the external server."
+"The username where the SFTP connection should be made with. This is the user "
+"on the external server."
 msgstr ""
 
 #. module: auto_backup
diff --git a/auto_backup/i18n/pl.po b/auto_backup/i18n/pl.po
index 8ed87208e55..4521d8c41d8 100644
--- a/auto_backup/i18n/pl.po
+++ b/auto_backup/i18n/pl.po
@@ -1,7 +1,7 @@
 # Translation of Odoo Server.
 # This file contains the translation of the following modules:
 # * auto_backup
-# 
+#
 # Translators:
 # OCA Transbot <transbot@odoo-community.org>, 2016
 msgid ""
@@ -12,11 +12,13 @@ msgstr ""
 "PO-Revision-Date: 2017-02-18 02:29+0000\n"
 "Last-Translator: OCA Transbot <transbot@odoo-community.org>, 2016\n"
 "Language-Team: Polish (https://www.transifex.com/oca/teams/23907/pl/)\n"
+"Language: pl\n"
 "MIME-Version: 1.0\n"
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: \n"
-"Language: pl\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"
+"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: auto_backup
 #: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
@@ -45,13 +47,15 @@ msgid "Backup Failed"
 msgstr ""
 
 #. module: auto_backup
-#: model:mail.message.subtype,name:auto_backup.mail_message_subtype_success
-msgid "Backup Successful"
+#: model:ir.actions.server,name:auto_backup.ir_cron_backup_scheduler_0_ir_actions_server
+#: model:ir.cron,cron_name:auto_backup.ir_cron_backup_scheduler_0
+#: model:ir.cron,name:auto_backup.ir_cron_backup_scheduler_0
+msgid "Backup Scheduler"
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_tree
-msgid "Backups"
+#: model:mail.message.subtype,name:auto_backup.mail_message_subtype_success
+msgid "Backup Successful"
 msgstr ""
 
 #. module: auto_backup
@@ -77,19 +81,19 @@ msgid "Choose the storage method for this backup."
 msgstr ""
 
 #. module: auto_backup
-#: code:addons/auto_backup/models/db_backup.py:251
+#: code:addons/auto_backup/models/db_backup.py:249
 #, python-format
 msgid "Cleanup of old database backups failed."
 msgstr ""
 
 #. module: auto_backup
-#: code:addons/auto_backup/models/db_backup.py:131
+#: code:addons/auto_backup/models/db_backup.py:128
 #, python-format
 msgid "Connection Test Failed!"
 msgstr ""
 
 #. module: auto_backup
-#: code:addons/auto_backup/models/db_backup.py:128
+#: code:addons/auto_backup/models/db_backup.py:123
 #, python-format
 msgid "Connection Test Succeeded!"
 msgstr ""
@@ -105,14 +109,19 @@ msgid "Created on"
 msgstr "Data utworzenia"
 
 #. module: auto_backup
-#: code:addons/auto_backup/models/db_backup.py:206
+#: model:ir.model,name:auto_backup.model_db_backup
+msgid "Database Backup"
+msgstr ""
+
+#. module: auto_backup
+#: code:addons/auto_backup/models/db_backup.py:203
 #: model:mail.message.subtype,description:auto_backup.mail_message_subtype_failure
 #, python-format
 msgid "Database backup failed."
 msgstr ""
 
 #. module: auto_backup
-#: code:addons/auto_backup/models/db_backup.py:214
+#: code:addons/auto_backup/models/db_backup.py:211
 #: model:mail.message.subtype,description:auto_backup.mail_message_subtype_success
 #, python-format
 msgid "Database backup succeeded."
@@ -120,7 +129,7 @@ msgstr ""
 
 #. module: auto_backup
 #: model:ir.model.fields,field_description:auto_backup.field_db_backup_days_to_keep
-msgid "Days to keep"
+msgid "Days To Keep"
 msgstr ""
 
 #. module: auto_backup
@@ -129,12 +138,17 @@ msgid "Display Name"
 msgstr "Wy??wietlana nazwa "
 
 #. module: auto_backup
-#: code:addons/auto_backup/models/db_backup.py:119
+#: code:addons/auto_backup/models/db_backup.py:114
 #, python-format
 msgid ""
 "Do not save backups on your filestore, or you will backup your backups too!"
 msgstr ""
 
+#. module: auto_backup
+#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+msgid "Execute backup"
+msgstr ""
+
 #. module: auto_backup
 #: model:ir.actions.server,name:auto_backup.action_server_backup
 msgid "Execute backup(s)"
@@ -232,11 +246,6 @@ msgstr ""
 msgid "SFTP Settings"
 msgstr ""
 
-#. module: auto_backup
-#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_search
-msgid "Search options"
-msgstr ""
-
 #. module: auto_backup
 #: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
 msgid "Search the action named 'Backup scheduler'."
@@ -245,8 +254,7 @@ msgstr ""
 #. module: auto_backup
 #: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
 msgid ""
-"Set the scheduler to active and fill in how often you want backups "
-"generated."
+"Set the scheduler to active and fill in how often you want backups generated."
 msgstr ""
 
 #. module: auto_backup
@@ -280,8 +288,8 @@ msgstr ""
 #. module: auto_backup
 #: model:ir.model.fields,help:auto_backup.field_db_backup_sftp_user
 msgid ""
-"The username where the SFTP connection should be made with. This is the user"
-" on the external server."
+"The username where the SFTP connection should be made with. This is the user "
+"on the external server."
 msgstr ""
 
 #. module: auto_backup
@@ -301,11 +309,6 @@ msgstr ""
 msgid "Warning:"
 msgstr ""
 
-#. module: auto_backup
-#: model:ir.model,name:auto_backup.model_db_backup
-msgid "db.backup"
-msgstr ""
-
 #. module: auto_backup
 #: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
 msgid "john"
diff --git a/auto_backup/i18n/pt.po b/auto_backup/i18n/pt.po
index e2dc68e74e1..6bdec32fb68 100644
--- a/auto_backup/i18n/pt.po
+++ b/auto_backup/i18n/pt.po
@@ -1,7 +1,7 @@
 # Translation of Odoo Server.
 # This file contains the translation of the following modules:
 # * auto_backup
-# 
+#
 # Translators:
 # OCA Transbot <transbot@odoo-community.org>, 2018
 msgid ""
@@ -12,10 +12,10 @@ msgstr ""
 "PO-Revision-Date: 2018-03-03 10:08+0000\n"
 "Last-Translator: OCA Transbot <transbot@odoo-community.org>, 2018\n"
 "Language-Team: Portuguese (https://www.transifex.com/oca/teams/23907/pt/)\n"
+"Language: pt\n"
 "MIME-Version: 1.0\n"
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: \n"
-"Language: pt\n"
 "Plural-Forms: nplurals=2; plural=(n != 1);\n"
 
 #. module: auto_backup
@@ -252,8 +252,7 @@ msgstr ""
 #. module: auto_backup
 #: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
 msgid ""
-"Set the scheduler to active and fill in how often you want backups "
-"generated."
+"Set the scheduler to active and fill in how often you want backups generated."
 msgstr ""
 
 #. module: auto_backup
@@ -287,8 +286,8 @@ msgstr ""
 #. module: auto_backup
 #: model:ir.model.fields,help:auto_backup.field_db_backup_sftp_user
 msgid ""
-"The username where the SFTP connection should be made with. This is the user"
-" on the external server."
+"The username where the SFTP connection should be made with. This is the user "
+"on the external server."
 msgstr ""
 
 #. module: auto_backup
diff --git a/auto_backup/i18n/pt_BR.po b/auto_backup/i18n/pt_BR.po
index 1e47c86ead8..825703b477c 100644
--- a/auto_backup/i18n/pt_BR.po
+++ b/auto_backup/i18n/pt_BR.po
@@ -1,7 +1,7 @@
 # Translation of Odoo Server.
 # This file contains the translation of the following modules:
 # * auto_backup
-# 
+#
 # Translators:
 # OCA Transbot <transbot@odoo-community.org>, 2016
 msgid ""
@@ -11,11 +11,12 @@ msgstr ""
 "POT-Creation-Date: 2016-12-08 03:36+0000\n"
 "PO-Revision-Date: 2016-12-08 03:36+0000\n"
 "Last-Translator: OCA Transbot <transbot@odoo-community.org>, 2016\n"
-"Language-Team: Portuguese (Brazil) (https://www.transifex.com/oca/teams/23907/pt_BR/)\n"
+"Language-Team: Portuguese (Brazil) (https://www.transifex.com/oca/"
+"teams/23907/pt_BR/)\n"
+"Language: pt_BR\n"
 "MIME-Version: 1.0\n"
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: \n"
-"Language: pt_BR\n"
 "Plural-Forms: nplurals=2; plural=(n > 1);\n"
 
 #. module: auto_backup
@@ -45,13 +46,15 @@ msgid "Backup Failed"
 msgstr ""
 
 #. module: auto_backup
-#: model:mail.message.subtype,name:auto_backup.mail_message_subtype_success
-msgid "Backup Successful"
+#: model:ir.actions.server,name:auto_backup.ir_cron_backup_scheduler_0_ir_actions_server
+#: model:ir.cron,cron_name:auto_backup.ir_cron_backup_scheduler_0
+#: model:ir.cron,name:auto_backup.ir_cron_backup_scheduler_0
+msgid "Backup Scheduler"
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_tree
-msgid "Backups"
+#: model:mail.message.subtype,name:auto_backup.mail_message_subtype_success
+msgid "Backup Successful"
 msgstr ""
 
 #. module: auto_backup
@@ -77,19 +80,19 @@ msgid "Choose the storage method for this backup."
 msgstr ""
 
 #. module: auto_backup
-#: code:addons/auto_backup/models/db_backup.py:248
+#: code:addons/auto_backup/models/db_backup.py:249
 #, python-format
 msgid "Cleanup of old database backups failed."
 msgstr ""
 
 #. module: auto_backup
-#: code:addons/auto_backup/models/db_backup.py:131
+#: code:addons/auto_backup/models/db_backup.py:128
 #, python-format
 msgid "Connection Test Failed!"
 msgstr ""
 
 #. module: auto_backup
-#: code:addons/auto_backup/models/db_backup.py:128
+#: code:addons/auto_backup/models/db_backup.py:123
 #, python-format
 msgid "Connection Test Succeeded!"
 msgstr ""
@@ -105,7 +108,13 @@ msgid "Created on"
 msgstr "Criado em"
 
 #. module: auto_backup
-#: code:addons/auto_backup/models/db_backup.py:206
+#: model:ir.model,name:auto_backup.model_db_backup
+#, fuzzy
+msgid "Database Backup"
+msgstr "Backups Autom??ticos"
+
+#. module: auto_backup
+#: code:addons/auto_backup/models/db_backup.py:203
 #: model:mail.message.subtype,description:auto_backup.mail_message_subtype_failure
 #, python-format
 msgid "Database backup failed."
@@ -120,7 +129,7 @@ msgstr ""
 
 #. module: auto_backup
 #: model:ir.model.fields,field_description:auto_backup.field_db_backup_days_to_keep
-msgid "Days to keep"
+msgid "Days To Keep"
 msgstr ""
 
 #. module: auto_backup
@@ -129,12 +138,17 @@ msgid "Display Name"
 msgstr "Nome para Mostrar"
 
 #. module: auto_backup
-#: code:addons/auto_backup/models/db_backup.py:119
+#: code:addons/auto_backup/models/db_backup.py:114
 #, python-format
 msgid ""
 "Do not save backups on your filestore, or you will backup your backups too!"
 msgstr ""
 
+#. module: auto_backup
+#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+msgid "Execute backup"
+msgstr ""
+
 #. module: auto_backup
 #: model:ir.actions.server,name:auto_backup.action_server_backup
 msgid "Execute backup(s)"
@@ -232,11 +246,6 @@ msgstr ""
 msgid "SFTP Settings"
 msgstr ""
 
-#. module: auto_backup
-#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_search
-msgid "Search options"
-msgstr ""
-
 #. module: auto_backup
 #: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
 msgid "Search the action named 'Backup scheduler'."
@@ -245,8 +254,7 @@ msgstr ""
 #. module: auto_backup
 #: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
 msgid ""
-"Set the scheduler to active and fill in how often you want backups "
-"generated."
+"Set the scheduler to active and fill in how often you want backups generated."
 msgstr ""
 
 #. module: auto_backup
@@ -280,8 +288,8 @@ msgstr ""
 #. module: auto_backup
 #: model:ir.model.fields,help:auto_backup.field_db_backup_sftp_user
 msgid ""
-"The username where the SFTP connection should be made with. This is the user"
-" on the external server."
+"The username where the SFTP connection should be made with. This is the user "
+"on the external server."
 msgstr ""
 
 #. module: auto_backup
@@ -301,11 +309,6 @@ msgstr ""
 msgid "Warning:"
 msgstr ""
 
-#. module: auto_backup
-#: model:ir.model,name:auto_backup.model_db_backup
-msgid "db.backup"
-msgstr ""
-
 #. module: auto_backup
 #: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
 msgid "john"
diff --git a/auto_backup/i18n/pt_PT.po b/auto_backup/i18n/pt_PT.po
index 15ddfae18e9..1b25fbf668a 100644
--- a/auto_backup/i18n/pt_PT.po
+++ b/auto_backup/i18n/pt_PT.po
@@ -1,7 +1,7 @@
 # Translation of Odoo Server.
 # This file contains the translation of the following modules:
 # * auto_backup
-# 
+#
 # Translators:
 # OCA Transbot <transbot@odoo-community.org>, 2016
 msgid ""
@@ -11,11 +11,12 @@ msgstr ""
 "POT-Creation-Date: 2017-02-22 00:54+0000\n"
 "PO-Revision-Date: 2017-02-22 00:54+0000\n"
 "Last-Translator: OCA Transbot <transbot@odoo-community.org>, 2016\n"
-"Language-Team: Portuguese (Portugal) (https://www.transifex.com/oca/teams/23907/pt_PT/)\n"
+"Language-Team: Portuguese (Portugal) (https://www.transifex.com/oca/"
+"teams/23907/pt_PT/)\n"
+"Language: pt_PT\n"
 "MIME-Version: 1.0\n"
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: \n"
-"Language: pt_PT\n"
 "Plural-Forms: nplurals=2; plural=(n != 1);\n"
 
 #. module: auto_backup
@@ -45,13 +46,15 @@ msgid "Backup Failed"
 msgstr ""
 
 #. module: auto_backup
-#: model:mail.message.subtype,name:auto_backup.mail_message_subtype_success
-msgid "Backup Successful"
+#: model:ir.actions.server,name:auto_backup.ir_cron_backup_scheduler_0_ir_actions_server
+#: model:ir.cron,cron_name:auto_backup.ir_cron_backup_scheduler_0
+#: model:ir.cron,name:auto_backup.ir_cron_backup_scheduler_0
+msgid "Backup Scheduler"
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_tree
-msgid "Backups"
+#: model:mail.message.subtype,name:auto_backup.mail_message_subtype_success
+msgid "Backup Successful"
 msgstr ""
 
 #. module: auto_backup
@@ -77,19 +80,19 @@ msgid "Choose the storage method for this backup."
 msgstr ""
 
 #. module: auto_backup
-#: code:addons/auto_backup/models/db_backup.py:251
+#: code:addons/auto_backup/models/db_backup.py:249
 #, python-format
 msgid "Cleanup of old database backups failed."
 msgstr ""
 
 #. module: auto_backup
-#: code:addons/auto_backup/models/db_backup.py:131
+#: code:addons/auto_backup/models/db_backup.py:128
 #, python-format
 msgid "Connection Test Failed!"
 msgstr ""
 
 #. module: auto_backup
-#: code:addons/auto_backup/models/db_backup.py:128
+#: code:addons/auto_backup/models/db_backup.py:123
 #, python-format
 msgid "Connection Test Succeeded!"
 msgstr ""
@@ -105,14 +108,19 @@ msgid "Created on"
 msgstr "Criado em"
 
 #. module: auto_backup
-#: code:addons/auto_backup/models/db_backup.py:206
+#: model:ir.model,name:auto_backup.model_db_backup
+msgid "Database Backup"
+msgstr ""
+
+#. module: auto_backup
+#: code:addons/auto_backup/models/db_backup.py:203
 #: model:mail.message.subtype,description:auto_backup.mail_message_subtype_failure
 #, python-format
 msgid "Database backup failed."
 msgstr ""
 
 #. module: auto_backup
-#: code:addons/auto_backup/models/db_backup.py:214
+#: code:addons/auto_backup/models/db_backup.py:211
 #: model:mail.message.subtype,description:auto_backup.mail_message_subtype_success
 #, python-format
 msgid "Database backup succeeded."
@@ -120,7 +128,7 @@ msgstr ""
 
 #. module: auto_backup
 #: model:ir.model.fields,field_description:auto_backup.field_db_backup_days_to_keep
-msgid "Days to keep"
+msgid "Days To Keep"
 msgstr ""
 
 #. module: auto_backup
@@ -129,12 +137,17 @@ msgid "Display Name"
 msgstr "Nome a Apresentar"
 
 #. module: auto_backup
-#: code:addons/auto_backup/models/db_backup.py:119
+#: code:addons/auto_backup/models/db_backup.py:114
 #, python-format
 msgid ""
 "Do not save backups on your filestore, or you will backup your backups too!"
 msgstr ""
 
+#. module: auto_backup
+#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+msgid "Execute backup"
+msgstr ""
+
 #. module: auto_backup
 #: model:ir.actions.server,name:auto_backup.action_server_backup
 msgid "Execute backup(s)"
@@ -232,11 +245,6 @@ msgstr ""
 msgid "SFTP Settings"
 msgstr ""
 
-#. module: auto_backup
-#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_search
-msgid "Search options"
-msgstr ""
-
 #. module: auto_backup
 #: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
 msgid "Search the action named 'Backup scheduler'."
@@ -245,8 +253,7 @@ msgstr ""
 #. module: auto_backup
 #: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
 msgid ""
-"Set the scheduler to active and fill in how often you want backups "
-"generated."
+"Set the scheduler to active and fill in how often you want backups generated."
 msgstr ""
 
 #. module: auto_backup
@@ -280,8 +287,8 @@ msgstr ""
 #. module: auto_backup
 #: model:ir.model.fields,help:auto_backup.field_db_backup_sftp_user
 msgid ""
-"The username where the SFTP connection should be made with. This is the user"
-" on the external server."
+"The username where the SFTP connection should be made with. This is the user "
+"on the external server."
 msgstr ""
 
 #. module: auto_backup
@@ -301,11 +308,6 @@ msgstr ""
 msgid "Warning:"
 msgstr ""
 
-#. module: auto_backup
-#: model:ir.model,name:auto_backup.model_db_backup
-msgid "db.backup"
-msgstr ""
-
 #. module: auto_backup
 #: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
 msgid "john"
diff --git a/auto_backup/i18n/ro.po b/auto_backup/i18n/ro.po
index 5810c3d965f..beeb8e661cd 100644
--- a/auto_backup/i18n/ro.po
+++ b/auto_backup/i18n/ro.po
@@ -1,7 +1,7 @@
 # Translation of Odoo Server.
 # This file contains the translation of the following modules:
 # * auto_backup
-# 
+#
 # Translators:
 # OCA Transbot <transbot@odoo-community.org>, 2018
 msgid ""
@@ -12,11 +12,12 @@ msgstr ""
 "PO-Revision-Date: 2018-03-03 10:08+0000\n"
 "Last-Translator: OCA Transbot <transbot@odoo-community.org>, 2018\n"
 "Language-Team: Romanian (https://www.transifex.com/oca/teams/23907/ro/)\n"
+"Language: ro\n"
 "MIME-Version: 1.0\n"
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: \n"
-"Language: ro\n"
-"Plural-Forms: nplurals=3; plural=(n==1?0:(((n%100>19)||((n%100==0)&&(n!=0)))?2:1));\n"
+"Plural-Forms: nplurals=3; plural=(n==1?0:(((n%100>19)||((n%100==0)&&(n!=0)))?"
+"2:1));\n"
 
 #. module: auto_backup
 #: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
@@ -252,8 +253,7 @@ msgstr ""
 #. module: auto_backup
 #: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
 msgid ""
-"Set the scheduler to active and fill in how often you want backups "
-"generated."
+"Set the scheduler to active and fill in how often you want backups generated."
 msgstr ""
 
 #. module: auto_backup
@@ -287,8 +287,8 @@ msgstr ""
 #. module: auto_backup
 #: model:ir.model.fields,help:auto_backup.field_db_backup_sftp_user
 msgid ""
-"The username where the SFTP connection should be made with. This is the user"
-" on the external server."
+"The username where the SFTP connection should be made with. This is the user "
+"on the external server."
 msgstr ""
 
 #. module: auto_backup
diff --git a/auto_backup/i18n/ru.po b/auto_backup/i18n/ru.po
index ea05d719d9e..e83e1760317 100644
--- a/auto_backup/i18n/ru.po
+++ b/auto_backup/i18n/ru.po
@@ -1,7 +1,7 @@
 # Translation of Odoo Server.
 # This file contains the translation of the following modules:
 # * auto_backup
-# 
+#
 # Translators:
 # OCA Transbot <transbot@odoo-community.org>, 2016
 msgid ""
@@ -12,11 +12,13 @@ msgstr ""
 "PO-Revision-Date: 2016-12-08 03:36+0000\n"
 "Last-Translator: OCA Transbot <transbot@odoo-community.org>, 2016\n"
 "Language-Team: Russian (https://www.transifex.com/oca/teams/23907/ru/)\n"
+"Language: ru\n"
 "MIME-Version: 1.0\n"
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: \n"
-"Language: ru\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"
+"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: auto_backup
 #: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
@@ -45,13 +47,15 @@ msgid "Backup Failed"
 msgstr ""
 
 #. module: auto_backup
-#: model:mail.message.subtype,name:auto_backup.mail_message_subtype_success
-msgid "Backup Successful"
+#: model:ir.actions.server,name:auto_backup.ir_cron_backup_scheduler_0_ir_actions_server
+#: model:ir.cron,cron_name:auto_backup.ir_cron_backup_scheduler_0
+#: model:ir.cron,name:auto_backup.ir_cron_backup_scheduler_0
+msgid "Backup Scheduler"
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_tree
-msgid "Backups"
+#: model:mail.message.subtype,name:auto_backup.mail_message_subtype_success
+msgid "Backup Successful"
 msgstr ""
 
 #. module: auto_backup
@@ -77,19 +81,19 @@ msgid "Choose the storage method for this backup."
 msgstr ""
 
 #. module: auto_backup
-#: code:addons/auto_backup/models/db_backup.py:248
+#: code:addons/auto_backup/models/db_backup.py:249
 #, python-format
 msgid "Cleanup of old database backups failed."
 msgstr ""
 
 #. module: auto_backup
-#: code:addons/auto_backup/models/db_backup.py:131
+#: code:addons/auto_backup/models/db_backup.py:128
 #, python-format
 msgid "Connection Test Failed!"
 msgstr ""
 
 #. module: auto_backup
-#: code:addons/auto_backup/models/db_backup.py:128
+#: code:addons/auto_backup/models/db_backup.py:123
 #, python-format
 msgid "Connection Test Succeeded!"
 msgstr ""
@@ -105,7 +109,12 @@ msgid "Created on"
 msgstr "????????????"
 
 #. module: auto_backup
-#: code:addons/auto_backup/models/db_backup.py:206
+#: model:ir.model,name:auto_backup.model_db_backup
+msgid "Database Backup"
+msgstr ""
+
+#. module: auto_backup
+#: code:addons/auto_backup/models/db_backup.py:203
 #: model:mail.message.subtype,description:auto_backup.mail_message_subtype_failure
 #, python-format
 msgid "Database backup failed."
@@ -120,7 +129,7 @@ msgstr ""
 
 #. module: auto_backup
 #: model:ir.model.fields,field_description:auto_backup.field_db_backup_days_to_keep
-msgid "Days to keep"
+msgid "Days To Keep"
 msgstr ""
 
 #. module: auto_backup
@@ -129,12 +138,17 @@ msgid "Display Name"
 msgstr ""
 
 #. module: auto_backup
-#: code:addons/auto_backup/models/db_backup.py:119
+#: code:addons/auto_backup/models/db_backup.py:114
 #, python-format
 msgid ""
 "Do not save backups on your filestore, or you will backup your backups too!"
 msgstr ""
 
+#. module: auto_backup
+#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+msgid "Execute backup"
+msgstr ""
+
 #. module: auto_backup
 #: model:ir.actions.server,name:auto_backup.action_server_backup
 msgid "Execute backup(s)"
@@ -232,11 +246,6 @@ msgstr ""
 msgid "SFTP Settings"
 msgstr ""
 
-#. module: auto_backup
-#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_search
-msgid "Search options"
-msgstr ""
-
 #. module: auto_backup
 #: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
 msgid "Search the action named 'Backup scheduler'."
@@ -245,8 +254,7 @@ msgstr ""
 #. module: auto_backup
 #: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
 msgid ""
-"Set the scheduler to active and fill in how often you want backups "
-"generated."
+"Set the scheduler to active and fill in how often you want backups generated."
 msgstr ""
 
 #. module: auto_backup
@@ -280,8 +288,8 @@ msgstr ""
 #. module: auto_backup
 #: model:ir.model.fields,help:auto_backup.field_db_backup_sftp_user
 msgid ""
-"The username where the SFTP connection should be made with. This is the user"
-" on the external server."
+"The username where the SFTP connection should be made with. This is the user "
+"on the external server."
 msgstr ""
 
 #. module: auto_backup
@@ -301,11 +309,6 @@ msgstr ""
 msgid "Warning:"
 msgstr ""
 
-#. module: auto_backup
-#: model:ir.model,name:auto_backup.model_db_backup
-msgid "db.backup"
-msgstr ""
-
 #. module: auto_backup
 #: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
 msgid "john"
diff --git a/auto_backup/i18n/sk.po b/auto_backup/i18n/sk.po
index ce9724cfa24..03e38ec892e 100644
--- a/auto_backup/i18n/sk.po
+++ b/auto_backup/i18n/sk.po
@@ -1,7 +1,7 @@
 # Translation of Odoo Server.
 # This file contains the translation of the following modules:
 # * auto_backup
-# 
+#
 # Translators:
 # OCA Transbot <transbot@odoo-community.org>, 2016
 msgid ""
@@ -12,10 +12,10 @@ msgstr ""
 "PO-Revision-Date: 2017-02-18 02:29+0000\n"
 "Last-Translator: OCA Transbot <transbot@odoo-community.org>, 2016\n"
 "Language-Team: Slovak (https://www.transifex.com/oca/teams/23907/sk/)\n"
+"Language: sk\n"
 "MIME-Version: 1.0\n"
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: \n"
-"Language: sk\n"
 "Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;\n"
 
 #. module: auto_backup
@@ -45,13 +45,15 @@ msgid "Backup Failed"
 msgstr ""
 
 #. module: auto_backup
-#: model:mail.message.subtype,name:auto_backup.mail_message_subtype_success
-msgid "Backup Successful"
+#: model:ir.actions.server,name:auto_backup.ir_cron_backup_scheduler_0_ir_actions_server
+#: model:ir.cron,cron_name:auto_backup.ir_cron_backup_scheduler_0
+#: model:ir.cron,name:auto_backup.ir_cron_backup_scheduler_0
+msgid "Backup Scheduler"
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_tree
-msgid "Backups"
+#: model:mail.message.subtype,name:auto_backup.mail_message_subtype_success
+msgid "Backup Successful"
 msgstr ""
 
 #. module: auto_backup
@@ -77,19 +79,19 @@ msgid "Choose the storage method for this backup."
 msgstr ""
 
 #. module: auto_backup
-#: code:addons/auto_backup/models/db_backup.py:251
+#: code:addons/auto_backup/models/db_backup.py:249
 #, python-format
 msgid "Cleanup of old database backups failed."
 msgstr ""
 
 #. module: auto_backup
-#: code:addons/auto_backup/models/db_backup.py:131
+#: code:addons/auto_backup/models/db_backup.py:128
 #, python-format
 msgid "Connection Test Failed!"
 msgstr ""
 
 #. module: auto_backup
-#: code:addons/auto_backup/models/db_backup.py:128
+#: code:addons/auto_backup/models/db_backup.py:123
 #, python-format
 msgid "Connection Test Succeeded!"
 msgstr ""
@@ -105,14 +107,19 @@ msgid "Created on"
 msgstr "Vytvoren??"
 
 #. module: auto_backup
-#: code:addons/auto_backup/models/db_backup.py:206
+#: model:ir.model,name:auto_backup.model_db_backup
+msgid "Database Backup"
+msgstr ""
+
+#. module: auto_backup
+#: code:addons/auto_backup/models/db_backup.py:203
 #: model:mail.message.subtype,description:auto_backup.mail_message_subtype_failure
 #, python-format
 msgid "Database backup failed."
 msgstr ""
 
 #. module: auto_backup
-#: code:addons/auto_backup/models/db_backup.py:214
+#: code:addons/auto_backup/models/db_backup.py:211
 #: model:mail.message.subtype,description:auto_backup.mail_message_subtype_success
 #, python-format
 msgid "Database backup succeeded."
@@ -120,7 +127,7 @@ msgstr ""
 
 #. module: auto_backup
 #: model:ir.model.fields,field_description:auto_backup.field_db_backup_days_to_keep
-msgid "Days to keep"
+msgid "Days To Keep"
 msgstr ""
 
 #. module: auto_backup
@@ -129,12 +136,17 @@ msgid "Display Name"
 msgstr "Zobrazi?? meno"
 
 #. module: auto_backup
-#: code:addons/auto_backup/models/db_backup.py:119
+#: code:addons/auto_backup/models/db_backup.py:114
 #, python-format
 msgid ""
 "Do not save backups on your filestore, or you will backup your backups too!"
 msgstr ""
 
+#. module: auto_backup
+#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+msgid "Execute backup"
+msgstr ""
+
 #. module: auto_backup
 #: model:ir.actions.server,name:auto_backup.action_server_backup
 msgid "Execute backup(s)"
@@ -232,11 +244,6 @@ msgstr ""
 msgid "SFTP Settings"
 msgstr ""
 
-#. module: auto_backup
-#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_search
-msgid "Search options"
-msgstr ""
-
 #. module: auto_backup
 #: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
 msgid "Search the action named 'Backup scheduler'."
@@ -245,8 +252,7 @@ msgstr ""
 #. module: auto_backup
 #: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
 msgid ""
-"Set the scheduler to active and fill in how often you want backups "
-"generated."
+"Set the scheduler to active and fill in how often you want backups generated."
 msgstr ""
 
 #. module: auto_backup
@@ -280,8 +286,8 @@ msgstr ""
 #. module: auto_backup
 #: model:ir.model.fields,help:auto_backup.field_db_backup_sftp_user
 msgid ""
-"The username where the SFTP connection should be made with. This is the user"
-" on the external server."
+"The username where the SFTP connection should be made with. This is the user "
+"on the external server."
 msgstr ""
 
 #. module: auto_backup
@@ -301,11 +307,6 @@ msgstr ""
 msgid "Warning:"
 msgstr ""
 
-#. module: auto_backup
-#: model:ir.model,name:auto_backup.model_db_backup
-msgid "db.backup"
-msgstr ""
-
 #. module: auto_backup
 #: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
 msgid "john"
diff --git a/auto_backup/i18n/sl.po b/auto_backup/i18n/sl.po
index 04d3d6ce23f..0334fe3a17b 100644
--- a/auto_backup/i18n/sl.po
+++ b/auto_backup/i18n/sl.po
@@ -1,7 +1,7 @@
 # Translation of Odoo Server.
 # This file contains the translation of the following modules:
 # * auto_backup
-# 
+#
 # Translators:
 # OCA Transbot <transbot@odoo-community.org>, 2018
 msgid ""
@@ -12,11 +12,12 @@ msgstr ""
 "PO-Revision-Date: 2018-03-03 10:08+0000\n"
 "Last-Translator: OCA Transbot <transbot@odoo-community.org>, 2018\n"
 "Language-Team: Slovenian (https://www.transifex.com/oca/teams/23907/sl/)\n"
+"Language: sl\n"
 "MIME-Version: 1.0\n"
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: \n"
-"Language: sl\n"
-"Plural-Forms: nplurals=4; plural=(n%100==1 ? 0 : n%100==2 ? 1 : n%100==3 || n%100==4 ? 2 : 3);\n"
+"Plural-Forms: nplurals=4; plural=(n%100==1 ? 0 : n%100==2 ? 1 : n%100==3 || n"
+"%100==4 ? 2 : 3);\n"
 
 #. module: auto_backup
 #: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
@@ -143,8 +144,8 @@ msgstr "Prikazni naziv"
 msgid ""
 "Do not save backups on your filestore, or you will backup your backups too!"
 msgstr ""
-"Ne hranite varnostnih kopij v 'filestore', saj boste tako kopirali tudi same"
-" varnostne kopije!"
+"Ne hranite varnostnih kopij v 'filestore', saj boste tako kopirali tudi same "
+"varnostne kopije!"
 
 #. module: auto_backup
 #: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
@@ -258,8 +259,7 @@ msgstr "Iskanje dejanja z nazivom 'Razporejevalnik varnostnih kopiranj'"
 #. module: auto_backup
 #: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
 msgid ""
-"Set the scheduler to active and fill in how often you want backups "
-"generated."
+"Set the scheduler to active and fill in how often you want backups generated."
 msgstr ""
 "Nastavite razporejevalnik kot aktiven in izpolnite, kako pogosto ??elite "
 "ustvarjati varnostne kopije."
@@ -297,8 +297,8 @@ msgstr "Vrata FTP stre??nika, ki sprejema SSH/SFTP klice."
 #. module: auto_backup
 #: model:ir.model.fields,help:auto_backup.field_db_backup_sftp_user
 msgid ""
-"The username where the SFTP connection should be made with. This is the user"
-" on the external server."
+"The username where the SFTP connection should be made with. This is the user "
+"on the external server."
 msgstr "Uporabni??ko ime SFTP povezave. To je uporabnik zunanjega stre??nika."
 
 #. module: auto_backup
@@ -307,8 +307,8 @@ msgid ""
 "Use SFTP with caution! This writes files to external servers under the path "
 "you specify."
 msgstr ""
-"SFTP uporabljajte previdno! Datoteke se bodo zapisovale na zunanje stre??nike"
-" v pot, ki jo sami dolo??ite."
+"SFTP uporabljajte previdno! Datoteke se bodo zapisovale na zunanje stre??nike "
+"v pot, ki jo sami dolo??ite."
 
 #. module: auto_backup
 #: model:ir.model.fields,field_description:auto_backup.field_db_backup_sftp_user
diff --git a/auto_backup/i18n/sr.po b/auto_backup/i18n/sr.po
index db873cfb0d2..6c12aacc9eb 100644
--- a/auto_backup/i18n/sr.po
+++ b/auto_backup/i18n/sr.po
@@ -1,7 +1,7 @@
 # Translation of Odoo Server.
 # This file contains the translation of the following modules:
 # * auto_backup
-# 
+#
 # Translators:
 # OCA Transbot <transbot@odoo-community.org>, 2016
 msgid ""
@@ -12,11 +12,12 @@ msgstr ""
 "PO-Revision-Date: 2017-02-18 02:29+0000\n"
 "Last-Translator: OCA Transbot <transbot@odoo-community.org>, 2016\n"
 "Language-Team: Serbian (https://www.transifex.com/oca/teams/23907/sr/)\n"
+"Language: sr\n"
 "MIME-Version: 1.0\n"
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: \n"
-"Language: sr\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"
+"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: auto_backup
 #: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
@@ -45,13 +46,15 @@ msgid "Backup Failed"
 msgstr ""
 
 #. module: auto_backup
-#: model:mail.message.subtype,name:auto_backup.mail_message_subtype_success
-msgid "Backup Successful"
+#: model:ir.actions.server,name:auto_backup.ir_cron_backup_scheduler_0_ir_actions_server
+#: model:ir.cron,cron_name:auto_backup.ir_cron_backup_scheduler_0
+#: model:ir.cron,name:auto_backup.ir_cron_backup_scheduler_0
+msgid "Backup Scheduler"
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_tree
-msgid "Backups"
+#: model:mail.message.subtype,name:auto_backup.mail_message_subtype_success
+msgid "Backup Successful"
 msgstr ""
 
 #. module: auto_backup
@@ -77,19 +80,19 @@ msgid "Choose the storage method for this backup."
 msgstr ""
 
 #. module: auto_backup
-#: code:addons/auto_backup/models/db_backup.py:251
+#: code:addons/auto_backup/models/db_backup.py:249
 #, python-format
 msgid "Cleanup of old database backups failed."
 msgstr ""
 
 #. module: auto_backup
-#: code:addons/auto_backup/models/db_backup.py:131
+#: code:addons/auto_backup/models/db_backup.py:128
 #, python-format
 msgid "Connection Test Failed!"
 msgstr ""
 
 #. module: auto_backup
-#: code:addons/auto_backup/models/db_backup.py:128
+#: code:addons/auto_backup/models/db_backup.py:123
 #, python-format
 msgid "Connection Test Succeeded!"
 msgstr ""
@@ -105,14 +108,19 @@ msgid "Created on"
 msgstr "Kreiran"
 
 #. module: auto_backup
-#: code:addons/auto_backup/models/db_backup.py:206
+#: model:ir.model,name:auto_backup.model_db_backup
+msgid "Database Backup"
+msgstr ""
+
+#. module: auto_backup
+#: code:addons/auto_backup/models/db_backup.py:203
 #: model:mail.message.subtype,description:auto_backup.mail_message_subtype_failure
 #, python-format
 msgid "Database backup failed."
 msgstr ""
 
 #. module: auto_backup
-#: code:addons/auto_backup/models/db_backup.py:214
+#: code:addons/auto_backup/models/db_backup.py:211
 #: model:mail.message.subtype,description:auto_backup.mail_message_subtype_success
 #, python-format
 msgid "Database backup succeeded."
@@ -120,7 +128,7 @@ msgstr ""
 
 #. module: auto_backup
 #: model:ir.model.fields,field_description:auto_backup.field_db_backup_days_to_keep
-msgid "Days to keep"
+msgid "Days To Keep"
 msgstr ""
 
 #. module: auto_backup
@@ -129,12 +137,17 @@ msgid "Display Name"
 msgstr ""
 
 #. module: auto_backup
-#: code:addons/auto_backup/models/db_backup.py:119
+#: code:addons/auto_backup/models/db_backup.py:114
 #, python-format
 msgid ""
 "Do not save backups on your filestore, or you will backup your backups too!"
 msgstr ""
 
+#. module: auto_backup
+#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+msgid "Execute backup"
+msgstr ""
+
 #. module: auto_backup
 #: model:ir.actions.server,name:auto_backup.action_server_backup
 msgid "Execute backup(s)"
@@ -232,11 +245,6 @@ msgstr ""
 msgid "SFTP Settings"
 msgstr ""
 
-#. module: auto_backup
-#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_search
-msgid "Search options"
-msgstr ""
-
 #. module: auto_backup
 #: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
 msgid "Search the action named 'Backup scheduler'."
@@ -245,8 +253,7 @@ msgstr ""
 #. module: auto_backup
 #: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
 msgid ""
-"Set the scheduler to active and fill in how often you want backups "
-"generated."
+"Set the scheduler to active and fill in how often you want backups generated."
 msgstr ""
 
 #. module: auto_backup
@@ -280,8 +287,8 @@ msgstr ""
 #. module: auto_backup
 #: model:ir.model.fields,help:auto_backup.field_db_backup_sftp_user
 msgid ""
-"The username where the SFTP connection should be made with. This is the user"
-" on the external server."
+"The username where the SFTP connection should be made with. This is the user "
+"on the external server."
 msgstr ""
 
 #. module: auto_backup
@@ -301,11 +308,6 @@ msgstr ""
 msgid "Warning:"
 msgstr ""
 
-#. module: auto_backup
-#: model:ir.model,name:auto_backup.model_db_backup
-msgid "db.backup"
-msgstr ""
-
 #. module: auto_backup
 #: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
 msgid "john"
diff --git a/auto_backup/i18n/sr@latin.po b/auto_backup/i18n/sr@latin.po
index 0b8451511bc..ae797fdbb9c 100644
--- a/auto_backup/i18n/sr@latin.po
+++ b/auto_backup/i18n/sr@latin.po
@@ -1,7 +1,7 @@
 # Translation of Odoo Server.
 # This file contains the translation of the following modules:
 # * auto_backup
-# 
+#
 # Translators:
 # OCA Transbot <transbot@odoo-community.org>, 2016
 msgid ""
@@ -11,12 +11,14 @@ msgstr ""
 "POT-Creation-Date: 2017-02-18 02:29+0000\n"
 "PO-Revision-Date: 2017-02-18 02:29+0000\n"
 "Last-Translator: OCA Transbot <transbot@odoo-community.org>, 2016\n"
-"Language-Team: Serbian (Latin) (https://www.transifex.com/oca/teams/23907/sr@latin/)\n"
+"Language-Team: Serbian (Latin) (https://www.transifex.com/oca/teams/23907/"
+"sr@latin/)\n"
+"Language: sr@latin\n"
 "MIME-Version: 1.0\n"
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: \n"
-"Language: sr@latin\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"
+"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: auto_backup
 #: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
@@ -45,13 +47,15 @@ msgid "Backup Failed"
 msgstr ""
 
 #. module: auto_backup
-#: model:mail.message.subtype,name:auto_backup.mail_message_subtype_success
-msgid "Backup Successful"
+#: model:ir.actions.server,name:auto_backup.ir_cron_backup_scheduler_0_ir_actions_server
+#: model:ir.cron,cron_name:auto_backup.ir_cron_backup_scheduler_0
+#: model:ir.cron,name:auto_backup.ir_cron_backup_scheduler_0
+msgid "Backup Scheduler"
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_tree
-msgid "Backups"
+#: model:mail.message.subtype,name:auto_backup.mail_message_subtype_success
+msgid "Backup Successful"
 msgstr ""
 
 #. module: auto_backup
@@ -77,19 +81,19 @@ msgid "Choose the storage method for this backup."
 msgstr ""
 
 #. module: auto_backup
-#: code:addons/auto_backup/models/db_backup.py:251
+#: code:addons/auto_backup/models/db_backup.py:249
 #, python-format
 msgid "Cleanup of old database backups failed."
 msgstr ""
 
 #. module: auto_backup
-#: code:addons/auto_backup/models/db_backup.py:131
+#: code:addons/auto_backup/models/db_backup.py:128
 #, python-format
 msgid "Connection Test Failed!"
 msgstr ""
 
 #. module: auto_backup
-#: code:addons/auto_backup/models/db_backup.py:128
+#: code:addons/auto_backup/models/db_backup.py:123
 #, python-format
 msgid "Connection Test Succeeded!"
 msgstr ""
@@ -105,14 +109,19 @@ msgid "Created on"
 msgstr "Kreiran"
 
 #. module: auto_backup
-#: code:addons/auto_backup/models/db_backup.py:206
+#: model:ir.model,name:auto_backup.model_db_backup
+msgid "Database Backup"
+msgstr ""
+
+#. module: auto_backup
+#: code:addons/auto_backup/models/db_backup.py:203
 #: model:mail.message.subtype,description:auto_backup.mail_message_subtype_failure
 #, python-format
 msgid "Database backup failed."
 msgstr ""
 
 #. module: auto_backup
-#: code:addons/auto_backup/models/db_backup.py:214
+#: code:addons/auto_backup/models/db_backup.py:211
 #: model:mail.message.subtype,description:auto_backup.mail_message_subtype_success
 #, python-format
 msgid "Database backup succeeded."
@@ -120,7 +129,7 @@ msgstr ""
 
 #. module: auto_backup
 #: model:ir.model.fields,field_description:auto_backup.field_db_backup_days_to_keep
-msgid "Days to keep"
+msgid "Days To Keep"
 msgstr ""
 
 #. module: auto_backup
@@ -129,12 +138,17 @@ msgid "Display Name"
 msgstr "Ime za prikaz"
 
 #. module: auto_backup
-#: code:addons/auto_backup/models/db_backup.py:119
+#: code:addons/auto_backup/models/db_backup.py:114
 #, python-format
 msgid ""
 "Do not save backups on your filestore, or you will backup your backups too!"
 msgstr ""
 
+#. module: auto_backup
+#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+msgid "Execute backup"
+msgstr ""
+
 #. module: auto_backup
 #: model:ir.actions.server,name:auto_backup.action_server_backup
 msgid "Execute backup(s)"
@@ -232,11 +246,6 @@ msgstr ""
 msgid "SFTP Settings"
 msgstr ""
 
-#. module: auto_backup
-#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_search
-msgid "Search options"
-msgstr ""
-
 #. module: auto_backup
 #: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
 msgid "Search the action named 'Backup scheduler'."
@@ -245,8 +254,7 @@ msgstr ""
 #. module: auto_backup
 #: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
 msgid ""
-"Set the scheduler to active and fill in how often you want backups "
-"generated."
+"Set the scheduler to active and fill in how often you want backups generated."
 msgstr ""
 
 #. module: auto_backup
@@ -280,8 +288,8 @@ msgstr ""
 #. module: auto_backup
 #: model:ir.model.fields,help:auto_backup.field_db_backup_sftp_user
 msgid ""
-"The username where the SFTP connection should be made with. This is the user"
-" on the external server."
+"The username where the SFTP connection should be made with. This is the user "
+"on the external server."
 msgstr ""
 
 #. module: auto_backup
@@ -301,11 +309,6 @@ msgstr ""
 msgid "Warning:"
 msgstr ""
 
-#. module: auto_backup
-#: model:ir.model,name:auto_backup.model_db_backup
-msgid "db.backup"
-msgstr ""
-
 #. module: auto_backup
 #: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
 msgid "john"
diff --git a/auto_backup/i18n/sv.po b/auto_backup/i18n/sv.po
index f163cbed449..fd30fb917bc 100644
--- a/auto_backup/i18n/sv.po
+++ b/auto_backup/i18n/sv.po
@@ -1,7 +1,7 @@
 # Translation of Odoo Server.
 # This file contains the translation of the following modules:
 # * auto_backup
-# 
+#
 # Translators:
 # OCA Transbot <transbot@odoo-community.org>, 2016
 msgid ""
@@ -12,10 +12,10 @@ msgstr ""
 "PO-Revision-Date: 2017-02-18 02:29+0000\n"
 "Last-Translator: OCA Transbot <transbot@odoo-community.org>, 2016\n"
 "Language-Team: Swedish (https://www.transifex.com/oca/teams/23907/sv/)\n"
+"Language: sv\n"
 "MIME-Version: 1.0\n"
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: \n"
-"Language: sv\n"
 "Plural-Forms: nplurals=2; plural=(n != 1);\n"
 
 #. module: auto_backup
@@ -45,13 +45,15 @@ msgid "Backup Failed"
 msgstr ""
 
 #. module: auto_backup
-#: model:mail.message.subtype,name:auto_backup.mail_message_subtype_success
-msgid "Backup Successful"
+#: model:ir.actions.server,name:auto_backup.ir_cron_backup_scheduler_0_ir_actions_server
+#: model:ir.cron,cron_name:auto_backup.ir_cron_backup_scheduler_0
+#: model:ir.cron,name:auto_backup.ir_cron_backup_scheduler_0
+msgid "Backup Scheduler"
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_tree
-msgid "Backups"
+#: model:mail.message.subtype,name:auto_backup.mail_message_subtype_success
+msgid "Backup Successful"
 msgstr ""
 
 #. module: auto_backup
@@ -77,19 +79,19 @@ msgid "Choose the storage method for this backup."
 msgstr ""
 
 #. module: auto_backup
-#: code:addons/auto_backup/models/db_backup.py:251
+#: code:addons/auto_backup/models/db_backup.py:249
 #, python-format
 msgid "Cleanup of old database backups failed."
 msgstr ""
 
 #. module: auto_backup
-#: code:addons/auto_backup/models/db_backup.py:131
+#: code:addons/auto_backup/models/db_backup.py:128
 #, python-format
 msgid "Connection Test Failed!"
 msgstr ""
 
 #. module: auto_backup
-#: code:addons/auto_backup/models/db_backup.py:128
+#: code:addons/auto_backup/models/db_backup.py:123
 #, python-format
 msgid "Connection Test Succeeded!"
 msgstr ""
@@ -105,14 +107,19 @@ msgid "Created on"
 msgstr "Skapad den"
 
 #. module: auto_backup
-#: code:addons/auto_backup/models/db_backup.py:206
+#: model:ir.model,name:auto_backup.model_db_backup
+msgid "Database Backup"
+msgstr ""
+
+#. module: auto_backup
+#: code:addons/auto_backup/models/db_backup.py:203
 #: model:mail.message.subtype,description:auto_backup.mail_message_subtype_failure
 #, python-format
 msgid "Database backup failed."
 msgstr ""
 
 #. module: auto_backup
-#: code:addons/auto_backup/models/db_backup.py:214
+#: code:addons/auto_backup/models/db_backup.py:211
 #: model:mail.message.subtype,description:auto_backup.mail_message_subtype_success
 #, python-format
 msgid "Database backup succeeded."
@@ -120,7 +127,7 @@ msgstr ""
 
 #. module: auto_backup
 #: model:ir.model.fields,field_description:auto_backup.field_db_backup_days_to_keep
-msgid "Days to keep"
+msgid "Days To Keep"
 msgstr ""
 
 #. module: auto_backup
@@ -129,12 +136,17 @@ msgid "Display Name"
 msgstr "Visa namn"
 
 #. module: auto_backup
-#: code:addons/auto_backup/models/db_backup.py:119
+#: code:addons/auto_backup/models/db_backup.py:114
 #, python-format
 msgid ""
 "Do not save backups on your filestore, or you will backup your backups too!"
 msgstr ""
 
+#. module: auto_backup
+#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+msgid "Execute backup"
+msgstr ""
+
 #. module: auto_backup
 #: model:ir.actions.server,name:auto_backup.action_server_backup
 msgid "Execute backup(s)"
@@ -232,11 +244,6 @@ msgstr ""
 msgid "SFTP Settings"
 msgstr ""
 
-#. module: auto_backup
-#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_search
-msgid "Search options"
-msgstr ""
-
 #. module: auto_backup
 #: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
 msgid "Search the action named 'Backup scheduler'."
@@ -245,8 +252,7 @@ msgstr ""
 #. module: auto_backup
 #: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
 msgid ""
-"Set the scheduler to active and fill in how often you want backups "
-"generated."
+"Set the scheduler to active and fill in how often you want backups generated."
 msgstr ""
 
 #. module: auto_backup
@@ -280,8 +286,8 @@ msgstr ""
 #. module: auto_backup
 #: model:ir.model.fields,help:auto_backup.field_db_backup_sftp_user
 msgid ""
-"The username where the SFTP connection should be made with. This is the user"
-" on the external server."
+"The username where the SFTP connection should be made with. This is the user "
+"on the external server."
 msgstr ""
 
 #. module: auto_backup
@@ -301,11 +307,6 @@ msgstr ""
 msgid "Warning:"
 msgstr ""
 
-#. module: auto_backup
-#: model:ir.model,name:auto_backup.model_db_backup
-msgid "db.backup"
-msgstr ""
-
 #. module: auto_backup
 #: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
 msgid "john"
diff --git a/auto_backup/i18n/th.po b/auto_backup/i18n/th.po
index 2cdfe382811..0c49f3bdd06 100644
--- a/auto_backup/i18n/th.po
+++ b/auto_backup/i18n/th.po
@@ -1,7 +1,7 @@
 # Translation of Odoo Server.
 # This file contains the translation of the following modules:
 # * auto_backup
-# 
+#
 # Translators:
 # OCA Transbot <transbot@odoo-community.org>, 2016
 msgid ""
@@ -12,10 +12,10 @@ msgstr ""
 "PO-Revision-Date: 2017-02-18 02:29+0000\n"
 "Last-Translator: OCA Transbot <transbot@odoo-community.org>, 2016\n"
 "Language-Team: Thai (https://www.transifex.com/oca/teams/23907/th/)\n"
+"Language: th\n"
 "MIME-Version: 1.0\n"
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: \n"
-"Language: th\n"
 "Plural-Forms: nplurals=1; plural=0;\n"
 
 #. module: auto_backup
@@ -45,13 +45,15 @@ msgid "Backup Failed"
 msgstr ""
 
 #. module: auto_backup
-#: model:mail.message.subtype,name:auto_backup.mail_message_subtype_success
-msgid "Backup Successful"
+#: model:ir.actions.server,name:auto_backup.ir_cron_backup_scheduler_0_ir_actions_server
+#: model:ir.cron,cron_name:auto_backup.ir_cron_backup_scheduler_0
+#: model:ir.cron,name:auto_backup.ir_cron_backup_scheduler_0
+msgid "Backup Scheduler"
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_tree
-msgid "Backups"
+#: model:mail.message.subtype,name:auto_backup.mail_message_subtype_success
+msgid "Backup Successful"
 msgstr ""
 
 #. module: auto_backup
@@ -77,19 +79,19 @@ msgid "Choose the storage method for this backup."
 msgstr ""
 
 #. module: auto_backup
-#: code:addons/auto_backup/models/db_backup.py:251
+#: code:addons/auto_backup/models/db_backup.py:249
 #, python-format
 msgid "Cleanup of old database backups failed."
 msgstr ""
 
 #. module: auto_backup
-#: code:addons/auto_backup/models/db_backup.py:131
+#: code:addons/auto_backup/models/db_backup.py:128
 #, python-format
 msgid "Connection Test Failed!"
 msgstr ""
 
 #. module: auto_backup
-#: code:addons/auto_backup/models/db_backup.py:128
+#: code:addons/auto_backup/models/db_backup.py:123
 #, python-format
 msgid "Connection Test Succeeded!"
 msgstr ""
@@ -105,14 +107,19 @@ msgid "Created on"
 msgstr "??????????????????????????????"
 
 #. module: auto_backup
-#: code:addons/auto_backup/models/db_backup.py:206
+#: model:ir.model,name:auto_backup.model_db_backup
+msgid "Database Backup"
+msgstr ""
+
+#. module: auto_backup
+#: code:addons/auto_backup/models/db_backup.py:203
 #: model:mail.message.subtype,description:auto_backup.mail_message_subtype_failure
 #, python-format
 msgid "Database backup failed."
 msgstr ""
 
 #. module: auto_backup
-#: code:addons/auto_backup/models/db_backup.py:214
+#: code:addons/auto_backup/models/db_backup.py:211
 #: model:mail.message.subtype,description:auto_backup.mail_message_subtype_success
 #, python-format
 msgid "Database backup succeeded."
@@ -120,7 +127,7 @@ msgstr ""
 
 #. module: auto_backup
 #: model:ir.model.fields,field_description:auto_backup.field_db_backup_days_to_keep
-msgid "Days to keep"
+msgid "Days To Keep"
 msgstr ""
 
 #. module: auto_backup
@@ -129,12 +136,17 @@ msgid "Display Name"
 msgstr "??????????????????????????????????????????"
 
 #. module: auto_backup
-#: code:addons/auto_backup/models/db_backup.py:119
+#: code:addons/auto_backup/models/db_backup.py:114
 #, python-format
 msgid ""
 "Do not save backups on your filestore, or you will backup your backups too!"
 msgstr ""
 
+#. module: auto_backup
+#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+msgid "Execute backup"
+msgstr ""
+
 #. module: auto_backup
 #: model:ir.actions.server,name:auto_backup.action_server_backup
 msgid "Execute backup(s)"
@@ -232,11 +244,6 @@ msgstr ""
 msgid "SFTP Settings"
 msgstr ""
 
-#. module: auto_backup
-#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_search
-msgid "Search options"
-msgstr ""
-
 #. module: auto_backup
 #: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
 msgid "Search the action named 'Backup scheduler'."
@@ -245,8 +252,7 @@ msgstr ""
 #. module: auto_backup
 #: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
 msgid ""
-"Set the scheduler to active and fill in how often you want backups "
-"generated."
+"Set the scheduler to active and fill in how often you want backups generated."
 msgstr ""
 
 #. module: auto_backup
@@ -280,8 +286,8 @@ msgstr ""
 #. module: auto_backup
 #: model:ir.model.fields,help:auto_backup.field_db_backup_sftp_user
 msgid ""
-"The username where the SFTP connection should be made with. This is the user"
-" on the external server."
+"The username where the SFTP connection should be made with. This is the user "
+"on the external server."
 msgstr ""
 
 #. module: auto_backup
@@ -301,11 +307,6 @@ msgstr ""
 msgid "Warning:"
 msgstr ""
 
-#. module: auto_backup
-#: model:ir.model,name:auto_backup.model_db_backup
-msgid "db.backup"
-msgstr ""
-
 #. module: auto_backup
 #: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
 msgid "john"
diff --git a/auto_backup/i18n/tr.po b/auto_backup/i18n/tr.po
index 385e93b830a..75476af9cf2 100644
--- a/auto_backup/i18n/tr.po
+++ b/auto_backup/i18n/tr.po
@@ -1,7 +1,7 @@
 # Translation of Odoo Server.
 # This file contains the translation of the following modules:
 # * auto_backup
-# 
+#
 # Translators:
 # OCA Transbot <transbot@odoo-community.org>, 2016
 msgid ""
@@ -12,10 +12,10 @@ msgstr ""
 "PO-Revision-Date: 2017-02-18 02:29+0000\n"
 "Last-Translator: OCA Transbot <transbot@odoo-community.org>, 2016\n"
 "Language-Team: Turkish (https://www.transifex.com/oca/teams/23907/tr/)\n"
+"Language: tr\n"
 "MIME-Version: 1.0\n"
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: \n"
-"Language: tr\n"
 "Plural-Forms: nplurals=2; plural=(n > 1);\n"
 
 #. module: auto_backup
@@ -45,13 +45,15 @@ msgid "Backup Failed"
 msgstr ""
 
 #. module: auto_backup
-#: model:mail.message.subtype,name:auto_backup.mail_message_subtype_success
-msgid "Backup Successful"
+#: model:ir.actions.server,name:auto_backup.ir_cron_backup_scheduler_0_ir_actions_server
+#: model:ir.cron,cron_name:auto_backup.ir_cron_backup_scheduler_0
+#: model:ir.cron,name:auto_backup.ir_cron_backup_scheduler_0
+msgid "Backup Scheduler"
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_tree
-msgid "Backups"
+#: model:mail.message.subtype,name:auto_backup.mail_message_subtype_success
+msgid "Backup Successful"
 msgstr ""
 
 #. module: auto_backup
@@ -77,19 +79,19 @@ msgid "Choose the storage method for this backup."
 msgstr ""
 
 #. module: auto_backup
-#: code:addons/auto_backup/models/db_backup.py:251
+#: code:addons/auto_backup/models/db_backup.py:249
 #, python-format
 msgid "Cleanup of old database backups failed."
 msgstr ""
 
 #. module: auto_backup
-#: code:addons/auto_backup/models/db_backup.py:131
+#: code:addons/auto_backup/models/db_backup.py:128
 #, python-format
 msgid "Connection Test Failed!"
 msgstr ""
 
 #. module: auto_backup
-#: code:addons/auto_backup/models/db_backup.py:128
+#: code:addons/auto_backup/models/db_backup.py:123
 #, python-format
 msgid "Connection Test Succeeded!"
 msgstr ""
@@ -105,14 +107,19 @@ msgid "Created on"
 msgstr "Olu??turuldu"
 
 #. module: auto_backup
-#: code:addons/auto_backup/models/db_backup.py:206
+#: model:ir.model,name:auto_backup.model_db_backup
+msgid "Database Backup"
+msgstr ""
+
+#. module: auto_backup
+#: code:addons/auto_backup/models/db_backup.py:203
 #: model:mail.message.subtype,description:auto_backup.mail_message_subtype_failure
 #, python-format
 msgid "Database backup failed."
 msgstr ""
 
 #. module: auto_backup
-#: code:addons/auto_backup/models/db_backup.py:214
+#: code:addons/auto_backup/models/db_backup.py:211
 #: model:mail.message.subtype,description:auto_backup.mail_message_subtype_success
 #, python-format
 msgid "Database backup succeeded."
@@ -120,7 +127,7 @@ msgstr ""
 
 #. module: auto_backup
 #: model:ir.model.fields,field_description:auto_backup.field_db_backup_days_to_keep
-msgid "Days to keep"
+msgid "Days To Keep"
 msgstr ""
 
 #. module: auto_backup
@@ -129,12 +136,17 @@ msgid "Display Name"
 msgstr "G??r??nen ??sim"
 
 #. module: auto_backup
-#: code:addons/auto_backup/models/db_backup.py:119
+#: code:addons/auto_backup/models/db_backup.py:114
 #, python-format
 msgid ""
 "Do not save backups on your filestore, or you will backup your backups too!"
 msgstr ""
 
+#. module: auto_backup
+#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+msgid "Execute backup"
+msgstr ""
+
 #. module: auto_backup
 #: model:ir.actions.server,name:auto_backup.action_server_backup
 msgid "Execute backup(s)"
@@ -232,11 +244,6 @@ msgstr ""
 msgid "SFTP Settings"
 msgstr ""
 
-#. module: auto_backup
-#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_search
-msgid "Search options"
-msgstr ""
-
 #. module: auto_backup
 #: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
 msgid "Search the action named 'Backup scheduler'."
@@ -245,8 +252,7 @@ msgstr ""
 #. module: auto_backup
 #: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
 msgid ""
-"Set the scheduler to active and fill in how often you want backups "
-"generated."
+"Set the scheduler to active and fill in how often you want backups generated."
 msgstr ""
 
 #. module: auto_backup
@@ -280,8 +286,8 @@ msgstr ""
 #. module: auto_backup
 #: model:ir.model.fields,help:auto_backup.field_db_backup_sftp_user
 msgid ""
-"The username where the SFTP connection should be made with. This is the user"
-" on the external server."
+"The username where the SFTP connection should be made with. This is the user "
+"on the external server."
 msgstr ""
 
 #. module: auto_backup
@@ -301,11 +307,6 @@ msgstr ""
 msgid "Warning:"
 msgstr ""
 
-#. module: auto_backup
-#: model:ir.model,name:auto_backup.model_db_backup
-msgid "db.backup"
-msgstr ""
-
 #. module: auto_backup
 #: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
 msgid "john"
diff --git a/auto_backup/i18n/tr_TR.po b/auto_backup/i18n/tr_TR.po
index fcf0e3621e5..72db951f28a 100644
--- a/auto_backup/i18n/tr_TR.po
+++ b/auto_backup/i18n/tr_TR.po
@@ -1,7 +1,7 @@
 # Translation of Odoo Server.
 # This file contains the translation of the following modules:
 # * auto_backup
-# 
+#
 # Translators:
 # OCA Transbot <transbot@odoo-community.org>, 2017
 msgid ""
@@ -11,11 +11,12 @@ msgstr ""
 "POT-Creation-Date: 2017-02-22 00:54+0000\n"
 "PO-Revision-Date: 2017-02-22 00:54+0000\n"
 "Last-Translator: OCA Transbot <transbot@odoo-community.org>, 2017\n"
-"Language-Team: Turkish (Turkey) (https://www.transifex.com/oca/teams/23907/tr_TR/)\n"
+"Language-Team: Turkish (Turkey) (https://www.transifex.com/oca/teams/23907/"
+"tr_TR/)\n"
+"Language: tr_TR\n"
 "MIME-Version: 1.0\n"
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: \n"
-"Language: tr_TR\n"
 "Plural-Forms: nplurals=1; plural=0;\n"
 
 #. module: auto_backup
@@ -45,13 +46,15 @@ msgid "Backup Failed"
 msgstr ""
 
 #. module: auto_backup
-#: model:mail.message.subtype,name:auto_backup.mail_message_subtype_success
-msgid "Backup Successful"
+#: model:ir.actions.server,name:auto_backup.ir_cron_backup_scheduler_0_ir_actions_server
+#: model:ir.cron,cron_name:auto_backup.ir_cron_backup_scheduler_0
+#: model:ir.cron,name:auto_backup.ir_cron_backup_scheduler_0
+msgid "Backup Scheduler"
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_tree
-msgid "Backups"
+#: model:mail.message.subtype,name:auto_backup.mail_message_subtype_success
+msgid "Backup Successful"
 msgstr ""
 
 #. module: auto_backup
@@ -77,19 +80,19 @@ msgid "Choose the storage method for this backup."
 msgstr ""
 
 #. module: auto_backup
-#: code:addons/auto_backup/models/db_backup.py:251
+#: code:addons/auto_backup/models/db_backup.py:249
 #, python-format
 msgid "Cleanup of old database backups failed."
 msgstr ""
 
 #. module: auto_backup
-#: code:addons/auto_backup/models/db_backup.py:131
+#: code:addons/auto_backup/models/db_backup.py:128
 #, python-format
 msgid "Connection Test Failed!"
 msgstr ""
 
 #. module: auto_backup
-#: code:addons/auto_backup/models/db_backup.py:128
+#: code:addons/auto_backup/models/db_backup.py:123
 #, python-format
 msgid "Connection Test Succeeded!"
 msgstr ""
@@ -105,14 +108,19 @@ msgid "Created on"
 msgstr "Olu??turulma tarihi"
 
 #. module: auto_backup
-#: code:addons/auto_backup/models/db_backup.py:206
+#: model:ir.model,name:auto_backup.model_db_backup
+msgid "Database Backup"
+msgstr ""
+
+#. module: auto_backup
+#: code:addons/auto_backup/models/db_backup.py:203
 #: model:mail.message.subtype,description:auto_backup.mail_message_subtype_failure
 #, python-format
 msgid "Database backup failed."
 msgstr ""
 
 #. module: auto_backup
-#: code:addons/auto_backup/models/db_backup.py:214
+#: code:addons/auto_backup/models/db_backup.py:211
 #: model:mail.message.subtype,description:auto_backup.mail_message_subtype_success
 #, python-format
 msgid "Database backup succeeded."
@@ -120,7 +128,7 @@ msgstr ""
 
 #. module: auto_backup
 #: model:ir.model.fields,field_description:auto_backup.field_db_backup_days_to_keep
-msgid "Days to keep"
+msgid "Days To Keep"
 msgstr ""
 
 #. module: auto_backup
@@ -129,12 +137,17 @@ msgid "Display Name"
 msgstr "G??r??nen ad"
 
 #. module: auto_backup
-#: code:addons/auto_backup/models/db_backup.py:119
+#: code:addons/auto_backup/models/db_backup.py:114
 #, python-format
 msgid ""
 "Do not save backups on your filestore, or you will backup your backups too!"
 msgstr ""
 
+#. module: auto_backup
+#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+msgid "Execute backup"
+msgstr ""
+
 #. module: auto_backup
 #: model:ir.actions.server,name:auto_backup.action_server_backup
 msgid "Execute backup(s)"
@@ -232,11 +245,6 @@ msgstr ""
 msgid "SFTP Settings"
 msgstr ""
 
-#. module: auto_backup
-#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_search
-msgid "Search options"
-msgstr ""
-
 #. module: auto_backup
 #: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
 msgid "Search the action named 'Backup scheduler'."
@@ -245,8 +253,7 @@ msgstr ""
 #. module: auto_backup
 #: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
 msgid ""
-"Set the scheduler to active and fill in how often you want backups "
-"generated."
+"Set the scheduler to active and fill in how often you want backups generated."
 msgstr ""
 
 #. module: auto_backup
@@ -280,8 +287,8 @@ msgstr ""
 #. module: auto_backup
 #: model:ir.model.fields,help:auto_backup.field_db_backup_sftp_user
 msgid ""
-"The username where the SFTP connection should be made with. This is the user"
-" on the external server."
+"The username where the SFTP connection should be made with. This is the user "
+"on the external server."
 msgstr ""
 
 #. module: auto_backup
@@ -301,11 +308,6 @@ msgstr ""
 msgid "Warning:"
 msgstr ""
 
-#. module: auto_backup
-#: model:ir.model,name:auto_backup.model_db_backup
-msgid "db.backup"
-msgstr ""
-
 #. module: auto_backup
 #: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
 msgid "john"
diff --git a/auto_backup/i18n/uk.po b/auto_backup/i18n/uk.po
index f3f2cc0d8d7..77427bb812e 100644
--- a/auto_backup/i18n/uk.po
+++ b/auto_backup/i18n/uk.po
@@ -1,7 +1,7 @@
 # Translation of Odoo Server.
 # This file contains the translation of the following modules:
 # * auto_backup
-# 
+#
 # Translators:
 # OCA Transbot <transbot@odoo-community.org>, 2016
 msgid ""
@@ -12,11 +12,12 @@ msgstr ""
 "PO-Revision-Date: 2017-02-18 02:29+0000\n"
 "Last-Translator: OCA Transbot <transbot@odoo-community.org>, 2016\n"
 "Language-Team: Ukrainian (https://www.transifex.com/oca/teams/23907/uk/)\n"
+"Language: uk\n"
 "MIME-Version: 1.0\n"
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: \n"
-"Language: uk\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"
+"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: auto_backup
 #: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
@@ -45,13 +46,15 @@ msgid "Backup Failed"
 msgstr ""
 
 #. module: auto_backup
-#: model:mail.message.subtype,name:auto_backup.mail_message_subtype_success
-msgid "Backup Successful"
+#: model:ir.actions.server,name:auto_backup.ir_cron_backup_scheduler_0_ir_actions_server
+#: model:ir.cron,cron_name:auto_backup.ir_cron_backup_scheduler_0
+#: model:ir.cron,name:auto_backup.ir_cron_backup_scheduler_0
+msgid "Backup Scheduler"
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_tree
-msgid "Backups"
+#: model:mail.message.subtype,name:auto_backup.mail_message_subtype_success
+msgid "Backup Successful"
 msgstr ""
 
 #. module: auto_backup
@@ -77,19 +80,19 @@ msgid "Choose the storage method for this backup."
 msgstr ""
 
 #. module: auto_backup
-#: code:addons/auto_backup/models/db_backup.py:251
+#: code:addons/auto_backup/models/db_backup.py:249
 #, python-format
 msgid "Cleanup of old database backups failed."
 msgstr ""
 
 #. module: auto_backup
-#: code:addons/auto_backup/models/db_backup.py:131
+#: code:addons/auto_backup/models/db_backup.py:128
 #, python-format
 msgid "Connection Test Failed!"
 msgstr ""
 
 #. module: auto_backup
-#: code:addons/auto_backup/models/db_backup.py:128
+#: code:addons/auto_backup/models/db_backup.py:123
 #, python-format
 msgid "Connection Test Succeeded!"
 msgstr ""
@@ -105,14 +108,19 @@ msgid "Created on"
 msgstr "????????????????"
 
 #. module: auto_backup
-#: code:addons/auto_backup/models/db_backup.py:206
+#: model:ir.model,name:auto_backup.model_db_backup
+msgid "Database Backup"
+msgstr ""
+
+#. module: auto_backup
+#: code:addons/auto_backup/models/db_backup.py:203
 #: model:mail.message.subtype,description:auto_backup.mail_message_subtype_failure
 #, python-format
 msgid "Database backup failed."
 msgstr ""
 
 #. module: auto_backup
-#: code:addons/auto_backup/models/db_backup.py:214
+#: code:addons/auto_backup/models/db_backup.py:211
 #: model:mail.message.subtype,description:auto_backup.mail_message_subtype_success
 #, python-format
 msgid "Database backup succeeded."
@@ -120,7 +128,7 @@ msgstr ""
 
 #. module: auto_backup
 #: model:ir.model.fields,field_description:auto_backup.field_db_backup_days_to_keep
-msgid "Days to keep"
+msgid "Days To Keep"
 msgstr ""
 
 #. module: auto_backup
@@ -129,12 +137,17 @@ msgid "Display Name"
 msgstr "?????????? ?????? ????????????????????????"
 
 #. module: auto_backup
-#: code:addons/auto_backup/models/db_backup.py:119
+#: code:addons/auto_backup/models/db_backup.py:114
 #, python-format
 msgid ""
 "Do not save backups on your filestore, or you will backup your backups too!"
 msgstr ""
 
+#. module: auto_backup
+#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+msgid "Execute backup"
+msgstr ""
+
 #. module: auto_backup
 #: model:ir.actions.server,name:auto_backup.action_server_backup
 msgid "Execute backup(s)"
@@ -232,11 +245,6 @@ msgstr ""
 msgid "SFTP Settings"
 msgstr ""
 
-#. module: auto_backup
-#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_search
-msgid "Search options"
-msgstr ""
-
 #. module: auto_backup
 #: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
 msgid "Search the action named 'Backup scheduler'."
@@ -245,8 +253,7 @@ msgstr ""
 #. module: auto_backup
 #: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
 msgid ""
-"Set the scheduler to active and fill in how often you want backups "
-"generated."
+"Set the scheduler to active and fill in how often you want backups generated."
 msgstr ""
 
 #. module: auto_backup
@@ -280,8 +287,8 @@ msgstr ""
 #. module: auto_backup
 #: model:ir.model.fields,help:auto_backup.field_db_backup_sftp_user
 msgid ""
-"The username where the SFTP connection should be made with. This is the user"
-" on the external server."
+"The username where the SFTP connection should be made with. This is the user "
+"on the external server."
 msgstr ""
 
 #. module: auto_backup
@@ -301,11 +308,6 @@ msgstr ""
 msgid "Warning:"
 msgstr ""
 
-#. module: auto_backup
-#: model:ir.model,name:auto_backup.model_db_backup
-msgid "db.backup"
-msgstr ""
-
 #. module: auto_backup
 #: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
 msgid "john"
diff --git a/auto_backup/i18n/vi.po b/auto_backup/i18n/vi.po
index 2c55b2d3ee1..5de34d16242 100644
--- a/auto_backup/i18n/vi.po
+++ b/auto_backup/i18n/vi.po
@@ -1,7 +1,7 @@
 # Translation of Odoo Server.
 # This file contains the translation of the following modules:
 # * auto_backup
-# 
+#
 # Translators:
 # OCA Transbot <transbot@odoo-community.org>, 2016
 msgid ""
@@ -12,10 +12,10 @@ msgstr ""
 "PO-Revision-Date: 2017-02-18 02:29+0000\n"
 "Last-Translator: OCA Transbot <transbot@odoo-community.org>, 2016\n"
 "Language-Team: Vietnamese (https://www.transifex.com/oca/teams/23907/vi/)\n"
+"Language: vi\n"
 "MIME-Version: 1.0\n"
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: \n"
-"Language: vi\n"
 "Plural-Forms: nplurals=1; plural=0;\n"
 
 #. module: auto_backup
@@ -45,13 +45,15 @@ msgid "Backup Failed"
 msgstr ""
 
 #. module: auto_backup
-#: model:mail.message.subtype,name:auto_backup.mail_message_subtype_success
-msgid "Backup Successful"
+#: model:ir.actions.server,name:auto_backup.ir_cron_backup_scheduler_0_ir_actions_server
+#: model:ir.cron,cron_name:auto_backup.ir_cron_backup_scheduler_0
+#: model:ir.cron,name:auto_backup.ir_cron_backup_scheduler_0
+msgid "Backup Scheduler"
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_tree
-msgid "Backups"
+#: model:mail.message.subtype,name:auto_backup.mail_message_subtype_success
+msgid "Backup Successful"
 msgstr ""
 
 #. module: auto_backup
@@ -77,19 +79,19 @@ msgid "Choose the storage method for this backup."
 msgstr ""
 
 #. module: auto_backup
-#: code:addons/auto_backup/models/db_backup.py:251
+#: code:addons/auto_backup/models/db_backup.py:249
 #, python-format
 msgid "Cleanup of old database backups failed."
 msgstr ""
 
 #. module: auto_backup
-#: code:addons/auto_backup/models/db_backup.py:131
+#: code:addons/auto_backup/models/db_backup.py:128
 #, python-format
 msgid "Connection Test Failed!"
 msgstr ""
 
 #. module: auto_backup
-#: code:addons/auto_backup/models/db_backup.py:128
+#: code:addons/auto_backup/models/db_backup.py:123
 #, python-format
 msgid "Connection Test Succeeded!"
 msgstr ""
@@ -105,14 +107,19 @@ msgid "Created on"
 msgstr "T???o tr??n"
 
 #. module: auto_backup
-#: code:addons/auto_backup/models/db_backup.py:206
+#: model:ir.model,name:auto_backup.model_db_backup
+msgid "Database Backup"
+msgstr ""
+
+#. module: auto_backup
+#: code:addons/auto_backup/models/db_backup.py:203
 #: model:mail.message.subtype,description:auto_backup.mail_message_subtype_failure
 #, python-format
 msgid "Database backup failed."
 msgstr ""
 
 #. module: auto_backup
-#: code:addons/auto_backup/models/db_backup.py:214
+#: code:addons/auto_backup/models/db_backup.py:211
 #: model:mail.message.subtype,description:auto_backup.mail_message_subtype_success
 #, python-format
 msgid "Database backup succeeded."
@@ -120,7 +127,7 @@ msgstr ""
 
 #. module: auto_backup
 #: model:ir.model.fields,field_description:auto_backup.field_db_backup_days_to_keep
-msgid "Days to keep"
+msgid "Days To Keep"
 msgstr ""
 
 #. module: auto_backup
@@ -129,12 +136,17 @@ msgid "Display Name"
 msgstr "T??n hi???n th???"
 
 #. module: auto_backup
-#: code:addons/auto_backup/models/db_backup.py:119
+#: code:addons/auto_backup/models/db_backup.py:114
 #, python-format
 msgid ""
 "Do not save backups on your filestore, or you will backup your backups too!"
 msgstr ""
 
+#. module: auto_backup
+#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+msgid "Execute backup"
+msgstr ""
+
 #. module: auto_backup
 #: model:ir.actions.server,name:auto_backup.action_server_backup
 msgid "Execute backup(s)"
@@ -232,11 +244,6 @@ msgstr ""
 msgid "SFTP Settings"
 msgstr ""
 
-#. module: auto_backup
-#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_search
-msgid "Search options"
-msgstr ""
-
 #. module: auto_backup
 #: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
 msgid "Search the action named 'Backup scheduler'."
@@ -245,8 +252,7 @@ msgstr ""
 #. module: auto_backup
 #: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
 msgid ""
-"Set the scheduler to active and fill in how often you want backups "
-"generated."
+"Set the scheduler to active and fill in how often you want backups generated."
 msgstr ""
 
 #. module: auto_backup
@@ -280,8 +286,8 @@ msgstr ""
 #. module: auto_backup
 #: model:ir.model.fields,help:auto_backup.field_db_backup_sftp_user
 msgid ""
-"The username where the SFTP connection should be made with. This is the user"
-" on the external server."
+"The username where the SFTP connection should be made with. This is the user "
+"on the external server."
 msgstr ""
 
 #. module: auto_backup
@@ -301,11 +307,6 @@ msgstr ""
 msgid "Warning:"
 msgstr ""
 
-#. module: auto_backup
-#: model:ir.model,name:auto_backup.model_db_backup
-msgid "db.backup"
-msgstr ""
-
 #. module: auto_backup
 #: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
 msgid "john"
diff --git a/auto_backup/i18n/vi_VN.po b/auto_backup/i18n/vi_VN.po
index 8aed39cd9e3..a4a73bd3d85 100644
--- a/auto_backup/i18n/vi_VN.po
+++ b/auto_backup/i18n/vi_VN.po
@@ -1,7 +1,7 @@
 # Translation of Odoo Server.
 # This file contains the translation of the following modules:
 # * auto_backup
-# 
+#
 # Translators:
 # OCA Transbot <transbot@odoo-community.org>, 2016
 msgid ""
@@ -11,11 +11,12 @@ msgstr ""
 "POT-Creation-Date: 2017-02-18 02:29+0000\n"
 "PO-Revision-Date: 2017-02-18 02:29+0000\n"
 "Last-Translator: OCA Transbot <transbot@odoo-community.org>, 2016\n"
-"Language-Team: Vietnamese (Viet Nam) (https://www.transifex.com/oca/teams/23907/vi_VN/)\n"
+"Language-Team: Vietnamese (Viet Nam) (https://www.transifex.com/oca/"
+"teams/23907/vi_VN/)\n"
+"Language: vi_VN\n"
 "MIME-Version: 1.0\n"
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: \n"
-"Language: vi_VN\n"
 "Plural-Forms: nplurals=1; plural=0;\n"
 
 #. module: auto_backup
@@ -45,13 +46,15 @@ msgid "Backup Failed"
 msgstr ""
 
 #. module: auto_backup
-#: model:mail.message.subtype,name:auto_backup.mail_message_subtype_success
-msgid "Backup Successful"
+#: model:ir.actions.server,name:auto_backup.ir_cron_backup_scheduler_0_ir_actions_server
+#: model:ir.cron,cron_name:auto_backup.ir_cron_backup_scheduler_0
+#: model:ir.cron,name:auto_backup.ir_cron_backup_scheduler_0
+msgid "Backup Scheduler"
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_tree
-msgid "Backups"
+#: model:mail.message.subtype,name:auto_backup.mail_message_subtype_success
+msgid "Backup Successful"
 msgstr ""
 
 #. module: auto_backup
@@ -77,19 +80,19 @@ msgid "Choose the storage method for this backup."
 msgstr ""
 
 #. module: auto_backup
-#: code:addons/auto_backup/models/db_backup.py:251
+#: code:addons/auto_backup/models/db_backup.py:249
 #, python-format
 msgid "Cleanup of old database backups failed."
 msgstr ""
 
 #. module: auto_backup
-#: code:addons/auto_backup/models/db_backup.py:131
+#: code:addons/auto_backup/models/db_backup.py:128
 #, python-format
 msgid "Connection Test Failed!"
 msgstr ""
 
 #. module: auto_backup
-#: code:addons/auto_backup/models/db_backup.py:128
+#: code:addons/auto_backup/models/db_backup.py:123
 #, python-format
 msgid "Connection Test Succeeded!"
 msgstr ""
@@ -105,14 +108,19 @@ msgid "Created on"
 msgstr "T???o v??o"
 
 #. module: auto_backup
-#: code:addons/auto_backup/models/db_backup.py:206
+#: model:ir.model,name:auto_backup.model_db_backup
+msgid "Database Backup"
+msgstr ""
+
+#. module: auto_backup
+#: code:addons/auto_backup/models/db_backup.py:203
 #: model:mail.message.subtype,description:auto_backup.mail_message_subtype_failure
 #, python-format
 msgid "Database backup failed."
 msgstr ""
 
 #. module: auto_backup
-#: code:addons/auto_backup/models/db_backup.py:214
+#: code:addons/auto_backup/models/db_backup.py:211
 #: model:mail.message.subtype,description:auto_backup.mail_message_subtype_success
 #, python-format
 msgid "Database backup succeeded."
@@ -120,7 +128,7 @@ msgstr ""
 
 #. module: auto_backup
 #: model:ir.model.fields,field_description:auto_backup.field_db_backup_days_to_keep
-msgid "Days to keep"
+msgid "Days To Keep"
 msgstr ""
 
 #. module: auto_backup
@@ -129,12 +137,17 @@ msgid "Display Name"
 msgstr ""
 
 #. module: auto_backup
-#: code:addons/auto_backup/models/db_backup.py:119
+#: code:addons/auto_backup/models/db_backup.py:114
 #, python-format
 msgid ""
 "Do not save backups on your filestore, or you will backup your backups too!"
 msgstr ""
 
+#. module: auto_backup
+#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+msgid "Execute backup"
+msgstr ""
+
 #. module: auto_backup
 #: model:ir.actions.server,name:auto_backup.action_server_backup
 msgid "Execute backup(s)"
@@ -232,11 +245,6 @@ msgstr ""
 msgid "SFTP Settings"
 msgstr ""
 
-#. module: auto_backup
-#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_search
-msgid "Search options"
-msgstr ""
-
 #. module: auto_backup
 #: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
 msgid "Search the action named 'Backup scheduler'."
@@ -245,8 +253,7 @@ msgstr ""
 #. module: auto_backup
 #: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
 msgid ""
-"Set the scheduler to active and fill in how often you want backups "
-"generated."
+"Set the scheduler to active and fill in how often you want backups generated."
 msgstr ""
 
 #. module: auto_backup
@@ -280,8 +287,8 @@ msgstr ""
 #. module: auto_backup
 #: model:ir.model.fields,help:auto_backup.field_db_backup_sftp_user
 msgid ""
-"The username where the SFTP connection should be made with. This is the user"
-" on the external server."
+"The username where the SFTP connection should be made with. This is the user "
+"on the external server."
 msgstr ""
 
 #. module: auto_backup
@@ -301,11 +308,6 @@ msgstr ""
 msgid "Warning:"
 msgstr ""
 
-#. module: auto_backup
-#: model:ir.model,name:auto_backup.model_db_backup
-msgid "db.backup"
-msgstr ""
-
 #. module: auto_backup
 #: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
 msgid "john"
diff --git a/auto_backup/i18n/zh_CN.po b/auto_backup/i18n/zh_CN.po
index a0e460fd9ab..d0977e09d74 100644
--- a/auto_backup/i18n/zh_CN.po
+++ b/auto_backup/i18n/zh_CN.po
@@ -1,7 +1,7 @@
 # Translation of Odoo Server.
 # This file contains the translation of the following modules:
 # * auto_backup
-# 
+#
 # Translators:
 # OCA Transbot <transbot@odoo-community.org>, 2018
 msgid ""
@@ -11,11 +11,12 @@ msgstr ""
 "POT-Creation-Date: 2018-03-03 10:08+0000\n"
 "PO-Revision-Date: 2018-03-03 10:08+0000\n"
 "Last-Translator: OCA Transbot <transbot@odoo-community.org>, 2018\n"
-"Language-Team: Chinese (China) (https://www.transifex.com/oca/teams/23907/zh_CN/)\n"
+"Language-Team: Chinese (China) (https://www.transifex.com/oca/teams/23907/"
+"zh_CN/)\n"
+"Language: zh_CN\n"
 "MIME-Version: 1.0\n"
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: \n"
-"Language: zh_CN\n"
 "Plural-Forms: nplurals=1; plural=0;\n"
 
 #. module: auto_backup
@@ -252,9 +253,10 @@ msgstr "?????????????????????????????????Backup scheduler??????"
 #. module: auto_backup
 #: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
 msgid ""
-"Set the scheduler to active and fill in how often you want backups "
-"generated."
-msgstr "?????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????"
+"Set the scheduler to active and fill in how often you want backups generated."
+msgstr ""
+"??????????????????????????????????????????????????????????????????????????????????????????????????????????????????"
+"???????????????????????????"
 
 #. module: auto_backup
 #: model:ir.model.fields,help:auto_backup.field_db_backup_name
@@ -287,8 +289,8 @@ msgstr "?????? SSH/SFTP ?????????FTP ????????????????????????"
 #. module: auto_backup
 #: model:ir.model.fields,help:auto_backup.field_db_backup_sftp_user
 msgid ""
-"The username where the SFTP connection should be made with. This is the user"
-" on the external server."
+"The username where the SFTP connection should be made with. This is the user "
+"on the external server."
 msgstr "SFTP ????????????????????????????????????SFTP????????????????????????"
 
 #. module: auto_backup
@@ -296,7 +298,9 @@ msgstr "SFTP ????????????????????????????????????SFTP????????????????????????"
 msgid ""
 "Use SFTP with caution! This writes files to external servers under the path "
 "you specify."
-msgstr "??????????????? SFTP???????????????????????????????????????????????????????????????SFTP???????????????????????????????????????????????????"
+msgstr ""
+"??????????????? SFTP???????????????????????????????????????????????????????????????SFTP????????????????????????"
+"???????????????????????????"
 
 #. module: auto_backup
 #: model:ir.model.fields,field_description:auto_backup.field_db_backup_sftp_user
diff --git a/auto_backup/i18n/zh_TW.po b/auto_backup/i18n/zh_TW.po
index 072759a25f4..d5813212411 100644
--- a/auto_backup/i18n/zh_TW.po
+++ b/auto_backup/i18n/zh_TW.po
@@ -1,7 +1,7 @@
 # Translation of Odoo Server.
 # This file contains the translation of the following modules:
 # * auto_backup
-# 
+#
 # Translators:
 # OCA Transbot <transbot@odoo-community.org>, 2016
 msgid ""
@@ -11,11 +11,12 @@ msgstr ""
 "POT-Creation-Date: 2017-02-18 02:29+0000\n"
 "PO-Revision-Date: 2017-02-18 02:29+0000\n"
 "Last-Translator: OCA Transbot <transbot@odoo-community.org>, 2016\n"
-"Language-Team: Chinese (Taiwan) (https://www.transifex.com/oca/teams/23907/zh_TW/)\n"
+"Language-Team: Chinese (Taiwan) (https://www.transifex.com/oca/teams/23907/"
+"zh_TW/)\n"
+"Language: zh_TW\n"
 "MIME-Version: 1.0\n"
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: \n"
-"Language: zh_TW\n"
 "Plural-Forms: nplurals=1; plural=0;\n"
 
 #. module: auto_backup
@@ -45,13 +46,15 @@ msgid "Backup Failed"
 msgstr ""
 
 #. module: auto_backup
-#: model:mail.message.subtype,name:auto_backup.mail_message_subtype_success
-msgid "Backup Successful"
+#: model:ir.actions.server,name:auto_backup.ir_cron_backup_scheduler_0_ir_actions_server
+#: model:ir.cron,cron_name:auto_backup.ir_cron_backup_scheduler_0
+#: model:ir.cron,name:auto_backup.ir_cron_backup_scheduler_0
+msgid "Backup Scheduler"
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_tree
-msgid "Backups"
+#: model:mail.message.subtype,name:auto_backup.mail_message_subtype_success
+msgid "Backup Successful"
 msgstr ""
 
 #. module: auto_backup
@@ -77,19 +80,19 @@ msgid "Choose the storage method for this backup."
 msgstr ""
 
 #. module: auto_backup
-#: code:addons/auto_backup/models/db_backup.py:251
+#: code:addons/auto_backup/models/db_backup.py:249
 #, python-format
 msgid "Cleanup of old database backups failed."
 msgstr ""
 
 #. module: auto_backup
-#: code:addons/auto_backup/models/db_backup.py:131
+#: code:addons/auto_backup/models/db_backup.py:128
 #, python-format
 msgid "Connection Test Failed!"
 msgstr ""
 
 #. module: auto_backup
-#: code:addons/auto_backup/models/db_backup.py:128
+#: code:addons/auto_backup/models/db_backup.py:123
 #, python-format
 msgid "Connection Test Succeeded!"
 msgstr ""
@@ -105,14 +108,19 @@ msgid "Created on"
 msgstr "?????????"
 
 #. module: auto_backup
-#: code:addons/auto_backup/models/db_backup.py:206
+#: model:ir.model,name:auto_backup.model_db_backup
+msgid "Database Backup"
+msgstr ""
+
+#. module: auto_backup
+#: code:addons/auto_backup/models/db_backup.py:203
 #: model:mail.message.subtype,description:auto_backup.mail_message_subtype_failure
 #, python-format
 msgid "Database backup failed."
 msgstr ""
 
 #. module: auto_backup
-#: code:addons/auto_backup/models/db_backup.py:214
+#: code:addons/auto_backup/models/db_backup.py:211
 #: model:mail.message.subtype,description:auto_backup.mail_message_subtype_success
 #, python-format
 msgid "Database backup succeeded."
@@ -120,7 +128,7 @@ msgstr ""
 
 #. module: auto_backup
 #: model:ir.model.fields,field_description:auto_backup.field_db_backup_days_to_keep
-msgid "Days to keep"
+msgid "Days To Keep"
 msgstr ""
 
 #. module: auto_backup
@@ -129,12 +137,17 @@ msgid "Display Name"
 msgstr "????????????"
 
 #. module: auto_backup
-#: code:addons/auto_backup/models/db_backup.py:119
+#: code:addons/auto_backup/models/db_backup.py:114
 #, python-format
 msgid ""
 "Do not save backups on your filestore, or you will backup your backups too!"
 msgstr ""
 
+#. module: auto_backup
+#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+msgid "Execute backup"
+msgstr ""
+
 #. module: auto_backup
 #: model:ir.actions.server,name:auto_backup.action_server_backup
 msgid "Execute backup(s)"
@@ -232,11 +245,6 @@ msgstr ""
 msgid "SFTP Settings"
 msgstr ""
 
-#. module: auto_backup
-#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_search
-msgid "Search options"
-msgstr ""
-
 #. module: auto_backup
 #: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
 msgid "Search the action named 'Backup scheduler'."
@@ -245,8 +253,7 @@ msgstr ""
 #. module: auto_backup
 #: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
 msgid ""
-"Set the scheduler to active and fill in how often you want backups "
-"generated."
+"Set the scheduler to active and fill in how often you want backups generated."
 msgstr ""
 
 #. module: auto_backup
@@ -280,8 +287,8 @@ msgstr ""
 #. module: auto_backup
 #: model:ir.model.fields,help:auto_backup.field_db_backup_sftp_user
 msgid ""
-"The username where the SFTP connection should be made with. This is the user"
-" on the external server."
+"The username where the SFTP connection should be made with. This is the user "
+"on the external server."
 msgstr ""
 
 #. module: auto_backup
@@ -301,11 +308,6 @@ msgstr ""
 msgid "Warning:"
 msgstr ""
 
-#. module: auto_backup
-#: model:ir.model,name:auto_backup.model_db_backup
-msgid "db.backup"
-msgstr ""
-
 #. module: auto_backup
 #: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
 msgid "john"

From fb3af72223991d6e47e93a5f459c6b56642c557e Mon Sep 17 00:00:00 2001
From: Jos De Graeve <jos.degraeve@accomodata.be>
Date: Mon, 18 Jun 2018 06:32:08 +0000
Subject: [PATCH 15/52] Translated using Weblate (Dutch)

Currently translated at 58.2% (32 of 55 strings)

Translation: server-tools-11.0/server-tools-11.0-auto_backup
Translate-URL: https://translation.odoo-community.org/projects/server-tools-11-0/server-tools-11-0-auto_backup/nl/
---
 auto_backup/i18n/nl.po | 50 ++++++++++++++++++++----------------------
 1 file changed, 24 insertions(+), 26 deletions(-)

diff --git a/auto_backup/i18n/nl.po b/auto_backup/i18n/nl.po
index 661db9dc3b6..4cf66ca15f0 100644
--- a/auto_backup/i18n/nl.po
+++ b/auto_backup/i18n/nl.po
@@ -7,14 +7,15 @@ msgstr ""
 "Project-Id-Version: Odoo Server 8.0\n"
 "Report-Msgid-Bugs-To: \n"
 "POT-Creation-Date: 2015-03-26 14:17+0000\n"
-"PO-Revision-Date: 2015-03-26 14:17+0000\n"
-"Last-Translator: <>\n"
+"PO-Revision-Date: 2018-06-19 09:00+0000\n"
+"Last-Translator: Jos De Graeve <jos.degraeve@accomodata.be>\n"
 "Language-Team: \n"
-"Language: \n"
+"Language: nl\n"
 "MIME-Version: 1.0\n"
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: \n"
-"Plural-Forms: \n"
+"Plural-Forms: nplurals=2; plural=n != 1;\n"
+"X-Generator: Weblate 3.0.1\n"
 
 #. module: auto_backup
 #: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
@@ -29,75 +30,73 @@ msgstr "Absoluut pad om backups te bewaren"
 #. module: auto_backup
 #: model:ir.actions.act_window,name:auto_backup.action_backup_conf_form
 #: model:ir.ui.menu,name:auto_backup.backup_conf_menu
-#, fuzzy
 msgid "Automated Backups"
-msgstr "Auto. backups verwijderen"
+msgstr "Automatische backups"
 
 #. module: auto_backup
 #: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
 msgid "Automatic backups of the database can be scheduled as follows:"
-msgstr ""
-"Automatische backups van de database kunnen als volgend gepland worden:"
+msgstr "Automatische backups van de database kunnen ingepland worden als volgt:"
 
 #. module: auto_backup
 #: model:mail.message.subtype,name:auto_backup.mail_message_subtype_failure
-#, fuzzy
 msgid "Backup Failed"
-msgstr "Backup folder"
+msgstr "Backup mislukt"
 
 #. module: auto_backup
 #: model:ir.actions.server,name:auto_backup.ir_cron_backup_scheduler_0_ir_actions_server
 #: model:ir.cron,cron_name:auto_backup.ir_cron_backup_scheduler_0
 #: model:ir.cron,name:auto_backup.ir_cron_backup_scheduler_0
 msgid "Backup Scheduler"
-msgstr ""
+msgstr "Backup planner"
 
 #. module: auto_backup
 #: model:mail.message.subtype,name:auto_backup.mail_message_subtype_success
 msgid "Backup Successful"
-msgstr ""
+msgstr "Backup geslaagd"
 
 #. module: auto_backup
 #: model:ir.model.fields,help:auto_backup.field_db_backup_days_to_keep
+#, fuzzy
 msgid ""
 "Backups older than this will be deleted automatically. Set 0 to disable "
 "autodeletion."
 msgstr ""
+"Backups ouder dan deze waarde zullen automatisch verwijderd worden.  Zet op "
+"0 om niets te verwijderen."
 
 #. module: auto_backup
 #: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
-#, fuzzy
 msgid "Basic backup configuration"
-msgstr "Lokale backup configuratie"
+msgstr "Basis backup configuratie"
 
 #. module: auto_backup
 #: sql_constraint:db.backup:0
-#, fuzzy
 msgid "Cannot duplicate a configuration."
-msgstr "Lokale backup configuratie"
+msgstr "Kan een configuratie niet dupliceren."
 
 #. module: auto_backup
 #: model:ir.model.fields,help:auto_backup.field_db_backup_method
 msgid "Choose the storage method for this backup."
-msgstr ""
+msgstr "Kies een opslag methode voor deze backup."
 
 #. module: auto_backup
 #: code:addons/auto_backup/models/db_backup.py:249
 #, python-format
 msgid "Cleanup of old database backups failed."
-msgstr ""
+msgstr "Opruimen oude database backups is mislukt."
 
 #. module: auto_backup
 #: code:addons/auto_backup/models/db_backup.py:128
 #, python-format
 msgid "Connection Test Failed!"
-msgstr ""
+msgstr "Connectie test mislukt!"
 
 #. module: auto_backup
 #: code:addons/auto_backup/models/db_backup.py:123
 #, python-format
 msgid "Connection Test Succeeded!"
-msgstr ""
+msgstr "Connectie test geslaagd!"
 
 #. module: auto_backup
 #: model:ir.model.fields,field_description:auto_backup.field_db_backup_create_uid
@@ -111,33 +110,32 @@ msgstr "Gemaakt op"
 
 #. module: auto_backup
 #: model:ir.model,name:auto_backup.model_db_backup
-#, fuzzy
 msgid "Database Backup"
-msgstr "Database"
+msgstr "Database backup"
 
 #. module: auto_backup
 #: code:addons/auto_backup/models/db_backup.py:203
 #: model:mail.message.subtype,description:auto_backup.mail_message_subtype_failure
 #, python-format
 msgid "Database backup failed."
-msgstr ""
+msgstr "Database backup mislukt."
 
 #. module: auto_backup
 #: code:addons/auto_backup/models/db_backup.py:211
 #: model:mail.message.subtype,description:auto_backup.mail_message_subtype_success
 #, python-format
 msgid "Database backup succeeded."
-msgstr ""
+msgstr "Database backup geslaagd."
 
 #. module: auto_backup
 #: model:ir.model.fields,field_description:auto_backup.field_db_backup_days_to_keep
 msgid "Days To Keep"
-msgstr ""
+msgstr "Aantal dagen te houden"
 
 #. module: auto_backup
 #: model:ir.model.fields,field_description:auto_backup.field_db_backup_display_name
 msgid "Display Name"
-msgstr ""
+msgstr "Weergave naam"
 
 #. module: auto_backup
 #: code:addons/auto_backup/models/db_backup.py:114

From 5f0066890f7b5a159c918da764de1c64763af997 Mon Sep 17 00:00:00 2001
From: "Pedro M. Baeza" <pedro.baeza@gmail.com>
Date: Fri, 22 Jun 2018 18:26:55 +0200
Subject: [PATCH 16/52] [FIX] auto_backup: Fix NL translation

---
 auto_backup/i18n/nl.po | 133 -----------------------------------------
 1 file changed, 133 deletions(-)

diff --git a/auto_backup/i18n/nl.po b/auto_backup/i18n/nl.po
index 4cf66ca15f0..ec5d47ceee4 100644
--- a/auto_backup/i18n/nl.po
+++ b/auto_backup/i18n/nl.po
@@ -57,7 +57,6 @@ msgstr "Backup geslaagd"
 
 #. module: auto_backup
 #: model:ir.model.fields,help:auto_backup.field_db_backup_days_to_keep
-#, fuzzy
 msgid ""
 "Backups older than this will be deleted automatically. Set 0 to disable "
 "autodeletion."
@@ -181,7 +180,6 @@ msgstr "ID"
 
 #. module: auto_backup
 #: model:ir.model.fields,field_description:auto_backup.field_db_backup___last_update
-#, fuzzy
 msgid "Last Modified on"
 msgstr "Laatst bijgewerkt op"
 
@@ -224,13 +222,11 @@ msgstr ""
 
 #. module: auto_backup
 #: selection:db.backup,method:0
-#, fuzzy
 msgid "Remote SFTP server"
 msgstr "Gebruikersnaam SFTP Server"
 
 #. module: auto_backup
 #: model:ir.model.fields,field_description:auto_backup.field_db_backup_sftp_password
-#, fuzzy
 msgid "SFTP Password"
 msgstr "SFTP poort"
 
@@ -241,7 +237,6 @@ msgstr "SFTP poort"
 
 #. module: auto_backup
 #: model:ir.model.fields,field_description:auto_backup.field_db_backup_sftp_host
-#, fuzzy
 msgid "SFTP Server"
 msgstr "Gebruikersnaam SFTP Server"
 
@@ -274,14 +269,12 @@ msgstr "Test SFTP Connectie"
 
 #. module: auto_backup
 #: model:ir.model.fields,help:auto_backup.field_db_backup_sftp_host
-#, fuzzy
 msgid ""
 "The host name or IP address from your remote server. For example 192.168.0.1"
 msgstr "Het IP adres van uw externe server. Bijvoorbeeld: 192.168.0.1"
 
 #. module: auto_backup
 #: model:ir.model.fields,help:auto_backup.field_db_backup_sftp_password
-#, fuzzy
 msgid ""
 "The password for the SFTP connection. If you specify a private key file, "
 "then this is the password to decrypt it."
@@ -314,7 +307,6 @@ msgstr ""
 
 #. module: auto_backup
 #: model:ir.model.fields,field_description:auto_backup.field_db_backup_sftp_user
-#, fuzzy
 msgid "Username in the SFTP Server"
 msgstr "Gebruikersnaam SFTP Server"
 
@@ -333,128 +325,3 @@ msgstr ""
 msgid "sftp.example.com"
 msgstr ""
 
-#~ msgid "%s"
-#~ msgstr "%s"
-
-#~ msgid "Auto. E-mail on backup fail"
-#~ msgstr "Auto. e-mailen wanneer backup mislukt"
-
-#~ msgid "Backups"
-#~ msgstr "Backups"
-
-#~ msgid ""
-#~ "Choose after how many days the backup should be deleted from the FTP "
-#~ "server. For example:\n"
-#~ "If you fill in 5 the backups will be removed after 5 days from the FTP "
-#~ "server."
-#~ msgstr ""
-#~ "Kies na hoeveel dagen de backups verwijderd moeten worden van de FTP "
-#~ "server. Bijvoorbeeld:\n"
-#~ "Als u 5 invult zal de backup na 5 dagen verwijderd worden van de FTP "
-#~ "server."
-
-#~ msgid ""
-#~ "Choose after how many days the backup should be deleted. For example:\n"
-#~ "If you fill in 5 the backups will be removed after 5 days."
-#~ msgstr ""
-#~ "Kies na hoeveel dagen de backup verwijderd moet worden. Bijvoorbeeld:\n"
-#~ "Als u 5 invult zal de backup verwijderd worden na 5 dagen."
-
-#~ msgid "Configure Backup"
-#~ msgstr "Configureer backup"
-
-#~ msgid "Contact us!"
-#~ msgstr "Contacteer ons!"
-
-#~ msgid "Database you want to schedule backups for"
-#~ msgstr "Database waar u backups voor wilt plannen"
-
-#~ msgid "E-mail to notify"
-#~ msgstr "E-mail om te verwittigen"
-
-#~ msgid "Error ! No such database exists!"
-#~ msgstr "Error! Deze database bestaat niet!"
-
-#~ msgid ""
-#~ "Fill in the e-mail where you want to be notified that the backup failed "
-#~ "on the FTP."
-#~ msgstr ""
-#~ "Vul de e-mail in waarop u wilt verwittigd worden als de backup mislukt op "
-#~ "de FTP."
-
-#~ msgid "For example: /odoo/backups/"
-#~ msgstr "Bijvoorbeeld: /odoo/backups/"
-
-#~ msgid "Host"
-#~ msgstr "Host"
-
-#~ msgid "IP Address SFTP Server"
-#~ msgstr "IP adres SFTP server"
-
-#~ msgid ""
-#~ "If you check this option you can choose to automaticly get e-mailed when "
-#~ "the backup to the external server failed."
-#~ msgstr ""
-#~ "Als u deze optie aanvinkt kan u kiezen om automatisch een e-mail aan te "
-#~ "krijgen als de backup naar de externe server mislukt."
-
-#~ msgid ""
-#~ "If you check this option you can choose to automaticly remove the backup "
-#~ "after xx days"
-#~ msgstr ""
-#~ "Als u deze optie aanvinkt kan u kiezen om automatisch backups te "
-#~ "verwijderen na xx dagen"
-
-#~ msgid ""
-#~ "If you check this option you can specify the details needed to write to a "
-#~ "remote server with SFTP."
-#~ msgstr ""
-#~ "Als u deze optie aanvinkt kan u de details invullen die nodig zijn om te "
-#~ "connecteren met de externe SFTP server."
-
-#~ msgid "Need more help?"
-#~ msgstr "Meer hulp nodig?"
-
-#~ msgid "Password User SFTP Server"
-#~ msgstr "Wachtwoord gebruiker SFTP server"
-
-#~ msgid "Path external server"
-#~ msgstr "Pad externe server"
-
-#~ msgid "Port"
-#~ msgstr "Poort"
-
-#~ msgid "Remove SFTP after x days"
-#~ msgstr "SFTP verwijderen na x dagen"
-
-#~ msgid "Remove after x days"
-#~ msgstr "Verwijderen na x dagen"
-
-#~ msgid "SFTP"
-#~ msgstr "SFTP"
-
-#~ msgid "Search options"
-#~ msgstr "Zoekopties"
-
-#~ msgid "Test"
-#~ msgstr "Test"
-
-#~ msgid ""
-#~ "The location to the folder where the dumps should be written to. For "
-#~ "example /odoo/backups/.\n"
-#~ "Files will then be written to /odoo/backups/ on your remote server."
-#~ msgstr ""
-#~ "De locatie naar de folder waar de backup naar toe moet geschreven worden. "
-#~ "Bijvoorbeeld odoo/backups/\n"
-#~ "Bestanden worden dan naar /odoo/backups/ geschreven op de externe server"
-
-#~ msgid ""
-#~ "This configures the scheduler for automatic backup of the given database "
-#~ "running on given host at given port on regular intervals."
-#~ msgstr ""
-#~ "Dit configureert de planner voor automatische backups op de ingegeven "
-#~ "database waar de host, poort en database op zijn ingegeven voor reguliere "
-#~ "intervallen."
-
-#~ msgid "Write to external server with sftp"
-#~ msgstr "Schrijf naar externe server met SFTP"

From e0fc25b45777379618d08ef1006c09ea15e51ca8 Mon Sep 17 00:00:00 2001
From: Jordi Riera <547282+foutoucour@users.noreply.github.com>
Date: Fri, 10 Aug 2018 13:26:05 -0400
Subject: [PATCH 17/52] auto_backup: allow to change the format of backup
 (#1333)

---
 auto_backup/i18n/auto_backup.pot    | 32 +++++++++++++++++-----
 auto_backup/models/db_backup.py     | 41 +++++++++++++++++++++--------
 auto_backup/tests/test_db_backup.py | 26 +++++++++---------
 auto_backup/view/db_backup_view.xml |  1 +
 4 files changed, 70 insertions(+), 30 deletions(-)

diff --git a/auto_backup/i18n/auto_backup.pot b/auto_backup/i18n/auto_backup.pot
index 6d8eaf24ba0..8bf4c3f9584 100644
--- a/auto_backup/i18n/auto_backup.pot
+++ b/auto_backup/i18n/auto_backup.pot
@@ -39,6 +39,11 @@ msgstr ""
 msgid "Backup Failed"
 msgstr ""
 
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup_backup_format
+msgid "Backup Format"
+msgstr ""
+
 #. module: auto_backup
 #: model:ir.actions.server,name:auto_backup.ir_cron_backup_scheduler_0_ir_actions_server
 #: model:ir.cron,cron_name:auto_backup.ir_cron_backup_scheduler_0
@@ -66,25 +71,30 @@ msgstr ""
 msgid "Cannot duplicate a configuration."
 msgstr ""
 
+#. module: auto_backup
+#: model:ir.model.fields,help:auto_backup.field_db_backup_backup_format
+msgid "Choose the format for this backup."
+msgstr ""
+
 #. module: auto_backup
 #: model:ir.model.fields,help:auto_backup.field_db_backup_method
 msgid "Choose the storage method for this backup."
 msgstr ""
 
 #. module: auto_backup
-#: code:addons/auto_backup/models/db_backup.py:249
+#: code:addons/auto_backup/models/db_backup.py:265
 #, python-format
 msgid "Cleanup of old database backups failed."
 msgstr ""
 
 #. module: auto_backup
-#: code:addons/auto_backup/models/db_backup.py:128
+#: code:addons/auto_backup/models/db_backup.py:137
 #, python-format
 msgid "Connection Test Failed!"
 msgstr ""
 
 #. module: auto_backup
-#: code:addons/auto_backup/models/db_backup.py:123
+#: code:addons/auto_backup/models/db_backup.py:132
 #, python-format
 msgid "Connection Test Succeeded!"
 msgstr ""
@@ -105,14 +115,14 @@ msgid "Database Backup"
 msgstr ""
 
 #. module: auto_backup
-#: code:addons/auto_backup/models/db_backup.py:203
+#: code:addons/auto_backup/models/db_backup.py:219
 #: model:mail.message.subtype,description:auto_backup.mail_message_subtype_failure
 #, python-format
 msgid "Database backup failed."
 msgstr ""
 
 #. module: auto_backup
-#: code:addons/auto_backup/models/db_backup.py:211
+#: code:addons/auto_backup/models/db_backup.py:227
 #: model:mail.message.subtype,description:auto_backup.mail_message_subtype_success
 #, python-format
 msgid "Database backup succeeded."
@@ -129,7 +139,7 @@ msgid "Display Name"
 msgstr ""
 
 #. module: auto_backup
-#: code:addons/auto_backup/models/db_backup.py:114
+#: code:addons/auto_backup/models/db_backup.py:123
 #, python-format
 msgid "Do not save backups on your filestore, or you will backup your backups too!"
 msgstr ""
@@ -294,8 +304,18 @@ msgstr ""
 msgid "john"
 msgstr ""
 
+#. module: auto_backup
+#: selection:db.backup,backup_format:0
+msgid "pg_dump custom format (without filestore)"
+msgstr ""
+
 #. module: auto_backup
 #: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
 msgid "sftp.example.com"
 msgstr ""
 
+#. module: auto_backup
+#: selection:db.backup,backup_format:0
+msgid "zip (includes filestore)"
+msgstr ""
+
diff --git a/auto_backup/models/db_backup.py b/auto_backup/models/db_backup.py
index 1b10507cac7..3c1557424a4 100644
--- a/auto_backup/models/db_backup.py
+++ b/auto_backup/models/db_backup.py
@@ -83,6 +83,15 @@ class DbBackup(models.Model):
              "read permissions for that file.",
     )
 
+    backup_format = fields.Selection(
+        [
+            ("zip", "zip (includes filestore)"),
+            ("dump", "pg_dump custom format (without filestore)")
+        ],
+        default='zip',
+        help="Choose the format for this backup."
+    )
+
     @api.model
     def _default_folder(self):
         """Default to ``backups`` folder inside current server datadir."""
@@ -131,11 +140,11 @@ def action_sftp_test_connection(self):
     def action_backup(self):
         """Run selected backups."""
         backup = None
-        filename = self.filename(datetime.now())
         successful = self.browse()
 
         # Start with local storage
         for rec in self.filtered(lambda r: r.method == "local"):
+            filename = self.filename(datetime.now(), ext=rec.backup_format)
             with rec.backup_log():
                 # Directory must exist
                 try:
@@ -151,21 +160,28 @@ def action_backup(self):
                             shutil.copyfileobj(cached, destiny)
                     # Generate new backup
                     else:
-                        db.dump_db(self.env.cr.dbname, destiny)
+                        db.dump_db(
+                            self.env.cr.dbname,
+                            destiny,
+                            backup_format=rec.backup_format
+                        )
                         backup = backup or destiny.name
                 successful |= rec
 
         # Ensure a local backup exists if we are going to write it remotely
         sftp = self.filtered(lambda r: r.method == "sftp")
         if sftp:
-            if backup:
-                cached = open(backup)
-            else:
-                cached = db.dump_db(self.env.cr.dbname, None)
+            for rec in sftp:
+                filename = self.filename(datetime.now(), ext=rec.backup_format)
+                with rec.backup_log():
 
-            with cached:
-                for rec in sftp:
-                    with rec.backup_log():
+                    cached = db.dump_db(
+                        self.env.cr.dbname,
+                        None,
+                        backup_format=rec.backup_format
+                    )
+
+                    with cached:
                         with rec.sftp_connection() as remote:
                             # Directory must exist
                             try:
@@ -255,13 +271,16 @@ def cleanup_log(self):
                 self.name)
 
     @staticmethod
-    def filename(when):
+    def filename(when, ext='zip'):
         """Generate a file name for a backup.
 
         :param datetime.datetime when:
             Use this datetime instead of :meth:`datetime.datetime.now`.
+        :param str ext: Extension of the file. Default: dump.zip
         """
-        return "{:%Y_%m_%d_%H_%M_%S}.dump.zip".format(when)
+        return "{:%Y_%m_%d_%H_%M_%S}.{ext}".format(
+            when, ext='dump.zip' if ext == 'zip' else ext
+        )
 
     @api.multi
     def sftp_connection(self):
diff --git a/auto_backup/tests/test_db_backup.py b/auto_backup/tests/test_db_backup.py
index ef2972f3f36..fdeda3886e5 100644
--- a/auto_backup/tests/test_db_backup.py
+++ b/auto_backup/tests/test_db_backup.py
@@ -175,18 +175,6 @@ def test_action_backup_sftp_remote_open(self):
                     'wb'
                 )
 
-    def test_action_backup_sftp_remote_open(self):
-        """ It should open remote file w/ proper args """
-        rec_id = self.new_record()
-        with self.mock_assets() as assets:
-            with self.patch_filtered_sftp(rec_id):
-                conn = rec_id.sftp_connection().__enter__()
-                rec_id.action_backup()
-                conn.open.assert_called_once_with(
-                    assets['os'].path.join(),
-                    'wb'
-                )
-
     def test_action_backup_all_search(self):
         """ It should search all records """
         rec_id = self.new_record()
@@ -241,8 +229,20 @@ def test_sftp_connection_return(self, pysftp):
             pysftp.Connection(), res,
         )
 
-    def test_filename(self):
+    def test_filename_default(self):
         """ It should not error and should return a .dump.zip file str """
         now = datetime.now()
         res = self.Model.filename(now)
         self.assertTrue(res.endswith(".dump.zip"))
+
+    def test_filename_zip(self):
+        """ It should return a dump.zip filename"""
+        now = datetime.now()
+        res = self.Model.filename(now, ext='zip')
+        self.assertTrue(res.endswith(".dump.zip"))
+
+    def test_filename_dump(self):
+        """ It should return a dump filename"""
+        now = datetime.now()
+        res = self.Model.filename(now, ext='dump')
+        self.assertTrue(res.endswith(".dump"))
diff --git a/auto_backup/view/db_backup_view.xml b/auto_backup/view/db_backup_view.xml
index 42f826feb39..ebed80c91af 100644
--- a/auto_backup/view/db_backup_view.xml
+++ b/auto_backup/view/db_backup_view.xml
@@ -15,6 +15,7 @@
                     <field name="folder"/>
                     <field name="days_to_keep"/>
                     <field name="method"/>
+                    <field name="backup_format"/>
                 </group>
                 <div attrs="{'invisible': [('method', '!=', 'sftp')]}">
                     <div class="bg-warning text-warning">

From 5f44debbd3689911fe3362aca2b2630a656147c1 Mon Sep 17 00:00:00 2001
From: Aitor Bouzas <bouzasnaveira@gmail.com>
Date: Mon, 8 Oct 2018 15:04:31 +0200
Subject: [PATCH 18/52] [MIG] auto_backup: Migration to 12.0 Added test
 coverage Added requirements.txt for pysftp Added in the roadmap the exact
 version of pysftp for this to work (0.2.8) Added in the roadmap the problem
 with list_db=False Adapted calls to message_post

---
 auto_backup/README.rst                    |  84 +++-
 auto_backup/__manifest__.py               |  16 +-
 auto_backup/i18n/am.po                    | 215 +++++++--
 auto_backup/i18n/ar.po                    | 215 +++++++--
 auto_backup/i18n/auto_backup.pot          | 189 ++++++--
 auto_backup/i18n/bg.po                    | 215 +++++++--
 auto_backup/i18n/bs.po                    | 215 +++++++--
 auto_backup/i18n/ca.po                    | 215 +++++++--
 auto_backup/i18n/cs.po                    | 215 +++++++--
 auto_backup/i18n/cs_CZ.po                 | 215 +++++++--
 auto_backup/i18n/da.po                    | 215 +++++++--
 auto_backup/i18n/de.po                    | 219 +++++++--
 auto_backup/i18n/el_GR.po                 | 215 +++++++--
 auto_backup/i18n/en_GB.po                 | 215 +++++++--
 auto_backup/i18n/es.po                    | 219 +++++++--
 auto_backup/i18n/es_AR.po                 | 215 +++++++--
 auto_backup/i18n/es_CL.po                 | 215 +++++++--
 auto_backup/i18n/es_CO.po                 | 215 +++++++--
 auto_backup/i18n/es_CR.po                 | 215 +++++++--
 auto_backup/i18n/es_DO.po                 | 215 +++++++--
 auto_backup/i18n/es_EC.po                 | 215 +++++++--
 auto_backup/i18n/es_ES.po                 | 215 +++++++--
 auto_backup/i18n/es_MX.po                 | 215 +++++++--
 auto_backup/i18n/es_PE.po                 | 215 +++++++--
 auto_backup/i18n/es_PY.po                 | 215 +++++++--
 auto_backup/i18n/es_VE.po                 | 215 +++++++--
 auto_backup/i18n/et.po                    | 215 +++++++--
 auto_backup/i18n/eu.po                    | 215 +++++++--
 auto_backup/i18n/fa.po                    | 215 +++++++--
 auto_backup/i18n/fi.po                    | 215 +++++++--
 auto_backup/i18n/fr.po                    | 219 +++++++--
 auto_backup/i18n/fr_CA.po                 | 215 +++++++--
 auto_backup/i18n/fr_CH.po                 | 215 +++++++--
 auto_backup/i18n/gl.po                    | 215 +++++++--
 auto_backup/i18n/gl_ES.po                 | 215 +++++++--
 auto_backup/i18n/he.po                    | 215 +++++++--
 auto_backup/i18n/hr.po                    | 219 +++++++--
 auto_backup/i18n/hr_HR.po                 | 215 +++++++--
 auto_backup/i18n/hu.po                    | 215 +++++++--
 auto_backup/i18n/id.po                    | 215 +++++++--
 auto_backup/i18n/it.po                    | 219 +++++++--
 auto_backup/i18n/ja.po                    | 215 +++++++--
 auto_backup/i18n/ko.po                    | 215 +++++++--
 auto_backup/i18n/lt.po                    | 215 +++++++--
 auto_backup/i18n/lt_LT.po                 | 215 +++++++--
 auto_backup/i18n/lv.po                    | 215 +++++++--
 auto_backup/i18n/mk.po                    | 215 +++++++--
 auto_backup/i18n/mn.po                    | 215 +++++++--
 auto_backup/i18n/nb.po                    | 215 +++++++--
 auto_backup/i18n/nb_NO.po                 | 215 +++++++--
 auto_backup/i18n/nl.po                    | 221 ++++++++--
 auto_backup/i18n/nl_BE.po                 | 218 +++++++--
 auto_backup/i18n/nl_NL.po                 | 215 +++++++--
 auto_backup/i18n/pl.po                    | 215 +++++++--
 auto_backup/i18n/pt.po                    | 215 +++++++--
 auto_backup/i18n/pt_BR.po                 | 217 +++++++--
 auto_backup/i18n/pt_PT.po                 | 215 +++++++--
 auto_backup/i18n/ro.po                    | 215 +++++++--
 auto_backup/i18n/ru.po                    | 215 +++++++--
 auto_backup/i18n/sk.po                    | 215 +++++++--
 auto_backup/i18n/sl.po                    | 217 +++++++--
 auto_backup/i18n/sr.po                    | 215 +++++++--
 auto_backup/i18n/sr@latin.po              | 215 +++++++--
 auto_backup/i18n/sv.po                    | 215 +++++++--
 auto_backup/i18n/th.po                    | 215 +++++++--
 auto_backup/i18n/tr.po                    | 215 +++++++--
 auto_backup/i18n/tr_TR.po                 | 215 +++++++--
 auto_backup/i18n/uk.po                    | 215 +++++++--
 auto_backup/i18n/vi.po                    | 215 +++++++--
 auto_backup/i18n/vi_VN.po                 | 215 +++++++--
 auto_backup/i18n/zh_CN.po                 | 217 +++++++--
 auto_backup/i18n/zh_TW.po                 | 215 +++++++--
 auto_backup/models/db_backup.py           |  12 +-
 auto_backup/readme/CONFIGURE.rst          |   3 +
 auto_backup/readme/CONTRIBUTORS.rst       |   6 +
 auto_backup/readme/DESCRIPTION.rst        |   1 +
 auto_backup/readme/INSTALL.rst            |   4 +
 auto_backup/readme/ROADMAP.rst            |   6 +
 auto_backup/readme/USAGE.rst              |  46 ++
 auto_backup/static/description/index.html | 512 ++++++++++++++++++++++
 auto_backup/tests/test_db_backup.py       |   6 +-
 auto_backup/view/db_backup_view.xml       |   2 +-
 82 files changed, 12569 insertions(+), 3188 deletions(-)
 create mode 100644 auto_backup/readme/CONFIGURE.rst
 create mode 100644 auto_backup/readme/CONTRIBUTORS.rst
 create mode 100644 auto_backup/readme/DESCRIPTION.rst
 create mode 100644 auto_backup/readme/INSTALL.rst
 create mode 100644 auto_backup/readme/ROADMAP.rst
 create mode 100644 auto_backup/readme/USAGE.rst
 create mode 100644 auto_backup/static/description/index.html

diff --git a/auto_backup/README.rst b/auto_backup/README.rst
index ee196677565..153de5697c2 100644
--- a/auto_backup/README.rst
+++ b/auto_backup/README.rst
@@ -1,19 +1,44 @@
-.. image:: https://img.shields.io/badge/license-AGPL--3-blue.png
-   :target: https://www.gnu.org/licenses/agpl
-   :alt: License: AGPL-3
-
 ====================
 Database Auto-Backup
 ====================
 
+.. !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
+   !! This file is generated by oca-gen-addon-readme !!
+   !! changes will be overwritten.                   !!
+   !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
+
+.. |badge1| image:: https://img.shields.io/badge/maturity-Beta-yellow.png
+    :target: https://odoo-community.org/page/development-status
+    :alt: Beta
+.. |badge2| image:: https://img.shields.io/badge/licence-AGPL--3-blue.png
+    :target: http://www.gnu.org/licenses/agpl-3.0-standalone.html
+    :alt: License: AGPL-3
+.. |badge3| image:: https://img.shields.io/badge/github-OCA%2Fserver--tools-lightgray.png?logo=github
+    :target: https://github.com/OCA/server-tools/tree/12.0/auto_backup
+    :alt: OCA/server-tools
+.. |badge4| image:: https://img.shields.io/badge/weblate-Translate%20me-F47D42.png
+    :target: https://translation.odoo-community.org/projects/server-tools-12-0/server-tools-12-0-auto_backup
+    :alt: Translate me on Weblate
+.. |badge5| image:: https://img.shields.io/badge/runbot-Try%20me-875A7B.png
+    :target: https://runbot.odoo-community.org/runbot/149/12.0
+    :alt: Try me on Runbot
+
+|badge1| |badge2| |badge3| |badge4| |badge5| 
+
 A tool for all your back-ups, internal and external!
 
+**Table of contents**
+
+.. contents::
+   :local:
+
 Installation
 ============
 
 Before installing this module, you need to execute::
 
-    pip3 install pysftp
+    pip3 install pysftp==0.2.8
+
 
 Configuration
 =============
@@ -31,10 +56,10 @@ through an encrypted tunnel. You can even specify how long local backups
 and external backups should be kept, automatically!
 
 Connect with an FTP Server
---------------------------
+~~~~~~~~~~~~~~~~~~~~~~~~~~
 
 Keep your data safe, through an SSH tunnel!
-~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
+-------------------------------------------
 
 Want to go even further and write your backups to an external server?
 You can with this module! Specify the credentials to the server, specify
@@ -43,10 +68,10 @@ through an SSH (encrypted) tunnel, thanks to pysftp, so your data is
 safe!
 
 Test connection
----------------
+~~~~~~~~~~~~~~~
 
 Checks your credentials in one click
-~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
+------------------------------------
 
 Want to make sure if the connection details are correct and if Odoo can
 automatically write them to the remote server? Simply click on the ???Test
@@ -54,16 +79,16 @@ SFTP Connection??? button and you will get message telling you if
 everything is OK, or what is wrong!
 
 E-mail on backup failure
-------------------------
+~~~~~~~~~~~~~~~~~~~~~~~~
 
 Stay informed of problems, automatically!
-~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
+-----------------------------------------
 
 Do you want to know if the database backup succeeded or failed? Subscribe to
 the corresponding backup setting notification type.
 
 Run backups when you want
--------------------------
+~~~~~~~~~~~~~~~~~~~~~~~~~
 
 From the backups configuration list, press *More > Execute backup(s)* to
 manually execute the selected processes.
@@ -80,38 +105,53 @@ Known issues / Roadmap
   you need to run the backup from outside of the main Odoo instance. How to do
   this is outlined in `this blog post
   <https://blog.laslabs.com/2016/10/running-python-scripts-within-odoos-environment/>`_.
+* Backups won't work if list_db=False is configured in the instance.
 
 Bug Tracker
 ===========
 
-Bugs are tracked on `GitHub Issues
-<https://github.com/OCA/server-tools/issues>`_. In case of trouble, please
-check there if your issue has already been reported. If you spotted it first,
-help us smash it by providing detailed and welcomed feedback.
+Bugs are tracked on `GitHub Issues <https://github.com/OCA/server-tools/issues>`_.
+In case of trouble, please check there if your issue has already been reported.
+If you spotted it first, help us smashing it by providing a detailed and welcomed
+`feedback <https://github.com/OCA/server-tools/issues/new?body=module:%20auto_backup%0Aversion:%2012.0%0A%0A**Steps%20to%20reproduce**%0A-%20...%0A%0A**Current%20behavior**%0A%0A**Expected%20behavior**>`_.
+
+Do not contact contributors directly about support or help with technical issues.
 
 Credits
 =======
 
+Authors
+~~~~~~~
+
+* Yenthe Van Ginneken
+* Agile Business Group
+* Grupo ESOC Ingenieria de Servicios
+* LasLabs
+* AdaptiveCity
+
 Contributors
-------------
+~~~~~~~~~~~~
 
 * Yenthe Van Ginneken <yenthe.vanginneken@vanroey.be>
 * Alessio Gerace <alessio.gerace@agilebg.com>
 * Jairo Llopis <yajo.sk8@gmail.com>
 * Dave Lasley <dave@laslabs.com>
 * Andrea Stirpe <a.stirpe@onestein.nl>
+* Aitor Bouzas <aitor.bouzas@adaptivecity.com>
+
+Maintainers
+~~~~~~~~~~~
 
-Maintainer
-----------
+This module is maintained by the OCA.
 
 .. image:: https://odoo-community.org/logo.png
    :alt: Odoo Community Association
    :target: https://odoo-community.org
 
-This module is maintained by the OCA.
-
 OCA, or the Odoo Community Association, is a nonprofit organization whose
 mission is to support the collaborative development of Odoo features and
 promote its widespread use.
 
-To contribute to this module, please visit https://odoo-community.org.
+This module is part of the `OCA/server-tools <https://github.com/OCA/server-tools/tree/12.0/auto_backup>`_ project on GitHub.
+
+You are welcome to contribute. To learn how please visit https://odoo-community.org/page/Contribute.
diff --git a/auto_backup/__manifest__.py b/auto_backup/__manifest__.py
index 559421a7c59..b2a5b661d16 100644
--- a/auto_backup/__manifest__.py
+++ b/auto_backup/__manifest__.py
@@ -1,19 +1,19 @@
-# ?? 2004-2009 Tiny SPRL (<http://tiny.be>).
-# ?? 2015 Agile Business Group <http://www.agilebg.com>
-# ?? 2016 Grupo ESOC Ingenier??a de Servicios, S.L.U. - Jairo Llopis
+# Copyright 2004-2009 Tiny SPRL (<http://tiny.be>).
+# Copyright 2015 Agile Business Group <http://www.agilebg.com>
+# Copyright 2016 Grupo ESOC Ingenieria de Servicios, S.L.U. - Jairo Llopis
 # License AGPL-3.0 or later (https://www.gnu.org/licenses/agpl).
 
 {
     "name": "Database Auto-Backup",
     "summary": "Backups database",
-    "version": "11.0.1.0.0",
-    "author": (
+    "version": "12.0.1.0.0",
+    "author":
         "Yenthe Van Ginneken, "
         "Agile Business Group, "
-        "Grupo ESOC Ingenier??a de Servicios, "
+        "Grupo ESOC Ingenieria de Servicios, "
         "LasLabs, "
-        "Odoo Community Association (OCA)"
-    ),
+        "AdaptiveCity, "
+        "Odoo Community Association (OCA)",
     "license": "AGPL-3",
     "website": "https://github.com/OCA/server-tools/",
     "category": "Tools",
diff --git a/auto_backup/i18n/am.po b/auto_backup/i18n/am.po
index 9856b1efb25..d353b8c0e5c 100644
--- a/auto_backup/i18n/am.po
+++ b/auto_backup/i18n/am.po
@@ -19,15 +19,25 @@ msgstr ""
 "Plural-Forms: nplurals=2; plural=(n > 1);\n"
 
 #. module: auto_backup
-#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+#: model_terms:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
 msgid "/home/odoo/.ssh/id_rsa"
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.model.fields,help:auto_backup.field_db_backup_folder
+#: model:ir.model.fields,help:auto_backup.field_db_backup__folder
 msgid "Absolute path for storing the backups"
 msgstr ""
 
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__message_needaction
+msgid "Action Needed"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__message_attachment_count
+msgid "Attachment Count"
+msgstr ""
+
 #. module: auto_backup
 #: model:ir.actions.act_window,name:auto_backup.action_backup_conf_form
 #: model:ir.ui.menu,name:auto_backup.backup_conf_menu
@@ -35,7 +45,7 @@ msgid "Automated Backups"
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+#: model_terms:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
 msgid "Automatic backups of the database can be scheduled as follows:"
 msgstr ""
 
@@ -44,6 +54,11 @@ msgstr ""
 msgid "Backup Failed"
 msgstr ""
 
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__backup_format
+msgid "Backup Format"
+msgstr ""
+
 #. module: auto_backup
 #: model:ir.actions.server,name:auto_backup.ir_cron_backup_scheduler_0_ir_actions_server
 #: model:ir.cron,cron_name:auto_backup.ir_cron_backup_scheduler_0
@@ -57,14 +72,14 @@ msgid "Backup Successful"
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.model.fields,help:auto_backup.field_db_backup_days_to_keep
+#: model:ir.model.fields,help:auto_backup.field_db_backup__days_to_keep
 msgid ""
 "Backups older than this will be deleted automatically. Set 0 to disable "
 "autodeletion."
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+#: model_terms:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
 msgid "Basic backup configuration"
 msgstr ""
 
@@ -74,35 +89,40 @@ msgid "Cannot duplicate a configuration."
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.model.fields,help:auto_backup.field_db_backup_method
+#: model:ir.model.fields,help:auto_backup.field_db_backup__backup_format
+msgid "Choose the format for this backup."
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,help:auto_backup.field_db_backup__method
 msgid "Choose the storage method for this backup."
 msgstr ""
 
 #. module: auto_backup
-#: code:addons/auto_backup/models/db_backup.py:249
+#: code:addons/auto_backup/models/db_backup.py:265
 #, python-format
 msgid "Cleanup of old database backups failed."
 msgstr ""
 
 #. module: auto_backup
-#: code:addons/auto_backup/models/db_backup.py:128
+#: code:addons/auto_backup/models/db_backup.py:137
 #, python-format
 msgid "Connection Test Failed!"
 msgstr ""
 
 #. module: auto_backup
-#: code:addons/auto_backup/models/db_backup.py:123
+#: code:addons/auto_backup/models/db_backup.py:132
 #, python-format
 msgid "Connection Test Succeeded!"
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup_create_uid
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__create_uid
 msgid "Created by"
 msgstr "Creado por"
 
 #. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup_create_date
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__create_date
 msgid "Created on"
 msgstr "Creado en"
 
@@ -112,38 +132,38 @@ msgid "Database Backup"
 msgstr ""
 
 #. module: auto_backup
-#: code:addons/auto_backup/models/db_backup.py:203
+#: code:addons/auto_backup/models/db_backup.py:219
 #: model:mail.message.subtype,description:auto_backup.mail_message_subtype_failure
 #, python-format
 msgid "Database backup failed."
 msgstr ""
 
 #. module: auto_backup
-#: code:addons/auto_backup/models/db_backup.py:211
+#: code:addons/auto_backup/models/db_backup.py:227
 #: model:mail.message.subtype,description:auto_backup.mail_message_subtype_success
 #, python-format
 msgid "Database backup succeeded."
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup_days_to_keep
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__days_to_keep
 msgid "Days To Keep"
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup_display_name
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__display_name
 msgid "Display Name"
 msgstr ""
 
 #. module: auto_backup
-#: code:addons/auto_backup/models/db_backup.py:114
+#: code:addons/auto_backup/models/db_backup.py:123
 #, python-format
 msgid ""
 "Do not save backups on your filestore, or you will backup your backups too!"
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+#: model_terms:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
 msgid "Execute backup"
 msgstr ""
 
@@ -153,17 +173,32 @@ msgid "Execute backup(s)"
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup_folder
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__folder
 msgid "Folder"
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__message_follower_ids
+msgid "Followers"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__message_channel_ids
+msgid "Followers (Channels)"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__message_partner_ids
+msgid "Followers (Partners)"
+msgstr ""
+
+#. module: auto_backup
+#: model_terms:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
 msgid "Go to Settings / Technical / Automation / Scheduled Actions."
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+#: model_terms:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
 msgid "Help"
 msgstr ""
 
@@ -173,22 +208,42 @@ msgid "I cannot remove backups from the future. Ask Doc for that."
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup_id
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__id
 msgid "ID"
 msgstr "ID"
 
 #. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup___last_update
+#: model:ir.model.fields,help:auto_backup.field_db_backup__message_unread
+msgid "If checked new messages require your attention."
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,help:auto_backup.field_db_backup__message_needaction
+msgid "If checked, new messages require your attention."
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,help:auto_backup.field_db_backup__message_has_error
+msgid "If checked, some messages have a delivery error."
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__message_is_follower
+msgid "Is Follower"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup____last_update
 msgid "Last Modified on"
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup_write_uid
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__write_uid
 msgid "Last Updated by"
 msgstr "??ltima actualizaci??n por"
 
 #. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup_write_date
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__write_date
 msgid "Last Updated on"
 msgstr "??ltima actualizaci??n en"
 
@@ -198,24 +253,64 @@ msgid "Local disk"
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup_method
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__message_main_attachment_id
+msgid "Main Attachment"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__message_has_error
+msgid "Message Delivery error"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__message_ids
+msgid "Messages"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__method
 msgid "Method"
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup_name
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__name
 msgid "Name"
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.model.fields,help:auto_backup.field_db_backup_sftp_private_key
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__message_needaction_counter
+msgid "Number of Actions"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__message_has_error_counter
+msgid "Number of error"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,help:auto_backup.field_db_backup__message_needaction_counter
+msgid "Number of messages which requires an action"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,help:auto_backup.field_db_backup__message_has_error_counter
+msgid "Number of messages with delivery error"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,help:auto_backup.field_db_backup__message_unread_counter
+msgid "Number of unread messages"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,help:auto_backup.field_db_backup__sftp_private_key
 msgid ""
 "Path to the private key file. Only the Odoo user should have read "
 "permissions for that file."
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup_sftp_private_key
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__sftp_private_key
 msgid "Private key location"
 msgstr ""
 
@@ -225,94 +320,124 @@ msgid "Remote SFTP server"
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup_sftp_password
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__sftp_password
 msgid "SFTP Password"
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup_sftp_port
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__sftp_port
 msgid "SFTP Port"
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup_sftp_host
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__sftp_host
 msgid "SFTP Server"
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+#: model_terms:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
 msgid "SFTP Settings"
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+#: model_terms:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
 msgid "Search the action named 'Backup scheduler'."
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+#: model_terms:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
 msgid ""
 "Set the scheduler to active and fill in how often you want backups generated."
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.model.fields,help:auto_backup.field_db_backup_name
+#: model:ir.model.fields,help:auto_backup.field_db_backup__name
 msgid "Summary of this backup process"
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+#: model_terms:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
 msgid "Test SFTP Connection"
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.model.fields,help:auto_backup.field_db_backup_sftp_host
+#: model:ir.model.fields,help:auto_backup.field_db_backup__sftp_host
 msgid ""
 "The host name or IP address from your remote server. For example 192.168.0.1"
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.model.fields,help:auto_backup.field_db_backup_sftp_password
+#: model:ir.model.fields,help:auto_backup.field_db_backup__sftp_password
 msgid ""
 "The password for the SFTP connection. If you specify a private key file, "
 "then this is the password to decrypt it."
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.model.fields,help:auto_backup.field_db_backup_sftp_port
+#: model:ir.model.fields,help:auto_backup.field_db_backup__sftp_port
 msgid "The port on the FTP server that accepts SSH/SFTP calls."
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.model.fields,help:auto_backup.field_db_backup_sftp_user
+#: model:ir.model.fields,help:auto_backup.field_db_backup__sftp_user
 msgid ""
 "The username where the SFTP connection should be made with. This is the user "
 "on the external server."
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__message_unread
+msgid "Unread Messages"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__message_unread_counter
+msgid "Unread Messages Counter"
+msgstr ""
+
+#. module: auto_backup
+#: model_terms:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
 msgid ""
 "Use SFTP with caution! This writes files to external servers under the path "
 "you specify."
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup_sftp_user
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__sftp_user
 msgid "Username in the SFTP Server"
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+#: model_terms:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
 msgid "Warning:"
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__website_message_ids
+msgid "Website Messages"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,help:auto_backup.field_db_backup__website_message_ids
+msgid "Website communication history"
+msgstr ""
+
+#. module: auto_backup
+#: model_terms:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
 msgid "john"
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+#: selection:db.backup,backup_format:0
+msgid "pg_dump custom format (without filestore)"
+msgstr ""
+
+#. module: auto_backup
+#: model_terms:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
 msgid "sftp.example.com"
 msgstr ""
+
+#. module: auto_backup
+#: selection:db.backup,backup_format:0
+msgid "zip (includes filestore)"
+msgstr ""
diff --git a/auto_backup/i18n/ar.po b/auto_backup/i18n/ar.po
index 5eceea2bc25..716dd6bbeff 100644
--- a/auto_backup/i18n/ar.po
+++ b/auto_backup/i18n/ar.po
@@ -20,15 +20,25 @@ msgstr ""
 "&& n%100<=10 ? 3 : n%100>=11 && n%100<=99 ? 4 : 5;\n"
 
 #. module: auto_backup
-#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+#: model_terms:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
 msgid "/home/odoo/.ssh/id_rsa"
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.model.fields,help:auto_backup.field_db_backup_folder
+#: model:ir.model.fields,help:auto_backup.field_db_backup__folder
 msgid "Absolute path for storing the backups"
 msgstr ""
 
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__message_needaction
+msgid "Action Needed"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__message_attachment_count
+msgid "Attachment Count"
+msgstr ""
+
 #. module: auto_backup
 #: model:ir.actions.act_window,name:auto_backup.action_backup_conf_form
 #: model:ir.ui.menu,name:auto_backup.backup_conf_menu
@@ -36,7 +46,7 @@ msgid "Automated Backups"
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+#: model_terms:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
 msgid "Automatic backups of the database can be scheduled as follows:"
 msgstr ""
 
@@ -45,6 +55,11 @@ msgstr ""
 msgid "Backup Failed"
 msgstr ""
 
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__backup_format
+msgid "Backup Format"
+msgstr ""
+
 #. module: auto_backup
 #: model:ir.actions.server,name:auto_backup.ir_cron_backup_scheduler_0_ir_actions_server
 #: model:ir.cron,cron_name:auto_backup.ir_cron_backup_scheduler_0
@@ -58,14 +73,14 @@ msgid "Backup Successful"
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.model.fields,help:auto_backup.field_db_backup_days_to_keep
+#: model:ir.model.fields,help:auto_backup.field_db_backup__days_to_keep
 msgid ""
 "Backups older than this will be deleted automatically. Set 0 to disable "
 "autodeletion."
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+#: model_terms:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
 msgid "Basic backup configuration"
 msgstr ""
 
@@ -75,35 +90,40 @@ msgid "Cannot duplicate a configuration."
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.model.fields,help:auto_backup.field_db_backup_method
+#: model:ir.model.fields,help:auto_backup.field_db_backup__backup_format
+msgid "Choose the format for this backup."
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,help:auto_backup.field_db_backup__method
 msgid "Choose the storage method for this backup."
 msgstr ""
 
 #. module: auto_backup
-#: code:addons/auto_backup/models/db_backup.py:249
+#: code:addons/auto_backup/models/db_backup.py:265
 #, python-format
 msgid "Cleanup of old database backups failed."
 msgstr ""
 
 #. module: auto_backup
-#: code:addons/auto_backup/models/db_backup.py:128
+#: code:addons/auto_backup/models/db_backup.py:137
 #, python-format
 msgid "Connection Test Failed!"
 msgstr ""
 
 #. module: auto_backup
-#: code:addons/auto_backup/models/db_backup.py:123
+#: code:addons/auto_backup/models/db_backup.py:132
 #, python-format
 msgid "Connection Test Succeeded!"
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup_create_uid
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__create_uid
 msgid "Created by"
 msgstr "???????? ????????????"
 
 #. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup_create_date
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__create_date
 msgid "Created on"
 msgstr "???????? ????"
 
@@ -113,38 +133,38 @@ msgid "Database Backup"
 msgstr ""
 
 #. module: auto_backup
-#: code:addons/auto_backup/models/db_backup.py:203
+#: code:addons/auto_backup/models/db_backup.py:219
 #: model:mail.message.subtype,description:auto_backup.mail_message_subtype_failure
 #, python-format
 msgid "Database backup failed."
 msgstr ""
 
 #. module: auto_backup
-#: code:addons/auto_backup/models/db_backup.py:211
+#: code:addons/auto_backup/models/db_backup.py:227
 #: model:mail.message.subtype,description:auto_backup.mail_message_subtype_success
 #, python-format
 msgid "Database backup succeeded."
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup_days_to_keep
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__days_to_keep
 msgid "Days To Keep"
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup_display_name
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__display_name
 msgid "Display Name"
 msgstr "?????? ??????????"
 
 #. module: auto_backup
-#: code:addons/auto_backup/models/db_backup.py:114
+#: code:addons/auto_backup/models/db_backup.py:123
 #, python-format
 msgid ""
 "Do not save backups on your filestore, or you will backup your backups too!"
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+#: model_terms:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
 msgid "Execute backup"
 msgstr ""
 
@@ -154,17 +174,32 @@ msgid "Execute backup(s)"
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup_folder
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__folder
 msgid "Folder"
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__message_follower_ids
+msgid "Followers"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__message_channel_ids
+msgid "Followers (Channels)"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__message_partner_ids
+msgid "Followers (Partners)"
+msgstr ""
+
+#. module: auto_backup
+#: model_terms:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
 msgid "Go to Settings / Technical / Automation / Scheduled Actions."
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+#: model_terms:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
 msgid "Help"
 msgstr ""
 
@@ -174,22 +209,42 @@ msgid "I cannot remove backups from the future. Ask Doc for that."
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup_id
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__id
 msgid "ID"
 msgstr "????????????"
 
 #. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup___last_update
+#: model:ir.model.fields,help:auto_backup.field_db_backup__message_unread
+msgid "If checked new messages require your attention."
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,help:auto_backup.field_db_backup__message_needaction
+msgid "If checked, new messages require your attention."
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,help:auto_backup.field_db_backup__message_has_error
+msgid "If checked, some messages have a delivery error."
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__message_is_follower
+msgid "Is Follower"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup____last_update
 msgid "Last Modified on"
 msgstr "?????? ?????????? ????"
 
 #. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup_write_uid
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__write_uid
 msgid "Last Updated by"
 msgstr "?????? ?????????? ????????????"
 
 #. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup_write_date
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__write_date
 msgid "Last Updated on"
 msgstr "?????? ?????????? ????"
 
@@ -199,24 +254,64 @@ msgid "Local disk"
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup_method
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__message_main_attachment_id
+msgid "Main Attachment"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__message_has_error
+msgid "Message Delivery error"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__message_ids
+msgid "Messages"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__method
 msgid "Method"
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup_name
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__name
 msgid "Name"
 msgstr "??????????"
 
 #. module: auto_backup
-#: model:ir.model.fields,help:auto_backup.field_db_backup_sftp_private_key
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__message_needaction_counter
+msgid "Number of Actions"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__message_has_error_counter
+msgid "Number of error"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,help:auto_backup.field_db_backup__message_needaction_counter
+msgid "Number of messages which requires an action"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,help:auto_backup.field_db_backup__message_has_error_counter
+msgid "Number of messages with delivery error"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,help:auto_backup.field_db_backup__message_unread_counter
+msgid "Number of unread messages"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,help:auto_backup.field_db_backup__sftp_private_key
 msgid ""
 "Path to the private key file. Only the Odoo user should have read "
 "permissions for that file."
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup_sftp_private_key
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__sftp_private_key
 msgid "Private key location"
 msgstr ""
 
@@ -226,94 +321,124 @@ msgid "Remote SFTP server"
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup_sftp_password
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__sftp_password
 msgid "SFTP Password"
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup_sftp_port
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__sftp_port
 msgid "SFTP Port"
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup_sftp_host
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__sftp_host
 msgid "SFTP Server"
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+#: model_terms:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
 msgid "SFTP Settings"
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+#: model_terms:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
 msgid "Search the action named 'Backup scheduler'."
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+#: model_terms:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
 msgid ""
 "Set the scheduler to active and fill in how often you want backups generated."
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.model.fields,help:auto_backup.field_db_backup_name
+#: model:ir.model.fields,help:auto_backup.field_db_backup__name
 msgid "Summary of this backup process"
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+#: model_terms:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
 msgid "Test SFTP Connection"
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.model.fields,help:auto_backup.field_db_backup_sftp_host
+#: model:ir.model.fields,help:auto_backup.field_db_backup__sftp_host
 msgid ""
 "The host name or IP address from your remote server. For example 192.168.0.1"
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.model.fields,help:auto_backup.field_db_backup_sftp_password
+#: model:ir.model.fields,help:auto_backup.field_db_backup__sftp_password
 msgid ""
 "The password for the SFTP connection. If you specify a private key file, "
 "then this is the password to decrypt it."
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.model.fields,help:auto_backup.field_db_backup_sftp_port
+#: model:ir.model.fields,help:auto_backup.field_db_backup__sftp_port
 msgid "The port on the FTP server that accepts SSH/SFTP calls."
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.model.fields,help:auto_backup.field_db_backup_sftp_user
+#: model:ir.model.fields,help:auto_backup.field_db_backup__sftp_user
 msgid ""
 "The username where the SFTP connection should be made with. This is the user "
 "on the external server."
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__message_unread
+msgid "Unread Messages"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__message_unread_counter
+msgid "Unread Messages Counter"
+msgstr ""
+
+#. module: auto_backup
+#: model_terms:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
 msgid ""
 "Use SFTP with caution! This writes files to external servers under the path "
 "you specify."
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup_sftp_user
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__sftp_user
 msgid "Username in the SFTP Server"
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+#: model_terms:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
 msgid "Warning:"
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__website_message_ids
+msgid "Website Messages"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,help:auto_backup.field_db_backup__website_message_ids
+msgid "Website communication history"
+msgstr ""
+
+#. module: auto_backup
+#: model_terms:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
 msgid "john"
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+#: selection:db.backup,backup_format:0
+msgid "pg_dump custom format (without filestore)"
+msgstr ""
+
+#. module: auto_backup
+#: model_terms:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
 msgid "sftp.example.com"
 msgstr ""
+
+#. module: auto_backup
+#: selection:db.backup,backup_format:0
+msgid "zip (includes filestore)"
+msgstr ""
diff --git a/auto_backup/i18n/auto_backup.pot b/auto_backup/i18n/auto_backup.pot
index 8bf4c3f9584..7382048f744 100644
--- a/auto_backup/i18n/auto_backup.pot
+++ b/auto_backup/i18n/auto_backup.pot
@@ -4,7 +4,7 @@
 #
 msgid ""
 msgstr ""
-"Project-Id-Version: Odoo Server 11.0\n"
+"Project-Id-Version: Odoo Server 12.0\n"
 "Report-Msgid-Bugs-To: \n"
 "Last-Translator: <>\n"
 "Language-Team: \n"
@@ -14,15 +14,25 @@ msgstr ""
 "Plural-Forms: \n"
 
 #. module: auto_backup
-#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+#: model_terms:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
 msgid "/home/odoo/.ssh/id_rsa"
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.model.fields,help:auto_backup.field_db_backup_folder
+#: model:ir.model.fields,help:auto_backup.field_db_backup__folder
 msgid "Absolute path for storing the backups"
 msgstr ""
 
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__message_needaction
+msgid "Action Needed"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__message_attachment_count
+msgid "Attachment Count"
+msgstr ""
+
 #. module: auto_backup
 #: model:ir.actions.act_window,name:auto_backup.action_backup_conf_form
 #: model:ir.ui.menu,name:auto_backup.backup_conf_menu
@@ -30,7 +40,7 @@ msgid "Automated Backups"
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+#: model_terms:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
 msgid "Automatic backups of the database can be scheduled as follows:"
 msgstr ""
 
@@ -40,7 +50,7 @@ msgid "Backup Failed"
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup_backup_format
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__backup_format
 msgid "Backup Format"
 msgstr ""
 
@@ -57,12 +67,12 @@ msgid "Backup Successful"
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.model.fields,help:auto_backup.field_db_backup_days_to_keep
+#: model:ir.model.fields,help:auto_backup.field_db_backup__days_to_keep
 msgid "Backups older than this will be deleted automatically. Set 0 to disable autodeletion."
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+#: model_terms:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
 msgid "Basic backup configuration"
 msgstr ""
 
@@ -72,12 +82,12 @@ msgid "Cannot duplicate a configuration."
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.model.fields,help:auto_backup.field_db_backup_backup_format
+#: model:ir.model.fields,help:auto_backup.field_db_backup__backup_format
 msgid "Choose the format for this backup."
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.model.fields,help:auto_backup.field_db_backup_method
+#: model:ir.model.fields,help:auto_backup.field_db_backup__method
 msgid "Choose the storage method for this backup."
 msgstr ""
 
@@ -100,12 +110,12 @@ msgid "Connection Test Succeeded!"
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup_create_uid
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__create_uid
 msgid "Created by"
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup_create_date
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__create_date
 msgid "Created on"
 msgstr ""
 
@@ -129,12 +139,12 @@ msgid "Database backup succeeded."
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup_days_to_keep
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__days_to_keep
 msgid "Days To Keep"
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup_display_name
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__display_name
 msgid "Display Name"
 msgstr ""
 
@@ -145,7 +155,7 @@ msgid "Do not save backups on your filestore, or you will backup your backups to
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+#: model_terms:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
 msgid "Execute backup"
 msgstr ""
 
@@ -155,17 +165,32 @@ msgid "Execute backup(s)"
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup_folder
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__folder
 msgid "Folder"
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__message_follower_ids
+msgid "Followers"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__message_channel_ids
+msgid "Followers (Channels)"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__message_partner_ids
+msgid "Followers (Partners)"
+msgstr ""
+
+#. module: auto_backup
+#: model_terms:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
 msgid "Go to Settings / Technical / Automation / Scheduled Actions."
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+#: model_terms:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
 msgid "Help"
 msgstr ""
 
@@ -175,22 +200,42 @@ msgid "I cannot remove backups from the future. Ask Doc for that."
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup_id
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__id
 msgid "ID"
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup___last_update
+#: model:ir.model.fields,help:auto_backup.field_db_backup__message_unread
+msgid "If checked new messages require your attention."
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,help:auto_backup.field_db_backup__message_needaction
+msgid "If checked, new messages require your attention."
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,help:auto_backup.field_db_backup__message_has_error
+msgid "If checked, some messages have a delivery error."
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__message_is_follower
+msgid "Is Follower"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup____last_update
 msgid "Last Modified on"
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup_write_uid
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__write_uid
 msgid "Last Updated by"
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup_write_date
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__write_date
 msgid "Last Updated on"
 msgstr ""
 
@@ -200,22 +245,62 @@ msgid "Local disk"
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup_method
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__message_main_attachment_id
+msgid "Main Attachment"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__message_has_error
+msgid "Message Delivery error"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__message_ids
+msgid "Messages"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__method
 msgid "Method"
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup_name
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__name
 msgid "Name"
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.model.fields,help:auto_backup.field_db_backup_sftp_private_key
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__message_needaction_counter
+msgid "Number of Actions"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__message_has_error_counter
+msgid "Number of error"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,help:auto_backup.field_db_backup__message_needaction_counter
+msgid "Number of messages which requires an action"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,help:auto_backup.field_db_backup__message_has_error_counter
+msgid "Number of messages with delivery error"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,help:auto_backup.field_db_backup__message_unread_counter
+msgid "Number of unread messages"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,help:auto_backup.field_db_backup__sftp_private_key
 msgid "Path to the private key file. Only the Odoo user should have read permissions for that file."
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup_sftp_private_key
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__sftp_private_key
 msgid "Private key location"
 msgstr ""
 
@@ -225,82 +310,102 @@ msgid "Remote SFTP server"
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup_sftp_password
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__sftp_password
 msgid "SFTP Password"
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup_sftp_port
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__sftp_port
 msgid "SFTP Port"
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup_sftp_host
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__sftp_host
 msgid "SFTP Server"
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+#: model_terms:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
 msgid "SFTP Settings"
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+#: model_terms:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
 msgid "Search the action named 'Backup scheduler'."
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+#: model_terms:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
 msgid "Set the scheduler to active and fill in how often you want backups generated."
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.model.fields,help:auto_backup.field_db_backup_name
+#: model:ir.model.fields,help:auto_backup.field_db_backup__name
 msgid "Summary of this backup process"
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+#: model_terms:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
 msgid "Test SFTP Connection"
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.model.fields,help:auto_backup.field_db_backup_sftp_host
+#: model:ir.model.fields,help:auto_backup.field_db_backup__sftp_host
 msgid "The host name or IP address from your remote server. For example 192.168.0.1"
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.model.fields,help:auto_backup.field_db_backup_sftp_password
+#: model:ir.model.fields,help:auto_backup.field_db_backup__sftp_password
 msgid "The password for the SFTP connection. If you specify a private key file, then this is the password to decrypt it."
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.model.fields,help:auto_backup.field_db_backup_sftp_port
+#: model:ir.model.fields,help:auto_backup.field_db_backup__sftp_port
 msgid "The port on the FTP server that accepts SSH/SFTP calls."
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.model.fields,help:auto_backup.field_db_backup_sftp_user
+#: model:ir.model.fields,help:auto_backup.field_db_backup__sftp_user
 msgid "The username where the SFTP connection should be made with. This is the user on the external server."
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__message_unread
+msgid "Unread Messages"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__message_unread_counter
+msgid "Unread Messages Counter"
+msgstr ""
+
+#. module: auto_backup
+#: model_terms:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
 msgid "Use SFTP with caution! This writes files to external servers under the path you specify."
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup_sftp_user
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__sftp_user
 msgid "Username in the SFTP Server"
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+#: model_terms:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
 msgid "Warning:"
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__website_message_ids
+msgid "Website Messages"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,help:auto_backup.field_db_backup__website_message_ids
+msgid "Website communication history"
+msgstr ""
+
+#. module: auto_backup
+#: model_terms:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
 msgid "john"
 msgstr ""
 
@@ -310,7 +415,7 @@ msgid "pg_dump custom format (without filestore)"
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+#: model_terms:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
 msgid "sftp.example.com"
 msgstr ""
 
diff --git a/auto_backup/i18n/bg.po b/auto_backup/i18n/bg.po
index 576646953a3..2f49ac695b0 100644
--- a/auto_backup/i18n/bg.po
+++ b/auto_backup/i18n/bg.po
@@ -19,15 +19,25 @@ msgstr ""
 "Plural-Forms: nplurals=2; plural=(n != 1);\n"
 
 #. module: auto_backup
-#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+#: model_terms:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
 msgid "/home/odoo/.ssh/id_rsa"
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.model.fields,help:auto_backup.field_db_backup_folder
+#: model:ir.model.fields,help:auto_backup.field_db_backup__folder
 msgid "Absolute path for storing the backups"
 msgstr ""
 
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__message_needaction
+msgid "Action Needed"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__message_attachment_count
+msgid "Attachment Count"
+msgstr ""
+
 #. module: auto_backup
 #: model:ir.actions.act_window,name:auto_backup.action_backup_conf_form
 #: model:ir.ui.menu,name:auto_backup.backup_conf_menu
@@ -35,7 +45,7 @@ msgid "Automated Backups"
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+#: model_terms:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
 msgid "Automatic backups of the database can be scheduled as follows:"
 msgstr ""
 
@@ -44,6 +54,11 @@ msgstr ""
 msgid "Backup Failed"
 msgstr ""
 
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__backup_format
+msgid "Backup Format"
+msgstr ""
+
 #. module: auto_backup
 #: model:ir.actions.server,name:auto_backup.ir_cron_backup_scheduler_0_ir_actions_server
 #: model:ir.cron,cron_name:auto_backup.ir_cron_backup_scheduler_0
@@ -57,14 +72,14 @@ msgid "Backup Successful"
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.model.fields,help:auto_backup.field_db_backup_days_to_keep
+#: model:ir.model.fields,help:auto_backup.field_db_backup__days_to_keep
 msgid ""
 "Backups older than this will be deleted automatically. Set 0 to disable "
 "autodeletion."
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+#: model_terms:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
 msgid "Basic backup configuration"
 msgstr ""
 
@@ -74,35 +89,40 @@ msgid "Cannot duplicate a configuration."
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.model.fields,help:auto_backup.field_db_backup_method
+#: model:ir.model.fields,help:auto_backup.field_db_backup__backup_format
+msgid "Choose the format for this backup."
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,help:auto_backup.field_db_backup__method
 msgid "Choose the storage method for this backup."
 msgstr ""
 
 #. module: auto_backup
-#: code:addons/auto_backup/models/db_backup.py:249
+#: code:addons/auto_backup/models/db_backup.py:265
 #, python-format
 msgid "Cleanup of old database backups failed."
 msgstr ""
 
 #. module: auto_backup
-#: code:addons/auto_backup/models/db_backup.py:128
+#: code:addons/auto_backup/models/db_backup.py:137
 #, python-format
 msgid "Connection Test Failed!"
 msgstr ""
 
 #. module: auto_backup
-#: code:addons/auto_backup/models/db_backup.py:123
+#: code:addons/auto_backup/models/db_backup.py:132
 #, python-format
 msgid "Connection Test Succeeded!"
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup_create_uid
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__create_uid
 msgid "Created by"
 msgstr "?????????????????? ????"
 
 #. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup_create_date
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__create_date
 msgid "Created on"
 msgstr "?????????????????? ????"
 
@@ -112,38 +132,38 @@ msgid "Database Backup"
 msgstr ""
 
 #. module: auto_backup
-#: code:addons/auto_backup/models/db_backup.py:203
+#: code:addons/auto_backup/models/db_backup.py:219
 #: model:mail.message.subtype,description:auto_backup.mail_message_subtype_failure
 #, python-format
 msgid "Database backup failed."
 msgstr ""
 
 #. module: auto_backup
-#: code:addons/auto_backup/models/db_backup.py:211
+#: code:addons/auto_backup/models/db_backup.py:227
 #: model:mail.message.subtype,description:auto_backup.mail_message_subtype_success
 #, python-format
 msgid "Database backup succeeded."
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup_days_to_keep
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__days_to_keep
 msgid "Days To Keep"
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup_display_name
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__display_name
 msgid "Display Name"
 msgstr "?????? ???? ??????????????????"
 
 #. module: auto_backup
-#: code:addons/auto_backup/models/db_backup.py:114
+#: code:addons/auto_backup/models/db_backup.py:123
 #, python-format
 msgid ""
 "Do not save backups on your filestore, or you will backup your backups too!"
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+#: model_terms:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
 msgid "Execute backup"
 msgstr ""
 
@@ -153,17 +173,32 @@ msgid "Execute backup(s)"
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup_folder
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__folder
 msgid "Folder"
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__message_follower_ids
+msgid "Followers"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__message_channel_ids
+msgid "Followers (Channels)"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__message_partner_ids
+msgid "Followers (Partners)"
+msgstr ""
+
+#. module: auto_backup
+#: model_terms:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
 msgid "Go to Settings / Technical / Automation / Scheduled Actions."
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+#: model_terms:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
 msgid "Help"
 msgstr ""
 
@@ -173,22 +208,42 @@ msgid "I cannot remove backups from the future. Ask Doc for that."
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup_id
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__id
 msgid "ID"
 msgstr "ID"
 
 #. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup___last_update
+#: model:ir.model.fields,help:auto_backup.field_db_backup__message_unread
+msgid "If checked new messages require your attention."
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,help:auto_backup.field_db_backup__message_needaction
+msgid "If checked, new messages require your attention."
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,help:auto_backup.field_db_backup__message_has_error
+msgid "If checked, some messages have a delivery error."
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__message_is_follower
+msgid "Is Follower"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup____last_update
 msgid "Last Modified on"
 msgstr "???????????????? ???????????????? ????"
 
 #. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup_write_uid
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__write_uid
 msgid "Last Updated by"
 msgstr "???????????????? ???????????????? ????"
 
 #. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup_write_date
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__write_date
 msgid "Last Updated on"
 msgstr "???????????????? ???????????????? ????"
 
@@ -198,24 +253,64 @@ msgid "Local disk"
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup_method
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__message_main_attachment_id
+msgid "Main Attachment"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__message_has_error
+msgid "Message Delivery error"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__message_ids
+msgid "Messages"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__method
 msgid "Method"
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup_name
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__name
 msgid "Name"
 msgstr "??????"
 
 #. module: auto_backup
-#: model:ir.model.fields,help:auto_backup.field_db_backup_sftp_private_key
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__message_needaction_counter
+msgid "Number of Actions"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__message_has_error_counter
+msgid "Number of error"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,help:auto_backup.field_db_backup__message_needaction_counter
+msgid "Number of messages which requires an action"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,help:auto_backup.field_db_backup__message_has_error_counter
+msgid "Number of messages with delivery error"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,help:auto_backup.field_db_backup__message_unread_counter
+msgid "Number of unread messages"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,help:auto_backup.field_db_backup__sftp_private_key
 msgid ""
 "Path to the private key file. Only the Odoo user should have read "
 "permissions for that file."
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup_sftp_private_key
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__sftp_private_key
 msgid "Private key location"
 msgstr ""
 
@@ -225,94 +320,124 @@ msgid "Remote SFTP server"
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup_sftp_password
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__sftp_password
 msgid "SFTP Password"
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup_sftp_port
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__sftp_port
 msgid "SFTP Port"
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup_sftp_host
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__sftp_host
 msgid "SFTP Server"
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+#: model_terms:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
 msgid "SFTP Settings"
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+#: model_terms:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
 msgid "Search the action named 'Backup scheduler'."
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+#: model_terms:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
 msgid ""
 "Set the scheduler to active and fill in how often you want backups generated."
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.model.fields,help:auto_backup.field_db_backup_name
+#: model:ir.model.fields,help:auto_backup.field_db_backup__name
 msgid "Summary of this backup process"
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+#: model_terms:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
 msgid "Test SFTP Connection"
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.model.fields,help:auto_backup.field_db_backup_sftp_host
+#: model:ir.model.fields,help:auto_backup.field_db_backup__sftp_host
 msgid ""
 "The host name or IP address from your remote server. For example 192.168.0.1"
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.model.fields,help:auto_backup.field_db_backup_sftp_password
+#: model:ir.model.fields,help:auto_backup.field_db_backup__sftp_password
 msgid ""
 "The password for the SFTP connection. If you specify a private key file, "
 "then this is the password to decrypt it."
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.model.fields,help:auto_backup.field_db_backup_sftp_port
+#: model:ir.model.fields,help:auto_backup.field_db_backup__sftp_port
 msgid "The port on the FTP server that accepts SSH/SFTP calls."
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.model.fields,help:auto_backup.field_db_backup_sftp_user
+#: model:ir.model.fields,help:auto_backup.field_db_backup__sftp_user
 msgid ""
 "The username where the SFTP connection should be made with. This is the user "
 "on the external server."
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__message_unread
+msgid "Unread Messages"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__message_unread_counter
+msgid "Unread Messages Counter"
+msgstr ""
+
+#. module: auto_backup
+#: model_terms:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
 msgid ""
 "Use SFTP with caution! This writes files to external servers under the path "
 "you specify."
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup_sftp_user
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__sftp_user
 msgid "Username in the SFTP Server"
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+#: model_terms:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
 msgid "Warning:"
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__website_message_ids
+msgid "Website Messages"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,help:auto_backup.field_db_backup__website_message_ids
+msgid "Website communication history"
+msgstr ""
+
+#. module: auto_backup
+#: model_terms:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
 msgid "john"
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+#: selection:db.backup,backup_format:0
+msgid "pg_dump custom format (without filestore)"
+msgstr ""
+
+#. module: auto_backup
+#: model_terms:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
 msgid "sftp.example.com"
 msgstr ""
+
+#. module: auto_backup
+#: selection:db.backup,backup_format:0
+msgid "zip (includes filestore)"
+msgstr ""
diff --git a/auto_backup/i18n/bs.po b/auto_backup/i18n/bs.po
index 5bc5521a17f..dbb16da6081 100644
--- a/auto_backup/i18n/bs.po
+++ b/auto_backup/i18n/bs.po
@@ -20,15 +20,25 @@ msgstr ""
 "%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n"
 
 #. module: auto_backup
-#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+#: model_terms:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
 msgid "/home/odoo/.ssh/id_rsa"
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.model.fields,help:auto_backup.field_db_backup_folder
+#: model:ir.model.fields,help:auto_backup.field_db_backup__folder
 msgid "Absolute path for storing the backups"
 msgstr ""
 
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__message_needaction
+msgid "Action Needed"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__message_attachment_count
+msgid "Attachment Count"
+msgstr ""
+
 #. module: auto_backup
 #: model:ir.actions.act_window,name:auto_backup.action_backup_conf_form
 #: model:ir.ui.menu,name:auto_backup.backup_conf_menu
@@ -36,7 +46,7 @@ msgid "Automated Backups"
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+#: model_terms:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
 msgid "Automatic backups of the database can be scheduled as follows:"
 msgstr ""
 
@@ -45,6 +55,11 @@ msgstr ""
 msgid "Backup Failed"
 msgstr ""
 
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__backup_format
+msgid "Backup Format"
+msgstr ""
+
 #. module: auto_backup
 #: model:ir.actions.server,name:auto_backup.ir_cron_backup_scheduler_0_ir_actions_server
 #: model:ir.cron,cron_name:auto_backup.ir_cron_backup_scheduler_0
@@ -58,14 +73,14 @@ msgid "Backup Successful"
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.model.fields,help:auto_backup.field_db_backup_days_to_keep
+#: model:ir.model.fields,help:auto_backup.field_db_backup__days_to_keep
 msgid ""
 "Backups older than this will be deleted automatically. Set 0 to disable "
 "autodeletion."
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+#: model_terms:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
 msgid "Basic backup configuration"
 msgstr ""
 
@@ -75,35 +90,40 @@ msgid "Cannot duplicate a configuration."
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.model.fields,help:auto_backup.field_db_backup_method
+#: model:ir.model.fields,help:auto_backup.field_db_backup__backup_format
+msgid "Choose the format for this backup."
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,help:auto_backup.field_db_backup__method
 msgid "Choose the storage method for this backup."
 msgstr ""
 
 #. module: auto_backup
-#: code:addons/auto_backup/models/db_backup.py:249
+#: code:addons/auto_backup/models/db_backup.py:265
 #, python-format
 msgid "Cleanup of old database backups failed."
 msgstr ""
 
 #. module: auto_backup
-#: code:addons/auto_backup/models/db_backup.py:128
+#: code:addons/auto_backup/models/db_backup.py:137
 #, python-format
 msgid "Connection Test Failed!"
 msgstr ""
 
 #. module: auto_backup
-#: code:addons/auto_backup/models/db_backup.py:123
+#: code:addons/auto_backup/models/db_backup.py:132
 #, python-format
 msgid "Connection Test Succeeded!"
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup_create_uid
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__create_uid
 msgid "Created by"
 msgstr "Kreirao"
 
 #. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup_create_date
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__create_date
 msgid "Created on"
 msgstr "Kreirano"
 
@@ -113,38 +133,38 @@ msgid "Database Backup"
 msgstr ""
 
 #. module: auto_backup
-#: code:addons/auto_backup/models/db_backup.py:203
+#: code:addons/auto_backup/models/db_backup.py:219
 #: model:mail.message.subtype,description:auto_backup.mail_message_subtype_failure
 #, python-format
 msgid "Database backup failed."
 msgstr ""
 
 #. module: auto_backup
-#: code:addons/auto_backup/models/db_backup.py:211
+#: code:addons/auto_backup/models/db_backup.py:227
 #: model:mail.message.subtype,description:auto_backup.mail_message_subtype_success
 #, python-format
 msgid "Database backup succeeded."
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup_days_to_keep
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__days_to_keep
 msgid "Days To Keep"
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup_display_name
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__display_name
 msgid "Display Name"
 msgstr "Prika??i naziv"
 
 #. module: auto_backup
-#: code:addons/auto_backup/models/db_backup.py:114
+#: code:addons/auto_backup/models/db_backup.py:123
 #, python-format
 msgid ""
 "Do not save backups on your filestore, or you will backup your backups too!"
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+#: model_terms:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
 msgid "Execute backup"
 msgstr ""
 
@@ -154,17 +174,32 @@ msgid "Execute backup(s)"
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup_folder
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__folder
 msgid "Folder"
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__message_follower_ids
+msgid "Followers"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__message_channel_ids
+msgid "Followers (Channels)"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__message_partner_ids
+msgid "Followers (Partners)"
+msgstr ""
+
+#. module: auto_backup
+#: model_terms:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
 msgid "Go to Settings / Technical / Automation / Scheduled Actions."
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+#: model_terms:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
 msgid "Help"
 msgstr ""
 
@@ -174,22 +209,42 @@ msgid "I cannot remove backups from the future. Ask Doc for that."
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup_id
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__id
 msgid "ID"
 msgstr "ID"
 
 #. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup___last_update
+#: model:ir.model.fields,help:auto_backup.field_db_backup__message_unread
+msgid "If checked new messages require your attention."
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,help:auto_backup.field_db_backup__message_needaction
+msgid "If checked, new messages require your attention."
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,help:auto_backup.field_db_backup__message_has_error
+msgid "If checked, some messages have a delivery error."
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__message_is_follower
+msgid "Is Follower"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup____last_update
 msgid "Last Modified on"
 msgstr "Zadnje mijenjano"
 
 #. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup_write_uid
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__write_uid
 msgid "Last Updated by"
 msgstr "Zadnji a??urirao"
 
 #. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup_write_date
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__write_date
 msgid "Last Updated on"
 msgstr "Zadnje a??urirano"
 
@@ -199,24 +254,64 @@ msgid "Local disk"
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup_method
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__message_main_attachment_id
+msgid "Main Attachment"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__message_has_error
+msgid "Message Delivery error"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__message_ids
+msgid "Messages"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__method
 msgid "Method"
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup_name
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__name
 msgid "Name"
 msgstr "Ime"
 
 #. module: auto_backup
-#: model:ir.model.fields,help:auto_backup.field_db_backup_sftp_private_key
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__message_needaction_counter
+msgid "Number of Actions"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__message_has_error_counter
+msgid "Number of error"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,help:auto_backup.field_db_backup__message_needaction_counter
+msgid "Number of messages which requires an action"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,help:auto_backup.field_db_backup__message_has_error_counter
+msgid "Number of messages with delivery error"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,help:auto_backup.field_db_backup__message_unread_counter
+msgid "Number of unread messages"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,help:auto_backup.field_db_backup__sftp_private_key
 msgid ""
 "Path to the private key file. Only the Odoo user should have read "
 "permissions for that file."
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup_sftp_private_key
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__sftp_private_key
 msgid "Private key location"
 msgstr ""
 
@@ -226,94 +321,124 @@ msgid "Remote SFTP server"
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup_sftp_password
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__sftp_password
 msgid "SFTP Password"
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup_sftp_port
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__sftp_port
 msgid "SFTP Port"
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup_sftp_host
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__sftp_host
 msgid "SFTP Server"
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+#: model_terms:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
 msgid "SFTP Settings"
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+#: model_terms:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
 msgid "Search the action named 'Backup scheduler'."
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+#: model_terms:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
 msgid ""
 "Set the scheduler to active and fill in how often you want backups generated."
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.model.fields,help:auto_backup.field_db_backup_name
+#: model:ir.model.fields,help:auto_backup.field_db_backup__name
 msgid "Summary of this backup process"
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+#: model_terms:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
 msgid "Test SFTP Connection"
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.model.fields,help:auto_backup.field_db_backup_sftp_host
+#: model:ir.model.fields,help:auto_backup.field_db_backup__sftp_host
 msgid ""
 "The host name or IP address from your remote server. For example 192.168.0.1"
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.model.fields,help:auto_backup.field_db_backup_sftp_password
+#: model:ir.model.fields,help:auto_backup.field_db_backup__sftp_password
 msgid ""
 "The password for the SFTP connection. If you specify a private key file, "
 "then this is the password to decrypt it."
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.model.fields,help:auto_backup.field_db_backup_sftp_port
+#: model:ir.model.fields,help:auto_backup.field_db_backup__sftp_port
 msgid "The port on the FTP server that accepts SSH/SFTP calls."
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.model.fields,help:auto_backup.field_db_backup_sftp_user
+#: model:ir.model.fields,help:auto_backup.field_db_backup__sftp_user
 msgid ""
 "The username where the SFTP connection should be made with. This is the user "
 "on the external server."
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__message_unread
+msgid "Unread Messages"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__message_unread_counter
+msgid "Unread Messages Counter"
+msgstr ""
+
+#. module: auto_backup
+#: model_terms:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
 msgid ""
 "Use SFTP with caution! This writes files to external servers under the path "
 "you specify."
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup_sftp_user
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__sftp_user
 msgid "Username in the SFTP Server"
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+#: model_terms:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
 msgid "Warning:"
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__website_message_ids
+msgid "Website Messages"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,help:auto_backup.field_db_backup__website_message_ids
+msgid "Website communication history"
+msgstr ""
+
+#. module: auto_backup
+#: model_terms:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
 msgid "john"
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+#: selection:db.backup,backup_format:0
+msgid "pg_dump custom format (without filestore)"
+msgstr ""
+
+#. module: auto_backup
+#: model_terms:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
 msgid "sftp.example.com"
 msgstr ""
+
+#. module: auto_backup
+#: selection:db.backup,backup_format:0
+msgid "zip (includes filestore)"
+msgstr ""
diff --git a/auto_backup/i18n/ca.po b/auto_backup/i18n/ca.po
index 8548f923c4f..68aad7144ac 100644
--- a/auto_backup/i18n/ca.po
+++ b/auto_backup/i18n/ca.po
@@ -19,15 +19,25 @@ msgstr ""
 "Plural-Forms: nplurals=2; plural=(n != 1);\n"
 
 #. module: auto_backup
-#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+#: model_terms:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
 msgid "/home/odoo/.ssh/id_rsa"
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.model.fields,help:auto_backup.field_db_backup_folder
+#: model:ir.model.fields,help:auto_backup.field_db_backup__folder
 msgid "Absolute path for storing the backups"
 msgstr ""
 
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__message_needaction
+msgid "Action Needed"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__message_attachment_count
+msgid "Attachment Count"
+msgstr ""
+
 #. module: auto_backup
 #: model:ir.actions.act_window,name:auto_backup.action_backup_conf_form
 #: model:ir.ui.menu,name:auto_backup.backup_conf_menu
@@ -35,7 +45,7 @@ msgid "Automated Backups"
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+#: model_terms:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
 msgid "Automatic backups of the database can be scheduled as follows:"
 msgstr ""
 
@@ -44,6 +54,11 @@ msgstr ""
 msgid "Backup Failed"
 msgstr ""
 
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__backup_format
+msgid "Backup Format"
+msgstr ""
+
 #. module: auto_backup
 #: model:ir.actions.server,name:auto_backup.ir_cron_backup_scheduler_0_ir_actions_server
 #: model:ir.cron,cron_name:auto_backup.ir_cron_backup_scheduler_0
@@ -57,14 +72,14 @@ msgid "Backup Successful"
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.model.fields,help:auto_backup.field_db_backup_days_to_keep
+#: model:ir.model.fields,help:auto_backup.field_db_backup__days_to_keep
 msgid ""
 "Backups older than this will be deleted automatically. Set 0 to disable "
 "autodeletion."
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+#: model_terms:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
 msgid "Basic backup configuration"
 msgstr ""
 
@@ -74,35 +89,40 @@ msgid "Cannot duplicate a configuration."
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.model.fields,help:auto_backup.field_db_backup_method
+#: model:ir.model.fields,help:auto_backup.field_db_backup__backup_format
+msgid "Choose the format for this backup."
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,help:auto_backup.field_db_backup__method
 msgid "Choose the storage method for this backup."
 msgstr ""
 
 #. module: auto_backup
-#: code:addons/auto_backup/models/db_backup.py:249
+#: code:addons/auto_backup/models/db_backup.py:265
 #, python-format
 msgid "Cleanup of old database backups failed."
 msgstr ""
 
 #. module: auto_backup
-#: code:addons/auto_backup/models/db_backup.py:128
+#: code:addons/auto_backup/models/db_backup.py:137
 #, python-format
 msgid "Connection Test Failed!"
 msgstr ""
 
 #. module: auto_backup
-#: code:addons/auto_backup/models/db_backup.py:123
+#: code:addons/auto_backup/models/db_backup.py:132
 #, python-format
 msgid "Connection Test Succeeded!"
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup_create_uid
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__create_uid
 msgid "Created by"
 msgstr "Creat per"
 
 #. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup_create_date
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__create_date
 msgid "Created on"
 msgstr "Creat el"
 
@@ -112,38 +132,38 @@ msgid "Database Backup"
 msgstr ""
 
 #. module: auto_backup
-#: code:addons/auto_backup/models/db_backup.py:203
+#: code:addons/auto_backup/models/db_backup.py:219
 #: model:mail.message.subtype,description:auto_backup.mail_message_subtype_failure
 #, python-format
 msgid "Database backup failed."
 msgstr ""
 
 #. module: auto_backup
-#: code:addons/auto_backup/models/db_backup.py:211
+#: code:addons/auto_backup/models/db_backup.py:227
 #: model:mail.message.subtype,description:auto_backup.mail_message_subtype_success
 #, python-format
 msgid "Database backup succeeded."
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup_days_to_keep
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__days_to_keep
 msgid "Days To Keep"
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup_display_name
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__display_name
 msgid "Display Name"
 msgstr "Nom a mostrar"
 
 #. module: auto_backup
-#: code:addons/auto_backup/models/db_backup.py:114
+#: code:addons/auto_backup/models/db_backup.py:123
 #, python-format
 msgid ""
 "Do not save backups on your filestore, or you will backup your backups too!"
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+#: model_terms:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
 msgid "Execute backup"
 msgstr ""
 
@@ -153,17 +173,32 @@ msgid "Execute backup(s)"
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup_folder
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__folder
 msgid "Folder"
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__message_follower_ids
+msgid "Followers"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__message_channel_ids
+msgid "Followers (Channels)"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__message_partner_ids
+msgid "Followers (Partners)"
+msgstr ""
+
+#. module: auto_backup
+#: model_terms:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
 msgid "Go to Settings / Technical / Automation / Scheduled Actions."
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+#: model_terms:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
 msgid "Help"
 msgstr ""
 
@@ -173,22 +208,42 @@ msgid "I cannot remove backups from the future. Ask Doc for that."
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup_id
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__id
 msgid "ID"
 msgstr "ID"
 
 #. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup___last_update
+#: model:ir.model.fields,help:auto_backup.field_db_backup__message_unread
+msgid "If checked new messages require your attention."
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,help:auto_backup.field_db_backup__message_needaction
+msgid "If checked, new messages require your attention."
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,help:auto_backup.field_db_backup__message_has_error
+msgid "If checked, some messages have a delivery error."
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__message_is_follower
+msgid "Is Follower"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup____last_update
 msgid "Last Modified on"
 msgstr "Darrera modificaci?? el"
 
 #. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup_write_uid
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__write_uid
 msgid "Last Updated by"
 msgstr "Darrera Actualitzaci?? per"
 
 #. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup_write_date
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__write_date
 msgid "Last Updated on"
 msgstr "Darrera Actualitzaci?? el"
 
@@ -198,24 +253,64 @@ msgid "Local disk"
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup_method
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__message_main_attachment_id
+msgid "Main Attachment"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__message_has_error
+msgid "Message Delivery error"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__message_ids
+msgid "Messages"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__method
 msgid "Method"
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup_name
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__name
 msgid "Name"
 msgstr "Nom"
 
 #. module: auto_backup
-#: model:ir.model.fields,help:auto_backup.field_db_backup_sftp_private_key
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__message_needaction_counter
+msgid "Number of Actions"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__message_has_error_counter
+msgid "Number of error"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,help:auto_backup.field_db_backup__message_needaction_counter
+msgid "Number of messages which requires an action"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,help:auto_backup.field_db_backup__message_has_error_counter
+msgid "Number of messages with delivery error"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,help:auto_backup.field_db_backup__message_unread_counter
+msgid "Number of unread messages"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,help:auto_backup.field_db_backup__sftp_private_key
 msgid ""
 "Path to the private key file. Only the Odoo user should have read "
 "permissions for that file."
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup_sftp_private_key
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__sftp_private_key
 msgid "Private key location"
 msgstr ""
 
@@ -225,94 +320,124 @@ msgid "Remote SFTP server"
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup_sftp_password
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__sftp_password
 msgid "SFTP Password"
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup_sftp_port
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__sftp_port
 msgid "SFTP Port"
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup_sftp_host
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__sftp_host
 msgid "SFTP Server"
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+#: model_terms:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
 msgid "SFTP Settings"
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+#: model_terms:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
 msgid "Search the action named 'Backup scheduler'."
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+#: model_terms:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
 msgid ""
 "Set the scheduler to active and fill in how often you want backups generated."
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.model.fields,help:auto_backup.field_db_backup_name
+#: model:ir.model.fields,help:auto_backup.field_db_backup__name
 msgid "Summary of this backup process"
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+#: model_terms:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
 msgid "Test SFTP Connection"
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.model.fields,help:auto_backup.field_db_backup_sftp_host
+#: model:ir.model.fields,help:auto_backup.field_db_backup__sftp_host
 msgid ""
 "The host name or IP address from your remote server. For example 192.168.0.1"
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.model.fields,help:auto_backup.field_db_backup_sftp_password
+#: model:ir.model.fields,help:auto_backup.field_db_backup__sftp_password
 msgid ""
 "The password for the SFTP connection. If you specify a private key file, "
 "then this is the password to decrypt it."
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.model.fields,help:auto_backup.field_db_backup_sftp_port
+#: model:ir.model.fields,help:auto_backup.field_db_backup__sftp_port
 msgid "The port on the FTP server that accepts SSH/SFTP calls."
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.model.fields,help:auto_backup.field_db_backup_sftp_user
+#: model:ir.model.fields,help:auto_backup.field_db_backup__sftp_user
 msgid ""
 "The username where the SFTP connection should be made with. This is the user "
 "on the external server."
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__message_unread
+msgid "Unread Messages"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__message_unread_counter
+msgid "Unread Messages Counter"
+msgstr ""
+
+#. module: auto_backup
+#: model_terms:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
 msgid ""
 "Use SFTP with caution! This writes files to external servers under the path "
 "you specify."
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup_sftp_user
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__sftp_user
 msgid "Username in the SFTP Server"
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+#: model_terms:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
 msgid "Warning:"
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__website_message_ids
+msgid "Website Messages"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,help:auto_backup.field_db_backup__website_message_ids
+msgid "Website communication history"
+msgstr ""
+
+#. module: auto_backup
+#: model_terms:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
 msgid "john"
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+#: selection:db.backup,backup_format:0
+msgid "pg_dump custom format (without filestore)"
+msgstr ""
+
+#. module: auto_backup
+#: model_terms:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
 msgid "sftp.example.com"
 msgstr ""
+
+#. module: auto_backup
+#: selection:db.backup,backup_format:0
+msgid "zip (includes filestore)"
+msgstr ""
diff --git a/auto_backup/i18n/cs.po b/auto_backup/i18n/cs.po
index ae9cf678bfc..98a62eed709 100644
--- a/auto_backup/i18n/cs.po
+++ b/auto_backup/i18n/cs.po
@@ -19,15 +19,25 @@ msgstr ""
 "Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;\n"
 
 #. module: auto_backup
-#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+#: model_terms:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
 msgid "/home/odoo/.ssh/id_rsa"
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.model.fields,help:auto_backup.field_db_backup_folder
+#: model:ir.model.fields,help:auto_backup.field_db_backup__folder
 msgid "Absolute path for storing the backups"
 msgstr ""
 
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__message_needaction
+msgid "Action Needed"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__message_attachment_count
+msgid "Attachment Count"
+msgstr ""
+
 #. module: auto_backup
 #: model:ir.actions.act_window,name:auto_backup.action_backup_conf_form
 #: model:ir.ui.menu,name:auto_backup.backup_conf_menu
@@ -35,7 +45,7 @@ msgid "Automated Backups"
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+#: model_terms:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
 msgid "Automatic backups of the database can be scheduled as follows:"
 msgstr ""
 
@@ -44,6 +54,11 @@ msgstr ""
 msgid "Backup Failed"
 msgstr ""
 
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__backup_format
+msgid "Backup Format"
+msgstr ""
+
 #. module: auto_backup
 #: model:ir.actions.server,name:auto_backup.ir_cron_backup_scheduler_0_ir_actions_server
 #: model:ir.cron,cron_name:auto_backup.ir_cron_backup_scheduler_0
@@ -57,14 +72,14 @@ msgid "Backup Successful"
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.model.fields,help:auto_backup.field_db_backup_days_to_keep
+#: model:ir.model.fields,help:auto_backup.field_db_backup__days_to_keep
 msgid ""
 "Backups older than this will be deleted automatically. Set 0 to disable "
 "autodeletion."
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+#: model_terms:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
 msgid "Basic backup configuration"
 msgstr ""
 
@@ -74,35 +89,40 @@ msgid "Cannot duplicate a configuration."
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.model.fields,help:auto_backup.field_db_backup_method
+#: model:ir.model.fields,help:auto_backup.field_db_backup__backup_format
+msgid "Choose the format for this backup."
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,help:auto_backup.field_db_backup__method
 msgid "Choose the storage method for this backup."
 msgstr ""
 
 #. module: auto_backup
-#: code:addons/auto_backup/models/db_backup.py:249
+#: code:addons/auto_backup/models/db_backup.py:265
 #, python-format
 msgid "Cleanup of old database backups failed."
 msgstr ""
 
 #. module: auto_backup
-#: code:addons/auto_backup/models/db_backup.py:128
+#: code:addons/auto_backup/models/db_backup.py:137
 #, python-format
 msgid "Connection Test Failed!"
 msgstr ""
 
 #. module: auto_backup
-#: code:addons/auto_backup/models/db_backup.py:123
+#: code:addons/auto_backup/models/db_backup.py:132
 #, python-format
 msgid "Connection Test Succeeded!"
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup_create_uid
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__create_uid
 msgid "Created by"
 msgstr "Vytvo??il(a)"
 
 #. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup_create_date
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__create_date
 msgid "Created on"
 msgstr "Vytvo??eno"
 
@@ -112,38 +132,38 @@ msgid "Database Backup"
 msgstr ""
 
 #. module: auto_backup
-#: code:addons/auto_backup/models/db_backup.py:203
+#: code:addons/auto_backup/models/db_backup.py:219
 #: model:mail.message.subtype,description:auto_backup.mail_message_subtype_failure
 #, python-format
 msgid "Database backup failed."
 msgstr ""
 
 #. module: auto_backup
-#: code:addons/auto_backup/models/db_backup.py:211
+#: code:addons/auto_backup/models/db_backup.py:227
 #: model:mail.message.subtype,description:auto_backup.mail_message_subtype_success
 #, python-format
 msgid "Database backup succeeded."
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup_days_to_keep
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__days_to_keep
 msgid "Days To Keep"
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup_display_name
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__display_name
 msgid "Display Name"
 msgstr "Zobrazovan?? n??zev"
 
 #. module: auto_backup
-#: code:addons/auto_backup/models/db_backup.py:114
+#: code:addons/auto_backup/models/db_backup.py:123
 #, python-format
 msgid ""
 "Do not save backups on your filestore, or you will backup your backups too!"
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+#: model_terms:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
 msgid "Execute backup"
 msgstr ""
 
@@ -153,17 +173,32 @@ msgid "Execute backup(s)"
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup_folder
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__folder
 msgid "Folder"
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__message_follower_ids
+msgid "Followers"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__message_channel_ids
+msgid "Followers (Channels)"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__message_partner_ids
+msgid "Followers (Partners)"
+msgstr ""
+
+#. module: auto_backup
+#: model_terms:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
 msgid "Go to Settings / Technical / Automation / Scheduled Actions."
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+#: model_terms:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
 msgid "Help"
 msgstr ""
 
@@ -173,22 +208,42 @@ msgid "I cannot remove backups from the future. Ask Doc for that."
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup_id
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__id
 msgid "ID"
 msgstr "ID"
 
 #. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup___last_update
+#: model:ir.model.fields,help:auto_backup.field_db_backup__message_unread
+msgid "If checked new messages require your attention."
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,help:auto_backup.field_db_backup__message_needaction
+msgid "If checked, new messages require your attention."
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,help:auto_backup.field_db_backup__message_has_error
+msgid "If checked, some messages have a delivery error."
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__message_is_follower
+msgid "Is Follower"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup____last_update
 msgid "Last Modified on"
 msgstr "Naposled upraveno"
 
 #. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup_write_uid
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__write_uid
 msgid "Last Updated by"
 msgstr "Naposled upraveno"
 
 #. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup_write_date
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__write_date
 msgid "Last Updated on"
 msgstr "Naposled upraveno"
 
@@ -198,24 +253,64 @@ msgid "Local disk"
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup_method
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__message_main_attachment_id
+msgid "Main Attachment"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__message_has_error
+msgid "Message Delivery error"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__message_ids
+msgid "Messages"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__method
 msgid "Method"
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup_name
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__name
 msgid "Name"
 msgstr "N??zev"
 
 #. module: auto_backup
-#: model:ir.model.fields,help:auto_backup.field_db_backup_sftp_private_key
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__message_needaction_counter
+msgid "Number of Actions"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__message_has_error_counter
+msgid "Number of error"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,help:auto_backup.field_db_backup__message_needaction_counter
+msgid "Number of messages which requires an action"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,help:auto_backup.field_db_backup__message_has_error_counter
+msgid "Number of messages with delivery error"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,help:auto_backup.field_db_backup__message_unread_counter
+msgid "Number of unread messages"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,help:auto_backup.field_db_backup__sftp_private_key
 msgid ""
 "Path to the private key file. Only the Odoo user should have read "
 "permissions for that file."
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup_sftp_private_key
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__sftp_private_key
 msgid "Private key location"
 msgstr ""
 
@@ -225,94 +320,124 @@ msgid "Remote SFTP server"
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup_sftp_password
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__sftp_password
 msgid "SFTP Password"
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup_sftp_port
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__sftp_port
 msgid "SFTP Port"
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup_sftp_host
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__sftp_host
 msgid "SFTP Server"
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+#: model_terms:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
 msgid "SFTP Settings"
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+#: model_terms:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
 msgid "Search the action named 'Backup scheduler'."
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+#: model_terms:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
 msgid ""
 "Set the scheduler to active and fill in how often you want backups generated."
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.model.fields,help:auto_backup.field_db_backup_name
+#: model:ir.model.fields,help:auto_backup.field_db_backup__name
 msgid "Summary of this backup process"
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+#: model_terms:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
 msgid "Test SFTP Connection"
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.model.fields,help:auto_backup.field_db_backup_sftp_host
+#: model:ir.model.fields,help:auto_backup.field_db_backup__sftp_host
 msgid ""
 "The host name or IP address from your remote server. For example 192.168.0.1"
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.model.fields,help:auto_backup.field_db_backup_sftp_password
+#: model:ir.model.fields,help:auto_backup.field_db_backup__sftp_password
 msgid ""
 "The password for the SFTP connection. If you specify a private key file, "
 "then this is the password to decrypt it."
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.model.fields,help:auto_backup.field_db_backup_sftp_port
+#: model:ir.model.fields,help:auto_backup.field_db_backup__sftp_port
 msgid "The port on the FTP server that accepts SSH/SFTP calls."
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.model.fields,help:auto_backup.field_db_backup_sftp_user
+#: model:ir.model.fields,help:auto_backup.field_db_backup__sftp_user
 msgid ""
 "The username where the SFTP connection should be made with. This is the user "
 "on the external server."
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__message_unread
+msgid "Unread Messages"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__message_unread_counter
+msgid "Unread Messages Counter"
+msgstr ""
+
+#. module: auto_backup
+#: model_terms:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
 msgid ""
 "Use SFTP with caution! This writes files to external servers under the path "
 "you specify."
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup_sftp_user
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__sftp_user
 msgid "Username in the SFTP Server"
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+#: model_terms:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
 msgid "Warning:"
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__website_message_ids
+msgid "Website Messages"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,help:auto_backup.field_db_backup__website_message_ids
+msgid "Website communication history"
+msgstr ""
+
+#. module: auto_backup
+#: model_terms:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
 msgid "john"
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+#: selection:db.backup,backup_format:0
+msgid "pg_dump custom format (without filestore)"
+msgstr ""
+
+#. module: auto_backup
+#: model_terms:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
 msgid "sftp.example.com"
 msgstr ""
+
+#. module: auto_backup
+#: selection:db.backup,backup_format:0
+msgid "zip (includes filestore)"
+msgstr ""
diff --git a/auto_backup/i18n/cs_CZ.po b/auto_backup/i18n/cs_CZ.po
index 3e49e71ecd6..a958e90b521 100644
--- a/auto_backup/i18n/cs_CZ.po
+++ b/auto_backup/i18n/cs_CZ.po
@@ -20,15 +20,25 @@ msgstr ""
 "Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;\n"
 
 #. module: auto_backup
-#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+#: model_terms:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
 msgid "/home/odoo/.ssh/id_rsa"
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.model.fields,help:auto_backup.field_db_backup_folder
+#: model:ir.model.fields,help:auto_backup.field_db_backup__folder
 msgid "Absolute path for storing the backups"
 msgstr ""
 
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__message_needaction
+msgid "Action Needed"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__message_attachment_count
+msgid "Attachment Count"
+msgstr ""
+
 #. module: auto_backup
 #: model:ir.actions.act_window,name:auto_backup.action_backup_conf_form
 #: model:ir.ui.menu,name:auto_backup.backup_conf_menu
@@ -36,7 +46,7 @@ msgid "Automated Backups"
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+#: model_terms:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
 msgid "Automatic backups of the database can be scheduled as follows:"
 msgstr ""
 
@@ -45,6 +55,11 @@ msgstr ""
 msgid "Backup Failed"
 msgstr ""
 
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__backup_format
+msgid "Backup Format"
+msgstr ""
+
 #. module: auto_backup
 #: model:ir.actions.server,name:auto_backup.ir_cron_backup_scheduler_0_ir_actions_server
 #: model:ir.cron,cron_name:auto_backup.ir_cron_backup_scheduler_0
@@ -58,14 +73,14 @@ msgid "Backup Successful"
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.model.fields,help:auto_backup.field_db_backup_days_to_keep
+#: model:ir.model.fields,help:auto_backup.field_db_backup__days_to_keep
 msgid ""
 "Backups older than this will be deleted automatically. Set 0 to disable "
 "autodeletion."
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+#: model_terms:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
 msgid "Basic backup configuration"
 msgstr ""
 
@@ -75,35 +90,40 @@ msgid "Cannot duplicate a configuration."
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.model.fields,help:auto_backup.field_db_backup_method
+#: model:ir.model.fields,help:auto_backup.field_db_backup__backup_format
+msgid "Choose the format for this backup."
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,help:auto_backup.field_db_backup__method
 msgid "Choose the storage method for this backup."
 msgstr ""
 
 #. module: auto_backup
-#: code:addons/auto_backup/models/db_backup.py:249
+#: code:addons/auto_backup/models/db_backup.py:265
 #, python-format
 msgid "Cleanup of old database backups failed."
 msgstr ""
 
 #. module: auto_backup
-#: code:addons/auto_backup/models/db_backup.py:128
+#: code:addons/auto_backup/models/db_backup.py:137
 #, python-format
 msgid "Connection Test Failed!"
 msgstr ""
 
 #. module: auto_backup
-#: code:addons/auto_backup/models/db_backup.py:123
+#: code:addons/auto_backup/models/db_backup.py:132
 #, python-format
 msgid "Connection Test Succeeded!"
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup_create_uid
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__create_uid
 msgid "Created by"
 msgstr "Vytvo??il"
 
 #. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup_create_date
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__create_date
 msgid "Created on"
 msgstr "Vytvo??eno"
 
@@ -113,38 +133,38 @@ msgid "Database Backup"
 msgstr ""
 
 #. module: auto_backup
-#: code:addons/auto_backup/models/db_backup.py:203
+#: code:addons/auto_backup/models/db_backup.py:219
 #: model:mail.message.subtype,description:auto_backup.mail_message_subtype_failure
 #, python-format
 msgid "Database backup failed."
 msgstr ""
 
 #. module: auto_backup
-#: code:addons/auto_backup/models/db_backup.py:211
+#: code:addons/auto_backup/models/db_backup.py:227
 #: model:mail.message.subtype,description:auto_backup.mail_message_subtype_success
 #, python-format
 msgid "Database backup succeeded."
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup_days_to_keep
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__days_to_keep
 msgid "Days To Keep"
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup_display_name
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__display_name
 msgid "Display Name"
 msgstr "Zobrazit n??zev"
 
 #. module: auto_backup
-#: code:addons/auto_backup/models/db_backup.py:114
+#: code:addons/auto_backup/models/db_backup.py:123
 #, python-format
 msgid ""
 "Do not save backups on your filestore, or you will backup your backups too!"
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+#: model_terms:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
 msgid "Execute backup"
 msgstr ""
 
@@ -154,17 +174,32 @@ msgid "Execute backup(s)"
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup_folder
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__folder
 msgid "Folder"
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__message_follower_ids
+msgid "Followers"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__message_channel_ids
+msgid "Followers (Channels)"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__message_partner_ids
+msgid "Followers (Partners)"
+msgstr ""
+
+#. module: auto_backup
+#: model_terms:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
 msgid "Go to Settings / Technical / Automation / Scheduled Actions."
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+#: model_terms:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
 msgid "Help"
 msgstr ""
 
@@ -174,22 +209,42 @@ msgid "I cannot remove backups from the future. Ask Doc for that."
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup_id
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__id
 msgid "ID"
 msgstr "ID"
 
 #. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup___last_update
+#: model:ir.model.fields,help:auto_backup.field_db_backup__message_unread
+msgid "If checked new messages require your attention."
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,help:auto_backup.field_db_backup__message_needaction
+msgid "If checked, new messages require your attention."
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,help:auto_backup.field_db_backup__message_has_error
+msgid "If checked, some messages have a delivery error."
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__message_is_follower
+msgid "Is Follower"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup____last_update
 msgid "Last Modified on"
 msgstr "Posledn?? zm??na dne"
 
 #. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup_write_uid
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__write_uid
 msgid "Last Updated by"
 msgstr "Naposledy aktualizov??no"
 
 #. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup_write_date
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__write_date
 msgid "Last Updated on"
 msgstr "Posledn?? aktualizace dne"
 
@@ -199,24 +254,64 @@ msgid "Local disk"
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup_method
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__message_main_attachment_id
+msgid "Main Attachment"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__message_has_error
+msgid "Message Delivery error"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__message_ids
+msgid "Messages"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__method
 msgid "Method"
 msgstr "Metoda"
 
 #. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup_name
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__name
 msgid "Name"
 msgstr "N??zev"
 
 #. module: auto_backup
-#: model:ir.model.fields,help:auto_backup.field_db_backup_sftp_private_key
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__message_needaction_counter
+msgid "Number of Actions"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__message_has_error_counter
+msgid "Number of error"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,help:auto_backup.field_db_backup__message_needaction_counter
+msgid "Number of messages which requires an action"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,help:auto_backup.field_db_backup__message_has_error_counter
+msgid "Number of messages with delivery error"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,help:auto_backup.field_db_backup__message_unread_counter
+msgid "Number of unread messages"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,help:auto_backup.field_db_backup__sftp_private_key
 msgid ""
 "Path to the private key file. Only the Odoo user should have read "
 "permissions for that file."
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup_sftp_private_key
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__sftp_private_key
 msgid "Private key location"
 msgstr ""
 
@@ -226,94 +321,124 @@ msgid "Remote SFTP server"
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup_sftp_password
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__sftp_password
 msgid "SFTP Password"
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup_sftp_port
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__sftp_port
 msgid "SFTP Port"
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup_sftp_host
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__sftp_host
 msgid "SFTP Server"
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+#: model_terms:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
 msgid "SFTP Settings"
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+#: model_terms:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
 msgid "Search the action named 'Backup scheduler'."
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+#: model_terms:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
 msgid ""
 "Set the scheduler to active and fill in how often you want backups generated."
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.model.fields,help:auto_backup.field_db_backup_name
+#: model:ir.model.fields,help:auto_backup.field_db_backup__name
 msgid "Summary of this backup process"
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+#: model_terms:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
 msgid "Test SFTP Connection"
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.model.fields,help:auto_backup.field_db_backup_sftp_host
+#: model:ir.model.fields,help:auto_backup.field_db_backup__sftp_host
 msgid ""
 "The host name or IP address from your remote server. For example 192.168.0.1"
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.model.fields,help:auto_backup.field_db_backup_sftp_password
+#: model:ir.model.fields,help:auto_backup.field_db_backup__sftp_password
 msgid ""
 "The password for the SFTP connection. If you specify a private key file, "
 "then this is the password to decrypt it."
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.model.fields,help:auto_backup.field_db_backup_sftp_port
+#: model:ir.model.fields,help:auto_backup.field_db_backup__sftp_port
 msgid "The port on the FTP server that accepts SSH/SFTP calls."
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.model.fields,help:auto_backup.field_db_backup_sftp_user
+#: model:ir.model.fields,help:auto_backup.field_db_backup__sftp_user
 msgid ""
 "The username where the SFTP connection should be made with. This is the user "
 "on the external server."
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__message_unread
+msgid "Unread Messages"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__message_unread_counter
+msgid "Unread Messages Counter"
+msgstr ""
+
+#. module: auto_backup
+#: model_terms:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
 msgid ""
 "Use SFTP with caution! This writes files to external servers under the path "
 "you specify."
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup_sftp_user
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__sftp_user
 msgid "Username in the SFTP Server"
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+#: model_terms:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
 msgid "Warning:"
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__website_message_ids
+msgid "Website Messages"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,help:auto_backup.field_db_backup__website_message_ids
+msgid "Website communication history"
+msgstr ""
+
+#. module: auto_backup
+#: model_terms:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
 msgid "john"
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+#: selection:db.backup,backup_format:0
+msgid "pg_dump custom format (without filestore)"
+msgstr ""
+
+#. module: auto_backup
+#: model_terms:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
 msgid "sftp.example.com"
 msgstr ""
+
+#. module: auto_backup
+#: selection:db.backup,backup_format:0
+msgid "zip (includes filestore)"
+msgstr ""
diff --git a/auto_backup/i18n/da.po b/auto_backup/i18n/da.po
index eeab6c914f9..68fdbdb7731 100644
--- a/auto_backup/i18n/da.po
+++ b/auto_backup/i18n/da.po
@@ -19,15 +19,25 @@ msgstr ""
 "Plural-Forms: nplurals=2; plural=(n != 1);\n"
 
 #. module: auto_backup
-#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+#: model_terms:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
 msgid "/home/odoo/.ssh/id_rsa"
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.model.fields,help:auto_backup.field_db_backup_folder
+#: model:ir.model.fields,help:auto_backup.field_db_backup__folder
 msgid "Absolute path for storing the backups"
 msgstr ""
 
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__message_needaction
+msgid "Action Needed"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__message_attachment_count
+msgid "Attachment Count"
+msgstr ""
+
 #. module: auto_backup
 #: model:ir.actions.act_window,name:auto_backup.action_backup_conf_form
 #: model:ir.ui.menu,name:auto_backup.backup_conf_menu
@@ -35,7 +45,7 @@ msgid "Automated Backups"
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+#: model_terms:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
 msgid "Automatic backups of the database can be scheduled as follows:"
 msgstr ""
 
@@ -44,6 +54,11 @@ msgstr ""
 msgid "Backup Failed"
 msgstr ""
 
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__backup_format
+msgid "Backup Format"
+msgstr ""
+
 #. module: auto_backup
 #: model:ir.actions.server,name:auto_backup.ir_cron_backup_scheduler_0_ir_actions_server
 #: model:ir.cron,cron_name:auto_backup.ir_cron_backup_scheduler_0
@@ -57,14 +72,14 @@ msgid "Backup Successful"
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.model.fields,help:auto_backup.field_db_backup_days_to_keep
+#: model:ir.model.fields,help:auto_backup.field_db_backup__days_to_keep
 msgid ""
 "Backups older than this will be deleted automatically. Set 0 to disable "
 "autodeletion."
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+#: model_terms:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
 msgid "Basic backup configuration"
 msgstr ""
 
@@ -74,35 +89,40 @@ msgid "Cannot duplicate a configuration."
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.model.fields,help:auto_backup.field_db_backup_method
+#: model:ir.model.fields,help:auto_backup.field_db_backup__backup_format
+msgid "Choose the format for this backup."
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,help:auto_backup.field_db_backup__method
 msgid "Choose the storage method for this backup."
 msgstr ""
 
 #. module: auto_backup
-#: code:addons/auto_backup/models/db_backup.py:249
+#: code:addons/auto_backup/models/db_backup.py:265
 #, python-format
 msgid "Cleanup of old database backups failed."
 msgstr ""
 
 #. module: auto_backup
-#: code:addons/auto_backup/models/db_backup.py:128
+#: code:addons/auto_backup/models/db_backup.py:137
 #, python-format
 msgid "Connection Test Failed!"
 msgstr ""
 
 #. module: auto_backup
-#: code:addons/auto_backup/models/db_backup.py:123
+#: code:addons/auto_backup/models/db_backup.py:132
 #, python-format
 msgid "Connection Test Succeeded!"
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup_create_uid
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__create_uid
 msgid "Created by"
 msgstr "Oprettet af"
 
 #. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup_create_date
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__create_date
 msgid "Created on"
 msgstr "Oprettet den"
 
@@ -112,38 +132,38 @@ msgid "Database Backup"
 msgstr ""
 
 #. module: auto_backup
-#: code:addons/auto_backup/models/db_backup.py:203
+#: code:addons/auto_backup/models/db_backup.py:219
 #: model:mail.message.subtype,description:auto_backup.mail_message_subtype_failure
 #, python-format
 msgid "Database backup failed."
 msgstr ""
 
 #. module: auto_backup
-#: code:addons/auto_backup/models/db_backup.py:211
+#: code:addons/auto_backup/models/db_backup.py:227
 #: model:mail.message.subtype,description:auto_backup.mail_message_subtype_success
 #, python-format
 msgid "Database backup succeeded."
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup_days_to_keep
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__days_to_keep
 msgid "Days To Keep"
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup_display_name
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__display_name
 msgid "Display Name"
 msgstr "Vist navn"
 
 #. module: auto_backup
-#: code:addons/auto_backup/models/db_backup.py:114
+#: code:addons/auto_backup/models/db_backup.py:123
 #, python-format
 msgid ""
 "Do not save backups on your filestore, or you will backup your backups too!"
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+#: model_terms:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
 msgid "Execute backup"
 msgstr ""
 
@@ -153,17 +173,32 @@ msgid "Execute backup(s)"
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup_folder
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__folder
 msgid "Folder"
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__message_follower_ids
+msgid "Followers"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__message_channel_ids
+msgid "Followers (Channels)"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__message_partner_ids
+msgid "Followers (Partners)"
+msgstr ""
+
+#. module: auto_backup
+#: model_terms:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
 msgid "Go to Settings / Technical / Automation / Scheduled Actions."
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+#: model_terms:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
 msgid "Help"
 msgstr ""
 
@@ -173,22 +208,42 @@ msgid "I cannot remove backups from the future. Ask Doc for that."
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup_id
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__id
 msgid "ID"
 msgstr "Id"
 
 #. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup___last_update
+#: model:ir.model.fields,help:auto_backup.field_db_backup__message_unread
+msgid "If checked new messages require your attention."
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,help:auto_backup.field_db_backup__message_needaction
+msgid "If checked, new messages require your attention."
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,help:auto_backup.field_db_backup__message_has_error
+msgid "If checked, some messages have a delivery error."
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__message_is_follower
+msgid "Is Follower"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup____last_update
 msgid "Last Modified on"
 msgstr "Sidst ??ndret den"
 
 #. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup_write_uid
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__write_uid
 msgid "Last Updated by"
 msgstr "Sidst opdateret af"
 
 #. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup_write_date
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__write_date
 msgid "Last Updated on"
 msgstr "Sidst opdateret den"
 
@@ -198,24 +253,64 @@ msgid "Local disk"
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup_method
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__message_main_attachment_id
+msgid "Main Attachment"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__message_has_error
+msgid "Message Delivery error"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__message_ids
+msgid "Messages"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__method
 msgid "Method"
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup_name
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__name
 msgid "Name"
 msgstr "Navn"
 
 #. module: auto_backup
-#: model:ir.model.fields,help:auto_backup.field_db_backup_sftp_private_key
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__message_needaction_counter
+msgid "Number of Actions"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__message_has_error_counter
+msgid "Number of error"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,help:auto_backup.field_db_backup__message_needaction_counter
+msgid "Number of messages which requires an action"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,help:auto_backup.field_db_backup__message_has_error_counter
+msgid "Number of messages with delivery error"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,help:auto_backup.field_db_backup__message_unread_counter
+msgid "Number of unread messages"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,help:auto_backup.field_db_backup__sftp_private_key
 msgid ""
 "Path to the private key file. Only the Odoo user should have read "
 "permissions for that file."
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup_sftp_private_key
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__sftp_private_key
 msgid "Private key location"
 msgstr ""
 
@@ -225,94 +320,124 @@ msgid "Remote SFTP server"
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup_sftp_password
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__sftp_password
 msgid "SFTP Password"
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup_sftp_port
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__sftp_port
 msgid "SFTP Port"
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup_sftp_host
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__sftp_host
 msgid "SFTP Server"
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+#: model_terms:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
 msgid "SFTP Settings"
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+#: model_terms:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
 msgid "Search the action named 'Backup scheduler'."
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+#: model_terms:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
 msgid ""
 "Set the scheduler to active and fill in how often you want backups generated."
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.model.fields,help:auto_backup.field_db_backup_name
+#: model:ir.model.fields,help:auto_backup.field_db_backup__name
 msgid "Summary of this backup process"
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+#: model_terms:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
 msgid "Test SFTP Connection"
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.model.fields,help:auto_backup.field_db_backup_sftp_host
+#: model:ir.model.fields,help:auto_backup.field_db_backup__sftp_host
 msgid ""
 "The host name or IP address from your remote server. For example 192.168.0.1"
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.model.fields,help:auto_backup.field_db_backup_sftp_password
+#: model:ir.model.fields,help:auto_backup.field_db_backup__sftp_password
 msgid ""
 "The password for the SFTP connection. If you specify a private key file, "
 "then this is the password to decrypt it."
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.model.fields,help:auto_backup.field_db_backup_sftp_port
+#: model:ir.model.fields,help:auto_backup.field_db_backup__sftp_port
 msgid "The port on the FTP server that accepts SSH/SFTP calls."
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.model.fields,help:auto_backup.field_db_backup_sftp_user
+#: model:ir.model.fields,help:auto_backup.field_db_backup__sftp_user
 msgid ""
 "The username where the SFTP connection should be made with. This is the user "
 "on the external server."
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__message_unread
+msgid "Unread Messages"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__message_unread_counter
+msgid "Unread Messages Counter"
+msgstr ""
+
+#. module: auto_backup
+#: model_terms:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
 msgid ""
 "Use SFTP with caution! This writes files to external servers under the path "
 "you specify."
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup_sftp_user
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__sftp_user
 msgid "Username in the SFTP Server"
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+#: model_terms:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
 msgid "Warning:"
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__website_message_ids
+msgid "Website Messages"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,help:auto_backup.field_db_backup__website_message_ids
+msgid "Website communication history"
+msgstr ""
+
+#. module: auto_backup
+#: model_terms:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
 msgid "john"
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+#: selection:db.backup,backup_format:0
+msgid "pg_dump custom format (without filestore)"
+msgstr ""
+
+#. module: auto_backup
+#: model_terms:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
 msgid "sftp.example.com"
 msgstr ""
+
+#. module: auto_backup
+#: selection:db.backup,backup_format:0
+msgid "zip (includes filestore)"
+msgstr ""
diff --git a/auto_backup/i18n/de.po b/auto_backup/i18n/de.po
index a7d675a2857..e5b70674a3f 100644
--- a/auto_backup/i18n/de.po
+++ b/auto_backup/i18n/de.po
@@ -19,15 +19,25 @@ msgstr ""
 "Plural-Forms: nplurals=2; plural=(n != 1);\n"
 
 #. module: auto_backup
-#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+#: model_terms:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
 msgid "/home/odoo/.ssh/id_rsa"
 msgstr "/home/odoo/.ssh/id_rsa"
 
 #. module: auto_backup
-#: model:ir.model.fields,help:auto_backup.field_db_backup_folder
+#: model:ir.model.fields,help:auto_backup.field_db_backup__folder
 msgid "Absolute path for storing the backups"
 msgstr "Absoluter Pfad zum Speichern der Sicherungen"
 
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__message_needaction
+msgid "Action Needed"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__message_attachment_count
+msgid "Attachment Count"
+msgstr ""
+
 #. module: auto_backup
 #: model:ir.actions.act_window,name:auto_backup.action_backup_conf_form
 #: model:ir.ui.menu,name:auto_backup.backup_conf_menu
@@ -35,7 +45,7 @@ msgid "Automated Backups"
 msgstr "Automatisiertes Backup"
 
 #. module: auto_backup
-#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+#: model_terms:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
 msgid "Automatic backups of the database can be scheduled as follows:"
 msgstr ""
 "Automatische Sicherungen der Datenbank k??nnen wie folgt geplant werden:"
@@ -45,6 +55,13 @@ msgstr ""
 msgid "Backup Failed"
 msgstr "Backup fehlgeschlagen"
 
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__backup_format
+#, fuzzy
+#| msgid "Backup Failed"
+msgid "Backup Format"
+msgstr "Backup fehlgeschlagen"
+
 #. module: auto_backup
 #: model:ir.actions.server,name:auto_backup.ir_cron_backup_scheduler_0_ir_actions_server
 #: model:ir.cron,cron_name:auto_backup.ir_cron_backup_scheduler_0
@@ -58,14 +75,14 @@ msgid "Backup Successful"
 msgstr "Backup erfolgreich"
 
 #. module: auto_backup
-#: model:ir.model.fields,help:auto_backup.field_db_backup_days_to_keep
+#: model:ir.model.fields,help:auto_backup.field_db_backup__days_to_keep
 msgid ""
 "Backups older than this will be deleted automatically. Set 0 to disable "
 "autodeletion."
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+#: model_terms:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
 msgid "Basic backup configuration"
 msgstr ""
 
@@ -75,35 +92,42 @@ msgid "Cannot duplicate a configuration."
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.model.fields,help:auto_backup.field_db_backup_method
+#: model:ir.model.fields,help:auto_backup.field_db_backup__backup_format
+#, fuzzy
+#| msgid "Absolute path for storing the backups"
+msgid "Choose the format for this backup."
+msgstr "Absoluter Pfad zum Speichern der Sicherungen"
+
+#. module: auto_backup
+#: model:ir.model.fields,help:auto_backup.field_db_backup__method
 msgid "Choose the storage method for this backup."
 msgstr ""
 
 #. module: auto_backup
-#: code:addons/auto_backup/models/db_backup.py:249
+#: code:addons/auto_backup/models/db_backup.py:265
 #, python-format
 msgid "Cleanup of old database backups failed."
 msgstr ""
 
 #. module: auto_backup
-#: code:addons/auto_backup/models/db_backup.py:128
+#: code:addons/auto_backup/models/db_backup.py:137
 #, python-format
 msgid "Connection Test Failed!"
 msgstr ""
 
 #. module: auto_backup
-#: code:addons/auto_backup/models/db_backup.py:123
+#: code:addons/auto_backup/models/db_backup.py:132
 #, python-format
 msgid "Connection Test Succeeded!"
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup_create_uid
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__create_uid
 msgid "Created by"
 msgstr "Erstellt von"
 
 #. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup_create_date
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__create_date
 msgid "Created on"
 msgstr "Erstellt am:"
 
@@ -113,38 +137,38 @@ msgid "Database Backup"
 msgstr ""
 
 #. module: auto_backup
-#: code:addons/auto_backup/models/db_backup.py:203
+#: code:addons/auto_backup/models/db_backup.py:219
 #: model:mail.message.subtype,description:auto_backup.mail_message_subtype_failure
 #, python-format
 msgid "Database backup failed."
 msgstr ""
 
 #. module: auto_backup
-#: code:addons/auto_backup/models/db_backup.py:211
+#: code:addons/auto_backup/models/db_backup.py:227
 #: model:mail.message.subtype,description:auto_backup.mail_message_subtype_success
 #, python-format
 msgid "Database backup succeeded."
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup_days_to_keep
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__days_to_keep
 msgid "Days To Keep"
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup_display_name
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__display_name
 msgid "Display Name"
 msgstr "Anzeigename"
 
 #. module: auto_backup
-#: code:addons/auto_backup/models/db_backup.py:114
+#: code:addons/auto_backup/models/db_backup.py:123
 #, python-format
 msgid ""
 "Do not save backups on your filestore, or you will backup your backups too!"
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+#: model_terms:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
 msgid "Execute backup"
 msgstr ""
 
@@ -154,18 +178,33 @@ msgid "Execute backup(s)"
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup_folder
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__folder
 msgid "Folder"
 msgstr "Ordner"
 
 #. module: auto_backup
-#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__message_follower_ids
+msgid "Followers"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__message_channel_ids
+msgid "Followers (Channels)"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__message_partner_ids
+msgid "Followers (Partners)"
+msgstr ""
+
+#. module: auto_backup
+#: model_terms:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
 msgid "Go to Settings / Technical / Automation / Scheduled Actions."
 msgstr ""
 "Gehen Sie zu Einstellungen / Technisch / Automation / Geplante Vorg??nge"
 
 #. module: auto_backup
-#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+#: model_terms:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
 msgid "Help"
 msgstr "Hilfe"
 
@@ -175,22 +214,42 @@ msgid "I cannot remove backups from the future. Ask Doc for that."
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup_id
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__id
 msgid "ID"
 msgstr "ID"
 
 #. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup___last_update
+#: model:ir.model.fields,help:auto_backup.field_db_backup__message_unread
+msgid "If checked new messages require your attention."
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,help:auto_backup.field_db_backup__message_needaction
+msgid "If checked, new messages require your attention."
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,help:auto_backup.field_db_backup__message_has_error
+msgid "If checked, some messages have a delivery error."
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__message_is_follower
+msgid "Is Follower"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup____last_update
 msgid "Last Modified on"
 msgstr "Zuletzt ge??ndert am"
 
 #. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup_write_uid
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__write_uid
 msgid "Last Updated by"
 msgstr "Zuletzt aktualisiert von"
 
 #. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup_write_date
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__write_date
 msgid "Last Updated on"
 msgstr "Zuletzt aktualisiert am"
 
@@ -200,24 +259,64 @@ msgid "Local disk"
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup_method
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__message_main_attachment_id
+msgid "Main Attachment"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__message_has_error
+msgid "Message Delivery error"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__message_ids
+msgid "Messages"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__method
 msgid "Method"
 msgstr "Methode"
 
 #. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup_name
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__name
 msgid "Name"
 msgstr "Name"
 
 #. module: auto_backup
-#: model:ir.model.fields,help:auto_backup.field_db_backup_sftp_private_key
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__message_needaction_counter
+msgid "Number of Actions"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__message_has_error_counter
+msgid "Number of error"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,help:auto_backup.field_db_backup__message_needaction_counter
+msgid "Number of messages which requires an action"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,help:auto_backup.field_db_backup__message_has_error_counter
+msgid "Number of messages with delivery error"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,help:auto_backup.field_db_backup__message_unread_counter
+msgid "Number of unread messages"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,help:auto_backup.field_db_backup__sftp_private_key
 msgid ""
 "Path to the private key file. Only the Odoo user should have read "
 "permissions for that file."
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup_sftp_private_key
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__sftp_private_key
 msgid "Private key location"
 msgstr ""
 
@@ -227,32 +326,32 @@ msgid "Remote SFTP server"
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup_sftp_password
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__sftp_password
 msgid "SFTP Password"
 msgstr "SFTP-Passwort"
 
 #. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup_sftp_port
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__sftp_port
 msgid "SFTP Port"
 msgstr "SFTP-Port"
 
 #. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup_sftp_host
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__sftp_host
 msgid "SFTP Server"
 msgstr "SFTP-Server"
 
 #. module: auto_backup
-#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+#: model_terms:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
 msgid "SFTP Settings"
 msgstr "SFTP Einstellungen"
 
 #. module: auto_backup
-#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+#: model_terms:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
 msgid "Search the action named 'Backup scheduler'."
 msgstr "Suchen Sie die Aktion mit dem Namen \"Backup Scheduler\"."
 
 #. module: auto_backup
-#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+#: model_terms:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
 msgid ""
 "Set the scheduler to active and fill in how often you want backups generated."
 msgstr ""
@@ -260,35 +359,35 @@ msgstr ""
 "erstellt werden soll."
 
 #. module: auto_backup
-#: model:ir.model.fields,help:auto_backup.field_db_backup_name
+#: model:ir.model.fields,help:auto_backup.field_db_backup__name
 msgid "Summary of this backup process"
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+#: model_terms:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
 msgid "Test SFTP Connection"
 msgstr "Verbindung testen"
 
 #. module: auto_backup
-#: model:ir.model.fields,help:auto_backup.field_db_backup_sftp_host
+#: model:ir.model.fields,help:auto_backup.field_db_backup__sftp_host
 msgid ""
 "The host name or IP address from your remote server. For example 192.168.0.1"
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.model.fields,help:auto_backup.field_db_backup_sftp_password
+#: model:ir.model.fields,help:auto_backup.field_db_backup__sftp_password
 msgid ""
 "The password for the SFTP connection. If you specify a private key file, "
 "then this is the password to decrypt it."
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.model.fields,help:auto_backup.field_db_backup_sftp_port
+#: model:ir.model.fields,help:auto_backup.field_db_backup__sftp_port
 msgid "The port on the FTP server that accepts SSH/SFTP calls."
 msgstr "Der Port auf dem FTP-Server, der SSH/SFTP Anfragen annimmt."
 
 #. module: auto_backup
-#: model:ir.model.fields,help:auto_backup.field_db_backup_sftp_user
+#: model:ir.model.fields,help:auto_backup.field_db_backup__sftp_user
 msgid ""
 "The username where the SFTP connection should be made with. This is the user "
 "on the external server."
@@ -297,7 +396,17 @@ msgstr ""
 "Dies ist der Benutzer auf dem externen Server."
 
 #. module: auto_backup
-#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__message_unread
+msgid "Unread Messages"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__message_unread_counter
+msgid "Unread Messages Counter"
+msgstr ""
+
+#. module: auto_backup
+#: model_terms:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
 msgid ""
 "Use SFTP with caution! This writes files to external servers under the path "
 "you specify."
@@ -306,21 +415,41 @@ msgstr ""
 "unter dem Pfad, den Sie angeben."
 
 #. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup_sftp_user
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__sftp_user
 msgid "Username in the SFTP Server"
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+#: model_terms:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
 msgid "Warning:"
 msgstr "Warnung:"
 
 #. module: auto_backup
-#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__website_message_ids
+msgid "Website Messages"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,help:auto_backup.field_db_backup__website_message_ids
+msgid "Website communication history"
+msgstr ""
+
+#. module: auto_backup
+#: model_terms:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
 msgid "john"
 msgstr "john"
 
 #. module: auto_backup
-#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+#: selection:db.backup,backup_format:0
+msgid "pg_dump custom format (without filestore)"
+msgstr ""
+
+#. module: auto_backup
+#: model_terms:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
 msgid "sftp.example.com"
 msgstr "sftp.example.com"
+
+#. module: auto_backup
+#: selection:db.backup,backup_format:0
+msgid "zip (includes filestore)"
+msgstr ""
diff --git a/auto_backup/i18n/el_GR.po b/auto_backup/i18n/el_GR.po
index 442bfb84744..05f1b3168a6 100644
--- a/auto_backup/i18n/el_GR.po
+++ b/auto_backup/i18n/el_GR.po
@@ -20,15 +20,25 @@ msgstr ""
 "Plural-Forms: nplurals=2; plural=(n != 1);\n"
 
 #. module: auto_backup
-#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+#: model_terms:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
 msgid "/home/odoo/.ssh/id_rsa"
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.model.fields,help:auto_backup.field_db_backup_folder
+#: model:ir.model.fields,help:auto_backup.field_db_backup__folder
 msgid "Absolute path for storing the backups"
 msgstr ""
 
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__message_needaction
+msgid "Action Needed"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__message_attachment_count
+msgid "Attachment Count"
+msgstr ""
+
 #. module: auto_backup
 #: model:ir.actions.act_window,name:auto_backup.action_backup_conf_form
 #: model:ir.ui.menu,name:auto_backup.backup_conf_menu
@@ -36,7 +46,7 @@ msgid "Automated Backups"
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+#: model_terms:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
 msgid "Automatic backups of the database can be scheduled as follows:"
 msgstr ""
 
@@ -45,6 +55,11 @@ msgstr ""
 msgid "Backup Failed"
 msgstr ""
 
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__backup_format
+msgid "Backup Format"
+msgstr ""
+
 #. module: auto_backup
 #: model:ir.actions.server,name:auto_backup.ir_cron_backup_scheduler_0_ir_actions_server
 #: model:ir.cron,cron_name:auto_backup.ir_cron_backup_scheduler_0
@@ -58,14 +73,14 @@ msgid "Backup Successful"
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.model.fields,help:auto_backup.field_db_backup_days_to_keep
+#: model:ir.model.fields,help:auto_backup.field_db_backup__days_to_keep
 msgid ""
 "Backups older than this will be deleted automatically. Set 0 to disable "
 "autodeletion."
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+#: model_terms:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
 msgid "Basic backup configuration"
 msgstr ""
 
@@ -75,35 +90,40 @@ msgid "Cannot duplicate a configuration."
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.model.fields,help:auto_backup.field_db_backup_method
+#: model:ir.model.fields,help:auto_backup.field_db_backup__backup_format
+msgid "Choose the format for this backup."
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,help:auto_backup.field_db_backup__method
 msgid "Choose the storage method for this backup."
 msgstr ""
 
 #. module: auto_backup
-#: code:addons/auto_backup/models/db_backup.py:249
+#: code:addons/auto_backup/models/db_backup.py:265
 #, python-format
 msgid "Cleanup of old database backups failed."
 msgstr ""
 
 #. module: auto_backup
-#: code:addons/auto_backup/models/db_backup.py:128
+#: code:addons/auto_backup/models/db_backup.py:137
 #, python-format
 msgid "Connection Test Failed!"
 msgstr ""
 
 #. module: auto_backup
-#: code:addons/auto_backup/models/db_backup.py:123
+#: code:addons/auto_backup/models/db_backup.py:132
 #, python-format
 msgid "Connection Test Succeeded!"
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup_create_uid
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__create_uid
 msgid "Created by"
 msgstr "?????????????????????????? ????????"
 
 #. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup_create_date
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__create_date
 msgid "Created on"
 msgstr "?????????????????????????? ??????"
 
@@ -113,38 +133,38 @@ msgid "Database Backup"
 msgstr ""
 
 #. module: auto_backup
-#: code:addons/auto_backup/models/db_backup.py:203
+#: code:addons/auto_backup/models/db_backup.py:219
 #: model:mail.message.subtype,description:auto_backup.mail_message_subtype_failure
 #, python-format
 msgid "Database backup failed."
 msgstr ""
 
 #. module: auto_backup
-#: code:addons/auto_backup/models/db_backup.py:211
+#: code:addons/auto_backup/models/db_backup.py:227
 #: model:mail.message.subtype,description:auto_backup.mail_message_subtype_success
 #, python-format
 msgid "Database backup succeeded."
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup_days_to_keep
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__days_to_keep
 msgid "Days To Keep"
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup_display_name
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__display_name
 msgid "Display Name"
 msgstr ""
 
 #. module: auto_backup
-#: code:addons/auto_backup/models/db_backup.py:114
+#: code:addons/auto_backup/models/db_backup.py:123
 #, python-format
 msgid ""
 "Do not save backups on your filestore, or you will backup your backups too!"
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+#: model_terms:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
 msgid "Execute backup"
 msgstr ""
 
@@ -154,17 +174,32 @@ msgid "Execute backup(s)"
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup_folder
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__folder
 msgid "Folder"
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__message_follower_ids
+msgid "Followers"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__message_channel_ids
+msgid "Followers (Channels)"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__message_partner_ids
+msgid "Followers (Partners)"
+msgstr ""
+
+#. module: auto_backup
+#: model_terms:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
 msgid "Go to Settings / Technical / Automation / Scheduled Actions."
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+#: model_terms:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
 msgid "Help"
 msgstr ""
 
@@ -174,22 +209,42 @@ msgid "I cannot remove backups from the future. Ask Doc for that."
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup_id
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__id
 msgid "ID"
 msgstr "ID"
 
 #. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup___last_update
+#: model:ir.model.fields,help:auto_backup.field_db_backup__message_unread
+msgid "If checked new messages require your attention."
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,help:auto_backup.field_db_backup__message_needaction
+msgid "If checked, new messages require your attention."
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,help:auto_backup.field_db_backup__message_has_error
+msgid "If checked, some messages have a delivery error."
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__message_is_follower
+msgid "Is Follower"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup____last_update
 msgid "Last Modified on"
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup_write_uid
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__write_uid
 msgid "Last Updated by"
 msgstr "?????????????????? ?????????????????? ??????"
 
 #. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup_write_date
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__write_date
 msgid "Last Updated on"
 msgstr "?????????????????? ?????????????????? ????????"
 
@@ -199,24 +254,64 @@ msgid "Local disk"
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup_method
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__message_main_attachment_id
+msgid "Main Attachment"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__message_has_error
+msgid "Message Delivery error"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__message_ids
+msgid "Messages"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__method
 msgid "Method"
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup_name
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__name
 msgid "Name"
 msgstr "????????????????"
 
 #. module: auto_backup
-#: model:ir.model.fields,help:auto_backup.field_db_backup_sftp_private_key
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__message_needaction_counter
+msgid "Number of Actions"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__message_has_error_counter
+msgid "Number of error"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,help:auto_backup.field_db_backup__message_needaction_counter
+msgid "Number of messages which requires an action"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,help:auto_backup.field_db_backup__message_has_error_counter
+msgid "Number of messages with delivery error"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,help:auto_backup.field_db_backup__message_unread_counter
+msgid "Number of unread messages"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,help:auto_backup.field_db_backup__sftp_private_key
 msgid ""
 "Path to the private key file. Only the Odoo user should have read "
 "permissions for that file."
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup_sftp_private_key
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__sftp_private_key
 msgid "Private key location"
 msgstr ""
 
@@ -226,94 +321,124 @@ msgid "Remote SFTP server"
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup_sftp_password
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__sftp_password
 msgid "SFTP Password"
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup_sftp_port
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__sftp_port
 msgid "SFTP Port"
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup_sftp_host
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__sftp_host
 msgid "SFTP Server"
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+#: model_terms:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
 msgid "SFTP Settings"
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+#: model_terms:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
 msgid "Search the action named 'Backup scheduler'."
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+#: model_terms:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
 msgid ""
 "Set the scheduler to active and fill in how often you want backups generated."
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.model.fields,help:auto_backup.field_db_backup_name
+#: model:ir.model.fields,help:auto_backup.field_db_backup__name
 msgid "Summary of this backup process"
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+#: model_terms:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
 msgid "Test SFTP Connection"
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.model.fields,help:auto_backup.field_db_backup_sftp_host
+#: model:ir.model.fields,help:auto_backup.field_db_backup__sftp_host
 msgid ""
 "The host name or IP address from your remote server. For example 192.168.0.1"
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.model.fields,help:auto_backup.field_db_backup_sftp_password
+#: model:ir.model.fields,help:auto_backup.field_db_backup__sftp_password
 msgid ""
 "The password for the SFTP connection. If you specify a private key file, "
 "then this is the password to decrypt it."
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.model.fields,help:auto_backup.field_db_backup_sftp_port
+#: model:ir.model.fields,help:auto_backup.field_db_backup__sftp_port
 msgid "The port on the FTP server that accepts SSH/SFTP calls."
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.model.fields,help:auto_backup.field_db_backup_sftp_user
+#: model:ir.model.fields,help:auto_backup.field_db_backup__sftp_user
 msgid ""
 "The username where the SFTP connection should be made with. This is the user "
 "on the external server."
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__message_unread
+msgid "Unread Messages"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__message_unread_counter
+msgid "Unread Messages Counter"
+msgstr ""
+
+#. module: auto_backup
+#: model_terms:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
 msgid ""
 "Use SFTP with caution! This writes files to external servers under the path "
 "you specify."
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup_sftp_user
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__sftp_user
 msgid "Username in the SFTP Server"
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+#: model_terms:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
 msgid "Warning:"
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__website_message_ids
+msgid "Website Messages"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,help:auto_backup.field_db_backup__website_message_ids
+msgid "Website communication history"
+msgstr ""
+
+#. module: auto_backup
+#: model_terms:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
 msgid "john"
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+#: selection:db.backup,backup_format:0
+msgid "pg_dump custom format (without filestore)"
+msgstr ""
+
+#. module: auto_backup
+#: model_terms:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
 msgid "sftp.example.com"
 msgstr ""
+
+#. module: auto_backup
+#: selection:db.backup,backup_format:0
+msgid "zip (includes filestore)"
+msgstr ""
diff --git a/auto_backup/i18n/en_GB.po b/auto_backup/i18n/en_GB.po
index 9f790e8659a..02a8fecd08e 100644
--- a/auto_backup/i18n/en_GB.po
+++ b/auto_backup/i18n/en_GB.po
@@ -20,15 +20,25 @@ msgstr ""
 "Plural-Forms: nplurals=2; plural=(n != 1);\n"
 
 #. module: auto_backup
-#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+#: model_terms:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
 msgid "/home/odoo/.ssh/id_rsa"
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.model.fields,help:auto_backup.field_db_backup_folder
+#: model:ir.model.fields,help:auto_backup.field_db_backup__folder
 msgid "Absolute path for storing the backups"
 msgstr ""
 
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__message_needaction
+msgid "Action Needed"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__message_attachment_count
+msgid "Attachment Count"
+msgstr ""
+
 #. module: auto_backup
 #: model:ir.actions.act_window,name:auto_backup.action_backup_conf_form
 #: model:ir.ui.menu,name:auto_backup.backup_conf_menu
@@ -36,7 +46,7 @@ msgid "Automated Backups"
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+#: model_terms:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
 msgid "Automatic backups of the database can be scheduled as follows:"
 msgstr ""
 
@@ -45,6 +55,11 @@ msgstr ""
 msgid "Backup Failed"
 msgstr ""
 
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__backup_format
+msgid "Backup Format"
+msgstr ""
+
 #. module: auto_backup
 #: model:ir.actions.server,name:auto_backup.ir_cron_backup_scheduler_0_ir_actions_server
 #: model:ir.cron,cron_name:auto_backup.ir_cron_backup_scheduler_0
@@ -58,14 +73,14 @@ msgid "Backup Successful"
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.model.fields,help:auto_backup.field_db_backup_days_to_keep
+#: model:ir.model.fields,help:auto_backup.field_db_backup__days_to_keep
 msgid ""
 "Backups older than this will be deleted automatically. Set 0 to disable "
 "autodeletion."
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+#: model_terms:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
 msgid "Basic backup configuration"
 msgstr ""
 
@@ -75,35 +90,40 @@ msgid "Cannot duplicate a configuration."
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.model.fields,help:auto_backup.field_db_backup_method
+#: model:ir.model.fields,help:auto_backup.field_db_backup__backup_format
+msgid "Choose the format for this backup."
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,help:auto_backup.field_db_backup__method
 msgid "Choose the storage method for this backup."
 msgstr ""
 
 #. module: auto_backup
-#: code:addons/auto_backup/models/db_backup.py:249
+#: code:addons/auto_backup/models/db_backup.py:265
 #, python-format
 msgid "Cleanup of old database backups failed."
 msgstr ""
 
 #. module: auto_backup
-#: code:addons/auto_backup/models/db_backup.py:128
+#: code:addons/auto_backup/models/db_backup.py:137
 #, python-format
 msgid "Connection Test Failed!"
 msgstr ""
 
 #. module: auto_backup
-#: code:addons/auto_backup/models/db_backup.py:123
+#: code:addons/auto_backup/models/db_backup.py:132
 #, python-format
 msgid "Connection Test Succeeded!"
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup_create_uid
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__create_uid
 msgid "Created by"
 msgstr "Created by"
 
 #. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup_create_date
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__create_date
 msgid "Created on"
 msgstr "Created on"
 
@@ -113,38 +133,38 @@ msgid "Database Backup"
 msgstr ""
 
 #. module: auto_backup
-#: code:addons/auto_backup/models/db_backup.py:203
+#: code:addons/auto_backup/models/db_backup.py:219
 #: model:mail.message.subtype,description:auto_backup.mail_message_subtype_failure
 #, python-format
 msgid "Database backup failed."
 msgstr ""
 
 #. module: auto_backup
-#: code:addons/auto_backup/models/db_backup.py:211
+#: code:addons/auto_backup/models/db_backup.py:227
 #: model:mail.message.subtype,description:auto_backup.mail_message_subtype_success
 #, python-format
 msgid "Database backup succeeded."
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup_days_to_keep
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__days_to_keep
 msgid "Days To Keep"
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup_display_name
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__display_name
 msgid "Display Name"
 msgstr "Display Name"
 
 #. module: auto_backup
-#: code:addons/auto_backup/models/db_backup.py:114
+#: code:addons/auto_backup/models/db_backup.py:123
 #, python-format
 msgid ""
 "Do not save backups on your filestore, or you will backup your backups too!"
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+#: model_terms:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
 msgid "Execute backup"
 msgstr ""
 
@@ -154,17 +174,32 @@ msgid "Execute backup(s)"
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup_folder
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__folder
 msgid "Folder"
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__message_follower_ids
+msgid "Followers"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__message_channel_ids
+msgid "Followers (Channels)"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__message_partner_ids
+msgid "Followers (Partners)"
+msgstr ""
+
+#. module: auto_backup
+#: model_terms:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
 msgid "Go to Settings / Technical / Automation / Scheduled Actions."
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+#: model_terms:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
 msgid "Help"
 msgstr ""
 
@@ -174,22 +209,42 @@ msgid "I cannot remove backups from the future. Ask Doc for that."
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup_id
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__id
 msgid "ID"
 msgstr "ID"
 
 #. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup___last_update
+#: model:ir.model.fields,help:auto_backup.field_db_backup__message_unread
+msgid "If checked new messages require your attention."
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,help:auto_backup.field_db_backup__message_needaction
+msgid "If checked, new messages require your attention."
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,help:auto_backup.field_db_backup__message_has_error
+msgid "If checked, some messages have a delivery error."
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__message_is_follower
+msgid "Is Follower"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup____last_update
 msgid "Last Modified on"
 msgstr "Last Modified on"
 
 #. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup_write_uid
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__write_uid
 msgid "Last Updated by"
 msgstr "Last Updated by"
 
 #. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup_write_date
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__write_date
 msgid "Last Updated on"
 msgstr "Last Updated on"
 
@@ -199,24 +254,64 @@ msgid "Local disk"
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup_method
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__message_main_attachment_id
+msgid "Main Attachment"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__message_has_error
+msgid "Message Delivery error"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__message_ids
+msgid "Messages"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__method
 msgid "Method"
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup_name
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__name
 msgid "Name"
 msgstr "Name"
 
 #. module: auto_backup
-#: model:ir.model.fields,help:auto_backup.field_db_backup_sftp_private_key
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__message_needaction_counter
+msgid "Number of Actions"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__message_has_error_counter
+msgid "Number of error"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,help:auto_backup.field_db_backup__message_needaction_counter
+msgid "Number of messages which requires an action"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,help:auto_backup.field_db_backup__message_has_error_counter
+msgid "Number of messages with delivery error"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,help:auto_backup.field_db_backup__message_unread_counter
+msgid "Number of unread messages"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,help:auto_backup.field_db_backup__sftp_private_key
 msgid ""
 "Path to the private key file. Only the Odoo user should have read "
 "permissions for that file."
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup_sftp_private_key
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__sftp_private_key
 msgid "Private key location"
 msgstr ""
 
@@ -226,94 +321,124 @@ msgid "Remote SFTP server"
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup_sftp_password
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__sftp_password
 msgid "SFTP Password"
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup_sftp_port
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__sftp_port
 msgid "SFTP Port"
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup_sftp_host
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__sftp_host
 msgid "SFTP Server"
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+#: model_terms:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
 msgid "SFTP Settings"
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+#: model_terms:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
 msgid "Search the action named 'Backup scheduler'."
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+#: model_terms:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
 msgid ""
 "Set the scheduler to active and fill in how often you want backups generated."
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.model.fields,help:auto_backup.field_db_backup_name
+#: model:ir.model.fields,help:auto_backup.field_db_backup__name
 msgid "Summary of this backup process"
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+#: model_terms:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
 msgid "Test SFTP Connection"
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.model.fields,help:auto_backup.field_db_backup_sftp_host
+#: model:ir.model.fields,help:auto_backup.field_db_backup__sftp_host
 msgid ""
 "The host name or IP address from your remote server. For example 192.168.0.1"
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.model.fields,help:auto_backup.field_db_backup_sftp_password
+#: model:ir.model.fields,help:auto_backup.field_db_backup__sftp_password
 msgid ""
 "The password for the SFTP connection. If you specify a private key file, "
 "then this is the password to decrypt it."
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.model.fields,help:auto_backup.field_db_backup_sftp_port
+#: model:ir.model.fields,help:auto_backup.field_db_backup__sftp_port
 msgid "The port on the FTP server that accepts SSH/SFTP calls."
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.model.fields,help:auto_backup.field_db_backup_sftp_user
+#: model:ir.model.fields,help:auto_backup.field_db_backup__sftp_user
 msgid ""
 "The username where the SFTP connection should be made with. This is the user "
 "on the external server."
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__message_unread
+msgid "Unread Messages"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__message_unread_counter
+msgid "Unread Messages Counter"
+msgstr ""
+
+#. module: auto_backup
+#: model_terms:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
 msgid ""
 "Use SFTP with caution! This writes files to external servers under the path "
 "you specify."
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup_sftp_user
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__sftp_user
 msgid "Username in the SFTP Server"
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+#: model_terms:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
 msgid "Warning:"
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__website_message_ids
+msgid "Website Messages"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,help:auto_backup.field_db_backup__website_message_ids
+msgid "Website communication history"
+msgstr ""
+
+#. module: auto_backup
+#: model_terms:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
 msgid "john"
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+#: selection:db.backup,backup_format:0
+msgid "pg_dump custom format (without filestore)"
+msgstr ""
+
+#. module: auto_backup
+#: model_terms:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
 msgid "sftp.example.com"
 msgstr ""
+
+#. module: auto_backup
+#: selection:db.backup,backup_format:0
+msgid "zip (includes filestore)"
+msgstr ""
diff --git a/auto_backup/i18n/es.po b/auto_backup/i18n/es.po
index 6d9f3bce149..615b6bc7900 100644
--- a/auto_backup/i18n/es.po
+++ b/auto_backup/i18n/es.po
@@ -19,15 +19,25 @@ msgstr ""
 "Plural-Forms: nplurals=2; plural=(n != 1);\n"
 
 #. module: auto_backup
-#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+#: model_terms:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
 msgid "/home/odoo/.ssh/id_rsa"
 msgstr "/home/odoo/.ssh/id_rsa"
 
 #. module: auto_backup
-#: model:ir.model.fields,help:auto_backup.field_db_backup_folder
+#: model:ir.model.fields,help:auto_backup.field_db_backup__folder
 msgid "Absolute path for storing the backups"
 msgstr "Ruta absoluta para almacenar las copias de seguridad"
 
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__message_needaction
+msgid "Action Needed"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__message_attachment_count
+msgid "Attachment Count"
+msgstr ""
+
 #. module: auto_backup
 #: model:ir.actions.act_window,name:auto_backup.action_backup_conf_form
 #: model:ir.ui.menu,name:auto_backup.backup_conf_menu
@@ -35,7 +45,7 @@ msgid "Automated Backups"
 msgstr "Copias de seguridad automatizadas"
 
 #. module: auto_backup
-#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+#: model_terms:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
 msgid "Automatic backups of the database can be scheduled as follows:"
 msgstr ""
 "Copias de seguridad autom??ticas de la base de datos se pueden programar de "
@@ -46,6 +56,13 @@ msgstr ""
 msgid "Backup Failed"
 msgstr "Error de copia de seguridad"
 
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__backup_format
+#, fuzzy
+#| msgid "Backup Failed"
+msgid "Backup Format"
+msgstr "Error de copia de seguridad"
+
 #. module: auto_backup
 #: model:ir.actions.server,name:auto_backup.ir_cron_backup_scheduler_0_ir_actions_server
 #: model:ir.cron,cron_name:auto_backup.ir_cron_backup_scheduler_0
@@ -59,7 +76,7 @@ msgid "Backup Successful"
 msgstr "Copia de seguridad con ??xito"
 
 #. module: auto_backup
-#: model:ir.model.fields,help:auto_backup.field_db_backup_days_to_keep
+#: model:ir.model.fields,help:auto_backup.field_db_backup__days_to_keep
 msgid ""
 "Backups older than this will be deleted automatically. Set 0 to disable "
 "autodeletion."
@@ -68,7 +85,7 @@ msgstr ""
 "autom??tica. Establecer a 0 para desactivar el borrado autom??tico."
 
 #. module: auto_backup
-#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+#: model_terms:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
 msgid "Basic backup configuration"
 msgstr "Configuraci??n b??sica de la copia de seguridad"
 
@@ -78,12 +95,19 @@ msgid "Cannot duplicate a configuration."
 msgstr "No se puede duplicar una configuraci??n."
 
 #. module: auto_backup
-#: model:ir.model.fields,help:auto_backup.field_db_backup_method
+#: model:ir.model.fields,help:auto_backup.field_db_backup__backup_format
+#, fuzzy
+#| msgid "Choose the storage method for this backup."
+msgid "Choose the format for this backup."
+msgstr "Elija el m??todo de almacenamiento para esta copia de seguridad."
+
+#. module: auto_backup
+#: model:ir.model.fields,help:auto_backup.field_db_backup__method
 msgid "Choose the storage method for this backup."
 msgstr "Elija el m??todo de almacenamiento para esta copia de seguridad."
 
 #. module: auto_backup
-#: code:addons/auto_backup/models/db_backup.py:249
+#: code:addons/auto_backup/models/db_backup.py:265
 #, python-format
 msgid "Cleanup of old database backups failed."
 msgstr ""
@@ -91,24 +115,24 @@ msgstr ""
 "fallado."
 
 #. module: auto_backup
-#: code:addons/auto_backup/models/db_backup.py:128
+#: code:addons/auto_backup/models/db_backup.py:137
 #, python-format
 msgid "Connection Test Failed!"
 msgstr "Error en la prueba de conexi??n!"
 
 #. module: auto_backup
-#: code:addons/auto_backup/models/db_backup.py:123
+#: code:addons/auto_backup/models/db_backup.py:132
 #, python-format
 msgid "Connection Test Succeeded!"
 msgstr "Prueba de conexi??n correcta!"
 
 #. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup_create_uid
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__create_uid
 msgid "Created by"
 msgstr "Creado por"
 
 #. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup_create_date
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__create_date
 msgid "Created on"
 msgstr "Creado el"
 
@@ -118,31 +142,31 @@ msgid "Database Backup"
 msgstr ""
 
 #. module: auto_backup
-#: code:addons/auto_backup/models/db_backup.py:203
+#: code:addons/auto_backup/models/db_backup.py:219
 #: model:mail.message.subtype,description:auto_backup.mail_message_subtype_failure
 #, python-format
 msgid "Database backup failed."
 msgstr "La copia de seguridad de la base de datos ha fallado."
 
 #. module: auto_backup
-#: code:addons/auto_backup/models/db_backup.py:211
+#: code:addons/auto_backup/models/db_backup.py:227
 #: model:mail.message.subtype,description:auto_backup.mail_message_subtype_success
 #, python-format
 msgid "Database backup succeeded."
 msgstr "La copia de seguridad de la base de datos se realizo correctamente"
 
 #. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup_days_to_keep
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__days_to_keep
 msgid "Days To Keep"
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup_display_name
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__display_name
 msgid "Display Name"
 msgstr "Nombre a mostrar"
 
 #. module: auto_backup
-#: code:addons/auto_backup/models/db_backup.py:114
+#: code:addons/auto_backup/models/db_backup.py:123
 #, python-format
 msgid ""
 "Do not save backups on your filestore, or you will backup your backups too!"
@@ -151,7 +175,7 @@ msgstr ""
 "las copias de seguridad tambi??n!"
 
 #. module: auto_backup
-#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+#: model_terms:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
 msgid "Execute backup"
 msgstr ""
 
@@ -161,17 +185,32 @@ msgid "Execute backup(s)"
 msgstr "Ejecutar copia(s) de seguridad"
 
 #. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup_folder
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__folder
 msgid "Folder"
 msgstr "Carpeta"
 
 #. module: auto_backup
-#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__message_follower_ids
+msgid "Followers"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__message_channel_ids
+msgid "Followers (Channels)"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__message_partner_ids
+msgid "Followers (Partners)"
+msgstr ""
+
+#. module: auto_backup
+#: model_terms:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
 msgid "Go to Settings / Technical / Automation / Scheduled Actions."
 msgstr "Ir a Configuraci??n / T??cnico / Automatizaci??n / Acciones Planificadas"
 
 #. module: auto_backup
-#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+#: model_terms:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
 msgid "Help"
 msgstr "Ayuda"
 
@@ -183,22 +222,42 @@ msgstr ""
 "documentaci??n para eso."
 
 #. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup_id
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__id
 msgid "ID"
 msgstr "ID"
 
 #. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup___last_update
+#: model:ir.model.fields,help:auto_backup.field_db_backup__message_unread
+msgid "If checked new messages require your attention."
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,help:auto_backup.field_db_backup__message_needaction
+msgid "If checked, new messages require your attention."
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,help:auto_backup.field_db_backup__message_has_error
+msgid "If checked, some messages have a delivery error."
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__message_is_follower
+msgid "Is Follower"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup____last_update
 msgid "Last Modified on"
 msgstr "??ltima actualizaci??n por"
 
 #. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup_write_uid
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__write_uid
 msgid "Last Updated by"
 msgstr "??ltima actualizaci??n por"
 
 #. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup_write_date
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__write_date
 msgid "Last Updated on"
 msgstr "??ltima actualizaci??n el"
 
@@ -208,17 +267,57 @@ msgid "Local disk"
 msgstr "Disco local"
 
 #. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup_method
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__message_main_attachment_id
+msgid "Main Attachment"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__message_has_error
+msgid "Message Delivery error"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__message_ids
+msgid "Messages"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__method
 msgid "Method"
 msgstr "M??todo"
 
 #. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup_name
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__name
 msgid "Name"
 msgstr "Nombre"
 
 #. module: auto_backup
-#: model:ir.model.fields,help:auto_backup.field_db_backup_sftp_private_key
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__message_needaction_counter
+msgid "Number of Actions"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__message_has_error_counter
+msgid "Number of error"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,help:auto_backup.field_db_backup__message_needaction_counter
+msgid "Number of messages which requires an action"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,help:auto_backup.field_db_backup__message_has_error_counter
+msgid "Number of messages with delivery error"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,help:auto_backup.field_db_backup__message_unread_counter
+msgid "Number of unread messages"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,help:auto_backup.field_db_backup__sftp_private_key
 msgid ""
 "Path to the private key file. Only the Odoo user should have read "
 "permissions for that file."
@@ -227,7 +326,7 @@ msgstr ""
 "de lectura para ese archivo."
 
 #. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup_sftp_private_key
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__sftp_private_key
 msgid "Private key location"
 msgstr "Ubicaci??n de la clave privada"
 
@@ -237,32 +336,32 @@ msgid "Remote SFTP server"
 msgstr "Servidor remoto SFTP"
 
 #. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup_sftp_password
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__sftp_password
 msgid "SFTP Password"
 msgstr "Contrase??a SFTP"
 
 #. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup_sftp_port
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__sftp_port
 msgid "SFTP Port"
 msgstr "Puerto SFTP"
 
 #. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup_sftp_host
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__sftp_host
 msgid "SFTP Server"
 msgstr "Servidor SFTP"
 
 #. module: auto_backup
-#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+#: model_terms:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
 msgid "SFTP Settings"
 msgstr "Configuraci??n de SFTP"
 
 #. module: auto_backup
-#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+#: model_terms:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
 msgid "Search the action named 'Backup scheduler'."
 msgstr "Buscar la acci??n llamada 'Backup sheduler'."
 
 #. module: auto_backup
-#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+#: model_terms:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
 msgid ""
 "Set the scheduler to active and fill in how often you want backups generated."
 msgstr ""
@@ -270,17 +369,17 @@ msgstr ""
 "copias de seguridad generadas."
 
 #. module: auto_backup
-#: model:ir.model.fields,help:auto_backup.field_db_backup_name
+#: model:ir.model.fields,help:auto_backup.field_db_backup__name
 msgid "Summary of this backup process"
 msgstr "Resumen de este proceso de copia de seguridad"
 
 #. module: auto_backup
-#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+#: model_terms:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
 msgid "Test SFTP Connection"
 msgstr "Prueba de conexi??n SFTP"
 
 #. module: auto_backup
-#: model:ir.model.fields,help:auto_backup.field_db_backup_sftp_host
+#: model:ir.model.fields,help:auto_backup.field_db_backup__sftp_host
 msgid ""
 "The host name or IP address from your remote server. For example 192.168.0.1"
 msgstr ""
@@ -288,7 +387,7 @@ msgstr ""
 "192.168.0.1"
 
 #. module: auto_backup
-#: model:ir.model.fields,help:auto_backup.field_db_backup_sftp_password
+#: model:ir.model.fields,help:auto_backup.field_db_backup__sftp_password
 msgid ""
 "The password for the SFTP connection. If you specify a private key file, "
 "then this is the password to decrypt it."
@@ -297,12 +396,12 @@ msgstr ""
 "privada, entonces esta es la contrase??a para descifrarlo."
 
 #. module: auto_backup
-#: model:ir.model.fields,help:auto_backup.field_db_backup_sftp_port
+#: model:ir.model.fields,help:auto_backup.field_db_backup__sftp_port
 msgid "The port on the FTP server that accepts SSH/SFTP calls."
 msgstr "El puerto en el servidor FTP que acepta llamadas de SSH/SFTP."
 
 #. module: auto_backup
-#: model:ir.model.fields,help:auto_backup.field_db_backup_sftp_user
+#: model:ir.model.fields,help:auto_backup.field_db_backup__sftp_user
 msgid ""
 "The username where the SFTP connection should be made with. This is the user "
 "on the external server."
@@ -311,7 +410,17 @@ msgstr ""
 "usuario en el servidor externo."
 
 #. module: auto_backup
-#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__message_unread
+msgid "Unread Messages"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__message_unread_counter
+msgid "Unread Messages Counter"
+msgstr ""
+
+#. module: auto_backup
+#: model_terms:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
 msgid ""
 "Use SFTP with caution! This writes files to external servers under the path "
 "you specify."
@@ -320,21 +429,41 @@ msgstr ""
 "ruta que especifique."
 
 #. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup_sftp_user
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__sftp_user
 msgid "Username in the SFTP Server"
 msgstr "Nombre del usuario en el servidor SFTP"
 
 #. module: auto_backup
-#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+#: model_terms:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
 msgid "Warning:"
 msgstr "Advertencia:"
 
 #. module: auto_backup
-#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__website_message_ids
+msgid "Website Messages"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,help:auto_backup.field_db_backup__website_message_ids
+msgid "Website communication history"
+msgstr ""
+
+#. module: auto_backup
+#: model_terms:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
 msgid "john"
 msgstr "john"
 
 #. module: auto_backup
-#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+#: selection:db.backup,backup_format:0
+msgid "pg_dump custom format (without filestore)"
+msgstr ""
+
+#. module: auto_backup
+#: model_terms:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
 msgid "sftp.example.com"
 msgstr "sftp.example.com"
+
+#. module: auto_backup
+#: selection:db.backup,backup_format:0
+msgid "zip (includes filestore)"
+msgstr ""
diff --git a/auto_backup/i18n/es_AR.po b/auto_backup/i18n/es_AR.po
index bbe4d1bc7ea..32d62418c0d 100644
--- a/auto_backup/i18n/es_AR.po
+++ b/auto_backup/i18n/es_AR.po
@@ -20,15 +20,25 @@ msgstr ""
 "Plural-Forms: nplurals=2; plural=(n != 1);\n"
 
 #. module: auto_backup
-#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+#: model_terms:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
 msgid "/home/odoo/.ssh/id_rsa"
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.model.fields,help:auto_backup.field_db_backup_folder
+#: model:ir.model.fields,help:auto_backup.field_db_backup__folder
 msgid "Absolute path for storing the backups"
 msgstr ""
 
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__message_needaction
+msgid "Action Needed"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__message_attachment_count
+msgid "Attachment Count"
+msgstr ""
+
 #. module: auto_backup
 #: model:ir.actions.act_window,name:auto_backup.action_backup_conf_form
 #: model:ir.ui.menu,name:auto_backup.backup_conf_menu
@@ -36,7 +46,7 @@ msgid "Automated Backups"
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+#: model_terms:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
 msgid "Automatic backups of the database can be scheduled as follows:"
 msgstr ""
 
@@ -45,6 +55,11 @@ msgstr ""
 msgid "Backup Failed"
 msgstr ""
 
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__backup_format
+msgid "Backup Format"
+msgstr ""
+
 #. module: auto_backup
 #: model:ir.actions.server,name:auto_backup.ir_cron_backup_scheduler_0_ir_actions_server
 #: model:ir.cron,cron_name:auto_backup.ir_cron_backup_scheduler_0
@@ -58,14 +73,14 @@ msgid "Backup Successful"
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.model.fields,help:auto_backup.field_db_backup_days_to_keep
+#: model:ir.model.fields,help:auto_backup.field_db_backup__days_to_keep
 msgid ""
 "Backups older than this will be deleted automatically. Set 0 to disable "
 "autodeletion."
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+#: model_terms:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
 msgid "Basic backup configuration"
 msgstr ""
 
@@ -75,35 +90,40 @@ msgid "Cannot duplicate a configuration."
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.model.fields,help:auto_backup.field_db_backup_method
+#: model:ir.model.fields,help:auto_backup.field_db_backup__backup_format
+msgid "Choose the format for this backup."
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,help:auto_backup.field_db_backup__method
 msgid "Choose the storage method for this backup."
 msgstr ""
 
 #. module: auto_backup
-#: code:addons/auto_backup/models/db_backup.py:249
+#: code:addons/auto_backup/models/db_backup.py:265
 #, python-format
 msgid "Cleanup of old database backups failed."
 msgstr ""
 
 #. module: auto_backup
-#: code:addons/auto_backup/models/db_backup.py:128
+#: code:addons/auto_backup/models/db_backup.py:137
 #, python-format
 msgid "Connection Test Failed!"
 msgstr ""
 
 #. module: auto_backup
-#: code:addons/auto_backup/models/db_backup.py:123
+#: code:addons/auto_backup/models/db_backup.py:132
 #, python-format
 msgid "Connection Test Succeeded!"
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup_create_uid
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__create_uid
 msgid "Created by"
 msgstr "Creado por"
 
 #. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup_create_date
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__create_date
 msgid "Created on"
 msgstr "Creado en"
 
@@ -113,38 +133,38 @@ msgid "Database Backup"
 msgstr ""
 
 #. module: auto_backup
-#: code:addons/auto_backup/models/db_backup.py:203
+#: code:addons/auto_backup/models/db_backup.py:219
 #: model:mail.message.subtype,description:auto_backup.mail_message_subtype_failure
 #, python-format
 msgid "Database backup failed."
 msgstr ""
 
 #. module: auto_backup
-#: code:addons/auto_backup/models/db_backup.py:211
+#: code:addons/auto_backup/models/db_backup.py:227
 #: model:mail.message.subtype,description:auto_backup.mail_message_subtype_success
 #, python-format
 msgid "Database backup succeeded."
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup_days_to_keep
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__days_to_keep
 msgid "Days To Keep"
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup_display_name
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__display_name
 msgid "Display Name"
 msgstr "Mostrar Nombre"
 
 #. module: auto_backup
-#: code:addons/auto_backup/models/db_backup.py:114
+#: code:addons/auto_backup/models/db_backup.py:123
 #, python-format
 msgid ""
 "Do not save backups on your filestore, or you will backup your backups too!"
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+#: model_terms:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
 msgid "Execute backup"
 msgstr ""
 
@@ -154,17 +174,32 @@ msgid "Execute backup(s)"
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup_folder
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__folder
 msgid "Folder"
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__message_follower_ids
+msgid "Followers"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__message_channel_ids
+msgid "Followers (Channels)"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__message_partner_ids
+msgid "Followers (Partners)"
+msgstr ""
+
+#. module: auto_backup
+#: model_terms:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
 msgid "Go to Settings / Technical / Automation / Scheduled Actions."
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+#: model_terms:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
 msgid "Help"
 msgstr ""
 
@@ -174,22 +209,42 @@ msgid "I cannot remove backups from the future. Ask Doc for that."
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup_id
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__id
 msgid "ID"
 msgstr "ID"
 
 #. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup___last_update
+#: model:ir.model.fields,help:auto_backup.field_db_backup__message_unread
+msgid "If checked new messages require your attention."
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,help:auto_backup.field_db_backup__message_needaction
+msgid "If checked, new messages require your attention."
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,help:auto_backup.field_db_backup__message_has_error
+msgid "If checked, some messages have a delivery error."
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__message_is_follower
+msgid "Is Follower"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup____last_update
 msgid "Last Modified on"
 msgstr "??ltima modificaci??n en"
 
 #. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup_write_uid
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__write_uid
 msgid "Last Updated by"
 msgstr "??ltima actualizaci??n realizada por"
 
 #. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup_write_date
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__write_date
 msgid "Last Updated on"
 msgstr "??ltima actualizaci??n el"
 
@@ -199,24 +254,64 @@ msgid "Local disk"
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup_method
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__message_main_attachment_id
+msgid "Main Attachment"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__message_has_error
+msgid "Message Delivery error"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__message_ids
+msgid "Messages"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__method
 msgid "Method"
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup_name
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__name
 msgid "Name"
 msgstr "Nombre"
 
 #. module: auto_backup
-#: model:ir.model.fields,help:auto_backup.field_db_backup_sftp_private_key
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__message_needaction_counter
+msgid "Number of Actions"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__message_has_error_counter
+msgid "Number of error"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,help:auto_backup.field_db_backup__message_needaction_counter
+msgid "Number of messages which requires an action"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,help:auto_backup.field_db_backup__message_has_error_counter
+msgid "Number of messages with delivery error"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,help:auto_backup.field_db_backup__message_unread_counter
+msgid "Number of unread messages"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,help:auto_backup.field_db_backup__sftp_private_key
 msgid ""
 "Path to the private key file. Only the Odoo user should have read "
 "permissions for that file."
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup_sftp_private_key
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__sftp_private_key
 msgid "Private key location"
 msgstr ""
 
@@ -226,94 +321,124 @@ msgid "Remote SFTP server"
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup_sftp_password
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__sftp_password
 msgid "SFTP Password"
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup_sftp_port
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__sftp_port
 msgid "SFTP Port"
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup_sftp_host
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__sftp_host
 msgid "SFTP Server"
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+#: model_terms:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
 msgid "SFTP Settings"
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+#: model_terms:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
 msgid "Search the action named 'Backup scheduler'."
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+#: model_terms:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
 msgid ""
 "Set the scheduler to active and fill in how often you want backups generated."
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.model.fields,help:auto_backup.field_db_backup_name
+#: model:ir.model.fields,help:auto_backup.field_db_backup__name
 msgid "Summary of this backup process"
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+#: model_terms:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
 msgid "Test SFTP Connection"
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.model.fields,help:auto_backup.field_db_backup_sftp_host
+#: model:ir.model.fields,help:auto_backup.field_db_backup__sftp_host
 msgid ""
 "The host name or IP address from your remote server. For example 192.168.0.1"
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.model.fields,help:auto_backup.field_db_backup_sftp_password
+#: model:ir.model.fields,help:auto_backup.field_db_backup__sftp_password
 msgid ""
 "The password for the SFTP connection. If you specify a private key file, "
 "then this is the password to decrypt it."
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.model.fields,help:auto_backup.field_db_backup_sftp_port
+#: model:ir.model.fields,help:auto_backup.field_db_backup__sftp_port
 msgid "The port on the FTP server that accepts SSH/SFTP calls."
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.model.fields,help:auto_backup.field_db_backup_sftp_user
+#: model:ir.model.fields,help:auto_backup.field_db_backup__sftp_user
 msgid ""
 "The username where the SFTP connection should be made with. This is the user "
 "on the external server."
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__message_unread
+msgid "Unread Messages"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__message_unread_counter
+msgid "Unread Messages Counter"
+msgstr ""
+
+#. module: auto_backup
+#: model_terms:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
 msgid ""
 "Use SFTP with caution! This writes files to external servers under the path "
 "you specify."
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup_sftp_user
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__sftp_user
 msgid "Username in the SFTP Server"
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+#: model_terms:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
 msgid "Warning:"
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__website_message_ids
+msgid "Website Messages"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,help:auto_backup.field_db_backup__website_message_ids
+msgid "Website communication history"
+msgstr ""
+
+#. module: auto_backup
+#: model_terms:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
 msgid "john"
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+#: selection:db.backup,backup_format:0
+msgid "pg_dump custom format (without filestore)"
+msgstr ""
+
+#. module: auto_backup
+#: model_terms:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
 msgid "sftp.example.com"
 msgstr ""
+
+#. module: auto_backup
+#: selection:db.backup,backup_format:0
+msgid "zip (includes filestore)"
+msgstr ""
diff --git a/auto_backup/i18n/es_CL.po b/auto_backup/i18n/es_CL.po
index b15d5e4478a..3a5fb7fd83e 100644
--- a/auto_backup/i18n/es_CL.po
+++ b/auto_backup/i18n/es_CL.po
@@ -20,15 +20,25 @@ msgstr ""
 "Plural-Forms: nplurals=2; plural=(n != 1);\n"
 
 #. module: auto_backup
-#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+#: model_terms:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
 msgid "/home/odoo/.ssh/id_rsa"
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.model.fields,help:auto_backup.field_db_backup_folder
+#: model:ir.model.fields,help:auto_backup.field_db_backup__folder
 msgid "Absolute path for storing the backups"
 msgstr ""
 
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__message_needaction
+msgid "Action Needed"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__message_attachment_count
+msgid "Attachment Count"
+msgstr ""
+
 #. module: auto_backup
 #: model:ir.actions.act_window,name:auto_backup.action_backup_conf_form
 #: model:ir.ui.menu,name:auto_backup.backup_conf_menu
@@ -36,7 +46,7 @@ msgid "Automated Backups"
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+#: model_terms:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
 msgid "Automatic backups of the database can be scheduled as follows:"
 msgstr ""
 
@@ -45,6 +55,11 @@ msgstr ""
 msgid "Backup Failed"
 msgstr ""
 
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__backup_format
+msgid "Backup Format"
+msgstr ""
+
 #. module: auto_backup
 #: model:ir.actions.server,name:auto_backup.ir_cron_backup_scheduler_0_ir_actions_server
 #: model:ir.cron,cron_name:auto_backup.ir_cron_backup_scheduler_0
@@ -58,14 +73,14 @@ msgid "Backup Successful"
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.model.fields,help:auto_backup.field_db_backup_days_to_keep
+#: model:ir.model.fields,help:auto_backup.field_db_backup__days_to_keep
 msgid ""
 "Backups older than this will be deleted automatically. Set 0 to disable "
 "autodeletion."
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+#: model_terms:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
 msgid "Basic backup configuration"
 msgstr ""
 
@@ -75,35 +90,40 @@ msgid "Cannot duplicate a configuration."
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.model.fields,help:auto_backup.field_db_backup_method
+#: model:ir.model.fields,help:auto_backup.field_db_backup__backup_format
+msgid "Choose the format for this backup."
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,help:auto_backup.field_db_backup__method
 msgid "Choose the storage method for this backup."
 msgstr ""
 
 #. module: auto_backup
-#: code:addons/auto_backup/models/db_backup.py:249
+#: code:addons/auto_backup/models/db_backup.py:265
 #, python-format
 msgid "Cleanup of old database backups failed."
 msgstr ""
 
 #. module: auto_backup
-#: code:addons/auto_backup/models/db_backup.py:128
+#: code:addons/auto_backup/models/db_backup.py:137
 #, python-format
 msgid "Connection Test Failed!"
 msgstr ""
 
 #. module: auto_backup
-#: code:addons/auto_backup/models/db_backup.py:123
+#: code:addons/auto_backup/models/db_backup.py:132
 #, python-format
 msgid "Connection Test Succeeded!"
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup_create_uid
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__create_uid
 msgid "Created by"
 msgstr "Creado por"
 
 #. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup_create_date
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__create_date
 msgid "Created on"
 msgstr "Creado en"
 
@@ -113,38 +133,38 @@ msgid "Database Backup"
 msgstr ""
 
 #. module: auto_backup
-#: code:addons/auto_backup/models/db_backup.py:203
+#: code:addons/auto_backup/models/db_backup.py:219
 #: model:mail.message.subtype,description:auto_backup.mail_message_subtype_failure
 #, python-format
 msgid "Database backup failed."
 msgstr ""
 
 #. module: auto_backup
-#: code:addons/auto_backup/models/db_backup.py:211
+#: code:addons/auto_backup/models/db_backup.py:227
 #: model:mail.message.subtype,description:auto_backup.mail_message_subtype_success
 #, python-format
 msgid "Database backup succeeded."
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup_days_to_keep
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__days_to_keep
 msgid "Days To Keep"
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup_display_name
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__display_name
 msgid "Display Name"
 msgstr "Nombre mostrado"
 
 #. module: auto_backup
-#: code:addons/auto_backup/models/db_backup.py:114
+#: code:addons/auto_backup/models/db_backup.py:123
 #, python-format
 msgid ""
 "Do not save backups on your filestore, or you will backup your backups too!"
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+#: model_terms:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
 msgid "Execute backup"
 msgstr ""
 
@@ -154,17 +174,32 @@ msgid "Execute backup(s)"
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup_folder
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__folder
 msgid "Folder"
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__message_follower_ids
+msgid "Followers"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__message_channel_ids
+msgid "Followers (Channels)"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__message_partner_ids
+msgid "Followers (Partners)"
+msgstr ""
+
+#. module: auto_backup
+#: model_terms:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
 msgid "Go to Settings / Technical / Automation / Scheduled Actions."
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+#: model_terms:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
 msgid "Help"
 msgstr ""
 
@@ -174,22 +209,42 @@ msgid "I cannot remove backups from the future. Ask Doc for that."
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup_id
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__id
 msgid "ID"
 msgstr "ID (identificaci??n)"
 
 #. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup___last_update
+#: model:ir.model.fields,help:auto_backup.field_db_backup__message_unread
+msgid "If checked new messages require your attention."
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,help:auto_backup.field_db_backup__message_needaction
+msgid "If checked, new messages require your attention."
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,help:auto_backup.field_db_backup__message_has_error
+msgid "If checked, some messages have a delivery error."
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__message_is_follower
+msgid "Is Follower"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup____last_update
 msgid "Last Modified on"
 msgstr "??ltima modificaci??n en"
 
 #. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup_write_uid
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__write_uid
 msgid "Last Updated by"
 msgstr "??ltima actualizaci??n de"
 
 #. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup_write_date
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__write_date
 msgid "Last Updated on"
 msgstr "??ltima actualizaci??n en"
 
@@ -199,24 +254,64 @@ msgid "Local disk"
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup_method
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__message_main_attachment_id
+msgid "Main Attachment"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__message_has_error
+msgid "Message Delivery error"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__message_ids
+msgid "Messages"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__method
 msgid "Method"
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup_name
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__name
 msgid "Name"
 msgstr "Nombre"
 
 #. module: auto_backup
-#: model:ir.model.fields,help:auto_backup.field_db_backup_sftp_private_key
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__message_needaction_counter
+msgid "Number of Actions"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__message_has_error_counter
+msgid "Number of error"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,help:auto_backup.field_db_backup__message_needaction_counter
+msgid "Number of messages which requires an action"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,help:auto_backup.field_db_backup__message_has_error_counter
+msgid "Number of messages with delivery error"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,help:auto_backup.field_db_backup__message_unread_counter
+msgid "Number of unread messages"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,help:auto_backup.field_db_backup__sftp_private_key
 msgid ""
 "Path to the private key file. Only the Odoo user should have read "
 "permissions for that file."
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup_sftp_private_key
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__sftp_private_key
 msgid "Private key location"
 msgstr ""
 
@@ -226,94 +321,124 @@ msgid "Remote SFTP server"
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup_sftp_password
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__sftp_password
 msgid "SFTP Password"
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup_sftp_port
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__sftp_port
 msgid "SFTP Port"
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup_sftp_host
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__sftp_host
 msgid "SFTP Server"
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+#: model_terms:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
 msgid "SFTP Settings"
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+#: model_terms:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
 msgid "Search the action named 'Backup scheduler'."
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+#: model_terms:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
 msgid ""
 "Set the scheduler to active and fill in how often you want backups generated."
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.model.fields,help:auto_backup.field_db_backup_name
+#: model:ir.model.fields,help:auto_backup.field_db_backup__name
 msgid "Summary of this backup process"
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+#: model_terms:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
 msgid "Test SFTP Connection"
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.model.fields,help:auto_backup.field_db_backup_sftp_host
+#: model:ir.model.fields,help:auto_backup.field_db_backup__sftp_host
 msgid ""
 "The host name or IP address from your remote server. For example 192.168.0.1"
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.model.fields,help:auto_backup.field_db_backup_sftp_password
+#: model:ir.model.fields,help:auto_backup.field_db_backup__sftp_password
 msgid ""
 "The password for the SFTP connection. If you specify a private key file, "
 "then this is the password to decrypt it."
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.model.fields,help:auto_backup.field_db_backup_sftp_port
+#: model:ir.model.fields,help:auto_backup.field_db_backup__sftp_port
 msgid "The port on the FTP server that accepts SSH/SFTP calls."
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.model.fields,help:auto_backup.field_db_backup_sftp_user
+#: model:ir.model.fields,help:auto_backup.field_db_backup__sftp_user
 msgid ""
 "The username where the SFTP connection should be made with. This is the user "
 "on the external server."
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__message_unread
+msgid "Unread Messages"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__message_unread_counter
+msgid "Unread Messages Counter"
+msgstr ""
+
+#. module: auto_backup
+#: model_terms:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
 msgid ""
 "Use SFTP with caution! This writes files to external servers under the path "
 "you specify."
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup_sftp_user
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__sftp_user
 msgid "Username in the SFTP Server"
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+#: model_terms:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
 msgid "Warning:"
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__website_message_ids
+msgid "Website Messages"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,help:auto_backup.field_db_backup__website_message_ids
+msgid "Website communication history"
+msgstr ""
+
+#. module: auto_backup
+#: model_terms:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
 msgid "john"
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+#: selection:db.backup,backup_format:0
+msgid "pg_dump custom format (without filestore)"
+msgstr ""
+
+#. module: auto_backup
+#: model_terms:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
 msgid "sftp.example.com"
 msgstr ""
+
+#. module: auto_backup
+#: selection:db.backup,backup_format:0
+msgid "zip (includes filestore)"
+msgstr ""
diff --git a/auto_backup/i18n/es_CO.po b/auto_backup/i18n/es_CO.po
index 82b2c1d3a1e..43f403d8431 100644
--- a/auto_backup/i18n/es_CO.po
+++ b/auto_backup/i18n/es_CO.po
@@ -20,15 +20,25 @@ msgstr ""
 "Plural-Forms: nplurals=2; plural=(n != 1);\n"
 
 #. module: auto_backup
-#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+#: model_terms:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
 msgid "/home/odoo/.ssh/id_rsa"
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.model.fields,help:auto_backup.field_db_backup_folder
+#: model:ir.model.fields,help:auto_backup.field_db_backup__folder
 msgid "Absolute path for storing the backups"
 msgstr ""
 
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__message_needaction
+msgid "Action Needed"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__message_attachment_count
+msgid "Attachment Count"
+msgstr ""
+
 #. module: auto_backup
 #: model:ir.actions.act_window,name:auto_backup.action_backup_conf_form
 #: model:ir.ui.menu,name:auto_backup.backup_conf_menu
@@ -36,7 +46,7 @@ msgid "Automated Backups"
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+#: model_terms:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
 msgid "Automatic backups of the database can be scheduled as follows:"
 msgstr ""
 
@@ -45,6 +55,11 @@ msgstr ""
 msgid "Backup Failed"
 msgstr ""
 
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__backup_format
+msgid "Backup Format"
+msgstr ""
+
 #. module: auto_backup
 #: model:ir.actions.server,name:auto_backup.ir_cron_backup_scheduler_0_ir_actions_server
 #: model:ir.cron,cron_name:auto_backup.ir_cron_backup_scheduler_0
@@ -58,14 +73,14 @@ msgid "Backup Successful"
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.model.fields,help:auto_backup.field_db_backup_days_to_keep
+#: model:ir.model.fields,help:auto_backup.field_db_backup__days_to_keep
 msgid ""
 "Backups older than this will be deleted automatically. Set 0 to disable "
 "autodeletion."
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+#: model_terms:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
 msgid "Basic backup configuration"
 msgstr ""
 
@@ -75,35 +90,40 @@ msgid "Cannot duplicate a configuration."
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.model.fields,help:auto_backup.field_db_backup_method
+#: model:ir.model.fields,help:auto_backup.field_db_backup__backup_format
+msgid "Choose the format for this backup."
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,help:auto_backup.field_db_backup__method
 msgid "Choose the storage method for this backup."
 msgstr ""
 
 #. module: auto_backup
-#: code:addons/auto_backup/models/db_backup.py:249
+#: code:addons/auto_backup/models/db_backup.py:265
 #, python-format
 msgid "Cleanup of old database backups failed."
 msgstr ""
 
 #. module: auto_backup
-#: code:addons/auto_backup/models/db_backup.py:128
+#: code:addons/auto_backup/models/db_backup.py:137
 #, python-format
 msgid "Connection Test Failed!"
 msgstr ""
 
 #. module: auto_backup
-#: code:addons/auto_backup/models/db_backup.py:123
+#: code:addons/auto_backup/models/db_backup.py:132
 #, python-format
 msgid "Connection Test Succeeded!"
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup_create_uid
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__create_uid
 msgid "Created by"
 msgstr "Creado por"
 
 #. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup_create_date
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__create_date
 msgid "Created on"
 msgstr "Creado"
 
@@ -113,38 +133,38 @@ msgid "Database Backup"
 msgstr ""
 
 #. module: auto_backup
-#: code:addons/auto_backup/models/db_backup.py:203
+#: code:addons/auto_backup/models/db_backup.py:219
 #: model:mail.message.subtype,description:auto_backup.mail_message_subtype_failure
 #, python-format
 msgid "Database backup failed."
 msgstr ""
 
 #. module: auto_backup
-#: code:addons/auto_backup/models/db_backup.py:211
+#: code:addons/auto_backup/models/db_backup.py:227
 #: model:mail.message.subtype,description:auto_backup.mail_message_subtype_success
 #, python-format
 msgid "Database backup succeeded."
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup_days_to_keep
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__days_to_keep
 msgid "Days To Keep"
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup_display_name
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__display_name
 msgid "Display Name"
 msgstr "Nombre P??blico"
 
 #. module: auto_backup
-#: code:addons/auto_backup/models/db_backup.py:114
+#: code:addons/auto_backup/models/db_backup.py:123
 #, python-format
 msgid ""
 "Do not save backups on your filestore, or you will backup your backups too!"
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+#: model_terms:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
 msgid "Execute backup"
 msgstr ""
 
@@ -154,17 +174,32 @@ msgid "Execute backup(s)"
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup_folder
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__folder
 msgid "Folder"
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__message_follower_ids
+msgid "Followers"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__message_channel_ids
+msgid "Followers (Channels)"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__message_partner_ids
+msgid "Followers (Partners)"
+msgstr ""
+
+#. module: auto_backup
+#: model_terms:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
 msgid "Go to Settings / Technical / Automation / Scheduled Actions."
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+#: model_terms:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
 msgid "Help"
 msgstr ""
 
@@ -174,22 +209,42 @@ msgid "I cannot remove backups from the future. Ask Doc for that."
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup_id
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__id
 msgid "ID"
 msgstr "ID"
 
 #. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup___last_update
+#: model:ir.model.fields,help:auto_backup.field_db_backup__message_unread
+msgid "If checked new messages require your attention."
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,help:auto_backup.field_db_backup__message_needaction
+msgid "If checked, new messages require your attention."
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,help:auto_backup.field_db_backup__message_has_error
+msgid "If checked, some messages have a delivery error."
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__message_is_follower
+msgid "Is Follower"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup____last_update
 msgid "Last Modified on"
 msgstr "??ltima Modificaci??n el"
 
 #. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup_write_uid
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__write_uid
 msgid "Last Updated by"
 msgstr "Actualizado por"
 
 #. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup_write_date
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__write_date
 msgid "Last Updated on"
 msgstr "Actualizado"
 
@@ -199,24 +254,64 @@ msgid "Local disk"
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup_method
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__message_main_attachment_id
+msgid "Main Attachment"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__message_has_error
+msgid "Message Delivery error"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__message_ids
+msgid "Messages"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__method
 msgid "Method"
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup_name
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__name
 msgid "Name"
 msgstr "Nombre"
 
 #. module: auto_backup
-#: model:ir.model.fields,help:auto_backup.field_db_backup_sftp_private_key
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__message_needaction_counter
+msgid "Number of Actions"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__message_has_error_counter
+msgid "Number of error"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,help:auto_backup.field_db_backup__message_needaction_counter
+msgid "Number of messages which requires an action"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,help:auto_backup.field_db_backup__message_has_error_counter
+msgid "Number of messages with delivery error"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,help:auto_backup.field_db_backup__message_unread_counter
+msgid "Number of unread messages"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,help:auto_backup.field_db_backup__sftp_private_key
 msgid ""
 "Path to the private key file. Only the Odoo user should have read "
 "permissions for that file."
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup_sftp_private_key
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__sftp_private_key
 msgid "Private key location"
 msgstr ""
 
@@ -226,94 +321,124 @@ msgid "Remote SFTP server"
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup_sftp_password
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__sftp_password
 msgid "SFTP Password"
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup_sftp_port
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__sftp_port
 msgid "SFTP Port"
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup_sftp_host
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__sftp_host
 msgid "SFTP Server"
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+#: model_terms:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
 msgid "SFTP Settings"
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+#: model_terms:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
 msgid "Search the action named 'Backup scheduler'."
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+#: model_terms:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
 msgid ""
 "Set the scheduler to active and fill in how often you want backups generated."
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.model.fields,help:auto_backup.field_db_backup_name
+#: model:ir.model.fields,help:auto_backup.field_db_backup__name
 msgid "Summary of this backup process"
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+#: model_terms:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
 msgid "Test SFTP Connection"
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.model.fields,help:auto_backup.field_db_backup_sftp_host
+#: model:ir.model.fields,help:auto_backup.field_db_backup__sftp_host
 msgid ""
 "The host name or IP address from your remote server. For example 192.168.0.1"
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.model.fields,help:auto_backup.field_db_backup_sftp_password
+#: model:ir.model.fields,help:auto_backup.field_db_backup__sftp_password
 msgid ""
 "The password for the SFTP connection. If you specify a private key file, "
 "then this is the password to decrypt it."
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.model.fields,help:auto_backup.field_db_backup_sftp_port
+#: model:ir.model.fields,help:auto_backup.field_db_backup__sftp_port
 msgid "The port on the FTP server that accepts SSH/SFTP calls."
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.model.fields,help:auto_backup.field_db_backup_sftp_user
+#: model:ir.model.fields,help:auto_backup.field_db_backup__sftp_user
 msgid ""
 "The username where the SFTP connection should be made with. This is the user "
 "on the external server."
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__message_unread
+msgid "Unread Messages"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__message_unread_counter
+msgid "Unread Messages Counter"
+msgstr ""
+
+#. module: auto_backup
+#: model_terms:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
 msgid ""
 "Use SFTP with caution! This writes files to external servers under the path "
 "you specify."
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup_sftp_user
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__sftp_user
 msgid "Username in the SFTP Server"
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+#: model_terms:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
 msgid "Warning:"
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__website_message_ids
+msgid "Website Messages"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,help:auto_backup.field_db_backup__website_message_ids
+msgid "Website communication history"
+msgstr ""
+
+#. module: auto_backup
+#: model_terms:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
 msgid "john"
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+#: selection:db.backup,backup_format:0
+msgid "pg_dump custom format (without filestore)"
+msgstr ""
+
+#. module: auto_backup
+#: model_terms:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
 msgid "sftp.example.com"
 msgstr ""
+
+#. module: auto_backup
+#: selection:db.backup,backup_format:0
+msgid "zip (includes filestore)"
+msgstr ""
diff --git a/auto_backup/i18n/es_CR.po b/auto_backup/i18n/es_CR.po
index fe99d78e0a8..0ad1ed4a4e6 100644
--- a/auto_backup/i18n/es_CR.po
+++ b/auto_backup/i18n/es_CR.po
@@ -20,15 +20,25 @@ msgstr ""
 "Plural-Forms: nplurals=2; plural=(n != 1);\n"
 
 #. module: auto_backup
-#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+#: model_terms:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
 msgid "/home/odoo/.ssh/id_rsa"
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.model.fields,help:auto_backup.field_db_backup_folder
+#: model:ir.model.fields,help:auto_backup.field_db_backup__folder
 msgid "Absolute path for storing the backups"
 msgstr ""
 
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__message_needaction
+msgid "Action Needed"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__message_attachment_count
+msgid "Attachment Count"
+msgstr ""
+
 #. module: auto_backup
 #: model:ir.actions.act_window,name:auto_backup.action_backup_conf_form
 #: model:ir.ui.menu,name:auto_backup.backup_conf_menu
@@ -36,7 +46,7 @@ msgid "Automated Backups"
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+#: model_terms:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
 msgid "Automatic backups of the database can be scheduled as follows:"
 msgstr ""
 
@@ -45,6 +55,11 @@ msgstr ""
 msgid "Backup Failed"
 msgstr ""
 
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__backup_format
+msgid "Backup Format"
+msgstr ""
+
 #. module: auto_backup
 #: model:ir.actions.server,name:auto_backup.ir_cron_backup_scheduler_0_ir_actions_server
 #: model:ir.cron,cron_name:auto_backup.ir_cron_backup_scheduler_0
@@ -58,14 +73,14 @@ msgid "Backup Successful"
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.model.fields,help:auto_backup.field_db_backup_days_to_keep
+#: model:ir.model.fields,help:auto_backup.field_db_backup__days_to_keep
 msgid ""
 "Backups older than this will be deleted automatically. Set 0 to disable "
 "autodeletion."
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+#: model_terms:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
 msgid "Basic backup configuration"
 msgstr ""
 
@@ -75,35 +90,40 @@ msgid "Cannot duplicate a configuration."
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.model.fields,help:auto_backup.field_db_backup_method
+#: model:ir.model.fields,help:auto_backup.field_db_backup__backup_format
+msgid "Choose the format for this backup."
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,help:auto_backup.field_db_backup__method
 msgid "Choose the storage method for this backup."
 msgstr ""
 
 #. module: auto_backup
-#: code:addons/auto_backup/models/db_backup.py:249
+#: code:addons/auto_backup/models/db_backup.py:265
 #, python-format
 msgid "Cleanup of old database backups failed."
 msgstr ""
 
 #. module: auto_backup
-#: code:addons/auto_backup/models/db_backup.py:128
+#: code:addons/auto_backup/models/db_backup.py:137
 #, python-format
 msgid "Connection Test Failed!"
 msgstr ""
 
 #. module: auto_backup
-#: code:addons/auto_backup/models/db_backup.py:123
+#: code:addons/auto_backup/models/db_backup.py:132
 #, python-format
 msgid "Connection Test Succeeded!"
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup_create_uid
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__create_uid
 msgid "Created by"
 msgstr "Creado por"
 
 #. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup_create_date
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__create_date
 msgid "Created on"
 msgstr "Creado en"
 
@@ -113,38 +133,38 @@ msgid "Database Backup"
 msgstr ""
 
 #. module: auto_backup
-#: code:addons/auto_backup/models/db_backup.py:203
+#: code:addons/auto_backup/models/db_backup.py:219
 #: model:mail.message.subtype,description:auto_backup.mail_message_subtype_failure
 #, python-format
 msgid "Database backup failed."
 msgstr ""
 
 #. module: auto_backup
-#: code:addons/auto_backup/models/db_backup.py:211
+#: code:addons/auto_backup/models/db_backup.py:227
 #: model:mail.message.subtype,description:auto_backup.mail_message_subtype_success
 #, python-format
 msgid "Database backup succeeded."
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup_days_to_keep
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__days_to_keep
 msgid "Days To Keep"
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup_display_name
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__display_name
 msgid "Display Name"
 msgstr ""
 
 #. module: auto_backup
-#: code:addons/auto_backup/models/db_backup.py:114
+#: code:addons/auto_backup/models/db_backup.py:123
 #, python-format
 msgid ""
 "Do not save backups on your filestore, or you will backup your backups too!"
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+#: model_terms:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
 msgid "Execute backup"
 msgstr ""
 
@@ -154,17 +174,32 @@ msgid "Execute backup(s)"
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup_folder
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__folder
 msgid "Folder"
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__message_follower_ids
+msgid "Followers"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__message_channel_ids
+msgid "Followers (Channels)"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__message_partner_ids
+msgid "Followers (Partners)"
+msgstr ""
+
+#. module: auto_backup
+#: model_terms:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
 msgid "Go to Settings / Technical / Automation / Scheduled Actions."
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+#: model_terms:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
 msgid "Help"
 msgstr ""
 
@@ -174,22 +209,42 @@ msgid "I cannot remove backups from the future. Ask Doc for that."
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup_id
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__id
 msgid "ID"
 msgstr "ID"
 
 #. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup___last_update
+#: model:ir.model.fields,help:auto_backup.field_db_backup__message_unread
+msgid "If checked new messages require your attention."
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,help:auto_backup.field_db_backup__message_needaction
+msgid "If checked, new messages require your attention."
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,help:auto_backup.field_db_backup__message_has_error
+msgid "If checked, some messages have a delivery error."
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__message_is_follower
+msgid "Is Follower"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup____last_update
 msgid "Last Modified on"
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup_write_uid
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__write_uid
 msgid "Last Updated by"
 msgstr "Ultima actualizaci??n por"
 
 #. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup_write_date
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__write_date
 msgid "Last Updated on"
 msgstr "Ultima actualizaci??n en"
 
@@ -199,24 +254,64 @@ msgid "Local disk"
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup_method
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__message_main_attachment_id
+msgid "Main Attachment"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__message_has_error
+msgid "Message Delivery error"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__message_ids
+msgid "Messages"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__method
 msgid "Method"
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup_name
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__name
 msgid "Name"
 msgstr "Nombre"
 
 #. module: auto_backup
-#: model:ir.model.fields,help:auto_backup.field_db_backup_sftp_private_key
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__message_needaction_counter
+msgid "Number of Actions"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__message_has_error_counter
+msgid "Number of error"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,help:auto_backup.field_db_backup__message_needaction_counter
+msgid "Number of messages which requires an action"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,help:auto_backup.field_db_backup__message_has_error_counter
+msgid "Number of messages with delivery error"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,help:auto_backup.field_db_backup__message_unread_counter
+msgid "Number of unread messages"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,help:auto_backup.field_db_backup__sftp_private_key
 msgid ""
 "Path to the private key file. Only the Odoo user should have read "
 "permissions for that file."
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup_sftp_private_key
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__sftp_private_key
 msgid "Private key location"
 msgstr ""
 
@@ -226,94 +321,124 @@ msgid "Remote SFTP server"
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup_sftp_password
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__sftp_password
 msgid "SFTP Password"
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup_sftp_port
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__sftp_port
 msgid "SFTP Port"
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup_sftp_host
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__sftp_host
 msgid "SFTP Server"
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+#: model_terms:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
 msgid "SFTP Settings"
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+#: model_terms:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
 msgid "Search the action named 'Backup scheduler'."
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+#: model_terms:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
 msgid ""
 "Set the scheduler to active and fill in how often you want backups generated."
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.model.fields,help:auto_backup.field_db_backup_name
+#: model:ir.model.fields,help:auto_backup.field_db_backup__name
 msgid "Summary of this backup process"
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+#: model_terms:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
 msgid "Test SFTP Connection"
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.model.fields,help:auto_backup.field_db_backup_sftp_host
+#: model:ir.model.fields,help:auto_backup.field_db_backup__sftp_host
 msgid ""
 "The host name or IP address from your remote server. For example 192.168.0.1"
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.model.fields,help:auto_backup.field_db_backup_sftp_password
+#: model:ir.model.fields,help:auto_backup.field_db_backup__sftp_password
 msgid ""
 "The password for the SFTP connection. If you specify a private key file, "
 "then this is the password to decrypt it."
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.model.fields,help:auto_backup.field_db_backup_sftp_port
+#: model:ir.model.fields,help:auto_backup.field_db_backup__sftp_port
 msgid "The port on the FTP server that accepts SSH/SFTP calls."
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.model.fields,help:auto_backup.field_db_backup_sftp_user
+#: model:ir.model.fields,help:auto_backup.field_db_backup__sftp_user
 msgid ""
 "The username where the SFTP connection should be made with. This is the user "
 "on the external server."
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__message_unread
+msgid "Unread Messages"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__message_unread_counter
+msgid "Unread Messages Counter"
+msgstr ""
+
+#. module: auto_backup
+#: model_terms:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
 msgid ""
 "Use SFTP with caution! This writes files to external servers under the path "
 "you specify."
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup_sftp_user
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__sftp_user
 msgid "Username in the SFTP Server"
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+#: model_terms:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
 msgid "Warning:"
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__website_message_ids
+msgid "Website Messages"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,help:auto_backup.field_db_backup__website_message_ids
+msgid "Website communication history"
+msgstr ""
+
+#. module: auto_backup
+#: model_terms:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
 msgid "john"
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+#: selection:db.backup,backup_format:0
+msgid "pg_dump custom format (without filestore)"
+msgstr ""
+
+#. module: auto_backup
+#: model_terms:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
 msgid "sftp.example.com"
 msgstr ""
+
+#. module: auto_backup
+#: selection:db.backup,backup_format:0
+msgid "zip (includes filestore)"
+msgstr ""
diff --git a/auto_backup/i18n/es_DO.po b/auto_backup/i18n/es_DO.po
index 22ab35e2c23..957f4ce2b93 100644
--- a/auto_backup/i18n/es_DO.po
+++ b/auto_backup/i18n/es_DO.po
@@ -20,15 +20,25 @@ msgstr ""
 "Plural-Forms: nplurals=2; plural=(n != 1);\n"
 
 #. module: auto_backup
-#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+#: model_terms:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
 msgid "/home/odoo/.ssh/id_rsa"
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.model.fields,help:auto_backup.field_db_backup_folder
+#: model:ir.model.fields,help:auto_backup.field_db_backup__folder
 msgid "Absolute path for storing the backups"
 msgstr ""
 
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__message_needaction
+msgid "Action Needed"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__message_attachment_count
+msgid "Attachment Count"
+msgstr ""
+
 #. module: auto_backup
 #: model:ir.actions.act_window,name:auto_backup.action_backup_conf_form
 #: model:ir.ui.menu,name:auto_backup.backup_conf_menu
@@ -36,7 +46,7 @@ msgid "Automated Backups"
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+#: model_terms:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
 msgid "Automatic backups of the database can be scheduled as follows:"
 msgstr ""
 
@@ -45,6 +55,11 @@ msgstr ""
 msgid "Backup Failed"
 msgstr ""
 
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__backup_format
+msgid "Backup Format"
+msgstr ""
+
 #. module: auto_backup
 #: model:ir.actions.server,name:auto_backup.ir_cron_backup_scheduler_0_ir_actions_server
 #: model:ir.cron,cron_name:auto_backup.ir_cron_backup_scheduler_0
@@ -58,14 +73,14 @@ msgid "Backup Successful"
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.model.fields,help:auto_backup.field_db_backup_days_to_keep
+#: model:ir.model.fields,help:auto_backup.field_db_backup__days_to_keep
 msgid ""
 "Backups older than this will be deleted automatically. Set 0 to disable "
 "autodeletion."
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+#: model_terms:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
 msgid "Basic backup configuration"
 msgstr ""
 
@@ -75,35 +90,40 @@ msgid "Cannot duplicate a configuration."
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.model.fields,help:auto_backup.field_db_backup_method
+#: model:ir.model.fields,help:auto_backup.field_db_backup__backup_format
+msgid "Choose the format for this backup."
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,help:auto_backup.field_db_backup__method
 msgid "Choose the storage method for this backup."
 msgstr ""
 
 #. module: auto_backup
-#: code:addons/auto_backup/models/db_backup.py:249
+#: code:addons/auto_backup/models/db_backup.py:265
 #, python-format
 msgid "Cleanup of old database backups failed."
 msgstr ""
 
 #. module: auto_backup
-#: code:addons/auto_backup/models/db_backup.py:128
+#: code:addons/auto_backup/models/db_backup.py:137
 #, python-format
 msgid "Connection Test Failed!"
 msgstr ""
 
 #. module: auto_backup
-#: code:addons/auto_backup/models/db_backup.py:123
+#: code:addons/auto_backup/models/db_backup.py:132
 #, python-format
 msgid "Connection Test Succeeded!"
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup_create_uid
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__create_uid
 msgid "Created by"
 msgstr "Creado por"
 
 #. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup_create_date
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__create_date
 msgid "Created on"
 msgstr "Creado en"
 
@@ -113,38 +133,38 @@ msgid "Database Backup"
 msgstr ""
 
 #. module: auto_backup
-#: code:addons/auto_backup/models/db_backup.py:203
+#: code:addons/auto_backup/models/db_backup.py:219
 #: model:mail.message.subtype,description:auto_backup.mail_message_subtype_failure
 #, python-format
 msgid "Database backup failed."
 msgstr ""
 
 #. module: auto_backup
-#: code:addons/auto_backup/models/db_backup.py:211
+#: code:addons/auto_backup/models/db_backup.py:227
 #: model:mail.message.subtype,description:auto_backup.mail_message_subtype_success
 #, python-format
 msgid "Database backup succeeded."
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup_days_to_keep
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__days_to_keep
 msgid "Days To Keep"
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup_display_name
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__display_name
 msgid "Display Name"
 msgstr "Nombre mostrado"
 
 #. module: auto_backup
-#: code:addons/auto_backup/models/db_backup.py:114
+#: code:addons/auto_backup/models/db_backup.py:123
 #, python-format
 msgid ""
 "Do not save backups on your filestore, or you will backup your backups too!"
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+#: model_terms:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
 msgid "Execute backup"
 msgstr ""
 
@@ -154,17 +174,32 @@ msgid "Execute backup(s)"
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup_folder
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__folder
 msgid "Folder"
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__message_follower_ids
+msgid "Followers"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__message_channel_ids
+msgid "Followers (Channels)"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__message_partner_ids
+msgid "Followers (Partners)"
+msgstr ""
+
+#. module: auto_backup
+#: model_terms:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
 msgid "Go to Settings / Technical / Automation / Scheduled Actions."
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+#: model_terms:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
 msgid "Help"
 msgstr ""
 
@@ -174,22 +209,42 @@ msgid "I cannot remove backups from the future. Ask Doc for that."
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup_id
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__id
 msgid "ID"
 msgstr "ID (identificaci??n)"
 
 #. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup___last_update
+#: model:ir.model.fields,help:auto_backup.field_db_backup__message_unread
+msgid "If checked new messages require your attention."
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,help:auto_backup.field_db_backup__message_needaction
+msgid "If checked, new messages require your attention."
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,help:auto_backup.field_db_backup__message_has_error
+msgid "If checked, some messages have a delivery error."
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__message_is_follower
+msgid "Is Follower"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup____last_update
 msgid "Last Modified on"
 msgstr "??ltima modificaci??n en"
 
 #. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup_write_uid
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__write_uid
 msgid "Last Updated by"
 msgstr "??ltima actualizaci??n de"
 
 #. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup_write_date
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__write_date
 msgid "Last Updated on"
 msgstr "??ltima actualizaci??n en"
 
@@ -199,24 +254,64 @@ msgid "Local disk"
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup_method
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__message_main_attachment_id
+msgid "Main Attachment"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__message_has_error
+msgid "Message Delivery error"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__message_ids
+msgid "Messages"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__method
 msgid "Method"
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup_name
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__name
 msgid "Name"
 msgstr "Nombre"
 
 #. module: auto_backup
-#: model:ir.model.fields,help:auto_backup.field_db_backup_sftp_private_key
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__message_needaction_counter
+msgid "Number of Actions"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__message_has_error_counter
+msgid "Number of error"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,help:auto_backup.field_db_backup__message_needaction_counter
+msgid "Number of messages which requires an action"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,help:auto_backup.field_db_backup__message_has_error_counter
+msgid "Number of messages with delivery error"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,help:auto_backup.field_db_backup__message_unread_counter
+msgid "Number of unread messages"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,help:auto_backup.field_db_backup__sftp_private_key
 msgid ""
 "Path to the private key file. Only the Odoo user should have read "
 "permissions for that file."
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup_sftp_private_key
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__sftp_private_key
 msgid "Private key location"
 msgstr ""
 
@@ -226,94 +321,124 @@ msgid "Remote SFTP server"
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup_sftp_password
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__sftp_password
 msgid "SFTP Password"
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup_sftp_port
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__sftp_port
 msgid "SFTP Port"
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup_sftp_host
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__sftp_host
 msgid "SFTP Server"
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+#: model_terms:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
 msgid "SFTP Settings"
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+#: model_terms:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
 msgid "Search the action named 'Backup scheduler'."
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+#: model_terms:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
 msgid ""
 "Set the scheduler to active and fill in how often you want backups generated."
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.model.fields,help:auto_backup.field_db_backup_name
+#: model:ir.model.fields,help:auto_backup.field_db_backup__name
 msgid "Summary of this backup process"
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+#: model_terms:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
 msgid "Test SFTP Connection"
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.model.fields,help:auto_backup.field_db_backup_sftp_host
+#: model:ir.model.fields,help:auto_backup.field_db_backup__sftp_host
 msgid ""
 "The host name or IP address from your remote server. For example 192.168.0.1"
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.model.fields,help:auto_backup.field_db_backup_sftp_password
+#: model:ir.model.fields,help:auto_backup.field_db_backup__sftp_password
 msgid ""
 "The password for the SFTP connection. If you specify a private key file, "
 "then this is the password to decrypt it."
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.model.fields,help:auto_backup.field_db_backup_sftp_port
+#: model:ir.model.fields,help:auto_backup.field_db_backup__sftp_port
 msgid "The port on the FTP server that accepts SSH/SFTP calls."
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.model.fields,help:auto_backup.field_db_backup_sftp_user
+#: model:ir.model.fields,help:auto_backup.field_db_backup__sftp_user
 msgid ""
 "The username where the SFTP connection should be made with. This is the user "
 "on the external server."
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__message_unread
+msgid "Unread Messages"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__message_unread_counter
+msgid "Unread Messages Counter"
+msgstr ""
+
+#. module: auto_backup
+#: model_terms:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
 msgid ""
 "Use SFTP with caution! This writes files to external servers under the path "
 "you specify."
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup_sftp_user
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__sftp_user
 msgid "Username in the SFTP Server"
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+#: model_terms:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
 msgid "Warning:"
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__website_message_ids
+msgid "Website Messages"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,help:auto_backup.field_db_backup__website_message_ids
+msgid "Website communication history"
+msgstr ""
+
+#. module: auto_backup
+#: model_terms:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
 msgid "john"
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+#: selection:db.backup,backup_format:0
+msgid "pg_dump custom format (without filestore)"
+msgstr ""
+
+#. module: auto_backup
+#: model_terms:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
 msgid "sftp.example.com"
 msgstr ""
+
+#. module: auto_backup
+#: selection:db.backup,backup_format:0
+msgid "zip (includes filestore)"
+msgstr ""
diff --git a/auto_backup/i18n/es_EC.po b/auto_backup/i18n/es_EC.po
index ef5347b370c..ad7c7798a2b 100644
--- a/auto_backup/i18n/es_EC.po
+++ b/auto_backup/i18n/es_EC.po
@@ -20,15 +20,25 @@ msgstr ""
 "Plural-Forms: nplurals=2; plural=(n != 1);\n"
 
 #. module: auto_backup
-#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+#: model_terms:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
 msgid "/home/odoo/.ssh/id_rsa"
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.model.fields,help:auto_backup.field_db_backup_folder
+#: model:ir.model.fields,help:auto_backup.field_db_backup__folder
 msgid "Absolute path for storing the backups"
 msgstr ""
 
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__message_needaction
+msgid "Action Needed"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__message_attachment_count
+msgid "Attachment Count"
+msgstr ""
+
 #. module: auto_backup
 #: model:ir.actions.act_window,name:auto_backup.action_backup_conf_form
 #: model:ir.ui.menu,name:auto_backup.backup_conf_menu
@@ -36,7 +46,7 @@ msgid "Automated Backups"
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+#: model_terms:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
 msgid "Automatic backups of the database can be scheduled as follows:"
 msgstr ""
 
@@ -45,6 +55,11 @@ msgstr ""
 msgid "Backup Failed"
 msgstr ""
 
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__backup_format
+msgid "Backup Format"
+msgstr ""
+
 #. module: auto_backup
 #: model:ir.actions.server,name:auto_backup.ir_cron_backup_scheduler_0_ir_actions_server
 #: model:ir.cron,cron_name:auto_backup.ir_cron_backup_scheduler_0
@@ -58,14 +73,14 @@ msgid "Backup Successful"
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.model.fields,help:auto_backup.field_db_backup_days_to_keep
+#: model:ir.model.fields,help:auto_backup.field_db_backup__days_to_keep
 msgid ""
 "Backups older than this will be deleted automatically. Set 0 to disable "
 "autodeletion."
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+#: model_terms:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
 msgid "Basic backup configuration"
 msgstr ""
 
@@ -75,35 +90,40 @@ msgid "Cannot duplicate a configuration."
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.model.fields,help:auto_backup.field_db_backup_method
+#: model:ir.model.fields,help:auto_backup.field_db_backup__backup_format
+msgid "Choose the format for this backup."
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,help:auto_backup.field_db_backup__method
 msgid "Choose the storage method for this backup."
 msgstr ""
 
 #. module: auto_backup
-#: code:addons/auto_backup/models/db_backup.py:249
+#: code:addons/auto_backup/models/db_backup.py:265
 #, python-format
 msgid "Cleanup of old database backups failed."
 msgstr ""
 
 #. module: auto_backup
-#: code:addons/auto_backup/models/db_backup.py:128
+#: code:addons/auto_backup/models/db_backup.py:137
 #, python-format
 msgid "Connection Test Failed!"
 msgstr ""
 
 #. module: auto_backup
-#: code:addons/auto_backup/models/db_backup.py:123
+#: code:addons/auto_backup/models/db_backup.py:132
 #, python-format
 msgid "Connection Test Succeeded!"
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup_create_uid
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__create_uid
 msgid "Created by"
 msgstr "Creado por"
 
 #. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup_create_date
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__create_date
 msgid "Created on"
 msgstr "Creado en"
 
@@ -113,38 +133,38 @@ msgid "Database Backup"
 msgstr ""
 
 #. module: auto_backup
-#: code:addons/auto_backup/models/db_backup.py:203
+#: code:addons/auto_backup/models/db_backup.py:219
 #: model:mail.message.subtype,description:auto_backup.mail_message_subtype_failure
 #, python-format
 msgid "Database backup failed."
 msgstr ""
 
 #. module: auto_backup
-#: code:addons/auto_backup/models/db_backup.py:211
+#: code:addons/auto_backup/models/db_backup.py:227
 #: model:mail.message.subtype,description:auto_backup.mail_message_subtype_success
 #, python-format
 msgid "Database backup succeeded."
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup_days_to_keep
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__days_to_keep
 msgid "Days To Keep"
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup_display_name
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__display_name
 msgid "Display Name"
 msgstr "Nombre mostrado"
 
 #. module: auto_backup
-#: code:addons/auto_backup/models/db_backup.py:114
+#: code:addons/auto_backup/models/db_backup.py:123
 #, python-format
 msgid ""
 "Do not save backups on your filestore, or you will backup your backups too!"
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+#: model_terms:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
 msgid "Execute backup"
 msgstr ""
 
@@ -154,17 +174,32 @@ msgid "Execute backup(s)"
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup_folder
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__folder
 msgid "Folder"
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__message_follower_ids
+msgid "Followers"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__message_channel_ids
+msgid "Followers (Channels)"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__message_partner_ids
+msgid "Followers (Partners)"
+msgstr ""
+
+#. module: auto_backup
+#: model_terms:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
 msgid "Go to Settings / Technical / Automation / Scheduled Actions."
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+#: model_terms:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
 msgid "Help"
 msgstr ""
 
@@ -174,22 +209,42 @@ msgid "I cannot remove backups from the future. Ask Doc for that."
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup_id
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__id
 msgid "ID"
 msgstr "ID"
 
 #. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup___last_update
+#: model:ir.model.fields,help:auto_backup.field_db_backup__message_unread
+msgid "If checked new messages require your attention."
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,help:auto_backup.field_db_backup__message_needaction
+msgid "If checked, new messages require your attention."
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,help:auto_backup.field_db_backup__message_has_error
+msgid "If checked, some messages have a delivery error."
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__message_is_follower
+msgid "Is Follower"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup____last_update
 msgid "Last Modified on"
 msgstr "??ltima modificaci??n en"
 
 #. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup_write_uid
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__write_uid
 msgid "Last Updated by"
 msgstr "??ltima actualizaci??n de"
 
 #. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup_write_date
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__write_date
 msgid "Last Updated on"
 msgstr "??ltima actualizaci??n en"
 
@@ -199,24 +254,64 @@ msgid "Local disk"
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup_method
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__message_main_attachment_id
+msgid "Main Attachment"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__message_has_error
+msgid "Message Delivery error"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__message_ids
+msgid "Messages"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__method
 msgid "Method"
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup_name
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__name
 msgid "Name"
 msgstr "Nombre"
 
 #. module: auto_backup
-#: model:ir.model.fields,help:auto_backup.field_db_backup_sftp_private_key
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__message_needaction_counter
+msgid "Number of Actions"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__message_has_error_counter
+msgid "Number of error"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,help:auto_backup.field_db_backup__message_needaction_counter
+msgid "Number of messages which requires an action"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,help:auto_backup.field_db_backup__message_has_error_counter
+msgid "Number of messages with delivery error"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,help:auto_backup.field_db_backup__message_unread_counter
+msgid "Number of unread messages"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,help:auto_backup.field_db_backup__sftp_private_key
 msgid ""
 "Path to the private key file. Only the Odoo user should have read "
 "permissions for that file."
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup_sftp_private_key
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__sftp_private_key
 msgid "Private key location"
 msgstr ""
 
@@ -226,94 +321,124 @@ msgid "Remote SFTP server"
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup_sftp_password
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__sftp_password
 msgid "SFTP Password"
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup_sftp_port
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__sftp_port
 msgid "SFTP Port"
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup_sftp_host
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__sftp_host
 msgid "SFTP Server"
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+#: model_terms:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
 msgid "SFTP Settings"
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+#: model_terms:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
 msgid "Search the action named 'Backup scheduler'."
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+#: model_terms:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
 msgid ""
 "Set the scheduler to active and fill in how often you want backups generated."
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.model.fields,help:auto_backup.field_db_backup_name
+#: model:ir.model.fields,help:auto_backup.field_db_backup__name
 msgid "Summary of this backup process"
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+#: model_terms:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
 msgid "Test SFTP Connection"
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.model.fields,help:auto_backup.field_db_backup_sftp_host
+#: model:ir.model.fields,help:auto_backup.field_db_backup__sftp_host
 msgid ""
 "The host name or IP address from your remote server. For example 192.168.0.1"
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.model.fields,help:auto_backup.field_db_backup_sftp_password
+#: model:ir.model.fields,help:auto_backup.field_db_backup__sftp_password
 msgid ""
 "The password for the SFTP connection. If you specify a private key file, "
 "then this is the password to decrypt it."
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.model.fields,help:auto_backup.field_db_backup_sftp_port
+#: model:ir.model.fields,help:auto_backup.field_db_backup__sftp_port
 msgid "The port on the FTP server that accepts SSH/SFTP calls."
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.model.fields,help:auto_backup.field_db_backup_sftp_user
+#: model:ir.model.fields,help:auto_backup.field_db_backup__sftp_user
 msgid ""
 "The username where the SFTP connection should be made with. This is the user "
 "on the external server."
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__message_unread
+msgid "Unread Messages"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__message_unread_counter
+msgid "Unread Messages Counter"
+msgstr ""
+
+#. module: auto_backup
+#: model_terms:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
 msgid ""
 "Use SFTP with caution! This writes files to external servers under the path "
 "you specify."
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup_sftp_user
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__sftp_user
 msgid "Username in the SFTP Server"
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+#: model_terms:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
 msgid "Warning:"
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__website_message_ids
+msgid "Website Messages"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,help:auto_backup.field_db_backup__website_message_ids
+msgid "Website communication history"
+msgstr ""
+
+#. module: auto_backup
+#: model_terms:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
 msgid "john"
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+#: selection:db.backup,backup_format:0
+msgid "pg_dump custom format (without filestore)"
+msgstr ""
+
+#. module: auto_backup
+#: model_terms:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
 msgid "sftp.example.com"
 msgstr ""
+
+#. module: auto_backup
+#: selection:db.backup,backup_format:0
+msgid "zip (includes filestore)"
+msgstr ""
diff --git a/auto_backup/i18n/es_ES.po b/auto_backup/i18n/es_ES.po
index 7343867925d..93361209d67 100644
--- a/auto_backup/i18n/es_ES.po
+++ b/auto_backup/i18n/es_ES.po
@@ -20,15 +20,25 @@ msgstr ""
 "Plural-Forms: nplurals=2; plural=(n != 1);\n"
 
 #. module: auto_backup
-#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+#: model_terms:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
 msgid "/home/odoo/.ssh/id_rsa"
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.model.fields,help:auto_backup.field_db_backup_folder
+#: model:ir.model.fields,help:auto_backup.field_db_backup__folder
 msgid "Absolute path for storing the backups"
 msgstr ""
 
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__message_needaction
+msgid "Action Needed"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__message_attachment_count
+msgid "Attachment Count"
+msgstr ""
+
 #. module: auto_backup
 #: model:ir.actions.act_window,name:auto_backup.action_backup_conf_form
 #: model:ir.ui.menu,name:auto_backup.backup_conf_menu
@@ -36,7 +46,7 @@ msgid "Automated Backups"
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+#: model_terms:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
 msgid "Automatic backups of the database can be scheduled as follows:"
 msgstr ""
 
@@ -45,6 +55,11 @@ msgstr ""
 msgid "Backup Failed"
 msgstr ""
 
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__backup_format
+msgid "Backup Format"
+msgstr ""
+
 #. module: auto_backup
 #: model:ir.actions.server,name:auto_backup.ir_cron_backup_scheduler_0_ir_actions_server
 #: model:ir.cron,cron_name:auto_backup.ir_cron_backup_scheduler_0
@@ -58,14 +73,14 @@ msgid "Backup Successful"
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.model.fields,help:auto_backup.field_db_backup_days_to_keep
+#: model:ir.model.fields,help:auto_backup.field_db_backup__days_to_keep
 msgid ""
 "Backups older than this will be deleted automatically. Set 0 to disable "
 "autodeletion."
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+#: model_terms:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
 msgid "Basic backup configuration"
 msgstr ""
 
@@ -75,35 +90,40 @@ msgid "Cannot duplicate a configuration."
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.model.fields,help:auto_backup.field_db_backup_method
+#: model:ir.model.fields,help:auto_backup.field_db_backup__backup_format
+msgid "Choose the format for this backup."
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,help:auto_backup.field_db_backup__method
 msgid "Choose the storage method for this backup."
 msgstr ""
 
 #. module: auto_backup
-#: code:addons/auto_backup/models/db_backup.py:249
+#: code:addons/auto_backup/models/db_backup.py:265
 #, python-format
 msgid "Cleanup of old database backups failed."
 msgstr ""
 
 #. module: auto_backup
-#: code:addons/auto_backup/models/db_backup.py:128
+#: code:addons/auto_backup/models/db_backup.py:137
 #, python-format
 msgid "Connection Test Failed!"
 msgstr ""
 
 #. module: auto_backup
-#: code:addons/auto_backup/models/db_backup.py:123
+#: code:addons/auto_backup/models/db_backup.py:132
 #, python-format
 msgid "Connection Test Succeeded!"
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup_create_uid
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__create_uid
 msgid "Created by"
 msgstr "Creado por"
 
 #. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup_create_date
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__create_date
 msgid "Created on"
 msgstr "Creado en"
 
@@ -113,38 +133,38 @@ msgid "Database Backup"
 msgstr ""
 
 #. module: auto_backup
-#: code:addons/auto_backup/models/db_backup.py:203
+#: code:addons/auto_backup/models/db_backup.py:219
 #: model:mail.message.subtype,description:auto_backup.mail_message_subtype_failure
 #, python-format
 msgid "Database backup failed."
 msgstr ""
 
 #. module: auto_backup
-#: code:addons/auto_backup/models/db_backup.py:211
+#: code:addons/auto_backup/models/db_backup.py:227
 #: model:mail.message.subtype,description:auto_backup.mail_message_subtype_success
 #, python-format
 msgid "Database backup succeeded."
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup_days_to_keep
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__days_to_keep
 msgid "Days To Keep"
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup_display_name
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__display_name
 msgid "Display Name"
 msgstr "Nombre para mostrar"
 
 #. module: auto_backup
-#: code:addons/auto_backup/models/db_backup.py:114
+#: code:addons/auto_backup/models/db_backup.py:123
 #, python-format
 msgid ""
 "Do not save backups on your filestore, or you will backup your backups too!"
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+#: model_terms:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
 msgid "Execute backup"
 msgstr ""
 
@@ -154,17 +174,32 @@ msgid "Execute backup(s)"
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup_folder
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__folder
 msgid "Folder"
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__message_follower_ids
+msgid "Followers"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__message_channel_ids
+msgid "Followers (Channels)"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__message_partner_ids
+msgid "Followers (Partners)"
+msgstr ""
+
+#. module: auto_backup
+#: model_terms:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
 msgid "Go to Settings / Technical / Automation / Scheduled Actions."
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+#: model_terms:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
 msgid "Help"
 msgstr ""
 
@@ -174,22 +209,42 @@ msgid "I cannot remove backups from the future. Ask Doc for that."
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup_id
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__id
 msgid "ID"
 msgstr "ID"
 
 #. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup___last_update
+#: model:ir.model.fields,help:auto_backup.field_db_backup__message_unread
+msgid "If checked new messages require your attention."
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,help:auto_backup.field_db_backup__message_needaction
+msgid "If checked, new messages require your attention."
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,help:auto_backup.field_db_backup__message_has_error
+msgid "If checked, some messages have a delivery error."
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__message_is_follower
+msgid "Is Follower"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup____last_update
 msgid "Last Modified on"
 msgstr "??ltima modificaci??n en"
 
 #. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup_write_uid
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__write_uid
 msgid "Last Updated by"
 msgstr "??ltima actualizaci??n por"
 
 #. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup_write_date
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__write_date
 msgid "Last Updated on"
 msgstr "??ltima actualizaci??n en"
 
@@ -199,24 +254,64 @@ msgid "Local disk"
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup_method
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__message_main_attachment_id
+msgid "Main Attachment"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__message_has_error
+msgid "Message Delivery error"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__message_ids
+msgid "Messages"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__method
 msgid "Method"
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup_name
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__name
 msgid "Name"
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.model.fields,help:auto_backup.field_db_backup_sftp_private_key
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__message_needaction_counter
+msgid "Number of Actions"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__message_has_error_counter
+msgid "Number of error"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,help:auto_backup.field_db_backup__message_needaction_counter
+msgid "Number of messages which requires an action"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,help:auto_backup.field_db_backup__message_has_error_counter
+msgid "Number of messages with delivery error"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,help:auto_backup.field_db_backup__message_unread_counter
+msgid "Number of unread messages"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,help:auto_backup.field_db_backup__sftp_private_key
 msgid ""
 "Path to the private key file. Only the Odoo user should have read "
 "permissions for that file."
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup_sftp_private_key
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__sftp_private_key
 msgid "Private key location"
 msgstr ""
 
@@ -226,94 +321,124 @@ msgid "Remote SFTP server"
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup_sftp_password
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__sftp_password
 msgid "SFTP Password"
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup_sftp_port
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__sftp_port
 msgid "SFTP Port"
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup_sftp_host
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__sftp_host
 msgid "SFTP Server"
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+#: model_terms:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
 msgid "SFTP Settings"
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+#: model_terms:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
 msgid "Search the action named 'Backup scheduler'."
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+#: model_terms:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
 msgid ""
 "Set the scheduler to active and fill in how often you want backups generated."
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.model.fields,help:auto_backup.field_db_backup_name
+#: model:ir.model.fields,help:auto_backup.field_db_backup__name
 msgid "Summary of this backup process"
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+#: model_terms:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
 msgid "Test SFTP Connection"
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.model.fields,help:auto_backup.field_db_backup_sftp_host
+#: model:ir.model.fields,help:auto_backup.field_db_backup__sftp_host
 msgid ""
 "The host name or IP address from your remote server. For example 192.168.0.1"
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.model.fields,help:auto_backup.field_db_backup_sftp_password
+#: model:ir.model.fields,help:auto_backup.field_db_backup__sftp_password
 msgid ""
 "The password for the SFTP connection. If you specify a private key file, "
 "then this is the password to decrypt it."
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.model.fields,help:auto_backup.field_db_backup_sftp_port
+#: model:ir.model.fields,help:auto_backup.field_db_backup__sftp_port
 msgid "The port on the FTP server that accepts SSH/SFTP calls."
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.model.fields,help:auto_backup.field_db_backup_sftp_user
+#: model:ir.model.fields,help:auto_backup.field_db_backup__sftp_user
 msgid ""
 "The username where the SFTP connection should be made with. This is the user "
 "on the external server."
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__message_unread
+msgid "Unread Messages"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__message_unread_counter
+msgid "Unread Messages Counter"
+msgstr ""
+
+#. module: auto_backup
+#: model_terms:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
 msgid ""
 "Use SFTP with caution! This writes files to external servers under the path "
 "you specify."
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup_sftp_user
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__sftp_user
 msgid "Username in the SFTP Server"
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+#: model_terms:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
 msgid "Warning:"
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__website_message_ids
+msgid "Website Messages"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,help:auto_backup.field_db_backup__website_message_ids
+msgid "Website communication history"
+msgstr ""
+
+#. module: auto_backup
+#: model_terms:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
 msgid "john"
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+#: selection:db.backup,backup_format:0
+msgid "pg_dump custom format (without filestore)"
+msgstr ""
+
+#. module: auto_backup
+#: model_terms:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
 msgid "sftp.example.com"
 msgstr ""
+
+#. module: auto_backup
+#: selection:db.backup,backup_format:0
+msgid "zip (includes filestore)"
+msgstr ""
diff --git a/auto_backup/i18n/es_MX.po b/auto_backup/i18n/es_MX.po
index 3188fe55c47..3ded2d10d57 100644
--- a/auto_backup/i18n/es_MX.po
+++ b/auto_backup/i18n/es_MX.po
@@ -20,15 +20,25 @@ msgstr ""
 "Plural-Forms: nplurals=2; plural=(n != 1);\n"
 
 #. module: auto_backup
-#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+#: model_terms:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
 msgid "/home/odoo/.ssh/id_rsa"
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.model.fields,help:auto_backup.field_db_backup_folder
+#: model:ir.model.fields,help:auto_backup.field_db_backup__folder
 msgid "Absolute path for storing the backups"
 msgstr ""
 
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__message_needaction
+msgid "Action Needed"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__message_attachment_count
+msgid "Attachment Count"
+msgstr ""
+
 #. module: auto_backup
 #: model:ir.actions.act_window,name:auto_backup.action_backup_conf_form
 #: model:ir.ui.menu,name:auto_backup.backup_conf_menu
@@ -36,7 +46,7 @@ msgid "Automated Backups"
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+#: model_terms:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
 msgid "Automatic backups of the database can be scheduled as follows:"
 msgstr ""
 
@@ -45,6 +55,11 @@ msgstr ""
 msgid "Backup Failed"
 msgstr ""
 
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__backup_format
+msgid "Backup Format"
+msgstr ""
+
 #. module: auto_backup
 #: model:ir.actions.server,name:auto_backup.ir_cron_backup_scheduler_0_ir_actions_server
 #: model:ir.cron,cron_name:auto_backup.ir_cron_backup_scheduler_0
@@ -58,14 +73,14 @@ msgid "Backup Successful"
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.model.fields,help:auto_backup.field_db_backup_days_to_keep
+#: model:ir.model.fields,help:auto_backup.field_db_backup__days_to_keep
 msgid ""
 "Backups older than this will be deleted automatically. Set 0 to disable "
 "autodeletion."
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+#: model_terms:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
 msgid "Basic backup configuration"
 msgstr ""
 
@@ -75,35 +90,40 @@ msgid "Cannot duplicate a configuration."
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.model.fields,help:auto_backup.field_db_backup_method
+#: model:ir.model.fields,help:auto_backup.field_db_backup__backup_format
+msgid "Choose the format for this backup."
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,help:auto_backup.field_db_backup__method
 msgid "Choose the storage method for this backup."
 msgstr ""
 
 #. module: auto_backup
-#: code:addons/auto_backup/models/db_backup.py:249
+#: code:addons/auto_backup/models/db_backup.py:265
 #, python-format
 msgid "Cleanup of old database backups failed."
 msgstr ""
 
 #. module: auto_backup
-#: code:addons/auto_backup/models/db_backup.py:128
+#: code:addons/auto_backup/models/db_backup.py:137
 #, python-format
 msgid "Connection Test Failed!"
 msgstr ""
 
 #. module: auto_backup
-#: code:addons/auto_backup/models/db_backup.py:123
+#: code:addons/auto_backup/models/db_backup.py:132
 #, python-format
 msgid "Connection Test Succeeded!"
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup_create_uid
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__create_uid
 msgid "Created by"
 msgstr "Creado por"
 
 #. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup_create_date
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__create_date
 msgid "Created on"
 msgstr "Creado en"
 
@@ -113,38 +133,38 @@ msgid "Database Backup"
 msgstr ""
 
 #. module: auto_backup
-#: code:addons/auto_backup/models/db_backup.py:203
+#: code:addons/auto_backup/models/db_backup.py:219
 #: model:mail.message.subtype,description:auto_backup.mail_message_subtype_failure
 #, python-format
 msgid "Database backup failed."
 msgstr ""
 
 #. module: auto_backup
-#: code:addons/auto_backup/models/db_backup.py:211
+#: code:addons/auto_backup/models/db_backup.py:227
 #: model:mail.message.subtype,description:auto_backup.mail_message_subtype_success
 #, python-format
 msgid "Database backup succeeded."
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup_days_to_keep
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__days_to_keep
 msgid "Days To Keep"
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup_display_name
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__display_name
 msgid "Display Name"
 msgstr "Nombre desplegado"
 
 #. module: auto_backup
-#: code:addons/auto_backup/models/db_backup.py:114
+#: code:addons/auto_backup/models/db_backup.py:123
 #, python-format
 msgid ""
 "Do not save backups on your filestore, or you will backup your backups too!"
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+#: model_terms:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
 msgid "Execute backup"
 msgstr ""
 
@@ -154,17 +174,32 @@ msgid "Execute backup(s)"
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup_folder
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__folder
 msgid "Folder"
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__message_follower_ids
+msgid "Followers"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__message_channel_ids
+msgid "Followers (Channels)"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__message_partner_ids
+msgid "Followers (Partners)"
+msgstr ""
+
+#. module: auto_backup
+#: model_terms:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
 msgid "Go to Settings / Technical / Automation / Scheduled Actions."
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+#: model_terms:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
 msgid "Help"
 msgstr ""
 
@@ -174,22 +209,42 @@ msgid "I cannot remove backups from the future. Ask Doc for that."
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup_id
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__id
 msgid "ID"
 msgstr "ID"
 
 #. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup___last_update
+#: model:ir.model.fields,help:auto_backup.field_db_backup__message_unread
+msgid "If checked new messages require your attention."
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,help:auto_backup.field_db_backup__message_needaction
+msgid "If checked, new messages require your attention."
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,help:auto_backup.field_db_backup__message_has_error
+msgid "If checked, some messages have a delivery error."
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__message_is_follower
+msgid "Is Follower"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup____last_update
 msgid "Last Modified on"
 msgstr "Ultima modificacion realizada"
 
 #. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup_write_uid
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__write_uid
 msgid "Last Updated by"
 msgstr "Ultima actualizaci??n por"
 
 #. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup_write_date
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__write_date
 msgid "Last Updated on"
 msgstr "Ultima actualizaci??n en"
 
@@ -199,24 +254,64 @@ msgid "Local disk"
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup_method
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__message_main_attachment_id
+msgid "Main Attachment"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__message_has_error
+msgid "Message Delivery error"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__message_ids
+msgid "Messages"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__method
 msgid "Method"
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup_name
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__name
 msgid "Name"
 msgstr "Nombre"
 
 #. module: auto_backup
-#: model:ir.model.fields,help:auto_backup.field_db_backup_sftp_private_key
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__message_needaction_counter
+msgid "Number of Actions"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__message_has_error_counter
+msgid "Number of error"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,help:auto_backup.field_db_backup__message_needaction_counter
+msgid "Number of messages which requires an action"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,help:auto_backup.field_db_backup__message_has_error_counter
+msgid "Number of messages with delivery error"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,help:auto_backup.field_db_backup__message_unread_counter
+msgid "Number of unread messages"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,help:auto_backup.field_db_backup__sftp_private_key
 msgid ""
 "Path to the private key file. Only the Odoo user should have read "
 "permissions for that file."
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup_sftp_private_key
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__sftp_private_key
 msgid "Private key location"
 msgstr ""
 
@@ -226,94 +321,124 @@ msgid "Remote SFTP server"
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup_sftp_password
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__sftp_password
 msgid "SFTP Password"
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup_sftp_port
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__sftp_port
 msgid "SFTP Port"
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup_sftp_host
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__sftp_host
 msgid "SFTP Server"
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+#: model_terms:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
 msgid "SFTP Settings"
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+#: model_terms:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
 msgid "Search the action named 'Backup scheduler'."
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+#: model_terms:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
 msgid ""
 "Set the scheduler to active and fill in how often you want backups generated."
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.model.fields,help:auto_backup.field_db_backup_name
+#: model:ir.model.fields,help:auto_backup.field_db_backup__name
 msgid "Summary of this backup process"
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+#: model_terms:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
 msgid "Test SFTP Connection"
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.model.fields,help:auto_backup.field_db_backup_sftp_host
+#: model:ir.model.fields,help:auto_backup.field_db_backup__sftp_host
 msgid ""
 "The host name or IP address from your remote server. For example 192.168.0.1"
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.model.fields,help:auto_backup.field_db_backup_sftp_password
+#: model:ir.model.fields,help:auto_backup.field_db_backup__sftp_password
 msgid ""
 "The password for the SFTP connection. If you specify a private key file, "
 "then this is the password to decrypt it."
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.model.fields,help:auto_backup.field_db_backup_sftp_port
+#: model:ir.model.fields,help:auto_backup.field_db_backup__sftp_port
 msgid "The port on the FTP server that accepts SSH/SFTP calls."
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.model.fields,help:auto_backup.field_db_backup_sftp_user
+#: model:ir.model.fields,help:auto_backup.field_db_backup__sftp_user
 msgid ""
 "The username where the SFTP connection should be made with. This is the user "
 "on the external server."
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__message_unread
+msgid "Unread Messages"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__message_unread_counter
+msgid "Unread Messages Counter"
+msgstr ""
+
+#. module: auto_backup
+#: model_terms:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
 msgid ""
 "Use SFTP with caution! This writes files to external servers under the path "
 "you specify."
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup_sftp_user
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__sftp_user
 msgid "Username in the SFTP Server"
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+#: model_terms:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
 msgid "Warning:"
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__website_message_ids
+msgid "Website Messages"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,help:auto_backup.field_db_backup__website_message_ids
+msgid "Website communication history"
+msgstr ""
+
+#. module: auto_backup
+#: model_terms:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
 msgid "john"
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+#: selection:db.backup,backup_format:0
+msgid "pg_dump custom format (without filestore)"
+msgstr ""
+
+#. module: auto_backup
+#: model_terms:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
 msgid "sftp.example.com"
 msgstr ""
+
+#. module: auto_backup
+#: selection:db.backup,backup_format:0
+msgid "zip (includes filestore)"
+msgstr ""
diff --git a/auto_backup/i18n/es_PE.po b/auto_backup/i18n/es_PE.po
index beb06096a41..cde95777a4c 100644
--- a/auto_backup/i18n/es_PE.po
+++ b/auto_backup/i18n/es_PE.po
@@ -20,15 +20,25 @@ msgstr ""
 "Plural-Forms: nplurals=2; plural=(n != 1);\n"
 
 #. module: auto_backup
-#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+#: model_terms:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
 msgid "/home/odoo/.ssh/id_rsa"
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.model.fields,help:auto_backup.field_db_backup_folder
+#: model:ir.model.fields,help:auto_backup.field_db_backup__folder
 msgid "Absolute path for storing the backups"
 msgstr ""
 
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__message_needaction
+msgid "Action Needed"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__message_attachment_count
+msgid "Attachment Count"
+msgstr ""
+
 #. module: auto_backup
 #: model:ir.actions.act_window,name:auto_backup.action_backup_conf_form
 #: model:ir.ui.menu,name:auto_backup.backup_conf_menu
@@ -36,7 +46,7 @@ msgid "Automated Backups"
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+#: model_terms:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
 msgid "Automatic backups of the database can be scheduled as follows:"
 msgstr ""
 
@@ -45,6 +55,11 @@ msgstr ""
 msgid "Backup Failed"
 msgstr ""
 
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__backup_format
+msgid "Backup Format"
+msgstr ""
+
 #. module: auto_backup
 #: model:ir.actions.server,name:auto_backup.ir_cron_backup_scheduler_0_ir_actions_server
 #: model:ir.cron,cron_name:auto_backup.ir_cron_backup_scheduler_0
@@ -58,14 +73,14 @@ msgid "Backup Successful"
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.model.fields,help:auto_backup.field_db_backup_days_to_keep
+#: model:ir.model.fields,help:auto_backup.field_db_backup__days_to_keep
 msgid ""
 "Backups older than this will be deleted automatically. Set 0 to disable "
 "autodeletion."
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+#: model_terms:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
 msgid "Basic backup configuration"
 msgstr ""
 
@@ -75,35 +90,40 @@ msgid "Cannot duplicate a configuration."
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.model.fields,help:auto_backup.field_db_backup_method
+#: model:ir.model.fields,help:auto_backup.field_db_backup__backup_format
+msgid "Choose the format for this backup."
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,help:auto_backup.field_db_backup__method
 msgid "Choose the storage method for this backup."
 msgstr ""
 
 #. module: auto_backup
-#: code:addons/auto_backup/models/db_backup.py:249
+#: code:addons/auto_backup/models/db_backup.py:265
 #, python-format
 msgid "Cleanup of old database backups failed."
 msgstr ""
 
 #. module: auto_backup
-#: code:addons/auto_backup/models/db_backup.py:128
+#: code:addons/auto_backup/models/db_backup.py:137
 #, python-format
 msgid "Connection Test Failed!"
 msgstr ""
 
 #. module: auto_backup
-#: code:addons/auto_backup/models/db_backup.py:123
+#: code:addons/auto_backup/models/db_backup.py:132
 #, python-format
 msgid "Connection Test Succeeded!"
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup_create_uid
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__create_uid
 msgid "Created by"
 msgstr "Creado por"
 
 #. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup_create_date
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__create_date
 msgid "Created on"
 msgstr "Creado en"
 
@@ -113,38 +133,38 @@ msgid "Database Backup"
 msgstr ""
 
 #. module: auto_backup
-#: code:addons/auto_backup/models/db_backup.py:203
+#: code:addons/auto_backup/models/db_backup.py:219
 #: model:mail.message.subtype,description:auto_backup.mail_message_subtype_failure
 #, python-format
 msgid "Database backup failed."
 msgstr ""
 
 #. module: auto_backup
-#: code:addons/auto_backup/models/db_backup.py:211
+#: code:addons/auto_backup/models/db_backup.py:227
 #: model:mail.message.subtype,description:auto_backup.mail_message_subtype_success
 #, python-format
 msgid "Database backup succeeded."
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup_days_to_keep
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__days_to_keep
 msgid "Days To Keep"
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup_display_name
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__display_name
 msgid "Display Name"
 msgstr "Nombre a Mostrar"
 
 #. module: auto_backup
-#: code:addons/auto_backup/models/db_backup.py:114
+#: code:addons/auto_backup/models/db_backup.py:123
 #, python-format
 msgid ""
 "Do not save backups on your filestore, or you will backup your backups too!"
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+#: model_terms:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
 msgid "Execute backup"
 msgstr ""
 
@@ -154,17 +174,32 @@ msgid "Execute backup(s)"
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup_folder
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__folder
 msgid "Folder"
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__message_follower_ids
+msgid "Followers"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__message_channel_ids
+msgid "Followers (Channels)"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__message_partner_ids
+msgid "Followers (Partners)"
+msgstr ""
+
+#. module: auto_backup
+#: model_terms:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
 msgid "Go to Settings / Technical / Automation / Scheduled Actions."
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+#: model_terms:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
 msgid "Help"
 msgstr ""
 
@@ -174,22 +209,42 @@ msgid "I cannot remove backups from the future. Ask Doc for that."
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup_id
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__id
 msgid "ID"
 msgstr "ID"
 
 #. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup___last_update
+#: model:ir.model.fields,help:auto_backup.field_db_backup__message_unread
+msgid "If checked new messages require your attention."
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,help:auto_backup.field_db_backup__message_needaction
+msgid "If checked, new messages require your attention."
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,help:auto_backup.field_db_backup__message_has_error
+msgid "If checked, some messages have a delivery error."
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__message_is_follower
+msgid "Is Follower"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup____last_update
 msgid "Last Modified on"
 msgstr "Ultima Modificaci??n en"
 
 #. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup_write_uid
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__write_uid
 msgid "Last Updated by"
 msgstr "Actualizado ??ltima vez por"
 
 #. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup_write_date
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__write_date
 msgid "Last Updated on"
 msgstr "Ultima Actualizaci??n"
 
@@ -199,24 +254,64 @@ msgid "Local disk"
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup_method
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__message_main_attachment_id
+msgid "Main Attachment"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__message_has_error
+msgid "Message Delivery error"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__message_ids
+msgid "Messages"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__method
 msgid "Method"
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup_name
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__name
 msgid "Name"
 msgstr "Nombre"
 
 #. module: auto_backup
-#: model:ir.model.fields,help:auto_backup.field_db_backup_sftp_private_key
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__message_needaction_counter
+msgid "Number of Actions"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__message_has_error_counter
+msgid "Number of error"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,help:auto_backup.field_db_backup__message_needaction_counter
+msgid "Number of messages which requires an action"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,help:auto_backup.field_db_backup__message_has_error_counter
+msgid "Number of messages with delivery error"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,help:auto_backup.field_db_backup__message_unread_counter
+msgid "Number of unread messages"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,help:auto_backup.field_db_backup__sftp_private_key
 msgid ""
 "Path to the private key file. Only the Odoo user should have read "
 "permissions for that file."
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup_sftp_private_key
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__sftp_private_key
 msgid "Private key location"
 msgstr ""
 
@@ -226,94 +321,124 @@ msgid "Remote SFTP server"
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup_sftp_password
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__sftp_password
 msgid "SFTP Password"
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup_sftp_port
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__sftp_port
 msgid "SFTP Port"
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup_sftp_host
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__sftp_host
 msgid "SFTP Server"
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+#: model_terms:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
 msgid "SFTP Settings"
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+#: model_terms:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
 msgid "Search the action named 'Backup scheduler'."
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+#: model_terms:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
 msgid ""
 "Set the scheduler to active and fill in how often you want backups generated."
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.model.fields,help:auto_backup.field_db_backup_name
+#: model:ir.model.fields,help:auto_backup.field_db_backup__name
 msgid "Summary of this backup process"
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+#: model_terms:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
 msgid "Test SFTP Connection"
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.model.fields,help:auto_backup.field_db_backup_sftp_host
+#: model:ir.model.fields,help:auto_backup.field_db_backup__sftp_host
 msgid ""
 "The host name or IP address from your remote server. For example 192.168.0.1"
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.model.fields,help:auto_backup.field_db_backup_sftp_password
+#: model:ir.model.fields,help:auto_backup.field_db_backup__sftp_password
 msgid ""
 "The password for the SFTP connection. If you specify a private key file, "
 "then this is the password to decrypt it."
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.model.fields,help:auto_backup.field_db_backup_sftp_port
+#: model:ir.model.fields,help:auto_backup.field_db_backup__sftp_port
 msgid "The port on the FTP server that accepts SSH/SFTP calls."
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.model.fields,help:auto_backup.field_db_backup_sftp_user
+#: model:ir.model.fields,help:auto_backup.field_db_backup__sftp_user
 msgid ""
 "The username where the SFTP connection should be made with. This is the user "
 "on the external server."
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__message_unread
+msgid "Unread Messages"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__message_unread_counter
+msgid "Unread Messages Counter"
+msgstr ""
+
+#. module: auto_backup
+#: model_terms:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
 msgid ""
 "Use SFTP with caution! This writes files to external servers under the path "
 "you specify."
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup_sftp_user
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__sftp_user
 msgid "Username in the SFTP Server"
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+#: model_terms:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
 msgid "Warning:"
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__website_message_ids
+msgid "Website Messages"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,help:auto_backup.field_db_backup__website_message_ids
+msgid "Website communication history"
+msgstr ""
+
+#. module: auto_backup
+#: model_terms:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
 msgid "john"
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+#: selection:db.backup,backup_format:0
+msgid "pg_dump custom format (without filestore)"
+msgstr ""
+
+#. module: auto_backup
+#: model_terms:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
 msgid "sftp.example.com"
 msgstr ""
+
+#. module: auto_backup
+#: selection:db.backup,backup_format:0
+msgid "zip (includes filestore)"
+msgstr ""
diff --git a/auto_backup/i18n/es_PY.po b/auto_backup/i18n/es_PY.po
index 49b6d8aed73..c5f40c53fc9 100644
--- a/auto_backup/i18n/es_PY.po
+++ b/auto_backup/i18n/es_PY.po
@@ -20,15 +20,25 @@ msgstr ""
 "Plural-Forms: nplurals=2; plural=(n != 1);\n"
 
 #. module: auto_backup
-#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+#: model_terms:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
 msgid "/home/odoo/.ssh/id_rsa"
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.model.fields,help:auto_backup.field_db_backup_folder
+#: model:ir.model.fields,help:auto_backup.field_db_backup__folder
 msgid "Absolute path for storing the backups"
 msgstr ""
 
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__message_needaction
+msgid "Action Needed"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__message_attachment_count
+msgid "Attachment Count"
+msgstr ""
+
 #. module: auto_backup
 #: model:ir.actions.act_window,name:auto_backup.action_backup_conf_form
 #: model:ir.ui.menu,name:auto_backup.backup_conf_menu
@@ -36,7 +46,7 @@ msgid "Automated Backups"
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+#: model_terms:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
 msgid "Automatic backups of the database can be scheduled as follows:"
 msgstr ""
 
@@ -45,6 +55,11 @@ msgstr ""
 msgid "Backup Failed"
 msgstr ""
 
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__backup_format
+msgid "Backup Format"
+msgstr ""
+
 #. module: auto_backup
 #: model:ir.actions.server,name:auto_backup.ir_cron_backup_scheduler_0_ir_actions_server
 #: model:ir.cron,cron_name:auto_backup.ir_cron_backup_scheduler_0
@@ -58,14 +73,14 @@ msgid "Backup Successful"
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.model.fields,help:auto_backup.field_db_backup_days_to_keep
+#: model:ir.model.fields,help:auto_backup.field_db_backup__days_to_keep
 msgid ""
 "Backups older than this will be deleted automatically. Set 0 to disable "
 "autodeletion."
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+#: model_terms:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
 msgid "Basic backup configuration"
 msgstr ""
 
@@ -75,35 +90,40 @@ msgid "Cannot duplicate a configuration."
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.model.fields,help:auto_backup.field_db_backup_method
+#: model:ir.model.fields,help:auto_backup.field_db_backup__backup_format
+msgid "Choose the format for this backup."
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,help:auto_backup.field_db_backup__method
 msgid "Choose the storage method for this backup."
 msgstr ""
 
 #. module: auto_backup
-#: code:addons/auto_backup/models/db_backup.py:249
+#: code:addons/auto_backup/models/db_backup.py:265
 #, python-format
 msgid "Cleanup of old database backups failed."
 msgstr ""
 
 #. module: auto_backup
-#: code:addons/auto_backup/models/db_backup.py:128
+#: code:addons/auto_backup/models/db_backup.py:137
 #, python-format
 msgid "Connection Test Failed!"
 msgstr ""
 
 #. module: auto_backup
-#: code:addons/auto_backup/models/db_backup.py:123
+#: code:addons/auto_backup/models/db_backup.py:132
 #, python-format
 msgid "Connection Test Succeeded!"
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup_create_uid
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__create_uid
 msgid "Created by"
 msgstr "Creado por"
 
 #. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup_create_date
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__create_date
 msgid "Created on"
 msgstr "Creado en"
 
@@ -113,38 +133,38 @@ msgid "Database Backup"
 msgstr ""
 
 #. module: auto_backup
-#: code:addons/auto_backup/models/db_backup.py:203
+#: code:addons/auto_backup/models/db_backup.py:219
 #: model:mail.message.subtype,description:auto_backup.mail_message_subtype_failure
 #, python-format
 msgid "Database backup failed."
 msgstr ""
 
 #. module: auto_backup
-#: code:addons/auto_backup/models/db_backup.py:211
+#: code:addons/auto_backup/models/db_backup.py:227
 #: model:mail.message.subtype,description:auto_backup.mail_message_subtype_success
 #, python-format
 msgid "Database backup succeeded."
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup_days_to_keep
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__days_to_keep
 msgid "Days To Keep"
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup_display_name
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__display_name
 msgid "Display Name"
 msgstr ""
 
 #. module: auto_backup
-#: code:addons/auto_backup/models/db_backup.py:114
+#: code:addons/auto_backup/models/db_backup.py:123
 #, python-format
 msgid ""
 "Do not save backups on your filestore, or you will backup your backups too!"
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+#: model_terms:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
 msgid "Execute backup"
 msgstr ""
 
@@ -154,17 +174,32 @@ msgid "Execute backup(s)"
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup_folder
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__folder
 msgid "Folder"
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__message_follower_ids
+msgid "Followers"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__message_channel_ids
+msgid "Followers (Channels)"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__message_partner_ids
+msgid "Followers (Partners)"
+msgstr ""
+
+#. module: auto_backup
+#: model_terms:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
 msgid "Go to Settings / Technical / Automation / Scheduled Actions."
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+#: model_terms:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
 msgid "Help"
 msgstr ""
 
@@ -174,22 +209,42 @@ msgid "I cannot remove backups from the future. Ask Doc for that."
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup_id
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__id
 msgid "ID"
 msgstr "ID"
 
 #. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup___last_update
+#: model:ir.model.fields,help:auto_backup.field_db_backup__message_unread
+msgid "If checked new messages require your attention."
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,help:auto_backup.field_db_backup__message_needaction
+msgid "If checked, new messages require your attention."
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,help:auto_backup.field_db_backup__message_has_error
+msgid "If checked, some messages have a delivery error."
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__message_is_follower
+msgid "Is Follower"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup____last_update
 msgid "Last Modified on"
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup_write_uid
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__write_uid
 msgid "Last Updated by"
 msgstr "Ultima actualizaci??n por"
 
 #. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup_write_date
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__write_date
 msgid "Last Updated on"
 msgstr "Ultima actualizaci??n en"
 
@@ -199,24 +254,64 @@ msgid "Local disk"
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup_method
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__message_main_attachment_id
+msgid "Main Attachment"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__message_has_error
+msgid "Message Delivery error"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__message_ids
+msgid "Messages"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__method
 msgid "Method"
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup_name
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__name
 msgid "Name"
 msgstr "Nombre"
 
 #. module: auto_backup
-#: model:ir.model.fields,help:auto_backup.field_db_backup_sftp_private_key
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__message_needaction_counter
+msgid "Number of Actions"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__message_has_error_counter
+msgid "Number of error"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,help:auto_backup.field_db_backup__message_needaction_counter
+msgid "Number of messages which requires an action"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,help:auto_backup.field_db_backup__message_has_error_counter
+msgid "Number of messages with delivery error"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,help:auto_backup.field_db_backup__message_unread_counter
+msgid "Number of unread messages"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,help:auto_backup.field_db_backup__sftp_private_key
 msgid ""
 "Path to the private key file. Only the Odoo user should have read "
 "permissions for that file."
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup_sftp_private_key
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__sftp_private_key
 msgid "Private key location"
 msgstr ""
 
@@ -226,94 +321,124 @@ msgid "Remote SFTP server"
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup_sftp_password
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__sftp_password
 msgid "SFTP Password"
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup_sftp_port
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__sftp_port
 msgid "SFTP Port"
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup_sftp_host
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__sftp_host
 msgid "SFTP Server"
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+#: model_terms:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
 msgid "SFTP Settings"
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+#: model_terms:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
 msgid "Search the action named 'Backup scheduler'."
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+#: model_terms:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
 msgid ""
 "Set the scheduler to active and fill in how often you want backups generated."
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.model.fields,help:auto_backup.field_db_backup_name
+#: model:ir.model.fields,help:auto_backup.field_db_backup__name
 msgid "Summary of this backup process"
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+#: model_terms:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
 msgid "Test SFTP Connection"
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.model.fields,help:auto_backup.field_db_backup_sftp_host
+#: model:ir.model.fields,help:auto_backup.field_db_backup__sftp_host
 msgid ""
 "The host name or IP address from your remote server. For example 192.168.0.1"
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.model.fields,help:auto_backup.field_db_backup_sftp_password
+#: model:ir.model.fields,help:auto_backup.field_db_backup__sftp_password
 msgid ""
 "The password for the SFTP connection. If you specify a private key file, "
 "then this is the password to decrypt it."
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.model.fields,help:auto_backup.field_db_backup_sftp_port
+#: model:ir.model.fields,help:auto_backup.field_db_backup__sftp_port
 msgid "The port on the FTP server that accepts SSH/SFTP calls."
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.model.fields,help:auto_backup.field_db_backup_sftp_user
+#: model:ir.model.fields,help:auto_backup.field_db_backup__sftp_user
 msgid ""
 "The username where the SFTP connection should be made with. This is the user "
 "on the external server."
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__message_unread
+msgid "Unread Messages"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__message_unread_counter
+msgid "Unread Messages Counter"
+msgstr ""
+
+#. module: auto_backup
+#: model_terms:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
 msgid ""
 "Use SFTP with caution! This writes files to external servers under the path "
 "you specify."
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup_sftp_user
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__sftp_user
 msgid "Username in the SFTP Server"
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+#: model_terms:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
 msgid "Warning:"
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__website_message_ids
+msgid "Website Messages"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,help:auto_backup.field_db_backup__website_message_ids
+msgid "Website communication history"
+msgstr ""
+
+#. module: auto_backup
+#: model_terms:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
 msgid "john"
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+#: selection:db.backup,backup_format:0
+msgid "pg_dump custom format (without filestore)"
+msgstr ""
+
+#. module: auto_backup
+#: model_terms:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
 msgid "sftp.example.com"
 msgstr ""
+
+#. module: auto_backup
+#: selection:db.backup,backup_format:0
+msgid "zip (includes filestore)"
+msgstr ""
diff --git a/auto_backup/i18n/es_VE.po b/auto_backup/i18n/es_VE.po
index 15430ceda8c..60b78881097 100644
--- a/auto_backup/i18n/es_VE.po
+++ b/auto_backup/i18n/es_VE.po
@@ -20,15 +20,25 @@ msgstr ""
 "Plural-Forms: nplurals=2; plural=(n != 1);\n"
 
 #. module: auto_backup
-#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+#: model_terms:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
 msgid "/home/odoo/.ssh/id_rsa"
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.model.fields,help:auto_backup.field_db_backup_folder
+#: model:ir.model.fields,help:auto_backup.field_db_backup__folder
 msgid "Absolute path for storing the backups"
 msgstr ""
 
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__message_needaction
+msgid "Action Needed"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__message_attachment_count
+msgid "Attachment Count"
+msgstr ""
+
 #. module: auto_backup
 #: model:ir.actions.act_window,name:auto_backup.action_backup_conf_form
 #: model:ir.ui.menu,name:auto_backup.backup_conf_menu
@@ -36,7 +46,7 @@ msgid "Automated Backups"
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+#: model_terms:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
 msgid "Automatic backups of the database can be scheduled as follows:"
 msgstr ""
 
@@ -45,6 +55,11 @@ msgstr ""
 msgid "Backup Failed"
 msgstr ""
 
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__backup_format
+msgid "Backup Format"
+msgstr ""
+
 #. module: auto_backup
 #: model:ir.actions.server,name:auto_backup.ir_cron_backup_scheduler_0_ir_actions_server
 #: model:ir.cron,cron_name:auto_backup.ir_cron_backup_scheduler_0
@@ -58,14 +73,14 @@ msgid "Backup Successful"
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.model.fields,help:auto_backup.field_db_backup_days_to_keep
+#: model:ir.model.fields,help:auto_backup.field_db_backup__days_to_keep
 msgid ""
 "Backups older than this will be deleted automatically. Set 0 to disable "
 "autodeletion."
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+#: model_terms:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
 msgid "Basic backup configuration"
 msgstr ""
 
@@ -75,35 +90,40 @@ msgid "Cannot duplicate a configuration."
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.model.fields,help:auto_backup.field_db_backup_method
+#: model:ir.model.fields,help:auto_backup.field_db_backup__backup_format
+msgid "Choose the format for this backup."
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,help:auto_backup.field_db_backup__method
 msgid "Choose the storage method for this backup."
 msgstr ""
 
 #. module: auto_backup
-#: code:addons/auto_backup/models/db_backup.py:249
+#: code:addons/auto_backup/models/db_backup.py:265
 #, python-format
 msgid "Cleanup of old database backups failed."
 msgstr ""
 
 #. module: auto_backup
-#: code:addons/auto_backup/models/db_backup.py:128
+#: code:addons/auto_backup/models/db_backup.py:137
 #, python-format
 msgid "Connection Test Failed!"
 msgstr ""
 
 #. module: auto_backup
-#: code:addons/auto_backup/models/db_backup.py:123
+#: code:addons/auto_backup/models/db_backup.py:132
 #, python-format
 msgid "Connection Test Succeeded!"
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup_create_uid
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__create_uid
 msgid "Created by"
 msgstr "Creado por"
 
 #. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup_create_date
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__create_date
 msgid "Created on"
 msgstr "Creado en"
 
@@ -113,38 +133,38 @@ msgid "Database Backup"
 msgstr ""
 
 #. module: auto_backup
-#: code:addons/auto_backup/models/db_backup.py:203
+#: code:addons/auto_backup/models/db_backup.py:219
 #: model:mail.message.subtype,description:auto_backup.mail_message_subtype_failure
 #, python-format
 msgid "Database backup failed."
 msgstr ""
 
 #. module: auto_backup
-#: code:addons/auto_backup/models/db_backup.py:211
+#: code:addons/auto_backup/models/db_backup.py:227
 #: model:mail.message.subtype,description:auto_backup.mail_message_subtype_success
 #, python-format
 msgid "Database backup succeeded."
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup_days_to_keep
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__days_to_keep
 msgid "Days To Keep"
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup_display_name
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__display_name
 msgid "Display Name"
 msgstr "Mostrar nombre"
 
 #. module: auto_backup
-#: code:addons/auto_backup/models/db_backup.py:114
+#: code:addons/auto_backup/models/db_backup.py:123
 #, python-format
 msgid ""
 "Do not save backups on your filestore, or you will backup your backups too!"
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+#: model_terms:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
 msgid "Execute backup"
 msgstr ""
 
@@ -154,17 +174,32 @@ msgid "Execute backup(s)"
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup_folder
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__folder
 msgid "Folder"
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__message_follower_ids
+msgid "Followers"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__message_channel_ids
+msgid "Followers (Channels)"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__message_partner_ids
+msgid "Followers (Partners)"
+msgstr ""
+
+#. module: auto_backup
+#: model_terms:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
 msgid "Go to Settings / Technical / Automation / Scheduled Actions."
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+#: model_terms:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
 msgid "Help"
 msgstr ""
 
@@ -174,22 +209,42 @@ msgid "I cannot remove backups from the future. Ask Doc for that."
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup_id
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__id
 msgid "ID"
 msgstr "ID"
 
 #. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup___last_update
+#: model:ir.model.fields,help:auto_backup.field_db_backup__message_unread
+msgid "If checked new messages require your attention."
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,help:auto_backup.field_db_backup__message_needaction
+msgid "If checked, new messages require your attention."
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,help:auto_backup.field_db_backup__message_has_error
+msgid "If checked, some messages have a delivery error."
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__message_is_follower
+msgid "Is Follower"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup____last_update
 msgid "Last Modified on"
 msgstr "Modificada por ??ltima vez"
 
 #. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup_write_uid
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__write_uid
 msgid "Last Updated by"
 msgstr "Ultima actualizaci??n por"
 
 #. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup_write_date
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__write_date
 msgid "Last Updated on"
 msgstr "Ultima actualizaci??n en"
 
@@ -199,24 +254,64 @@ msgid "Local disk"
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup_method
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__message_main_attachment_id
+msgid "Main Attachment"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__message_has_error
+msgid "Message Delivery error"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__message_ids
+msgid "Messages"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__method
 msgid "Method"
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup_name
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__name
 msgid "Name"
 msgstr "Nombre"
 
 #. module: auto_backup
-#: model:ir.model.fields,help:auto_backup.field_db_backup_sftp_private_key
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__message_needaction_counter
+msgid "Number of Actions"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__message_has_error_counter
+msgid "Number of error"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,help:auto_backup.field_db_backup__message_needaction_counter
+msgid "Number of messages which requires an action"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,help:auto_backup.field_db_backup__message_has_error_counter
+msgid "Number of messages with delivery error"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,help:auto_backup.field_db_backup__message_unread_counter
+msgid "Number of unread messages"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,help:auto_backup.field_db_backup__sftp_private_key
 msgid ""
 "Path to the private key file. Only the Odoo user should have read "
 "permissions for that file."
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup_sftp_private_key
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__sftp_private_key
 msgid "Private key location"
 msgstr ""
 
@@ -226,94 +321,124 @@ msgid "Remote SFTP server"
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup_sftp_password
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__sftp_password
 msgid "SFTP Password"
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup_sftp_port
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__sftp_port
 msgid "SFTP Port"
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup_sftp_host
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__sftp_host
 msgid "SFTP Server"
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+#: model_terms:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
 msgid "SFTP Settings"
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+#: model_terms:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
 msgid "Search the action named 'Backup scheduler'."
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+#: model_terms:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
 msgid ""
 "Set the scheduler to active and fill in how often you want backups generated."
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.model.fields,help:auto_backup.field_db_backup_name
+#: model:ir.model.fields,help:auto_backup.field_db_backup__name
 msgid "Summary of this backup process"
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+#: model_terms:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
 msgid "Test SFTP Connection"
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.model.fields,help:auto_backup.field_db_backup_sftp_host
+#: model:ir.model.fields,help:auto_backup.field_db_backup__sftp_host
 msgid ""
 "The host name or IP address from your remote server. For example 192.168.0.1"
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.model.fields,help:auto_backup.field_db_backup_sftp_password
+#: model:ir.model.fields,help:auto_backup.field_db_backup__sftp_password
 msgid ""
 "The password for the SFTP connection. If you specify a private key file, "
 "then this is the password to decrypt it."
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.model.fields,help:auto_backup.field_db_backup_sftp_port
+#: model:ir.model.fields,help:auto_backup.field_db_backup__sftp_port
 msgid "The port on the FTP server that accepts SSH/SFTP calls."
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.model.fields,help:auto_backup.field_db_backup_sftp_user
+#: model:ir.model.fields,help:auto_backup.field_db_backup__sftp_user
 msgid ""
 "The username where the SFTP connection should be made with. This is the user "
 "on the external server."
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__message_unread
+msgid "Unread Messages"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__message_unread_counter
+msgid "Unread Messages Counter"
+msgstr ""
+
+#. module: auto_backup
+#: model_terms:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
 msgid ""
 "Use SFTP with caution! This writes files to external servers under the path "
 "you specify."
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup_sftp_user
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__sftp_user
 msgid "Username in the SFTP Server"
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+#: model_terms:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
 msgid "Warning:"
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__website_message_ids
+msgid "Website Messages"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,help:auto_backup.field_db_backup__website_message_ids
+msgid "Website communication history"
+msgstr ""
+
+#. module: auto_backup
+#: model_terms:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
 msgid "john"
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+#: selection:db.backup,backup_format:0
+msgid "pg_dump custom format (without filestore)"
+msgstr ""
+
+#. module: auto_backup
+#: model_terms:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
 msgid "sftp.example.com"
 msgstr ""
+
+#. module: auto_backup
+#: selection:db.backup,backup_format:0
+msgid "zip (includes filestore)"
+msgstr ""
diff --git a/auto_backup/i18n/et.po b/auto_backup/i18n/et.po
index d50f299ddfc..eefa21f9a09 100644
--- a/auto_backup/i18n/et.po
+++ b/auto_backup/i18n/et.po
@@ -19,15 +19,25 @@ msgstr ""
 "Plural-Forms: nplurals=2; plural=(n != 1);\n"
 
 #. module: auto_backup
-#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+#: model_terms:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
 msgid "/home/odoo/.ssh/id_rsa"
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.model.fields,help:auto_backup.field_db_backup_folder
+#: model:ir.model.fields,help:auto_backup.field_db_backup__folder
 msgid "Absolute path for storing the backups"
 msgstr ""
 
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__message_needaction
+msgid "Action Needed"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__message_attachment_count
+msgid "Attachment Count"
+msgstr ""
+
 #. module: auto_backup
 #: model:ir.actions.act_window,name:auto_backup.action_backup_conf_form
 #: model:ir.ui.menu,name:auto_backup.backup_conf_menu
@@ -35,7 +45,7 @@ msgid "Automated Backups"
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+#: model_terms:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
 msgid "Automatic backups of the database can be scheduled as follows:"
 msgstr ""
 
@@ -44,6 +54,11 @@ msgstr ""
 msgid "Backup Failed"
 msgstr ""
 
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__backup_format
+msgid "Backup Format"
+msgstr ""
+
 #. module: auto_backup
 #: model:ir.actions.server,name:auto_backup.ir_cron_backup_scheduler_0_ir_actions_server
 #: model:ir.cron,cron_name:auto_backup.ir_cron_backup_scheduler_0
@@ -57,14 +72,14 @@ msgid "Backup Successful"
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.model.fields,help:auto_backup.field_db_backup_days_to_keep
+#: model:ir.model.fields,help:auto_backup.field_db_backup__days_to_keep
 msgid ""
 "Backups older than this will be deleted automatically. Set 0 to disable "
 "autodeletion."
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+#: model_terms:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
 msgid "Basic backup configuration"
 msgstr ""
 
@@ -74,35 +89,40 @@ msgid "Cannot duplicate a configuration."
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.model.fields,help:auto_backup.field_db_backup_method
+#: model:ir.model.fields,help:auto_backup.field_db_backup__backup_format
+msgid "Choose the format for this backup."
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,help:auto_backup.field_db_backup__method
 msgid "Choose the storage method for this backup."
 msgstr ""
 
 #. module: auto_backup
-#: code:addons/auto_backup/models/db_backup.py:249
+#: code:addons/auto_backup/models/db_backup.py:265
 #, python-format
 msgid "Cleanup of old database backups failed."
 msgstr ""
 
 #. module: auto_backup
-#: code:addons/auto_backup/models/db_backup.py:128
+#: code:addons/auto_backup/models/db_backup.py:137
 #, python-format
 msgid "Connection Test Failed!"
 msgstr ""
 
 #. module: auto_backup
-#: code:addons/auto_backup/models/db_backup.py:123
+#: code:addons/auto_backup/models/db_backup.py:132
 #, python-format
 msgid "Connection Test Succeeded!"
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup_create_uid
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__create_uid
 msgid "Created by"
 msgstr "Loonud"
 
 #. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup_create_date
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__create_date
 msgid "Created on"
 msgstr "Loodud"
 
@@ -112,38 +132,38 @@ msgid "Database Backup"
 msgstr ""
 
 #. module: auto_backup
-#: code:addons/auto_backup/models/db_backup.py:203
+#: code:addons/auto_backup/models/db_backup.py:219
 #: model:mail.message.subtype,description:auto_backup.mail_message_subtype_failure
 #, python-format
 msgid "Database backup failed."
 msgstr ""
 
 #. module: auto_backup
-#: code:addons/auto_backup/models/db_backup.py:211
+#: code:addons/auto_backup/models/db_backup.py:227
 #: model:mail.message.subtype,description:auto_backup.mail_message_subtype_success
 #, python-format
 msgid "Database backup succeeded."
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup_days_to_keep
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__days_to_keep
 msgid "Days To Keep"
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup_display_name
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__display_name
 msgid "Display Name"
 msgstr "N??idatav nimi"
 
 #. module: auto_backup
-#: code:addons/auto_backup/models/db_backup.py:114
+#: code:addons/auto_backup/models/db_backup.py:123
 #, python-format
 msgid ""
 "Do not save backups on your filestore, or you will backup your backups too!"
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+#: model_terms:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
 msgid "Execute backup"
 msgstr ""
 
@@ -153,17 +173,32 @@ msgid "Execute backup(s)"
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup_folder
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__folder
 msgid "Folder"
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__message_follower_ids
+msgid "Followers"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__message_channel_ids
+msgid "Followers (Channels)"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__message_partner_ids
+msgid "Followers (Partners)"
+msgstr ""
+
+#. module: auto_backup
+#: model_terms:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
 msgid "Go to Settings / Technical / Automation / Scheduled Actions."
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+#: model_terms:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
 msgid "Help"
 msgstr ""
 
@@ -173,22 +208,42 @@ msgid "I cannot remove backups from the future. Ask Doc for that."
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup_id
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__id
 msgid "ID"
 msgstr "ID"
 
 #. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup___last_update
+#: model:ir.model.fields,help:auto_backup.field_db_backup__message_unread
+msgid "If checked new messages require your attention."
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,help:auto_backup.field_db_backup__message_needaction
+msgid "If checked, new messages require your attention."
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,help:auto_backup.field_db_backup__message_has_error
+msgid "If checked, some messages have a delivery error."
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__message_is_follower
+msgid "Is Follower"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup____last_update
 msgid "Last Modified on"
 msgstr "Viimati muudetud"
 
 #. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup_write_uid
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__write_uid
 msgid "Last Updated by"
 msgstr "Viimati uuendatud"
 
 #. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup_write_date
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__write_date
 msgid "Last Updated on"
 msgstr "Viimati uuendatud"
 
@@ -198,24 +253,64 @@ msgid "Local disk"
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup_method
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__message_main_attachment_id
+msgid "Main Attachment"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__message_has_error
+msgid "Message Delivery error"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__message_ids
+msgid "Messages"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__method
 msgid "Method"
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup_name
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__name
 msgid "Name"
 msgstr "Nimi"
 
 #. module: auto_backup
-#: model:ir.model.fields,help:auto_backup.field_db_backup_sftp_private_key
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__message_needaction_counter
+msgid "Number of Actions"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__message_has_error_counter
+msgid "Number of error"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,help:auto_backup.field_db_backup__message_needaction_counter
+msgid "Number of messages which requires an action"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,help:auto_backup.field_db_backup__message_has_error_counter
+msgid "Number of messages with delivery error"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,help:auto_backup.field_db_backup__message_unread_counter
+msgid "Number of unread messages"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,help:auto_backup.field_db_backup__sftp_private_key
 msgid ""
 "Path to the private key file. Only the Odoo user should have read "
 "permissions for that file."
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup_sftp_private_key
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__sftp_private_key
 msgid "Private key location"
 msgstr ""
 
@@ -225,94 +320,124 @@ msgid "Remote SFTP server"
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup_sftp_password
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__sftp_password
 msgid "SFTP Password"
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup_sftp_port
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__sftp_port
 msgid "SFTP Port"
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup_sftp_host
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__sftp_host
 msgid "SFTP Server"
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+#: model_terms:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
 msgid "SFTP Settings"
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+#: model_terms:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
 msgid "Search the action named 'Backup scheduler'."
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+#: model_terms:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
 msgid ""
 "Set the scheduler to active and fill in how often you want backups generated."
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.model.fields,help:auto_backup.field_db_backup_name
+#: model:ir.model.fields,help:auto_backup.field_db_backup__name
 msgid "Summary of this backup process"
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+#: model_terms:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
 msgid "Test SFTP Connection"
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.model.fields,help:auto_backup.field_db_backup_sftp_host
+#: model:ir.model.fields,help:auto_backup.field_db_backup__sftp_host
 msgid ""
 "The host name or IP address from your remote server. For example 192.168.0.1"
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.model.fields,help:auto_backup.field_db_backup_sftp_password
+#: model:ir.model.fields,help:auto_backup.field_db_backup__sftp_password
 msgid ""
 "The password for the SFTP connection. If you specify a private key file, "
 "then this is the password to decrypt it."
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.model.fields,help:auto_backup.field_db_backup_sftp_port
+#: model:ir.model.fields,help:auto_backup.field_db_backup__sftp_port
 msgid "The port on the FTP server that accepts SSH/SFTP calls."
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.model.fields,help:auto_backup.field_db_backup_sftp_user
+#: model:ir.model.fields,help:auto_backup.field_db_backup__sftp_user
 msgid ""
 "The username where the SFTP connection should be made with. This is the user "
 "on the external server."
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__message_unread
+msgid "Unread Messages"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__message_unread_counter
+msgid "Unread Messages Counter"
+msgstr ""
+
+#. module: auto_backup
+#: model_terms:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
 msgid ""
 "Use SFTP with caution! This writes files to external servers under the path "
 "you specify."
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup_sftp_user
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__sftp_user
 msgid "Username in the SFTP Server"
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+#: model_terms:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
 msgid "Warning:"
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__website_message_ids
+msgid "Website Messages"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,help:auto_backup.field_db_backup__website_message_ids
+msgid "Website communication history"
+msgstr ""
+
+#. module: auto_backup
+#: model_terms:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
 msgid "john"
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+#: selection:db.backup,backup_format:0
+msgid "pg_dump custom format (without filestore)"
+msgstr ""
+
+#. module: auto_backup
+#: model_terms:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
 msgid "sftp.example.com"
 msgstr ""
+
+#. module: auto_backup
+#: selection:db.backup,backup_format:0
+msgid "zip (includes filestore)"
+msgstr ""
diff --git a/auto_backup/i18n/eu.po b/auto_backup/i18n/eu.po
index 92071351c8c..513e9f1ed81 100644
--- a/auto_backup/i18n/eu.po
+++ b/auto_backup/i18n/eu.po
@@ -19,15 +19,25 @@ msgstr ""
 "Plural-Forms: nplurals=2; plural=(n != 1);\n"
 
 #. module: auto_backup
-#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+#: model_terms:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
 msgid "/home/odoo/.ssh/id_rsa"
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.model.fields,help:auto_backup.field_db_backup_folder
+#: model:ir.model.fields,help:auto_backup.field_db_backup__folder
 msgid "Absolute path for storing the backups"
 msgstr ""
 
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__message_needaction
+msgid "Action Needed"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__message_attachment_count
+msgid "Attachment Count"
+msgstr ""
+
 #. module: auto_backup
 #: model:ir.actions.act_window,name:auto_backup.action_backup_conf_form
 #: model:ir.ui.menu,name:auto_backup.backup_conf_menu
@@ -35,7 +45,7 @@ msgid "Automated Backups"
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+#: model_terms:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
 msgid "Automatic backups of the database can be scheduled as follows:"
 msgstr ""
 
@@ -44,6 +54,11 @@ msgstr ""
 msgid "Backup Failed"
 msgstr ""
 
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__backup_format
+msgid "Backup Format"
+msgstr ""
+
 #. module: auto_backup
 #: model:ir.actions.server,name:auto_backup.ir_cron_backup_scheduler_0_ir_actions_server
 #: model:ir.cron,cron_name:auto_backup.ir_cron_backup_scheduler_0
@@ -57,14 +72,14 @@ msgid "Backup Successful"
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.model.fields,help:auto_backup.field_db_backup_days_to_keep
+#: model:ir.model.fields,help:auto_backup.field_db_backup__days_to_keep
 msgid ""
 "Backups older than this will be deleted automatically. Set 0 to disable "
 "autodeletion."
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+#: model_terms:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
 msgid "Basic backup configuration"
 msgstr ""
 
@@ -74,35 +89,40 @@ msgid "Cannot duplicate a configuration."
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.model.fields,help:auto_backup.field_db_backup_method
+#: model:ir.model.fields,help:auto_backup.field_db_backup__backup_format
+msgid "Choose the format for this backup."
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,help:auto_backup.field_db_backup__method
 msgid "Choose the storage method for this backup."
 msgstr ""
 
 #. module: auto_backup
-#: code:addons/auto_backup/models/db_backup.py:249
+#: code:addons/auto_backup/models/db_backup.py:265
 #, python-format
 msgid "Cleanup of old database backups failed."
 msgstr ""
 
 #. module: auto_backup
-#: code:addons/auto_backup/models/db_backup.py:128
+#: code:addons/auto_backup/models/db_backup.py:137
 #, python-format
 msgid "Connection Test Failed!"
 msgstr ""
 
 #. module: auto_backup
-#: code:addons/auto_backup/models/db_backup.py:123
+#: code:addons/auto_backup/models/db_backup.py:132
 #, python-format
 msgid "Connection Test Succeeded!"
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup_create_uid
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__create_uid
 msgid "Created by"
 msgstr "Nork sortua"
 
 #. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup_create_date
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__create_date
 msgid "Created on"
 msgstr "Created on"
 
@@ -112,38 +132,38 @@ msgid "Database Backup"
 msgstr ""
 
 #. module: auto_backup
-#: code:addons/auto_backup/models/db_backup.py:203
+#: code:addons/auto_backup/models/db_backup.py:219
 #: model:mail.message.subtype,description:auto_backup.mail_message_subtype_failure
 #, python-format
 msgid "Database backup failed."
 msgstr ""
 
 #. module: auto_backup
-#: code:addons/auto_backup/models/db_backup.py:211
+#: code:addons/auto_backup/models/db_backup.py:227
 #: model:mail.message.subtype,description:auto_backup.mail_message_subtype_success
 #, python-format
 msgid "Database backup succeeded."
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup_days_to_keep
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__days_to_keep
 msgid "Days To Keep"
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup_display_name
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__display_name
 msgid "Display Name"
 msgstr "Izena erakutsi"
 
 #. module: auto_backup
-#: code:addons/auto_backup/models/db_backup.py:114
+#: code:addons/auto_backup/models/db_backup.py:123
 #, python-format
 msgid ""
 "Do not save backups on your filestore, or you will backup your backups too!"
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+#: model_terms:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
 msgid "Execute backup"
 msgstr ""
 
@@ -153,17 +173,32 @@ msgid "Execute backup(s)"
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup_folder
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__folder
 msgid "Folder"
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__message_follower_ids
+msgid "Followers"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__message_channel_ids
+msgid "Followers (Channels)"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__message_partner_ids
+msgid "Followers (Partners)"
+msgstr ""
+
+#. module: auto_backup
+#: model_terms:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
 msgid "Go to Settings / Technical / Automation / Scheduled Actions."
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+#: model_terms:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
 msgid "Help"
 msgstr ""
 
@@ -173,22 +208,42 @@ msgid "I cannot remove backups from the future. Ask Doc for that."
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup_id
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__id
 msgid "ID"
 msgstr "ID"
 
 #. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup___last_update
+#: model:ir.model.fields,help:auto_backup.field_db_backup__message_unread
+msgid "If checked new messages require your attention."
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,help:auto_backup.field_db_backup__message_needaction
+msgid "If checked, new messages require your attention."
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,help:auto_backup.field_db_backup__message_has_error
+msgid "If checked, some messages have a delivery error."
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__message_is_follower
+msgid "Is Follower"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup____last_update
 msgid "Last Modified on"
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup_write_uid
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__write_uid
 msgid "Last Updated by"
 msgstr "Last Updated by"
 
 #. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup_write_date
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__write_date
 msgid "Last Updated on"
 msgstr "Last Updated on"
 
@@ -198,24 +253,64 @@ msgid "Local disk"
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup_method
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__message_main_attachment_id
+msgid "Main Attachment"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__message_has_error
+msgid "Message Delivery error"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__message_ids
+msgid "Messages"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__method
 msgid "Method"
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup_name
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__name
 msgid "Name"
 msgstr "Izena"
 
 #. module: auto_backup
-#: model:ir.model.fields,help:auto_backup.field_db_backup_sftp_private_key
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__message_needaction_counter
+msgid "Number of Actions"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__message_has_error_counter
+msgid "Number of error"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,help:auto_backup.field_db_backup__message_needaction_counter
+msgid "Number of messages which requires an action"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,help:auto_backup.field_db_backup__message_has_error_counter
+msgid "Number of messages with delivery error"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,help:auto_backup.field_db_backup__message_unread_counter
+msgid "Number of unread messages"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,help:auto_backup.field_db_backup__sftp_private_key
 msgid ""
 "Path to the private key file. Only the Odoo user should have read "
 "permissions for that file."
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup_sftp_private_key
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__sftp_private_key
 msgid "Private key location"
 msgstr ""
 
@@ -225,94 +320,124 @@ msgid "Remote SFTP server"
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup_sftp_password
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__sftp_password
 msgid "SFTP Password"
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup_sftp_port
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__sftp_port
 msgid "SFTP Port"
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup_sftp_host
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__sftp_host
 msgid "SFTP Server"
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+#: model_terms:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
 msgid "SFTP Settings"
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+#: model_terms:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
 msgid "Search the action named 'Backup scheduler'."
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+#: model_terms:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
 msgid ""
 "Set the scheduler to active and fill in how often you want backups generated."
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.model.fields,help:auto_backup.field_db_backup_name
+#: model:ir.model.fields,help:auto_backup.field_db_backup__name
 msgid "Summary of this backup process"
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+#: model_terms:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
 msgid "Test SFTP Connection"
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.model.fields,help:auto_backup.field_db_backup_sftp_host
+#: model:ir.model.fields,help:auto_backup.field_db_backup__sftp_host
 msgid ""
 "The host name or IP address from your remote server. For example 192.168.0.1"
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.model.fields,help:auto_backup.field_db_backup_sftp_password
+#: model:ir.model.fields,help:auto_backup.field_db_backup__sftp_password
 msgid ""
 "The password for the SFTP connection. If you specify a private key file, "
 "then this is the password to decrypt it."
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.model.fields,help:auto_backup.field_db_backup_sftp_port
+#: model:ir.model.fields,help:auto_backup.field_db_backup__sftp_port
 msgid "The port on the FTP server that accepts SSH/SFTP calls."
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.model.fields,help:auto_backup.field_db_backup_sftp_user
+#: model:ir.model.fields,help:auto_backup.field_db_backup__sftp_user
 msgid ""
 "The username where the SFTP connection should be made with. This is the user "
 "on the external server."
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__message_unread
+msgid "Unread Messages"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__message_unread_counter
+msgid "Unread Messages Counter"
+msgstr ""
+
+#. module: auto_backup
+#: model_terms:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
 msgid ""
 "Use SFTP with caution! This writes files to external servers under the path "
 "you specify."
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup_sftp_user
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__sftp_user
 msgid "Username in the SFTP Server"
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+#: model_terms:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
 msgid "Warning:"
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__website_message_ids
+msgid "Website Messages"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,help:auto_backup.field_db_backup__website_message_ids
+msgid "Website communication history"
+msgstr ""
+
+#. module: auto_backup
+#: model_terms:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
 msgid "john"
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+#: selection:db.backup,backup_format:0
+msgid "pg_dump custom format (without filestore)"
+msgstr ""
+
+#. module: auto_backup
+#: model_terms:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
 msgid "sftp.example.com"
 msgstr ""
+
+#. module: auto_backup
+#: selection:db.backup,backup_format:0
+msgid "zip (includes filestore)"
+msgstr ""
diff --git a/auto_backup/i18n/fa.po b/auto_backup/i18n/fa.po
index 79fbf0665b8..e96f3c0af22 100644
--- a/auto_backup/i18n/fa.po
+++ b/auto_backup/i18n/fa.po
@@ -19,15 +19,25 @@ msgstr ""
 "Plural-Forms: nplurals=1; plural=0;\n"
 
 #. module: auto_backup
-#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+#: model_terms:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
 msgid "/home/odoo/.ssh/id_rsa"
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.model.fields,help:auto_backup.field_db_backup_folder
+#: model:ir.model.fields,help:auto_backup.field_db_backup__folder
 msgid "Absolute path for storing the backups"
 msgstr ""
 
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__message_needaction
+msgid "Action Needed"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__message_attachment_count
+msgid "Attachment Count"
+msgstr ""
+
 #. module: auto_backup
 #: model:ir.actions.act_window,name:auto_backup.action_backup_conf_form
 #: model:ir.ui.menu,name:auto_backup.backup_conf_menu
@@ -35,7 +45,7 @@ msgid "Automated Backups"
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+#: model_terms:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
 msgid "Automatic backups of the database can be scheduled as follows:"
 msgstr ""
 
@@ -44,6 +54,11 @@ msgstr ""
 msgid "Backup Failed"
 msgstr ""
 
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__backup_format
+msgid "Backup Format"
+msgstr ""
+
 #. module: auto_backup
 #: model:ir.actions.server,name:auto_backup.ir_cron_backup_scheduler_0_ir_actions_server
 #: model:ir.cron,cron_name:auto_backup.ir_cron_backup_scheduler_0
@@ -57,14 +72,14 @@ msgid "Backup Successful"
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.model.fields,help:auto_backup.field_db_backup_days_to_keep
+#: model:ir.model.fields,help:auto_backup.field_db_backup__days_to_keep
 msgid ""
 "Backups older than this will be deleted automatically. Set 0 to disable "
 "autodeletion."
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+#: model_terms:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
 msgid "Basic backup configuration"
 msgstr ""
 
@@ -74,35 +89,40 @@ msgid "Cannot duplicate a configuration."
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.model.fields,help:auto_backup.field_db_backup_method
+#: model:ir.model.fields,help:auto_backup.field_db_backup__backup_format
+msgid "Choose the format for this backup."
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,help:auto_backup.field_db_backup__method
 msgid "Choose the storage method for this backup."
 msgstr ""
 
 #. module: auto_backup
-#: code:addons/auto_backup/models/db_backup.py:249
+#: code:addons/auto_backup/models/db_backup.py:265
 #, python-format
 msgid "Cleanup of old database backups failed."
 msgstr ""
 
 #. module: auto_backup
-#: code:addons/auto_backup/models/db_backup.py:128
+#: code:addons/auto_backup/models/db_backup.py:137
 #, python-format
 msgid "Connection Test Failed!"
 msgstr ""
 
 #. module: auto_backup
-#: code:addons/auto_backup/models/db_backup.py:123
+#: code:addons/auto_backup/models/db_backup.py:132
 #, python-format
 msgid "Connection Test Succeeded!"
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup_create_uid
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__create_uid
 msgid "Created by"
 msgstr "?????????? ?????? ????????"
 
 #. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup_create_date
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__create_date
 msgid "Created on"
 msgstr "?????????? ?????? ????"
 
@@ -112,38 +132,38 @@ msgid "Database Backup"
 msgstr ""
 
 #. module: auto_backup
-#: code:addons/auto_backup/models/db_backup.py:203
+#: code:addons/auto_backup/models/db_backup.py:219
 #: model:mail.message.subtype,description:auto_backup.mail_message_subtype_failure
 #, python-format
 msgid "Database backup failed."
 msgstr ""
 
 #. module: auto_backup
-#: code:addons/auto_backup/models/db_backup.py:211
+#: code:addons/auto_backup/models/db_backup.py:227
 #: model:mail.message.subtype,description:auto_backup.mail_message_subtype_success
 #, python-format
 msgid "Database backup succeeded."
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup_days_to_keep
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__days_to_keep
 msgid "Days To Keep"
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup_display_name
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__display_name
 msgid "Display Name"
 msgstr "?????? ????????????"
 
 #. module: auto_backup
-#: code:addons/auto_backup/models/db_backup.py:114
+#: code:addons/auto_backup/models/db_backup.py:123
 #, python-format
 msgid ""
 "Do not save backups on your filestore, or you will backup your backups too!"
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+#: model_terms:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
 msgid "Execute backup"
 msgstr ""
 
@@ -153,17 +173,32 @@ msgid "Execute backup(s)"
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup_folder
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__folder
 msgid "Folder"
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__message_follower_ids
+msgid "Followers"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__message_channel_ids
+msgid "Followers (Channels)"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__message_partner_ids
+msgid "Followers (Partners)"
+msgstr ""
+
+#. module: auto_backup
+#: model_terms:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
 msgid "Go to Settings / Technical / Automation / Scheduled Actions."
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+#: model_terms:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
 msgid "Help"
 msgstr ""
 
@@ -173,22 +208,42 @@ msgid "I cannot remove backups from the future. Ask Doc for that."
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup_id
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__id
 msgid "ID"
 msgstr "??????????"
 
 #. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup___last_update
+#: model:ir.model.fields,help:auto_backup.field_db_backup__message_unread
+msgid "If checked new messages require your attention."
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,help:auto_backup.field_db_backup__message_needaction
+msgid "If checked, new messages require your attention."
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,help:auto_backup.field_db_backup__message_has_error
+msgid "If checked, some messages have a delivery error."
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__message_is_follower
+msgid "Is Follower"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup____last_update
 msgid "Last Modified on"
 msgstr "?????????? ?????????? ???????????????????????"
 
 #. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup_write_uid
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__write_uid
 msgid "Last Updated by"
 msgstr "?????????? ???? ?????? ?????????? ????????"
 
 #. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup_write_date
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__write_date
 msgid "Last Updated on"
 msgstr "?????????? ???? ?????? ?????????? ????"
 
@@ -198,24 +253,64 @@ msgid "Local disk"
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup_method
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__message_main_attachment_id
+msgid "Main Attachment"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__message_has_error
+msgid "Message Delivery error"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__message_ids
+msgid "Messages"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__method
 msgid "Method"
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup_name
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__name
 msgid "Name"
 msgstr "??????"
 
 #. module: auto_backup
-#: model:ir.model.fields,help:auto_backup.field_db_backup_sftp_private_key
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__message_needaction_counter
+msgid "Number of Actions"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__message_has_error_counter
+msgid "Number of error"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,help:auto_backup.field_db_backup__message_needaction_counter
+msgid "Number of messages which requires an action"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,help:auto_backup.field_db_backup__message_has_error_counter
+msgid "Number of messages with delivery error"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,help:auto_backup.field_db_backup__message_unread_counter
+msgid "Number of unread messages"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,help:auto_backup.field_db_backup__sftp_private_key
 msgid ""
 "Path to the private key file. Only the Odoo user should have read "
 "permissions for that file."
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup_sftp_private_key
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__sftp_private_key
 msgid "Private key location"
 msgstr ""
 
@@ -225,94 +320,124 @@ msgid "Remote SFTP server"
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup_sftp_password
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__sftp_password
 msgid "SFTP Password"
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup_sftp_port
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__sftp_port
 msgid "SFTP Port"
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup_sftp_host
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__sftp_host
 msgid "SFTP Server"
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+#: model_terms:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
 msgid "SFTP Settings"
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+#: model_terms:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
 msgid "Search the action named 'Backup scheduler'."
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+#: model_terms:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
 msgid ""
 "Set the scheduler to active and fill in how often you want backups generated."
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.model.fields,help:auto_backup.field_db_backup_name
+#: model:ir.model.fields,help:auto_backup.field_db_backup__name
 msgid "Summary of this backup process"
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+#: model_terms:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
 msgid "Test SFTP Connection"
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.model.fields,help:auto_backup.field_db_backup_sftp_host
+#: model:ir.model.fields,help:auto_backup.field_db_backup__sftp_host
 msgid ""
 "The host name or IP address from your remote server. For example 192.168.0.1"
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.model.fields,help:auto_backup.field_db_backup_sftp_password
+#: model:ir.model.fields,help:auto_backup.field_db_backup__sftp_password
 msgid ""
 "The password for the SFTP connection. If you specify a private key file, "
 "then this is the password to decrypt it."
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.model.fields,help:auto_backup.field_db_backup_sftp_port
+#: model:ir.model.fields,help:auto_backup.field_db_backup__sftp_port
 msgid "The port on the FTP server that accepts SSH/SFTP calls."
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.model.fields,help:auto_backup.field_db_backup_sftp_user
+#: model:ir.model.fields,help:auto_backup.field_db_backup__sftp_user
 msgid ""
 "The username where the SFTP connection should be made with. This is the user "
 "on the external server."
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__message_unread
+msgid "Unread Messages"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__message_unread_counter
+msgid "Unread Messages Counter"
+msgstr ""
+
+#. module: auto_backup
+#: model_terms:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
 msgid ""
 "Use SFTP with caution! This writes files to external servers under the path "
 "you specify."
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup_sftp_user
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__sftp_user
 msgid "Username in the SFTP Server"
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+#: model_terms:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
 msgid "Warning:"
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__website_message_ids
+msgid "Website Messages"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,help:auto_backup.field_db_backup__website_message_ids
+msgid "Website communication history"
+msgstr ""
+
+#. module: auto_backup
+#: model_terms:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
 msgid "john"
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+#: selection:db.backup,backup_format:0
+msgid "pg_dump custom format (without filestore)"
+msgstr ""
+
+#. module: auto_backup
+#: model_terms:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
 msgid "sftp.example.com"
 msgstr ""
+
+#. module: auto_backup
+#: selection:db.backup,backup_format:0
+msgid "zip (includes filestore)"
+msgstr ""
diff --git a/auto_backup/i18n/fi.po b/auto_backup/i18n/fi.po
index da0fc7e52a1..c935fc9d069 100644
--- a/auto_backup/i18n/fi.po
+++ b/auto_backup/i18n/fi.po
@@ -19,15 +19,25 @@ msgstr ""
 "Plural-Forms: nplurals=2; plural=(n != 1);\n"
 
 #. module: auto_backup
-#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+#: model_terms:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
 msgid "/home/odoo/.ssh/id_rsa"
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.model.fields,help:auto_backup.field_db_backup_folder
+#: model:ir.model.fields,help:auto_backup.field_db_backup__folder
 msgid "Absolute path for storing the backups"
 msgstr ""
 
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__message_needaction
+msgid "Action Needed"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__message_attachment_count
+msgid "Attachment Count"
+msgstr ""
+
 #. module: auto_backup
 #: model:ir.actions.act_window,name:auto_backup.action_backup_conf_form
 #: model:ir.ui.menu,name:auto_backup.backup_conf_menu
@@ -35,7 +45,7 @@ msgid "Automated Backups"
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+#: model_terms:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
 msgid "Automatic backups of the database can be scheduled as follows:"
 msgstr ""
 
@@ -44,6 +54,11 @@ msgstr ""
 msgid "Backup Failed"
 msgstr ""
 
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__backup_format
+msgid "Backup Format"
+msgstr ""
+
 #. module: auto_backup
 #: model:ir.actions.server,name:auto_backup.ir_cron_backup_scheduler_0_ir_actions_server
 #: model:ir.cron,cron_name:auto_backup.ir_cron_backup_scheduler_0
@@ -57,14 +72,14 @@ msgid "Backup Successful"
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.model.fields,help:auto_backup.field_db_backup_days_to_keep
+#: model:ir.model.fields,help:auto_backup.field_db_backup__days_to_keep
 msgid ""
 "Backups older than this will be deleted automatically. Set 0 to disable "
 "autodeletion."
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+#: model_terms:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
 msgid "Basic backup configuration"
 msgstr ""
 
@@ -74,35 +89,40 @@ msgid "Cannot duplicate a configuration."
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.model.fields,help:auto_backup.field_db_backup_method
+#: model:ir.model.fields,help:auto_backup.field_db_backup__backup_format
+msgid "Choose the format for this backup."
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,help:auto_backup.field_db_backup__method
 msgid "Choose the storage method for this backup."
 msgstr ""
 
 #. module: auto_backup
-#: code:addons/auto_backup/models/db_backup.py:249
+#: code:addons/auto_backup/models/db_backup.py:265
 #, python-format
 msgid "Cleanup of old database backups failed."
 msgstr ""
 
 #. module: auto_backup
-#: code:addons/auto_backup/models/db_backup.py:128
+#: code:addons/auto_backup/models/db_backup.py:137
 #, python-format
 msgid "Connection Test Failed!"
 msgstr ""
 
 #. module: auto_backup
-#: code:addons/auto_backup/models/db_backup.py:123
+#: code:addons/auto_backup/models/db_backup.py:132
 #, python-format
 msgid "Connection Test Succeeded!"
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup_create_uid
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__create_uid
 msgid "Created by"
 msgstr "Luonut"
 
 #. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup_create_date
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__create_date
 msgid "Created on"
 msgstr "Luotu"
 
@@ -112,38 +132,38 @@ msgid "Database Backup"
 msgstr ""
 
 #. module: auto_backup
-#: code:addons/auto_backup/models/db_backup.py:203
+#: code:addons/auto_backup/models/db_backup.py:219
 #: model:mail.message.subtype,description:auto_backup.mail_message_subtype_failure
 #, python-format
 msgid "Database backup failed."
 msgstr ""
 
 #. module: auto_backup
-#: code:addons/auto_backup/models/db_backup.py:211
+#: code:addons/auto_backup/models/db_backup.py:227
 #: model:mail.message.subtype,description:auto_backup.mail_message_subtype_success
 #, python-format
 msgid "Database backup succeeded."
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup_days_to_keep
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__days_to_keep
 msgid "Days To Keep"
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup_display_name
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__display_name
 msgid "Display Name"
 msgstr "Nimi"
 
 #. module: auto_backup
-#: code:addons/auto_backup/models/db_backup.py:114
+#: code:addons/auto_backup/models/db_backup.py:123
 #, python-format
 msgid ""
 "Do not save backups on your filestore, or you will backup your backups too!"
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+#: model_terms:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
 msgid "Execute backup"
 msgstr ""
 
@@ -153,17 +173,32 @@ msgid "Execute backup(s)"
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup_folder
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__folder
 msgid "Folder"
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__message_follower_ids
+msgid "Followers"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__message_channel_ids
+msgid "Followers (Channels)"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__message_partner_ids
+msgid "Followers (Partners)"
+msgstr ""
+
+#. module: auto_backup
+#: model_terms:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
 msgid "Go to Settings / Technical / Automation / Scheduled Actions."
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+#: model_terms:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
 msgid "Help"
 msgstr ""
 
@@ -173,22 +208,42 @@ msgid "I cannot remove backups from the future. Ask Doc for that."
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup_id
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__id
 msgid "ID"
 msgstr "ID"
 
 #. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup___last_update
+#: model:ir.model.fields,help:auto_backup.field_db_backup__message_unread
+msgid "If checked new messages require your attention."
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,help:auto_backup.field_db_backup__message_needaction
+msgid "If checked, new messages require your attention."
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,help:auto_backup.field_db_backup__message_has_error
+msgid "If checked, some messages have a delivery error."
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__message_is_follower
+msgid "Is Follower"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup____last_update
 msgid "Last Modified on"
 msgstr "Viimeksi muokattu"
 
 #. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup_write_uid
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__write_uid
 msgid "Last Updated by"
 msgstr "Viimeksi p??ivitt??nyt"
 
 #. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup_write_date
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__write_date
 msgid "Last Updated on"
 msgstr "Viimeksi p??ivitetty"
 
@@ -198,24 +253,64 @@ msgid "Local disk"
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup_method
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__message_main_attachment_id
+msgid "Main Attachment"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__message_has_error
+msgid "Message Delivery error"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__message_ids
+msgid "Messages"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__method
 msgid "Method"
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup_name
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__name
 msgid "Name"
 msgstr "Nimi"
 
 #. module: auto_backup
-#: model:ir.model.fields,help:auto_backup.field_db_backup_sftp_private_key
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__message_needaction_counter
+msgid "Number of Actions"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__message_has_error_counter
+msgid "Number of error"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,help:auto_backup.field_db_backup__message_needaction_counter
+msgid "Number of messages which requires an action"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,help:auto_backup.field_db_backup__message_has_error_counter
+msgid "Number of messages with delivery error"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,help:auto_backup.field_db_backup__message_unread_counter
+msgid "Number of unread messages"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,help:auto_backup.field_db_backup__sftp_private_key
 msgid ""
 "Path to the private key file. Only the Odoo user should have read "
 "permissions for that file."
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup_sftp_private_key
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__sftp_private_key
 msgid "Private key location"
 msgstr ""
 
@@ -225,94 +320,124 @@ msgid "Remote SFTP server"
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup_sftp_password
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__sftp_password
 msgid "SFTP Password"
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup_sftp_port
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__sftp_port
 msgid "SFTP Port"
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup_sftp_host
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__sftp_host
 msgid "SFTP Server"
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+#: model_terms:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
 msgid "SFTP Settings"
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+#: model_terms:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
 msgid "Search the action named 'Backup scheduler'."
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+#: model_terms:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
 msgid ""
 "Set the scheduler to active and fill in how often you want backups generated."
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.model.fields,help:auto_backup.field_db_backup_name
+#: model:ir.model.fields,help:auto_backup.field_db_backup__name
 msgid "Summary of this backup process"
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+#: model_terms:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
 msgid "Test SFTP Connection"
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.model.fields,help:auto_backup.field_db_backup_sftp_host
+#: model:ir.model.fields,help:auto_backup.field_db_backup__sftp_host
 msgid ""
 "The host name or IP address from your remote server. For example 192.168.0.1"
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.model.fields,help:auto_backup.field_db_backup_sftp_password
+#: model:ir.model.fields,help:auto_backup.field_db_backup__sftp_password
 msgid ""
 "The password for the SFTP connection. If you specify a private key file, "
 "then this is the password to decrypt it."
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.model.fields,help:auto_backup.field_db_backup_sftp_port
+#: model:ir.model.fields,help:auto_backup.field_db_backup__sftp_port
 msgid "The port on the FTP server that accepts SSH/SFTP calls."
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.model.fields,help:auto_backup.field_db_backup_sftp_user
+#: model:ir.model.fields,help:auto_backup.field_db_backup__sftp_user
 msgid ""
 "The username where the SFTP connection should be made with. This is the user "
 "on the external server."
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__message_unread
+msgid "Unread Messages"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__message_unread_counter
+msgid "Unread Messages Counter"
+msgstr ""
+
+#. module: auto_backup
+#: model_terms:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
 msgid ""
 "Use SFTP with caution! This writes files to external servers under the path "
 "you specify."
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup_sftp_user
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__sftp_user
 msgid "Username in the SFTP Server"
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+#: model_terms:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
 msgid "Warning:"
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__website_message_ids
+msgid "Website Messages"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,help:auto_backup.field_db_backup__website_message_ids
+msgid "Website communication history"
+msgstr ""
+
+#. module: auto_backup
+#: model_terms:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
 msgid "john"
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+#: selection:db.backup,backup_format:0
+msgid "pg_dump custom format (without filestore)"
+msgstr ""
+
+#. module: auto_backup
+#: model_terms:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
 msgid "sftp.example.com"
 msgstr ""
+
+#. module: auto_backup
+#: selection:db.backup,backup_format:0
+msgid "zip (includes filestore)"
+msgstr ""
diff --git a/auto_backup/i18n/fr.po b/auto_backup/i18n/fr.po
index 8d0b9a06358..ad7e3bbc61f 100644
--- a/auto_backup/i18n/fr.po
+++ b/auto_backup/i18n/fr.po
@@ -19,15 +19,25 @@ msgstr ""
 "Plural-Forms: nplurals=2; plural=(n > 1);\n"
 
 #. module: auto_backup
-#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+#: model_terms:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
 msgid "/home/odoo/.ssh/id_rsa"
 msgstr "/home/odoo/.ssh/id_rsa"
 
 #. module: auto_backup
-#: model:ir.model.fields,help:auto_backup.field_db_backup_folder
+#: model:ir.model.fields,help:auto_backup.field_db_backup__folder
 msgid "Absolute path for storing the backups"
 msgstr "Chemin absolu o?? sont conserv??es les sauvegardes"
 
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__message_needaction
+msgid "Action Needed"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__message_attachment_count
+msgid "Attachment Count"
+msgstr ""
+
 #. module: auto_backup
 #: model:ir.actions.act_window,name:auto_backup.action_backup_conf_form
 #: model:ir.ui.menu,name:auto_backup.backup_conf_menu
@@ -35,7 +45,7 @@ msgid "Automated Backups"
 msgstr "Sauvegardes automatis??es"
 
 #. module: auto_backup
-#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+#: model_terms:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
 msgid "Automatic backups of the database can be scheduled as follows:"
 msgstr ""
 "Les sauvegardes automatis??es de la base de donn??es peuvent ??tre programm??es "
@@ -46,6 +56,13 @@ msgstr ""
 msgid "Backup Failed"
 msgstr "??chec de la saugarde"
 
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__backup_format
+#, fuzzy
+#| msgid "Backup Failed"
+msgid "Backup Format"
+msgstr "??chec de la saugarde"
+
 #. module: auto_backup
 #: model:ir.actions.server,name:auto_backup.ir_cron_backup_scheduler_0_ir_actions_server
 #: model:ir.cron,cron_name:auto_backup.ir_cron_backup_scheduler_0
@@ -59,7 +76,7 @@ msgid "Backup Successful"
 msgstr "Sauvegarde r??ussie"
 
 #. module: auto_backup
-#: model:ir.model.fields,help:auto_backup.field_db_backup_days_to_keep
+#: model:ir.model.fields,help:auto_backup.field_db_backup__days_to_keep
 msgid ""
 "Backups older than this will be deleted automatically. Set 0 to disable "
 "autodeletion."
@@ -68,7 +85,7 @@ msgstr ""
 "automatiquement. D??finir ?? 0 pour d??sactiver la suppression automatique."
 
 #. module: auto_backup
-#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+#: model_terms:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
 msgid "Basic backup configuration"
 msgstr "Configuration basique de sauvegarde"
 
@@ -78,35 +95,42 @@ msgid "Cannot duplicate a configuration."
 msgstr "Impossible de dupliquer une configuration."
 
 #. module: auto_backup
-#: model:ir.model.fields,help:auto_backup.field_db_backup_method
+#: model:ir.model.fields,help:auto_backup.field_db_backup__backup_format
+#, fuzzy
+#| msgid "Choose the storage method for this backup."
+msgid "Choose the format for this backup."
+msgstr "Choisissez la m??thode de stockage pour cette sauvegarde."
+
+#. module: auto_backup
+#: model:ir.model.fields,help:auto_backup.field_db_backup__method
 msgid "Choose the storage method for this backup."
 msgstr "Choisissez la m??thode de stockage pour cette sauvegarde."
 
 #. module: auto_backup
-#: code:addons/auto_backup/models/db_backup.py:249
+#: code:addons/auto_backup/models/db_backup.py:265
 #, python-format
 msgid "Cleanup of old database backups failed."
 msgstr "??chec du nettoyage des anciennes sauvegardes de la base de donn??es."
 
 #. module: auto_backup
-#: code:addons/auto_backup/models/db_backup.py:128
+#: code:addons/auto_backup/models/db_backup.py:137
 #, python-format
 msgid "Connection Test Failed!"
 msgstr "??chec du test de connexion !"
 
 #. module: auto_backup
-#: code:addons/auto_backup/models/db_backup.py:123
+#: code:addons/auto_backup/models/db_backup.py:132
 #, python-format
 msgid "Connection Test Succeeded!"
 msgstr "Test de connexion r??ussi !"
 
 #. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup_create_uid
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__create_uid
 msgid "Created by"
 msgstr "Cr???? par"
 
 #. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup_create_date
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__create_date
 msgid "Created on"
 msgstr "Cr???? le"
 
@@ -116,31 +140,31 @@ msgid "Database Backup"
 msgstr ""
 
 #. module: auto_backup
-#: code:addons/auto_backup/models/db_backup.py:203
+#: code:addons/auto_backup/models/db_backup.py:219
 #: model:mail.message.subtype,description:auto_backup.mail_message_subtype_failure
 #, python-format
 msgid "Database backup failed."
 msgstr "??chec de la sauvegarde de la base de donn??es"
 
 #. module: auto_backup
-#: code:addons/auto_backup/models/db_backup.py:211
+#: code:addons/auto_backup/models/db_backup.py:227
 #: model:mail.message.subtype,description:auto_backup.mail_message_subtype_success
 #, python-format
 msgid "Database backup succeeded."
 msgstr "Sauvegarde de la base de donn??es r??ussie."
 
 #. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup_days_to_keep
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__days_to_keep
 msgid "Days To Keep"
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup_display_name
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__display_name
 msgid "Display Name"
 msgstr "Nom affich??"
 
 #. module: auto_backup
-#: code:addons/auto_backup/models/db_backup.py:114
+#: code:addons/auto_backup/models/db_backup.py:123
 #, python-format
 msgid ""
 "Do not save backups on your filestore, or you will backup your backups too!"
@@ -149,7 +173,7 @@ msgstr ""
 "seront elles-m??mes sauvegard??es ! "
 
 #. module: auto_backup
-#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+#: model_terms:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
 msgid "Execute backup"
 msgstr ""
 
@@ -159,18 +183,33 @@ msgid "Execute backup(s)"
 msgstr "Lancer la/les sauvegarde(s)"
 
 #. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup_folder
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__folder
 msgid "Folder"
 msgstr "Dossier"
 
 #. module: auto_backup
-#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__message_follower_ids
+msgid "Followers"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__message_channel_ids
+msgid "Followers (Channels)"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__message_partner_ids
+msgid "Followers (Partners)"
+msgstr ""
+
+#. module: auto_backup
+#: model_terms:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
 msgid "Go to Settings / Technical / Automation / Scheduled Actions."
 msgstr ""
 "Allez sur Configuration / Technique / Automatisation / Actions planifi??es"
 
 #. module: auto_backup
-#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+#: model_terms:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
 msgid "Help"
 msgstr "Aide"
 
@@ -180,22 +219,42 @@ msgid "I cannot remove backups from the future. Ask Doc for that."
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup_id
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__id
 msgid "ID"
 msgstr "ID"
 
 #. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup___last_update
+#: model:ir.model.fields,help:auto_backup.field_db_backup__message_unread
+msgid "If checked new messages require your attention."
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,help:auto_backup.field_db_backup__message_needaction
+msgid "If checked, new messages require your attention."
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,help:auto_backup.field_db_backup__message_has_error
+msgid "If checked, some messages have a delivery error."
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__message_is_follower
+msgid "Is Follower"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup____last_update
 msgid "Last Modified on"
 msgstr "Derni??re modification le"
 
 #. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup_write_uid
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__write_uid
 msgid "Last Updated by"
 msgstr "Mis ?? jour par"
 
 #. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup_write_date
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__write_date
 msgid "Last Updated on"
 msgstr "Mis ?? jour le"
 
@@ -205,17 +264,57 @@ msgid "Local disk"
 msgstr "Disque local"
 
 #. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup_method
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__message_main_attachment_id
+msgid "Main Attachment"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__message_has_error
+msgid "Message Delivery error"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__message_ids
+msgid "Messages"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__method
 msgid "Method"
 msgstr "M??thode"
 
 #. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup_name
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__name
 msgid "Name"
 msgstr "Nom"
 
 #. module: auto_backup
-#: model:ir.model.fields,help:auto_backup.field_db_backup_sftp_private_key
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__message_needaction_counter
+msgid "Number of Actions"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__message_has_error_counter
+msgid "Number of error"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,help:auto_backup.field_db_backup__message_needaction_counter
+msgid "Number of messages which requires an action"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,help:auto_backup.field_db_backup__message_has_error_counter
+msgid "Number of messages with delivery error"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,help:auto_backup.field_db_backup__message_unread_counter
+msgid "Number of unread messages"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,help:auto_backup.field_db_backup__sftp_private_key
 msgid ""
 "Path to the private key file. Only the Odoo user should have read "
 "permissions for that file."
@@ -224,7 +323,7 @@ msgstr ""
 "permissions de lecture sur ce fichier."
 
 #. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup_sftp_private_key
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__sftp_private_key
 msgid "Private key location"
 msgstr ""
 
@@ -234,94 +333,124 @@ msgid "Remote SFTP server"
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup_sftp_password
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__sftp_password
 msgid "SFTP Password"
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup_sftp_port
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__sftp_port
 msgid "SFTP Port"
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup_sftp_host
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__sftp_host
 msgid "SFTP Server"
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+#: model_terms:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
 msgid "SFTP Settings"
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+#: model_terms:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
 msgid "Search the action named 'Backup scheduler'."
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+#: model_terms:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
 msgid ""
 "Set the scheduler to active and fill in how often you want backups generated."
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.model.fields,help:auto_backup.field_db_backup_name
+#: model:ir.model.fields,help:auto_backup.field_db_backup__name
 msgid "Summary of this backup process"
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+#: model_terms:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
 msgid "Test SFTP Connection"
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.model.fields,help:auto_backup.field_db_backup_sftp_host
+#: model:ir.model.fields,help:auto_backup.field_db_backup__sftp_host
 msgid ""
 "The host name or IP address from your remote server. For example 192.168.0.1"
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.model.fields,help:auto_backup.field_db_backup_sftp_password
+#: model:ir.model.fields,help:auto_backup.field_db_backup__sftp_password
 msgid ""
 "The password for the SFTP connection. If you specify a private key file, "
 "then this is the password to decrypt it."
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.model.fields,help:auto_backup.field_db_backup_sftp_port
+#: model:ir.model.fields,help:auto_backup.field_db_backup__sftp_port
 msgid "The port on the FTP server that accepts SSH/SFTP calls."
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.model.fields,help:auto_backup.field_db_backup_sftp_user
+#: model:ir.model.fields,help:auto_backup.field_db_backup__sftp_user
 msgid ""
 "The username where the SFTP connection should be made with. This is the user "
 "on the external server."
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__message_unread
+msgid "Unread Messages"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__message_unread_counter
+msgid "Unread Messages Counter"
+msgstr ""
+
+#. module: auto_backup
+#: model_terms:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
 msgid ""
 "Use SFTP with caution! This writes files to external servers under the path "
 "you specify."
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup_sftp_user
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__sftp_user
 msgid "Username in the SFTP Server"
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+#: model_terms:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
 msgid "Warning:"
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__website_message_ids
+msgid "Website Messages"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,help:auto_backup.field_db_backup__website_message_ids
+msgid "Website communication history"
+msgstr ""
+
+#. module: auto_backup
+#: model_terms:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
 msgid "john"
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+#: selection:db.backup,backup_format:0
+msgid "pg_dump custom format (without filestore)"
+msgstr ""
+
+#. module: auto_backup
+#: model_terms:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
 msgid "sftp.example.com"
 msgstr ""
+
+#. module: auto_backup
+#: selection:db.backup,backup_format:0
+msgid "zip (includes filestore)"
+msgstr ""
diff --git a/auto_backup/i18n/fr_CA.po b/auto_backup/i18n/fr_CA.po
index 60f6c44faa1..781ce07aa02 100644
--- a/auto_backup/i18n/fr_CA.po
+++ b/auto_backup/i18n/fr_CA.po
@@ -20,15 +20,25 @@ msgstr ""
 "Plural-Forms: nplurals=2; plural=(n > 1);\n"
 
 #. module: auto_backup
-#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+#: model_terms:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
 msgid "/home/odoo/.ssh/id_rsa"
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.model.fields,help:auto_backup.field_db_backup_folder
+#: model:ir.model.fields,help:auto_backup.field_db_backup__folder
 msgid "Absolute path for storing the backups"
 msgstr ""
 
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__message_needaction
+msgid "Action Needed"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__message_attachment_count
+msgid "Attachment Count"
+msgstr ""
+
 #. module: auto_backup
 #: model:ir.actions.act_window,name:auto_backup.action_backup_conf_form
 #: model:ir.ui.menu,name:auto_backup.backup_conf_menu
@@ -36,7 +46,7 @@ msgid "Automated Backups"
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+#: model_terms:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
 msgid "Automatic backups of the database can be scheduled as follows:"
 msgstr ""
 
@@ -45,6 +55,11 @@ msgstr ""
 msgid "Backup Failed"
 msgstr ""
 
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__backup_format
+msgid "Backup Format"
+msgstr ""
+
 #. module: auto_backup
 #: model:ir.actions.server,name:auto_backup.ir_cron_backup_scheduler_0_ir_actions_server
 #: model:ir.cron,cron_name:auto_backup.ir_cron_backup_scheduler_0
@@ -58,14 +73,14 @@ msgid "Backup Successful"
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.model.fields,help:auto_backup.field_db_backup_days_to_keep
+#: model:ir.model.fields,help:auto_backup.field_db_backup__days_to_keep
 msgid ""
 "Backups older than this will be deleted automatically. Set 0 to disable "
 "autodeletion."
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+#: model_terms:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
 msgid "Basic backup configuration"
 msgstr ""
 
@@ -75,35 +90,40 @@ msgid "Cannot duplicate a configuration."
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.model.fields,help:auto_backup.field_db_backup_method
+#: model:ir.model.fields,help:auto_backup.field_db_backup__backup_format
+msgid "Choose the format for this backup."
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,help:auto_backup.field_db_backup__method
 msgid "Choose the storage method for this backup."
 msgstr ""
 
 #. module: auto_backup
-#: code:addons/auto_backup/models/db_backup.py:249
+#: code:addons/auto_backup/models/db_backup.py:265
 #, python-format
 msgid "Cleanup of old database backups failed."
 msgstr ""
 
 #. module: auto_backup
-#: code:addons/auto_backup/models/db_backup.py:128
+#: code:addons/auto_backup/models/db_backup.py:137
 #, python-format
 msgid "Connection Test Failed!"
 msgstr ""
 
 #. module: auto_backup
-#: code:addons/auto_backup/models/db_backup.py:123
+#: code:addons/auto_backup/models/db_backup.py:132
 #, python-format
 msgid "Connection Test Succeeded!"
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup_create_uid
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__create_uid
 msgid "Created by"
 msgstr "Cr???? par"
 
 #. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup_create_date
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__create_date
 msgid "Created on"
 msgstr "Cr???? le"
 
@@ -113,38 +133,38 @@ msgid "Database Backup"
 msgstr ""
 
 #. module: auto_backup
-#: code:addons/auto_backup/models/db_backup.py:203
+#: code:addons/auto_backup/models/db_backup.py:219
 #: model:mail.message.subtype,description:auto_backup.mail_message_subtype_failure
 #, python-format
 msgid "Database backup failed."
 msgstr ""
 
 #. module: auto_backup
-#: code:addons/auto_backup/models/db_backup.py:211
+#: code:addons/auto_backup/models/db_backup.py:227
 #: model:mail.message.subtype,description:auto_backup.mail_message_subtype_success
 #, python-format
 msgid "Database backup succeeded."
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup_days_to_keep
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__days_to_keep
 msgid "Days To Keep"
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup_display_name
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__display_name
 msgid "Display Name"
 msgstr "Afficher le nom"
 
 #. module: auto_backup
-#: code:addons/auto_backup/models/db_backup.py:114
+#: code:addons/auto_backup/models/db_backup.py:123
 #, python-format
 msgid ""
 "Do not save backups on your filestore, or you will backup your backups too!"
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+#: model_terms:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
 msgid "Execute backup"
 msgstr ""
 
@@ -154,17 +174,32 @@ msgid "Execute backup(s)"
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup_folder
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__folder
 msgid "Folder"
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__message_follower_ids
+msgid "Followers"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__message_channel_ids
+msgid "Followers (Channels)"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__message_partner_ids
+msgid "Followers (Partners)"
+msgstr ""
+
+#. module: auto_backup
+#: model_terms:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
 msgid "Go to Settings / Technical / Automation / Scheduled Actions."
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+#: model_terms:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
 msgid "Help"
 msgstr ""
 
@@ -174,22 +209,42 @@ msgid "I cannot remove backups from the future. Ask Doc for that."
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup_id
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__id
 msgid "ID"
 msgstr "Identifiant"
 
 #. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup___last_update
+#: model:ir.model.fields,help:auto_backup.field_db_backup__message_unread
+msgid "If checked new messages require your attention."
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,help:auto_backup.field_db_backup__message_needaction
+msgid "If checked, new messages require your attention."
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,help:auto_backup.field_db_backup__message_has_error
+msgid "If checked, some messages have a delivery error."
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__message_is_follower
+msgid "Is Follower"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup____last_update
 msgid "Last Modified on"
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup_write_uid
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__write_uid
 msgid "Last Updated by"
 msgstr "Derni??re mise ?? jour par"
 
 #. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup_write_date
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__write_date
 msgid "Last Updated on"
 msgstr "Derni??re mise ?? jour le"
 
@@ -199,24 +254,64 @@ msgid "Local disk"
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup_method
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__message_main_attachment_id
+msgid "Main Attachment"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__message_has_error
+msgid "Message Delivery error"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__message_ids
+msgid "Messages"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__method
 msgid "Method"
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup_name
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__name
 msgid "Name"
 msgstr "Nom"
 
 #. module: auto_backup
-#: model:ir.model.fields,help:auto_backup.field_db_backup_sftp_private_key
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__message_needaction_counter
+msgid "Number of Actions"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__message_has_error_counter
+msgid "Number of error"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,help:auto_backup.field_db_backup__message_needaction_counter
+msgid "Number of messages which requires an action"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,help:auto_backup.field_db_backup__message_has_error_counter
+msgid "Number of messages with delivery error"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,help:auto_backup.field_db_backup__message_unread_counter
+msgid "Number of unread messages"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,help:auto_backup.field_db_backup__sftp_private_key
 msgid ""
 "Path to the private key file. Only the Odoo user should have read "
 "permissions for that file."
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup_sftp_private_key
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__sftp_private_key
 msgid "Private key location"
 msgstr ""
 
@@ -226,94 +321,124 @@ msgid "Remote SFTP server"
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup_sftp_password
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__sftp_password
 msgid "SFTP Password"
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup_sftp_port
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__sftp_port
 msgid "SFTP Port"
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup_sftp_host
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__sftp_host
 msgid "SFTP Server"
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+#: model_terms:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
 msgid "SFTP Settings"
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+#: model_terms:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
 msgid "Search the action named 'Backup scheduler'."
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+#: model_terms:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
 msgid ""
 "Set the scheduler to active and fill in how often you want backups generated."
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.model.fields,help:auto_backup.field_db_backup_name
+#: model:ir.model.fields,help:auto_backup.field_db_backup__name
 msgid "Summary of this backup process"
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+#: model_terms:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
 msgid "Test SFTP Connection"
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.model.fields,help:auto_backup.field_db_backup_sftp_host
+#: model:ir.model.fields,help:auto_backup.field_db_backup__sftp_host
 msgid ""
 "The host name or IP address from your remote server. For example 192.168.0.1"
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.model.fields,help:auto_backup.field_db_backup_sftp_password
+#: model:ir.model.fields,help:auto_backup.field_db_backup__sftp_password
 msgid ""
 "The password for the SFTP connection. If you specify a private key file, "
 "then this is the password to decrypt it."
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.model.fields,help:auto_backup.field_db_backup_sftp_port
+#: model:ir.model.fields,help:auto_backup.field_db_backup__sftp_port
 msgid "The port on the FTP server that accepts SSH/SFTP calls."
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.model.fields,help:auto_backup.field_db_backup_sftp_user
+#: model:ir.model.fields,help:auto_backup.field_db_backup__sftp_user
 msgid ""
 "The username where the SFTP connection should be made with. This is the user "
 "on the external server."
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__message_unread
+msgid "Unread Messages"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__message_unread_counter
+msgid "Unread Messages Counter"
+msgstr ""
+
+#. module: auto_backup
+#: model_terms:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
 msgid ""
 "Use SFTP with caution! This writes files to external servers under the path "
 "you specify."
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup_sftp_user
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__sftp_user
 msgid "Username in the SFTP Server"
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+#: model_terms:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
 msgid "Warning:"
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__website_message_ids
+msgid "Website Messages"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,help:auto_backup.field_db_backup__website_message_ids
+msgid "Website communication history"
+msgstr ""
+
+#. module: auto_backup
+#: model_terms:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
 msgid "john"
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+#: selection:db.backup,backup_format:0
+msgid "pg_dump custom format (without filestore)"
+msgstr ""
+
+#. module: auto_backup
+#: model_terms:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
 msgid "sftp.example.com"
 msgstr ""
+
+#. module: auto_backup
+#: selection:db.backup,backup_format:0
+msgid "zip (includes filestore)"
+msgstr ""
diff --git a/auto_backup/i18n/fr_CH.po b/auto_backup/i18n/fr_CH.po
index 0c273722d53..0d129f4075c 100644
--- a/auto_backup/i18n/fr_CH.po
+++ b/auto_backup/i18n/fr_CH.po
@@ -20,15 +20,25 @@ msgstr ""
 "Plural-Forms: nplurals=2; plural=(n > 1);\n"
 
 #. module: auto_backup
-#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+#: model_terms:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
 msgid "/home/odoo/.ssh/id_rsa"
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.model.fields,help:auto_backup.field_db_backup_folder
+#: model:ir.model.fields,help:auto_backup.field_db_backup__folder
 msgid "Absolute path for storing the backups"
 msgstr ""
 
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__message_needaction
+msgid "Action Needed"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__message_attachment_count
+msgid "Attachment Count"
+msgstr ""
+
 #. module: auto_backup
 #: model:ir.actions.act_window,name:auto_backup.action_backup_conf_form
 #: model:ir.ui.menu,name:auto_backup.backup_conf_menu
@@ -36,7 +46,7 @@ msgid "Automated Backups"
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+#: model_terms:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
 msgid "Automatic backups of the database can be scheduled as follows:"
 msgstr ""
 
@@ -45,6 +55,11 @@ msgstr ""
 msgid "Backup Failed"
 msgstr ""
 
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__backup_format
+msgid "Backup Format"
+msgstr ""
+
 #. module: auto_backup
 #: model:ir.actions.server,name:auto_backup.ir_cron_backup_scheduler_0_ir_actions_server
 #: model:ir.cron,cron_name:auto_backup.ir_cron_backup_scheduler_0
@@ -58,14 +73,14 @@ msgid "Backup Successful"
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.model.fields,help:auto_backup.field_db_backup_days_to_keep
+#: model:ir.model.fields,help:auto_backup.field_db_backup__days_to_keep
 msgid ""
 "Backups older than this will be deleted automatically. Set 0 to disable "
 "autodeletion."
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+#: model_terms:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
 msgid "Basic backup configuration"
 msgstr ""
 
@@ -75,35 +90,40 @@ msgid "Cannot duplicate a configuration."
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.model.fields,help:auto_backup.field_db_backup_method
+#: model:ir.model.fields,help:auto_backup.field_db_backup__backup_format
+msgid "Choose the format for this backup."
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,help:auto_backup.field_db_backup__method
 msgid "Choose the storage method for this backup."
 msgstr ""
 
 #. module: auto_backup
-#: code:addons/auto_backup/models/db_backup.py:249
+#: code:addons/auto_backup/models/db_backup.py:265
 #, python-format
 msgid "Cleanup of old database backups failed."
 msgstr ""
 
 #. module: auto_backup
-#: code:addons/auto_backup/models/db_backup.py:128
+#: code:addons/auto_backup/models/db_backup.py:137
 #, python-format
 msgid "Connection Test Failed!"
 msgstr ""
 
 #. module: auto_backup
-#: code:addons/auto_backup/models/db_backup.py:123
+#: code:addons/auto_backup/models/db_backup.py:132
 #, python-format
 msgid "Connection Test Succeeded!"
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup_create_uid
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__create_uid
 msgid "Created by"
 msgstr "Cr???? par"
 
 #. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup_create_date
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__create_date
 msgid "Created on"
 msgstr "Cr???? le"
 
@@ -113,38 +133,38 @@ msgid "Database Backup"
 msgstr ""
 
 #. module: auto_backup
-#: code:addons/auto_backup/models/db_backup.py:203
+#: code:addons/auto_backup/models/db_backup.py:219
 #: model:mail.message.subtype,description:auto_backup.mail_message_subtype_failure
 #, python-format
 msgid "Database backup failed."
 msgstr ""
 
 #. module: auto_backup
-#: code:addons/auto_backup/models/db_backup.py:211
+#: code:addons/auto_backup/models/db_backup.py:227
 #: model:mail.message.subtype,description:auto_backup.mail_message_subtype_success
 #, python-format
 msgid "Database backup succeeded."
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup_days_to_keep
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__days_to_keep
 msgid "Days To Keep"
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup_display_name
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__display_name
 msgid "Display Name"
 msgstr "Nom affich??"
 
 #. module: auto_backup
-#: code:addons/auto_backup/models/db_backup.py:114
+#: code:addons/auto_backup/models/db_backup.py:123
 #, python-format
 msgid ""
 "Do not save backups on your filestore, or you will backup your backups too!"
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+#: model_terms:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
 msgid "Execute backup"
 msgstr ""
 
@@ -154,17 +174,32 @@ msgid "Execute backup(s)"
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup_folder
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__folder
 msgid "Folder"
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__message_follower_ids
+msgid "Followers"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__message_channel_ids
+msgid "Followers (Channels)"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__message_partner_ids
+msgid "Followers (Partners)"
+msgstr ""
+
+#. module: auto_backup
+#: model_terms:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
 msgid "Go to Settings / Technical / Automation / Scheduled Actions."
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+#: model_terms:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
 msgid "Help"
 msgstr ""
 
@@ -174,22 +209,42 @@ msgid "I cannot remove backups from the future. Ask Doc for that."
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup_id
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__id
 msgid "ID"
 msgstr "ID"
 
 #. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup___last_update
+#: model:ir.model.fields,help:auto_backup.field_db_backup__message_unread
+msgid "If checked new messages require your attention."
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,help:auto_backup.field_db_backup__message_needaction
+msgid "If checked, new messages require your attention."
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,help:auto_backup.field_db_backup__message_has_error
+msgid "If checked, some messages have a delivery error."
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__message_is_follower
+msgid "Is Follower"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup____last_update
 msgid "Last Modified on"
 msgstr "Derni??re modification le"
 
 #. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup_write_uid
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__write_uid
 msgid "Last Updated by"
 msgstr "Modifi?? par"
 
 #. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup_write_date
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__write_date
 msgid "Last Updated on"
 msgstr "Modifi?? le"
 
@@ -199,24 +254,64 @@ msgid "Local disk"
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup_method
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__message_main_attachment_id
+msgid "Main Attachment"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__message_has_error
+msgid "Message Delivery error"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__message_ids
+msgid "Messages"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__method
 msgid "Method"
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup_name
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__name
 msgid "Name"
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.model.fields,help:auto_backup.field_db_backup_sftp_private_key
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__message_needaction_counter
+msgid "Number of Actions"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__message_has_error_counter
+msgid "Number of error"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,help:auto_backup.field_db_backup__message_needaction_counter
+msgid "Number of messages which requires an action"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,help:auto_backup.field_db_backup__message_has_error_counter
+msgid "Number of messages with delivery error"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,help:auto_backup.field_db_backup__message_unread_counter
+msgid "Number of unread messages"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,help:auto_backup.field_db_backup__sftp_private_key
 msgid ""
 "Path to the private key file. Only the Odoo user should have read "
 "permissions for that file."
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup_sftp_private_key
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__sftp_private_key
 msgid "Private key location"
 msgstr ""
 
@@ -226,94 +321,124 @@ msgid "Remote SFTP server"
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup_sftp_password
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__sftp_password
 msgid "SFTP Password"
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup_sftp_port
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__sftp_port
 msgid "SFTP Port"
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup_sftp_host
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__sftp_host
 msgid "SFTP Server"
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+#: model_terms:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
 msgid "SFTP Settings"
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+#: model_terms:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
 msgid "Search the action named 'Backup scheduler'."
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+#: model_terms:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
 msgid ""
 "Set the scheduler to active and fill in how often you want backups generated."
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.model.fields,help:auto_backup.field_db_backup_name
+#: model:ir.model.fields,help:auto_backup.field_db_backup__name
 msgid "Summary of this backup process"
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+#: model_terms:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
 msgid "Test SFTP Connection"
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.model.fields,help:auto_backup.field_db_backup_sftp_host
+#: model:ir.model.fields,help:auto_backup.field_db_backup__sftp_host
 msgid ""
 "The host name or IP address from your remote server. For example 192.168.0.1"
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.model.fields,help:auto_backup.field_db_backup_sftp_password
+#: model:ir.model.fields,help:auto_backup.field_db_backup__sftp_password
 msgid ""
 "The password for the SFTP connection. If you specify a private key file, "
 "then this is the password to decrypt it."
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.model.fields,help:auto_backup.field_db_backup_sftp_port
+#: model:ir.model.fields,help:auto_backup.field_db_backup__sftp_port
 msgid "The port on the FTP server that accepts SSH/SFTP calls."
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.model.fields,help:auto_backup.field_db_backup_sftp_user
+#: model:ir.model.fields,help:auto_backup.field_db_backup__sftp_user
 msgid ""
 "The username where the SFTP connection should be made with. This is the user "
 "on the external server."
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__message_unread
+msgid "Unread Messages"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__message_unread_counter
+msgid "Unread Messages Counter"
+msgstr ""
+
+#. module: auto_backup
+#: model_terms:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
 msgid ""
 "Use SFTP with caution! This writes files to external servers under the path "
 "you specify."
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup_sftp_user
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__sftp_user
 msgid "Username in the SFTP Server"
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+#: model_terms:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
 msgid "Warning:"
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__website_message_ids
+msgid "Website Messages"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,help:auto_backup.field_db_backup__website_message_ids
+msgid "Website communication history"
+msgstr ""
+
+#. module: auto_backup
+#: model_terms:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
 msgid "john"
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+#: selection:db.backup,backup_format:0
+msgid "pg_dump custom format (without filestore)"
+msgstr ""
+
+#. module: auto_backup
+#: model_terms:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
 msgid "sftp.example.com"
 msgstr ""
+
+#. module: auto_backup
+#: selection:db.backup,backup_format:0
+msgid "zip (includes filestore)"
+msgstr ""
diff --git a/auto_backup/i18n/gl.po b/auto_backup/i18n/gl.po
index df9c32a4e2c..712ea44d7f4 100644
--- a/auto_backup/i18n/gl.po
+++ b/auto_backup/i18n/gl.po
@@ -19,15 +19,25 @@ msgstr ""
 "Plural-Forms: nplurals=2; plural=(n != 1);\n"
 
 #. module: auto_backup
-#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+#: model_terms:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
 msgid "/home/odoo/.ssh/id_rsa"
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.model.fields,help:auto_backup.field_db_backup_folder
+#: model:ir.model.fields,help:auto_backup.field_db_backup__folder
 msgid "Absolute path for storing the backups"
 msgstr ""
 
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__message_needaction
+msgid "Action Needed"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__message_attachment_count
+msgid "Attachment Count"
+msgstr ""
+
 #. module: auto_backup
 #: model:ir.actions.act_window,name:auto_backup.action_backup_conf_form
 #: model:ir.ui.menu,name:auto_backup.backup_conf_menu
@@ -35,7 +45,7 @@ msgid "Automated Backups"
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+#: model_terms:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
 msgid "Automatic backups of the database can be scheduled as follows:"
 msgstr ""
 
@@ -44,6 +54,11 @@ msgstr ""
 msgid "Backup Failed"
 msgstr ""
 
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__backup_format
+msgid "Backup Format"
+msgstr ""
+
 #. module: auto_backup
 #: model:ir.actions.server,name:auto_backup.ir_cron_backup_scheduler_0_ir_actions_server
 #: model:ir.cron,cron_name:auto_backup.ir_cron_backup_scheduler_0
@@ -57,14 +72,14 @@ msgid "Backup Successful"
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.model.fields,help:auto_backup.field_db_backup_days_to_keep
+#: model:ir.model.fields,help:auto_backup.field_db_backup__days_to_keep
 msgid ""
 "Backups older than this will be deleted automatically. Set 0 to disable "
 "autodeletion."
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+#: model_terms:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
 msgid "Basic backup configuration"
 msgstr ""
 
@@ -74,35 +89,40 @@ msgid "Cannot duplicate a configuration."
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.model.fields,help:auto_backup.field_db_backup_method
+#: model:ir.model.fields,help:auto_backup.field_db_backup__backup_format
+msgid "Choose the format for this backup."
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,help:auto_backup.field_db_backup__method
 msgid "Choose the storage method for this backup."
 msgstr ""
 
 #. module: auto_backup
-#: code:addons/auto_backup/models/db_backup.py:249
+#: code:addons/auto_backup/models/db_backup.py:265
 #, python-format
 msgid "Cleanup of old database backups failed."
 msgstr ""
 
 #. module: auto_backup
-#: code:addons/auto_backup/models/db_backup.py:128
+#: code:addons/auto_backup/models/db_backup.py:137
 #, python-format
 msgid "Connection Test Failed!"
 msgstr ""
 
 #. module: auto_backup
-#: code:addons/auto_backup/models/db_backup.py:123
+#: code:addons/auto_backup/models/db_backup.py:132
 #, python-format
 msgid "Connection Test Succeeded!"
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup_create_uid
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__create_uid
 msgid "Created by"
 msgstr "Creada por"
 
 #. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup_create_date
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__create_date
 msgid "Created on"
 msgstr "Creada en"
 
@@ -112,38 +132,38 @@ msgid "Database Backup"
 msgstr ""
 
 #. module: auto_backup
-#: code:addons/auto_backup/models/db_backup.py:203
+#: code:addons/auto_backup/models/db_backup.py:219
 #: model:mail.message.subtype,description:auto_backup.mail_message_subtype_failure
 #, python-format
 msgid "Database backup failed."
 msgstr ""
 
 #. module: auto_backup
-#: code:addons/auto_backup/models/db_backup.py:211
+#: code:addons/auto_backup/models/db_backup.py:227
 #: model:mail.message.subtype,description:auto_backup.mail_message_subtype_success
 #, python-format
 msgid "Database backup succeeded."
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup_days_to_keep
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__days_to_keep
 msgid "Days To Keep"
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup_display_name
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__display_name
 msgid "Display Name"
 msgstr ""
 
 #. module: auto_backup
-#: code:addons/auto_backup/models/db_backup.py:114
+#: code:addons/auto_backup/models/db_backup.py:123
 #, python-format
 msgid ""
 "Do not save backups on your filestore, or you will backup your backups too!"
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+#: model_terms:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
 msgid "Execute backup"
 msgstr ""
 
@@ -153,17 +173,32 @@ msgid "Execute backup(s)"
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup_folder
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__folder
 msgid "Folder"
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__message_follower_ids
+msgid "Followers"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__message_channel_ids
+msgid "Followers (Channels)"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__message_partner_ids
+msgid "Followers (Partners)"
+msgstr ""
+
+#. module: auto_backup
+#: model_terms:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
 msgid "Go to Settings / Technical / Automation / Scheduled Actions."
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+#: model_terms:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
 msgid "Help"
 msgstr ""
 
@@ -173,22 +208,42 @@ msgid "I cannot remove backups from the future. Ask Doc for that."
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup_id
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__id
 msgid "ID"
 msgstr "ID"
 
 #. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup___last_update
+#: model:ir.model.fields,help:auto_backup.field_db_backup__message_unread
+msgid "If checked new messages require your attention."
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,help:auto_backup.field_db_backup__message_needaction
+msgid "If checked, new messages require your attention."
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,help:auto_backup.field_db_backup__message_has_error
+msgid "If checked, some messages have a delivery error."
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__message_is_follower
+msgid "Is Follower"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup____last_update
 msgid "Last Modified on"
 msgstr "Modificado por ??ltima vez o"
 
 #. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup_write_uid
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__write_uid
 msgid "Last Updated by"
 msgstr "Actualizado por"
 
 #. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup_write_date
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__write_date
 msgid "Last Updated on"
 msgstr "??ltima actualizaci??n"
 
@@ -198,24 +253,64 @@ msgid "Local disk"
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup_method
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__message_main_attachment_id
+msgid "Main Attachment"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__message_has_error
+msgid "Message Delivery error"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__message_ids
+msgid "Messages"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__method
 msgid "Method"
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup_name
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__name
 msgid "Name"
 msgstr "Nome"
 
 #. module: auto_backup
-#: model:ir.model.fields,help:auto_backup.field_db_backup_sftp_private_key
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__message_needaction_counter
+msgid "Number of Actions"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__message_has_error_counter
+msgid "Number of error"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,help:auto_backup.field_db_backup__message_needaction_counter
+msgid "Number of messages which requires an action"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,help:auto_backup.field_db_backup__message_has_error_counter
+msgid "Number of messages with delivery error"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,help:auto_backup.field_db_backup__message_unread_counter
+msgid "Number of unread messages"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,help:auto_backup.field_db_backup__sftp_private_key
 msgid ""
 "Path to the private key file. Only the Odoo user should have read "
 "permissions for that file."
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup_sftp_private_key
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__sftp_private_key
 msgid "Private key location"
 msgstr ""
 
@@ -225,94 +320,124 @@ msgid "Remote SFTP server"
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup_sftp_password
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__sftp_password
 msgid "SFTP Password"
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup_sftp_port
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__sftp_port
 msgid "SFTP Port"
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup_sftp_host
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__sftp_host
 msgid "SFTP Server"
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+#: model_terms:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
 msgid "SFTP Settings"
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+#: model_terms:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
 msgid "Search the action named 'Backup scheduler'."
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+#: model_terms:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
 msgid ""
 "Set the scheduler to active and fill in how often you want backups generated."
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.model.fields,help:auto_backup.field_db_backup_name
+#: model:ir.model.fields,help:auto_backup.field_db_backup__name
 msgid "Summary of this backup process"
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+#: model_terms:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
 msgid "Test SFTP Connection"
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.model.fields,help:auto_backup.field_db_backup_sftp_host
+#: model:ir.model.fields,help:auto_backup.field_db_backup__sftp_host
 msgid ""
 "The host name or IP address from your remote server. For example 192.168.0.1"
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.model.fields,help:auto_backup.field_db_backup_sftp_password
+#: model:ir.model.fields,help:auto_backup.field_db_backup__sftp_password
 msgid ""
 "The password for the SFTP connection. If you specify a private key file, "
 "then this is the password to decrypt it."
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.model.fields,help:auto_backup.field_db_backup_sftp_port
+#: model:ir.model.fields,help:auto_backup.field_db_backup__sftp_port
 msgid "The port on the FTP server that accepts SSH/SFTP calls."
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.model.fields,help:auto_backup.field_db_backup_sftp_user
+#: model:ir.model.fields,help:auto_backup.field_db_backup__sftp_user
 msgid ""
 "The username where the SFTP connection should be made with. This is the user "
 "on the external server."
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__message_unread
+msgid "Unread Messages"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__message_unread_counter
+msgid "Unread Messages Counter"
+msgstr ""
+
+#. module: auto_backup
+#: model_terms:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
 msgid ""
 "Use SFTP with caution! This writes files to external servers under the path "
 "you specify."
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup_sftp_user
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__sftp_user
 msgid "Username in the SFTP Server"
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+#: model_terms:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
 msgid "Warning:"
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__website_message_ids
+msgid "Website Messages"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,help:auto_backup.field_db_backup__website_message_ids
+msgid "Website communication history"
+msgstr ""
+
+#. module: auto_backup
+#: model_terms:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
 msgid "john"
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+#: selection:db.backup,backup_format:0
+msgid "pg_dump custom format (without filestore)"
+msgstr ""
+
+#. module: auto_backup
+#: model_terms:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
 msgid "sftp.example.com"
 msgstr ""
+
+#. module: auto_backup
+#: selection:db.backup,backup_format:0
+msgid "zip (includes filestore)"
+msgstr ""
diff --git a/auto_backup/i18n/gl_ES.po b/auto_backup/i18n/gl_ES.po
index b682da8353a..e98c2d49c81 100644
--- a/auto_backup/i18n/gl_ES.po
+++ b/auto_backup/i18n/gl_ES.po
@@ -20,15 +20,25 @@ msgstr ""
 "Plural-Forms: nplurals=2; plural=(n != 1);\n"
 
 #. module: auto_backup
-#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+#: model_terms:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
 msgid "/home/odoo/.ssh/id_rsa"
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.model.fields,help:auto_backup.field_db_backup_folder
+#: model:ir.model.fields,help:auto_backup.field_db_backup__folder
 msgid "Absolute path for storing the backups"
 msgstr ""
 
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__message_needaction
+msgid "Action Needed"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__message_attachment_count
+msgid "Attachment Count"
+msgstr ""
+
 #. module: auto_backup
 #: model:ir.actions.act_window,name:auto_backup.action_backup_conf_form
 #: model:ir.ui.menu,name:auto_backup.backup_conf_menu
@@ -36,7 +46,7 @@ msgid "Automated Backups"
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+#: model_terms:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
 msgid "Automatic backups of the database can be scheduled as follows:"
 msgstr ""
 
@@ -45,6 +55,11 @@ msgstr ""
 msgid "Backup Failed"
 msgstr ""
 
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__backup_format
+msgid "Backup Format"
+msgstr ""
+
 #. module: auto_backup
 #: model:ir.actions.server,name:auto_backup.ir_cron_backup_scheduler_0_ir_actions_server
 #: model:ir.cron,cron_name:auto_backup.ir_cron_backup_scheduler_0
@@ -58,14 +73,14 @@ msgid "Backup Successful"
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.model.fields,help:auto_backup.field_db_backup_days_to_keep
+#: model:ir.model.fields,help:auto_backup.field_db_backup__days_to_keep
 msgid ""
 "Backups older than this will be deleted automatically. Set 0 to disable "
 "autodeletion."
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+#: model_terms:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
 msgid "Basic backup configuration"
 msgstr ""
 
@@ -75,35 +90,40 @@ msgid "Cannot duplicate a configuration."
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.model.fields,help:auto_backup.field_db_backup_method
+#: model:ir.model.fields,help:auto_backup.field_db_backup__backup_format
+msgid "Choose the format for this backup."
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,help:auto_backup.field_db_backup__method
 msgid "Choose the storage method for this backup."
 msgstr ""
 
 #. module: auto_backup
-#: code:addons/auto_backup/models/db_backup.py:249
+#: code:addons/auto_backup/models/db_backup.py:265
 #, python-format
 msgid "Cleanup of old database backups failed."
 msgstr ""
 
 #. module: auto_backup
-#: code:addons/auto_backup/models/db_backup.py:128
+#: code:addons/auto_backup/models/db_backup.py:137
 #, python-format
 msgid "Connection Test Failed!"
 msgstr ""
 
 #. module: auto_backup
-#: code:addons/auto_backup/models/db_backup.py:123
+#: code:addons/auto_backup/models/db_backup.py:132
 #, python-format
 msgid "Connection Test Succeeded!"
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup_create_uid
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__create_uid
 msgid "Created by"
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup_create_date
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__create_date
 msgid "Created on"
 msgstr ""
 
@@ -113,38 +133,38 @@ msgid "Database Backup"
 msgstr ""
 
 #. module: auto_backup
-#: code:addons/auto_backup/models/db_backup.py:203
+#: code:addons/auto_backup/models/db_backup.py:219
 #: model:mail.message.subtype,description:auto_backup.mail_message_subtype_failure
 #, python-format
 msgid "Database backup failed."
 msgstr ""
 
 #. module: auto_backup
-#: code:addons/auto_backup/models/db_backup.py:211
+#: code:addons/auto_backup/models/db_backup.py:227
 #: model:mail.message.subtype,description:auto_backup.mail_message_subtype_success
 #, python-format
 msgid "Database backup succeeded."
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup_days_to_keep
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__days_to_keep
 msgid "Days To Keep"
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup_display_name
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__display_name
 msgid "Display Name"
 msgstr ""
 
 #. module: auto_backup
-#: code:addons/auto_backup/models/db_backup.py:114
+#: code:addons/auto_backup/models/db_backup.py:123
 #, python-format
 msgid ""
 "Do not save backups on your filestore, or you will backup your backups too!"
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+#: model_terms:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
 msgid "Execute backup"
 msgstr ""
 
@@ -154,17 +174,32 @@ msgid "Execute backup(s)"
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup_folder
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__folder
 msgid "Folder"
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__message_follower_ids
+msgid "Followers"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__message_channel_ids
+msgid "Followers (Channels)"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__message_partner_ids
+msgid "Followers (Partners)"
+msgstr ""
+
+#. module: auto_backup
+#: model_terms:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
 msgid "Go to Settings / Technical / Automation / Scheduled Actions."
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+#: model_terms:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
 msgid "Help"
 msgstr ""
 
@@ -174,22 +209,42 @@ msgid "I cannot remove backups from the future. Ask Doc for that."
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup_id
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__id
 msgid "ID"
 msgstr "ID"
 
 #. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup___last_update
+#: model:ir.model.fields,help:auto_backup.field_db_backup__message_unread
+msgid "If checked new messages require your attention."
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,help:auto_backup.field_db_backup__message_needaction
+msgid "If checked, new messages require your attention."
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,help:auto_backup.field_db_backup__message_has_error
+msgid "If checked, some messages have a delivery error."
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__message_is_follower
+msgid "Is Follower"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup____last_update
 msgid "Last Modified on"
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup_write_uid
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__write_uid
 msgid "Last Updated by"
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup_write_date
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__write_date
 msgid "Last Updated on"
 msgstr ""
 
@@ -199,24 +254,64 @@ msgid "Local disk"
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup_method
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__message_main_attachment_id
+msgid "Main Attachment"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__message_has_error
+msgid "Message Delivery error"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__message_ids
+msgid "Messages"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__method
 msgid "Method"
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup_name
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__name
 msgid "Name"
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.model.fields,help:auto_backup.field_db_backup_sftp_private_key
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__message_needaction_counter
+msgid "Number of Actions"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__message_has_error_counter
+msgid "Number of error"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,help:auto_backup.field_db_backup__message_needaction_counter
+msgid "Number of messages which requires an action"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,help:auto_backup.field_db_backup__message_has_error_counter
+msgid "Number of messages with delivery error"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,help:auto_backup.field_db_backup__message_unread_counter
+msgid "Number of unread messages"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,help:auto_backup.field_db_backup__sftp_private_key
 msgid ""
 "Path to the private key file. Only the Odoo user should have read "
 "permissions for that file."
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup_sftp_private_key
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__sftp_private_key
 msgid "Private key location"
 msgstr ""
 
@@ -226,94 +321,124 @@ msgid "Remote SFTP server"
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup_sftp_password
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__sftp_password
 msgid "SFTP Password"
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup_sftp_port
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__sftp_port
 msgid "SFTP Port"
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup_sftp_host
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__sftp_host
 msgid "SFTP Server"
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+#: model_terms:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
 msgid "SFTP Settings"
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+#: model_terms:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
 msgid "Search the action named 'Backup scheduler'."
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+#: model_terms:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
 msgid ""
 "Set the scheduler to active and fill in how often you want backups generated."
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.model.fields,help:auto_backup.field_db_backup_name
+#: model:ir.model.fields,help:auto_backup.field_db_backup__name
 msgid "Summary of this backup process"
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+#: model_terms:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
 msgid "Test SFTP Connection"
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.model.fields,help:auto_backup.field_db_backup_sftp_host
+#: model:ir.model.fields,help:auto_backup.field_db_backup__sftp_host
 msgid ""
 "The host name or IP address from your remote server. For example 192.168.0.1"
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.model.fields,help:auto_backup.field_db_backup_sftp_password
+#: model:ir.model.fields,help:auto_backup.field_db_backup__sftp_password
 msgid ""
 "The password for the SFTP connection. If you specify a private key file, "
 "then this is the password to decrypt it."
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.model.fields,help:auto_backup.field_db_backup_sftp_port
+#: model:ir.model.fields,help:auto_backup.field_db_backup__sftp_port
 msgid "The port on the FTP server that accepts SSH/SFTP calls."
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.model.fields,help:auto_backup.field_db_backup_sftp_user
+#: model:ir.model.fields,help:auto_backup.field_db_backup__sftp_user
 msgid ""
 "The username where the SFTP connection should be made with. This is the user "
 "on the external server."
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__message_unread
+msgid "Unread Messages"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__message_unread_counter
+msgid "Unread Messages Counter"
+msgstr ""
+
+#. module: auto_backup
+#: model_terms:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
 msgid ""
 "Use SFTP with caution! This writes files to external servers under the path "
 "you specify."
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup_sftp_user
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__sftp_user
 msgid "Username in the SFTP Server"
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+#: model_terms:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
 msgid "Warning:"
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__website_message_ids
+msgid "Website Messages"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,help:auto_backup.field_db_backup__website_message_ids
+msgid "Website communication history"
+msgstr ""
+
+#. module: auto_backup
+#: model_terms:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
 msgid "john"
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+#: selection:db.backup,backup_format:0
+msgid "pg_dump custom format (without filestore)"
+msgstr ""
+
+#. module: auto_backup
+#: model_terms:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
 msgid "sftp.example.com"
 msgstr ""
+
+#. module: auto_backup
+#: selection:db.backup,backup_format:0
+msgid "zip (includes filestore)"
+msgstr ""
diff --git a/auto_backup/i18n/he.po b/auto_backup/i18n/he.po
index 962a5c8506a..9448df8b1b3 100644
--- a/auto_backup/i18n/he.po
+++ b/auto_backup/i18n/he.po
@@ -19,15 +19,25 @@ msgstr ""
 "Plural-Forms: nplurals=2; plural=(n != 1);\n"
 
 #. module: auto_backup
-#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+#: model_terms:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
 msgid "/home/odoo/.ssh/id_rsa"
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.model.fields,help:auto_backup.field_db_backup_folder
+#: model:ir.model.fields,help:auto_backup.field_db_backup__folder
 msgid "Absolute path for storing the backups"
 msgstr ""
 
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__message_needaction
+msgid "Action Needed"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__message_attachment_count
+msgid "Attachment Count"
+msgstr ""
+
 #. module: auto_backup
 #: model:ir.actions.act_window,name:auto_backup.action_backup_conf_form
 #: model:ir.ui.menu,name:auto_backup.backup_conf_menu
@@ -35,7 +45,7 @@ msgid "Automated Backups"
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+#: model_terms:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
 msgid "Automatic backups of the database can be scheduled as follows:"
 msgstr ""
 
@@ -44,6 +54,11 @@ msgstr ""
 msgid "Backup Failed"
 msgstr ""
 
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__backup_format
+msgid "Backup Format"
+msgstr ""
+
 #. module: auto_backup
 #: model:ir.actions.server,name:auto_backup.ir_cron_backup_scheduler_0_ir_actions_server
 #: model:ir.cron,cron_name:auto_backup.ir_cron_backup_scheduler_0
@@ -57,14 +72,14 @@ msgid "Backup Successful"
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.model.fields,help:auto_backup.field_db_backup_days_to_keep
+#: model:ir.model.fields,help:auto_backup.field_db_backup__days_to_keep
 msgid ""
 "Backups older than this will be deleted automatically. Set 0 to disable "
 "autodeletion."
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+#: model_terms:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
 msgid "Basic backup configuration"
 msgstr ""
 
@@ -74,35 +89,40 @@ msgid "Cannot duplicate a configuration."
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.model.fields,help:auto_backup.field_db_backup_method
+#: model:ir.model.fields,help:auto_backup.field_db_backup__backup_format
+msgid "Choose the format for this backup."
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,help:auto_backup.field_db_backup__method
 msgid "Choose the storage method for this backup."
 msgstr ""
 
 #. module: auto_backup
-#: code:addons/auto_backup/models/db_backup.py:249
+#: code:addons/auto_backup/models/db_backup.py:265
 #, python-format
 msgid "Cleanup of old database backups failed."
 msgstr ""
 
 #. module: auto_backup
-#: code:addons/auto_backup/models/db_backup.py:128
+#: code:addons/auto_backup/models/db_backup.py:137
 #, python-format
 msgid "Connection Test Failed!"
 msgstr ""
 
 #. module: auto_backup
-#: code:addons/auto_backup/models/db_backup.py:123
+#: code:addons/auto_backup/models/db_backup.py:132
 #, python-format
 msgid "Connection Test Succeeded!"
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup_create_uid
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__create_uid
 msgid "Created by"
 msgstr "???????? ???? ??????"
 
 #. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup_create_date
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__create_date
 msgid "Created on"
 msgstr "???????? ??-"
 
@@ -112,38 +132,38 @@ msgid "Database Backup"
 msgstr ""
 
 #. module: auto_backup
-#: code:addons/auto_backup/models/db_backup.py:203
+#: code:addons/auto_backup/models/db_backup.py:219
 #: model:mail.message.subtype,description:auto_backup.mail_message_subtype_failure
 #, python-format
 msgid "Database backup failed."
 msgstr ""
 
 #. module: auto_backup
-#: code:addons/auto_backup/models/db_backup.py:211
+#: code:addons/auto_backup/models/db_backup.py:227
 #: model:mail.message.subtype,description:auto_backup.mail_message_subtype_success
 #, python-format
 msgid "Database backup succeeded."
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup_days_to_keep
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__days_to_keep
 msgid "Days To Keep"
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup_display_name
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__display_name
 msgid "Display Name"
 msgstr "?????? ??????????"
 
 #. module: auto_backup
-#: code:addons/auto_backup/models/db_backup.py:114
+#: code:addons/auto_backup/models/db_backup.py:123
 #, python-format
 msgid ""
 "Do not save backups on your filestore, or you will backup your backups too!"
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+#: model_terms:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
 msgid "Execute backup"
 msgstr ""
 
@@ -153,17 +173,32 @@ msgid "Execute backup(s)"
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup_folder
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__folder
 msgid "Folder"
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__message_follower_ids
+msgid "Followers"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__message_channel_ids
+msgid "Followers (Channels)"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__message_partner_ids
+msgid "Followers (Partners)"
+msgstr ""
+
+#. module: auto_backup
+#: model_terms:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
 msgid "Go to Settings / Technical / Automation / Scheduled Actions."
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+#: model_terms:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
 msgid "Help"
 msgstr ""
 
@@ -173,22 +208,42 @@ msgid "I cannot remove backups from the future. Ask Doc for that."
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup_id
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__id
 msgid "ID"
 msgstr "????????"
 
 #. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup___last_update
+#: model:ir.model.fields,help:auto_backup.field_db_backup__message_unread
+msgid "If checked new messages require your attention."
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,help:auto_backup.field_db_backup__message_needaction
+msgid "If checked, new messages require your attention."
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,help:auto_backup.field_db_backup__message_has_error
+msgid "If checked, some messages have a delivery error."
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__message_is_follower
+msgid "Is Follower"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup____last_update
 msgid "Last Modified on"
 msgstr "?????????? ?????????? ??????????"
 
 #. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup_write_uid
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__write_uid
 msgid "Last Updated by"
 msgstr "?????????? ?????????????? ???? ??????"
 
 #. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup_write_date
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__write_date
 msgid "Last Updated on"
 msgstr "?????????? ?????????????? ????"
 
@@ -198,24 +253,64 @@ msgid "Local disk"
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup_method
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__message_main_attachment_id
+msgid "Main Attachment"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__message_has_error
+msgid "Message Delivery error"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__message_ids
+msgid "Messages"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__method
 msgid "Method"
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup_name
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__name
 msgid "Name"
 msgstr "????"
 
 #. module: auto_backup
-#: model:ir.model.fields,help:auto_backup.field_db_backup_sftp_private_key
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__message_needaction_counter
+msgid "Number of Actions"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__message_has_error_counter
+msgid "Number of error"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,help:auto_backup.field_db_backup__message_needaction_counter
+msgid "Number of messages which requires an action"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,help:auto_backup.field_db_backup__message_has_error_counter
+msgid "Number of messages with delivery error"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,help:auto_backup.field_db_backup__message_unread_counter
+msgid "Number of unread messages"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,help:auto_backup.field_db_backup__sftp_private_key
 msgid ""
 "Path to the private key file. Only the Odoo user should have read "
 "permissions for that file."
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup_sftp_private_key
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__sftp_private_key
 msgid "Private key location"
 msgstr ""
 
@@ -225,94 +320,124 @@ msgid "Remote SFTP server"
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup_sftp_password
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__sftp_password
 msgid "SFTP Password"
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup_sftp_port
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__sftp_port
 msgid "SFTP Port"
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup_sftp_host
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__sftp_host
 msgid "SFTP Server"
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+#: model_terms:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
 msgid "SFTP Settings"
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+#: model_terms:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
 msgid "Search the action named 'Backup scheduler'."
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+#: model_terms:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
 msgid ""
 "Set the scheduler to active and fill in how often you want backups generated."
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.model.fields,help:auto_backup.field_db_backup_name
+#: model:ir.model.fields,help:auto_backup.field_db_backup__name
 msgid "Summary of this backup process"
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+#: model_terms:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
 msgid "Test SFTP Connection"
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.model.fields,help:auto_backup.field_db_backup_sftp_host
+#: model:ir.model.fields,help:auto_backup.field_db_backup__sftp_host
 msgid ""
 "The host name or IP address from your remote server. For example 192.168.0.1"
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.model.fields,help:auto_backup.field_db_backup_sftp_password
+#: model:ir.model.fields,help:auto_backup.field_db_backup__sftp_password
 msgid ""
 "The password for the SFTP connection. If you specify a private key file, "
 "then this is the password to decrypt it."
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.model.fields,help:auto_backup.field_db_backup_sftp_port
+#: model:ir.model.fields,help:auto_backup.field_db_backup__sftp_port
 msgid "The port on the FTP server that accepts SSH/SFTP calls."
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.model.fields,help:auto_backup.field_db_backup_sftp_user
+#: model:ir.model.fields,help:auto_backup.field_db_backup__sftp_user
 msgid ""
 "The username where the SFTP connection should be made with. This is the user "
 "on the external server."
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__message_unread
+msgid "Unread Messages"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__message_unread_counter
+msgid "Unread Messages Counter"
+msgstr ""
+
+#. module: auto_backup
+#: model_terms:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
 msgid ""
 "Use SFTP with caution! This writes files to external servers under the path "
 "you specify."
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup_sftp_user
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__sftp_user
 msgid "Username in the SFTP Server"
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+#: model_terms:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
 msgid "Warning:"
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__website_message_ids
+msgid "Website Messages"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,help:auto_backup.field_db_backup__website_message_ids
+msgid "Website communication history"
+msgstr ""
+
+#. module: auto_backup
+#: model_terms:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
 msgid "john"
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+#: selection:db.backup,backup_format:0
+msgid "pg_dump custom format (without filestore)"
+msgstr ""
+
+#. module: auto_backup
+#: model_terms:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
 msgid "sftp.example.com"
 msgstr ""
+
+#. module: auto_backup
+#: selection:db.backup,backup_format:0
+msgid "zip (includes filestore)"
+msgstr ""
diff --git a/auto_backup/i18n/hr.po b/auto_backup/i18n/hr.po
index 0ab7f7729fe..0a624b545a0 100644
--- a/auto_backup/i18n/hr.po
+++ b/auto_backup/i18n/hr.po
@@ -20,15 +20,25 @@ msgstr ""
 "%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2;\n"
 
 #. module: auto_backup
-#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+#: model_terms:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
 msgid "/home/odoo/.ssh/id_rsa"
 msgstr "/home/odoo/.ssh/id_rsa"
 
 #. module: auto_backup
-#: model:ir.model.fields,help:auto_backup.field_db_backup_folder
+#: model:ir.model.fields,help:auto_backup.field_db_backup__folder
 msgid "Absolute path for storing the backups"
 msgstr "Apsolutna putanja za spremanje backupa"
 
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__message_needaction
+msgid "Action Needed"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__message_attachment_count
+msgid "Attachment Count"
+msgstr ""
+
 #. module: auto_backup
 #: model:ir.actions.act_window,name:auto_backup.action_backup_conf_form
 #: model:ir.ui.menu,name:auto_backup.backup_conf_menu
@@ -36,7 +46,7 @@ msgid "Automated Backups"
 msgstr "Atuomatski backup"
 
 #. module: auto_backup
-#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+#: model_terms:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
 msgid "Automatic backups of the database can be scheduled as follows:"
 msgstr "Automatski backup baze mo??e biti zadan na sljede??i na??in:"
 
@@ -45,6 +55,13 @@ msgstr "Automatski backup baze mo??e biti zadan na sljede??i na??in:"
 msgid "Backup Failed"
 msgstr "Backup nije uspio"
 
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__backup_format
+#, fuzzy
+#| msgid "Backup Failed"
+msgid "Backup Format"
+msgstr "Backup nije uspio"
+
 #. module: auto_backup
 #: model:ir.actions.server,name:auto_backup.ir_cron_backup_scheduler_0_ir_actions_server
 #: model:ir.cron,cron_name:auto_backup.ir_cron_backup_scheduler_0
@@ -58,14 +75,14 @@ msgid "Backup Successful"
 msgstr "Backup uspio"
 
 #. module: auto_backup
-#: model:ir.model.fields,help:auto_backup.field_db_backup_days_to_keep
+#: model:ir.model.fields,help:auto_backup.field_db_backup__days_to_keep
 msgid ""
 "Backups older than this will be deleted automatically. Set 0 to disable "
 "autodeletion."
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+#: model_terms:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
 msgid "Basic backup configuration"
 msgstr "Osnovne postavke backupa"
 
@@ -75,35 +92,42 @@ msgid "Cannot duplicate a configuration."
 msgstr "Nije mogu??e dupliciranje postavki."
 
 #. module: auto_backup
-#: model:ir.model.fields,help:auto_backup.field_db_backup_method
+#: model:ir.model.fields,help:auto_backup.field_db_backup__backup_format
+#, fuzzy
+#| msgid "Choose the storage method for this backup."
+msgid "Choose the format for this backup."
+msgstr "Odaberite metodu pohrane za ovaj backup."
+
+#. module: auto_backup
+#: model:ir.model.fields,help:auto_backup.field_db_backup__method
 msgid "Choose the storage method for this backup."
 msgstr "Odaberite metodu pohrane za ovaj backup."
 
 #. module: auto_backup
-#: code:addons/auto_backup/models/db_backup.py:249
+#: code:addons/auto_backup/models/db_backup.py:265
 #, python-format
 msgid "Cleanup of old database backups failed."
 msgstr "??i????enje starih backup datoteka nije uspjelo."
 
 #. module: auto_backup
-#: code:addons/auto_backup/models/db_backup.py:128
+#: code:addons/auto_backup/models/db_backup.py:137
 #, python-format
 msgid "Connection Test Failed!"
 msgstr "Provjera povezivanja nije uspjela!"
 
 #. module: auto_backup
-#: code:addons/auto_backup/models/db_backup.py:123
+#: code:addons/auto_backup/models/db_backup.py:132
 #, python-format
 msgid "Connection Test Succeeded!"
 msgstr "Provjera povezivanja uspje??na!"
 
 #. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup_create_uid
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__create_uid
 msgid "Created by"
 msgstr "Kreirao"
 
 #. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup_create_date
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__create_date
 msgid "Created on"
 msgstr "Kreirano "
 
@@ -113,31 +137,31 @@ msgid "Database Backup"
 msgstr ""
 
 #. module: auto_backup
-#: code:addons/auto_backup/models/db_backup.py:203
+#: code:addons/auto_backup/models/db_backup.py:219
 #: model:mail.message.subtype,description:auto_backup.mail_message_subtype_failure
 #, python-format
 msgid "Database backup failed."
 msgstr "Backup baze nije uspio."
 
 #. module: auto_backup
-#: code:addons/auto_backup/models/db_backup.py:211
+#: code:addons/auto_backup/models/db_backup.py:227
 #: model:mail.message.subtype,description:auto_backup.mail_message_subtype_success
 #, python-format
 msgid "Database backup succeeded."
 msgstr "Backup baze uspje??an."
 
 #. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup_days_to_keep
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__days_to_keep
 msgid "Days To Keep"
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup_display_name
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__display_name
 msgid "Display Name"
 msgstr "Prika??i naziv"
 
 #. module: auto_backup
-#: code:addons/auto_backup/models/db_backup.py:114
+#: code:addons/auto_backup/models/db_backup.py:123
 #, python-format
 msgid ""
 "Do not save backups on your filestore, or you will backup your backups too!"
@@ -146,7 +170,7 @@ msgstr ""
 "i on backupirati!"
 
 #. module: auto_backup
-#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+#: model_terms:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
 msgid "Execute backup"
 msgstr ""
 
@@ -156,17 +180,32 @@ msgid "Execute backup(s)"
 msgstr "Izvr??i backup(e)"
 
 #. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup_folder
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__folder
 msgid "Folder"
 msgstr "Folder"
 
 #. module: auto_backup
-#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__message_follower_ids
+msgid "Followers"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__message_channel_ids
+msgid "Followers (Channels)"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__message_partner_ids
+msgid "Followers (Partners)"
+msgstr ""
+
+#. module: auto_backup
+#: model_terms:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
 msgid "Go to Settings / Technical / Automation / Scheduled Actions."
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+#: model_terms:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
 msgid "Help"
 msgstr "Pomo??"
 
@@ -176,22 +215,42 @@ msgid "I cannot remove backups from the future. Ask Doc for that."
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup_id
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__id
 msgid "ID"
 msgstr "ID"
 
 #. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup___last_update
+#: model:ir.model.fields,help:auto_backup.field_db_backup__message_unread
+msgid "If checked new messages require your attention."
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,help:auto_backup.field_db_backup__message_needaction
+msgid "If checked, new messages require your attention."
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,help:auto_backup.field_db_backup__message_has_error
+msgid "If checked, some messages have a delivery error."
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__message_is_follower
+msgid "Is Follower"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup____last_update
 msgid "Last Modified on"
 msgstr "Zadnja izmjena na"
 
 #. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup_write_uid
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__write_uid
 msgid "Last Updated by"
 msgstr "Zadnje a??uriranje izvr??io"
 
 #. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup_write_date
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__write_date
 msgid "Last Updated on"
 msgstr "Zadnje a??uriranje na"
 
@@ -201,24 +260,64 @@ msgid "Local disk"
 msgstr "Lokalni disk"
 
 #. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup_method
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__message_main_attachment_id
+msgid "Main Attachment"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__message_has_error
+msgid "Message Delivery error"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__message_ids
+msgid "Messages"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__method
 msgid "Method"
 msgstr "Metoda"
 
 #. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup_name
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__name
 msgid "Name"
 msgstr "Ime"
 
 #. module: auto_backup
-#: model:ir.model.fields,help:auto_backup.field_db_backup_sftp_private_key
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__message_needaction_counter
+msgid "Number of Actions"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__message_has_error_counter
+msgid "Number of error"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,help:auto_backup.field_db_backup__message_needaction_counter
+msgid "Number of messages which requires an action"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,help:auto_backup.field_db_backup__message_has_error_counter
+msgid "Number of messages with delivery error"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,help:auto_backup.field_db_backup__message_unread_counter
+msgid "Number of unread messages"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,help:auto_backup.field_db_backup__sftp_private_key
 msgid ""
 "Path to the private key file. Only the Odoo user should have read "
 "permissions for that file."
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup_sftp_private_key
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__sftp_private_key
 msgid "Private key location"
 msgstr "Lokacija privatnog klju??a"
 
@@ -228,94 +327,124 @@ msgid "Remote SFTP server"
 msgstr "Udaljeni SFTP poslu??itelj"
 
 #. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup_sftp_password
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__sftp_password
 msgid "SFTP Password"
 msgstr "SFTP Password"
 
 #. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup_sftp_port
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__sftp_port
 msgid "SFTP Port"
 msgstr "SFTP Port"
 
 #. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup_sftp_host
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__sftp_host
 msgid "SFTP Server"
 msgstr "SFTP Server"
 
 #. module: auto_backup
-#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+#: model_terms:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
 msgid "SFTP Settings"
 msgstr "SFTP Postavke"
 
 #. module: auto_backup
-#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+#: model_terms:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
 msgid "Search the action named 'Backup scheduler'."
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+#: model_terms:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
 msgid ""
 "Set the scheduler to active and fill in how often you want backups generated."
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.model.fields,help:auto_backup.field_db_backup_name
+#: model:ir.model.fields,help:auto_backup.field_db_backup__name
 msgid "Summary of this backup process"
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+#: model_terms:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
 msgid "Test SFTP Connection"
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.model.fields,help:auto_backup.field_db_backup_sftp_host
+#: model:ir.model.fields,help:auto_backup.field_db_backup__sftp_host
 msgid ""
 "The host name or IP address from your remote server. For example 192.168.0.1"
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.model.fields,help:auto_backup.field_db_backup_sftp_password
+#: model:ir.model.fields,help:auto_backup.field_db_backup__sftp_password
 msgid ""
 "The password for the SFTP connection. If you specify a private key file, "
 "then this is the password to decrypt it."
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.model.fields,help:auto_backup.field_db_backup_sftp_port
+#: model:ir.model.fields,help:auto_backup.field_db_backup__sftp_port
 msgid "The port on the FTP server that accepts SSH/SFTP calls."
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.model.fields,help:auto_backup.field_db_backup_sftp_user
+#: model:ir.model.fields,help:auto_backup.field_db_backup__sftp_user
 msgid ""
 "The username where the SFTP connection should be made with. This is the user "
 "on the external server."
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__message_unread
+msgid "Unread Messages"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__message_unread_counter
+msgid "Unread Messages Counter"
+msgstr ""
+
+#. module: auto_backup
+#: model_terms:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
 msgid ""
 "Use SFTP with caution! This writes files to external servers under the path "
 "you specify."
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup_sftp_user
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__sftp_user
 msgid "Username in the SFTP Server"
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+#: model_terms:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
 msgid "Warning:"
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__website_message_ids
+msgid "Website Messages"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,help:auto_backup.field_db_backup__website_message_ids
+msgid "Website communication history"
+msgstr ""
+
+#. module: auto_backup
+#: model_terms:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
 msgid "john"
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+#: selection:db.backup,backup_format:0
+msgid "pg_dump custom format (without filestore)"
+msgstr ""
+
+#. module: auto_backup
+#: model_terms:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
 msgid "sftp.example.com"
 msgstr ""
+
+#. module: auto_backup
+#: selection:db.backup,backup_format:0
+msgid "zip (includes filestore)"
+msgstr ""
diff --git a/auto_backup/i18n/hr_HR.po b/auto_backup/i18n/hr_HR.po
index 0be109bbea3..29eba1d6bf3 100644
--- a/auto_backup/i18n/hr_HR.po
+++ b/auto_backup/i18n/hr_HR.po
@@ -21,15 +21,25 @@ msgstr ""
 "%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2;\n"
 
 #. module: auto_backup
-#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+#: model_terms:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
 msgid "/home/odoo/.ssh/id_rsa"
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.model.fields,help:auto_backup.field_db_backup_folder
+#: model:ir.model.fields,help:auto_backup.field_db_backup__folder
 msgid "Absolute path for storing the backups"
 msgstr ""
 
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__message_needaction
+msgid "Action Needed"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__message_attachment_count
+msgid "Attachment Count"
+msgstr ""
+
 #. module: auto_backup
 #: model:ir.actions.act_window,name:auto_backup.action_backup_conf_form
 #: model:ir.ui.menu,name:auto_backup.backup_conf_menu
@@ -37,7 +47,7 @@ msgid "Automated Backups"
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+#: model_terms:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
 msgid "Automatic backups of the database can be scheduled as follows:"
 msgstr ""
 
@@ -46,6 +56,11 @@ msgstr ""
 msgid "Backup Failed"
 msgstr ""
 
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__backup_format
+msgid "Backup Format"
+msgstr ""
+
 #. module: auto_backup
 #: model:ir.actions.server,name:auto_backup.ir_cron_backup_scheduler_0_ir_actions_server
 #: model:ir.cron,cron_name:auto_backup.ir_cron_backup_scheduler_0
@@ -59,14 +74,14 @@ msgid "Backup Successful"
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.model.fields,help:auto_backup.field_db_backup_days_to_keep
+#: model:ir.model.fields,help:auto_backup.field_db_backup__days_to_keep
 msgid ""
 "Backups older than this will be deleted automatically. Set 0 to disable "
 "autodeletion."
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+#: model_terms:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
 msgid "Basic backup configuration"
 msgstr ""
 
@@ -76,35 +91,40 @@ msgid "Cannot duplicate a configuration."
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.model.fields,help:auto_backup.field_db_backup_method
+#: model:ir.model.fields,help:auto_backup.field_db_backup__backup_format
+msgid "Choose the format for this backup."
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,help:auto_backup.field_db_backup__method
 msgid "Choose the storage method for this backup."
 msgstr ""
 
 #. module: auto_backup
-#: code:addons/auto_backup/models/db_backup.py:249
+#: code:addons/auto_backup/models/db_backup.py:265
 #, python-format
 msgid "Cleanup of old database backups failed."
 msgstr ""
 
 #. module: auto_backup
-#: code:addons/auto_backup/models/db_backup.py:128
+#: code:addons/auto_backup/models/db_backup.py:137
 #, python-format
 msgid "Connection Test Failed!"
 msgstr ""
 
 #. module: auto_backup
-#: code:addons/auto_backup/models/db_backup.py:123
+#: code:addons/auto_backup/models/db_backup.py:132
 #, python-format
 msgid "Connection Test Succeeded!"
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup_create_uid
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__create_uid
 msgid "Created by"
 msgstr "Kreirao"
 
 #. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup_create_date
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__create_date
 msgid "Created on"
 msgstr "Kreirano"
 
@@ -114,38 +134,38 @@ msgid "Database Backup"
 msgstr ""
 
 #. module: auto_backup
-#: code:addons/auto_backup/models/db_backup.py:203
+#: code:addons/auto_backup/models/db_backup.py:219
 #: model:mail.message.subtype,description:auto_backup.mail_message_subtype_failure
 #, python-format
 msgid "Database backup failed."
 msgstr ""
 
 #. module: auto_backup
-#: code:addons/auto_backup/models/db_backup.py:211
+#: code:addons/auto_backup/models/db_backup.py:227
 #: model:mail.message.subtype,description:auto_backup.mail_message_subtype_success
 #, python-format
 msgid "Database backup succeeded."
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup_days_to_keep
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__days_to_keep
 msgid "Days To Keep"
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup_display_name
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__display_name
 msgid "Display Name"
 msgstr "Naziv"
 
 #. module: auto_backup
-#: code:addons/auto_backup/models/db_backup.py:114
+#: code:addons/auto_backup/models/db_backup.py:123
 #, python-format
 msgid ""
 "Do not save backups on your filestore, or you will backup your backups too!"
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+#: model_terms:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
 msgid "Execute backup"
 msgstr ""
 
@@ -155,17 +175,32 @@ msgid "Execute backup(s)"
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup_folder
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__folder
 msgid "Folder"
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__message_follower_ids
+msgid "Followers"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__message_channel_ids
+msgid "Followers (Channels)"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__message_partner_ids
+msgid "Followers (Partners)"
+msgstr ""
+
+#. module: auto_backup
+#: model_terms:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
 msgid "Go to Settings / Technical / Automation / Scheduled Actions."
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+#: model_terms:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
 msgid "Help"
 msgstr ""
 
@@ -175,22 +210,42 @@ msgid "I cannot remove backups from the future. Ask Doc for that."
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup_id
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__id
 msgid "ID"
 msgstr "ID"
 
 #. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup___last_update
+#: model:ir.model.fields,help:auto_backup.field_db_backup__message_unread
+msgid "If checked new messages require your attention."
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,help:auto_backup.field_db_backup__message_needaction
+msgid "If checked, new messages require your attention."
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,help:auto_backup.field_db_backup__message_has_error
+msgid "If checked, some messages have a delivery error."
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__message_is_follower
+msgid "Is Follower"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup____last_update
 msgid "Last Modified on"
 msgstr "Zadnje modificirano"
 
 #. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup_write_uid
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__write_uid
 msgid "Last Updated by"
 msgstr "Zadnje a??urirao"
 
 #. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup_write_date
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__write_date
 msgid "Last Updated on"
 msgstr "Zadnje a??urirano"
 
@@ -200,24 +255,64 @@ msgid "Local disk"
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup_method
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__message_main_attachment_id
+msgid "Main Attachment"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__message_has_error
+msgid "Message Delivery error"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__message_ids
+msgid "Messages"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__method
 msgid "Method"
 msgstr "Metoda"
 
 #. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup_name
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__name
 msgid "Name"
 msgstr "Naziv"
 
 #. module: auto_backup
-#: model:ir.model.fields,help:auto_backup.field_db_backup_sftp_private_key
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__message_needaction_counter
+msgid "Number of Actions"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__message_has_error_counter
+msgid "Number of error"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,help:auto_backup.field_db_backup__message_needaction_counter
+msgid "Number of messages which requires an action"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,help:auto_backup.field_db_backup__message_has_error_counter
+msgid "Number of messages with delivery error"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,help:auto_backup.field_db_backup__message_unread_counter
+msgid "Number of unread messages"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,help:auto_backup.field_db_backup__sftp_private_key
 msgid ""
 "Path to the private key file. Only the Odoo user should have read "
 "permissions for that file."
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup_sftp_private_key
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__sftp_private_key
 msgid "Private key location"
 msgstr ""
 
@@ -227,94 +322,124 @@ msgid "Remote SFTP server"
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup_sftp_password
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__sftp_password
 msgid "SFTP Password"
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup_sftp_port
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__sftp_port
 msgid "SFTP Port"
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup_sftp_host
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__sftp_host
 msgid "SFTP Server"
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+#: model_terms:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
 msgid "SFTP Settings"
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+#: model_terms:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
 msgid "Search the action named 'Backup scheduler'."
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+#: model_terms:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
 msgid ""
 "Set the scheduler to active and fill in how often you want backups generated."
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.model.fields,help:auto_backup.field_db_backup_name
+#: model:ir.model.fields,help:auto_backup.field_db_backup__name
 msgid "Summary of this backup process"
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+#: model_terms:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
 msgid "Test SFTP Connection"
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.model.fields,help:auto_backup.field_db_backup_sftp_host
+#: model:ir.model.fields,help:auto_backup.field_db_backup__sftp_host
 msgid ""
 "The host name or IP address from your remote server. For example 192.168.0.1"
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.model.fields,help:auto_backup.field_db_backup_sftp_password
+#: model:ir.model.fields,help:auto_backup.field_db_backup__sftp_password
 msgid ""
 "The password for the SFTP connection. If you specify a private key file, "
 "then this is the password to decrypt it."
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.model.fields,help:auto_backup.field_db_backup_sftp_port
+#: model:ir.model.fields,help:auto_backup.field_db_backup__sftp_port
 msgid "The port on the FTP server that accepts SSH/SFTP calls."
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.model.fields,help:auto_backup.field_db_backup_sftp_user
+#: model:ir.model.fields,help:auto_backup.field_db_backup__sftp_user
 msgid ""
 "The username where the SFTP connection should be made with. This is the user "
 "on the external server."
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__message_unread
+msgid "Unread Messages"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__message_unread_counter
+msgid "Unread Messages Counter"
+msgstr ""
+
+#. module: auto_backup
+#: model_terms:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
 msgid ""
 "Use SFTP with caution! This writes files to external servers under the path "
 "you specify."
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup_sftp_user
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__sftp_user
 msgid "Username in the SFTP Server"
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+#: model_terms:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
 msgid "Warning:"
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__website_message_ids
+msgid "Website Messages"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,help:auto_backup.field_db_backup__website_message_ids
+msgid "Website communication history"
+msgstr ""
+
+#. module: auto_backup
+#: model_terms:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
 msgid "john"
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+#: selection:db.backup,backup_format:0
+msgid "pg_dump custom format (without filestore)"
+msgstr ""
+
+#. module: auto_backup
+#: model_terms:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
 msgid "sftp.example.com"
 msgstr ""
+
+#. module: auto_backup
+#: selection:db.backup,backup_format:0
+msgid "zip (includes filestore)"
+msgstr ""
diff --git a/auto_backup/i18n/hu.po b/auto_backup/i18n/hu.po
index 01c178aaff8..bafea799046 100644
--- a/auto_backup/i18n/hu.po
+++ b/auto_backup/i18n/hu.po
@@ -19,15 +19,25 @@ msgstr ""
 "Plural-Forms: nplurals=2; plural=(n != 1);\n"
 
 #. module: auto_backup
-#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+#: model_terms:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
 msgid "/home/odoo/.ssh/id_rsa"
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.model.fields,help:auto_backup.field_db_backup_folder
+#: model:ir.model.fields,help:auto_backup.field_db_backup__folder
 msgid "Absolute path for storing the backups"
 msgstr ""
 
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__message_needaction
+msgid "Action Needed"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__message_attachment_count
+msgid "Attachment Count"
+msgstr ""
+
 #. module: auto_backup
 #: model:ir.actions.act_window,name:auto_backup.action_backup_conf_form
 #: model:ir.ui.menu,name:auto_backup.backup_conf_menu
@@ -35,7 +45,7 @@ msgid "Automated Backups"
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+#: model_terms:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
 msgid "Automatic backups of the database can be scheduled as follows:"
 msgstr ""
 
@@ -44,6 +54,11 @@ msgstr ""
 msgid "Backup Failed"
 msgstr ""
 
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__backup_format
+msgid "Backup Format"
+msgstr ""
+
 #. module: auto_backup
 #: model:ir.actions.server,name:auto_backup.ir_cron_backup_scheduler_0_ir_actions_server
 #: model:ir.cron,cron_name:auto_backup.ir_cron_backup_scheduler_0
@@ -57,14 +72,14 @@ msgid "Backup Successful"
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.model.fields,help:auto_backup.field_db_backup_days_to_keep
+#: model:ir.model.fields,help:auto_backup.field_db_backup__days_to_keep
 msgid ""
 "Backups older than this will be deleted automatically. Set 0 to disable "
 "autodeletion."
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+#: model_terms:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
 msgid "Basic backup configuration"
 msgstr ""
 
@@ -74,35 +89,40 @@ msgid "Cannot duplicate a configuration."
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.model.fields,help:auto_backup.field_db_backup_method
+#: model:ir.model.fields,help:auto_backup.field_db_backup__backup_format
+msgid "Choose the format for this backup."
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,help:auto_backup.field_db_backup__method
 msgid "Choose the storage method for this backup."
 msgstr ""
 
 #. module: auto_backup
-#: code:addons/auto_backup/models/db_backup.py:249
+#: code:addons/auto_backup/models/db_backup.py:265
 #, python-format
 msgid "Cleanup of old database backups failed."
 msgstr ""
 
 #. module: auto_backup
-#: code:addons/auto_backup/models/db_backup.py:128
+#: code:addons/auto_backup/models/db_backup.py:137
 #, python-format
 msgid "Connection Test Failed!"
 msgstr ""
 
 #. module: auto_backup
-#: code:addons/auto_backup/models/db_backup.py:123
+#: code:addons/auto_backup/models/db_backup.py:132
 #, python-format
 msgid "Connection Test Succeeded!"
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup_create_uid
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__create_uid
 msgid "Created by"
 msgstr "K??sz??tette"
 
 #. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup_create_date
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__create_date
 msgid "Created on"
 msgstr "L??trehoz??s d??tuma"
 
@@ -112,38 +132,38 @@ msgid "Database Backup"
 msgstr ""
 
 #. module: auto_backup
-#: code:addons/auto_backup/models/db_backup.py:203
+#: code:addons/auto_backup/models/db_backup.py:219
 #: model:mail.message.subtype,description:auto_backup.mail_message_subtype_failure
 #, python-format
 msgid "Database backup failed."
 msgstr ""
 
 #. module: auto_backup
-#: code:addons/auto_backup/models/db_backup.py:211
+#: code:addons/auto_backup/models/db_backup.py:227
 #: model:mail.message.subtype,description:auto_backup.mail_message_subtype_success
 #, python-format
 msgid "Database backup succeeded."
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup_days_to_keep
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__days_to_keep
 msgid "Days To Keep"
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup_display_name
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__display_name
 msgid "Display Name"
 msgstr "N??v megjelen??t??se"
 
 #. module: auto_backup
-#: code:addons/auto_backup/models/db_backup.py:114
+#: code:addons/auto_backup/models/db_backup.py:123
 #, python-format
 msgid ""
 "Do not save backups on your filestore, or you will backup your backups too!"
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+#: model_terms:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
 msgid "Execute backup"
 msgstr ""
 
@@ -153,17 +173,32 @@ msgid "Execute backup(s)"
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup_folder
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__folder
 msgid "Folder"
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__message_follower_ids
+msgid "Followers"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__message_channel_ids
+msgid "Followers (Channels)"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__message_partner_ids
+msgid "Followers (Partners)"
+msgstr ""
+
+#. module: auto_backup
+#: model_terms:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
 msgid "Go to Settings / Technical / Automation / Scheduled Actions."
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+#: model_terms:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
 msgid "Help"
 msgstr ""
 
@@ -173,22 +208,42 @@ msgid "I cannot remove backups from the future. Ask Doc for that."
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup_id
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__id
 msgid "ID"
 msgstr "Azonos??t?? ID"
 
 #. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup___last_update
+#: model:ir.model.fields,help:auto_backup.field_db_backup__message_unread
+msgid "If checked new messages require your attention."
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,help:auto_backup.field_db_backup__message_needaction
+msgid "If checked, new messages require your attention."
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,help:auto_backup.field_db_backup__message_has_error
+msgid "If checked, some messages have a delivery error."
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__message_is_follower
+msgid "Is Follower"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup____last_update
 msgid "Last Modified on"
 msgstr "Utols?? friss??t??s d??tuma"
 
 #. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup_write_uid
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__write_uid
 msgid "Last Updated by"
 msgstr "Utolj??ra friss??tve, ??ltal"
 
 #. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup_write_date
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__write_date
 msgid "Last Updated on"
 msgstr "Utolj??ra friss??tve ekkor"
 
@@ -198,24 +253,64 @@ msgid "Local disk"
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup_method
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__message_main_attachment_id
+msgid "Main Attachment"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__message_has_error
+msgid "Message Delivery error"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__message_ids
+msgid "Messages"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__method
 msgid "Method"
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup_name
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__name
 msgid "Name"
 msgstr "N??v"
 
 #. module: auto_backup
-#: model:ir.model.fields,help:auto_backup.field_db_backup_sftp_private_key
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__message_needaction_counter
+msgid "Number of Actions"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__message_has_error_counter
+msgid "Number of error"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,help:auto_backup.field_db_backup__message_needaction_counter
+msgid "Number of messages which requires an action"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,help:auto_backup.field_db_backup__message_has_error_counter
+msgid "Number of messages with delivery error"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,help:auto_backup.field_db_backup__message_unread_counter
+msgid "Number of unread messages"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,help:auto_backup.field_db_backup__sftp_private_key
 msgid ""
 "Path to the private key file. Only the Odoo user should have read "
 "permissions for that file."
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup_sftp_private_key
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__sftp_private_key
 msgid "Private key location"
 msgstr ""
 
@@ -225,94 +320,124 @@ msgid "Remote SFTP server"
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup_sftp_password
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__sftp_password
 msgid "SFTP Password"
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup_sftp_port
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__sftp_port
 msgid "SFTP Port"
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup_sftp_host
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__sftp_host
 msgid "SFTP Server"
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+#: model_terms:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
 msgid "SFTP Settings"
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+#: model_terms:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
 msgid "Search the action named 'Backup scheduler'."
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+#: model_terms:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
 msgid ""
 "Set the scheduler to active and fill in how often you want backups generated."
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.model.fields,help:auto_backup.field_db_backup_name
+#: model:ir.model.fields,help:auto_backup.field_db_backup__name
 msgid "Summary of this backup process"
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+#: model_terms:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
 msgid "Test SFTP Connection"
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.model.fields,help:auto_backup.field_db_backup_sftp_host
+#: model:ir.model.fields,help:auto_backup.field_db_backup__sftp_host
 msgid ""
 "The host name or IP address from your remote server. For example 192.168.0.1"
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.model.fields,help:auto_backup.field_db_backup_sftp_password
+#: model:ir.model.fields,help:auto_backup.field_db_backup__sftp_password
 msgid ""
 "The password for the SFTP connection. If you specify a private key file, "
 "then this is the password to decrypt it."
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.model.fields,help:auto_backup.field_db_backup_sftp_port
+#: model:ir.model.fields,help:auto_backup.field_db_backup__sftp_port
 msgid "The port on the FTP server that accepts SSH/SFTP calls."
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.model.fields,help:auto_backup.field_db_backup_sftp_user
+#: model:ir.model.fields,help:auto_backup.field_db_backup__sftp_user
 msgid ""
 "The username where the SFTP connection should be made with. This is the user "
 "on the external server."
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__message_unread
+msgid "Unread Messages"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__message_unread_counter
+msgid "Unread Messages Counter"
+msgstr ""
+
+#. module: auto_backup
+#: model_terms:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
 msgid ""
 "Use SFTP with caution! This writes files to external servers under the path "
 "you specify."
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup_sftp_user
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__sftp_user
 msgid "Username in the SFTP Server"
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+#: model_terms:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
 msgid "Warning:"
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__website_message_ids
+msgid "Website Messages"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,help:auto_backup.field_db_backup__website_message_ids
+msgid "Website communication history"
+msgstr ""
+
+#. module: auto_backup
+#: model_terms:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
 msgid "john"
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+#: selection:db.backup,backup_format:0
+msgid "pg_dump custom format (without filestore)"
+msgstr ""
+
+#. module: auto_backup
+#: model_terms:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
 msgid "sftp.example.com"
 msgstr ""
+
+#. module: auto_backup
+#: selection:db.backup,backup_format:0
+msgid "zip (includes filestore)"
+msgstr ""
diff --git a/auto_backup/i18n/id.po b/auto_backup/i18n/id.po
index 8987d0315a3..77bd10c8e44 100644
--- a/auto_backup/i18n/id.po
+++ b/auto_backup/i18n/id.po
@@ -19,15 +19,25 @@ msgstr ""
 "Plural-Forms: nplurals=1; plural=0;\n"
 
 #. module: auto_backup
-#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+#: model_terms:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
 msgid "/home/odoo/.ssh/id_rsa"
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.model.fields,help:auto_backup.field_db_backup_folder
+#: model:ir.model.fields,help:auto_backup.field_db_backup__folder
 msgid "Absolute path for storing the backups"
 msgstr ""
 
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__message_needaction
+msgid "Action Needed"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__message_attachment_count
+msgid "Attachment Count"
+msgstr ""
+
 #. module: auto_backup
 #: model:ir.actions.act_window,name:auto_backup.action_backup_conf_form
 #: model:ir.ui.menu,name:auto_backup.backup_conf_menu
@@ -35,7 +45,7 @@ msgid "Automated Backups"
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+#: model_terms:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
 msgid "Automatic backups of the database can be scheduled as follows:"
 msgstr ""
 
@@ -44,6 +54,11 @@ msgstr ""
 msgid "Backup Failed"
 msgstr ""
 
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__backup_format
+msgid "Backup Format"
+msgstr ""
+
 #. module: auto_backup
 #: model:ir.actions.server,name:auto_backup.ir_cron_backup_scheduler_0_ir_actions_server
 #: model:ir.cron,cron_name:auto_backup.ir_cron_backup_scheduler_0
@@ -57,14 +72,14 @@ msgid "Backup Successful"
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.model.fields,help:auto_backup.field_db_backup_days_to_keep
+#: model:ir.model.fields,help:auto_backup.field_db_backup__days_to_keep
 msgid ""
 "Backups older than this will be deleted automatically. Set 0 to disable "
 "autodeletion."
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+#: model_terms:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
 msgid "Basic backup configuration"
 msgstr ""
 
@@ -74,35 +89,40 @@ msgid "Cannot duplicate a configuration."
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.model.fields,help:auto_backup.field_db_backup_method
+#: model:ir.model.fields,help:auto_backup.field_db_backup__backup_format
+msgid "Choose the format for this backup."
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,help:auto_backup.field_db_backup__method
 msgid "Choose the storage method for this backup."
 msgstr ""
 
 #. module: auto_backup
-#: code:addons/auto_backup/models/db_backup.py:249
+#: code:addons/auto_backup/models/db_backup.py:265
 #, python-format
 msgid "Cleanup of old database backups failed."
 msgstr ""
 
 #. module: auto_backup
-#: code:addons/auto_backup/models/db_backup.py:128
+#: code:addons/auto_backup/models/db_backup.py:137
 #, python-format
 msgid "Connection Test Failed!"
 msgstr ""
 
 #. module: auto_backup
-#: code:addons/auto_backup/models/db_backup.py:123
+#: code:addons/auto_backup/models/db_backup.py:132
 #, python-format
 msgid "Connection Test Succeeded!"
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup_create_uid
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__create_uid
 msgid "Created by"
 msgstr "Dibuat oleh"
 
 #. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup_create_date
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__create_date
 msgid "Created on"
 msgstr "Dibuat pada"
 
@@ -112,38 +132,38 @@ msgid "Database Backup"
 msgstr ""
 
 #. module: auto_backup
-#: code:addons/auto_backup/models/db_backup.py:203
+#: code:addons/auto_backup/models/db_backup.py:219
 #: model:mail.message.subtype,description:auto_backup.mail_message_subtype_failure
 #, python-format
 msgid "Database backup failed."
 msgstr ""
 
 #. module: auto_backup
-#: code:addons/auto_backup/models/db_backup.py:211
+#: code:addons/auto_backup/models/db_backup.py:227
 #: model:mail.message.subtype,description:auto_backup.mail_message_subtype_success
 #, python-format
 msgid "Database backup succeeded."
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup_days_to_keep
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__days_to_keep
 msgid "Days To Keep"
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup_display_name
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__display_name
 msgid "Display Name"
 msgstr "Nama Tampilan"
 
 #. module: auto_backup
-#: code:addons/auto_backup/models/db_backup.py:114
+#: code:addons/auto_backup/models/db_backup.py:123
 #, python-format
 msgid ""
 "Do not save backups on your filestore, or you will backup your backups too!"
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+#: model_terms:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
 msgid "Execute backup"
 msgstr ""
 
@@ -153,17 +173,32 @@ msgid "Execute backup(s)"
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup_folder
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__folder
 msgid "Folder"
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__message_follower_ids
+msgid "Followers"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__message_channel_ids
+msgid "Followers (Channels)"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__message_partner_ids
+msgid "Followers (Partners)"
+msgstr ""
+
+#. module: auto_backup
+#: model_terms:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
 msgid "Go to Settings / Technical / Automation / Scheduled Actions."
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+#: model_terms:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
 msgid "Help"
 msgstr ""
 
@@ -173,22 +208,42 @@ msgid "I cannot remove backups from the future. Ask Doc for that."
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup_id
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__id
 msgid "ID"
 msgstr "ID"
 
 #. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup___last_update
+#: model:ir.model.fields,help:auto_backup.field_db_backup__message_unread
+msgid "If checked new messages require your attention."
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,help:auto_backup.field_db_backup__message_needaction
+msgid "If checked, new messages require your attention."
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,help:auto_backup.field_db_backup__message_has_error
+msgid "If checked, some messages have a delivery error."
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__message_is_follower
+msgid "Is Follower"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup____last_update
 msgid "Last Modified on"
 msgstr "Terakhir Dimodifikasi pada"
 
 #. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup_write_uid
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__write_uid
 msgid "Last Updated by"
 msgstr "Diperbaharui oleh"
 
 #. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup_write_date
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__write_date
 msgid "Last Updated on"
 msgstr "Diperbaharui pada"
 
@@ -198,24 +253,64 @@ msgid "Local disk"
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup_method
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__message_main_attachment_id
+msgid "Main Attachment"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__message_has_error
+msgid "Message Delivery error"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__message_ids
+msgid "Messages"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__method
 msgid "Method"
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup_name
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__name
 msgid "Name"
 msgstr "Nama"
 
 #. module: auto_backup
-#: model:ir.model.fields,help:auto_backup.field_db_backup_sftp_private_key
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__message_needaction_counter
+msgid "Number of Actions"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__message_has_error_counter
+msgid "Number of error"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,help:auto_backup.field_db_backup__message_needaction_counter
+msgid "Number of messages which requires an action"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,help:auto_backup.field_db_backup__message_has_error_counter
+msgid "Number of messages with delivery error"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,help:auto_backup.field_db_backup__message_unread_counter
+msgid "Number of unread messages"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,help:auto_backup.field_db_backup__sftp_private_key
 msgid ""
 "Path to the private key file. Only the Odoo user should have read "
 "permissions for that file."
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup_sftp_private_key
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__sftp_private_key
 msgid "Private key location"
 msgstr ""
 
@@ -225,94 +320,124 @@ msgid "Remote SFTP server"
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup_sftp_password
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__sftp_password
 msgid "SFTP Password"
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup_sftp_port
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__sftp_port
 msgid "SFTP Port"
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup_sftp_host
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__sftp_host
 msgid "SFTP Server"
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+#: model_terms:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
 msgid "SFTP Settings"
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+#: model_terms:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
 msgid "Search the action named 'Backup scheduler'."
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+#: model_terms:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
 msgid ""
 "Set the scheduler to active and fill in how often you want backups generated."
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.model.fields,help:auto_backup.field_db_backup_name
+#: model:ir.model.fields,help:auto_backup.field_db_backup__name
 msgid "Summary of this backup process"
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+#: model_terms:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
 msgid "Test SFTP Connection"
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.model.fields,help:auto_backup.field_db_backup_sftp_host
+#: model:ir.model.fields,help:auto_backup.field_db_backup__sftp_host
 msgid ""
 "The host name or IP address from your remote server. For example 192.168.0.1"
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.model.fields,help:auto_backup.field_db_backup_sftp_password
+#: model:ir.model.fields,help:auto_backup.field_db_backup__sftp_password
 msgid ""
 "The password for the SFTP connection. If you specify a private key file, "
 "then this is the password to decrypt it."
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.model.fields,help:auto_backup.field_db_backup_sftp_port
+#: model:ir.model.fields,help:auto_backup.field_db_backup__sftp_port
 msgid "The port on the FTP server that accepts SSH/SFTP calls."
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.model.fields,help:auto_backup.field_db_backup_sftp_user
+#: model:ir.model.fields,help:auto_backup.field_db_backup__sftp_user
 msgid ""
 "The username where the SFTP connection should be made with. This is the user "
 "on the external server."
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__message_unread
+msgid "Unread Messages"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__message_unread_counter
+msgid "Unread Messages Counter"
+msgstr ""
+
+#. module: auto_backup
+#: model_terms:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
 msgid ""
 "Use SFTP with caution! This writes files to external servers under the path "
 "you specify."
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup_sftp_user
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__sftp_user
 msgid "Username in the SFTP Server"
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+#: model_terms:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
 msgid "Warning:"
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__website_message_ids
+msgid "Website Messages"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,help:auto_backup.field_db_backup__website_message_ids
+msgid "Website communication history"
+msgstr ""
+
+#. module: auto_backup
+#: model_terms:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
 msgid "john"
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+#: selection:db.backup,backup_format:0
+msgid "pg_dump custom format (without filestore)"
+msgstr ""
+
+#. module: auto_backup
+#: model_terms:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
 msgid "sftp.example.com"
 msgstr ""
+
+#. module: auto_backup
+#: selection:db.backup,backup_format:0
+msgid "zip (includes filestore)"
+msgstr ""
diff --git a/auto_backup/i18n/it.po b/auto_backup/i18n/it.po
index 8819ed1cbd6..9be9a2fa855 100644
--- a/auto_backup/i18n/it.po
+++ b/auto_backup/i18n/it.po
@@ -19,15 +19,25 @@ msgstr ""
 "Plural-Forms: nplurals=2; plural=(n != 1);\n"
 
 #. module: auto_backup
-#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+#: model_terms:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
 msgid "/home/odoo/.ssh/id_rsa"
 msgstr "/home/odoo/.ssh/id_rsa"
 
 #. module: auto_backup
-#: model:ir.model.fields,help:auto_backup.field_db_backup_folder
+#: model:ir.model.fields,help:auto_backup.field_db_backup__folder
 msgid "Absolute path for storing the backups"
 msgstr "Percorso assoluto per il salvataggio del DB"
 
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__message_needaction
+msgid "Action Needed"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__message_attachment_count
+msgid "Attachment Count"
+msgstr ""
+
 #. module: auto_backup
 #: model:ir.actions.act_window,name:auto_backup.action_backup_conf_form
 #: model:ir.ui.menu,name:auto_backup.backup_conf_menu
@@ -35,7 +45,7 @@ msgid "Automated Backups"
 msgstr "Backup automatici"
 
 #. module: auto_backup
-#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+#: model_terms:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
 msgid "Automatic backups of the database can be scheduled as follows:"
 msgstr "Il backup automatico del DB ?? pianificato come segue:"
 
@@ -44,6 +54,13 @@ msgstr "Il backup automatico del DB ?? pianificato come segue:"
 msgid "Backup Failed"
 msgstr "Backup Fallito"
 
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__backup_format
+#, fuzzy
+#| msgid "Backup Failed"
+msgid "Backup Format"
+msgstr "Backup Fallito"
+
 #. module: auto_backup
 #: model:ir.actions.server,name:auto_backup.ir_cron_backup_scheduler_0_ir_actions_server
 #: model:ir.cron,cron_name:auto_backup.ir_cron_backup_scheduler_0
@@ -57,7 +74,7 @@ msgid "Backup Successful"
 msgstr "Backup Riuscito"
 
 #. module: auto_backup
-#: model:ir.model.fields,help:auto_backup.field_db_backup_days_to_keep
+#: model:ir.model.fields,help:auto_backup.field_db_backup__days_to_keep
 msgid ""
 "Backups older than this will be deleted automatically. Set 0 to disable "
 "autodeletion."
@@ -66,7 +83,7 @@ msgstr ""
 "automaticamente. Impostare a 0 per disattivare l'eliminazione automatica."
 
 #. module: auto_backup
-#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+#: model_terms:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
 msgid "Basic backup configuration"
 msgstr "Configurazione di base del Backup"
 
@@ -76,35 +93,42 @@ msgid "Cannot duplicate a configuration."
 msgstr "Impossibile duplicare una configurazione."
 
 #. module: auto_backup
-#: model:ir.model.fields,help:auto_backup.field_db_backup_method
+#: model:ir.model.fields,help:auto_backup.field_db_backup__backup_format
+#, fuzzy
+#| msgid "Choose the storage method for this backup."
+msgid "Choose the format for this backup."
+msgstr "Scegliere il tipo di archiviazione per questo metodo di backup. "
+
+#. module: auto_backup
+#: model:ir.model.fields,help:auto_backup.field_db_backup__method
 msgid "Choose the storage method for this backup."
 msgstr "Scegliere il tipo di archiviazione per questo metodo di backup. "
 
 #. module: auto_backup
-#: code:addons/auto_backup/models/db_backup.py:249
+#: code:addons/auto_backup/models/db_backup.py:265
 #, python-format
 msgid "Cleanup of old database backups failed."
 msgstr "Eliminazione dei vecchi backup di database non riuscita."
 
 #. module: auto_backup
-#: code:addons/auto_backup/models/db_backup.py:128
+#: code:addons/auto_backup/models/db_backup.py:137
 #, python-format
 msgid "Connection Test Failed!"
 msgstr "Test connessione Fallito!"
 
 #. module: auto_backup
-#: code:addons/auto_backup/models/db_backup.py:123
+#: code:addons/auto_backup/models/db_backup.py:132
 #, python-format
 msgid "Connection Test Succeeded!"
 msgstr "Test connessione avvenuto con successo!"
 
 #. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup_create_uid
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__create_uid
 msgid "Created by"
 msgstr "Creato da"
 
 #. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup_create_date
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__create_date
 msgid "Created on"
 msgstr "Creato il"
 
@@ -114,31 +138,31 @@ msgid "Database Backup"
 msgstr ""
 
 #. module: auto_backup
-#: code:addons/auto_backup/models/db_backup.py:203
+#: code:addons/auto_backup/models/db_backup.py:219
 #: model:mail.message.subtype,description:auto_backup.mail_message_subtype_failure
 #, python-format
 msgid "Database backup failed."
 msgstr "Backup del Database non riuscito."
 
 #. module: auto_backup
-#: code:addons/auto_backup/models/db_backup.py:211
+#: code:addons/auto_backup/models/db_backup.py:227
 #: model:mail.message.subtype,description:auto_backup.mail_message_subtype_success
 #, python-format
 msgid "Database backup succeeded."
 msgstr "Backup del Database riuscito."
 
 #. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup_days_to_keep
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__days_to_keep
 msgid "Days To Keep"
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup_display_name
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__display_name
 msgid "Display Name"
 msgstr "Nome da visualizzare"
 
 #. module: auto_backup
-#: code:addons/auto_backup/models/db_backup.py:114
+#: code:addons/auto_backup/models/db_backup.py:123
 #, python-format
 msgid ""
 "Do not save backups on your filestore, or you will backup your backups too!"
@@ -147,7 +171,7 @@ msgstr ""
 "copia di backup anche dei propri backup!"
 
 #. module: auto_backup
-#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+#: model_terms:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
 msgid "Execute backup"
 msgstr ""
 
@@ -157,19 +181,34 @@ msgid "Execute backup(s)"
 msgstr "Esegui backup(s)"
 
 #. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup_folder
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__folder
 msgid "Folder"
 msgstr "Cartella"
 
 #. module: auto_backup
-#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__message_follower_ids
+msgid "Followers"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__message_channel_ids
+msgid "Followers (Channels)"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__message_partner_ids
+msgid "Followers (Partners)"
+msgstr ""
+
+#. module: auto_backup
+#: model_terms:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
 msgid "Go to Settings / Technical / Automation / Scheduled Actions."
 msgstr ""
 "Andare in  Configurazione / Funzioni Tecniche / Automazione / Azioni "
 "Programmate."
 
 #. module: auto_backup
-#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+#: model_terms:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
 msgid "Help"
 msgstr "Aiuto"
 
@@ -179,22 +218,42 @@ msgid "I cannot remove backups from the future. Ask Doc for that."
 msgstr "Impossibile rimuovere backup dal futuro. Cercare nella Documentazione."
 
 #. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup_id
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__id
 msgid "ID"
 msgstr "ID"
 
 #. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup___last_update
+#: model:ir.model.fields,help:auto_backup.field_db_backup__message_unread
+msgid "If checked new messages require your attention."
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,help:auto_backup.field_db_backup__message_needaction
+msgid "If checked, new messages require your attention."
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,help:auto_backup.field_db_backup__message_has_error
+msgid "If checked, some messages have a delivery error."
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__message_is_follower
+msgid "Is Follower"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup____last_update
 msgid "Last Modified on"
 msgstr "Ultima modifica il"
 
 #. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup_write_uid
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__write_uid
 msgid "Last Updated by"
 msgstr "Ultimo aggiornamento di"
 
 #. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup_write_date
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__write_date
 msgid "Last Updated on"
 msgstr "Ultimo aggiornamento il"
 
@@ -204,17 +263,57 @@ msgid "Local disk"
 msgstr "Disco locale"
 
 #. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup_method
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__message_main_attachment_id
+msgid "Main Attachment"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__message_has_error
+msgid "Message Delivery error"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__message_ids
+msgid "Messages"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__method
 msgid "Method"
 msgstr "Metodo"
 
 #. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup_name
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__name
 msgid "Name"
 msgstr "Nome"
 
 #. module: auto_backup
-#: model:ir.model.fields,help:auto_backup.field_db_backup_sftp_private_key
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__message_needaction_counter
+msgid "Number of Actions"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__message_has_error_counter
+msgid "Number of error"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,help:auto_backup.field_db_backup__message_needaction_counter
+msgid "Number of messages which requires an action"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,help:auto_backup.field_db_backup__message_has_error_counter
+msgid "Number of messages with delivery error"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,help:auto_backup.field_db_backup__message_unread_counter
+msgid "Number of unread messages"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,help:auto_backup.field_db_backup__sftp_private_key
 msgid ""
 "Path to the private key file. Only the Odoo user should have read "
 "permissions for that file."
@@ -223,7 +322,7 @@ msgstr ""
 "il permesso in lettura di questo file."
 
 #. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup_sftp_private_key
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__sftp_private_key
 msgid "Private key location"
 msgstr "Posizione chiave privata"
 
@@ -233,32 +332,32 @@ msgid "Remote SFTP server"
 msgstr "Server SFTP remoto"
 
 #. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup_sftp_password
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__sftp_password
 msgid "SFTP Password"
 msgstr "Password SFTP"
 
 #. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup_sftp_port
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__sftp_port
 msgid "SFTP Port"
 msgstr "Porta SFTP"
 
 #. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup_sftp_host
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__sftp_host
 msgid "SFTP Server"
 msgstr "Server SFTP"
 
 #. module: auto_backup
-#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+#: model_terms:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
 msgid "SFTP Settings"
 msgstr "Impostazioni SFTP"
 
 #. module: auto_backup
-#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+#: model_terms:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
 msgid "Search the action named 'Backup scheduler'."
 msgstr "Cerca l'azione denominata 'Pianificazione del backup'."
 
 #. module: auto_backup
-#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+#: model_terms:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
 msgid ""
 "Set the scheduler to active and fill in how often you want backups generated."
 msgstr ""
@@ -266,24 +365,24 @@ msgstr ""
 "desidera generare il backup."
 
 #. module: auto_backup
-#: model:ir.model.fields,help:auto_backup.field_db_backup_name
+#: model:ir.model.fields,help:auto_backup.field_db_backup__name
 msgid "Summary of this backup process"
 msgstr "Riepilogo di questo processo di backup"
 
 #. module: auto_backup
-#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+#: model_terms:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
 msgid "Test SFTP Connection"
 msgstr "Prova Connessione SFTP"
 
 #. module: auto_backup
-#: model:ir.model.fields,help:auto_backup.field_db_backup_sftp_host
+#: model:ir.model.fields,help:auto_backup.field_db_backup__sftp_host
 msgid ""
 "The host name or IP address from your remote server. For example 192.168.0.1"
 msgstr ""
 "Il nome host o l'indirizzo IP del tuo server remoto. Per esempio 192.168.0.1"
 
 #. module: auto_backup
-#: model:ir.model.fields,help:auto_backup.field_db_backup_sftp_password
+#: model:ir.model.fields,help:auto_backup.field_db_backup__sftp_password
 msgid ""
 "The password for the SFTP connection. If you specify a private key file, "
 "then this is the password to decrypt it."
@@ -292,12 +391,12 @@ msgstr ""
 "chiave privata, allora questo ?? la password per decodificarla."
 
 #. module: auto_backup
-#: model:ir.model.fields,help:auto_backup.field_db_backup_sftp_port
+#: model:ir.model.fields,help:auto_backup.field_db_backup__sftp_port
 msgid "The port on the FTP server that accepts SSH/SFTP calls."
 msgstr "La porta sul server FTP che accetta chiamate SSH/SFTP."
 
 #. module: auto_backup
-#: model:ir.model.fields,help:auto_backup.field_db_backup_sftp_user
+#: model:ir.model.fields,help:auto_backup.field_db_backup__sftp_user
 msgid ""
 "The username where the SFTP connection should be made with. This is the user "
 "on the external server."
@@ -305,7 +404,17 @@ msgstr ""
 "Il nome utente per la connessione SFTP. Questo ?? l'utente sul server esterno."
 
 #. module: auto_backup
-#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__message_unread
+msgid "Unread Messages"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__message_unread_counter
+msgid "Unread Messages Counter"
+msgstr ""
+
+#. module: auto_backup
+#: model_terms:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
 msgid ""
 "Use SFTP with caution! This writes files to external servers under the path "
 "you specify."
@@ -314,21 +423,41 @@ msgstr ""
 "su server esterni."
 
 #. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup_sftp_user
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__sftp_user
 msgid "Username in the SFTP Server"
 msgstr "Nome utente presso il Server SFTP"
 
 #. module: auto_backup
-#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+#: model_terms:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
 msgid "Warning:"
 msgstr "Avviso:"
 
 #. module: auto_backup
-#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__website_message_ids
+msgid "Website Messages"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,help:auto_backup.field_db_backup__website_message_ids
+msgid "Website communication history"
+msgstr ""
+
+#. module: auto_backup
+#: model_terms:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
 msgid "john"
 msgstr "john"
 
 #. module: auto_backup
-#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+#: selection:db.backup,backup_format:0
+msgid "pg_dump custom format (without filestore)"
+msgstr ""
+
+#. module: auto_backup
+#: model_terms:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
 msgid "sftp.example.com"
 msgstr "sftp.example.com"
+
+#. module: auto_backup
+#: selection:db.backup,backup_format:0
+msgid "zip (includes filestore)"
+msgstr ""
diff --git a/auto_backup/i18n/ja.po b/auto_backup/i18n/ja.po
index c5a19cff1f7..267a4c5208a 100644
--- a/auto_backup/i18n/ja.po
+++ b/auto_backup/i18n/ja.po
@@ -19,15 +19,25 @@ msgstr ""
 "Plural-Forms: nplurals=1; plural=0;\n"
 
 #. module: auto_backup
-#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+#: model_terms:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
 msgid "/home/odoo/.ssh/id_rsa"
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.model.fields,help:auto_backup.field_db_backup_folder
+#: model:ir.model.fields,help:auto_backup.field_db_backup__folder
 msgid "Absolute path for storing the backups"
 msgstr ""
 
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__message_needaction
+msgid "Action Needed"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__message_attachment_count
+msgid "Attachment Count"
+msgstr ""
+
 #. module: auto_backup
 #: model:ir.actions.act_window,name:auto_backup.action_backup_conf_form
 #: model:ir.ui.menu,name:auto_backup.backup_conf_menu
@@ -35,7 +45,7 @@ msgid "Automated Backups"
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+#: model_terms:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
 msgid "Automatic backups of the database can be scheduled as follows:"
 msgstr ""
 
@@ -44,6 +54,11 @@ msgstr ""
 msgid "Backup Failed"
 msgstr ""
 
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__backup_format
+msgid "Backup Format"
+msgstr ""
+
 #. module: auto_backup
 #: model:ir.actions.server,name:auto_backup.ir_cron_backup_scheduler_0_ir_actions_server
 #: model:ir.cron,cron_name:auto_backup.ir_cron_backup_scheduler_0
@@ -57,14 +72,14 @@ msgid "Backup Successful"
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.model.fields,help:auto_backup.field_db_backup_days_to_keep
+#: model:ir.model.fields,help:auto_backup.field_db_backup__days_to_keep
 msgid ""
 "Backups older than this will be deleted automatically. Set 0 to disable "
 "autodeletion."
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+#: model_terms:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
 msgid "Basic backup configuration"
 msgstr ""
 
@@ -74,35 +89,40 @@ msgid "Cannot duplicate a configuration."
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.model.fields,help:auto_backup.field_db_backup_method
+#: model:ir.model.fields,help:auto_backup.field_db_backup__backup_format
+msgid "Choose the format for this backup."
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,help:auto_backup.field_db_backup__method
 msgid "Choose the storage method for this backup."
 msgstr ""
 
 #. module: auto_backup
-#: code:addons/auto_backup/models/db_backup.py:249
+#: code:addons/auto_backup/models/db_backup.py:265
 #, python-format
 msgid "Cleanup of old database backups failed."
 msgstr ""
 
 #. module: auto_backup
-#: code:addons/auto_backup/models/db_backup.py:128
+#: code:addons/auto_backup/models/db_backup.py:137
 #, python-format
 msgid "Connection Test Failed!"
 msgstr ""
 
 #. module: auto_backup
-#: code:addons/auto_backup/models/db_backup.py:123
+#: code:addons/auto_backup/models/db_backup.py:132
 #, python-format
 msgid "Connection Test Succeeded!"
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup_create_uid
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__create_uid
 msgid "Created by"
 msgstr "?????????"
 
 #. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup_create_date
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__create_date
 msgid "Created on"
 msgstr "?????????"
 
@@ -112,38 +132,38 @@ msgid "Database Backup"
 msgstr ""
 
 #. module: auto_backup
-#: code:addons/auto_backup/models/db_backup.py:203
+#: code:addons/auto_backup/models/db_backup.py:219
 #: model:mail.message.subtype,description:auto_backup.mail_message_subtype_failure
 #, python-format
 msgid "Database backup failed."
 msgstr ""
 
 #. module: auto_backup
-#: code:addons/auto_backup/models/db_backup.py:211
+#: code:addons/auto_backup/models/db_backup.py:227
 #: model:mail.message.subtype,description:auto_backup.mail_message_subtype_success
 #, python-format
 msgid "Database backup succeeded."
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup_days_to_keep
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__days_to_keep
 msgid "Days To Keep"
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup_display_name
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__display_name
 msgid "Display Name"
 msgstr "?????????"
 
 #. module: auto_backup
-#: code:addons/auto_backup/models/db_backup.py:114
+#: code:addons/auto_backup/models/db_backup.py:123
 #, python-format
 msgid ""
 "Do not save backups on your filestore, or you will backup your backups too!"
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+#: model_terms:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
 msgid "Execute backup"
 msgstr ""
 
@@ -153,17 +173,32 @@ msgid "Execute backup(s)"
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup_folder
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__folder
 msgid "Folder"
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__message_follower_ids
+msgid "Followers"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__message_channel_ids
+msgid "Followers (Channels)"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__message_partner_ids
+msgid "Followers (Partners)"
+msgstr ""
+
+#. module: auto_backup
+#: model_terms:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
 msgid "Go to Settings / Technical / Automation / Scheduled Actions."
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+#: model_terms:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
 msgid "Help"
 msgstr ""
 
@@ -173,22 +208,42 @@ msgid "I cannot remove backups from the future. Ask Doc for that."
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup_id
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__id
 msgid "ID"
 msgstr "ID"
 
 #. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup___last_update
+#: model:ir.model.fields,help:auto_backup.field_db_backup__message_unread
+msgid "If checked new messages require your attention."
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,help:auto_backup.field_db_backup__message_needaction
+msgid "If checked, new messages require your attention."
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,help:auto_backup.field_db_backup__message_has_error
+msgid "If checked, some messages have a delivery error."
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__message_is_follower
+msgid "Is Follower"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup____last_update
 msgid "Last Modified on"
 msgstr "???????????????"
 
 #. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup_write_uid
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__write_uid
 msgid "Last Updated by"
 msgstr "???????????????"
 
 #. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup_write_date
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__write_date
 msgid "Last Updated on"
 msgstr "???????????????"
 
@@ -198,24 +253,64 @@ msgid "Local disk"
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup_method
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__message_main_attachment_id
+msgid "Main Attachment"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__message_has_error
+msgid "Message Delivery error"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__message_ids
+msgid "Messages"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__method
 msgid "Method"
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup_name
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__name
 msgid "Name"
 msgstr "??????"
 
 #. module: auto_backup
-#: model:ir.model.fields,help:auto_backup.field_db_backup_sftp_private_key
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__message_needaction_counter
+msgid "Number of Actions"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__message_has_error_counter
+msgid "Number of error"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,help:auto_backup.field_db_backup__message_needaction_counter
+msgid "Number of messages which requires an action"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,help:auto_backup.field_db_backup__message_has_error_counter
+msgid "Number of messages with delivery error"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,help:auto_backup.field_db_backup__message_unread_counter
+msgid "Number of unread messages"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,help:auto_backup.field_db_backup__sftp_private_key
 msgid ""
 "Path to the private key file. Only the Odoo user should have read "
 "permissions for that file."
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup_sftp_private_key
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__sftp_private_key
 msgid "Private key location"
 msgstr ""
 
@@ -225,94 +320,124 @@ msgid "Remote SFTP server"
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup_sftp_password
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__sftp_password
 msgid "SFTP Password"
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup_sftp_port
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__sftp_port
 msgid "SFTP Port"
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup_sftp_host
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__sftp_host
 msgid "SFTP Server"
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+#: model_terms:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
 msgid "SFTP Settings"
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+#: model_terms:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
 msgid "Search the action named 'Backup scheduler'."
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+#: model_terms:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
 msgid ""
 "Set the scheduler to active and fill in how often you want backups generated."
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.model.fields,help:auto_backup.field_db_backup_name
+#: model:ir.model.fields,help:auto_backup.field_db_backup__name
 msgid "Summary of this backup process"
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+#: model_terms:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
 msgid "Test SFTP Connection"
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.model.fields,help:auto_backup.field_db_backup_sftp_host
+#: model:ir.model.fields,help:auto_backup.field_db_backup__sftp_host
 msgid ""
 "The host name or IP address from your remote server. For example 192.168.0.1"
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.model.fields,help:auto_backup.field_db_backup_sftp_password
+#: model:ir.model.fields,help:auto_backup.field_db_backup__sftp_password
 msgid ""
 "The password for the SFTP connection. If you specify a private key file, "
 "then this is the password to decrypt it."
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.model.fields,help:auto_backup.field_db_backup_sftp_port
+#: model:ir.model.fields,help:auto_backup.field_db_backup__sftp_port
 msgid "The port on the FTP server that accepts SSH/SFTP calls."
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.model.fields,help:auto_backup.field_db_backup_sftp_user
+#: model:ir.model.fields,help:auto_backup.field_db_backup__sftp_user
 msgid ""
 "The username where the SFTP connection should be made with. This is the user "
 "on the external server."
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__message_unread
+msgid "Unread Messages"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__message_unread_counter
+msgid "Unread Messages Counter"
+msgstr ""
+
+#. module: auto_backup
+#: model_terms:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
 msgid ""
 "Use SFTP with caution! This writes files to external servers under the path "
 "you specify."
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup_sftp_user
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__sftp_user
 msgid "Username in the SFTP Server"
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+#: model_terms:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
 msgid "Warning:"
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__website_message_ids
+msgid "Website Messages"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,help:auto_backup.field_db_backup__website_message_ids
+msgid "Website communication history"
+msgstr ""
+
+#. module: auto_backup
+#: model_terms:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
 msgid "john"
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+#: selection:db.backup,backup_format:0
+msgid "pg_dump custom format (without filestore)"
+msgstr ""
+
+#. module: auto_backup
+#: model_terms:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
 msgid "sftp.example.com"
 msgstr ""
+
+#. module: auto_backup
+#: selection:db.backup,backup_format:0
+msgid "zip (includes filestore)"
+msgstr ""
diff --git a/auto_backup/i18n/ko.po b/auto_backup/i18n/ko.po
index 17f0a2ea669..5e719fe179a 100644
--- a/auto_backup/i18n/ko.po
+++ b/auto_backup/i18n/ko.po
@@ -19,15 +19,25 @@ msgstr ""
 "Plural-Forms: nplurals=1; plural=0;\n"
 
 #. module: auto_backup
-#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+#: model_terms:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
 msgid "/home/odoo/.ssh/id_rsa"
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.model.fields,help:auto_backup.field_db_backup_folder
+#: model:ir.model.fields,help:auto_backup.field_db_backup__folder
 msgid "Absolute path for storing the backups"
 msgstr ""
 
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__message_needaction
+msgid "Action Needed"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__message_attachment_count
+msgid "Attachment Count"
+msgstr ""
+
 #. module: auto_backup
 #: model:ir.actions.act_window,name:auto_backup.action_backup_conf_form
 #: model:ir.ui.menu,name:auto_backup.backup_conf_menu
@@ -35,7 +45,7 @@ msgid "Automated Backups"
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+#: model_terms:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
 msgid "Automatic backups of the database can be scheduled as follows:"
 msgstr ""
 
@@ -44,6 +54,11 @@ msgstr ""
 msgid "Backup Failed"
 msgstr ""
 
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__backup_format
+msgid "Backup Format"
+msgstr ""
+
 #. module: auto_backup
 #: model:ir.actions.server,name:auto_backup.ir_cron_backup_scheduler_0_ir_actions_server
 #: model:ir.cron,cron_name:auto_backup.ir_cron_backup_scheduler_0
@@ -57,14 +72,14 @@ msgid "Backup Successful"
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.model.fields,help:auto_backup.field_db_backup_days_to_keep
+#: model:ir.model.fields,help:auto_backup.field_db_backup__days_to_keep
 msgid ""
 "Backups older than this will be deleted automatically. Set 0 to disable "
 "autodeletion."
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+#: model_terms:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
 msgid "Basic backup configuration"
 msgstr ""
 
@@ -74,35 +89,40 @@ msgid "Cannot duplicate a configuration."
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.model.fields,help:auto_backup.field_db_backup_method
+#: model:ir.model.fields,help:auto_backup.field_db_backup__backup_format
+msgid "Choose the format for this backup."
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,help:auto_backup.field_db_backup__method
 msgid "Choose the storage method for this backup."
 msgstr ""
 
 #. module: auto_backup
-#: code:addons/auto_backup/models/db_backup.py:249
+#: code:addons/auto_backup/models/db_backup.py:265
 #, python-format
 msgid "Cleanup of old database backups failed."
 msgstr ""
 
 #. module: auto_backup
-#: code:addons/auto_backup/models/db_backup.py:128
+#: code:addons/auto_backup/models/db_backup.py:137
 #, python-format
 msgid "Connection Test Failed!"
 msgstr ""
 
 #. module: auto_backup
-#: code:addons/auto_backup/models/db_backup.py:123
+#: code:addons/auto_backup/models/db_backup.py:132
 #, python-format
 msgid "Connection Test Succeeded!"
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup_create_uid
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__create_uid
 msgid "Created by"
 msgstr "?????????"
 
 #. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup_create_date
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__create_date
 msgid "Created on"
 msgstr "?????????"
 
@@ -112,38 +132,38 @@ msgid "Database Backup"
 msgstr ""
 
 #. module: auto_backup
-#: code:addons/auto_backup/models/db_backup.py:203
+#: code:addons/auto_backup/models/db_backup.py:219
 #: model:mail.message.subtype,description:auto_backup.mail_message_subtype_failure
 #, python-format
 msgid "Database backup failed."
 msgstr ""
 
 #. module: auto_backup
-#: code:addons/auto_backup/models/db_backup.py:211
+#: code:addons/auto_backup/models/db_backup.py:227
 #: model:mail.message.subtype,description:auto_backup.mail_message_subtype_success
 #, python-format
 msgid "Database backup succeeded."
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup_days_to_keep
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__days_to_keep
 msgid "Days To Keep"
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup_display_name
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__display_name
 msgid "Display Name"
 msgstr "?????? ??????"
 
 #. module: auto_backup
-#: code:addons/auto_backup/models/db_backup.py:114
+#: code:addons/auto_backup/models/db_backup.py:123
 #, python-format
 msgid ""
 "Do not save backups on your filestore, or you will backup your backups too!"
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+#: model_terms:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
 msgid "Execute backup"
 msgstr ""
 
@@ -153,17 +173,32 @@ msgid "Execute backup(s)"
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup_folder
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__folder
 msgid "Folder"
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__message_follower_ids
+msgid "Followers"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__message_channel_ids
+msgid "Followers (Channels)"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__message_partner_ids
+msgid "Followers (Partners)"
+msgstr ""
+
+#. module: auto_backup
+#: model_terms:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
 msgid "Go to Settings / Technical / Automation / Scheduled Actions."
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+#: model_terms:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
 msgid "Help"
 msgstr ""
 
@@ -173,22 +208,42 @@ msgid "I cannot remove backups from the future. Ask Doc for that."
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup_id
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__id
 msgid "ID"
 msgstr "ID"
 
 #. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup___last_update
+#: model:ir.model.fields,help:auto_backup.field_db_backup__message_unread
+msgid "If checked new messages require your attention."
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,help:auto_backup.field_db_backup__message_needaction
+msgid "If checked, new messages require your attention."
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,help:auto_backup.field_db_backup__message_has_error
+msgid "If checked, some messages have a delivery error."
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__message_is_follower
+msgid "Is Follower"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup____last_update
 msgid "Last Modified on"
 msgstr "?????? ??????"
 
 #. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup_write_uid
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__write_uid
 msgid "Last Updated by"
 msgstr "?????? ????????? ??????"
 
 #. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup_write_date
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__write_date
 msgid "Last Updated on"
 msgstr "?????? ?????? ??????"
 
@@ -198,24 +253,64 @@ msgid "Local disk"
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup_method
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__message_main_attachment_id
+msgid "Main Attachment"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__message_has_error
+msgid "Message Delivery error"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__message_ids
+msgid "Messages"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__method
 msgid "Method"
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup_name
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__name
 msgid "Name"
 msgstr "??????"
 
 #. module: auto_backup
-#: model:ir.model.fields,help:auto_backup.field_db_backup_sftp_private_key
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__message_needaction_counter
+msgid "Number of Actions"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__message_has_error_counter
+msgid "Number of error"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,help:auto_backup.field_db_backup__message_needaction_counter
+msgid "Number of messages which requires an action"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,help:auto_backup.field_db_backup__message_has_error_counter
+msgid "Number of messages with delivery error"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,help:auto_backup.field_db_backup__message_unread_counter
+msgid "Number of unread messages"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,help:auto_backup.field_db_backup__sftp_private_key
 msgid ""
 "Path to the private key file. Only the Odoo user should have read "
 "permissions for that file."
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup_sftp_private_key
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__sftp_private_key
 msgid "Private key location"
 msgstr ""
 
@@ -225,94 +320,124 @@ msgid "Remote SFTP server"
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup_sftp_password
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__sftp_password
 msgid "SFTP Password"
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup_sftp_port
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__sftp_port
 msgid "SFTP Port"
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup_sftp_host
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__sftp_host
 msgid "SFTP Server"
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+#: model_terms:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
 msgid "SFTP Settings"
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+#: model_terms:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
 msgid "Search the action named 'Backup scheduler'."
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+#: model_terms:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
 msgid ""
 "Set the scheduler to active and fill in how often you want backups generated."
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.model.fields,help:auto_backup.field_db_backup_name
+#: model:ir.model.fields,help:auto_backup.field_db_backup__name
 msgid "Summary of this backup process"
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+#: model_terms:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
 msgid "Test SFTP Connection"
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.model.fields,help:auto_backup.field_db_backup_sftp_host
+#: model:ir.model.fields,help:auto_backup.field_db_backup__sftp_host
 msgid ""
 "The host name or IP address from your remote server. For example 192.168.0.1"
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.model.fields,help:auto_backup.field_db_backup_sftp_password
+#: model:ir.model.fields,help:auto_backup.field_db_backup__sftp_password
 msgid ""
 "The password for the SFTP connection. If you specify a private key file, "
 "then this is the password to decrypt it."
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.model.fields,help:auto_backup.field_db_backup_sftp_port
+#: model:ir.model.fields,help:auto_backup.field_db_backup__sftp_port
 msgid "The port on the FTP server that accepts SSH/SFTP calls."
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.model.fields,help:auto_backup.field_db_backup_sftp_user
+#: model:ir.model.fields,help:auto_backup.field_db_backup__sftp_user
 msgid ""
 "The username where the SFTP connection should be made with. This is the user "
 "on the external server."
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__message_unread
+msgid "Unread Messages"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__message_unread_counter
+msgid "Unread Messages Counter"
+msgstr ""
+
+#. module: auto_backup
+#: model_terms:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
 msgid ""
 "Use SFTP with caution! This writes files to external servers under the path "
 "you specify."
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup_sftp_user
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__sftp_user
 msgid "Username in the SFTP Server"
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+#: model_terms:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
 msgid "Warning:"
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__website_message_ids
+msgid "Website Messages"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,help:auto_backup.field_db_backup__website_message_ids
+msgid "Website communication history"
+msgstr ""
+
+#. module: auto_backup
+#: model_terms:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
 msgid "john"
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+#: selection:db.backup,backup_format:0
+msgid "pg_dump custom format (without filestore)"
+msgstr ""
+
+#. module: auto_backup
+#: model_terms:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
 msgid "sftp.example.com"
 msgstr ""
+
+#. module: auto_backup
+#: selection:db.backup,backup_format:0
+msgid "zip (includes filestore)"
+msgstr ""
diff --git a/auto_backup/i18n/lt.po b/auto_backup/i18n/lt.po
index 70a964f3305..271d6b714da 100644
--- a/auto_backup/i18n/lt.po
+++ b/auto_backup/i18n/lt.po
@@ -20,15 +20,25 @@ msgstr ""
 "%100<10 || n%100>=20) ? 1 : 2);\n"
 
 #. module: auto_backup
-#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+#: model_terms:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
 msgid "/home/odoo/.ssh/id_rsa"
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.model.fields,help:auto_backup.field_db_backup_folder
+#: model:ir.model.fields,help:auto_backup.field_db_backup__folder
 msgid "Absolute path for storing the backups"
 msgstr ""
 
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__message_needaction
+msgid "Action Needed"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__message_attachment_count
+msgid "Attachment Count"
+msgstr ""
+
 #. module: auto_backup
 #: model:ir.actions.act_window,name:auto_backup.action_backup_conf_form
 #: model:ir.ui.menu,name:auto_backup.backup_conf_menu
@@ -36,7 +46,7 @@ msgid "Automated Backups"
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+#: model_terms:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
 msgid "Automatic backups of the database can be scheduled as follows:"
 msgstr ""
 
@@ -45,6 +55,11 @@ msgstr ""
 msgid "Backup Failed"
 msgstr ""
 
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__backup_format
+msgid "Backup Format"
+msgstr ""
+
 #. module: auto_backup
 #: model:ir.actions.server,name:auto_backup.ir_cron_backup_scheduler_0_ir_actions_server
 #: model:ir.cron,cron_name:auto_backup.ir_cron_backup_scheduler_0
@@ -58,14 +73,14 @@ msgid "Backup Successful"
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.model.fields,help:auto_backup.field_db_backup_days_to_keep
+#: model:ir.model.fields,help:auto_backup.field_db_backup__days_to_keep
 msgid ""
 "Backups older than this will be deleted automatically. Set 0 to disable "
 "autodeletion."
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+#: model_terms:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
 msgid "Basic backup configuration"
 msgstr ""
 
@@ -75,35 +90,40 @@ msgid "Cannot duplicate a configuration."
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.model.fields,help:auto_backup.field_db_backup_method
+#: model:ir.model.fields,help:auto_backup.field_db_backup__backup_format
+msgid "Choose the format for this backup."
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,help:auto_backup.field_db_backup__method
 msgid "Choose the storage method for this backup."
 msgstr ""
 
 #. module: auto_backup
-#: code:addons/auto_backup/models/db_backup.py:249
+#: code:addons/auto_backup/models/db_backup.py:265
 #, python-format
 msgid "Cleanup of old database backups failed."
 msgstr ""
 
 #. module: auto_backup
-#: code:addons/auto_backup/models/db_backup.py:128
+#: code:addons/auto_backup/models/db_backup.py:137
 #, python-format
 msgid "Connection Test Failed!"
 msgstr ""
 
 #. module: auto_backup
-#: code:addons/auto_backup/models/db_backup.py:123
+#: code:addons/auto_backup/models/db_backup.py:132
 #, python-format
 msgid "Connection Test Succeeded!"
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup_create_uid
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__create_uid
 msgid "Created by"
 msgstr "Suk??r??"
 
 #. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup_create_date
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__create_date
 msgid "Created on"
 msgstr "Sukurta"
 
@@ -113,38 +133,38 @@ msgid "Database Backup"
 msgstr ""
 
 #. module: auto_backup
-#: code:addons/auto_backup/models/db_backup.py:203
+#: code:addons/auto_backup/models/db_backup.py:219
 #: model:mail.message.subtype,description:auto_backup.mail_message_subtype_failure
 #, python-format
 msgid "Database backup failed."
 msgstr ""
 
 #. module: auto_backup
-#: code:addons/auto_backup/models/db_backup.py:211
+#: code:addons/auto_backup/models/db_backup.py:227
 #: model:mail.message.subtype,description:auto_backup.mail_message_subtype_success
 #, python-format
 msgid "Database backup succeeded."
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup_days_to_keep
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__days_to_keep
 msgid "Days To Keep"
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup_display_name
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__display_name
 msgid "Display Name"
 msgstr "Vaizduojamas pavadinimas"
 
 #. module: auto_backup
-#: code:addons/auto_backup/models/db_backup.py:114
+#: code:addons/auto_backup/models/db_backup.py:123
 #, python-format
 msgid ""
 "Do not save backups on your filestore, or you will backup your backups too!"
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+#: model_terms:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
 msgid "Execute backup"
 msgstr ""
 
@@ -154,17 +174,32 @@ msgid "Execute backup(s)"
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup_folder
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__folder
 msgid "Folder"
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__message_follower_ids
+msgid "Followers"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__message_channel_ids
+msgid "Followers (Channels)"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__message_partner_ids
+msgid "Followers (Partners)"
+msgstr ""
+
+#. module: auto_backup
+#: model_terms:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
 msgid "Go to Settings / Technical / Automation / Scheduled Actions."
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+#: model_terms:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
 msgid "Help"
 msgstr ""
 
@@ -174,22 +209,42 @@ msgid "I cannot remove backups from the future. Ask Doc for that."
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup_id
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__id
 msgid "ID"
 msgstr "ID"
 
 #. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup___last_update
+#: model:ir.model.fields,help:auto_backup.field_db_backup__message_unread
+msgid "If checked new messages require your attention."
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,help:auto_backup.field_db_backup__message_needaction
+msgid "If checked, new messages require your attention."
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,help:auto_backup.field_db_backup__message_has_error
+msgid "If checked, some messages have a delivery error."
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__message_is_follower
+msgid "Is Follower"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup____last_update
 msgid "Last Modified on"
 msgstr "Paskutin?? kart?? keista"
 
 #. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup_write_uid
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__write_uid
 msgid "Last Updated by"
 msgstr "Paskutini kart?? atnaujino"
 
 #. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup_write_date
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__write_date
 msgid "Last Updated on"
 msgstr "Paskutin?? kart?? atnaujinta"
 
@@ -199,24 +254,64 @@ msgid "Local disk"
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup_method
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__message_main_attachment_id
+msgid "Main Attachment"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__message_has_error
+msgid "Message Delivery error"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__message_ids
+msgid "Messages"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__method
 msgid "Method"
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup_name
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__name
 msgid "Name"
 msgstr "Pavadinimas"
 
 #. module: auto_backup
-#: model:ir.model.fields,help:auto_backup.field_db_backup_sftp_private_key
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__message_needaction_counter
+msgid "Number of Actions"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__message_has_error_counter
+msgid "Number of error"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,help:auto_backup.field_db_backup__message_needaction_counter
+msgid "Number of messages which requires an action"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,help:auto_backup.field_db_backup__message_has_error_counter
+msgid "Number of messages with delivery error"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,help:auto_backup.field_db_backup__message_unread_counter
+msgid "Number of unread messages"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,help:auto_backup.field_db_backup__sftp_private_key
 msgid ""
 "Path to the private key file. Only the Odoo user should have read "
 "permissions for that file."
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup_sftp_private_key
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__sftp_private_key
 msgid "Private key location"
 msgstr ""
 
@@ -226,94 +321,124 @@ msgid "Remote SFTP server"
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup_sftp_password
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__sftp_password
 msgid "SFTP Password"
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup_sftp_port
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__sftp_port
 msgid "SFTP Port"
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup_sftp_host
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__sftp_host
 msgid "SFTP Server"
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+#: model_terms:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
 msgid "SFTP Settings"
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+#: model_terms:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
 msgid "Search the action named 'Backup scheduler'."
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+#: model_terms:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
 msgid ""
 "Set the scheduler to active and fill in how often you want backups generated."
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.model.fields,help:auto_backup.field_db_backup_name
+#: model:ir.model.fields,help:auto_backup.field_db_backup__name
 msgid "Summary of this backup process"
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+#: model_terms:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
 msgid "Test SFTP Connection"
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.model.fields,help:auto_backup.field_db_backup_sftp_host
+#: model:ir.model.fields,help:auto_backup.field_db_backup__sftp_host
 msgid ""
 "The host name or IP address from your remote server. For example 192.168.0.1"
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.model.fields,help:auto_backup.field_db_backup_sftp_password
+#: model:ir.model.fields,help:auto_backup.field_db_backup__sftp_password
 msgid ""
 "The password for the SFTP connection. If you specify a private key file, "
 "then this is the password to decrypt it."
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.model.fields,help:auto_backup.field_db_backup_sftp_port
+#: model:ir.model.fields,help:auto_backup.field_db_backup__sftp_port
 msgid "The port on the FTP server that accepts SSH/SFTP calls."
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.model.fields,help:auto_backup.field_db_backup_sftp_user
+#: model:ir.model.fields,help:auto_backup.field_db_backup__sftp_user
 msgid ""
 "The username where the SFTP connection should be made with. This is the user "
 "on the external server."
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__message_unread
+msgid "Unread Messages"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__message_unread_counter
+msgid "Unread Messages Counter"
+msgstr ""
+
+#. module: auto_backup
+#: model_terms:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
 msgid ""
 "Use SFTP with caution! This writes files to external servers under the path "
 "you specify."
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup_sftp_user
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__sftp_user
 msgid "Username in the SFTP Server"
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+#: model_terms:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
 msgid "Warning:"
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__website_message_ids
+msgid "Website Messages"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,help:auto_backup.field_db_backup__website_message_ids
+msgid "Website communication history"
+msgstr ""
+
+#. module: auto_backup
+#: model_terms:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
 msgid "john"
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+#: selection:db.backup,backup_format:0
+msgid "pg_dump custom format (without filestore)"
+msgstr ""
+
+#. module: auto_backup
+#: model_terms:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
 msgid "sftp.example.com"
 msgstr ""
+
+#. module: auto_backup
+#: selection:db.backup,backup_format:0
+msgid "zip (includes filestore)"
+msgstr ""
diff --git a/auto_backup/i18n/lt_LT.po b/auto_backup/i18n/lt_LT.po
index 8dfe16c4abf..fb79e2a1906 100644
--- a/auto_backup/i18n/lt_LT.po
+++ b/auto_backup/i18n/lt_LT.po
@@ -21,15 +21,25 @@ msgstr ""
 "%100<10 || n%100>=20) ? 1 : 2);\n"
 
 #. module: auto_backup
-#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+#: model_terms:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
 msgid "/home/odoo/.ssh/id_rsa"
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.model.fields,help:auto_backup.field_db_backup_folder
+#: model:ir.model.fields,help:auto_backup.field_db_backup__folder
 msgid "Absolute path for storing the backups"
 msgstr ""
 
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__message_needaction
+msgid "Action Needed"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__message_attachment_count
+msgid "Attachment Count"
+msgstr ""
+
 #. module: auto_backup
 #: model:ir.actions.act_window,name:auto_backup.action_backup_conf_form
 #: model:ir.ui.menu,name:auto_backup.backup_conf_menu
@@ -37,7 +47,7 @@ msgid "Automated Backups"
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+#: model_terms:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
 msgid "Automatic backups of the database can be scheduled as follows:"
 msgstr ""
 
@@ -46,6 +56,11 @@ msgstr ""
 msgid "Backup Failed"
 msgstr ""
 
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__backup_format
+msgid "Backup Format"
+msgstr ""
+
 #. module: auto_backup
 #: model:ir.actions.server,name:auto_backup.ir_cron_backup_scheduler_0_ir_actions_server
 #: model:ir.cron,cron_name:auto_backup.ir_cron_backup_scheduler_0
@@ -59,14 +74,14 @@ msgid "Backup Successful"
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.model.fields,help:auto_backup.field_db_backup_days_to_keep
+#: model:ir.model.fields,help:auto_backup.field_db_backup__days_to_keep
 msgid ""
 "Backups older than this will be deleted automatically. Set 0 to disable "
 "autodeletion."
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+#: model_terms:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
 msgid "Basic backup configuration"
 msgstr ""
 
@@ -76,35 +91,40 @@ msgid "Cannot duplicate a configuration."
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.model.fields,help:auto_backup.field_db_backup_method
+#: model:ir.model.fields,help:auto_backup.field_db_backup__backup_format
+msgid "Choose the format for this backup."
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,help:auto_backup.field_db_backup__method
 msgid "Choose the storage method for this backup."
 msgstr ""
 
 #. module: auto_backup
-#: code:addons/auto_backup/models/db_backup.py:249
+#: code:addons/auto_backup/models/db_backup.py:265
 #, python-format
 msgid "Cleanup of old database backups failed."
 msgstr ""
 
 #. module: auto_backup
-#: code:addons/auto_backup/models/db_backup.py:128
+#: code:addons/auto_backup/models/db_backup.py:137
 #, python-format
 msgid "Connection Test Failed!"
 msgstr ""
 
 #. module: auto_backup
-#: code:addons/auto_backup/models/db_backup.py:123
+#: code:addons/auto_backup/models/db_backup.py:132
 #, python-format
 msgid "Connection Test Succeeded!"
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup_create_uid
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__create_uid
 msgid "Created by"
 msgstr "Suk??r??"
 
 #. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup_create_date
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__create_date
 msgid "Created on"
 msgstr "Sukurta"
 
@@ -114,38 +134,38 @@ msgid "Database Backup"
 msgstr ""
 
 #. module: auto_backup
-#: code:addons/auto_backup/models/db_backup.py:203
+#: code:addons/auto_backup/models/db_backup.py:219
 #: model:mail.message.subtype,description:auto_backup.mail_message_subtype_failure
 #, python-format
 msgid "Database backup failed."
 msgstr ""
 
 #. module: auto_backup
-#: code:addons/auto_backup/models/db_backup.py:211
+#: code:addons/auto_backup/models/db_backup.py:227
 #: model:mail.message.subtype,description:auto_backup.mail_message_subtype_success
 #, python-format
 msgid "Database backup succeeded."
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup_days_to_keep
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__days_to_keep
 msgid "Days To Keep"
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup_display_name
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__display_name
 msgid "Display Name"
 msgstr ""
 
 #. module: auto_backup
-#: code:addons/auto_backup/models/db_backup.py:114
+#: code:addons/auto_backup/models/db_backup.py:123
 #, python-format
 msgid ""
 "Do not save backups on your filestore, or you will backup your backups too!"
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+#: model_terms:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
 msgid "Execute backup"
 msgstr ""
 
@@ -155,17 +175,32 @@ msgid "Execute backup(s)"
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup_folder
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__folder
 msgid "Folder"
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__message_follower_ids
+msgid "Followers"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__message_channel_ids
+msgid "Followers (Channels)"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__message_partner_ids
+msgid "Followers (Partners)"
+msgstr ""
+
+#. module: auto_backup
+#: model_terms:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
 msgid "Go to Settings / Technical / Automation / Scheduled Actions."
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+#: model_terms:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
 msgid "Help"
 msgstr ""
 
@@ -175,22 +210,42 @@ msgid "I cannot remove backups from the future. Ask Doc for that."
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup_id
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__id
 msgid "ID"
 msgstr "ID"
 
 #. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup___last_update
+#: model:ir.model.fields,help:auto_backup.field_db_backup__message_unread
+msgid "If checked new messages require your attention."
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,help:auto_backup.field_db_backup__message_needaction
+msgid "If checked, new messages require your attention."
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,help:auto_backup.field_db_backup__message_has_error
+msgid "If checked, some messages have a delivery error."
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__message_is_follower
+msgid "Is Follower"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup____last_update
 msgid "Last Modified on"
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup_write_uid
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__write_uid
 msgid "Last Updated by"
 msgstr "Paskutin?? kart?? atnaujino"
 
 #. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup_write_date
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__write_date
 msgid "Last Updated on"
 msgstr "Paskutin?? kart?? atnaujinta"
 
@@ -200,24 +255,64 @@ msgid "Local disk"
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup_method
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__message_main_attachment_id
+msgid "Main Attachment"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__message_has_error
+msgid "Message Delivery error"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__message_ids
+msgid "Messages"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__method
 msgid "Method"
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup_name
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__name
 msgid "Name"
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.model.fields,help:auto_backup.field_db_backup_sftp_private_key
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__message_needaction_counter
+msgid "Number of Actions"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__message_has_error_counter
+msgid "Number of error"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,help:auto_backup.field_db_backup__message_needaction_counter
+msgid "Number of messages which requires an action"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,help:auto_backup.field_db_backup__message_has_error_counter
+msgid "Number of messages with delivery error"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,help:auto_backup.field_db_backup__message_unread_counter
+msgid "Number of unread messages"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,help:auto_backup.field_db_backup__sftp_private_key
 msgid ""
 "Path to the private key file. Only the Odoo user should have read "
 "permissions for that file."
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup_sftp_private_key
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__sftp_private_key
 msgid "Private key location"
 msgstr ""
 
@@ -227,94 +322,124 @@ msgid "Remote SFTP server"
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup_sftp_password
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__sftp_password
 msgid "SFTP Password"
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup_sftp_port
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__sftp_port
 msgid "SFTP Port"
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup_sftp_host
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__sftp_host
 msgid "SFTP Server"
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+#: model_terms:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
 msgid "SFTP Settings"
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+#: model_terms:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
 msgid "Search the action named 'Backup scheduler'."
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+#: model_terms:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
 msgid ""
 "Set the scheduler to active and fill in how often you want backups generated."
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.model.fields,help:auto_backup.field_db_backup_name
+#: model:ir.model.fields,help:auto_backup.field_db_backup__name
 msgid "Summary of this backup process"
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+#: model_terms:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
 msgid "Test SFTP Connection"
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.model.fields,help:auto_backup.field_db_backup_sftp_host
+#: model:ir.model.fields,help:auto_backup.field_db_backup__sftp_host
 msgid ""
 "The host name or IP address from your remote server. For example 192.168.0.1"
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.model.fields,help:auto_backup.field_db_backup_sftp_password
+#: model:ir.model.fields,help:auto_backup.field_db_backup__sftp_password
 msgid ""
 "The password for the SFTP connection. If you specify a private key file, "
 "then this is the password to decrypt it."
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.model.fields,help:auto_backup.field_db_backup_sftp_port
+#: model:ir.model.fields,help:auto_backup.field_db_backup__sftp_port
 msgid "The port on the FTP server that accepts SSH/SFTP calls."
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.model.fields,help:auto_backup.field_db_backup_sftp_user
+#: model:ir.model.fields,help:auto_backup.field_db_backup__sftp_user
 msgid ""
 "The username where the SFTP connection should be made with. This is the user "
 "on the external server."
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__message_unread
+msgid "Unread Messages"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__message_unread_counter
+msgid "Unread Messages Counter"
+msgstr ""
+
+#. module: auto_backup
+#: model_terms:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
 msgid ""
 "Use SFTP with caution! This writes files to external servers under the path "
 "you specify."
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup_sftp_user
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__sftp_user
 msgid "Username in the SFTP Server"
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+#: model_terms:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
 msgid "Warning:"
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__website_message_ids
+msgid "Website Messages"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,help:auto_backup.field_db_backup__website_message_ids
+msgid "Website communication history"
+msgstr ""
+
+#. module: auto_backup
+#: model_terms:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
 msgid "john"
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+#: selection:db.backup,backup_format:0
+msgid "pg_dump custom format (without filestore)"
+msgstr ""
+
+#. module: auto_backup
+#: model_terms:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
 msgid "sftp.example.com"
 msgstr ""
+
+#. module: auto_backup
+#: selection:db.backup,backup_format:0
+msgid "zip (includes filestore)"
+msgstr ""
diff --git a/auto_backup/i18n/lv.po b/auto_backup/i18n/lv.po
index 06e10742865..61a9afb453d 100644
--- a/auto_backup/i18n/lv.po
+++ b/auto_backup/i18n/lv.po
@@ -20,15 +20,25 @@ msgstr ""
 "2);\n"
 
 #. module: auto_backup
-#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+#: model_terms:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
 msgid "/home/odoo/.ssh/id_rsa"
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.model.fields,help:auto_backup.field_db_backup_folder
+#: model:ir.model.fields,help:auto_backup.field_db_backup__folder
 msgid "Absolute path for storing the backups"
 msgstr ""
 
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__message_needaction
+msgid "Action Needed"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__message_attachment_count
+msgid "Attachment Count"
+msgstr ""
+
 #. module: auto_backup
 #: model:ir.actions.act_window,name:auto_backup.action_backup_conf_form
 #: model:ir.ui.menu,name:auto_backup.backup_conf_menu
@@ -36,7 +46,7 @@ msgid "Automated Backups"
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+#: model_terms:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
 msgid "Automatic backups of the database can be scheduled as follows:"
 msgstr ""
 
@@ -45,6 +55,11 @@ msgstr ""
 msgid "Backup Failed"
 msgstr ""
 
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__backup_format
+msgid "Backup Format"
+msgstr ""
+
 #. module: auto_backup
 #: model:ir.actions.server,name:auto_backup.ir_cron_backup_scheduler_0_ir_actions_server
 #: model:ir.cron,cron_name:auto_backup.ir_cron_backup_scheduler_0
@@ -58,14 +73,14 @@ msgid "Backup Successful"
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.model.fields,help:auto_backup.field_db_backup_days_to_keep
+#: model:ir.model.fields,help:auto_backup.field_db_backup__days_to_keep
 msgid ""
 "Backups older than this will be deleted automatically. Set 0 to disable "
 "autodeletion."
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+#: model_terms:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
 msgid "Basic backup configuration"
 msgstr ""
 
@@ -75,35 +90,40 @@ msgid "Cannot duplicate a configuration."
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.model.fields,help:auto_backup.field_db_backup_method
+#: model:ir.model.fields,help:auto_backup.field_db_backup__backup_format
+msgid "Choose the format for this backup."
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,help:auto_backup.field_db_backup__method
 msgid "Choose the storage method for this backup."
 msgstr ""
 
 #. module: auto_backup
-#: code:addons/auto_backup/models/db_backup.py:249
+#: code:addons/auto_backup/models/db_backup.py:265
 #, python-format
 msgid "Cleanup of old database backups failed."
 msgstr ""
 
 #. module: auto_backup
-#: code:addons/auto_backup/models/db_backup.py:128
+#: code:addons/auto_backup/models/db_backup.py:137
 #, python-format
 msgid "Connection Test Failed!"
 msgstr ""
 
 #. module: auto_backup
-#: code:addons/auto_backup/models/db_backup.py:123
+#: code:addons/auto_backup/models/db_backup.py:132
 #, python-format
 msgid "Connection Test Succeeded!"
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup_create_uid
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__create_uid
 msgid "Created by"
 msgstr "Izveidoja"
 
 #. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup_create_date
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__create_date
 msgid "Created on"
 msgstr "Izveidots"
 
@@ -113,38 +133,38 @@ msgid "Database Backup"
 msgstr ""
 
 #. module: auto_backup
-#: code:addons/auto_backup/models/db_backup.py:203
+#: code:addons/auto_backup/models/db_backup.py:219
 #: model:mail.message.subtype,description:auto_backup.mail_message_subtype_failure
 #, python-format
 msgid "Database backup failed."
 msgstr ""
 
 #. module: auto_backup
-#: code:addons/auto_backup/models/db_backup.py:211
+#: code:addons/auto_backup/models/db_backup.py:227
 #: model:mail.message.subtype,description:auto_backup.mail_message_subtype_success
 #, python-format
 msgid "Database backup succeeded."
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup_days_to_keep
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__days_to_keep
 msgid "Days To Keep"
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup_display_name
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__display_name
 msgid "Display Name"
 msgstr ""
 
 #. module: auto_backup
-#: code:addons/auto_backup/models/db_backup.py:114
+#: code:addons/auto_backup/models/db_backup.py:123
 #, python-format
 msgid ""
 "Do not save backups on your filestore, or you will backup your backups too!"
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+#: model_terms:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
 msgid "Execute backup"
 msgstr ""
 
@@ -154,17 +174,32 @@ msgid "Execute backup(s)"
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup_folder
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__folder
 msgid "Folder"
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__message_follower_ids
+msgid "Followers"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__message_channel_ids
+msgid "Followers (Channels)"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__message_partner_ids
+msgid "Followers (Partners)"
+msgstr ""
+
+#. module: auto_backup
+#: model_terms:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
 msgid "Go to Settings / Technical / Automation / Scheduled Actions."
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+#: model_terms:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
 msgid "Help"
 msgstr ""
 
@@ -174,22 +209,42 @@ msgid "I cannot remove backups from the future. Ask Doc for that."
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup_id
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__id
 msgid "ID"
 msgstr "ID"
 
 #. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup___last_update
+#: model:ir.model.fields,help:auto_backup.field_db_backup__message_unread
+msgid "If checked new messages require your attention."
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,help:auto_backup.field_db_backup__message_needaction
+msgid "If checked, new messages require your attention."
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,help:auto_backup.field_db_backup__message_has_error
+msgid "If checked, some messages have a delivery error."
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__message_is_follower
+msgid "Is Follower"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup____last_update
 msgid "Last Modified on"
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup_write_uid
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__write_uid
 msgid "Last Updated by"
 msgstr "P??d??jo reizi atjaunoja"
 
 #. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup_write_date
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__write_date
 msgid "Last Updated on"
 msgstr "P??d??j??s izmai??as"
 
@@ -199,24 +254,64 @@ msgid "Local disk"
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup_method
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__message_main_attachment_id
+msgid "Main Attachment"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__message_has_error
+msgid "Message Delivery error"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__message_ids
+msgid "Messages"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__method
 msgid "Method"
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup_name
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__name
 msgid "Name"
 msgstr "Nosaukums"
 
 #. module: auto_backup
-#: model:ir.model.fields,help:auto_backup.field_db_backup_sftp_private_key
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__message_needaction_counter
+msgid "Number of Actions"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__message_has_error_counter
+msgid "Number of error"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,help:auto_backup.field_db_backup__message_needaction_counter
+msgid "Number of messages which requires an action"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,help:auto_backup.field_db_backup__message_has_error_counter
+msgid "Number of messages with delivery error"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,help:auto_backup.field_db_backup__message_unread_counter
+msgid "Number of unread messages"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,help:auto_backup.field_db_backup__sftp_private_key
 msgid ""
 "Path to the private key file. Only the Odoo user should have read "
 "permissions for that file."
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup_sftp_private_key
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__sftp_private_key
 msgid "Private key location"
 msgstr ""
 
@@ -226,94 +321,124 @@ msgid "Remote SFTP server"
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup_sftp_password
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__sftp_password
 msgid "SFTP Password"
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup_sftp_port
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__sftp_port
 msgid "SFTP Port"
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup_sftp_host
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__sftp_host
 msgid "SFTP Server"
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+#: model_terms:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
 msgid "SFTP Settings"
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+#: model_terms:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
 msgid "Search the action named 'Backup scheduler'."
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+#: model_terms:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
 msgid ""
 "Set the scheduler to active and fill in how often you want backups generated."
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.model.fields,help:auto_backup.field_db_backup_name
+#: model:ir.model.fields,help:auto_backup.field_db_backup__name
 msgid "Summary of this backup process"
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+#: model_terms:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
 msgid "Test SFTP Connection"
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.model.fields,help:auto_backup.field_db_backup_sftp_host
+#: model:ir.model.fields,help:auto_backup.field_db_backup__sftp_host
 msgid ""
 "The host name or IP address from your remote server. For example 192.168.0.1"
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.model.fields,help:auto_backup.field_db_backup_sftp_password
+#: model:ir.model.fields,help:auto_backup.field_db_backup__sftp_password
 msgid ""
 "The password for the SFTP connection. If you specify a private key file, "
 "then this is the password to decrypt it."
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.model.fields,help:auto_backup.field_db_backup_sftp_port
+#: model:ir.model.fields,help:auto_backup.field_db_backup__sftp_port
 msgid "The port on the FTP server that accepts SSH/SFTP calls."
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.model.fields,help:auto_backup.field_db_backup_sftp_user
+#: model:ir.model.fields,help:auto_backup.field_db_backup__sftp_user
 msgid ""
 "The username where the SFTP connection should be made with. This is the user "
 "on the external server."
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__message_unread
+msgid "Unread Messages"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__message_unread_counter
+msgid "Unread Messages Counter"
+msgstr ""
+
+#. module: auto_backup
+#: model_terms:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
 msgid ""
 "Use SFTP with caution! This writes files to external servers under the path "
 "you specify."
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup_sftp_user
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__sftp_user
 msgid "Username in the SFTP Server"
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+#: model_terms:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
 msgid "Warning:"
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__website_message_ids
+msgid "Website Messages"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,help:auto_backup.field_db_backup__website_message_ids
+msgid "Website communication history"
+msgstr ""
+
+#. module: auto_backup
+#: model_terms:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
 msgid "john"
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+#: selection:db.backup,backup_format:0
+msgid "pg_dump custom format (without filestore)"
+msgstr ""
+
+#. module: auto_backup
+#: model_terms:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
 msgid "sftp.example.com"
 msgstr ""
+
+#. module: auto_backup
+#: selection:db.backup,backup_format:0
+msgid "zip (includes filestore)"
+msgstr ""
diff --git a/auto_backup/i18n/mk.po b/auto_backup/i18n/mk.po
index 1abc3ebf038..8afa6553d2f 100644
--- a/auto_backup/i18n/mk.po
+++ b/auto_backup/i18n/mk.po
@@ -19,15 +19,25 @@ msgstr ""
 "Plural-Forms: nplurals=2; plural=(n % 10 == 1 && n % 100 != 11) ? 0 : 1;\n"
 
 #. module: auto_backup
-#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+#: model_terms:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
 msgid "/home/odoo/.ssh/id_rsa"
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.model.fields,help:auto_backup.field_db_backup_folder
+#: model:ir.model.fields,help:auto_backup.field_db_backup__folder
 msgid "Absolute path for storing the backups"
 msgstr ""
 
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__message_needaction
+msgid "Action Needed"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__message_attachment_count
+msgid "Attachment Count"
+msgstr ""
+
 #. module: auto_backup
 #: model:ir.actions.act_window,name:auto_backup.action_backup_conf_form
 #: model:ir.ui.menu,name:auto_backup.backup_conf_menu
@@ -35,7 +45,7 @@ msgid "Automated Backups"
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+#: model_terms:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
 msgid "Automatic backups of the database can be scheduled as follows:"
 msgstr ""
 
@@ -44,6 +54,11 @@ msgstr ""
 msgid "Backup Failed"
 msgstr ""
 
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__backup_format
+msgid "Backup Format"
+msgstr ""
+
 #. module: auto_backup
 #: model:ir.actions.server,name:auto_backup.ir_cron_backup_scheduler_0_ir_actions_server
 #: model:ir.cron,cron_name:auto_backup.ir_cron_backup_scheduler_0
@@ -57,14 +72,14 @@ msgid "Backup Successful"
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.model.fields,help:auto_backup.field_db_backup_days_to_keep
+#: model:ir.model.fields,help:auto_backup.field_db_backup__days_to_keep
 msgid ""
 "Backups older than this will be deleted automatically. Set 0 to disable "
 "autodeletion."
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+#: model_terms:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
 msgid "Basic backup configuration"
 msgstr ""
 
@@ -74,35 +89,40 @@ msgid "Cannot duplicate a configuration."
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.model.fields,help:auto_backup.field_db_backup_method
+#: model:ir.model.fields,help:auto_backup.field_db_backup__backup_format
+msgid "Choose the format for this backup."
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,help:auto_backup.field_db_backup__method
 msgid "Choose the storage method for this backup."
 msgstr ""
 
 #. module: auto_backup
-#: code:addons/auto_backup/models/db_backup.py:249
+#: code:addons/auto_backup/models/db_backup.py:265
 #, python-format
 msgid "Cleanup of old database backups failed."
 msgstr ""
 
 #. module: auto_backup
-#: code:addons/auto_backup/models/db_backup.py:128
+#: code:addons/auto_backup/models/db_backup.py:137
 #, python-format
 msgid "Connection Test Failed!"
 msgstr ""
 
 #. module: auto_backup
-#: code:addons/auto_backup/models/db_backup.py:123
+#: code:addons/auto_backup/models/db_backup.py:132
 #, python-format
 msgid "Connection Test Succeeded!"
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup_create_uid
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__create_uid
 msgid "Created by"
 msgstr "???????????????? ????"
 
 #. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup_create_date
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__create_date
 msgid "Created on"
 msgstr "???????????????? ????"
 
@@ -112,38 +132,38 @@ msgid "Database Backup"
 msgstr ""
 
 #. module: auto_backup
-#: code:addons/auto_backup/models/db_backup.py:203
+#: code:addons/auto_backup/models/db_backup.py:219
 #: model:mail.message.subtype,description:auto_backup.mail_message_subtype_failure
 #, python-format
 msgid "Database backup failed."
 msgstr ""
 
 #. module: auto_backup
-#: code:addons/auto_backup/models/db_backup.py:211
+#: code:addons/auto_backup/models/db_backup.py:227
 #: model:mail.message.subtype,description:auto_backup.mail_message_subtype_success
 #, python-format
 msgid "Database backup succeeded."
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup_days_to_keep
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__days_to_keep
 msgid "Days To Keep"
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup_display_name
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__display_name
 msgid "Display Name"
 msgstr "?????????????? ??????"
 
 #. module: auto_backup
-#: code:addons/auto_backup/models/db_backup.py:114
+#: code:addons/auto_backup/models/db_backup.py:123
 #, python-format
 msgid ""
 "Do not save backups on your filestore, or you will backup your backups too!"
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+#: model_terms:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
 msgid "Execute backup"
 msgstr ""
 
@@ -153,17 +173,32 @@ msgid "Execute backup(s)"
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup_folder
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__folder
 msgid "Folder"
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__message_follower_ids
+msgid "Followers"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__message_channel_ids
+msgid "Followers (Channels)"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__message_partner_ids
+msgid "Followers (Partners)"
+msgstr ""
+
+#. module: auto_backup
+#: model_terms:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
 msgid "Go to Settings / Technical / Automation / Scheduled Actions."
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+#: model_terms:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
 msgid "Help"
 msgstr ""
 
@@ -173,22 +208,42 @@ msgid "I cannot remove backups from the future. Ask Doc for that."
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup_id
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__id
 msgid "ID"
 msgstr "ID"
 
 #. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup___last_update
+#: model:ir.model.fields,help:auto_backup.field_db_backup__message_unread
+msgid "If checked new messages require your attention."
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,help:auto_backup.field_db_backup__message_needaction
+msgid "If checked, new messages require your attention."
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,help:auto_backup.field_db_backup__message_has_error
+msgid "If checked, some messages have a delivery error."
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__message_is_follower
+msgid "Is Follower"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup____last_update
 msgid "Last Modified on"
 msgstr "???????????????? ?????????????? ????"
 
 #. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup_write_uid
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__write_uid
 msgid "Last Updated by"
 msgstr "???????????????? ?????????????????? ????"
 
 #. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup_write_date
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__write_date
 msgid "Last Updated on"
 msgstr "???????????????? ?????????????????? ????"
 
@@ -198,24 +253,64 @@ msgid "Local disk"
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup_method
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__message_main_attachment_id
+msgid "Main Attachment"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__message_has_error
+msgid "Message Delivery error"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__message_ids
+msgid "Messages"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__method
 msgid "Method"
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup_name
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__name
 msgid "Name"
 msgstr "??????"
 
 #. module: auto_backup
-#: model:ir.model.fields,help:auto_backup.field_db_backup_sftp_private_key
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__message_needaction_counter
+msgid "Number of Actions"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__message_has_error_counter
+msgid "Number of error"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,help:auto_backup.field_db_backup__message_needaction_counter
+msgid "Number of messages which requires an action"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,help:auto_backup.field_db_backup__message_has_error_counter
+msgid "Number of messages with delivery error"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,help:auto_backup.field_db_backup__message_unread_counter
+msgid "Number of unread messages"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,help:auto_backup.field_db_backup__sftp_private_key
 msgid ""
 "Path to the private key file. Only the Odoo user should have read "
 "permissions for that file."
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup_sftp_private_key
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__sftp_private_key
 msgid "Private key location"
 msgstr ""
 
@@ -225,94 +320,124 @@ msgid "Remote SFTP server"
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup_sftp_password
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__sftp_password
 msgid "SFTP Password"
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup_sftp_port
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__sftp_port
 msgid "SFTP Port"
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup_sftp_host
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__sftp_host
 msgid "SFTP Server"
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+#: model_terms:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
 msgid "SFTP Settings"
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+#: model_terms:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
 msgid "Search the action named 'Backup scheduler'."
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+#: model_terms:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
 msgid ""
 "Set the scheduler to active and fill in how often you want backups generated."
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.model.fields,help:auto_backup.field_db_backup_name
+#: model:ir.model.fields,help:auto_backup.field_db_backup__name
 msgid "Summary of this backup process"
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+#: model_terms:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
 msgid "Test SFTP Connection"
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.model.fields,help:auto_backup.field_db_backup_sftp_host
+#: model:ir.model.fields,help:auto_backup.field_db_backup__sftp_host
 msgid ""
 "The host name or IP address from your remote server. For example 192.168.0.1"
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.model.fields,help:auto_backup.field_db_backup_sftp_password
+#: model:ir.model.fields,help:auto_backup.field_db_backup__sftp_password
 msgid ""
 "The password for the SFTP connection. If you specify a private key file, "
 "then this is the password to decrypt it."
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.model.fields,help:auto_backup.field_db_backup_sftp_port
+#: model:ir.model.fields,help:auto_backup.field_db_backup__sftp_port
 msgid "The port on the FTP server that accepts SSH/SFTP calls."
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.model.fields,help:auto_backup.field_db_backup_sftp_user
+#: model:ir.model.fields,help:auto_backup.field_db_backup__sftp_user
 msgid ""
 "The username where the SFTP connection should be made with. This is the user "
 "on the external server."
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__message_unread
+msgid "Unread Messages"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__message_unread_counter
+msgid "Unread Messages Counter"
+msgstr ""
+
+#. module: auto_backup
+#: model_terms:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
 msgid ""
 "Use SFTP with caution! This writes files to external servers under the path "
 "you specify."
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup_sftp_user
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__sftp_user
 msgid "Username in the SFTP Server"
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+#: model_terms:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
 msgid "Warning:"
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__website_message_ids
+msgid "Website Messages"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,help:auto_backup.field_db_backup__website_message_ids
+msgid "Website communication history"
+msgstr ""
+
+#. module: auto_backup
+#: model_terms:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
 msgid "john"
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+#: selection:db.backup,backup_format:0
+msgid "pg_dump custom format (without filestore)"
+msgstr ""
+
+#. module: auto_backup
+#: model_terms:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
 msgid "sftp.example.com"
 msgstr ""
+
+#. module: auto_backup
+#: selection:db.backup,backup_format:0
+msgid "zip (includes filestore)"
+msgstr ""
diff --git a/auto_backup/i18n/mn.po b/auto_backup/i18n/mn.po
index 33a3c026145..8b8128aaae7 100644
--- a/auto_backup/i18n/mn.po
+++ b/auto_backup/i18n/mn.po
@@ -19,15 +19,25 @@ msgstr ""
 "Plural-Forms: nplurals=2; plural=(n != 1);\n"
 
 #. module: auto_backup
-#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+#: model_terms:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
 msgid "/home/odoo/.ssh/id_rsa"
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.model.fields,help:auto_backup.field_db_backup_folder
+#: model:ir.model.fields,help:auto_backup.field_db_backup__folder
 msgid "Absolute path for storing the backups"
 msgstr ""
 
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__message_needaction
+msgid "Action Needed"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__message_attachment_count
+msgid "Attachment Count"
+msgstr ""
+
 #. module: auto_backup
 #: model:ir.actions.act_window,name:auto_backup.action_backup_conf_form
 #: model:ir.ui.menu,name:auto_backup.backup_conf_menu
@@ -35,7 +45,7 @@ msgid "Automated Backups"
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+#: model_terms:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
 msgid "Automatic backups of the database can be scheduled as follows:"
 msgstr ""
 
@@ -44,6 +54,11 @@ msgstr ""
 msgid "Backup Failed"
 msgstr ""
 
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__backup_format
+msgid "Backup Format"
+msgstr ""
+
 #. module: auto_backup
 #: model:ir.actions.server,name:auto_backup.ir_cron_backup_scheduler_0_ir_actions_server
 #: model:ir.cron,cron_name:auto_backup.ir_cron_backup_scheduler_0
@@ -57,14 +72,14 @@ msgid "Backup Successful"
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.model.fields,help:auto_backup.field_db_backup_days_to_keep
+#: model:ir.model.fields,help:auto_backup.field_db_backup__days_to_keep
 msgid ""
 "Backups older than this will be deleted automatically. Set 0 to disable "
 "autodeletion."
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+#: model_terms:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
 msgid "Basic backup configuration"
 msgstr ""
 
@@ -74,35 +89,40 @@ msgid "Cannot duplicate a configuration."
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.model.fields,help:auto_backup.field_db_backup_method
+#: model:ir.model.fields,help:auto_backup.field_db_backup__backup_format
+msgid "Choose the format for this backup."
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,help:auto_backup.field_db_backup__method
 msgid "Choose the storage method for this backup."
 msgstr ""
 
 #. module: auto_backup
-#: code:addons/auto_backup/models/db_backup.py:249
+#: code:addons/auto_backup/models/db_backup.py:265
 #, python-format
 msgid "Cleanup of old database backups failed."
 msgstr ""
 
 #. module: auto_backup
-#: code:addons/auto_backup/models/db_backup.py:128
+#: code:addons/auto_backup/models/db_backup.py:137
 #, python-format
 msgid "Connection Test Failed!"
 msgstr ""
 
 #. module: auto_backup
-#: code:addons/auto_backup/models/db_backup.py:123
+#: code:addons/auto_backup/models/db_backup.py:132
 #, python-format
 msgid "Connection Test Succeeded!"
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup_create_uid
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__create_uid
 msgid "Created by"
 msgstr "??????????????"
 
 #. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup_create_date
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__create_date
 msgid "Created on"
 msgstr "???????????????? ??????????"
 
@@ -112,38 +132,38 @@ msgid "Database Backup"
 msgstr ""
 
 #. module: auto_backup
-#: code:addons/auto_backup/models/db_backup.py:203
+#: code:addons/auto_backup/models/db_backup.py:219
 #: model:mail.message.subtype,description:auto_backup.mail_message_subtype_failure
 #, python-format
 msgid "Database backup failed."
 msgstr ""
 
 #. module: auto_backup
-#: code:addons/auto_backup/models/db_backup.py:211
+#: code:addons/auto_backup/models/db_backup.py:227
 #: model:mail.message.subtype,description:auto_backup.mail_message_subtype_success
 #, python-format
 msgid "Database backup succeeded."
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup_days_to_keep
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__days_to_keep
 msgid "Days To Keep"
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup_display_name
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__display_name
 msgid "Display Name"
 msgstr "?????????????????? ??????"
 
 #. module: auto_backup
-#: code:addons/auto_backup/models/db_backup.py:114
+#: code:addons/auto_backup/models/db_backup.py:123
 #, python-format
 msgid ""
 "Do not save backups on your filestore, or you will backup your backups too!"
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+#: model_terms:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
 msgid "Execute backup"
 msgstr ""
 
@@ -153,17 +173,32 @@ msgid "Execute backup(s)"
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup_folder
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__folder
 msgid "Folder"
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__message_follower_ids
+msgid "Followers"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__message_channel_ids
+msgid "Followers (Channels)"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__message_partner_ids
+msgid "Followers (Partners)"
+msgstr ""
+
+#. module: auto_backup
+#: model_terms:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
 msgid "Go to Settings / Technical / Automation / Scheduled Actions."
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+#: model_terms:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
 msgid "Help"
 msgstr ""
 
@@ -173,22 +208,42 @@ msgid "I cannot remove backups from the future. Ask Doc for that."
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup_id
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__id
 msgid "ID"
 msgstr "ID"
 
 #. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup___last_update
+#: model:ir.model.fields,help:auto_backup.field_db_backup__message_unread
+msgid "If checked new messages require your attention."
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,help:auto_backup.field_db_backup__message_needaction
+msgid "If checked, new messages require your attention."
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,help:auto_backup.field_db_backup__message_has_error
+msgid "If checked, some messages have a delivery error."
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__message_is_follower
+msgid "Is Follower"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup____last_update
 msgid "Last Modified on"
 msgstr "?????????????? ???????????? ???????????? ??????????"
 
 #. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup_write_uid
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__write_uid
 msgid "Last Updated by"
 msgstr "?????????????? ???????????? ????????????"
 
 #. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup_write_date
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__write_date
 msgid "Last Updated on"
 msgstr "?????????????? ???????????? ???????????? ??????????"
 
@@ -198,24 +253,64 @@ msgid "Local disk"
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup_method
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__message_main_attachment_id
+msgid "Main Attachment"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__message_has_error
+msgid "Message Delivery error"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__message_ids
+msgid "Messages"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__method
 msgid "Method"
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup_name
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__name
 msgid "Name"
 msgstr "??????"
 
 #. module: auto_backup
-#: model:ir.model.fields,help:auto_backup.field_db_backup_sftp_private_key
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__message_needaction_counter
+msgid "Number of Actions"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__message_has_error_counter
+msgid "Number of error"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,help:auto_backup.field_db_backup__message_needaction_counter
+msgid "Number of messages which requires an action"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,help:auto_backup.field_db_backup__message_has_error_counter
+msgid "Number of messages with delivery error"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,help:auto_backup.field_db_backup__message_unread_counter
+msgid "Number of unread messages"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,help:auto_backup.field_db_backup__sftp_private_key
 msgid ""
 "Path to the private key file. Only the Odoo user should have read "
 "permissions for that file."
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup_sftp_private_key
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__sftp_private_key
 msgid "Private key location"
 msgstr ""
 
@@ -225,94 +320,124 @@ msgid "Remote SFTP server"
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup_sftp_password
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__sftp_password
 msgid "SFTP Password"
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup_sftp_port
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__sftp_port
 msgid "SFTP Port"
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup_sftp_host
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__sftp_host
 msgid "SFTP Server"
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+#: model_terms:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
 msgid "SFTP Settings"
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+#: model_terms:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
 msgid "Search the action named 'Backup scheduler'."
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+#: model_terms:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
 msgid ""
 "Set the scheduler to active and fill in how often you want backups generated."
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.model.fields,help:auto_backup.field_db_backup_name
+#: model:ir.model.fields,help:auto_backup.field_db_backup__name
 msgid "Summary of this backup process"
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+#: model_terms:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
 msgid "Test SFTP Connection"
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.model.fields,help:auto_backup.field_db_backup_sftp_host
+#: model:ir.model.fields,help:auto_backup.field_db_backup__sftp_host
 msgid ""
 "The host name or IP address from your remote server. For example 192.168.0.1"
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.model.fields,help:auto_backup.field_db_backup_sftp_password
+#: model:ir.model.fields,help:auto_backup.field_db_backup__sftp_password
 msgid ""
 "The password for the SFTP connection. If you specify a private key file, "
 "then this is the password to decrypt it."
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.model.fields,help:auto_backup.field_db_backup_sftp_port
+#: model:ir.model.fields,help:auto_backup.field_db_backup__sftp_port
 msgid "The port on the FTP server that accepts SSH/SFTP calls."
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.model.fields,help:auto_backup.field_db_backup_sftp_user
+#: model:ir.model.fields,help:auto_backup.field_db_backup__sftp_user
 msgid ""
 "The username where the SFTP connection should be made with. This is the user "
 "on the external server."
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__message_unread
+msgid "Unread Messages"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__message_unread_counter
+msgid "Unread Messages Counter"
+msgstr ""
+
+#. module: auto_backup
+#: model_terms:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
 msgid ""
 "Use SFTP with caution! This writes files to external servers under the path "
 "you specify."
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup_sftp_user
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__sftp_user
 msgid "Username in the SFTP Server"
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+#: model_terms:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
 msgid "Warning:"
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__website_message_ids
+msgid "Website Messages"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,help:auto_backup.field_db_backup__website_message_ids
+msgid "Website communication history"
+msgstr ""
+
+#. module: auto_backup
+#: model_terms:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
 msgid "john"
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+#: selection:db.backup,backup_format:0
+msgid "pg_dump custom format (without filestore)"
+msgstr ""
+
+#. module: auto_backup
+#: model_terms:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
 msgid "sftp.example.com"
 msgstr ""
+
+#. module: auto_backup
+#: selection:db.backup,backup_format:0
+msgid "zip (includes filestore)"
+msgstr ""
diff --git a/auto_backup/i18n/nb.po b/auto_backup/i18n/nb.po
index ff721290912..0eac6e9a82a 100644
--- a/auto_backup/i18n/nb.po
+++ b/auto_backup/i18n/nb.po
@@ -20,15 +20,25 @@ msgstr ""
 "Plural-Forms: nplurals=2; plural=(n != 1);\n"
 
 #. module: auto_backup
-#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+#: model_terms:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
 msgid "/home/odoo/.ssh/id_rsa"
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.model.fields,help:auto_backup.field_db_backup_folder
+#: model:ir.model.fields,help:auto_backup.field_db_backup__folder
 msgid "Absolute path for storing the backups"
 msgstr ""
 
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__message_needaction
+msgid "Action Needed"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__message_attachment_count
+msgid "Attachment Count"
+msgstr ""
+
 #. module: auto_backup
 #: model:ir.actions.act_window,name:auto_backup.action_backup_conf_form
 #: model:ir.ui.menu,name:auto_backup.backup_conf_menu
@@ -36,7 +46,7 @@ msgid "Automated Backups"
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+#: model_terms:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
 msgid "Automatic backups of the database can be scheduled as follows:"
 msgstr ""
 
@@ -45,6 +55,11 @@ msgstr ""
 msgid "Backup Failed"
 msgstr ""
 
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__backup_format
+msgid "Backup Format"
+msgstr ""
+
 #. module: auto_backup
 #: model:ir.actions.server,name:auto_backup.ir_cron_backup_scheduler_0_ir_actions_server
 #: model:ir.cron,cron_name:auto_backup.ir_cron_backup_scheduler_0
@@ -58,14 +73,14 @@ msgid "Backup Successful"
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.model.fields,help:auto_backup.field_db_backup_days_to_keep
+#: model:ir.model.fields,help:auto_backup.field_db_backup__days_to_keep
 msgid ""
 "Backups older than this will be deleted automatically. Set 0 to disable "
 "autodeletion."
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+#: model_terms:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
 msgid "Basic backup configuration"
 msgstr ""
 
@@ -75,35 +90,40 @@ msgid "Cannot duplicate a configuration."
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.model.fields,help:auto_backup.field_db_backup_method
+#: model:ir.model.fields,help:auto_backup.field_db_backup__backup_format
+msgid "Choose the format for this backup."
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,help:auto_backup.field_db_backup__method
 msgid "Choose the storage method for this backup."
 msgstr ""
 
 #. module: auto_backup
-#: code:addons/auto_backup/models/db_backup.py:249
+#: code:addons/auto_backup/models/db_backup.py:265
 #, python-format
 msgid "Cleanup of old database backups failed."
 msgstr ""
 
 #. module: auto_backup
-#: code:addons/auto_backup/models/db_backup.py:128
+#: code:addons/auto_backup/models/db_backup.py:137
 #, python-format
 msgid "Connection Test Failed!"
 msgstr ""
 
 #. module: auto_backup
-#: code:addons/auto_backup/models/db_backup.py:123
+#: code:addons/auto_backup/models/db_backup.py:132
 #, python-format
 msgid "Connection Test Succeeded!"
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup_create_uid
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__create_uid
 msgid "Created by"
 msgstr "Opprettet av"
 
 #. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup_create_date
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__create_date
 msgid "Created on"
 msgstr "Opprettet"
 
@@ -113,38 +133,38 @@ msgid "Database Backup"
 msgstr ""
 
 #. module: auto_backup
-#: code:addons/auto_backup/models/db_backup.py:203
+#: code:addons/auto_backup/models/db_backup.py:219
 #: model:mail.message.subtype,description:auto_backup.mail_message_subtype_failure
 #, python-format
 msgid "Database backup failed."
 msgstr ""
 
 #. module: auto_backup
-#: code:addons/auto_backup/models/db_backup.py:211
+#: code:addons/auto_backup/models/db_backup.py:227
 #: model:mail.message.subtype,description:auto_backup.mail_message_subtype_success
 #, python-format
 msgid "Database backup succeeded."
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup_days_to_keep
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__days_to_keep
 msgid "Days To Keep"
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup_display_name
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__display_name
 msgid "Display Name"
 msgstr "Visnings navn"
 
 #. module: auto_backup
-#: code:addons/auto_backup/models/db_backup.py:114
+#: code:addons/auto_backup/models/db_backup.py:123
 #, python-format
 msgid ""
 "Do not save backups on your filestore, or you will backup your backups too!"
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+#: model_terms:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
 msgid "Execute backup"
 msgstr ""
 
@@ -154,17 +174,32 @@ msgid "Execute backup(s)"
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup_folder
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__folder
 msgid "Folder"
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__message_follower_ids
+msgid "Followers"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__message_channel_ids
+msgid "Followers (Channels)"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__message_partner_ids
+msgid "Followers (Partners)"
+msgstr ""
+
+#. module: auto_backup
+#: model_terms:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
 msgid "Go to Settings / Technical / Automation / Scheduled Actions."
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+#: model_terms:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
 msgid "Help"
 msgstr ""
 
@@ -174,22 +209,42 @@ msgid "I cannot remove backups from the future. Ask Doc for that."
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup_id
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__id
 msgid "ID"
 msgstr "ID"
 
 #. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup___last_update
+#: model:ir.model.fields,help:auto_backup.field_db_backup__message_unread
+msgid "If checked new messages require your attention."
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,help:auto_backup.field_db_backup__message_needaction
+msgid "If checked, new messages require your attention."
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,help:auto_backup.field_db_backup__message_has_error
+msgid "If checked, some messages have a delivery error."
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__message_is_follower
+msgid "Is Follower"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup____last_update
 msgid "Last Modified on"
 msgstr "Sist oppdatert "
 
 #. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup_write_uid
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__write_uid
 msgid "Last Updated by"
 msgstr "Sist oppdatert av"
 
 #. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup_write_date
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__write_date
 msgid "Last Updated on"
 msgstr "Sist oppdatert"
 
@@ -199,24 +254,64 @@ msgid "Local disk"
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup_method
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__message_main_attachment_id
+msgid "Main Attachment"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__message_has_error
+msgid "Message Delivery error"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__message_ids
+msgid "Messages"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__method
 msgid "Method"
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup_name
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__name
 msgid "Name"
 msgstr "Navn"
 
 #. module: auto_backup
-#: model:ir.model.fields,help:auto_backup.field_db_backup_sftp_private_key
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__message_needaction_counter
+msgid "Number of Actions"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__message_has_error_counter
+msgid "Number of error"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,help:auto_backup.field_db_backup__message_needaction_counter
+msgid "Number of messages which requires an action"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,help:auto_backup.field_db_backup__message_has_error_counter
+msgid "Number of messages with delivery error"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,help:auto_backup.field_db_backup__message_unread_counter
+msgid "Number of unread messages"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,help:auto_backup.field_db_backup__sftp_private_key
 msgid ""
 "Path to the private key file. Only the Odoo user should have read "
 "permissions for that file."
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup_sftp_private_key
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__sftp_private_key
 msgid "Private key location"
 msgstr ""
 
@@ -226,94 +321,124 @@ msgid "Remote SFTP server"
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup_sftp_password
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__sftp_password
 msgid "SFTP Password"
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup_sftp_port
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__sftp_port
 msgid "SFTP Port"
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup_sftp_host
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__sftp_host
 msgid "SFTP Server"
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+#: model_terms:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
 msgid "SFTP Settings"
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+#: model_terms:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
 msgid "Search the action named 'Backup scheduler'."
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+#: model_terms:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
 msgid ""
 "Set the scheduler to active and fill in how often you want backups generated."
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.model.fields,help:auto_backup.field_db_backup_name
+#: model:ir.model.fields,help:auto_backup.field_db_backup__name
 msgid "Summary of this backup process"
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+#: model_terms:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
 msgid "Test SFTP Connection"
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.model.fields,help:auto_backup.field_db_backup_sftp_host
+#: model:ir.model.fields,help:auto_backup.field_db_backup__sftp_host
 msgid ""
 "The host name or IP address from your remote server. For example 192.168.0.1"
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.model.fields,help:auto_backup.field_db_backup_sftp_password
+#: model:ir.model.fields,help:auto_backup.field_db_backup__sftp_password
 msgid ""
 "The password for the SFTP connection. If you specify a private key file, "
 "then this is the password to decrypt it."
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.model.fields,help:auto_backup.field_db_backup_sftp_port
+#: model:ir.model.fields,help:auto_backup.field_db_backup__sftp_port
 msgid "The port on the FTP server that accepts SSH/SFTP calls."
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.model.fields,help:auto_backup.field_db_backup_sftp_user
+#: model:ir.model.fields,help:auto_backup.field_db_backup__sftp_user
 msgid ""
 "The username where the SFTP connection should be made with. This is the user "
 "on the external server."
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__message_unread
+msgid "Unread Messages"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__message_unread_counter
+msgid "Unread Messages Counter"
+msgstr ""
+
+#. module: auto_backup
+#: model_terms:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
 msgid ""
 "Use SFTP with caution! This writes files to external servers under the path "
 "you specify."
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup_sftp_user
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__sftp_user
 msgid "Username in the SFTP Server"
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+#: model_terms:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
 msgid "Warning:"
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__website_message_ids
+msgid "Website Messages"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,help:auto_backup.field_db_backup__website_message_ids
+msgid "Website communication history"
+msgstr ""
+
+#. module: auto_backup
+#: model_terms:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
 msgid "john"
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+#: selection:db.backup,backup_format:0
+msgid "pg_dump custom format (without filestore)"
+msgstr ""
+
+#. module: auto_backup
+#: model_terms:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
 msgid "sftp.example.com"
 msgstr ""
+
+#. module: auto_backup
+#: selection:db.backup,backup_format:0
+msgid "zip (includes filestore)"
+msgstr ""
diff --git a/auto_backup/i18n/nb_NO.po b/auto_backup/i18n/nb_NO.po
index 0888de80920..cbe4de4bc06 100644
--- a/auto_backup/i18n/nb_NO.po
+++ b/auto_backup/i18n/nb_NO.po
@@ -20,15 +20,25 @@ msgstr ""
 "Plural-Forms: nplurals=2; plural=(n != 1);\n"
 
 #. module: auto_backup
-#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+#: model_terms:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
 msgid "/home/odoo/.ssh/id_rsa"
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.model.fields,help:auto_backup.field_db_backup_folder
+#: model:ir.model.fields,help:auto_backup.field_db_backup__folder
 msgid "Absolute path for storing the backups"
 msgstr ""
 
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__message_needaction
+msgid "Action Needed"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__message_attachment_count
+msgid "Attachment Count"
+msgstr ""
+
 #. module: auto_backup
 #: model:ir.actions.act_window,name:auto_backup.action_backup_conf_form
 #: model:ir.ui.menu,name:auto_backup.backup_conf_menu
@@ -36,7 +46,7 @@ msgid "Automated Backups"
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+#: model_terms:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
 msgid "Automatic backups of the database can be scheduled as follows:"
 msgstr ""
 
@@ -45,6 +55,11 @@ msgstr ""
 msgid "Backup Failed"
 msgstr ""
 
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__backup_format
+msgid "Backup Format"
+msgstr ""
+
 #. module: auto_backup
 #: model:ir.actions.server,name:auto_backup.ir_cron_backup_scheduler_0_ir_actions_server
 #: model:ir.cron,cron_name:auto_backup.ir_cron_backup_scheduler_0
@@ -58,14 +73,14 @@ msgid "Backup Successful"
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.model.fields,help:auto_backup.field_db_backup_days_to_keep
+#: model:ir.model.fields,help:auto_backup.field_db_backup__days_to_keep
 msgid ""
 "Backups older than this will be deleted automatically. Set 0 to disable "
 "autodeletion."
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+#: model_terms:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
 msgid "Basic backup configuration"
 msgstr ""
 
@@ -75,35 +90,40 @@ msgid "Cannot duplicate a configuration."
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.model.fields,help:auto_backup.field_db_backup_method
+#: model:ir.model.fields,help:auto_backup.field_db_backup__backup_format
+msgid "Choose the format for this backup."
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,help:auto_backup.field_db_backup__method
 msgid "Choose the storage method for this backup."
 msgstr ""
 
 #. module: auto_backup
-#: code:addons/auto_backup/models/db_backup.py:249
+#: code:addons/auto_backup/models/db_backup.py:265
 #, python-format
 msgid "Cleanup of old database backups failed."
 msgstr ""
 
 #. module: auto_backup
-#: code:addons/auto_backup/models/db_backup.py:128
+#: code:addons/auto_backup/models/db_backup.py:137
 #, python-format
 msgid "Connection Test Failed!"
 msgstr ""
 
 #. module: auto_backup
-#: code:addons/auto_backup/models/db_backup.py:123
+#: code:addons/auto_backup/models/db_backup.py:132
 #, python-format
 msgid "Connection Test Succeeded!"
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup_create_uid
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__create_uid
 msgid "Created by"
 msgstr "Laget av"
 
 #. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup_create_date
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__create_date
 msgid "Created on"
 msgstr "Laget den"
 
@@ -113,38 +133,38 @@ msgid "Database Backup"
 msgstr ""
 
 #. module: auto_backup
-#: code:addons/auto_backup/models/db_backup.py:203
+#: code:addons/auto_backup/models/db_backup.py:219
 #: model:mail.message.subtype,description:auto_backup.mail_message_subtype_failure
 #, python-format
 msgid "Database backup failed."
 msgstr ""
 
 #. module: auto_backup
-#: code:addons/auto_backup/models/db_backup.py:211
+#: code:addons/auto_backup/models/db_backup.py:227
 #: model:mail.message.subtype,description:auto_backup.mail_message_subtype_success
 #, python-format
 msgid "Database backup succeeded."
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup_days_to_keep
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__days_to_keep
 msgid "Days To Keep"
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup_display_name
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__display_name
 msgid "Display Name"
 msgstr "Vis navn"
 
 #. module: auto_backup
-#: code:addons/auto_backup/models/db_backup.py:114
+#: code:addons/auto_backup/models/db_backup.py:123
 #, python-format
 msgid ""
 "Do not save backups on your filestore, or you will backup your backups too!"
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+#: model_terms:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
 msgid "Execute backup"
 msgstr ""
 
@@ -154,17 +174,32 @@ msgid "Execute backup(s)"
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup_folder
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__folder
 msgid "Folder"
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__message_follower_ids
+msgid "Followers"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__message_channel_ids
+msgid "Followers (Channels)"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__message_partner_ids
+msgid "Followers (Partners)"
+msgstr ""
+
+#. module: auto_backup
+#: model_terms:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
 msgid "Go to Settings / Technical / Automation / Scheduled Actions."
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+#: model_terms:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
 msgid "Help"
 msgstr ""
 
@@ -174,22 +209,42 @@ msgid "I cannot remove backups from the future. Ask Doc for that."
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup_id
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__id
 msgid "ID"
 msgstr "ID"
 
 #. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup___last_update
+#: model:ir.model.fields,help:auto_backup.field_db_backup__message_unread
+msgid "If checked new messages require your attention."
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,help:auto_backup.field_db_backup__message_needaction
+msgid "If checked, new messages require your attention."
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,help:auto_backup.field_db_backup__message_has_error
+msgid "If checked, some messages have a delivery error."
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__message_is_follower
+msgid "Is Follower"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup____last_update
 msgid "Last Modified on"
 msgstr "Sist endret den"
 
 #. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup_write_uid
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__write_uid
 msgid "Last Updated by"
 msgstr "Sist oppdatert av"
 
 #. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup_write_date
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__write_date
 msgid "Last Updated on"
 msgstr "Sist oppdatert den"
 
@@ -199,24 +254,64 @@ msgid "Local disk"
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup_method
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__message_main_attachment_id
+msgid "Main Attachment"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__message_has_error
+msgid "Message Delivery error"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__message_ids
+msgid "Messages"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__method
 msgid "Method"
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup_name
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__name
 msgid "Name"
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.model.fields,help:auto_backup.field_db_backup_sftp_private_key
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__message_needaction_counter
+msgid "Number of Actions"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__message_has_error_counter
+msgid "Number of error"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,help:auto_backup.field_db_backup__message_needaction_counter
+msgid "Number of messages which requires an action"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,help:auto_backup.field_db_backup__message_has_error_counter
+msgid "Number of messages with delivery error"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,help:auto_backup.field_db_backup__message_unread_counter
+msgid "Number of unread messages"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,help:auto_backup.field_db_backup__sftp_private_key
 msgid ""
 "Path to the private key file. Only the Odoo user should have read "
 "permissions for that file."
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup_sftp_private_key
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__sftp_private_key
 msgid "Private key location"
 msgstr ""
 
@@ -226,94 +321,124 @@ msgid "Remote SFTP server"
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup_sftp_password
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__sftp_password
 msgid "SFTP Password"
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup_sftp_port
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__sftp_port
 msgid "SFTP Port"
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup_sftp_host
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__sftp_host
 msgid "SFTP Server"
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+#: model_terms:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
 msgid "SFTP Settings"
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+#: model_terms:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
 msgid "Search the action named 'Backup scheduler'."
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+#: model_terms:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
 msgid ""
 "Set the scheduler to active and fill in how often you want backups generated."
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.model.fields,help:auto_backup.field_db_backup_name
+#: model:ir.model.fields,help:auto_backup.field_db_backup__name
 msgid "Summary of this backup process"
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+#: model_terms:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
 msgid "Test SFTP Connection"
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.model.fields,help:auto_backup.field_db_backup_sftp_host
+#: model:ir.model.fields,help:auto_backup.field_db_backup__sftp_host
 msgid ""
 "The host name or IP address from your remote server. For example 192.168.0.1"
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.model.fields,help:auto_backup.field_db_backup_sftp_password
+#: model:ir.model.fields,help:auto_backup.field_db_backup__sftp_password
 msgid ""
 "The password for the SFTP connection. If you specify a private key file, "
 "then this is the password to decrypt it."
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.model.fields,help:auto_backup.field_db_backup_sftp_port
+#: model:ir.model.fields,help:auto_backup.field_db_backup__sftp_port
 msgid "The port on the FTP server that accepts SSH/SFTP calls."
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.model.fields,help:auto_backup.field_db_backup_sftp_user
+#: model:ir.model.fields,help:auto_backup.field_db_backup__sftp_user
 msgid ""
 "The username where the SFTP connection should be made with. This is the user "
 "on the external server."
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__message_unread
+msgid "Unread Messages"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__message_unread_counter
+msgid "Unread Messages Counter"
+msgstr ""
+
+#. module: auto_backup
+#: model_terms:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
 msgid ""
 "Use SFTP with caution! This writes files to external servers under the path "
 "you specify."
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup_sftp_user
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__sftp_user
 msgid "Username in the SFTP Server"
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+#: model_terms:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
 msgid "Warning:"
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__website_message_ids
+msgid "Website Messages"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,help:auto_backup.field_db_backup__website_message_ids
+msgid "Website communication history"
+msgstr ""
+
+#. module: auto_backup
+#: model_terms:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
 msgid "john"
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+#: selection:db.backup,backup_format:0
+msgid "pg_dump custom format (without filestore)"
+msgstr ""
+
+#. module: auto_backup
+#: model_terms:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
 msgid "sftp.example.com"
 msgstr ""
+
+#. module: auto_backup
+#: selection:db.backup,backup_format:0
+msgid "zip (includes filestore)"
+msgstr ""
diff --git a/auto_backup/i18n/nl.po b/auto_backup/i18n/nl.po
index ec5d47ceee4..c1700ebfc9e 100644
--- a/auto_backup/i18n/nl.po
+++ b/auto_backup/i18n/nl.po
@@ -18,15 +18,25 @@ msgstr ""
 "X-Generator: Weblate 3.0.1\n"
 
 #. module: auto_backup
-#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+#: model_terms:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
 msgid "/home/odoo/.ssh/id_rsa"
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.model.fields,help:auto_backup.field_db_backup_folder
+#: model:ir.model.fields,help:auto_backup.field_db_backup__folder
 msgid "Absolute path for storing the backups"
 msgstr "Absoluut pad om backups te bewaren"
 
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__message_needaction
+msgid "Action Needed"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__message_attachment_count
+msgid "Attachment Count"
+msgstr ""
+
 #. module: auto_backup
 #: model:ir.actions.act_window,name:auto_backup.action_backup_conf_form
 #: model:ir.ui.menu,name:auto_backup.backup_conf_menu
@@ -34,15 +44,23 @@ msgid "Automated Backups"
 msgstr "Automatische backups"
 
 #. module: auto_backup
-#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+#: model_terms:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
 msgid "Automatic backups of the database can be scheduled as follows:"
-msgstr "Automatische backups van de database kunnen ingepland worden als volgt:"
+msgstr ""
+"Automatische backups van de database kunnen ingepland worden als volgt:"
 
 #. module: auto_backup
 #: model:mail.message.subtype,name:auto_backup.mail_message_subtype_failure
 msgid "Backup Failed"
 msgstr "Backup mislukt"
 
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__backup_format
+#, fuzzy
+#| msgid "Backup Failed"
+msgid "Backup Format"
+msgstr "Backup mislukt"
+
 #. module: auto_backup
 #: model:ir.actions.server,name:auto_backup.ir_cron_backup_scheduler_0_ir_actions_server
 #: model:ir.cron,cron_name:auto_backup.ir_cron_backup_scheduler_0
@@ -56,7 +74,7 @@ msgid "Backup Successful"
 msgstr "Backup geslaagd"
 
 #. module: auto_backup
-#: model:ir.model.fields,help:auto_backup.field_db_backup_days_to_keep
+#: model:ir.model.fields,help:auto_backup.field_db_backup__days_to_keep
 msgid ""
 "Backups older than this will be deleted automatically. Set 0 to disable "
 "autodeletion."
@@ -65,7 +83,7 @@ msgstr ""
 "0 om niets te verwijderen."
 
 #. module: auto_backup
-#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+#: model_terms:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
 msgid "Basic backup configuration"
 msgstr "Basis backup configuratie"
 
@@ -75,35 +93,42 @@ msgid "Cannot duplicate a configuration."
 msgstr "Kan een configuratie niet dupliceren."
 
 #. module: auto_backup
-#: model:ir.model.fields,help:auto_backup.field_db_backup_method
+#: model:ir.model.fields,help:auto_backup.field_db_backup__backup_format
+#, fuzzy
+#| msgid "Choose the storage method for this backup."
+msgid "Choose the format for this backup."
+msgstr "Kies een opslag methode voor deze backup."
+
+#. module: auto_backup
+#: model:ir.model.fields,help:auto_backup.field_db_backup__method
 msgid "Choose the storage method for this backup."
 msgstr "Kies een opslag methode voor deze backup."
 
 #. module: auto_backup
-#: code:addons/auto_backup/models/db_backup.py:249
+#: code:addons/auto_backup/models/db_backup.py:265
 #, python-format
 msgid "Cleanup of old database backups failed."
 msgstr "Opruimen oude database backups is mislukt."
 
 #. module: auto_backup
-#: code:addons/auto_backup/models/db_backup.py:128
+#: code:addons/auto_backup/models/db_backup.py:137
 #, python-format
 msgid "Connection Test Failed!"
 msgstr "Connectie test mislukt!"
 
 #. module: auto_backup
-#: code:addons/auto_backup/models/db_backup.py:123
+#: code:addons/auto_backup/models/db_backup.py:132
 #, python-format
 msgid "Connection Test Succeeded!"
 msgstr "Connectie test geslaagd!"
 
 #. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup_create_uid
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__create_uid
 msgid "Created by"
 msgstr "Gemaakt door"
 
 #. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup_create_date
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__create_date
 msgid "Created on"
 msgstr "Gemaakt op"
 
@@ -113,38 +138,38 @@ msgid "Database Backup"
 msgstr "Database backup"
 
 #. module: auto_backup
-#: code:addons/auto_backup/models/db_backup.py:203
+#: code:addons/auto_backup/models/db_backup.py:219
 #: model:mail.message.subtype,description:auto_backup.mail_message_subtype_failure
 #, python-format
 msgid "Database backup failed."
 msgstr "Database backup mislukt."
 
 #. module: auto_backup
-#: code:addons/auto_backup/models/db_backup.py:211
+#: code:addons/auto_backup/models/db_backup.py:227
 #: model:mail.message.subtype,description:auto_backup.mail_message_subtype_success
 #, python-format
 msgid "Database backup succeeded."
 msgstr "Database backup geslaagd."
 
 #. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup_days_to_keep
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__days_to_keep
 msgid "Days To Keep"
 msgstr "Aantal dagen te houden"
 
 #. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup_display_name
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__display_name
 msgid "Display Name"
 msgstr "Weergave naam"
 
 #. module: auto_backup
-#: code:addons/auto_backup/models/db_backup.py:114
+#: code:addons/auto_backup/models/db_backup.py:123
 #, python-format
 msgid ""
 "Do not save backups on your filestore, or you will backup your backups too!"
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+#: model_terms:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
 msgid "Execute backup"
 msgstr ""
 
@@ -154,17 +179,32 @@ msgid "Execute backup(s)"
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup_folder
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__folder
 msgid "Folder"
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__message_follower_ids
+msgid "Followers"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__message_channel_ids
+msgid "Followers (Channels)"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__message_partner_ids
+msgid "Followers (Partners)"
+msgstr ""
+
+#. module: auto_backup
+#: model_terms:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
 msgid "Go to Settings / Technical / Automation / Scheduled Actions."
 msgstr "Ga naar Instellingen / Technsich / Automatisering / Geplande acties"
 
 #. module: auto_backup
-#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+#: model_terms:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
 msgid "Help"
 msgstr "Help"
 
@@ -174,22 +214,42 @@ msgid "I cannot remove backups from the future. Ask Doc for that."
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup_id
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__id
 msgid "ID"
 msgstr "ID"
 
 #. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup___last_update
+#: model:ir.model.fields,help:auto_backup.field_db_backup__message_unread
+msgid "If checked new messages require your attention."
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,help:auto_backup.field_db_backup__message_needaction
+msgid "If checked, new messages require your attention."
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,help:auto_backup.field_db_backup__message_has_error
+msgid "If checked, some messages have a delivery error."
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__message_is_follower
+msgid "Is Follower"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup____last_update
 msgid "Last Modified on"
 msgstr "Laatst bijgewerkt op"
 
 #. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup_write_uid
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__write_uid
 msgid "Last Updated by"
 msgstr "Laatst bijgewerkt door"
 
 #. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup_write_date
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__write_date
 msgid "Last Updated on"
 msgstr "Laatst bijgewerkt op"
 
@@ -199,24 +259,64 @@ msgid "Local disk"
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup_method
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__message_main_attachment_id
+msgid "Main Attachment"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__message_has_error
+msgid "Message Delivery error"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__message_ids
+msgid "Messages"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__method
 msgid "Method"
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup_name
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__name
 msgid "Name"
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.model.fields,help:auto_backup.field_db_backup_sftp_private_key
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__message_needaction_counter
+msgid "Number of Actions"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__message_has_error_counter
+msgid "Number of error"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,help:auto_backup.field_db_backup__message_needaction_counter
+msgid "Number of messages which requires an action"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,help:auto_backup.field_db_backup__message_has_error_counter
+msgid "Number of messages with delivery error"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,help:auto_backup.field_db_backup__message_unread_counter
+msgid "Number of unread messages"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,help:auto_backup.field_db_backup__sftp_private_key
 msgid ""
 "Path to the private key file. Only the Odoo user should have read "
 "permissions for that file."
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup_sftp_private_key
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__sftp_private_key
 msgid "Private key location"
 msgstr ""
 
@@ -226,55 +326,55 @@ msgid "Remote SFTP server"
 msgstr "Gebruikersnaam SFTP Server"
 
 #. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup_sftp_password
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__sftp_password
 msgid "SFTP Password"
 msgstr "SFTP poort"
 
 #. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup_sftp_port
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__sftp_port
 msgid "SFTP Port"
 msgstr "SFTP poort"
 
 #. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup_sftp_host
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__sftp_host
 msgid "SFTP Server"
 msgstr "Gebruikersnaam SFTP Server"
 
 #. module: auto_backup
-#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+#: model_terms:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
 msgid "SFTP Settings"
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+#: model_terms:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
 msgid "Search the action named 'Backup scheduler'."
 msgstr "Zoek de actie genaamd 'Backup scheduler'."
 
 #. module: auto_backup
-#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+#: model_terms:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
 msgid ""
 "Set the scheduler to active and fill in how often you want backups generated."
 msgstr ""
 "Zet de planner op actief en vul in hoe vaak de backup moet gemaakt worden."
 
 #. module: auto_backup
-#: model:ir.model.fields,help:auto_backup.field_db_backup_name
+#: model:ir.model.fields,help:auto_backup.field_db_backup__name
 msgid "Summary of this backup process"
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+#: model_terms:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
 msgid "Test SFTP Connection"
 msgstr "Test SFTP Connectie"
 
 #. module: auto_backup
-#: model:ir.model.fields,help:auto_backup.field_db_backup_sftp_host
+#: model:ir.model.fields,help:auto_backup.field_db_backup__sftp_host
 msgid ""
 "The host name or IP address from your remote server. For example 192.168.0.1"
 msgstr "Het IP adres van uw externe server. Bijvoorbeeld: 192.168.0.1"
 
 #. module: auto_backup
-#: model:ir.model.fields,help:auto_backup.field_db_backup_sftp_password
+#: model:ir.model.fields,help:auto_backup.field_db_backup__sftp_password
 msgid ""
 "The password for the SFTP connection. If you specify a private key file, "
 "then this is the password to decrypt it."
@@ -283,12 +383,12 @@ msgstr ""
 "worden. Dit is het wachtwoord van de gebruiker op de externe server."
 
 #. module: auto_backup
-#: model:ir.model.fields,help:auto_backup.field_db_backup_sftp_port
+#: model:ir.model.fields,help:auto_backup.field_db_backup__sftp_port
 msgid "The port on the FTP server that accepts SSH/SFTP calls."
 msgstr "De poort op de FTP server die SSH/SFTP accepteert."
 
 #. module: auto_backup
-#: model:ir.model.fields,help:auto_backup.field_db_backup_sftp_user
+#: model:ir.model.fields,help:auto_backup.field_db_backup__sftp_user
 msgid ""
 "The username where the SFTP connection should be made with. This is the user "
 "on the external server."
@@ -297,7 +397,17 @@ msgstr ""
 "gebruiker op de externe server."
 
 #. module: auto_backup
-#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__message_unread
+msgid "Unread Messages"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__message_unread_counter
+msgid "Unread Messages Counter"
+msgstr ""
+
+#. module: auto_backup
+#: model_terms:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
 msgid ""
 "Use SFTP with caution! This writes files to external servers under the path "
 "you specify."
@@ -306,22 +416,41 @@ msgstr ""
 "het pad dat u opgeeft."
 
 #. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup_sftp_user
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__sftp_user
 msgid "Username in the SFTP Server"
 msgstr "Gebruikersnaam SFTP Server"
 
 #. module: auto_backup
-#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+#: model_terms:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
 msgid "Warning:"
 msgstr "Waarschuwing:"
 
 #. module: auto_backup
-#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__website_message_ids
+msgid "Website Messages"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,help:auto_backup.field_db_backup__website_message_ids
+msgid "Website communication history"
+msgstr ""
+
+#. module: auto_backup
+#: model_terms:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
 msgid "john"
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+#: selection:db.backup,backup_format:0
+msgid "pg_dump custom format (without filestore)"
+msgstr ""
+
+#. module: auto_backup
+#: model_terms:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
 msgid "sftp.example.com"
 msgstr ""
 
+#. module: auto_backup
+#: selection:db.backup,backup_format:0
+msgid "zip (includes filestore)"
+msgstr ""
diff --git a/auto_backup/i18n/nl_BE.po b/auto_backup/i18n/nl_BE.po
index 661db9dc3b6..6d8e728fd88 100644
--- a/auto_backup/i18n/nl_BE.po
+++ b/auto_backup/i18n/nl_BE.po
@@ -17,15 +17,25 @@ msgstr ""
 "Plural-Forms: \n"
 
 #. module: auto_backup
-#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+#: model_terms:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
 msgid "/home/odoo/.ssh/id_rsa"
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.model.fields,help:auto_backup.field_db_backup_folder
+#: model:ir.model.fields,help:auto_backup.field_db_backup__folder
 msgid "Absolute path for storing the backups"
 msgstr "Absoluut pad om backups te bewaren"
 
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__message_needaction
+msgid "Action Needed"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__message_attachment_count
+msgid "Attachment Count"
+msgstr ""
+
 #. module: auto_backup
 #: model:ir.actions.act_window,name:auto_backup.action_backup_conf_form
 #: model:ir.ui.menu,name:auto_backup.backup_conf_menu
@@ -34,7 +44,7 @@ msgid "Automated Backups"
 msgstr "Auto. backups verwijderen"
 
 #. module: auto_backup
-#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+#: model_terms:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
 msgid "Automatic backups of the database can be scheduled as follows:"
 msgstr ""
 "Automatische backups van de database kunnen als volgend gepland worden:"
@@ -45,6 +55,12 @@ msgstr ""
 msgid "Backup Failed"
 msgstr "Backup folder"
 
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__backup_format
+#, fuzzy
+msgid "Backup Format"
+msgstr "Backup folder"
+
 #. module: auto_backup
 #: model:ir.actions.server,name:auto_backup.ir_cron_backup_scheduler_0_ir_actions_server
 #: model:ir.cron,cron_name:auto_backup.ir_cron_backup_scheduler_0
@@ -58,14 +74,14 @@ msgid "Backup Successful"
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.model.fields,help:auto_backup.field_db_backup_days_to_keep
+#: model:ir.model.fields,help:auto_backup.field_db_backup__days_to_keep
 msgid ""
 "Backups older than this will be deleted automatically. Set 0 to disable "
 "autodeletion."
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+#: model_terms:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
 #, fuzzy
 msgid "Basic backup configuration"
 msgstr "Lokale backup configuratie"
@@ -77,35 +93,42 @@ msgid "Cannot duplicate a configuration."
 msgstr "Lokale backup configuratie"
 
 #. module: auto_backup
-#: model:ir.model.fields,help:auto_backup.field_db_backup_method
+#: model:ir.model.fields,help:auto_backup.field_db_backup__backup_format
+#, fuzzy
+#| msgid "Absolute path for storing the backups"
+msgid "Choose the format for this backup."
+msgstr "Absoluut pad om backups te bewaren"
+
+#. module: auto_backup
+#: model:ir.model.fields,help:auto_backup.field_db_backup__method
 msgid "Choose the storage method for this backup."
 msgstr ""
 
 #. module: auto_backup
-#: code:addons/auto_backup/models/db_backup.py:249
+#: code:addons/auto_backup/models/db_backup.py:265
 #, python-format
 msgid "Cleanup of old database backups failed."
 msgstr ""
 
 #. module: auto_backup
-#: code:addons/auto_backup/models/db_backup.py:128
+#: code:addons/auto_backup/models/db_backup.py:137
 #, python-format
 msgid "Connection Test Failed!"
 msgstr ""
 
 #. module: auto_backup
-#: code:addons/auto_backup/models/db_backup.py:123
+#: code:addons/auto_backup/models/db_backup.py:132
 #, python-format
 msgid "Connection Test Succeeded!"
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup_create_uid
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__create_uid
 msgid "Created by"
 msgstr "Gemaakt door"
 
 #. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup_create_date
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__create_date
 msgid "Created on"
 msgstr "Gemaakt op"
 
@@ -116,38 +139,38 @@ msgid "Database Backup"
 msgstr "Database"
 
 #. module: auto_backup
-#: code:addons/auto_backup/models/db_backup.py:203
+#: code:addons/auto_backup/models/db_backup.py:219
 #: model:mail.message.subtype,description:auto_backup.mail_message_subtype_failure
 #, python-format
 msgid "Database backup failed."
 msgstr ""
 
 #. module: auto_backup
-#: code:addons/auto_backup/models/db_backup.py:211
+#: code:addons/auto_backup/models/db_backup.py:227
 #: model:mail.message.subtype,description:auto_backup.mail_message_subtype_success
 #, python-format
 msgid "Database backup succeeded."
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup_days_to_keep
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__days_to_keep
 msgid "Days To Keep"
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup_display_name
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__display_name
 msgid "Display Name"
 msgstr ""
 
 #. module: auto_backup
-#: code:addons/auto_backup/models/db_backup.py:114
+#: code:addons/auto_backup/models/db_backup.py:123
 #, python-format
 msgid ""
 "Do not save backups on your filestore, or you will backup your backups too!"
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+#: model_terms:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
 msgid "Execute backup"
 msgstr ""
 
@@ -157,17 +180,32 @@ msgid "Execute backup(s)"
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup_folder
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__folder
 msgid "Folder"
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__message_follower_ids
+msgid "Followers"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__message_channel_ids
+msgid "Followers (Channels)"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__message_partner_ids
+msgid "Followers (Partners)"
+msgstr ""
+
+#. module: auto_backup
+#: model_terms:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
 msgid "Go to Settings / Technical / Automation / Scheduled Actions."
 msgstr "Ga naar Instellingen / Technsich / Automatisering / Geplande acties"
 
 #. module: auto_backup
-#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+#: model_terms:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
 msgid "Help"
 msgstr "Help"
 
@@ -177,23 +215,43 @@ msgid "I cannot remove backups from the future. Ask Doc for that."
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup_id
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__id
 msgid "ID"
 msgstr "ID"
 
 #. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup___last_update
+#: model:ir.model.fields,help:auto_backup.field_db_backup__message_unread
+msgid "If checked new messages require your attention."
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,help:auto_backup.field_db_backup__message_needaction
+msgid "If checked, new messages require your attention."
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,help:auto_backup.field_db_backup__message_has_error
+msgid "If checked, some messages have a delivery error."
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__message_is_follower
+msgid "Is Follower"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup____last_update
 #, fuzzy
 msgid "Last Modified on"
 msgstr "Laatst bijgewerkt op"
 
 #. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup_write_uid
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__write_uid
 msgid "Last Updated by"
 msgstr "Laatst bijgewerkt door"
 
 #. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup_write_date
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__write_date
 msgid "Last Updated on"
 msgstr "Laatst bijgewerkt op"
 
@@ -203,24 +261,64 @@ msgid "Local disk"
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup_method
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__message_main_attachment_id
+msgid "Main Attachment"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__message_has_error
+msgid "Message Delivery error"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__message_ids
+msgid "Messages"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__method
 msgid "Method"
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup_name
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__name
 msgid "Name"
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.model.fields,help:auto_backup.field_db_backup_sftp_private_key
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__message_needaction_counter
+msgid "Number of Actions"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__message_has_error_counter
+msgid "Number of error"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,help:auto_backup.field_db_backup__message_needaction_counter
+msgid "Number of messages which requires an action"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,help:auto_backup.field_db_backup__message_has_error_counter
+msgid "Number of messages with delivery error"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,help:auto_backup.field_db_backup__message_unread_counter
+msgid "Number of unread messages"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,help:auto_backup.field_db_backup__sftp_private_key
 msgid ""
 "Path to the private key file. Only the Odoo user should have read "
 "permissions for that file."
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup_sftp_private_key
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__sftp_private_key
 msgid "Private key location"
 msgstr ""
 
@@ -231,58 +329,58 @@ msgid "Remote SFTP server"
 msgstr "Gebruikersnaam SFTP Server"
 
 #. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup_sftp_password
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__sftp_password
 #, fuzzy
 msgid "SFTP Password"
 msgstr "SFTP poort"
 
 #. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup_sftp_port
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__sftp_port
 msgid "SFTP Port"
 msgstr "SFTP poort"
 
 #. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup_sftp_host
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__sftp_host
 #, fuzzy
 msgid "SFTP Server"
 msgstr "Gebruikersnaam SFTP Server"
 
 #. module: auto_backup
-#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+#: model_terms:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
 msgid "SFTP Settings"
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+#: model_terms:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
 msgid "Search the action named 'Backup scheduler'."
 msgstr "Zoek de actie genaamd 'Backup scheduler'."
 
 #. module: auto_backup
-#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+#: model_terms:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
 msgid ""
 "Set the scheduler to active and fill in how often you want backups generated."
 msgstr ""
 "Zet de planner op actief en vul in hoe vaak de backup moet gemaakt worden."
 
 #. module: auto_backup
-#: model:ir.model.fields,help:auto_backup.field_db_backup_name
+#: model:ir.model.fields,help:auto_backup.field_db_backup__name
 msgid "Summary of this backup process"
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+#: model_terms:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
 msgid "Test SFTP Connection"
 msgstr "Test SFTP Connectie"
 
 #. module: auto_backup
-#: model:ir.model.fields,help:auto_backup.field_db_backup_sftp_host
+#: model:ir.model.fields,help:auto_backup.field_db_backup__sftp_host
 #, fuzzy
 msgid ""
 "The host name or IP address from your remote server. For example 192.168.0.1"
 msgstr "Het IP adres van uw externe server. Bijvoorbeeld: 192.168.0.1"
 
 #. module: auto_backup
-#: model:ir.model.fields,help:auto_backup.field_db_backup_sftp_password
+#: model:ir.model.fields,help:auto_backup.field_db_backup__sftp_password
 #, fuzzy
 msgid ""
 "The password for the SFTP connection. If you specify a private key file, "
@@ -292,12 +390,12 @@ msgstr ""
 "worden. Dit is het wachtwoord van de gebruiker op de externe server."
 
 #. module: auto_backup
-#: model:ir.model.fields,help:auto_backup.field_db_backup_sftp_port
+#: model:ir.model.fields,help:auto_backup.field_db_backup__sftp_port
 msgid "The port on the FTP server that accepts SSH/SFTP calls."
 msgstr "De poort op de FTP server die SSH/SFTP accepteert."
 
 #. module: auto_backup
-#: model:ir.model.fields,help:auto_backup.field_db_backup_sftp_user
+#: model:ir.model.fields,help:auto_backup.field_db_backup__sftp_user
 msgid ""
 "The username where the SFTP connection should be made with. This is the user "
 "on the external server."
@@ -306,7 +404,17 @@ msgstr ""
 "gebruiker op de externe server."
 
 #. module: auto_backup
-#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__message_unread
+msgid "Unread Messages"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__message_unread_counter
+msgid "Unread Messages Counter"
+msgstr ""
+
+#. module: auto_backup
+#: model_terms:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
 msgid ""
 "Use SFTP with caution! This writes files to external servers under the path "
 "you specify."
@@ -315,26 +423,46 @@ msgstr ""
 "het pad dat u opgeeft."
 
 #. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup_sftp_user
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__sftp_user
 #, fuzzy
 msgid "Username in the SFTP Server"
 msgstr "Gebruikersnaam SFTP Server"
 
 #. module: auto_backup
-#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+#: model_terms:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
 msgid "Warning:"
 msgstr "Waarschuwing:"
 
 #. module: auto_backup
-#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__website_message_ids
+msgid "Website Messages"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,help:auto_backup.field_db_backup__website_message_ids
+msgid "Website communication history"
+msgstr ""
+
+#. module: auto_backup
+#: model_terms:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
 msgid "john"
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+#: selection:db.backup,backup_format:0
+msgid "pg_dump custom format (without filestore)"
+msgstr ""
+
+#. module: auto_backup
+#: model_terms:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
 msgid "sftp.example.com"
 msgstr ""
 
+#. module: auto_backup
+#: selection:db.backup,backup_format:0
+msgid "zip (includes filestore)"
+msgstr ""
+
 #~ msgid "%s"
 #~ msgstr "%s"
 
diff --git a/auto_backup/i18n/nl_NL.po b/auto_backup/i18n/nl_NL.po
index 58027d6fd8c..d04a971a395 100644
--- a/auto_backup/i18n/nl_NL.po
+++ b/auto_backup/i18n/nl_NL.po
@@ -20,15 +20,25 @@ msgstr ""
 "Plural-Forms: nplurals=2; plural=(n != 1);\n"
 
 #. module: auto_backup
-#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+#: model_terms:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
 msgid "/home/odoo/.ssh/id_rsa"
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.model.fields,help:auto_backup.field_db_backup_folder
+#: model:ir.model.fields,help:auto_backup.field_db_backup__folder
 msgid "Absolute path for storing the backups"
 msgstr ""
 
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__message_needaction
+msgid "Action Needed"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__message_attachment_count
+msgid "Attachment Count"
+msgstr ""
+
 #. module: auto_backup
 #: model:ir.actions.act_window,name:auto_backup.action_backup_conf_form
 #: model:ir.ui.menu,name:auto_backup.backup_conf_menu
@@ -36,7 +46,7 @@ msgid "Automated Backups"
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+#: model_terms:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
 msgid "Automatic backups of the database can be scheduled as follows:"
 msgstr ""
 
@@ -45,6 +55,11 @@ msgstr ""
 msgid "Backup Failed"
 msgstr ""
 
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__backup_format
+msgid "Backup Format"
+msgstr ""
+
 #. module: auto_backup
 #: model:ir.actions.server,name:auto_backup.ir_cron_backup_scheduler_0_ir_actions_server
 #: model:ir.cron,cron_name:auto_backup.ir_cron_backup_scheduler_0
@@ -58,14 +73,14 @@ msgid "Backup Successful"
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.model.fields,help:auto_backup.field_db_backup_days_to_keep
+#: model:ir.model.fields,help:auto_backup.field_db_backup__days_to_keep
 msgid ""
 "Backups older than this will be deleted automatically. Set 0 to disable "
 "autodeletion."
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+#: model_terms:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
 msgid "Basic backup configuration"
 msgstr ""
 
@@ -75,35 +90,40 @@ msgid "Cannot duplicate a configuration."
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.model.fields,help:auto_backup.field_db_backup_method
+#: model:ir.model.fields,help:auto_backup.field_db_backup__backup_format
+msgid "Choose the format for this backup."
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,help:auto_backup.field_db_backup__method
 msgid "Choose the storage method for this backup."
 msgstr ""
 
 #. module: auto_backup
-#: code:addons/auto_backup/models/db_backup.py:249
+#: code:addons/auto_backup/models/db_backup.py:265
 #, python-format
 msgid "Cleanup of old database backups failed."
 msgstr ""
 
 #. module: auto_backup
-#: code:addons/auto_backup/models/db_backup.py:128
+#: code:addons/auto_backup/models/db_backup.py:137
 #, python-format
 msgid "Connection Test Failed!"
 msgstr ""
 
 #. module: auto_backup
-#: code:addons/auto_backup/models/db_backup.py:123
+#: code:addons/auto_backup/models/db_backup.py:132
 #, python-format
 msgid "Connection Test Succeeded!"
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup_create_uid
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__create_uid
 msgid "Created by"
 msgstr "Aangemaakt door"
 
 #. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup_create_date
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__create_date
 msgid "Created on"
 msgstr "Aangemaakt op"
 
@@ -113,38 +133,38 @@ msgid "Database Backup"
 msgstr ""
 
 #. module: auto_backup
-#: code:addons/auto_backup/models/db_backup.py:203
+#: code:addons/auto_backup/models/db_backup.py:219
 #: model:mail.message.subtype,description:auto_backup.mail_message_subtype_failure
 #, python-format
 msgid "Database backup failed."
 msgstr ""
 
 #. module: auto_backup
-#: code:addons/auto_backup/models/db_backup.py:211
+#: code:addons/auto_backup/models/db_backup.py:227
 #: model:mail.message.subtype,description:auto_backup.mail_message_subtype_success
 #, python-format
 msgid "Database backup succeeded."
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup_days_to_keep
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__days_to_keep
 msgid "Days To Keep"
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup_display_name
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__display_name
 msgid "Display Name"
 msgstr "Weergavenaam"
 
 #. module: auto_backup
-#: code:addons/auto_backup/models/db_backup.py:114
+#: code:addons/auto_backup/models/db_backup.py:123
 #, python-format
 msgid ""
 "Do not save backups on your filestore, or you will backup your backups too!"
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+#: model_terms:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
 msgid "Execute backup"
 msgstr ""
 
@@ -154,17 +174,32 @@ msgid "Execute backup(s)"
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup_folder
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__folder
 msgid "Folder"
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__message_follower_ids
+msgid "Followers"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__message_channel_ids
+msgid "Followers (Channels)"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__message_partner_ids
+msgid "Followers (Partners)"
+msgstr ""
+
+#. module: auto_backup
+#: model_terms:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
 msgid "Go to Settings / Technical / Automation / Scheduled Actions."
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+#: model_terms:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
 msgid "Help"
 msgstr ""
 
@@ -174,22 +209,42 @@ msgid "I cannot remove backups from the future. Ask Doc for that."
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup_id
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__id
 msgid "ID"
 msgstr "ID"
 
 #. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup___last_update
+#: model:ir.model.fields,help:auto_backup.field_db_backup__message_unread
+msgid "If checked new messages require your attention."
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,help:auto_backup.field_db_backup__message_needaction
+msgid "If checked, new messages require your attention."
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,help:auto_backup.field_db_backup__message_has_error
+msgid "If checked, some messages have a delivery error."
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__message_is_follower
+msgid "Is Follower"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup____last_update
 msgid "Last Modified on"
 msgstr "Laatst gewijzigd op"
 
 #. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup_write_uid
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__write_uid
 msgid "Last Updated by"
 msgstr "Laatst bijgewerkt door"
 
 #. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup_write_date
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__write_date
 msgid "Last Updated on"
 msgstr "Laatst bijgewerkt op"
 
@@ -199,24 +254,64 @@ msgid "Local disk"
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup_method
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__message_main_attachment_id
+msgid "Main Attachment"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__message_has_error
+msgid "Message Delivery error"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__message_ids
+msgid "Messages"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__method
 msgid "Method"
 msgstr "Methode"
 
 #. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup_name
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__name
 msgid "Name"
 msgstr "Naam"
 
 #. module: auto_backup
-#: model:ir.model.fields,help:auto_backup.field_db_backup_sftp_private_key
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__message_needaction_counter
+msgid "Number of Actions"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__message_has_error_counter
+msgid "Number of error"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,help:auto_backup.field_db_backup__message_needaction_counter
+msgid "Number of messages which requires an action"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,help:auto_backup.field_db_backup__message_has_error_counter
+msgid "Number of messages with delivery error"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,help:auto_backup.field_db_backup__message_unread_counter
+msgid "Number of unread messages"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,help:auto_backup.field_db_backup__sftp_private_key
 msgid ""
 "Path to the private key file. Only the Odoo user should have read "
 "permissions for that file."
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup_sftp_private_key
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__sftp_private_key
 msgid "Private key location"
 msgstr ""
 
@@ -226,94 +321,124 @@ msgid "Remote SFTP server"
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup_sftp_password
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__sftp_password
 msgid "SFTP Password"
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup_sftp_port
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__sftp_port
 msgid "SFTP Port"
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup_sftp_host
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__sftp_host
 msgid "SFTP Server"
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+#: model_terms:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
 msgid "SFTP Settings"
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+#: model_terms:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
 msgid "Search the action named 'Backup scheduler'."
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+#: model_terms:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
 msgid ""
 "Set the scheduler to active and fill in how often you want backups generated."
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.model.fields,help:auto_backup.field_db_backup_name
+#: model:ir.model.fields,help:auto_backup.field_db_backup__name
 msgid "Summary of this backup process"
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+#: model_terms:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
 msgid "Test SFTP Connection"
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.model.fields,help:auto_backup.field_db_backup_sftp_host
+#: model:ir.model.fields,help:auto_backup.field_db_backup__sftp_host
 msgid ""
 "The host name or IP address from your remote server. For example 192.168.0.1"
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.model.fields,help:auto_backup.field_db_backup_sftp_password
+#: model:ir.model.fields,help:auto_backup.field_db_backup__sftp_password
 msgid ""
 "The password for the SFTP connection. If you specify a private key file, "
 "then this is the password to decrypt it."
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.model.fields,help:auto_backup.field_db_backup_sftp_port
+#: model:ir.model.fields,help:auto_backup.field_db_backup__sftp_port
 msgid "The port on the FTP server that accepts SSH/SFTP calls."
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.model.fields,help:auto_backup.field_db_backup_sftp_user
+#: model:ir.model.fields,help:auto_backup.field_db_backup__sftp_user
 msgid ""
 "The username where the SFTP connection should be made with. This is the user "
 "on the external server."
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__message_unread
+msgid "Unread Messages"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__message_unread_counter
+msgid "Unread Messages Counter"
+msgstr ""
+
+#. module: auto_backup
+#: model_terms:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
 msgid ""
 "Use SFTP with caution! This writes files to external servers under the path "
 "you specify."
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup_sftp_user
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__sftp_user
 msgid "Username in the SFTP Server"
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+#: model_terms:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
 msgid "Warning:"
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__website_message_ids
+msgid "Website Messages"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,help:auto_backup.field_db_backup__website_message_ids
+msgid "Website communication history"
+msgstr ""
+
+#. module: auto_backup
+#: model_terms:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
 msgid "john"
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+#: selection:db.backup,backup_format:0
+msgid "pg_dump custom format (without filestore)"
+msgstr ""
+
+#. module: auto_backup
+#: model_terms:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
 msgid "sftp.example.com"
 msgstr ""
+
+#. module: auto_backup
+#: selection:db.backup,backup_format:0
+msgid "zip (includes filestore)"
+msgstr ""
diff --git a/auto_backup/i18n/pl.po b/auto_backup/i18n/pl.po
index 4521d8c41d8..dd10c1f73c7 100644
--- a/auto_backup/i18n/pl.po
+++ b/auto_backup/i18n/pl.po
@@ -21,15 +21,25 @@ msgstr ""
 "%10<=9) || (n%100>=12 && n%100<=14) ? 2 : 3);\n"
 
 #. module: auto_backup
-#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+#: model_terms:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
 msgid "/home/odoo/.ssh/id_rsa"
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.model.fields,help:auto_backup.field_db_backup_folder
+#: model:ir.model.fields,help:auto_backup.field_db_backup__folder
 msgid "Absolute path for storing the backups"
 msgstr ""
 
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__message_needaction
+msgid "Action Needed"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__message_attachment_count
+msgid "Attachment Count"
+msgstr ""
+
 #. module: auto_backup
 #: model:ir.actions.act_window,name:auto_backup.action_backup_conf_form
 #: model:ir.ui.menu,name:auto_backup.backup_conf_menu
@@ -37,7 +47,7 @@ msgid "Automated Backups"
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+#: model_terms:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
 msgid "Automatic backups of the database can be scheduled as follows:"
 msgstr ""
 
@@ -46,6 +56,11 @@ msgstr ""
 msgid "Backup Failed"
 msgstr ""
 
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__backup_format
+msgid "Backup Format"
+msgstr ""
+
 #. module: auto_backup
 #: model:ir.actions.server,name:auto_backup.ir_cron_backup_scheduler_0_ir_actions_server
 #: model:ir.cron,cron_name:auto_backup.ir_cron_backup_scheduler_0
@@ -59,14 +74,14 @@ msgid "Backup Successful"
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.model.fields,help:auto_backup.field_db_backup_days_to_keep
+#: model:ir.model.fields,help:auto_backup.field_db_backup__days_to_keep
 msgid ""
 "Backups older than this will be deleted automatically. Set 0 to disable "
 "autodeletion."
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+#: model_terms:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
 msgid "Basic backup configuration"
 msgstr ""
 
@@ -76,35 +91,40 @@ msgid "Cannot duplicate a configuration."
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.model.fields,help:auto_backup.field_db_backup_method
+#: model:ir.model.fields,help:auto_backup.field_db_backup__backup_format
+msgid "Choose the format for this backup."
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,help:auto_backup.field_db_backup__method
 msgid "Choose the storage method for this backup."
 msgstr ""
 
 #. module: auto_backup
-#: code:addons/auto_backup/models/db_backup.py:249
+#: code:addons/auto_backup/models/db_backup.py:265
 #, python-format
 msgid "Cleanup of old database backups failed."
 msgstr ""
 
 #. module: auto_backup
-#: code:addons/auto_backup/models/db_backup.py:128
+#: code:addons/auto_backup/models/db_backup.py:137
 #, python-format
 msgid "Connection Test Failed!"
 msgstr ""
 
 #. module: auto_backup
-#: code:addons/auto_backup/models/db_backup.py:123
+#: code:addons/auto_backup/models/db_backup.py:132
 #, python-format
 msgid "Connection Test Succeeded!"
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup_create_uid
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__create_uid
 msgid "Created by"
 msgstr "Utworzone przez"
 
 #. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup_create_date
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__create_date
 msgid "Created on"
 msgstr "Data utworzenia"
 
@@ -114,38 +134,38 @@ msgid "Database Backup"
 msgstr ""
 
 #. module: auto_backup
-#: code:addons/auto_backup/models/db_backup.py:203
+#: code:addons/auto_backup/models/db_backup.py:219
 #: model:mail.message.subtype,description:auto_backup.mail_message_subtype_failure
 #, python-format
 msgid "Database backup failed."
 msgstr ""
 
 #. module: auto_backup
-#: code:addons/auto_backup/models/db_backup.py:211
+#: code:addons/auto_backup/models/db_backup.py:227
 #: model:mail.message.subtype,description:auto_backup.mail_message_subtype_success
 #, python-format
 msgid "Database backup succeeded."
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup_days_to_keep
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__days_to_keep
 msgid "Days To Keep"
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup_display_name
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__display_name
 msgid "Display Name"
 msgstr "Wy??wietlana nazwa "
 
 #. module: auto_backup
-#: code:addons/auto_backup/models/db_backup.py:114
+#: code:addons/auto_backup/models/db_backup.py:123
 #, python-format
 msgid ""
 "Do not save backups on your filestore, or you will backup your backups too!"
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+#: model_terms:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
 msgid "Execute backup"
 msgstr ""
 
@@ -155,17 +175,32 @@ msgid "Execute backup(s)"
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup_folder
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__folder
 msgid "Folder"
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__message_follower_ids
+msgid "Followers"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__message_channel_ids
+msgid "Followers (Channels)"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__message_partner_ids
+msgid "Followers (Partners)"
+msgstr ""
+
+#. module: auto_backup
+#: model_terms:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
 msgid "Go to Settings / Technical / Automation / Scheduled Actions."
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+#: model_terms:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
 msgid "Help"
 msgstr ""
 
@@ -175,22 +210,42 @@ msgid "I cannot remove backups from the future. Ask Doc for that."
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup_id
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__id
 msgid "ID"
 msgstr "ID"
 
 #. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup___last_update
+#: model:ir.model.fields,help:auto_backup.field_db_backup__message_unread
+msgid "If checked new messages require your attention."
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,help:auto_backup.field_db_backup__message_needaction
+msgid "If checked, new messages require your attention."
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,help:auto_backup.field_db_backup__message_has_error
+msgid "If checked, some messages have a delivery error."
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__message_is_follower
+msgid "Is Follower"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup____last_update
 msgid "Last Modified on"
 msgstr "Ostatnio modyfikowano"
 
 #. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup_write_uid
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__write_uid
 msgid "Last Updated by"
 msgstr "Ostatnio modyfikowane przez"
 
 #. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup_write_date
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__write_date
 msgid "Last Updated on"
 msgstr "Data ostatniej modyfikacji"
 
@@ -200,24 +255,64 @@ msgid "Local disk"
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup_method
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__message_main_attachment_id
+msgid "Main Attachment"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__message_has_error
+msgid "Message Delivery error"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__message_ids
+msgid "Messages"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__method
 msgid "Method"
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup_name
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__name
 msgid "Name"
 msgstr "Nazwa"
 
 #. module: auto_backup
-#: model:ir.model.fields,help:auto_backup.field_db_backup_sftp_private_key
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__message_needaction_counter
+msgid "Number of Actions"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__message_has_error_counter
+msgid "Number of error"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,help:auto_backup.field_db_backup__message_needaction_counter
+msgid "Number of messages which requires an action"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,help:auto_backup.field_db_backup__message_has_error_counter
+msgid "Number of messages with delivery error"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,help:auto_backup.field_db_backup__message_unread_counter
+msgid "Number of unread messages"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,help:auto_backup.field_db_backup__sftp_private_key
 msgid ""
 "Path to the private key file. Only the Odoo user should have read "
 "permissions for that file."
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup_sftp_private_key
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__sftp_private_key
 msgid "Private key location"
 msgstr ""
 
@@ -227,94 +322,124 @@ msgid "Remote SFTP server"
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup_sftp_password
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__sftp_password
 msgid "SFTP Password"
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup_sftp_port
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__sftp_port
 msgid "SFTP Port"
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup_sftp_host
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__sftp_host
 msgid "SFTP Server"
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+#: model_terms:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
 msgid "SFTP Settings"
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+#: model_terms:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
 msgid "Search the action named 'Backup scheduler'."
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+#: model_terms:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
 msgid ""
 "Set the scheduler to active and fill in how often you want backups generated."
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.model.fields,help:auto_backup.field_db_backup_name
+#: model:ir.model.fields,help:auto_backup.field_db_backup__name
 msgid "Summary of this backup process"
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+#: model_terms:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
 msgid "Test SFTP Connection"
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.model.fields,help:auto_backup.field_db_backup_sftp_host
+#: model:ir.model.fields,help:auto_backup.field_db_backup__sftp_host
 msgid ""
 "The host name or IP address from your remote server. For example 192.168.0.1"
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.model.fields,help:auto_backup.field_db_backup_sftp_password
+#: model:ir.model.fields,help:auto_backup.field_db_backup__sftp_password
 msgid ""
 "The password for the SFTP connection. If you specify a private key file, "
 "then this is the password to decrypt it."
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.model.fields,help:auto_backup.field_db_backup_sftp_port
+#: model:ir.model.fields,help:auto_backup.field_db_backup__sftp_port
 msgid "The port on the FTP server that accepts SSH/SFTP calls."
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.model.fields,help:auto_backup.field_db_backup_sftp_user
+#: model:ir.model.fields,help:auto_backup.field_db_backup__sftp_user
 msgid ""
 "The username where the SFTP connection should be made with. This is the user "
 "on the external server."
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__message_unread
+msgid "Unread Messages"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__message_unread_counter
+msgid "Unread Messages Counter"
+msgstr ""
+
+#. module: auto_backup
+#: model_terms:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
 msgid ""
 "Use SFTP with caution! This writes files to external servers under the path "
 "you specify."
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup_sftp_user
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__sftp_user
 msgid "Username in the SFTP Server"
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+#: model_terms:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
 msgid "Warning:"
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__website_message_ids
+msgid "Website Messages"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,help:auto_backup.field_db_backup__website_message_ids
+msgid "Website communication history"
+msgstr ""
+
+#. module: auto_backup
+#: model_terms:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
 msgid "john"
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+#: selection:db.backup,backup_format:0
+msgid "pg_dump custom format (without filestore)"
+msgstr ""
+
+#. module: auto_backup
+#: model_terms:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
 msgid "sftp.example.com"
 msgstr ""
+
+#. module: auto_backup
+#: selection:db.backup,backup_format:0
+msgid "zip (includes filestore)"
+msgstr ""
diff --git a/auto_backup/i18n/pt.po b/auto_backup/i18n/pt.po
index 6bdec32fb68..65206071e2a 100644
--- a/auto_backup/i18n/pt.po
+++ b/auto_backup/i18n/pt.po
@@ -19,15 +19,25 @@ msgstr ""
 "Plural-Forms: nplurals=2; plural=(n != 1);\n"
 
 #. module: auto_backup
-#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+#: model_terms:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
 msgid "/home/odoo/.ssh/id_rsa"
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.model.fields,help:auto_backup.field_db_backup_folder
+#: model:ir.model.fields,help:auto_backup.field_db_backup__folder
 msgid "Absolute path for storing the backups"
 msgstr ""
 
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__message_needaction
+msgid "Action Needed"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__message_attachment_count
+msgid "Attachment Count"
+msgstr ""
+
 #. module: auto_backup
 #: model:ir.actions.act_window,name:auto_backup.action_backup_conf_form
 #: model:ir.ui.menu,name:auto_backup.backup_conf_menu
@@ -35,7 +45,7 @@ msgid "Automated Backups"
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+#: model_terms:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
 msgid "Automatic backups of the database can be scheduled as follows:"
 msgstr ""
 
@@ -44,6 +54,11 @@ msgstr ""
 msgid "Backup Failed"
 msgstr ""
 
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__backup_format
+msgid "Backup Format"
+msgstr ""
+
 #. module: auto_backup
 #: model:ir.actions.server,name:auto_backup.ir_cron_backup_scheduler_0_ir_actions_server
 #: model:ir.cron,cron_name:auto_backup.ir_cron_backup_scheduler_0
@@ -57,14 +72,14 @@ msgid "Backup Successful"
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.model.fields,help:auto_backup.field_db_backup_days_to_keep
+#: model:ir.model.fields,help:auto_backup.field_db_backup__days_to_keep
 msgid ""
 "Backups older than this will be deleted automatically. Set 0 to disable "
 "autodeletion."
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+#: model_terms:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
 msgid "Basic backup configuration"
 msgstr ""
 
@@ -74,35 +89,40 @@ msgid "Cannot duplicate a configuration."
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.model.fields,help:auto_backup.field_db_backup_method
+#: model:ir.model.fields,help:auto_backup.field_db_backup__backup_format
+msgid "Choose the format for this backup."
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,help:auto_backup.field_db_backup__method
 msgid "Choose the storage method for this backup."
 msgstr ""
 
 #. module: auto_backup
-#: code:addons/auto_backup/models/db_backup.py:249
+#: code:addons/auto_backup/models/db_backup.py:265
 #, python-format
 msgid "Cleanup of old database backups failed."
 msgstr ""
 
 #. module: auto_backup
-#: code:addons/auto_backup/models/db_backup.py:128
+#: code:addons/auto_backup/models/db_backup.py:137
 #, python-format
 msgid "Connection Test Failed!"
 msgstr ""
 
 #. module: auto_backup
-#: code:addons/auto_backup/models/db_backup.py:123
+#: code:addons/auto_backup/models/db_backup.py:132
 #, python-format
 msgid "Connection Test Succeeded!"
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup_create_uid
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__create_uid
 msgid "Created by"
 msgstr "Criado por"
 
 #. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup_create_date
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__create_date
 msgid "Created on"
 msgstr "Criado em"
 
@@ -112,38 +132,38 @@ msgid "Database Backup"
 msgstr ""
 
 #. module: auto_backup
-#: code:addons/auto_backup/models/db_backup.py:203
+#: code:addons/auto_backup/models/db_backup.py:219
 #: model:mail.message.subtype,description:auto_backup.mail_message_subtype_failure
 #, python-format
 msgid "Database backup failed."
 msgstr ""
 
 #. module: auto_backup
-#: code:addons/auto_backup/models/db_backup.py:211
+#: code:addons/auto_backup/models/db_backup.py:227
 #: model:mail.message.subtype,description:auto_backup.mail_message_subtype_success
 #, python-format
 msgid "Database backup succeeded."
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup_days_to_keep
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__days_to_keep
 msgid "Days To Keep"
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup_display_name
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__display_name
 msgid "Display Name"
 msgstr "Nome a Apresentar"
 
 #. module: auto_backup
-#: code:addons/auto_backup/models/db_backup.py:114
+#: code:addons/auto_backup/models/db_backup.py:123
 #, python-format
 msgid ""
 "Do not save backups on your filestore, or you will backup your backups too!"
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+#: model_terms:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
 msgid "Execute backup"
 msgstr ""
 
@@ -153,17 +173,32 @@ msgid "Execute backup(s)"
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup_folder
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__folder
 msgid "Folder"
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__message_follower_ids
+msgid "Followers"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__message_channel_ids
+msgid "Followers (Channels)"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__message_partner_ids
+msgid "Followers (Partners)"
+msgstr ""
+
+#. module: auto_backup
+#: model_terms:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
 msgid "Go to Settings / Technical / Automation / Scheduled Actions."
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+#: model_terms:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
 msgid "Help"
 msgstr ""
 
@@ -173,22 +208,42 @@ msgid "I cannot remove backups from the future. Ask Doc for that."
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup_id
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__id
 msgid "ID"
 msgstr "ID"
 
 #. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup___last_update
+#: model:ir.model.fields,help:auto_backup.field_db_backup__message_unread
+msgid "If checked new messages require your attention."
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,help:auto_backup.field_db_backup__message_needaction
+msgid "If checked, new messages require your attention."
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,help:auto_backup.field_db_backup__message_has_error
+msgid "If checked, some messages have a delivery error."
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__message_is_follower
+msgid "Is Follower"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup____last_update
 msgid "Last Modified on"
 msgstr "??ltima Modifica????o Em"
 
 #. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup_write_uid
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__write_uid
 msgid "Last Updated by"
 msgstr "??ltima Atualiza????o Por"
 
 #. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup_write_date
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__write_date
 msgid "Last Updated on"
 msgstr "??ltima Atualiza????o Em"
 
@@ -198,24 +253,64 @@ msgid "Local disk"
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup_method
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__message_main_attachment_id
+msgid "Main Attachment"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__message_has_error
+msgid "Message Delivery error"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__message_ids
+msgid "Messages"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__method
 msgid "Method"
 msgstr "M??todo"
 
 #. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup_name
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__name
 msgid "Name"
 msgstr "Nome"
 
 #. module: auto_backup
-#: model:ir.model.fields,help:auto_backup.field_db_backup_sftp_private_key
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__message_needaction_counter
+msgid "Number of Actions"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__message_has_error_counter
+msgid "Number of error"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,help:auto_backup.field_db_backup__message_needaction_counter
+msgid "Number of messages which requires an action"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,help:auto_backup.field_db_backup__message_has_error_counter
+msgid "Number of messages with delivery error"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,help:auto_backup.field_db_backup__message_unread_counter
+msgid "Number of unread messages"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,help:auto_backup.field_db_backup__sftp_private_key
 msgid ""
 "Path to the private key file. Only the Odoo user should have read "
 "permissions for that file."
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup_sftp_private_key
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__sftp_private_key
 msgid "Private key location"
 msgstr ""
 
@@ -225,94 +320,124 @@ msgid "Remote SFTP server"
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup_sftp_password
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__sftp_password
 msgid "SFTP Password"
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup_sftp_port
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__sftp_port
 msgid "SFTP Port"
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup_sftp_host
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__sftp_host
 msgid "SFTP Server"
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+#: model_terms:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
 msgid "SFTP Settings"
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+#: model_terms:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
 msgid "Search the action named 'Backup scheduler'."
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+#: model_terms:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
 msgid ""
 "Set the scheduler to active and fill in how often you want backups generated."
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.model.fields,help:auto_backup.field_db_backup_name
+#: model:ir.model.fields,help:auto_backup.field_db_backup__name
 msgid "Summary of this backup process"
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+#: model_terms:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
 msgid "Test SFTP Connection"
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.model.fields,help:auto_backup.field_db_backup_sftp_host
+#: model:ir.model.fields,help:auto_backup.field_db_backup__sftp_host
 msgid ""
 "The host name or IP address from your remote server. For example 192.168.0.1"
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.model.fields,help:auto_backup.field_db_backup_sftp_password
+#: model:ir.model.fields,help:auto_backup.field_db_backup__sftp_password
 msgid ""
 "The password for the SFTP connection. If you specify a private key file, "
 "then this is the password to decrypt it."
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.model.fields,help:auto_backup.field_db_backup_sftp_port
+#: model:ir.model.fields,help:auto_backup.field_db_backup__sftp_port
 msgid "The port on the FTP server that accepts SSH/SFTP calls."
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.model.fields,help:auto_backup.field_db_backup_sftp_user
+#: model:ir.model.fields,help:auto_backup.field_db_backup__sftp_user
 msgid ""
 "The username where the SFTP connection should be made with. This is the user "
 "on the external server."
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__message_unread
+msgid "Unread Messages"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__message_unread_counter
+msgid "Unread Messages Counter"
+msgstr ""
+
+#. module: auto_backup
+#: model_terms:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
 msgid ""
 "Use SFTP with caution! This writes files to external servers under the path "
 "you specify."
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup_sftp_user
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__sftp_user
 msgid "Username in the SFTP Server"
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+#: model_terms:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
 msgid "Warning:"
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__website_message_ids
+msgid "Website Messages"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,help:auto_backup.field_db_backup__website_message_ids
+msgid "Website communication history"
+msgstr ""
+
+#. module: auto_backup
+#: model_terms:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
 msgid "john"
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+#: selection:db.backup,backup_format:0
+msgid "pg_dump custom format (without filestore)"
+msgstr ""
+
+#. module: auto_backup
+#: model_terms:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
 msgid "sftp.example.com"
 msgstr ""
+
+#. module: auto_backup
+#: selection:db.backup,backup_format:0
+msgid "zip (includes filestore)"
+msgstr ""
diff --git a/auto_backup/i18n/pt_BR.po b/auto_backup/i18n/pt_BR.po
index 825703b477c..2eac1eefc18 100644
--- a/auto_backup/i18n/pt_BR.po
+++ b/auto_backup/i18n/pt_BR.po
@@ -20,15 +20,25 @@ msgstr ""
 "Plural-Forms: nplurals=2; plural=(n > 1);\n"
 
 #. module: auto_backup
-#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+#: model_terms:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
 msgid "/home/odoo/.ssh/id_rsa"
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.model.fields,help:auto_backup.field_db_backup_folder
+#: model:ir.model.fields,help:auto_backup.field_db_backup__folder
 msgid "Absolute path for storing the backups"
 msgstr "Caminho absoluto para armazenar os backups"
 
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__message_needaction
+msgid "Action Needed"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__message_attachment_count
+msgid "Attachment Count"
+msgstr ""
+
 #. module: auto_backup
 #: model:ir.actions.act_window,name:auto_backup.action_backup_conf_form
 #: model:ir.ui.menu,name:auto_backup.backup_conf_menu
@@ -36,7 +46,7 @@ msgid "Automated Backups"
 msgstr "Backups Autom??ticos"
 
 #. module: auto_backup
-#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+#: model_terms:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
 msgid "Automatic backups of the database can be scheduled as follows:"
 msgstr ""
 
@@ -45,6 +55,11 @@ msgstr ""
 msgid "Backup Failed"
 msgstr ""
 
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__backup_format
+msgid "Backup Format"
+msgstr ""
+
 #. module: auto_backup
 #: model:ir.actions.server,name:auto_backup.ir_cron_backup_scheduler_0_ir_actions_server
 #: model:ir.cron,cron_name:auto_backup.ir_cron_backup_scheduler_0
@@ -58,14 +73,14 @@ msgid "Backup Successful"
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.model.fields,help:auto_backup.field_db_backup_days_to_keep
+#: model:ir.model.fields,help:auto_backup.field_db_backup__days_to_keep
 msgid ""
 "Backups older than this will be deleted automatically. Set 0 to disable "
 "autodeletion."
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+#: model_terms:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
 msgid "Basic backup configuration"
 msgstr ""
 
@@ -75,35 +90,42 @@ msgid "Cannot duplicate a configuration."
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.model.fields,help:auto_backup.field_db_backup_method
+#: model:ir.model.fields,help:auto_backup.field_db_backup__backup_format
+#, fuzzy
+#| msgid "Absolute path for storing the backups"
+msgid "Choose the format for this backup."
+msgstr "Caminho absoluto para armazenar os backups"
+
+#. module: auto_backup
+#: model:ir.model.fields,help:auto_backup.field_db_backup__method
 msgid "Choose the storage method for this backup."
 msgstr ""
 
 #. module: auto_backup
-#: code:addons/auto_backup/models/db_backup.py:249
+#: code:addons/auto_backup/models/db_backup.py:265
 #, python-format
 msgid "Cleanup of old database backups failed."
 msgstr ""
 
 #. module: auto_backup
-#: code:addons/auto_backup/models/db_backup.py:128
+#: code:addons/auto_backup/models/db_backup.py:137
 #, python-format
 msgid "Connection Test Failed!"
 msgstr ""
 
 #. module: auto_backup
-#: code:addons/auto_backup/models/db_backup.py:123
+#: code:addons/auto_backup/models/db_backup.py:132
 #, python-format
 msgid "Connection Test Succeeded!"
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup_create_uid
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__create_uid
 msgid "Created by"
 msgstr "Criado por"
 
 #. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup_create_date
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__create_date
 msgid "Created on"
 msgstr "Criado em"
 
@@ -114,38 +136,38 @@ msgid "Database Backup"
 msgstr "Backups Autom??ticos"
 
 #. module: auto_backup
-#: code:addons/auto_backup/models/db_backup.py:203
+#: code:addons/auto_backup/models/db_backup.py:219
 #: model:mail.message.subtype,description:auto_backup.mail_message_subtype_failure
 #, python-format
 msgid "Database backup failed."
 msgstr ""
 
 #. module: auto_backup
-#: code:addons/auto_backup/models/db_backup.py:211
+#: code:addons/auto_backup/models/db_backup.py:227
 #: model:mail.message.subtype,description:auto_backup.mail_message_subtype_success
 #, python-format
 msgid "Database backup succeeded."
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup_days_to_keep
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__days_to_keep
 msgid "Days To Keep"
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup_display_name
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__display_name
 msgid "Display Name"
 msgstr "Nome para Mostrar"
 
 #. module: auto_backup
-#: code:addons/auto_backup/models/db_backup.py:114
+#: code:addons/auto_backup/models/db_backup.py:123
 #, python-format
 msgid ""
 "Do not save backups on your filestore, or you will backup your backups too!"
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+#: model_terms:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
 msgid "Execute backup"
 msgstr ""
 
@@ -155,17 +177,32 @@ msgid "Execute backup(s)"
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup_folder
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__folder
 msgid "Folder"
 msgstr "Pasta"
 
 #. module: auto_backup
-#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__message_follower_ids
+msgid "Followers"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__message_channel_ids
+msgid "Followers (Channels)"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__message_partner_ids
+msgid "Followers (Partners)"
+msgstr ""
+
+#. module: auto_backup
+#: model_terms:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
 msgid "Go to Settings / Technical / Automation / Scheduled Actions."
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+#: model_terms:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
 msgid "Help"
 msgstr ""
 
@@ -175,22 +212,42 @@ msgid "I cannot remove backups from the future. Ask Doc for that."
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup_id
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__id
 msgid "ID"
 msgstr "Identifica????o"
 
 #. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup___last_update
+#: model:ir.model.fields,help:auto_backup.field_db_backup__message_unread
+msgid "If checked new messages require your attention."
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,help:auto_backup.field_db_backup__message_needaction
+msgid "If checked, new messages require your attention."
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,help:auto_backup.field_db_backup__message_has_error
+msgid "If checked, some messages have a delivery error."
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__message_is_follower
+msgid "Is Follower"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup____last_update
 msgid "Last Modified on"
 msgstr "??ltima atualiza????o em"
 
 #. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup_write_uid
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__write_uid
 msgid "Last Updated by"
 msgstr "??ltima atualiza????o por"
 
 #. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup_write_date
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__write_date
 msgid "Last Updated on"
 msgstr "??ltima atualiza????o em"
 
@@ -200,24 +257,64 @@ msgid "Local disk"
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup_method
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__message_main_attachment_id
+msgid "Main Attachment"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__message_has_error
+msgid "Message Delivery error"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__message_ids
+msgid "Messages"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__method
 msgid "Method"
 msgstr "M??todo"
 
 #. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup_name
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__name
 msgid "Name"
 msgstr "Nome"
 
 #. module: auto_backup
-#: model:ir.model.fields,help:auto_backup.field_db_backup_sftp_private_key
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__message_needaction_counter
+msgid "Number of Actions"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__message_has_error_counter
+msgid "Number of error"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,help:auto_backup.field_db_backup__message_needaction_counter
+msgid "Number of messages which requires an action"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,help:auto_backup.field_db_backup__message_has_error_counter
+msgid "Number of messages with delivery error"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,help:auto_backup.field_db_backup__message_unread_counter
+msgid "Number of unread messages"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,help:auto_backup.field_db_backup__sftp_private_key
 msgid ""
 "Path to the private key file. Only the Odoo user should have read "
 "permissions for that file."
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup_sftp_private_key
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__sftp_private_key
 msgid "Private key location"
 msgstr ""
 
@@ -227,94 +324,124 @@ msgid "Remote SFTP server"
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup_sftp_password
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__sftp_password
 msgid "SFTP Password"
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup_sftp_port
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__sftp_port
 msgid "SFTP Port"
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup_sftp_host
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__sftp_host
 msgid "SFTP Server"
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+#: model_terms:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
 msgid "SFTP Settings"
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+#: model_terms:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
 msgid "Search the action named 'Backup scheduler'."
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+#: model_terms:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
 msgid ""
 "Set the scheduler to active and fill in how often you want backups generated."
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.model.fields,help:auto_backup.field_db_backup_name
+#: model:ir.model.fields,help:auto_backup.field_db_backup__name
 msgid "Summary of this backup process"
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+#: model_terms:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
 msgid "Test SFTP Connection"
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.model.fields,help:auto_backup.field_db_backup_sftp_host
+#: model:ir.model.fields,help:auto_backup.field_db_backup__sftp_host
 msgid ""
 "The host name or IP address from your remote server. For example 192.168.0.1"
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.model.fields,help:auto_backup.field_db_backup_sftp_password
+#: model:ir.model.fields,help:auto_backup.field_db_backup__sftp_password
 msgid ""
 "The password for the SFTP connection. If you specify a private key file, "
 "then this is the password to decrypt it."
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.model.fields,help:auto_backup.field_db_backup_sftp_port
+#: model:ir.model.fields,help:auto_backup.field_db_backup__sftp_port
 msgid "The port on the FTP server that accepts SSH/SFTP calls."
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.model.fields,help:auto_backup.field_db_backup_sftp_user
+#: model:ir.model.fields,help:auto_backup.field_db_backup__sftp_user
 msgid ""
 "The username where the SFTP connection should be made with. This is the user "
 "on the external server."
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__message_unread
+msgid "Unread Messages"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__message_unread_counter
+msgid "Unread Messages Counter"
+msgstr ""
+
+#. module: auto_backup
+#: model_terms:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
 msgid ""
 "Use SFTP with caution! This writes files to external servers under the path "
 "you specify."
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup_sftp_user
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__sftp_user
 msgid "Username in the SFTP Server"
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+#: model_terms:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
 msgid "Warning:"
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__website_message_ids
+msgid "Website Messages"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,help:auto_backup.field_db_backup__website_message_ids
+msgid "Website communication history"
+msgstr ""
+
+#. module: auto_backup
+#: model_terms:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
 msgid "john"
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+#: selection:db.backup,backup_format:0
+msgid "pg_dump custom format (without filestore)"
+msgstr ""
+
+#. module: auto_backup
+#: model_terms:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
 msgid "sftp.example.com"
 msgstr ""
+
+#. module: auto_backup
+#: selection:db.backup,backup_format:0
+msgid "zip (includes filestore)"
+msgstr ""
diff --git a/auto_backup/i18n/pt_PT.po b/auto_backup/i18n/pt_PT.po
index 1b25fbf668a..e76e637898b 100644
--- a/auto_backup/i18n/pt_PT.po
+++ b/auto_backup/i18n/pt_PT.po
@@ -20,15 +20,25 @@ msgstr ""
 "Plural-Forms: nplurals=2; plural=(n != 1);\n"
 
 #. module: auto_backup
-#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+#: model_terms:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
 msgid "/home/odoo/.ssh/id_rsa"
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.model.fields,help:auto_backup.field_db_backup_folder
+#: model:ir.model.fields,help:auto_backup.field_db_backup__folder
 msgid "Absolute path for storing the backups"
 msgstr ""
 
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__message_needaction
+msgid "Action Needed"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__message_attachment_count
+msgid "Attachment Count"
+msgstr ""
+
 #. module: auto_backup
 #: model:ir.actions.act_window,name:auto_backup.action_backup_conf_form
 #: model:ir.ui.menu,name:auto_backup.backup_conf_menu
@@ -36,7 +46,7 @@ msgid "Automated Backups"
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+#: model_terms:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
 msgid "Automatic backups of the database can be scheduled as follows:"
 msgstr ""
 
@@ -45,6 +55,11 @@ msgstr ""
 msgid "Backup Failed"
 msgstr ""
 
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__backup_format
+msgid "Backup Format"
+msgstr ""
+
 #. module: auto_backup
 #: model:ir.actions.server,name:auto_backup.ir_cron_backup_scheduler_0_ir_actions_server
 #: model:ir.cron,cron_name:auto_backup.ir_cron_backup_scheduler_0
@@ -58,14 +73,14 @@ msgid "Backup Successful"
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.model.fields,help:auto_backup.field_db_backup_days_to_keep
+#: model:ir.model.fields,help:auto_backup.field_db_backup__days_to_keep
 msgid ""
 "Backups older than this will be deleted automatically. Set 0 to disable "
 "autodeletion."
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+#: model_terms:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
 msgid "Basic backup configuration"
 msgstr ""
 
@@ -75,35 +90,40 @@ msgid "Cannot duplicate a configuration."
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.model.fields,help:auto_backup.field_db_backup_method
+#: model:ir.model.fields,help:auto_backup.field_db_backup__backup_format
+msgid "Choose the format for this backup."
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,help:auto_backup.field_db_backup__method
 msgid "Choose the storage method for this backup."
 msgstr ""
 
 #. module: auto_backup
-#: code:addons/auto_backup/models/db_backup.py:249
+#: code:addons/auto_backup/models/db_backup.py:265
 #, python-format
 msgid "Cleanup of old database backups failed."
 msgstr ""
 
 #. module: auto_backup
-#: code:addons/auto_backup/models/db_backup.py:128
+#: code:addons/auto_backup/models/db_backup.py:137
 #, python-format
 msgid "Connection Test Failed!"
 msgstr ""
 
 #. module: auto_backup
-#: code:addons/auto_backup/models/db_backup.py:123
+#: code:addons/auto_backup/models/db_backup.py:132
 #, python-format
 msgid "Connection Test Succeeded!"
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup_create_uid
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__create_uid
 msgid "Created by"
 msgstr "Criado por"
 
 #. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup_create_date
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__create_date
 msgid "Created on"
 msgstr "Criado em"
 
@@ -113,38 +133,38 @@ msgid "Database Backup"
 msgstr ""
 
 #. module: auto_backup
-#: code:addons/auto_backup/models/db_backup.py:203
+#: code:addons/auto_backup/models/db_backup.py:219
 #: model:mail.message.subtype,description:auto_backup.mail_message_subtype_failure
 #, python-format
 msgid "Database backup failed."
 msgstr ""
 
 #. module: auto_backup
-#: code:addons/auto_backup/models/db_backup.py:211
+#: code:addons/auto_backup/models/db_backup.py:227
 #: model:mail.message.subtype,description:auto_backup.mail_message_subtype_success
 #, python-format
 msgid "Database backup succeeded."
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup_days_to_keep
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__days_to_keep
 msgid "Days To Keep"
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup_display_name
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__display_name
 msgid "Display Name"
 msgstr "Nome a Apresentar"
 
 #. module: auto_backup
-#: code:addons/auto_backup/models/db_backup.py:114
+#: code:addons/auto_backup/models/db_backup.py:123
 #, python-format
 msgid ""
 "Do not save backups on your filestore, or you will backup your backups too!"
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+#: model_terms:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
 msgid "Execute backup"
 msgstr ""
 
@@ -154,17 +174,32 @@ msgid "Execute backup(s)"
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup_folder
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__folder
 msgid "Folder"
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__message_follower_ids
+msgid "Followers"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__message_channel_ids
+msgid "Followers (Channels)"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__message_partner_ids
+msgid "Followers (Partners)"
+msgstr ""
+
+#. module: auto_backup
+#: model_terms:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
 msgid "Go to Settings / Technical / Automation / Scheduled Actions."
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+#: model_terms:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
 msgid "Help"
 msgstr ""
 
@@ -174,22 +209,42 @@ msgid "I cannot remove backups from the future. Ask Doc for that."
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup_id
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__id
 msgid "ID"
 msgstr "ID"
 
 #. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup___last_update
+#: model:ir.model.fields,help:auto_backup.field_db_backup__message_unread
+msgid "If checked new messages require your attention."
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,help:auto_backup.field_db_backup__message_needaction
+msgid "If checked, new messages require your attention."
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,help:auto_backup.field_db_backup__message_has_error
+msgid "If checked, some messages have a delivery error."
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__message_is_follower
+msgid "Is Follower"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup____last_update
 msgid "Last Modified on"
 msgstr "??ltima Modifica????o em"
 
 #. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup_write_uid
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__write_uid
 msgid "Last Updated by"
 msgstr "??ltima Modifica????o por"
 
 #. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup_write_date
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__write_date
 msgid "Last Updated on"
 msgstr "??ltima Atualiza????o em"
 
@@ -199,24 +254,64 @@ msgid "Local disk"
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup_method
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__message_main_attachment_id
+msgid "Main Attachment"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__message_has_error
+msgid "Message Delivery error"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__message_ids
+msgid "Messages"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__method
 msgid "Method"
 msgstr "M??todo"
 
 #. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup_name
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__name
 msgid "Name"
 msgstr "Nome"
 
 #. module: auto_backup
-#: model:ir.model.fields,help:auto_backup.field_db_backup_sftp_private_key
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__message_needaction_counter
+msgid "Number of Actions"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__message_has_error_counter
+msgid "Number of error"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,help:auto_backup.field_db_backup__message_needaction_counter
+msgid "Number of messages which requires an action"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,help:auto_backup.field_db_backup__message_has_error_counter
+msgid "Number of messages with delivery error"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,help:auto_backup.field_db_backup__message_unread_counter
+msgid "Number of unread messages"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,help:auto_backup.field_db_backup__sftp_private_key
 msgid ""
 "Path to the private key file. Only the Odoo user should have read "
 "permissions for that file."
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup_sftp_private_key
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__sftp_private_key
 msgid "Private key location"
 msgstr ""
 
@@ -226,94 +321,124 @@ msgid "Remote SFTP server"
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup_sftp_password
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__sftp_password
 msgid "SFTP Password"
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup_sftp_port
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__sftp_port
 msgid "SFTP Port"
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup_sftp_host
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__sftp_host
 msgid "SFTP Server"
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+#: model_terms:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
 msgid "SFTP Settings"
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+#: model_terms:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
 msgid "Search the action named 'Backup scheduler'."
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+#: model_terms:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
 msgid ""
 "Set the scheduler to active and fill in how often you want backups generated."
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.model.fields,help:auto_backup.field_db_backup_name
+#: model:ir.model.fields,help:auto_backup.field_db_backup__name
 msgid "Summary of this backup process"
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+#: model_terms:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
 msgid "Test SFTP Connection"
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.model.fields,help:auto_backup.field_db_backup_sftp_host
+#: model:ir.model.fields,help:auto_backup.field_db_backup__sftp_host
 msgid ""
 "The host name or IP address from your remote server. For example 192.168.0.1"
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.model.fields,help:auto_backup.field_db_backup_sftp_password
+#: model:ir.model.fields,help:auto_backup.field_db_backup__sftp_password
 msgid ""
 "The password for the SFTP connection. If you specify a private key file, "
 "then this is the password to decrypt it."
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.model.fields,help:auto_backup.field_db_backup_sftp_port
+#: model:ir.model.fields,help:auto_backup.field_db_backup__sftp_port
 msgid "The port on the FTP server that accepts SSH/SFTP calls."
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.model.fields,help:auto_backup.field_db_backup_sftp_user
+#: model:ir.model.fields,help:auto_backup.field_db_backup__sftp_user
 msgid ""
 "The username where the SFTP connection should be made with. This is the user "
 "on the external server."
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__message_unread
+msgid "Unread Messages"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__message_unread_counter
+msgid "Unread Messages Counter"
+msgstr ""
+
+#. module: auto_backup
+#: model_terms:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
 msgid ""
 "Use SFTP with caution! This writes files to external servers under the path "
 "you specify."
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup_sftp_user
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__sftp_user
 msgid "Username in the SFTP Server"
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+#: model_terms:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
 msgid "Warning:"
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__website_message_ids
+msgid "Website Messages"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,help:auto_backup.field_db_backup__website_message_ids
+msgid "Website communication history"
+msgstr ""
+
+#. module: auto_backup
+#: model_terms:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
 msgid "john"
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+#: selection:db.backup,backup_format:0
+msgid "pg_dump custom format (without filestore)"
+msgstr ""
+
+#. module: auto_backup
+#: model_terms:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
 msgid "sftp.example.com"
 msgstr ""
+
+#. module: auto_backup
+#: selection:db.backup,backup_format:0
+msgid "zip (includes filestore)"
+msgstr ""
diff --git a/auto_backup/i18n/ro.po b/auto_backup/i18n/ro.po
index beeb8e661cd..e939337fc28 100644
--- a/auto_backup/i18n/ro.po
+++ b/auto_backup/i18n/ro.po
@@ -20,15 +20,25 @@ msgstr ""
 "2:1));\n"
 
 #. module: auto_backup
-#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+#: model_terms:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
 msgid "/home/odoo/.ssh/id_rsa"
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.model.fields,help:auto_backup.field_db_backup_folder
+#: model:ir.model.fields,help:auto_backup.field_db_backup__folder
 msgid "Absolute path for storing the backups"
 msgstr ""
 
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__message_needaction
+msgid "Action Needed"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__message_attachment_count
+msgid "Attachment Count"
+msgstr ""
+
 #. module: auto_backup
 #: model:ir.actions.act_window,name:auto_backup.action_backup_conf_form
 #: model:ir.ui.menu,name:auto_backup.backup_conf_menu
@@ -36,7 +46,7 @@ msgid "Automated Backups"
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+#: model_terms:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
 msgid "Automatic backups of the database can be scheduled as follows:"
 msgstr ""
 
@@ -45,6 +55,11 @@ msgstr ""
 msgid "Backup Failed"
 msgstr ""
 
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__backup_format
+msgid "Backup Format"
+msgstr ""
+
 #. module: auto_backup
 #: model:ir.actions.server,name:auto_backup.ir_cron_backup_scheduler_0_ir_actions_server
 #: model:ir.cron,cron_name:auto_backup.ir_cron_backup_scheduler_0
@@ -58,14 +73,14 @@ msgid "Backup Successful"
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.model.fields,help:auto_backup.field_db_backup_days_to_keep
+#: model:ir.model.fields,help:auto_backup.field_db_backup__days_to_keep
 msgid ""
 "Backups older than this will be deleted automatically. Set 0 to disable "
 "autodeletion."
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+#: model_terms:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
 msgid "Basic backup configuration"
 msgstr ""
 
@@ -75,35 +90,40 @@ msgid "Cannot duplicate a configuration."
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.model.fields,help:auto_backup.field_db_backup_method
+#: model:ir.model.fields,help:auto_backup.field_db_backup__backup_format
+msgid "Choose the format for this backup."
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,help:auto_backup.field_db_backup__method
 msgid "Choose the storage method for this backup."
 msgstr ""
 
 #. module: auto_backup
-#: code:addons/auto_backup/models/db_backup.py:249
+#: code:addons/auto_backup/models/db_backup.py:265
 #, python-format
 msgid "Cleanup of old database backups failed."
 msgstr ""
 
 #. module: auto_backup
-#: code:addons/auto_backup/models/db_backup.py:128
+#: code:addons/auto_backup/models/db_backup.py:137
 #, python-format
 msgid "Connection Test Failed!"
 msgstr ""
 
 #. module: auto_backup
-#: code:addons/auto_backup/models/db_backup.py:123
+#: code:addons/auto_backup/models/db_backup.py:132
 #, python-format
 msgid "Connection Test Succeeded!"
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup_create_uid
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__create_uid
 msgid "Created by"
 msgstr "Creat de"
 
 #. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup_create_date
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__create_date
 msgid "Created on"
 msgstr "Creat la"
 
@@ -113,38 +133,38 @@ msgid "Database Backup"
 msgstr ""
 
 #. module: auto_backup
-#: code:addons/auto_backup/models/db_backup.py:203
+#: code:addons/auto_backup/models/db_backup.py:219
 #: model:mail.message.subtype,description:auto_backup.mail_message_subtype_failure
 #, python-format
 msgid "Database backup failed."
 msgstr ""
 
 #. module: auto_backup
-#: code:addons/auto_backup/models/db_backup.py:211
+#: code:addons/auto_backup/models/db_backup.py:227
 #: model:mail.message.subtype,description:auto_backup.mail_message_subtype_success
 #, python-format
 msgid "Database backup succeeded."
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup_days_to_keep
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__days_to_keep
 msgid "Days To Keep"
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup_display_name
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__display_name
 msgid "Display Name"
 msgstr "Nume Afi??at"
 
 #. module: auto_backup
-#: code:addons/auto_backup/models/db_backup.py:114
+#: code:addons/auto_backup/models/db_backup.py:123
 #, python-format
 msgid ""
 "Do not save backups on your filestore, or you will backup your backups too!"
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+#: model_terms:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
 msgid "Execute backup"
 msgstr ""
 
@@ -154,17 +174,32 @@ msgid "Execute backup(s)"
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup_folder
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__folder
 msgid "Folder"
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__message_follower_ids
+msgid "Followers"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__message_channel_ids
+msgid "Followers (Channels)"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__message_partner_ids
+msgid "Followers (Partners)"
+msgstr ""
+
+#. module: auto_backup
+#: model_terms:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
 msgid "Go to Settings / Technical / Automation / Scheduled Actions."
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+#: model_terms:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
 msgid "Help"
 msgstr ""
 
@@ -174,22 +209,42 @@ msgid "I cannot remove backups from the future. Ask Doc for that."
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup_id
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__id
 msgid "ID"
 msgstr "ID"
 
 #. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup___last_update
+#: model:ir.model.fields,help:auto_backup.field_db_backup__message_unread
+msgid "If checked new messages require your attention."
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,help:auto_backup.field_db_backup__message_needaction
+msgid "If checked, new messages require your attention."
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,help:auto_backup.field_db_backup__message_has_error
+msgid "If checked, some messages have a delivery error."
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__message_is_follower
+msgid "Is Follower"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup____last_update
 msgid "Last Modified on"
 msgstr "Ultima actualizare ??n"
 
 #. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup_write_uid
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__write_uid
 msgid "Last Updated by"
 msgstr "Ultima actualizare f??cut?? de"
 
 #. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup_write_date
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__write_date
 msgid "Last Updated on"
 msgstr "Ultima actualizare la"
 
@@ -199,24 +254,64 @@ msgid "Local disk"
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup_method
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__message_main_attachment_id
+msgid "Main Attachment"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__message_has_error
+msgid "Message Delivery error"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__message_ids
+msgid "Messages"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__method
 msgid "Method"
 msgstr "Metoda"
 
 #. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup_name
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__name
 msgid "Name"
 msgstr "Nume"
 
 #. module: auto_backup
-#: model:ir.model.fields,help:auto_backup.field_db_backup_sftp_private_key
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__message_needaction_counter
+msgid "Number of Actions"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__message_has_error_counter
+msgid "Number of error"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,help:auto_backup.field_db_backup__message_needaction_counter
+msgid "Number of messages which requires an action"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,help:auto_backup.field_db_backup__message_has_error_counter
+msgid "Number of messages with delivery error"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,help:auto_backup.field_db_backup__message_unread_counter
+msgid "Number of unread messages"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,help:auto_backup.field_db_backup__sftp_private_key
 msgid ""
 "Path to the private key file. Only the Odoo user should have read "
 "permissions for that file."
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup_sftp_private_key
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__sftp_private_key
 msgid "Private key location"
 msgstr ""
 
@@ -226,94 +321,124 @@ msgid "Remote SFTP server"
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup_sftp_password
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__sftp_password
 msgid "SFTP Password"
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup_sftp_port
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__sftp_port
 msgid "SFTP Port"
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup_sftp_host
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__sftp_host
 msgid "SFTP Server"
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+#: model_terms:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
 msgid "SFTP Settings"
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+#: model_terms:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
 msgid "Search the action named 'Backup scheduler'."
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+#: model_terms:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
 msgid ""
 "Set the scheduler to active and fill in how often you want backups generated."
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.model.fields,help:auto_backup.field_db_backup_name
+#: model:ir.model.fields,help:auto_backup.field_db_backup__name
 msgid "Summary of this backup process"
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+#: model_terms:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
 msgid "Test SFTP Connection"
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.model.fields,help:auto_backup.field_db_backup_sftp_host
+#: model:ir.model.fields,help:auto_backup.field_db_backup__sftp_host
 msgid ""
 "The host name or IP address from your remote server. For example 192.168.0.1"
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.model.fields,help:auto_backup.field_db_backup_sftp_password
+#: model:ir.model.fields,help:auto_backup.field_db_backup__sftp_password
 msgid ""
 "The password for the SFTP connection. If you specify a private key file, "
 "then this is the password to decrypt it."
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.model.fields,help:auto_backup.field_db_backup_sftp_port
+#: model:ir.model.fields,help:auto_backup.field_db_backup__sftp_port
 msgid "The port on the FTP server that accepts SSH/SFTP calls."
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.model.fields,help:auto_backup.field_db_backup_sftp_user
+#: model:ir.model.fields,help:auto_backup.field_db_backup__sftp_user
 msgid ""
 "The username where the SFTP connection should be made with. This is the user "
 "on the external server."
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__message_unread
+msgid "Unread Messages"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__message_unread_counter
+msgid "Unread Messages Counter"
+msgstr ""
+
+#. module: auto_backup
+#: model_terms:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
 msgid ""
 "Use SFTP with caution! This writes files to external servers under the path "
 "you specify."
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup_sftp_user
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__sftp_user
 msgid "Username in the SFTP Server"
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+#: model_terms:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
 msgid "Warning:"
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__website_message_ids
+msgid "Website Messages"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,help:auto_backup.field_db_backup__website_message_ids
+msgid "Website communication history"
+msgstr ""
+
+#. module: auto_backup
+#: model_terms:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
 msgid "john"
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+#: selection:db.backup,backup_format:0
+msgid "pg_dump custom format (without filestore)"
+msgstr ""
+
+#. module: auto_backup
+#: model_terms:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
 msgid "sftp.example.com"
 msgstr ""
+
+#. module: auto_backup
+#: selection:db.backup,backup_format:0
+msgid "zip (includes filestore)"
+msgstr ""
diff --git a/auto_backup/i18n/ru.po b/auto_backup/i18n/ru.po
index e83e1760317..f70421ab614 100644
--- a/auto_backup/i18n/ru.po
+++ b/auto_backup/i18n/ru.po
@@ -21,15 +21,25 @@ msgstr ""
 "%100>=11 && n%100<=14)? 2 : 3);\n"
 
 #. module: auto_backup
-#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+#: model_terms:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
 msgid "/home/odoo/.ssh/id_rsa"
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.model.fields,help:auto_backup.field_db_backup_folder
+#: model:ir.model.fields,help:auto_backup.field_db_backup__folder
 msgid "Absolute path for storing the backups"
 msgstr ""
 
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__message_needaction
+msgid "Action Needed"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__message_attachment_count
+msgid "Attachment Count"
+msgstr ""
+
 #. module: auto_backup
 #: model:ir.actions.act_window,name:auto_backup.action_backup_conf_form
 #: model:ir.ui.menu,name:auto_backup.backup_conf_menu
@@ -37,7 +47,7 @@ msgid "Automated Backups"
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+#: model_terms:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
 msgid "Automatic backups of the database can be scheduled as follows:"
 msgstr ""
 
@@ -46,6 +56,11 @@ msgstr ""
 msgid "Backup Failed"
 msgstr ""
 
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__backup_format
+msgid "Backup Format"
+msgstr ""
+
 #. module: auto_backup
 #: model:ir.actions.server,name:auto_backup.ir_cron_backup_scheduler_0_ir_actions_server
 #: model:ir.cron,cron_name:auto_backup.ir_cron_backup_scheduler_0
@@ -59,14 +74,14 @@ msgid "Backup Successful"
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.model.fields,help:auto_backup.field_db_backup_days_to_keep
+#: model:ir.model.fields,help:auto_backup.field_db_backup__days_to_keep
 msgid ""
 "Backups older than this will be deleted automatically. Set 0 to disable "
 "autodeletion."
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+#: model_terms:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
 msgid "Basic backup configuration"
 msgstr ""
 
@@ -76,35 +91,40 @@ msgid "Cannot duplicate a configuration."
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.model.fields,help:auto_backup.field_db_backup_method
+#: model:ir.model.fields,help:auto_backup.field_db_backup__backup_format
+msgid "Choose the format for this backup."
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,help:auto_backup.field_db_backup__method
 msgid "Choose the storage method for this backup."
 msgstr ""
 
 #. module: auto_backup
-#: code:addons/auto_backup/models/db_backup.py:249
+#: code:addons/auto_backup/models/db_backup.py:265
 #, python-format
 msgid "Cleanup of old database backups failed."
 msgstr ""
 
 #. module: auto_backup
-#: code:addons/auto_backup/models/db_backup.py:128
+#: code:addons/auto_backup/models/db_backup.py:137
 #, python-format
 msgid "Connection Test Failed!"
 msgstr ""
 
 #. module: auto_backup
-#: code:addons/auto_backup/models/db_backup.py:123
+#: code:addons/auto_backup/models/db_backup.py:132
 #, python-format
 msgid "Connection Test Succeeded!"
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup_create_uid
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__create_uid
 msgid "Created by"
 msgstr "??????????????"
 
 #. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup_create_date
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__create_date
 msgid "Created on"
 msgstr "????????????"
 
@@ -114,38 +134,38 @@ msgid "Database Backup"
 msgstr ""
 
 #. module: auto_backup
-#: code:addons/auto_backup/models/db_backup.py:203
+#: code:addons/auto_backup/models/db_backup.py:219
 #: model:mail.message.subtype,description:auto_backup.mail_message_subtype_failure
 #, python-format
 msgid "Database backup failed."
 msgstr ""
 
 #. module: auto_backup
-#: code:addons/auto_backup/models/db_backup.py:211
+#: code:addons/auto_backup/models/db_backup.py:227
 #: model:mail.message.subtype,description:auto_backup.mail_message_subtype_success
 #, python-format
 msgid "Database backup succeeded."
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup_days_to_keep
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__days_to_keep
 msgid "Days To Keep"
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup_display_name
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__display_name
 msgid "Display Name"
 msgstr ""
 
 #. module: auto_backup
-#: code:addons/auto_backup/models/db_backup.py:114
+#: code:addons/auto_backup/models/db_backup.py:123
 #, python-format
 msgid ""
 "Do not save backups on your filestore, or you will backup your backups too!"
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+#: model_terms:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
 msgid "Execute backup"
 msgstr ""
 
@@ -155,17 +175,32 @@ msgid "Execute backup(s)"
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup_folder
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__folder
 msgid "Folder"
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__message_follower_ids
+msgid "Followers"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__message_channel_ids
+msgid "Followers (Channels)"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__message_partner_ids
+msgid "Followers (Partners)"
+msgstr ""
+
+#. module: auto_backup
+#: model_terms:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
 msgid "Go to Settings / Technical / Automation / Scheduled Actions."
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+#: model_terms:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
 msgid "Help"
 msgstr ""
 
@@ -175,22 +210,42 @@ msgid "I cannot remove backups from the future. Ask Doc for that."
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup_id
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__id
 msgid "ID"
 msgstr "ID"
 
 #. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup___last_update
+#: model:ir.model.fields,help:auto_backup.field_db_backup__message_unread
+msgid "If checked new messages require your attention."
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,help:auto_backup.field_db_backup__message_needaction
+msgid "If checked, new messages require your attention."
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,help:auto_backup.field_db_backup__message_has_error
+msgid "If checked, some messages have a delivery error."
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__message_is_follower
+msgid "Is Follower"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup____last_update
 msgid "Last Modified on"
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup_write_uid
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__write_uid
 msgid "Last Updated by"
 msgstr "?????????????????? ?????? ??????????????????"
 
 #. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup_write_date
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__write_date
 msgid "Last Updated on"
 msgstr "?????????????????? ?????? ??????????????????"
 
@@ -200,24 +255,64 @@ msgid "Local disk"
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup_method
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__message_main_attachment_id
+msgid "Main Attachment"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__message_has_error
+msgid "Message Delivery error"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__message_ids
+msgid "Messages"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__method
 msgid "Method"
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup_name
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__name
 msgid "Name"
 msgstr "????????????????"
 
 #. module: auto_backup
-#: model:ir.model.fields,help:auto_backup.field_db_backup_sftp_private_key
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__message_needaction_counter
+msgid "Number of Actions"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__message_has_error_counter
+msgid "Number of error"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,help:auto_backup.field_db_backup__message_needaction_counter
+msgid "Number of messages which requires an action"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,help:auto_backup.field_db_backup__message_has_error_counter
+msgid "Number of messages with delivery error"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,help:auto_backup.field_db_backup__message_unread_counter
+msgid "Number of unread messages"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,help:auto_backup.field_db_backup__sftp_private_key
 msgid ""
 "Path to the private key file. Only the Odoo user should have read "
 "permissions for that file."
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup_sftp_private_key
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__sftp_private_key
 msgid "Private key location"
 msgstr ""
 
@@ -227,94 +322,124 @@ msgid "Remote SFTP server"
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup_sftp_password
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__sftp_password
 msgid "SFTP Password"
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup_sftp_port
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__sftp_port
 msgid "SFTP Port"
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup_sftp_host
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__sftp_host
 msgid "SFTP Server"
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+#: model_terms:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
 msgid "SFTP Settings"
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+#: model_terms:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
 msgid "Search the action named 'Backup scheduler'."
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+#: model_terms:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
 msgid ""
 "Set the scheduler to active and fill in how often you want backups generated."
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.model.fields,help:auto_backup.field_db_backup_name
+#: model:ir.model.fields,help:auto_backup.field_db_backup__name
 msgid "Summary of this backup process"
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+#: model_terms:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
 msgid "Test SFTP Connection"
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.model.fields,help:auto_backup.field_db_backup_sftp_host
+#: model:ir.model.fields,help:auto_backup.field_db_backup__sftp_host
 msgid ""
 "The host name or IP address from your remote server. For example 192.168.0.1"
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.model.fields,help:auto_backup.field_db_backup_sftp_password
+#: model:ir.model.fields,help:auto_backup.field_db_backup__sftp_password
 msgid ""
 "The password for the SFTP connection. If you specify a private key file, "
 "then this is the password to decrypt it."
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.model.fields,help:auto_backup.field_db_backup_sftp_port
+#: model:ir.model.fields,help:auto_backup.field_db_backup__sftp_port
 msgid "The port on the FTP server that accepts SSH/SFTP calls."
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.model.fields,help:auto_backup.field_db_backup_sftp_user
+#: model:ir.model.fields,help:auto_backup.field_db_backup__sftp_user
 msgid ""
 "The username where the SFTP connection should be made with. This is the user "
 "on the external server."
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__message_unread
+msgid "Unread Messages"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__message_unread_counter
+msgid "Unread Messages Counter"
+msgstr ""
+
+#. module: auto_backup
+#: model_terms:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
 msgid ""
 "Use SFTP with caution! This writes files to external servers under the path "
 "you specify."
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup_sftp_user
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__sftp_user
 msgid "Username in the SFTP Server"
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+#: model_terms:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
 msgid "Warning:"
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__website_message_ids
+msgid "Website Messages"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,help:auto_backup.field_db_backup__website_message_ids
+msgid "Website communication history"
+msgstr ""
+
+#. module: auto_backup
+#: model_terms:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
 msgid "john"
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+#: selection:db.backup,backup_format:0
+msgid "pg_dump custom format (without filestore)"
+msgstr ""
+
+#. module: auto_backup
+#: model_terms:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
 msgid "sftp.example.com"
 msgstr ""
+
+#. module: auto_backup
+#: selection:db.backup,backup_format:0
+msgid "zip (includes filestore)"
+msgstr ""
diff --git a/auto_backup/i18n/sk.po b/auto_backup/i18n/sk.po
index 03e38ec892e..a122068a0b6 100644
--- a/auto_backup/i18n/sk.po
+++ b/auto_backup/i18n/sk.po
@@ -19,15 +19,25 @@ msgstr ""
 "Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;\n"
 
 #. module: auto_backup
-#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+#: model_terms:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
 msgid "/home/odoo/.ssh/id_rsa"
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.model.fields,help:auto_backup.field_db_backup_folder
+#: model:ir.model.fields,help:auto_backup.field_db_backup__folder
 msgid "Absolute path for storing the backups"
 msgstr ""
 
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__message_needaction
+msgid "Action Needed"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__message_attachment_count
+msgid "Attachment Count"
+msgstr ""
+
 #. module: auto_backup
 #: model:ir.actions.act_window,name:auto_backup.action_backup_conf_form
 #: model:ir.ui.menu,name:auto_backup.backup_conf_menu
@@ -35,7 +45,7 @@ msgid "Automated Backups"
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+#: model_terms:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
 msgid "Automatic backups of the database can be scheduled as follows:"
 msgstr ""
 
@@ -44,6 +54,11 @@ msgstr ""
 msgid "Backup Failed"
 msgstr ""
 
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__backup_format
+msgid "Backup Format"
+msgstr ""
+
 #. module: auto_backup
 #: model:ir.actions.server,name:auto_backup.ir_cron_backup_scheduler_0_ir_actions_server
 #: model:ir.cron,cron_name:auto_backup.ir_cron_backup_scheduler_0
@@ -57,14 +72,14 @@ msgid "Backup Successful"
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.model.fields,help:auto_backup.field_db_backup_days_to_keep
+#: model:ir.model.fields,help:auto_backup.field_db_backup__days_to_keep
 msgid ""
 "Backups older than this will be deleted automatically. Set 0 to disable "
 "autodeletion."
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+#: model_terms:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
 msgid "Basic backup configuration"
 msgstr ""
 
@@ -74,35 +89,40 @@ msgid "Cannot duplicate a configuration."
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.model.fields,help:auto_backup.field_db_backup_method
+#: model:ir.model.fields,help:auto_backup.field_db_backup__backup_format
+msgid "Choose the format for this backup."
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,help:auto_backup.field_db_backup__method
 msgid "Choose the storage method for this backup."
 msgstr ""
 
 #. module: auto_backup
-#: code:addons/auto_backup/models/db_backup.py:249
+#: code:addons/auto_backup/models/db_backup.py:265
 #, python-format
 msgid "Cleanup of old database backups failed."
 msgstr ""
 
 #. module: auto_backup
-#: code:addons/auto_backup/models/db_backup.py:128
+#: code:addons/auto_backup/models/db_backup.py:137
 #, python-format
 msgid "Connection Test Failed!"
 msgstr ""
 
 #. module: auto_backup
-#: code:addons/auto_backup/models/db_backup.py:123
+#: code:addons/auto_backup/models/db_backup.py:132
 #, python-format
 msgid "Connection Test Succeeded!"
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup_create_uid
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__create_uid
 msgid "Created by"
 msgstr "Vytvoril"
 
 #. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup_create_date
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__create_date
 msgid "Created on"
 msgstr "Vytvoren??"
 
@@ -112,38 +132,38 @@ msgid "Database Backup"
 msgstr ""
 
 #. module: auto_backup
-#: code:addons/auto_backup/models/db_backup.py:203
+#: code:addons/auto_backup/models/db_backup.py:219
 #: model:mail.message.subtype,description:auto_backup.mail_message_subtype_failure
 #, python-format
 msgid "Database backup failed."
 msgstr ""
 
 #. module: auto_backup
-#: code:addons/auto_backup/models/db_backup.py:211
+#: code:addons/auto_backup/models/db_backup.py:227
 #: model:mail.message.subtype,description:auto_backup.mail_message_subtype_success
 #, python-format
 msgid "Database backup succeeded."
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup_days_to_keep
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__days_to_keep
 msgid "Days To Keep"
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup_display_name
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__display_name
 msgid "Display Name"
 msgstr "Zobrazi?? meno"
 
 #. module: auto_backup
-#: code:addons/auto_backup/models/db_backup.py:114
+#: code:addons/auto_backup/models/db_backup.py:123
 #, python-format
 msgid ""
 "Do not save backups on your filestore, or you will backup your backups too!"
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+#: model_terms:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
 msgid "Execute backup"
 msgstr ""
 
@@ -153,17 +173,32 @@ msgid "Execute backup(s)"
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup_folder
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__folder
 msgid "Folder"
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__message_follower_ids
+msgid "Followers"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__message_channel_ids
+msgid "Followers (Channels)"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__message_partner_ids
+msgid "Followers (Partners)"
+msgstr ""
+
+#. module: auto_backup
+#: model_terms:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
 msgid "Go to Settings / Technical / Automation / Scheduled Actions."
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+#: model_terms:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
 msgid "Help"
 msgstr ""
 
@@ -173,22 +208,42 @@ msgid "I cannot remove backups from the future. Ask Doc for that."
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup_id
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__id
 msgid "ID"
 msgstr "ID"
 
 #. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup___last_update
+#: model:ir.model.fields,help:auto_backup.field_db_backup__message_unread
+msgid "If checked new messages require your attention."
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,help:auto_backup.field_db_backup__message_needaction
+msgid "If checked, new messages require your attention."
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,help:auto_backup.field_db_backup__message_has_error
+msgid "If checked, some messages have a delivery error."
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__message_is_follower
+msgid "Is Follower"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup____last_update
 msgid "Last Modified on"
 msgstr "Posledn?? modifik??cia"
 
 #. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup_write_uid
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__write_uid
 msgid "Last Updated by"
 msgstr "Naposledy upravoval"
 
 #. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup_write_date
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__write_date
 msgid "Last Updated on"
 msgstr "Naposledy upravovan??"
 
@@ -198,24 +253,64 @@ msgid "Local disk"
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup_method
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__message_main_attachment_id
+msgid "Main Attachment"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__message_has_error
+msgid "Message Delivery error"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__message_ids
+msgid "Messages"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__method
 msgid "Method"
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup_name
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__name
 msgid "Name"
 msgstr "Meno"
 
 #. module: auto_backup
-#: model:ir.model.fields,help:auto_backup.field_db_backup_sftp_private_key
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__message_needaction_counter
+msgid "Number of Actions"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__message_has_error_counter
+msgid "Number of error"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,help:auto_backup.field_db_backup__message_needaction_counter
+msgid "Number of messages which requires an action"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,help:auto_backup.field_db_backup__message_has_error_counter
+msgid "Number of messages with delivery error"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,help:auto_backup.field_db_backup__message_unread_counter
+msgid "Number of unread messages"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,help:auto_backup.field_db_backup__sftp_private_key
 msgid ""
 "Path to the private key file. Only the Odoo user should have read "
 "permissions for that file."
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup_sftp_private_key
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__sftp_private_key
 msgid "Private key location"
 msgstr ""
 
@@ -225,94 +320,124 @@ msgid "Remote SFTP server"
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup_sftp_password
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__sftp_password
 msgid "SFTP Password"
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup_sftp_port
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__sftp_port
 msgid "SFTP Port"
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup_sftp_host
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__sftp_host
 msgid "SFTP Server"
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+#: model_terms:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
 msgid "SFTP Settings"
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+#: model_terms:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
 msgid "Search the action named 'Backup scheduler'."
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+#: model_terms:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
 msgid ""
 "Set the scheduler to active and fill in how often you want backups generated."
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.model.fields,help:auto_backup.field_db_backup_name
+#: model:ir.model.fields,help:auto_backup.field_db_backup__name
 msgid "Summary of this backup process"
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+#: model_terms:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
 msgid "Test SFTP Connection"
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.model.fields,help:auto_backup.field_db_backup_sftp_host
+#: model:ir.model.fields,help:auto_backup.field_db_backup__sftp_host
 msgid ""
 "The host name or IP address from your remote server. For example 192.168.0.1"
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.model.fields,help:auto_backup.field_db_backup_sftp_password
+#: model:ir.model.fields,help:auto_backup.field_db_backup__sftp_password
 msgid ""
 "The password for the SFTP connection. If you specify a private key file, "
 "then this is the password to decrypt it."
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.model.fields,help:auto_backup.field_db_backup_sftp_port
+#: model:ir.model.fields,help:auto_backup.field_db_backup__sftp_port
 msgid "The port on the FTP server that accepts SSH/SFTP calls."
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.model.fields,help:auto_backup.field_db_backup_sftp_user
+#: model:ir.model.fields,help:auto_backup.field_db_backup__sftp_user
 msgid ""
 "The username where the SFTP connection should be made with. This is the user "
 "on the external server."
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__message_unread
+msgid "Unread Messages"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__message_unread_counter
+msgid "Unread Messages Counter"
+msgstr ""
+
+#. module: auto_backup
+#: model_terms:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
 msgid ""
 "Use SFTP with caution! This writes files to external servers under the path "
 "you specify."
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup_sftp_user
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__sftp_user
 msgid "Username in the SFTP Server"
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+#: model_terms:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
 msgid "Warning:"
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__website_message_ids
+msgid "Website Messages"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,help:auto_backup.field_db_backup__website_message_ids
+msgid "Website communication history"
+msgstr ""
+
+#. module: auto_backup
+#: model_terms:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
 msgid "john"
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+#: selection:db.backup,backup_format:0
+msgid "pg_dump custom format (without filestore)"
+msgstr ""
+
+#. module: auto_backup
+#: model_terms:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
 msgid "sftp.example.com"
 msgstr ""
+
+#. module: auto_backup
+#: selection:db.backup,backup_format:0
+msgid "zip (includes filestore)"
+msgstr ""
diff --git a/auto_backup/i18n/sl.po b/auto_backup/i18n/sl.po
index 0334fe3a17b..5ad0a58ad31 100644
--- a/auto_backup/i18n/sl.po
+++ b/auto_backup/i18n/sl.po
@@ -20,15 +20,25 @@ msgstr ""
 "%100==4 ? 2 : 3);\n"
 
 #. module: auto_backup
-#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+#: model_terms:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
 msgid "/home/odoo/.ssh/id_rsa"
 msgstr "/home/odoo/.ssh/id_rsa"
 
 #. module: auto_backup
-#: model:ir.model.fields,help:auto_backup.field_db_backup_folder
+#: model:ir.model.fields,help:auto_backup.field_db_backup__folder
 msgid "Absolute path for storing the backups"
 msgstr "Absolutna pot za shranjevanje varnostnih kopij"
 
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__message_needaction
+msgid "Action Needed"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__message_attachment_count
+msgid "Attachment Count"
+msgstr ""
+
 #. module: auto_backup
 #: model:ir.actions.act_window,name:auto_backup.action_backup_conf_form
 #: model:ir.ui.menu,name:auto_backup.backup_conf_menu
@@ -36,7 +46,7 @@ msgid "Automated Backups"
 msgstr "Samodejne varnostne kopije"
 
 #. module: auto_backup
-#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+#: model_terms:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
 msgid "Automatic backups of the database can be scheduled as follows:"
 msgstr "Samodejne varnostne kopije podatkovne baze se lahko razporedi na:"
 
@@ -45,6 +55,11 @@ msgstr "Samodejne varnostne kopije podatkovne baze se lahko razporedi na:"
 msgid "Backup Failed"
 msgstr ""
 
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__backup_format
+msgid "Backup Format"
+msgstr ""
+
 #. module: auto_backup
 #: model:ir.actions.server,name:auto_backup.ir_cron_backup_scheduler_0_ir_actions_server
 #: model:ir.cron,cron_name:auto_backup.ir_cron_backup_scheduler_0
@@ -58,7 +73,7 @@ msgid "Backup Successful"
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.model.fields,help:auto_backup.field_db_backup_days_to_keep
+#: model:ir.model.fields,help:auto_backup.field_db_backup__days_to_keep
 msgid ""
 "Backups older than this will be deleted automatically. Set 0 to disable "
 "autodeletion."
@@ -67,7 +82,7 @@ msgstr ""
 "bi onemogo??ili samodejno brisanje."
 
 #. module: auto_backup
-#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+#: model_terms:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
 msgid "Basic backup configuration"
 msgstr "Osnove nastavitve varnostnega kopiranja"
 
@@ -77,35 +92,42 @@ msgid "Cannot duplicate a configuration."
 msgstr "Nastavitev ne morete podvojiti."
 
 #. module: auto_backup
-#: model:ir.model.fields,help:auto_backup.field_db_backup_method
+#: model:ir.model.fields,help:auto_backup.field_db_backup__backup_format
+#, fuzzy
+#| msgid "Choose the storage method for this backup."
+msgid "Choose the format for this backup."
+msgstr "Izberite metodo shranjevanja za to varnostno kopiranje."
+
+#. module: auto_backup
+#: model:ir.model.fields,help:auto_backup.field_db_backup__method
 msgid "Choose the storage method for this backup."
 msgstr "Izberite metodo shranjevanja za to varnostno kopiranje."
 
 #. module: auto_backup
-#: code:addons/auto_backup/models/db_backup.py:249
+#: code:addons/auto_backup/models/db_backup.py:265
 #, python-format
 msgid "Cleanup of old database backups failed."
 msgstr "Brisanje starih varnostnih kopij podatkovnih baz neuspe??no."
 
 #. module: auto_backup
-#: code:addons/auto_backup/models/db_backup.py:128
+#: code:addons/auto_backup/models/db_backup.py:137
 #, python-format
 msgid "Connection Test Failed!"
 msgstr "Test povezave neuspe??en!"
 
 #. module: auto_backup
-#: code:addons/auto_backup/models/db_backup.py:123
+#: code:addons/auto_backup/models/db_backup.py:132
 #, python-format
 msgid "Connection Test Succeeded!"
 msgstr "Test povezave uspel!"
 
 #. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup_create_uid
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__create_uid
 msgid "Created by"
 msgstr "Ustvaril"
 
 #. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup_create_date
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__create_date
 msgid "Created on"
 msgstr "Ustvarjeno"
 
@@ -115,31 +137,31 @@ msgid "Database Backup"
 msgstr ""
 
 #. module: auto_backup
-#: code:addons/auto_backup/models/db_backup.py:203
+#: code:addons/auto_backup/models/db_backup.py:219
 #: model:mail.message.subtype,description:auto_backup.mail_message_subtype_failure
 #, python-format
 msgid "Database backup failed."
 msgstr "Varnostno kopiranje podatkovne baze neuspe??no."
 
 #. module: auto_backup
-#: code:addons/auto_backup/models/db_backup.py:211
+#: code:addons/auto_backup/models/db_backup.py:227
 #: model:mail.message.subtype,description:auto_backup.mail_message_subtype_success
 #, python-format
 msgid "Database backup succeeded."
 msgstr "Varnostno kopiranje podatkovne baze uspe??no."
 
 #. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup_days_to_keep
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__days_to_keep
 msgid "Days To Keep"
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup_display_name
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__display_name
 msgid "Display Name"
 msgstr "Prikazni naziv"
 
 #. module: auto_backup
-#: code:addons/auto_backup/models/db_backup.py:114
+#: code:addons/auto_backup/models/db_backup.py:123
 #, python-format
 msgid ""
 "Do not save backups on your filestore, or you will backup your backups too!"
@@ -148,7 +170,7 @@ msgstr ""
 "varnostne kopije!"
 
 #. module: auto_backup
-#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+#: model_terms:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
 msgid "Execute backup"
 msgstr ""
 
@@ -158,17 +180,32 @@ msgid "Execute backup(s)"
 msgstr "Izvedi varnostno/a kopiranje(a)"
 
 #. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup_folder
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__folder
 msgid "Folder"
 msgstr "Mapa"
 
 #. module: auto_backup
-#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__message_follower_ids
+msgid "Followers"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__message_channel_ids
+msgid "Followers (Channels)"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__message_partner_ids
+msgid "Followers (Partners)"
+msgstr ""
+
+#. module: auto_backup
+#: model_terms:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
 msgid "Go to Settings / Technical / Automation / Scheduled Actions."
 msgstr "Pojdi na Nastavitve / Tehni??no / Avtomatizacija / Planirana dejanja"
 
 #. module: auto_backup
-#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+#: model_terms:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
 msgid "Help"
 msgstr "Pomo??"
 
@@ -178,22 +215,42 @@ msgid "I cannot remove backups from the future. Ask Doc for that."
 msgstr "Varnostnih kopij iz prihodnosti ne morete odstraniti."
 
 #. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup_id
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__id
 msgid "ID"
 msgstr "ID"
 
 #. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup___last_update
+#: model:ir.model.fields,help:auto_backup.field_db_backup__message_unread
+msgid "If checked new messages require your attention."
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,help:auto_backup.field_db_backup__message_needaction
+msgid "If checked, new messages require your attention."
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,help:auto_backup.field_db_backup__message_has_error
+msgid "If checked, some messages have a delivery error."
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__message_is_follower
+msgid "Is Follower"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup____last_update
 msgid "Last Modified on"
 msgstr "Zadnji?? spremenjeno"
 
 #. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup_write_uid
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__write_uid
 msgid "Last Updated by"
 msgstr "Zadnji posodobil"
 
 #. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup_write_date
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__write_date
 msgid "Last Updated on"
 msgstr "Zadnji?? posodobljeno"
 
@@ -203,17 +260,57 @@ msgid "Local disk"
 msgstr "Lokalni disk"
 
 #. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup_method
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__message_main_attachment_id
+msgid "Main Attachment"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__message_has_error
+msgid "Message Delivery error"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__message_ids
+msgid "Messages"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__method
 msgid "Method"
 msgstr "Metoda"
 
 #. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup_name
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__name
 msgid "Name"
 msgstr "Naziv"
 
 #. module: auto_backup
-#: model:ir.model.fields,help:auto_backup.field_db_backup_sftp_private_key
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__message_needaction_counter
+msgid "Number of Actions"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__message_has_error_counter
+msgid "Number of error"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,help:auto_backup.field_db_backup__message_needaction_counter
+msgid "Number of messages which requires an action"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,help:auto_backup.field_db_backup__message_has_error_counter
+msgid "Number of messages with delivery error"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,help:auto_backup.field_db_backup__message_unread_counter
+msgid "Number of unread messages"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,help:auto_backup.field_db_backup__sftp_private_key
 msgid ""
 "Path to the private key file. Only the Odoo user should have read "
 "permissions for that file."
@@ -222,7 +319,7 @@ msgstr ""
 "branje te datoteke."
 
 #. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup_sftp_private_key
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__sftp_private_key
 msgid "Private key location"
 msgstr "Lokacija privatnega klju??a"
 
@@ -232,32 +329,32 @@ msgid "Remote SFTP server"
 msgstr "Oddaljeni SFTP stre??nik"
 
 #. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup_sftp_password
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__sftp_password
 msgid "SFTP Password"
 msgstr "SFTP geslo"
 
 #. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup_sftp_port
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__sftp_port
 msgid "SFTP Port"
 msgstr "SFTP port"
 
 #. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup_sftp_host
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__sftp_host
 msgid "SFTP Server"
 msgstr "SFTP stre??nik"
 
 #. module: auto_backup
-#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+#: model_terms:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
 msgid "SFTP Settings"
 msgstr "SFTP nastavitve"
 
 #. module: auto_backup
-#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+#: model_terms:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
 msgid "Search the action named 'Backup scheduler'."
 msgstr "Iskanje dejanja z nazivom 'Razporejevalnik varnostnih kopiranj'"
 
 #. module: auto_backup
-#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+#: model_terms:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
 msgid ""
 "Set the scheduler to active and fill in how often you want backups generated."
 msgstr ""
@@ -265,23 +362,23 @@ msgstr ""
 "ustvarjati varnostne kopije."
 
 #. module: auto_backup
-#: model:ir.model.fields,help:auto_backup.field_db_backup_name
+#: model:ir.model.fields,help:auto_backup.field_db_backup__name
 msgid "Summary of this backup process"
 msgstr "Povzetek procesa tega varnostnega kopiranja"
 
 #. module: auto_backup
-#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+#: model_terms:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
 msgid "Test SFTP Connection"
 msgstr "Test SFTP povezave"
 
 #. module: auto_backup
-#: model:ir.model.fields,help:auto_backup.field_db_backup_sftp_host
+#: model:ir.model.fields,help:auto_backup.field_db_backup__sftp_host
 msgid ""
 "The host name or IP address from your remote server. For example 192.168.0.1"
 msgstr "IP naslov ali 'hostname' oddaljenega stre??nika. Npr. 192.168.0.1"
 
 #. module: auto_backup
-#: model:ir.model.fields,help:auto_backup.field_db_backup_sftp_password
+#: model:ir.model.fields,help:auto_backup.field_db_backup__sftp_password
 msgid ""
 "The password for the SFTP connection. If you specify a private key file, "
 "then this is the password to decrypt it."
@@ -290,19 +387,29 @@ msgstr ""
 "za de??ifriranje klju??a."
 
 #. module: auto_backup
-#: model:ir.model.fields,help:auto_backup.field_db_backup_sftp_port
+#: model:ir.model.fields,help:auto_backup.field_db_backup__sftp_port
 msgid "The port on the FTP server that accepts SSH/SFTP calls."
 msgstr "Vrata FTP stre??nika, ki sprejema SSH/SFTP klice."
 
 #. module: auto_backup
-#: model:ir.model.fields,help:auto_backup.field_db_backup_sftp_user
+#: model:ir.model.fields,help:auto_backup.field_db_backup__sftp_user
 msgid ""
 "The username where the SFTP connection should be made with. This is the user "
 "on the external server."
 msgstr "Uporabni??ko ime SFTP povezave. To je uporabnik zunanjega stre??nika."
 
 #. module: auto_backup
-#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__message_unread
+msgid "Unread Messages"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__message_unread_counter
+msgid "Unread Messages Counter"
+msgstr ""
+
+#. module: auto_backup
+#: model_terms:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
 msgid ""
 "Use SFTP with caution! This writes files to external servers under the path "
 "you specify."
@@ -311,21 +418,41 @@ msgstr ""
 "v pot, ki jo sami dolo??ite."
 
 #. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup_sftp_user
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__sftp_user
 msgid "Username in the SFTP Server"
 msgstr "Uporabni??ko ime za SFTP stre??nik"
 
 #. module: auto_backup
-#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+#: model_terms:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
 msgid "Warning:"
 msgstr "Opozorilo:"
 
 #. module: auto_backup
-#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__website_message_ids
+msgid "Website Messages"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,help:auto_backup.field_db_backup__website_message_ids
+msgid "Website communication history"
+msgstr ""
+
+#. module: auto_backup
+#: model_terms:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
 msgid "john"
 msgstr "john"
 
 #. module: auto_backup
-#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+#: selection:db.backup,backup_format:0
+msgid "pg_dump custom format (without filestore)"
+msgstr ""
+
+#. module: auto_backup
+#: model_terms:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
 msgid "sftp.example.com"
 msgstr "sftp.example.com"
+
+#. module: auto_backup
+#: selection:db.backup,backup_format:0
+msgid "zip (includes filestore)"
+msgstr ""
diff --git a/auto_backup/i18n/sr.po b/auto_backup/i18n/sr.po
index 6c12aacc9eb..c8863b92a27 100644
--- a/auto_backup/i18n/sr.po
+++ b/auto_backup/i18n/sr.po
@@ -20,15 +20,25 @@ msgstr ""
 "%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n"
 
 #. module: auto_backup
-#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+#: model_terms:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
 msgid "/home/odoo/.ssh/id_rsa"
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.model.fields,help:auto_backup.field_db_backup_folder
+#: model:ir.model.fields,help:auto_backup.field_db_backup__folder
 msgid "Absolute path for storing the backups"
 msgstr ""
 
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__message_needaction
+msgid "Action Needed"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__message_attachment_count
+msgid "Attachment Count"
+msgstr ""
+
 #. module: auto_backup
 #: model:ir.actions.act_window,name:auto_backup.action_backup_conf_form
 #: model:ir.ui.menu,name:auto_backup.backup_conf_menu
@@ -36,7 +46,7 @@ msgid "Automated Backups"
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+#: model_terms:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
 msgid "Automatic backups of the database can be scheduled as follows:"
 msgstr ""
 
@@ -45,6 +55,11 @@ msgstr ""
 msgid "Backup Failed"
 msgstr ""
 
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__backup_format
+msgid "Backup Format"
+msgstr ""
+
 #. module: auto_backup
 #: model:ir.actions.server,name:auto_backup.ir_cron_backup_scheduler_0_ir_actions_server
 #: model:ir.cron,cron_name:auto_backup.ir_cron_backup_scheduler_0
@@ -58,14 +73,14 @@ msgid "Backup Successful"
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.model.fields,help:auto_backup.field_db_backup_days_to_keep
+#: model:ir.model.fields,help:auto_backup.field_db_backup__days_to_keep
 msgid ""
 "Backups older than this will be deleted automatically. Set 0 to disable "
 "autodeletion."
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+#: model_terms:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
 msgid "Basic backup configuration"
 msgstr ""
 
@@ -75,35 +90,40 @@ msgid "Cannot duplicate a configuration."
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.model.fields,help:auto_backup.field_db_backup_method
+#: model:ir.model.fields,help:auto_backup.field_db_backup__backup_format
+msgid "Choose the format for this backup."
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,help:auto_backup.field_db_backup__method
 msgid "Choose the storage method for this backup."
 msgstr ""
 
 #. module: auto_backup
-#: code:addons/auto_backup/models/db_backup.py:249
+#: code:addons/auto_backup/models/db_backup.py:265
 #, python-format
 msgid "Cleanup of old database backups failed."
 msgstr ""
 
 #. module: auto_backup
-#: code:addons/auto_backup/models/db_backup.py:128
+#: code:addons/auto_backup/models/db_backup.py:137
 #, python-format
 msgid "Connection Test Failed!"
 msgstr ""
 
 #. module: auto_backup
-#: code:addons/auto_backup/models/db_backup.py:123
+#: code:addons/auto_backup/models/db_backup.py:132
 #, python-format
 msgid "Connection Test Succeeded!"
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup_create_uid
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__create_uid
 msgid "Created by"
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup_create_date
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__create_date
 msgid "Created on"
 msgstr "Kreiran"
 
@@ -113,38 +133,38 @@ msgid "Database Backup"
 msgstr ""
 
 #. module: auto_backup
-#: code:addons/auto_backup/models/db_backup.py:203
+#: code:addons/auto_backup/models/db_backup.py:219
 #: model:mail.message.subtype,description:auto_backup.mail_message_subtype_failure
 #, python-format
 msgid "Database backup failed."
 msgstr ""
 
 #. module: auto_backup
-#: code:addons/auto_backup/models/db_backup.py:211
+#: code:addons/auto_backup/models/db_backup.py:227
 #: model:mail.message.subtype,description:auto_backup.mail_message_subtype_success
 #, python-format
 msgid "Database backup succeeded."
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup_days_to_keep
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__days_to_keep
 msgid "Days To Keep"
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup_display_name
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__display_name
 msgid "Display Name"
 msgstr ""
 
 #. module: auto_backup
-#: code:addons/auto_backup/models/db_backup.py:114
+#: code:addons/auto_backup/models/db_backup.py:123
 #, python-format
 msgid ""
 "Do not save backups on your filestore, or you will backup your backups too!"
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+#: model_terms:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
 msgid "Execute backup"
 msgstr ""
 
@@ -154,17 +174,32 @@ msgid "Execute backup(s)"
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup_folder
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__folder
 msgid "Folder"
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__message_follower_ids
+msgid "Followers"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__message_channel_ids
+msgid "Followers (Channels)"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__message_partner_ids
+msgid "Followers (Partners)"
+msgstr ""
+
+#. module: auto_backup
+#: model_terms:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
 msgid "Go to Settings / Technical / Automation / Scheduled Actions."
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+#: model_terms:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
 msgid "Help"
 msgstr ""
 
@@ -174,22 +209,42 @@ msgid "I cannot remove backups from the future. Ask Doc for that."
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup_id
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__id
 msgid "ID"
 msgstr "ID"
 
 #. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup___last_update
+#: model:ir.model.fields,help:auto_backup.field_db_backup__message_unread
+msgid "If checked new messages require your attention."
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,help:auto_backup.field_db_backup__message_needaction
+msgid "If checked, new messages require your attention."
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,help:auto_backup.field_db_backup__message_has_error
+msgid "If checked, some messages have a delivery error."
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__message_is_follower
+msgid "Is Follower"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup____last_update
 msgid "Last Modified on"
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup_write_uid
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__write_uid
 msgid "Last Updated by"
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup_write_date
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__write_date
 msgid "Last Updated on"
 msgstr ""
 
@@ -199,24 +254,64 @@ msgid "Local disk"
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup_method
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__message_main_attachment_id
+msgid "Main Attachment"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__message_has_error
+msgid "Message Delivery error"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__message_ids
+msgid "Messages"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__method
 msgid "Method"
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup_name
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__name
 msgid "Name"
 msgstr "Ime"
 
 #. module: auto_backup
-#: model:ir.model.fields,help:auto_backup.field_db_backup_sftp_private_key
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__message_needaction_counter
+msgid "Number of Actions"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__message_has_error_counter
+msgid "Number of error"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,help:auto_backup.field_db_backup__message_needaction_counter
+msgid "Number of messages which requires an action"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,help:auto_backup.field_db_backup__message_has_error_counter
+msgid "Number of messages with delivery error"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,help:auto_backup.field_db_backup__message_unread_counter
+msgid "Number of unread messages"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,help:auto_backup.field_db_backup__sftp_private_key
 msgid ""
 "Path to the private key file. Only the Odoo user should have read "
 "permissions for that file."
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup_sftp_private_key
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__sftp_private_key
 msgid "Private key location"
 msgstr ""
 
@@ -226,94 +321,124 @@ msgid "Remote SFTP server"
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup_sftp_password
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__sftp_password
 msgid "SFTP Password"
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup_sftp_port
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__sftp_port
 msgid "SFTP Port"
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup_sftp_host
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__sftp_host
 msgid "SFTP Server"
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+#: model_terms:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
 msgid "SFTP Settings"
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+#: model_terms:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
 msgid "Search the action named 'Backup scheduler'."
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+#: model_terms:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
 msgid ""
 "Set the scheduler to active and fill in how often you want backups generated."
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.model.fields,help:auto_backup.field_db_backup_name
+#: model:ir.model.fields,help:auto_backup.field_db_backup__name
 msgid "Summary of this backup process"
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+#: model_terms:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
 msgid "Test SFTP Connection"
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.model.fields,help:auto_backup.field_db_backup_sftp_host
+#: model:ir.model.fields,help:auto_backup.field_db_backup__sftp_host
 msgid ""
 "The host name or IP address from your remote server. For example 192.168.0.1"
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.model.fields,help:auto_backup.field_db_backup_sftp_password
+#: model:ir.model.fields,help:auto_backup.field_db_backup__sftp_password
 msgid ""
 "The password for the SFTP connection. If you specify a private key file, "
 "then this is the password to decrypt it."
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.model.fields,help:auto_backup.field_db_backup_sftp_port
+#: model:ir.model.fields,help:auto_backup.field_db_backup__sftp_port
 msgid "The port on the FTP server that accepts SSH/SFTP calls."
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.model.fields,help:auto_backup.field_db_backup_sftp_user
+#: model:ir.model.fields,help:auto_backup.field_db_backup__sftp_user
 msgid ""
 "The username where the SFTP connection should be made with. This is the user "
 "on the external server."
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__message_unread
+msgid "Unread Messages"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__message_unread_counter
+msgid "Unread Messages Counter"
+msgstr ""
+
+#. module: auto_backup
+#: model_terms:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
 msgid ""
 "Use SFTP with caution! This writes files to external servers under the path "
 "you specify."
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup_sftp_user
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__sftp_user
 msgid "Username in the SFTP Server"
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+#: model_terms:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
 msgid "Warning:"
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__website_message_ids
+msgid "Website Messages"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,help:auto_backup.field_db_backup__website_message_ids
+msgid "Website communication history"
+msgstr ""
+
+#. module: auto_backup
+#: model_terms:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
 msgid "john"
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+#: selection:db.backup,backup_format:0
+msgid "pg_dump custom format (without filestore)"
+msgstr ""
+
+#. module: auto_backup
+#: model_terms:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
 msgid "sftp.example.com"
 msgstr ""
+
+#. module: auto_backup
+#: selection:db.backup,backup_format:0
+msgid "zip (includes filestore)"
+msgstr ""
diff --git a/auto_backup/i18n/sr@latin.po b/auto_backup/i18n/sr@latin.po
index ae797fdbb9c..b6a72a97928 100644
--- a/auto_backup/i18n/sr@latin.po
+++ b/auto_backup/i18n/sr@latin.po
@@ -21,15 +21,25 @@ msgstr ""
 "%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n"
 
 #. module: auto_backup
-#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+#: model_terms:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
 msgid "/home/odoo/.ssh/id_rsa"
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.model.fields,help:auto_backup.field_db_backup_folder
+#: model:ir.model.fields,help:auto_backup.field_db_backup__folder
 msgid "Absolute path for storing the backups"
 msgstr ""
 
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__message_needaction
+msgid "Action Needed"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__message_attachment_count
+msgid "Attachment Count"
+msgstr ""
+
 #. module: auto_backup
 #: model:ir.actions.act_window,name:auto_backup.action_backup_conf_form
 #: model:ir.ui.menu,name:auto_backup.backup_conf_menu
@@ -37,7 +47,7 @@ msgid "Automated Backups"
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+#: model_terms:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
 msgid "Automatic backups of the database can be scheduled as follows:"
 msgstr ""
 
@@ -46,6 +56,11 @@ msgstr ""
 msgid "Backup Failed"
 msgstr ""
 
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__backup_format
+msgid "Backup Format"
+msgstr ""
+
 #. module: auto_backup
 #: model:ir.actions.server,name:auto_backup.ir_cron_backup_scheduler_0_ir_actions_server
 #: model:ir.cron,cron_name:auto_backup.ir_cron_backup_scheduler_0
@@ -59,14 +74,14 @@ msgid "Backup Successful"
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.model.fields,help:auto_backup.field_db_backup_days_to_keep
+#: model:ir.model.fields,help:auto_backup.field_db_backup__days_to_keep
 msgid ""
 "Backups older than this will be deleted automatically. Set 0 to disable "
 "autodeletion."
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+#: model_terms:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
 msgid "Basic backup configuration"
 msgstr ""
 
@@ -76,35 +91,40 @@ msgid "Cannot duplicate a configuration."
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.model.fields,help:auto_backup.field_db_backup_method
+#: model:ir.model.fields,help:auto_backup.field_db_backup__backup_format
+msgid "Choose the format for this backup."
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,help:auto_backup.field_db_backup__method
 msgid "Choose the storage method for this backup."
 msgstr ""
 
 #. module: auto_backup
-#: code:addons/auto_backup/models/db_backup.py:249
+#: code:addons/auto_backup/models/db_backup.py:265
 #, python-format
 msgid "Cleanup of old database backups failed."
 msgstr ""
 
 #. module: auto_backup
-#: code:addons/auto_backup/models/db_backup.py:128
+#: code:addons/auto_backup/models/db_backup.py:137
 #, python-format
 msgid "Connection Test Failed!"
 msgstr ""
 
 #. module: auto_backup
-#: code:addons/auto_backup/models/db_backup.py:123
+#: code:addons/auto_backup/models/db_backup.py:132
 #, python-format
 msgid "Connection Test Succeeded!"
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup_create_uid
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__create_uid
 msgid "Created by"
 msgstr "Kreirao"
 
 #. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup_create_date
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__create_date
 msgid "Created on"
 msgstr "Kreiran"
 
@@ -114,38 +134,38 @@ msgid "Database Backup"
 msgstr ""
 
 #. module: auto_backup
-#: code:addons/auto_backup/models/db_backup.py:203
+#: code:addons/auto_backup/models/db_backup.py:219
 #: model:mail.message.subtype,description:auto_backup.mail_message_subtype_failure
 #, python-format
 msgid "Database backup failed."
 msgstr ""
 
 #. module: auto_backup
-#: code:addons/auto_backup/models/db_backup.py:211
+#: code:addons/auto_backup/models/db_backup.py:227
 #: model:mail.message.subtype,description:auto_backup.mail_message_subtype_success
 #, python-format
 msgid "Database backup succeeded."
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup_days_to_keep
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__days_to_keep
 msgid "Days To Keep"
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup_display_name
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__display_name
 msgid "Display Name"
 msgstr "Ime za prikaz"
 
 #. module: auto_backup
-#: code:addons/auto_backup/models/db_backup.py:114
+#: code:addons/auto_backup/models/db_backup.py:123
 #, python-format
 msgid ""
 "Do not save backups on your filestore, or you will backup your backups too!"
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+#: model_terms:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
 msgid "Execute backup"
 msgstr ""
 
@@ -155,17 +175,32 @@ msgid "Execute backup(s)"
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup_folder
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__folder
 msgid "Folder"
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__message_follower_ids
+msgid "Followers"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__message_channel_ids
+msgid "Followers (Channels)"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__message_partner_ids
+msgid "Followers (Partners)"
+msgstr ""
+
+#. module: auto_backup
+#: model_terms:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
 msgid "Go to Settings / Technical / Automation / Scheduled Actions."
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+#: model_terms:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
 msgid "Help"
 msgstr ""
 
@@ -175,22 +210,42 @@ msgid "I cannot remove backups from the future. Ask Doc for that."
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup_id
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__id
 msgid "ID"
 msgstr "ID"
 
 #. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup___last_update
+#: model:ir.model.fields,help:auto_backup.field_db_backup__message_unread
+msgid "If checked new messages require your attention."
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,help:auto_backup.field_db_backup__message_needaction
+msgid "If checked, new messages require your attention."
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,help:auto_backup.field_db_backup__message_has_error
+msgid "If checked, some messages have a delivery error."
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__message_is_follower
+msgid "Is Follower"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup____last_update
 msgid "Last Modified on"
 msgstr "Zadnja izmjena"
 
 #. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup_write_uid
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__write_uid
 msgid "Last Updated by"
 msgstr "Zadnja izmjena"
 
 #. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup_write_date
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__write_date
 msgid "Last Updated on"
 msgstr "Zadnja izmjena"
 
@@ -200,24 +255,64 @@ msgid "Local disk"
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup_method
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__message_main_attachment_id
+msgid "Main Attachment"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__message_has_error
+msgid "Message Delivery error"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__message_ids
+msgid "Messages"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__method
 msgid "Method"
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup_name
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__name
 msgid "Name"
 msgstr "Ime:"
 
 #. module: auto_backup
-#: model:ir.model.fields,help:auto_backup.field_db_backup_sftp_private_key
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__message_needaction_counter
+msgid "Number of Actions"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__message_has_error_counter
+msgid "Number of error"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,help:auto_backup.field_db_backup__message_needaction_counter
+msgid "Number of messages which requires an action"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,help:auto_backup.field_db_backup__message_has_error_counter
+msgid "Number of messages with delivery error"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,help:auto_backup.field_db_backup__message_unread_counter
+msgid "Number of unread messages"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,help:auto_backup.field_db_backup__sftp_private_key
 msgid ""
 "Path to the private key file. Only the Odoo user should have read "
 "permissions for that file."
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup_sftp_private_key
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__sftp_private_key
 msgid "Private key location"
 msgstr ""
 
@@ -227,94 +322,124 @@ msgid "Remote SFTP server"
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup_sftp_password
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__sftp_password
 msgid "SFTP Password"
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup_sftp_port
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__sftp_port
 msgid "SFTP Port"
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup_sftp_host
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__sftp_host
 msgid "SFTP Server"
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+#: model_terms:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
 msgid "SFTP Settings"
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+#: model_terms:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
 msgid "Search the action named 'Backup scheduler'."
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+#: model_terms:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
 msgid ""
 "Set the scheduler to active and fill in how often you want backups generated."
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.model.fields,help:auto_backup.field_db_backup_name
+#: model:ir.model.fields,help:auto_backup.field_db_backup__name
 msgid "Summary of this backup process"
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+#: model_terms:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
 msgid "Test SFTP Connection"
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.model.fields,help:auto_backup.field_db_backup_sftp_host
+#: model:ir.model.fields,help:auto_backup.field_db_backup__sftp_host
 msgid ""
 "The host name or IP address from your remote server. For example 192.168.0.1"
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.model.fields,help:auto_backup.field_db_backup_sftp_password
+#: model:ir.model.fields,help:auto_backup.field_db_backup__sftp_password
 msgid ""
 "The password for the SFTP connection. If you specify a private key file, "
 "then this is the password to decrypt it."
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.model.fields,help:auto_backup.field_db_backup_sftp_port
+#: model:ir.model.fields,help:auto_backup.field_db_backup__sftp_port
 msgid "The port on the FTP server that accepts SSH/SFTP calls."
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.model.fields,help:auto_backup.field_db_backup_sftp_user
+#: model:ir.model.fields,help:auto_backup.field_db_backup__sftp_user
 msgid ""
 "The username where the SFTP connection should be made with. This is the user "
 "on the external server."
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__message_unread
+msgid "Unread Messages"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__message_unread_counter
+msgid "Unread Messages Counter"
+msgstr ""
+
+#. module: auto_backup
+#: model_terms:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
 msgid ""
 "Use SFTP with caution! This writes files to external servers under the path "
 "you specify."
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup_sftp_user
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__sftp_user
 msgid "Username in the SFTP Server"
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+#: model_terms:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
 msgid "Warning:"
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__website_message_ids
+msgid "Website Messages"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,help:auto_backup.field_db_backup__website_message_ids
+msgid "Website communication history"
+msgstr ""
+
+#. module: auto_backup
+#: model_terms:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
 msgid "john"
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+#: selection:db.backup,backup_format:0
+msgid "pg_dump custom format (without filestore)"
+msgstr ""
+
+#. module: auto_backup
+#: model_terms:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
 msgid "sftp.example.com"
 msgstr ""
+
+#. module: auto_backup
+#: selection:db.backup,backup_format:0
+msgid "zip (includes filestore)"
+msgstr ""
diff --git a/auto_backup/i18n/sv.po b/auto_backup/i18n/sv.po
index fd30fb917bc..de84ad21137 100644
--- a/auto_backup/i18n/sv.po
+++ b/auto_backup/i18n/sv.po
@@ -19,15 +19,25 @@ msgstr ""
 "Plural-Forms: nplurals=2; plural=(n != 1);\n"
 
 #. module: auto_backup
-#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+#: model_terms:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
 msgid "/home/odoo/.ssh/id_rsa"
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.model.fields,help:auto_backup.field_db_backup_folder
+#: model:ir.model.fields,help:auto_backup.field_db_backup__folder
 msgid "Absolute path for storing the backups"
 msgstr ""
 
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__message_needaction
+msgid "Action Needed"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__message_attachment_count
+msgid "Attachment Count"
+msgstr ""
+
 #. module: auto_backup
 #: model:ir.actions.act_window,name:auto_backup.action_backup_conf_form
 #: model:ir.ui.menu,name:auto_backup.backup_conf_menu
@@ -35,7 +45,7 @@ msgid "Automated Backups"
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+#: model_terms:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
 msgid "Automatic backups of the database can be scheduled as follows:"
 msgstr ""
 
@@ -44,6 +54,11 @@ msgstr ""
 msgid "Backup Failed"
 msgstr ""
 
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__backup_format
+msgid "Backup Format"
+msgstr ""
+
 #. module: auto_backup
 #: model:ir.actions.server,name:auto_backup.ir_cron_backup_scheduler_0_ir_actions_server
 #: model:ir.cron,cron_name:auto_backup.ir_cron_backup_scheduler_0
@@ -57,14 +72,14 @@ msgid "Backup Successful"
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.model.fields,help:auto_backup.field_db_backup_days_to_keep
+#: model:ir.model.fields,help:auto_backup.field_db_backup__days_to_keep
 msgid ""
 "Backups older than this will be deleted automatically. Set 0 to disable "
 "autodeletion."
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+#: model_terms:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
 msgid "Basic backup configuration"
 msgstr ""
 
@@ -74,35 +89,40 @@ msgid "Cannot duplicate a configuration."
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.model.fields,help:auto_backup.field_db_backup_method
+#: model:ir.model.fields,help:auto_backup.field_db_backup__backup_format
+msgid "Choose the format for this backup."
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,help:auto_backup.field_db_backup__method
 msgid "Choose the storage method for this backup."
 msgstr ""
 
 #. module: auto_backup
-#: code:addons/auto_backup/models/db_backup.py:249
+#: code:addons/auto_backup/models/db_backup.py:265
 #, python-format
 msgid "Cleanup of old database backups failed."
 msgstr ""
 
 #. module: auto_backup
-#: code:addons/auto_backup/models/db_backup.py:128
+#: code:addons/auto_backup/models/db_backup.py:137
 #, python-format
 msgid "Connection Test Failed!"
 msgstr ""
 
 #. module: auto_backup
-#: code:addons/auto_backup/models/db_backup.py:123
+#: code:addons/auto_backup/models/db_backup.py:132
 #, python-format
 msgid "Connection Test Succeeded!"
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup_create_uid
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__create_uid
 msgid "Created by"
 msgstr "Skapad av"
 
 #. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup_create_date
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__create_date
 msgid "Created on"
 msgstr "Skapad den"
 
@@ -112,38 +132,38 @@ msgid "Database Backup"
 msgstr ""
 
 #. module: auto_backup
-#: code:addons/auto_backup/models/db_backup.py:203
+#: code:addons/auto_backup/models/db_backup.py:219
 #: model:mail.message.subtype,description:auto_backup.mail_message_subtype_failure
 #, python-format
 msgid "Database backup failed."
 msgstr ""
 
 #. module: auto_backup
-#: code:addons/auto_backup/models/db_backup.py:211
+#: code:addons/auto_backup/models/db_backup.py:227
 #: model:mail.message.subtype,description:auto_backup.mail_message_subtype_success
 #, python-format
 msgid "Database backup succeeded."
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup_days_to_keep
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__days_to_keep
 msgid "Days To Keep"
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup_display_name
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__display_name
 msgid "Display Name"
 msgstr "Visa namn"
 
 #. module: auto_backup
-#: code:addons/auto_backup/models/db_backup.py:114
+#: code:addons/auto_backup/models/db_backup.py:123
 #, python-format
 msgid ""
 "Do not save backups on your filestore, or you will backup your backups too!"
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+#: model_terms:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
 msgid "Execute backup"
 msgstr ""
 
@@ -153,17 +173,32 @@ msgid "Execute backup(s)"
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup_folder
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__folder
 msgid "Folder"
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__message_follower_ids
+msgid "Followers"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__message_channel_ids
+msgid "Followers (Channels)"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__message_partner_ids
+msgid "Followers (Partners)"
+msgstr ""
+
+#. module: auto_backup
+#: model_terms:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
 msgid "Go to Settings / Technical / Automation / Scheduled Actions."
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+#: model_terms:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
 msgid "Help"
 msgstr ""
 
@@ -173,22 +208,42 @@ msgid "I cannot remove backups from the future. Ask Doc for that."
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup_id
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__id
 msgid "ID"
 msgstr "ID"
 
 #. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup___last_update
+#: model:ir.model.fields,help:auto_backup.field_db_backup__message_unread
+msgid "If checked new messages require your attention."
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,help:auto_backup.field_db_backup__message_needaction
+msgid "If checked, new messages require your attention."
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,help:auto_backup.field_db_backup__message_has_error
+msgid "If checked, some messages have a delivery error."
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__message_is_follower
+msgid "Is Follower"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup____last_update
 msgid "Last Modified on"
 msgstr "Senast redigerad"
 
 #. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup_write_uid
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__write_uid
 msgid "Last Updated by"
 msgstr "Senast uppdaterad av"
 
 #. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup_write_date
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__write_date
 msgid "Last Updated on"
 msgstr "Senast uppdaterad"
 
@@ -198,24 +253,64 @@ msgid "Local disk"
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup_method
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__message_main_attachment_id
+msgid "Main Attachment"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__message_has_error
+msgid "Message Delivery error"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__message_ids
+msgid "Messages"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__method
 msgid "Method"
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup_name
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__name
 msgid "Name"
 msgstr "Namn"
 
 #. module: auto_backup
-#: model:ir.model.fields,help:auto_backup.field_db_backup_sftp_private_key
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__message_needaction_counter
+msgid "Number of Actions"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__message_has_error_counter
+msgid "Number of error"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,help:auto_backup.field_db_backup__message_needaction_counter
+msgid "Number of messages which requires an action"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,help:auto_backup.field_db_backup__message_has_error_counter
+msgid "Number of messages with delivery error"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,help:auto_backup.field_db_backup__message_unread_counter
+msgid "Number of unread messages"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,help:auto_backup.field_db_backup__sftp_private_key
 msgid ""
 "Path to the private key file. Only the Odoo user should have read "
 "permissions for that file."
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup_sftp_private_key
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__sftp_private_key
 msgid "Private key location"
 msgstr ""
 
@@ -225,94 +320,124 @@ msgid "Remote SFTP server"
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup_sftp_password
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__sftp_password
 msgid "SFTP Password"
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup_sftp_port
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__sftp_port
 msgid "SFTP Port"
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup_sftp_host
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__sftp_host
 msgid "SFTP Server"
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+#: model_terms:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
 msgid "SFTP Settings"
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+#: model_terms:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
 msgid "Search the action named 'Backup scheduler'."
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+#: model_terms:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
 msgid ""
 "Set the scheduler to active and fill in how often you want backups generated."
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.model.fields,help:auto_backup.field_db_backup_name
+#: model:ir.model.fields,help:auto_backup.field_db_backup__name
 msgid "Summary of this backup process"
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+#: model_terms:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
 msgid "Test SFTP Connection"
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.model.fields,help:auto_backup.field_db_backup_sftp_host
+#: model:ir.model.fields,help:auto_backup.field_db_backup__sftp_host
 msgid ""
 "The host name or IP address from your remote server. For example 192.168.0.1"
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.model.fields,help:auto_backup.field_db_backup_sftp_password
+#: model:ir.model.fields,help:auto_backup.field_db_backup__sftp_password
 msgid ""
 "The password for the SFTP connection. If you specify a private key file, "
 "then this is the password to decrypt it."
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.model.fields,help:auto_backup.field_db_backup_sftp_port
+#: model:ir.model.fields,help:auto_backup.field_db_backup__sftp_port
 msgid "The port on the FTP server that accepts SSH/SFTP calls."
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.model.fields,help:auto_backup.field_db_backup_sftp_user
+#: model:ir.model.fields,help:auto_backup.field_db_backup__sftp_user
 msgid ""
 "The username where the SFTP connection should be made with. This is the user "
 "on the external server."
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__message_unread
+msgid "Unread Messages"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__message_unread_counter
+msgid "Unread Messages Counter"
+msgstr ""
+
+#. module: auto_backup
+#: model_terms:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
 msgid ""
 "Use SFTP with caution! This writes files to external servers under the path "
 "you specify."
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup_sftp_user
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__sftp_user
 msgid "Username in the SFTP Server"
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+#: model_terms:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
 msgid "Warning:"
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__website_message_ids
+msgid "Website Messages"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,help:auto_backup.field_db_backup__website_message_ids
+msgid "Website communication history"
+msgstr ""
+
+#. module: auto_backup
+#: model_terms:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
 msgid "john"
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+#: selection:db.backup,backup_format:0
+msgid "pg_dump custom format (without filestore)"
+msgstr ""
+
+#. module: auto_backup
+#: model_terms:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
 msgid "sftp.example.com"
 msgstr ""
+
+#. module: auto_backup
+#: selection:db.backup,backup_format:0
+msgid "zip (includes filestore)"
+msgstr ""
diff --git a/auto_backup/i18n/th.po b/auto_backup/i18n/th.po
index 0c49f3bdd06..065cdd14c8c 100644
--- a/auto_backup/i18n/th.po
+++ b/auto_backup/i18n/th.po
@@ -19,15 +19,25 @@ msgstr ""
 "Plural-Forms: nplurals=1; plural=0;\n"
 
 #. module: auto_backup
-#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+#: model_terms:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
 msgid "/home/odoo/.ssh/id_rsa"
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.model.fields,help:auto_backup.field_db_backup_folder
+#: model:ir.model.fields,help:auto_backup.field_db_backup__folder
 msgid "Absolute path for storing the backups"
 msgstr ""
 
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__message_needaction
+msgid "Action Needed"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__message_attachment_count
+msgid "Attachment Count"
+msgstr ""
+
 #. module: auto_backup
 #: model:ir.actions.act_window,name:auto_backup.action_backup_conf_form
 #: model:ir.ui.menu,name:auto_backup.backup_conf_menu
@@ -35,7 +45,7 @@ msgid "Automated Backups"
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+#: model_terms:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
 msgid "Automatic backups of the database can be scheduled as follows:"
 msgstr ""
 
@@ -44,6 +54,11 @@ msgstr ""
 msgid "Backup Failed"
 msgstr ""
 
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__backup_format
+msgid "Backup Format"
+msgstr ""
+
 #. module: auto_backup
 #: model:ir.actions.server,name:auto_backup.ir_cron_backup_scheduler_0_ir_actions_server
 #: model:ir.cron,cron_name:auto_backup.ir_cron_backup_scheduler_0
@@ -57,14 +72,14 @@ msgid "Backup Successful"
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.model.fields,help:auto_backup.field_db_backup_days_to_keep
+#: model:ir.model.fields,help:auto_backup.field_db_backup__days_to_keep
 msgid ""
 "Backups older than this will be deleted automatically. Set 0 to disable "
 "autodeletion."
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+#: model_terms:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
 msgid "Basic backup configuration"
 msgstr ""
 
@@ -74,35 +89,40 @@ msgid "Cannot duplicate a configuration."
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.model.fields,help:auto_backup.field_db_backup_method
+#: model:ir.model.fields,help:auto_backup.field_db_backup__backup_format
+msgid "Choose the format for this backup."
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,help:auto_backup.field_db_backup__method
 msgid "Choose the storage method for this backup."
 msgstr ""
 
 #. module: auto_backup
-#: code:addons/auto_backup/models/db_backup.py:249
+#: code:addons/auto_backup/models/db_backup.py:265
 #, python-format
 msgid "Cleanup of old database backups failed."
 msgstr ""
 
 #. module: auto_backup
-#: code:addons/auto_backup/models/db_backup.py:128
+#: code:addons/auto_backup/models/db_backup.py:137
 #, python-format
 msgid "Connection Test Failed!"
 msgstr ""
 
 #. module: auto_backup
-#: code:addons/auto_backup/models/db_backup.py:123
+#: code:addons/auto_backup/models/db_backup.py:132
 #, python-format
 msgid "Connection Test Succeeded!"
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup_create_uid
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__create_uid
 msgid "Created by"
 msgstr "????????????????????????"
 
 #. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup_create_date
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__create_date
 msgid "Created on"
 msgstr "??????????????????????????????"
 
@@ -112,38 +132,38 @@ msgid "Database Backup"
 msgstr ""
 
 #. module: auto_backup
-#: code:addons/auto_backup/models/db_backup.py:203
+#: code:addons/auto_backup/models/db_backup.py:219
 #: model:mail.message.subtype,description:auto_backup.mail_message_subtype_failure
 #, python-format
 msgid "Database backup failed."
 msgstr ""
 
 #. module: auto_backup
-#: code:addons/auto_backup/models/db_backup.py:211
+#: code:addons/auto_backup/models/db_backup.py:227
 #: model:mail.message.subtype,description:auto_backup.mail_message_subtype_success
 #, python-format
 msgid "Database backup succeeded."
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup_days_to_keep
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__days_to_keep
 msgid "Days To Keep"
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup_display_name
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__display_name
 msgid "Display Name"
 msgstr "??????????????????????????????????????????"
 
 #. module: auto_backup
-#: code:addons/auto_backup/models/db_backup.py:114
+#: code:addons/auto_backup/models/db_backup.py:123
 #, python-format
 msgid ""
 "Do not save backups on your filestore, or you will backup your backups too!"
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+#: model_terms:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
 msgid "Execute backup"
 msgstr ""
 
@@ -153,17 +173,32 @@ msgid "Execute backup(s)"
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup_folder
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__folder
 msgid "Folder"
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__message_follower_ids
+msgid "Followers"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__message_channel_ids
+msgid "Followers (Channels)"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__message_partner_ids
+msgid "Followers (Partners)"
+msgstr ""
+
+#. module: auto_backup
+#: model_terms:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
 msgid "Go to Settings / Technical / Automation / Scheduled Actions."
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+#: model_terms:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
 msgid "Help"
 msgstr ""
 
@@ -173,22 +208,42 @@ msgid "I cannot remove backups from the future. Ask Doc for that."
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup_id
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__id
 msgid "ID"
 msgstr "????????????"
 
 #. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup___last_update
+#: model:ir.model.fields,help:auto_backup.field_db_backup__message_unread
+msgid "If checked new messages require your attention."
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,help:auto_backup.field_db_backup__message_needaction
+msgid "If checked, new messages require your attention."
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,help:auto_backup.field_db_backup__message_has_error
+msgid "If checked, some messages have a delivery error."
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__message_is_follower
+msgid "Is Follower"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup____last_update
 msgid "Last Modified on"
 msgstr "??????????????????????????????????????????????????????????????????"
 
 #. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup_write_uid
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__write_uid
 msgid "Last Updated by"
 msgstr "???????????????????????????????????????????????????????????????"
 
 #. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup_write_date
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__write_date
 msgid "Last Updated on"
 msgstr "?????????????????????????????????????????????????????????????????????"
 
@@ -198,24 +253,64 @@ msgid "Local disk"
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup_method
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__message_main_attachment_id
+msgid "Main Attachment"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__message_has_error
+msgid "Message Delivery error"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__message_ids
+msgid "Messages"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__method
 msgid "Method"
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup_name
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__name
 msgid "Name"
 msgstr "????????????"
 
 #. module: auto_backup
-#: model:ir.model.fields,help:auto_backup.field_db_backup_sftp_private_key
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__message_needaction_counter
+msgid "Number of Actions"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__message_has_error_counter
+msgid "Number of error"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,help:auto_backup.field_db_backup__message_needaction_counter
+msgid "Number of messages which requires an action"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,help:auto_backup.field_db_backup__message_has_error_counter
+msgid "Number of messages with delivery error"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,help:auto_backup.field_db_backup__message_unread_counter
+msgid "Number of unread messages"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,help:auto_backup.field_db_backup__sftp_private_key
 msgid ""
 "Path to the private key file. Only the Odoo user should have read "
 "permissions for that file."
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup_sftp_private_key
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__sftp_private_key
 msgid "Private key location"
 msgstr ""
 
@@ -225,94 +320,124 @@ msgid "Remote SFTP server"
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup_sftp_password
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__sftp_password
 msgid "SFTP Password"
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup_sftp_port
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__sftp_port
 msgid "SFTP Port"
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup_sftp_host
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__sftp_host
 msgid "SFTP Server"
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+#: model_terms:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
 msgid "SFTP Settings"
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+#: model_terms:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
 msgid "Search the action named 'Backup scheduler'."
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+#: model_terms:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
 msgid ""
 "Set the scheduler to active and fill in how often you want backups generated."
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.model.fields,help:auto_backup.field_db_backup_name
+#: model:ir.model.fields,help:auto_backup.field_db_backup__name
 msgid "Summary of this backup process"
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+#: model_terms:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
 msgid "Test SFTP Connection"
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.model.fields,help:auto_backup.field_db_backup_sftp_host
+#: model:ir.model.fields,help:auto_backup.field_db_backup__sftp_host
 msgid ""
 "The host name or IP address from your remote server. For example 192.168.0.1"
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.model.fields,help:auto_backup.field_db_backup_sftp_password
+#: model:ir.model.fields,help:auto_backup.field_db_backup__sftp_password
 msgid ""
 "The password for the SFTP connection. If you specify a private key file, "
 "then this is the password to decrypt it."
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.model.fields,help:auto_backup.field_db_backup_sftp_port
+#: model:ir.model.fields,help:auto_backup.field_db_backup__sftp_port
 msgid "The port on the FTP server that accepts SSH/SFTP calls."
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.model.fields,help:auto_backup.field_db_backup_sftp_user
+#: model:ir.model.fields,help:auto_backup.field_db_backup__sftp_user
 msgid ""
 "The username where the SFTP connection should be made with. This is the user "
 "on the external server."
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__message_unread
+msgid "Unread Messages"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__message_unread_counter
+msgid "Unread Messages Counter"
+msgstr ""
+
+#. module: auto_backup
+#: model_terms:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
 msgid ""
 "Use SFTP with caution! This writes files to external servers under the path "
 "you specify."
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup_sftp_user
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__sftp_user
 msgid "Username in the SFTP Server"
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+#: model_terms:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
 msgid "Warning:"
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__website_message_ids
+msgid "Website Messages"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,help:auto_backup.field_db_backup__website_message_ids
+msgid "Website communication history"
+msgstr ""
+
+#. module: auto_backup
+#: model_terms:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
 msgid "john"
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+#: selection:db.backup,backup_format:0
+msgid "pg_dump custom format (without filestore)"
+msgstr ""
+
+#. module: auto_backup
+#: model_terms:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
 msgid "sftp.example.com"
 msgstr ""
+
+#. module: auto_backup
+#: selection:db.backup,backup_format:0
+msgid "zip (includes filestore)"
+msgstr ""
diff --git a/auto_backup/i18n/tr.po b/auto_backup/i18n/tr.po
index 75476af9cf2..88af72e159c 100644
--- a/auto_backup/i18n/tr.po
+++ b/auto_backup/i18n/tr.po
@@ -19,15 +19,25 @@ msgstr ""
 "Plural-Forms: nplurals=2; plural=(n > 1);\n"
 
 #. module: auto_backup
-#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+#: model_terms:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
 msgid "/home/odoo/.ssh/id_rsa"
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.model.fields,help:auto_backup.field_db_backup_folder
+#: model:ir.model.fields,help:auto_backup.field_db_backup__folder
 msgid "Absolute path for storing the backups"
 msgstr ""
 
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__message_needaction
+msgid "Action Needed"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__message_attachment_count
+msgid "Attachment Count"
+msgstr ""
+
 #. module: auto_backup
 #: model:ir.actions.act_window,name:auto_backup.action_backup_conf_form
 #: model:ir.ui.menu,name:auto_backup.backup_conf_menu
@@ -35,7 +45,7 @@ msgid "Automated Backups"
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+#: model_terms:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
 msgid "Automatic backups of the database can be scheduled as follows:"
 msgstr ""
 
@@ -44,6 +54,11 @@ msgstr ""
 msgid "Backup Failed"
 msgstr ""
 
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__backup_format
+msgid "Backup Format"
+msgstr ""
+
 #. module: auto_backup
 #: model:ir.actions.server,name:auto_backup.ir_cron_backup_scheduler_0_ir_actions_server
 #: model:ir.cron,cron_name:auto_backup.ir_cron_backup_scheduler_0
@@ -57,14 +72,14 @@ msgid "Backup Successful"
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.model.fields,help:auto_backup.field_db_backup_days_to_keep
+#: model:ir.model.fields,help:auto_backup.field_db_backup__days_to_keep
 msgid ""
 "Backups older than this will be deleted automatically. Set 0 to disable "
 "autodeletion."
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+#: model_terms:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
 msgid "Basic backup configuration"
 msgstr ""
 
@@ -74,35 +89,40 @@ msgid "Cannot duplicate a configuration."
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.model.fields,help:auto_backup.field_db_backup_method
+#: model:ir.model.fields,help:auto_backup.field_db_backup__backup_format
+msgid "Choose the format for this backup."
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,help:auto_backup.field_db_backup__method
 msgid "Choose the storage method for this backup."
 msgstr ""
 
 #. module: auto_backup
-#: code:addons/auto_backup/models/db_backup.py:249
+#: code:addons/auto_backup/models/db_backup.py:265
 #, python-format
 msgid "Cleanup of old database backups failed."
 msgstr ""
 
 #. module: auto_backup
-#: code:addons/auto_backup/models/db_backup.py:128
+#: code:addons/auto_backup/models/db_backup.py:137
 #, python-format
 msgid "Connection Test Failed!"
 msgstr ""
 
 #. module: auto_backup
-#: code:addons/auto_backup/models/db_backup.py:123
+#: code:addons/auto_backup/models/db_backup.py:132
 #, python-format
 msgid "Connection Test Succeeded!"
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup_create_uid
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__create_uid
 msgid "Created by"
 msgstr "Olu??turan"
 
 #. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup_create_date
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__create_date
 msgid "Created on"
 msgstr "Olu??turuldu"
 
@@ -112,38 +132,38 @@ msgid "Database Backup"
 msgstr ""
 
 #. module: auto_backup
-#: code:addons/auto_backup/models/db_backup.py:203
+#: code:addons/auto_backup/models/db_backup.py:219
 #: model:mail.message.subtype,description:auto_backup.mail_message_subtype_failure
 #, python-format
 msgid "Database backup failed."
 msgstr ""
 
 #. module: auto_backup
-#: code:addons/auto_backup/models/db_backup.py:211
+#: code:addons/auto_backup/models/db_backup.py:227
 #: model:mail.message.subtype,description:auto_backup.mail_message_subtype_success
 #, python-format
 msgid "Database backup succeeded."
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup_days_to_keep
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__days_to_keep
 msgid "Days To Keep"
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup_display_name
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__display_name
 msgid "Display Name"
 msgstr "G??r??nen ??sim"
 
 #. module: auto_backup
-#: code:addons/auto_backup/models/db_backup.py:114
+#: code:addons/auto_backup/models/db_backup.py:123
 #, python-format
 msgid ""
 "Do not save backups on your filestore, or you will backup your backups too!"
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+#: model_terms:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
 msgid "Execute backup"
 msgstr ""
 
@@ -153,17 +173,32 @@ msgid "Execute backup(s)"
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup_folder
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__folder
 msgid "Folder"
 msgstr "Klas??r"
 
 #. module: auto_backup
-#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__message_follower_ids
+msgid "Followers"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__message_channel_ids
+msgid "Followers (Channels)"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__message_partner_ids
+msgid "Followers (Partners)"
+msgstr ""
+
+#. module: auto_backup
+#: model_terms:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
 msgid "Go to Settings / Technical / Automation / Scheduled Actions."
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+#: model_terms:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
 msgid "Help"
 msgstr ""
 
@@ -173,22 +208,42 @@ msgid "I cannot remove backups from the future. Ask Doc for that."
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup_id
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__id
 msgid "ID"
 msgstr "ID"
 
 #. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup___last_update
+#: model:ir.model.fields,help:auto_backup.field_db_backup__message_unread
+msgid "If checked new messages require your attention."
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,help:auto_backup.field_db_backup__message_needaction
+msgid "If checked, new messages require your attention."
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,help:auto_backup.field_db_backup__message_has_error
+msgid "If checked, some messages have a delivery error."
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__message_is_follower
+msgid "Is Follower"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup____last_update
 msgid "Last Modified on"
 msgstr "Son de??i??iklik"
 
 #. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup_write_uid
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__write_uid
 msgid "Last Updated by"
 msgstr "Son g??ncelleyen"
 
 #. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup_write_date
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__write_date
 msgid "Last Updated on"
 msgstr "Son g??ncellenme"
 
@@ -198,24 +253,64 @@ msgid "Local disk"
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup_method
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__message_main_attachment_id
+msgid "Main Attachment"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__message_has_error
+msgid "Message Delivery error"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__message_ids
+msgid "Messages"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__method
 msgid "Method"
 msgstr "Method"
 
 #. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup_name
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__name
 msgid "Name"
 msgstr "Ad??"
 
 #. module: auto_backup
-#: model:ir.model.fields,help:auto_backup.field_db_backup_sftp_private_key
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__message_needaction_counter
+msgid "Number of Actions"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__message_has_error_counter
+msgid "Number of error"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,help:auto_backup.field_db_backup__message_needaction_counter
+msgid "Number of messages which requires an action"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,help:auto_backup.field_db_backup__message_has_error_counter
+msgid "Number of messages with delivery error"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,help:auto_backup.field_db_backup__message_unread_counter
+msgid "Number of unread messages"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,help:auto_backup.field_db_backup__sftp_private_key
 msgid ""
 "Path to the private key file. Only the Odoo user should have read "
 "permissions for that file."
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup_sftp_private_key
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__sftp_private_key
 msgid "Private key location"
 msgstr ""
 
@@ -225,94 +320,124 @@ msgid "Remote SFTP server"
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup_sftp_password
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__sftp_password
 msgid "SFTP Password"
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup_sftp_port
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__sftp_port
 msgid "SFTP Port"
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup_sftp_host
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__sftp_host
 msgid "SFTP Server"
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+#: model_terms:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
 msgid "SFTP Settings"
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+#: model_terms:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
 msgid "Search the action named 'Backup scheduler'."
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+#: model_terms:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
 msgid ""
 "Set the scheduler to active and fill in how often you want backups generated."
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.model.fields,help:auto_backup.field_db_backup_name
+#: model:ir.model.fields,help:auto_backup.field_db_backup__name
 msgid "Summary of this backup process"
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+#: model_terms:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
 msgid "Test SFTP Connection"
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.model.fields,help:auto_backup.field_db_backup_sftp_host
+#: model:ir.model.fields,help:auto_backup.field_db_backup__sftp_host
 msgid ""
 "The host name or IP address from your remote server. For example 192.168.0.1"
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.model.fields,help:auto_backup.field_db_backup_sftp_password
+#: model:ir.model.fields,help:auto_backup.field_db_backup__sftp_password
 msgid ""
 "The password for the SFTP connection. If you specify a private key file, "
 "then this is the password to decrypt it."
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.model.fields,help:auto_backup.field_db_backup_sftp_port
+#: model:ir.model.fields,help:auto_backup.field_db_backup__sftp_port
 msgid "The port on the FTP server that accepts SSH/SFTP calls."
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.model.fields,help:auto_backup.field_db_backup_sftp_user
+#: model:ir.model.fields,help:auto_backup.field_db_backup__sftp_user
 msgid ""
 "The username where the SFTP connection should be made with. This is the user "
 "on the external server."
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__message_unread
+msgid "Unread Messages"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__message_unread_counter
+msgid "Unread Messages Counter"
+msgstr ""
+
+#. module: auto_backup
+#: model_terms:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
 msgid ""
 "Use SFTP with caution! This writes files to external servers under the path "
 "you specify."
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup_sftp_user
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__sftp_user
 msgid "Username in the SFTP Server"
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+#: model_terms:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
 msgid "Warning:"
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__website_message_ids
+msgid "Website Messages"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,help:auto_backup.field_db_backup__website_message_ids
+msgid "Website communication history"
+msgstr ""
+
+#. module: auto_backup
+#: model_terms:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
 msgid "john"
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+#: selection:db.backup,backup_format:0
+msgid "pg_dump custom format (without filestore)"
+msgstr ""
+
+#. module: auto_backup
+#: model_terms:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
 msgid "sftp.example.com"
 msgstr ""
+
+#. module: auto_backup
+#: selection:db.backup,backup_format:0
+msgid "zip (includes filestore)"
+msgstr ""
diff --git a/auto_backup/i18n/tr_TR.po b/auto_backup/i18n/tr_TR.po
index 72db951f28a..64101b9b88b 100644
--- a/auto_backup/i18n/tr_TR.po
+++ b/auto_backup/i18n/tr_TR.po
@@ -20,15 +20,25 @@ msgstr ""
 "Plural-Forms: nplurals=1; plural=0;\n"
 
 #. module: auto_backup
-#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+#: model_terms:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
 msgid "/home/odoo/.ssh/id_rsa"
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.model.fields,help:auto_backup.field_db_backup_folder
+#: model:ir.model.fields,help:auto_backup.field_db_backup__folder
 msgid "Absolute path for storing the backups"
 msgstr ""
 
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__message_needaction
+msgid "Action Needed"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__message_attachment_count
+msgid "Attachment Count"
+msgstr ""
+
 #. module: auto_backup
 #: model:ir.actions.act_window,name:auto_backup.action_backup_conf_form
 #: model:ir.ui.menu,name:auto_backup.backup_conf_menu
@@ -36,7 +46,7 @@ msgid "Automated Backups"
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+#: model_terms:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
 msgid "Automatic backups of the database can be scheduled as follows:"
 msgstr ""
 
@@ -45,6 +55,11 @@ msgstr ""
 msgid "Backup Failed"
 msgstr ""
 
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__backup_format
+msgid "Backup Format"
+msgstr ""
+
 #. module: auto_backup
 #: model:ir.actions.server,name:auto_backup.ir_cron_backup_scheduler_0_ir_actions_server
 #: model:ir.cron,cron_name:auto_backup.ir_cron_backup_scheduler_0
@@ -58,14 +73,14 @@ msgid "Backup Successful"
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.model.fields,help:auto_backup.field_db_backup_days_to_keep
+#: model:ir.model.fields,help:auto_backup.field_db_backup__days_to_keep
 msgid ""
 "Backups older than this will be deleted automatically. Set 0 to disable "
 "autodeletion."
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+#: model_terms:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
 msgid "Basic backup configuration"
 msgstr ""
 
@@ -75,35 +90,40 @@ msgid "Cannot duplicate a configuration."
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.model.fields,help:auto_backup.field_db_backup_method
+#: model:ir.model.fields,help:auto_backup.field_db_backup__backup_format
+msgid "Choose the format for this backup."
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,help:auto_backup.field_db_backup__method
 msgid "Choose the storage method for this backup."
 msgstr ""
 
 #. module: auto_backup
-#: code:addons/auto_backup/models/db_backup.py:249
+#: code:addons/auto_backup/models/db_backup.py:265
 #, python-format
 msgid "Cleanup of old database backups failed."
 msgstr ""
 
 #. module: auto_backup
-#: code:addons/auto_backup/models/db_backup.py:128
+#: code:addons/auto_backup/models/db_backup.py:137
 #, python-format
 msgid "Connection Test Failed!"
 msgstr ""
 
 #. module: auto_backup
-#: code:addons/auto_backup/models/db_backup.py:123
+#: code:addons/auto_backup/models/db_backup.py:132
 #, python-format
 msgid "Connection Test Succeeded!"
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup_create_uid
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__create_uid
 msgid "Created by"
 msgstr "Olu??turan"
 
 #. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup_create_date
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__create_date
 msgid "Created on"
 msgstr "Olu??turulma tarihi"
 
@@ -113,38 +133,38 @@ msgid "Database Backup"
 msgstr ""
 
 #. module: auto_backup
-#: code:addons/auto_backup/models/db_backup.py:203
+#: code:addons/auto_backup/models/db_backup.py:219
 #: model:mail.message.subtype,description:auto_backup.mail_message_subtype_failure
 #, python-format
 msgid "Database backup failed."
 msgstr ""
 
 #. module: auto_backup
-#: code:addons/auto_backup/models/db_backup.py:211
+#: code:addons/auto_backup/models/db_backup.py:227
 #: model:mail.message.subtype,description:auto_backup.mail_message_subtype_success
 #, python-format
 msgid "Database backup succeeded."
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup_days_to_keep
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__days_to_keep
 msgid "Days To Keep"
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup_display_name
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__display_name
 msgid "Display Name"
 msgstr "G??r??nen ad"
 
 #. module: auto_backup
-#: code:addons/auto_backup/models/db_backup.py:114
+#: code:addons/auto_backup/models/db_backup.py:123
 #, python-format
 msgid ""
 "Do not save backups on your filestore, or you will backup your backups too!"
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+#: model_terms:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
 msgid "Execute backup"
 msgstr ""
 
@@ -154,17 +174,32 @@ msgid "Execute backup(s)"
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup_folder
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__folder
 msgid "Folder"
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__message_follower_ids
+msgid "Followers"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__message_channel_ids
+msgid "Followers (Channels)"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__message_partner_ids
+msgid "Followers (Partners)"
+msgstr ""
+
+#. module: auto_backup
+#: model_terms:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
 msgid "Go to Settings / Technical / Automation / Scheduled Actions."
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+#: model_terms:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
 msgid "Help"
 msgstr ""
 
@@ -174,22 +209,42 @@ msgid "I cannot remove backups from the future. Ask Doc for that."
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup_id
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__id
 msgid "ID"
 msgstr "Kimlik"
 
 #. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup___last_update
+#: model:ir.model.fields,help:auto_backup.field_db_backup__message_unread
+msgid "If checked new messages require your attention."
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,help:auto_backup.field_db_backup__message_needaction
+msgid "If checked, new messages require your attention."
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,help:auto_backup.field_db_backup__message_has_error
+msgid "If checked, some messages have a delivery error."
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__message_is_follower
+msgid "Is Follower"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup____last_update
 msgid "Last Modified on"
 msgstr "En son g??ncelleme tarihi"
 
 #. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup_write_uid
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__write_uid
 msgid "Last Updated by"
 msgstr "En son g??ncelleyen "
 
 #. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup_write_date
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__write_date
 msgid "Last Updated on"
 msgstr "En son g??ncelleme tarihi"
 
@@ -199,24 +254,64 @@ msgid "Local disk"
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup_method
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__message_main_attachment_id
+msgid "Main Attachment"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__message_has_error
+msgid "Message Delivery error"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__message_ids
+msgid "Messages"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__method
 msgid "Method"
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup_name
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__name
 msgid "Name"
 msgstr "Ad"
 
 #. module: auto_backup
-#: model:ir.model.fields,help:auto_backup.field_db_backup_sftp_private_key
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__message_needaction_counter
+msgid "Number of Actions"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__message_has_error_counter
+msgid "Number of error"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,help:auto_backup.field_db_backup__message_needaction_counter
+msgid "Number of messages which requires an action"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,help:auto_backup.field_db_backup__message_has_error_counter
+msgid "Number of messages with delivery error"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,help:auto_backup.field_db_backup__message_unread_counter
+msgid "Number of unread messages"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,help:auto_backup.field_db_backup__sftp_private_key
 msgid ""
 "Path to the private key file. Only the Odoo user should have read "
 "permissions for that file."
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup_sftp_private_key
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__sftp_private_key
 msgid "Private key location"
 msgstr ""
 
@@ -226,94 +321,124 @@ msgid "Remote SFTP server"
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup_sftp_password
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__sftp_password
 msgid "SFTP Password"
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup_sftp_port
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__sftp_port
 msgid "SFTP Port"
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup_sftp_host
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__sftp_host
 msgid "SFTP Server"
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+#: model_terms:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
 msgid "SFTP Settings"
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+#: model_terms:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
 msgid "Search the action named 'Backup scheduler'."
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+#: model_terms:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
 msgid ""
 "Set the scheduler to active and fill in how often you want backups generated."
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.model.fields,help:auto_backup.field_db_backup_name
+#: model:ir.model.fields,help:auto_backup.field_db_backup__name
 msgid "Summary of this backup process"
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+#: model_terms:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
 msgid "Test SFTP Connection"
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.model.fields,help:auto_backup.field_db_backup_sftp_host
+#: model:ir.model.fields,help:auto_backup.field_db_backup__sftp_host
 msgid ""
 "The host name or IP address from your remote server. For example 192.168.0.1"
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.model.fields,help:auto_backup.field_db_backup_sftp_password
+#: model:ir.model.fields,help:auto_backup.field_db_backup__sftp_password
 msgid ""
 "The password for the SFTP connection. If you specify a private key file, "
 "then this is the password to decrypt it."
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.model.fields,help:auto_backup.field_db_backup_sftp_port
+#: model:ir.model.fields,help:auto_backup.field_db_backup__sftp_port
 msgid "The port on the FTP server that accepts SSH/SFTP calls."
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.model.fields,help:auto_backup.field_db_backup_sftp_user
+#: model:ir.model.fields,help:auto_backup.field_db_backup__sftp_user
 msgid ""
 "The username where the SFTP connection should be made with. This is the user "
 "on the external server."
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__message_unread
+msgid "Unread Messages"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__message_unread_counter
+msgid "Unread Messages Counter"
+msgstr ""
+
+#. module: auto_backup
+#: model_terms:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
 msgid ""
 "Use SFTP with caution! This writes files to external servers under the path "
 "you specify."
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup_sftp_user
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__sftp_user
 msgid "Username in the SFTP Server"
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+#: model_terms:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
 msgid "Warning:"
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__website_message_ids
+msgid "Website Messages"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,help:auto_backup.field_db_backup__website_message_ids
+msgid "Website communication history"
+msgstr ""
+
+#. module: auto_backup
+#: model_terms:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
 msgid "john"
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+#: selection:db.backup,backup_format:0
+msgid "pg_dump custom format (without filestore)"
+msgstr ""
+
+#. module: auto_backup
+#: model_terms:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
 msgid "sftp.example.com"
 msgstr ""
+
+#. module: auto_backup
+#: selection:db.backup,backup_format:0
+msgid "zip (includes filestore)"
+msgstr ""
diff --git a/auto_backup/i18n/uk.po b/auto_backup/i18n/uk.po
index 77427bb812e..3e53f3f2d24 100644
--- a/auto_backup/i18n/uk.po
+++ b/auto_backup/i18n/uk.po
@@ -20,15 +20,25 @@ msgstr ""
 "%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n"
 
 #. module: auto_backup
-#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+#: model_terms:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
 msgid "/home/odoo/.ssh/id_rsa"
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.model.fields,help:auto_backup.field_db_backup_folder
+#: model:ir.model.fields,help:auto_backup.field_db_backup__folder
 msgid "Absolute path for storing the backups"
 msgstr ""
 
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__message_needaction
+msgid "Action Needed"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__message_attachment_count
+msgid "Attachment Count"
+msgstr ""
+
 #. module: auto_backup
 #: model:ir.actions.act_window,name:auto_backup.action_backup_conf_form
 #: model:ir.ui.menu,name:auto_backup.backup_conf_menu
@@ -36,7 +46,7 @@ msgid "Automated Backups"
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+#: model_terms:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
 msgid "Automatic backups of the database can be scheduled as follows:"
 msgstr ""
 
@@ -45,6 +55,11 @@ msgstr ""
 msgid "Backup Failed"
 msgstr ""
 
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__backup_format
+msgid "Backup Format"
+msgstr ""
+
 #. module: auto_backup
 #: model:ir.actions.server,name:auto_backup.ir_cron_backup_scheduler_0_ir_actions_server
 #: model:ir.cron,cron_name:auto_backup.ir_cron_backup_scheduler_0
@@ -58,14 +73,14 @@ msgid "Backup Successful"
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.model.fields,help:auto_backup.field_db_backup_days_to_keep
+#: model:ir.model.fields,help:auto_backup.field_db_backup__days_to_keep
 msgid ""
 "Backups older than this will be deleted automatically. Set 0 to disable "
 "autodeletion."
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+#: model_terms:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
 msgid "Basic backup configuration"
 msgstr ""
 
@@ -75,35 +90,40 @@ msgid "Cannot duplicate a configuration."
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.model.fields,help:auto_backup.field_db_backup_method
+#: model:ir.model.fields,help:auto_backup.field_db_backup__backup_format
+msgid "Choose the format for this backup."
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,help:auto_backup.field_db_backup__method
 msgid "Choose the storage method for this backup."
 msgstr ""
 
 #. module: auto_backup
-#: code:addons/auto_backup/models/db_backup.py:249
+#: code:addons/auto_backup/models/db_backup.py:265
 #, python-format
 msgid "Cleanup of old database backups failed."
 msgstr ""
 
 #. module: auto_backup
-#: code:addons/auto_backup/models/db_backup.py:128
+#: code:addons/auto_backup/models/db_backup.py:137
 #, python-format
 msgid "Connection Test Failed!"
 msgstr ""
 
 #. module: auto_backup
-#: code:addons/auto_backup/models/db_backup.py:123
+#: code:addons/auto_backup/models/db_backup.py:132
 #, python-format
 msgid "Connection Test Succeeded!"
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup_create_uid
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__create_uid
 msgid "Created by"
 msgstr "??????????????"
 
 #. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup_create_date
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__create_date
 msgid "Created on"
 msgstr "????????????????"
 
@@ -113,38 +133,38 @@ msgid "Database Backup"
 msgstr ""
 
 #. module: auto_backup
-#: code:addons/auto_backup/models/db_backup.py:203
+#: code:addons/auto_backup/models/db_backup.py:219
 #: model:mail.message.subtype,description:auto_backup.mail_message_subtype_failure
 #, python-format
 msgid "Database backup failed."
 msgstr ""
 
 #. module: auto_backup
-#: code:addons/auto_backup/models/db_backup.py:211
+#: code:addons/auto_backup/models/db_backup.py:227
 #: model:mail.message.subtype,description:auto_backup.mail_message_subtype_success
 #, python-format
 msgid "Database backup succeeded."
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup_days_to_keep
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__days_to_keep
 msgid "Days To Keep"
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup_display_name
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__display_name
 msgid "Display Name"
 msgstr "?????????? ?????? ????????????????????????"
 
 #. module: auto_backup
-#: code:addons/auto_backup/models/db_backup.py:114
+#: code:addons/auto_backup/models/db_backup.py:123
 #, python-format
 msgid ""
 "Do not save backups on your filestore, or you will backup your backups too!"
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+#: model_terms:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
 msgid "Execute backup"
 msgstr ""
 
@@ -154,17 +174,32 @@ msgid "Execute backup(s)"
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup_folder
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__folder
 msgid "Folder"
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__message_follower_ids
+msgid "Followers"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__message_channel_ids
+msgid "Followers (Channels)"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__message_partner_ids
+msgid "Followers (Partners)"
+msgstr ""
+
+#. module: auto_backup
+#: model_terms:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
 msgid "Go to Settings / Technical / Automation / Scheduled Actions."
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+#: model_terms:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
 msgid "Help"
 msgstr ""
 
@@ -174,22 +209,42 @@ msgid "I cannot remove backups from the future. Ask Doc for that."
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup_id
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__id
 msgid "ID"
 msgstr "ID"
 
 #. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup___last_update
+#: model:ir.model.fields,help:auto_backup.field_db_backup__message_unread
+msgid "If checked new messages require your attention."
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,help:auto_backup.field_db_backup__message_needaction
+msgid "If checked, new messages require your attention."
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,help:auto_backup.field_db_backup__message_has_error
+msgid "If checked, some messages have a delivery error."
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__message_is_follower
+msgid "Is Follower"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup____last_update
 msgid "Last Modified on"
 msgstr "?????????????? ??????????????????????"
 
 #. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup_write_uid
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__write_uid
 msgid "Last Updated by"
 msgstr "???????????????? ??????????????????????????"
 
 #. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup_write_date
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__write_date
 msgid "Last Updated on"
 msgstr "???????? ?????????????????? ??????????"
 
@@ -199,24 +254,64 @@ msgid "Local disk"
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup_method
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__message_main_attachment_id
+msgid "Main Attachment"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__message_has_error
+msgid "Message Delivery error"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__message_ids
+msgid "Messages"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__method
 msgid "Method"
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup_name
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__name
 msgid "Name"
 msgstr "Name"
 
 #. module: auto_backup
-#: model:ir.model.fields,help:auto_backup.field_db_backup_sftp_private_key
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__message_needaction_counter
+msgid "Number of Actions"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__message_has_error_counter
+msgid "Number of error"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,help:auto_backup.field_db_backup__message_needaction_counter
+msgid "Number of messages which requires an action"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,help:auto_backup.field_db_backup__message_has_error_counter
+msgid "Number of messages with delivery error"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,help:auto_backup.field_db_backup__message_unread_counter
+msgid "Number of unread messages"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,help:auto_backup.field_db_backup__sftp_private_key
 msgid ""
 "Path to the private key file. Only the Odoo user should have read "
 "permissions for that file."
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup_sftp_private_key
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__sftp_private_key
 msgid "Private key location"
 msgstr ""
 
@@ -226,94 +321,124 @@ msgid "Remote SFTP server"
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup_sftp_password
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__sftp_password
 msgid "SFTP Password"
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup_sftp_port
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__sftp_port
 msgid "SFTP Port"
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup_sftp_host
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__sftp_host
 msgid "SFTP Server"
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+#: model_terms:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
 msgid "SFTP Settings"
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+#: model_terms:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
 msgid "Search the action named 'Backup scheduler'."
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+#: model_terms:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
 msgid ""
 "Set the scheduler to active and fill in how often you want backups generated."
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.model.fields,help:auto_backup.field_db_backup_name
+#: model:ir.model.fields,help:auto_backup.field_db_backup__name
 msgid "Summary of this backup process"
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+#: model_terms:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
 msgid "Test SFTP Connection"
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.model.fields,help:auto_backup.field_db_backup_sftp_host
+#: model:ir.model.fields,help:auto_backup.field_db_backup__sftp_host
 msgid ""
 "The host name or IP address from your remote server. For example 192.168.0.1"
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.model.fields,help:auto_backup.field_db_backup_sftp_password
+#: model:ir.model.fields,help:auto_backup.field_db_backup__sftp_password
 msgid ""
 "The password for the SFTP connection. If you specify a private key file, "
 "then this is the password to decrypt it."
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.model.fields,help:auto_backup.field_db_backup_sftp_port
+#: model:ir.model.fields,help:auto_backup.field_db_backup__sftp_port
 msgid "The port on the FTP server that accepts SSH/SFTP calls."
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.model.fields,help:auto_backup.field_db_backup_sftp_user
+#: model:ir.model.fields,help:auto_backup.field_db_backup__sftp_user
 msgid ""
 "The username where the SFTP connection should be made with. This is the user "
 "on the external server."
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__message_unread
+msgid "Unread Messages"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__message_unread_counter
+msgid "Unread Messages Counter"
+msgstr ""
+
+#. module: auto_backup
+#: model_terms:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
 msgid ""
 "Use SFTP with caution! This writes files to external servers under the path "
 "you specify."
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup_sftp_user
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__sftp_user
 msgid "Username in the SFTP Server"
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+#: model_terms:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
 msgid "Warning:"
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__website_message_ids
+msgid "Website Messages"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,help:auto_backup.field_db_backup__website_message_ids
+msgid "Website communication history"
+msgstr ""
+
+#. module: auto_backup
+#: model_terms:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
 msgid "john"
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+#: selection:db.backup,backup_format:0
+msgid "pg_dump custom format (without filestore)"
+msgstr ""
+
+#. module: auto_backup
+#: model_terms:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
 msgid "sftp.example.com"
 msgstr ""
+
+#. module: auto_backup
+#: selection:db.backup,backup_format:0
+msgid "zip (includes filestore)"
+msgstr ""
diff --git a/auto_backup/i18n/vi.po b/auto_backup/i18n/vi.po
index 5de34d16242..93fb0f9373e 100644
--- a/auto_backup/i18n/vi.po
+++ b/auto_backup/i18n/vi.po
@@ -19,15 +19,25 @@ msgstr ""
 "Plural-Forms: nplurals=1; plural=0;\n"
 
 #. module: auto_backup
-#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+#: model_terms:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
 msgid "/home/odoo/.ssh/id_rsa"
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.model.fields,help:auto_backup.field_db_backup_folder
+#: model:ir.model.fields,help:auto_backup.field_db_backup__folder
 msgid "Absolute path for storing the backups"
 msgstr ""
 
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__message_needaction
+msgid "Action Needed"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__message_attachment_count
+msgid "Attachment Count"
+msgstr ""
+
 #. module: auto_backup
 #: model:ir.actions.act_window,name:auto_backup.action_backup_conf_form
 #: model:ir.ui.menu,name:auto_backup.backup_conf_menu
@@ -35,7 +45,7 @@ msgid "Automated Backups"
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+#: model_terms:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
 msgid "Automatic backups of the database can be scheduled as follows:"
 msgstr ""
 
@@ -44,6 +54,11 @@ msgstr ""
 msgid "Backup Failed"
 msgstr ""
 
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__backup_format
+msgid "Backup Format"
+msgstr ""
+
 #. module: auto_backup
 #: model:ir.actions.server,name:auto_backup.ir_cron_backup_scheduler_0_ir_actions_server
 #: model:ir.cron,cron_name:auto_backup.ir_cron_backup_scheduler_0
@@ -57,14 +72,14 @@ msgid "Backup Successful"
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.model.fields,help:auto_backup.field_db_backup_days_to_keep
+#: model:ir.model.fields,help:auto_backup.field_db_backup__days_to_keep
 msgid ""
 "Backups older than this will be deleted automatically. Set 0 to disable "
 "autodeletion."
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+#: model_terms:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
 msgid "Basic backup configuration"
 msgstr ""
 
@@ -74,35 +89,40 @@ msgid "Cannot duplicate a configuration."
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.model.fields,help:auto_backup.field_db_backup_method
+#: model:ir.model.fields,help:auto_backup.field_db_backup__backup_format
+msgid "Choose the format for this backup."
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,help:auto_backup.field_db_backup__method
 msgid "Choose the storage method for this backup."
 msgstr ""
 
 #. module: auto_backup
-#: code:addons/auto_backup/models/db_backup.py:249
+#: code:addons/auto_backup/models/db_backup.py:265
 #, python-format
 msgid "Cleanup of old database backups failed."
 msgstr ""
 
 #. module: auto_backup
-#: code:addons/auto_backup/models/db_backup.py:128
+#: code:addons/auto_backup/models/db_backup.py:137
 #, python-format
 msgid "Connection Test Failed!"
 msgstr ""
 
 #. module: auto_backup
-#: code:addons/auto_backup/models/db_backup.py:123
+#: code:addons/auto_backup/models/db_backup.py:132
 #, python-format
 msgid "Connection Test Succeeded!"
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup_create_uid
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__create_uid
 msgid "Created by"
 msgstr "???????c t???o b???i"
 
 #. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup_create_date
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__create_date
 msgid "Created on"
 msgstr "T???o tr??n"
 
@@ -112,38 +132,38 @@ msgid "Database Backup"
 msgstr ""
 
 #. module: auto_backup
-#: code:addons/auto_backup/models/db_backup.py:203
+#: code:addons/auto_backup/models/db_backup.py:219
 #: model:mail.message.subtype,description:auto_backup.mail_message_subtype_failure
 #, python-format
 msgid "Database backup failed."
 msgstr ""
 
 #. module: auto_backup
-#: code:addons/auto_backup/models/db_backup.py:211
+#: code:addons/auto_backup/models/db_backup.py:227
 #: model:mail.message.subtype,description:auto_backup.mail_message_subtype_success
 #, python-format
 msgid "Database backup succeeded."
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup_days_to_keep
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__days_to_keep
 msgid "Days To Keep"
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup_display_name
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__display_name
 msgid "Display Name"
 msgstr "T??n hi???n th???"
 
 #. module: auto_backup
-#: code:addons/auto_backup/models/db_backup.py:114
+#: code:addons/auto_backup/models/db_backup.py:123
 #, python-format
 msgid ""
 "Do not save backups on your filestore, or you will backup your backups too!"
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+#: model_terms:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
 msgid "Execute backup"
 msgstr ""
 
@@ -153,17 +173,32 @@ msgid "Execute backup(s)"
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup_folder
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__folder
 msgid "Folder"
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__message_follower_ids
+msgid "Followers"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__message_channel_ids
+msgid "Followers (Channels)"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__message_partner_ids
+msgid "Followers (Partners)"
+msgstr ""
+
+#. module: auto_backup
+#: model_terms:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
 msgid "Go to Settings / Technical / Automation / Scheduled Actions."
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+#: model_terms:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
 msgid "Help"
 msgstr ""
 
@@ -173,22 +208,42 @@ msgid "I cannot remove backups from the future. Ask Doc for that."
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup_id
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__id
 msgid "ID"
 msgstr "ID"
 
 #. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup___last_update
+#: model:ir.model.fields,help:auto_backup.field_db_backup__message_unread
+msgid "If checked new messages require your attention."
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,help:auto_backup.field_db_backup__message_needaction
+msgid "If checked, new messages require your attention."
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,help:auto_backup.field_db_backup__message_has_error
+msgid "If checked, some messages have a delivery error."
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__message_is_follower
+msgid "Is Follower"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup____last_update
 msgid "Last Modified on"
 msgstr "S???a l???n cu???i v??o"
 
 #. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup_write_uid
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__write_uid
 msgid "Last Updated by"
 msgstr "Last Updated by"
 
 #. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup_write_date
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__write_date
 msgid "Last Updated on"
 msgstr "C???p nh???t l???n cu???i v??o"
 
@@ -198,24 +253,64 @@ msgid "Local disk"
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup_method
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__message_main_attachment_id
+msgid "Main Attachment"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__message_has_error
+msgid "Message Delivery error"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__message_ids
+msgid "Messages"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__method
 msgid "Method"
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup_name
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__name
 msgid "Name"
 msgstr "T??n"
 
 #. module: auto_backup
-#: model:ir.model.fields,help:auto_backup.field_db_backup_sftp_private_key
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__message_needaction_counter
+msgid "Number of Actions"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__message_has_error_counter
+msgid "Number of error"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,help:auto_backup.field_db_backup__message_needaction_counter
+msgid "Number of messages which requires an action"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,help:auto_backup.field_db_backup__message_has_error_counter
+msgid "Number of messages with delivery error"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,help:auto_backup.field_db_backup__message_unread_counter
+msgid "Number of unread messages"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,help:auto_backup.field_db_backup__sftp_private_key
 msgid ""
 "Path to the private key file. Only the Odoo user should have read "
 "permissions for that file."
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup_sftp_private_key
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__sftp_private_key
 msgid "Private key location"
 msgstr ""
 
@@ -225,94 +320,124 @@ msgid "Remote SFTP server"
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup_sftp_password
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__sftp_password
 msgid "SFTP Password"
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup_sftp_port
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__sftp_port
 msgid "SFTP Port"
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup_sftp_host
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__sftp_host
 msgid "SFTP Server"
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+#: model_terms:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
 msgid "SFTP Settings"
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+#: model_terms:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
 msgid "Search the action named 'Backup scheduler'."
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+#: model_terms:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
 msgid ""
 "Set the scheduler to active and fill in how often you want backups generated."
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.model.fields,help:auto_backup.field_db_backup_name
+#: model:ir.model.fields,help:auto_backup.field_db_backup__name
 msgid "Summary of this backup process"
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+#: model_terms:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
 msgid "Test SFTP Connection"
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.model.fields,help:auto_backup.field_db_backup_sftp_host
+#: model:ir.model.fields,help:auto_backup.field_db_backup__sftp_host
 msgid ""
 "The host name or IP address from your remote server. For example 192.168.0.1"
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.model.fields,help:auto_backup.field_db_backup_sftp_password
+#: model:ir.model.fields,help:auto_backup.field_db_backup__sftp_password
 msgid ""
 "The password for the SFTP connection. If you specify a private key file, "
 "then this is the password to decrypt it."
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.model.fields,help:auto_backup.field_db_backup_sftp_port
+#: model:ir.model.fields,help:auto_backup.field_db_backup__sftp_port
 msgid "The port on the FTP server that accepts SSH/SFTP calls."
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.model.fields,help:auto_backup.field_db_backup_sftp_user
+#: model:ir.model.fields,help:auto_backup.field_db_backup__sftp_user
 msgid ""
 "The username where the SFTP connection should be made with. This is the user "
 "on the external server."
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__message_unread
+msgid "Unread Messages"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__message_unread_counter
+msgid "Unread Messages Counter"
+msgstr ""
+
+#. module: auto_backup
+#: model_terms:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
 msgid ""
 "Use SFTP with caution! This writes files to external servers under the path "
 "you specify."
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup_sftp_user
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__sftp_user
 msgid "Username in the SFTP Server"
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+#: model_terms:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
 msgid "Warning:"
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__website_message_ids
+msgid "Website Messages"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,help:auto_backup.field_db_backup__website_message_ids
+msgid "Website communication history"
+msgstr ""
+
+#. module: auto_backup
+#: model_terms:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
 msgid "john"
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+#: selection:db.backup,backup_format:0
+msgid "pg_dump custom format (without filestore)"
+msgstr ""
+
+#. module: auto_backup
+#: model_terms:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
 msgid "sftp.example.com"
 msgstr ""
+
+#. module: auto_backup
+#: selection:db.backup,backup_format:0
+msgid "zip (includes filestore)"
+msgstr ""
diff --git a/auto_backup/i18n/vi_VN.po b/auto_backup/i18n/vi_VN.po
index a4a73bd3d85..85e5384ecbc 100644
--- a/auto_backup/i18n/vi_VN.po
+++ b/auto_backup/i18n/vi_VN.po
@@ -20,15 +20,25 @@ msgstr ""
 "Plural-Forms: nplurals=1; plural=0;\n"
 
 #. module: auto_backup
-#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+#: model_terms:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
 msgid "/home/odoo/.ssh/id_rsa"
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.model.fields,help:auto_backup.field_db_backup_folder
+#: model:ir.model.fields,help:auto_backup.field_db_backup__folder
 msgid "Absolute path for storing the backups"
 msgstr ""
 
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__message_needaction
+msgid "Action Needed"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__message_attachment_count
+msgid "Attachment Count"
+msgstr ""
+
 #. module: auto_backup
 #: model:ir.actions.act_window,name:auto_backup.action_backup_conf_form
 #: model:ir.ui.menu,name:auto_backup.backup_conf_menu
@@ -36,7 +46,7 @@ msgid "Automated Backups"
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+#: model_terms:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
 msgid "Automatic backups of the database can be scheduled as follows:"
 msgstr ""
 
@@ -45,6 +55,11 @@ msgstr ""
 msgid "Backup Failed"
 msgstr ""
 
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__backup_format
+msgid "Backup Format"
+msgstr ""
+
 #. module: auto_backup
 #: model:ir.actions.server,name:auto_backup.ir_cron_backup_scheduler_0_ir_actions_server
 #: model:ir.cron,cron_name:auto_backup.ir_cron_backup_scheduler_0
@@ -58,14 +73,14 @@ msgid "Backup Successful"
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.model.fields,help:auto_backup.field_db_backup_days_to_keep
+#: model:ir.model.fields,help:auto_backup.field_db_backup__days_to_keep
 msgid ""
 "Backups older than this will be deleted automatically. Set 0 to disable "
 "autodeletion."
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+#: model_terms:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
 msgid "Basic backup configuration"
 msgstr ""
 
@@ -75,35 +90,40 @@ msgid "Cannot duplicate a configuration."
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.model.fields,help:auto_backup.field_db_backup_method
+#: model:ir.model.fields,help:auto_backup.field_db_backup__backup_format
+msgid "Choose the format for this backup."
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,help:auto_backup.field_db_backup__method
 msgid "Choose the storage method for this backup."
 msgstr ""
 
 #. module: auto_backup
-#: code:addons/auto_backup/models/db_backup.py:249
+#: code:addons/auto_backup/models/db_backup.py:265
 #, python-format
 msgid "Cleanup of old database backups failed."
 msgstr ""
 
 #. module: auto_backup
-#: code:addons/auto_backup/models/db_backup.py:128
+#: code:addons/auto_backup/models/db_backup.py:137
 #, python-format
 msgid "Connection Test Failed!"
 msgstr ""
 
 #. module: auto_backup
-#: code:addons/auto_backup/models/db_backup.py:123
+#: code:addons/auto_backup/models/db_backup.py:132
 #, python-format
 msgid "Connection Test Succeeded!"
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup_create_uid
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__create_uid
 msgid "Created by"
 msgstr "T???o b???i"
 
 #. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup_create_date
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__create_date
 msgid "Created on"
 msgstr "T???o v??o"
 
@@ -113,38 +133,38 @@ msgid "Database Backup"
 msgstr ""
 
 #. module: auto_backup
-#: code:addons/auto_backup/models/db_backup.py:203
+#: code:addons/auto_backup/models/db_backup.py:219
 #: model:mail.message.subtype,description:auto_backup.mail_message_subtype_failure
 #, python-format
 msgid "Database backup failed."
 msgstr ""
 
 #. module: auto_backup
-#: code:addons/auto_backup/models/db_backup.py:211
+#: code:addons/auto_backup/models/db_backup.py:227
 #: model:mail.message.subtype,description:auto_backup.mail_message_subtype_success
 #, python-format
 msgid "Database backup succeeded."
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup_days_to_keep
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__days_to_keep
 msgid "Days To Keep"
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup_display_name
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__display_name
 msgid "Display Name"
 msgstr ""
 
 #. module: auto_backup
-#: code:addons/auto_backup/models/db_backup.py:114
+#: code:addons/auto_backup/models/db_backup.py:123
 #, python-format
 msgid ""
 "Do not save backups on your filestore, or you will backup your backups too!"
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+#: model_terms:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
 msgid "Execute backup"
 msgstr ""
 
@@ -154,17 +174,32 @@ msgid "Execute backup(s)"
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup_folder
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__folder
 msgid "Folder"
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__message_follower_ids
+msgid "Followers"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__message_channel_ids
+msgid "Followers (Channels)"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__message_partner_ids
+msgid "Followers (Partners)"
+msgstr ""
+
+#. module: auto_backup
+#: model_terms:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
 msgid "Go to Settings / Technical / Automation / Scheduled Actions."
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+#: model_terms:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
 msgid "Help"
 msgstr ""
 
@@ -174,22 +209,42 @@ msgid "I cannot remove backups from the future. Ask Doc for that."
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup_id
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__id
 msgid "ID"
 msgstr "ID"
 
 #. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup___last_update
+#: model:ir.model.fields,help:auto_backup.field_db_backup__message_unread
+msgid "If checked new messages require your attention."
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,help:auto_backup.field_db_backup__message_needaction
+msgid "If checked, new messages require your attention."
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,help:auto_backup.field_db_backup__message_has_error
+msgid "If checked, some messages have a delivery error."
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__message_is_follower
+msgid "Is Follower"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup____last_update
 msgid "Last Modified on"
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup_write_uid
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__write_uid
 msgid "Last Updated by"
 msgstr "C???p nh???t l???n cu???i b???i"
 
 #. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup_write_date
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__write_date
 msgid "Last Updated on"
 msgstr "C???p nh???t l???n cu???i v??o"
 
@@ -199,24 +254,64 @@ msgid "Local disk"
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup_method
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__message_main_attachment_id
+msgid "Main Attachment"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__message_has_error
+msgid "Message Delivery error"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__message_ids
+msgid "Messages"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__method
 msgid "Method"
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup_name
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__name
 msgid "Name"
 msgstr "T??n"
 
 #. module: auto_backup
-#: model:ir.model.fields,help:auto_backup.field_db_backup_sftp_private_key
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__message_needaction_counter
+msgid "Number of Actions"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__message_has_error_counter
+msgid "Number of error"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,help:auto_backup.field_db_backup__message_needaction_counter
+msgid "Number of messages which requires an action"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,help:auto_backup.field_db_backup__message_has_error_counter
+msgid "Number of messages with delivery error"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,help:auto_backup.field_db_backup__message_unread_counter
+msgid "Number of unread messages"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,help:auto_backup.field_db_backup__sftp_private_key
 msgid ""
 "Path to the private key file. Only the Odoo user should have read "
 "permissions for that file."
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup_sftp_private_key
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__sftp_private_key
 msgid "Private key location"
 msgstr ""
 
@@ -226,94 +321,124 @@ msgid "Remote SFTP server"
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup_sftp_password
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__sftp_password
 msgid "SFTP Password"
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup_sftp_port
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__sftp_port
 msgid "SFTP Port"
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup_sftp_host
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__sftp_host
 msgid "SFTP Server"
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+#: model_terms:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
 msgid "SFTP Settings"
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+#: model_terms:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
 msgid "Search the action named 'Backup scheduler'."
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+#: model_terms:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
 msgid ""
 "Set the scheduler to active and fill in how often you want backups generated."
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.model.fields,help:auto_backup.field_db_backup_name
+#: model:ir.model.fields,help:auto_backup.field_db_backup__name
 msgid "Summary of this backup process"
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+#: model_terms:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
 msgid "Test SFTP Connection"
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.model.fields,help:auto_backup.field_db_backup_sftp_host
+#: model:ir.model.fields,help:auto_backup.field_db_backup__sftp_host
 msgid ""
 "The host name or IP address from your remote server. For example 192.168.0.1"
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.model.fields,help:auto_backup.field_db_backup_sftp_password
+#: model:ir.model.fields,help:auto_backup.field_db_backup__sftp_password
 msgid ""
 "The password for the SFTP connection. If you specify a private key file, "
 "then this is the password to decrypt it."
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.model.fields,help:auto_backup.field_db_backup_sftp_port
+#: model:ir.model.fields,help:auto_backup.field_db_backup__sftp_port
 msgid "The port on the FTP server that accepts SSH/SFTP calls."
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.model.fields,help:auto_backup.field_db_backup_sftp_user
+#: model:ir.model.fields,help:auto_backup.field_db_backup__sftp_user
 msgid ""
 "The username where the SFTP connection should be made with. This is the user "
 "on the external server."
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__message_unread
+msgid "Unread Messages"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__message_unread_counter
+msgid "Unread Messages Counter"
+msgstr ""
+
+#. module: auto_backup
+#: model_terms:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
 msgid ""
 "Use SFTP with caution! This writes files to external servers under the path "
 "you specify."
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup_sftp_user
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__sftp_user
 msgid "Username in the SFTP Server"
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+#: model_terms:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
 msgid "Warning:"
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__website_message_ids
+msgid "Website Messages"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,help:auto_backup.field_db_backup__website_message_ids
+msgid "Website communication history"
+msgstr ""
+
+#. module: auto_backup
+#: model_terms:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
 msgid "john"
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+#: selection:db.backup,backup_format:0
+msgid "pg_dump custom format (without filestore)"
+msgstr ""
+
+#. module: auto_backup
+#: model_terms:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
 msgid "sftp.example.com"
 msgstr ""
+
+#. module: auto_backup
+#: selection:db.backup,backup_format:0
+msgid "zip (includes filestore)"
+msgstr ""
diff --git a/auto_backup/i18n/zh_CN.po b/auto_backup/i18n/zh_CN.po
index d0977e09d74..8301fe08538 100644
--- a/auto_backup/i18n/zh_CN.po
+++ b/auto_backup/i18n/zh_CN.po
@@ -20,15 +20,25 @@ msgstr ""
 "Plural-Forms: nplurals=1; plural=0;\n"
 
 #. module: auto_backup
-#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+#: model_terms:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
 msgid "/home/odoo/.ssh/id_rsa"
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.model.fields,help:auto_backup.field_db_backup_folder
+#: model:ir.model.fields,help:auto_backup.field_db_backup__folder
 msgid "Absolute path for storing the backups"
 msgstr "??????????????????"
 
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__message_needaction
+msgid "Action Needed"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__message_attachment_count
+msgid "Attachment Count"
+msgstr ""
+
 #. module: auto_backup
 #: model:ir.actions.act_window,name:auto_backup.action_backup_conf_form
 #: model:ir.ui.menu,name:auto_backup.backup_conf_menu
@@ -36,7 +46,7 @@ msgid "Automated Backups"
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+#: model_terms:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
 msgid "Automatic backups of the database can be scheduled as follows:"
 msgstr "?????????????????????????????????????????????"
 
@@ -45,6 +55,11 @@ msgstr "?????????????????????????????????????????????"
 msgid "Backup Failed"
 msgstr ""
 
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__backup_format
+msgid "Backup Format"
+msgstr ""
+
 #. module: auto_backup
 #: model:ir.actions.server,name:auto_backup.ir_cron_backup_scheduler_0_ir_actions_server
 #: model:ir.cron,cron_name:auto_backup.ir_cron_backup_scheduler_0
@@ -58,14 +73,14 @@ msgid "Backup Successful"
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.model.fields,help:auto_backup.field_db_backup_days_to_keep
+#: model:ir.model.fields,help:auto_backup.field_db_backup__days_to_keep
 msgid ""
 "Backups older than this will be deleted automatically. Set 0 to disable "
 "autodeletion."
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+#: model_terms:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
 msgid "Basic backup configuration"
 msgstr ""
 
@@ -75,35 +90,42 @@ msgid "Cannot duplicate a configuration."
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.model.fields,help:auto_backup.field_db_backup_method
+#: model:ir.model.fields,help:auto_backup.field_db_backup__backup_format
+#, fuzzy
+#| msgid "Absolute path for storing the backups"
+msgid "Choose the format for this backup."
+msgstr "??????????????????"
+
+#. module: auto_backup
+#: model:ir.model.fields,help:auto_backup.field_db_backup__method
 msgid "Choose the storage method for this backup."
 msgstr ""
 
 #. module: auto_backup
-#: code:addons/auto_backup/models/db_backup.py:249
+#: code:addons/auto_backup/models/db_backup.py:265
 #, python-format
 msgid "Cleanup of old database backups failed."
 msgstr ""
 
 #. module: auto_backup
-#: code:addons/auto_backup/models/db_backup.py:128
+#: code:addons/auto_backup/models/db_backup.py:137
 #, python-format
 msgid "Connection Test Failed!"
 msgstr ""
 
 #. module: auto_backup
-#: code:addons/auto_backup/models/db_backup.py:123
+#: code:addons/auto_backup/models/db_backup.py:132
 #, python-format
 msgid "Connection Test Succeeded!"
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup_create_uid
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__create_uid
 msgid "Created by"
 msgstr "?????????"
 
 #. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup_create_date
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__create_date
 msgid "Created on"
 msgstr "????????????"
 
@@ -113,38 +135,38 @@ msgid "Database Backup"
 msgstr ""
 
 #. module: auto_backup
-#: code:addons/auto_backup/models/db_backup.py:203
+#: code:addons/auto_backup/models/db_backup.py:219
 #: model:mail.message.subtype,description:auto_backup.mail_message_subtype_failure
 #, python-format
 msgid "Database backup failed."
 msgstr ""
 
 #. module: auto_backup
-#: code:addons/auto_backup/models/db_backup.py:211
+#: code:addons/auto_backup/models/db_backup.py:227
 #: model:mail.message.subtype,description:auto_backup.mail_message_subtype_success
 #, python-format
 msgid "Database backup succeeded."
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup_days_to_keep
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__days_to_keep
 msgid "Days To Keep"
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup_display_name
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__display_name
 msgid "Display Name"
 msgstr "????????????"
 
 #. module: auto_backup
-#: code:addons/auto_backup/models/db_backup.py:114
+#: code:addons/auto_backup/models/db_backup.py:123
 #, python-format
 msgid ""
 "Do not save backups on your filestore, or you will backup your backups too!"
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+#: model_terms:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
 msgid "Execute backup"
 msgstr ""
 
@@ -154,17 +176,32 @@ msgid "Execute backup(s)"
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup_folder
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__folder
 msgid "Folder"
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__message_follower_ids
+msgid "Followers"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__message_channel_ids
+msgid "Followers (Channels)"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__message_partner_ids
+msgid "Followers (Partners)"
+msgstr ""
+
+#. module: auto_backup
+#: model_terms:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
 msgid "Go to Settings / Technical / Automation / Scheduled Actions."
 msgstr "??????   ?????? / ?????? / ????????? / ???????????????"
 
 #. module: auto_backup
-#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+#: model_terms:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
 msgid "Help"
 msgstr "??????"
 
@@ -174,22 +211,42 @@ msgid "I cannot remove backups from the future. Ask Doc for that."
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup_id
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__id
 msgid "ID"
 msgstr "ID"
 
 #. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup___last_update
+#: model:ir.model.fields,help:auto_backup.field_db_backup__message_unread
+msgid "If checked new messages require your attention."
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,help:auto_backup.field_db_backup__message_needaction
+msgid "If checked, new messages require your attention."
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,help:auto_backup.field_db_backup__message_has_error
+msgid "If checked, some messages have a delivery error."
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__message_is_follower
+msgid "Is Follower"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup____last_update
 msgid "Last Modified on"
 msgstr "??????????????????"
 
 #. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup_write_uid
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__write_uid
 msgid "Last Updated by"
 msgstr "???????????????"
 
 #. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup_write_date
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__write_date
 msgid "Last Updated on"
 msgstr "??????????????????"
 
@@ -199,24 +256,64 @@ msgid "Local disk"
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup_method
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__message_main_attachment_id
+msgid "Main Attachment"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__message_has_error
+msgid "Message Delivery error"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__message_ids
+msgid "Messages"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__method
 msgid "Method"
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup_name
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__name
 msgid "Name"
 msgstr "??????"
 
 #. module: auto_backup
-#: model:ir.model.fields,help:auto_backup.field_db_backup_sftp_private_key
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__message_needaction_counter
+msgid "Number of Actions"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__message_has_error_counter
+msgid "Number of error"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,help:auto_backup.field_db_backup__message_needaction_counter
+msgid "Number of messages which requires an action"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,help:auto_backup.field_db_backup__message_has_error_counter
+msgid "Number of messages with delivery error"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,help:auto_backup.field_db_backup__message_unread_counter
+msgid "Number of unread messages"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,help:auto_backup.field_db_backup__sftp_private_key
 msgid ""
 "Path to the private key file. Only the Odoo user should have read "
 "permissions for that file."
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup_sftp_private_key
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__sftp_private_key
 msgid "Private key location"
 msgstr ""
 
@@ -226,32 +323,32 @@ msgid "Remote SFTP server"
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup_sftp_password
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__sftp_password
 msgid "SFTP Password"
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup_sftp_port
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__sftp_port
 msgid "SFTP Port"
 msgstr "SFTP ??????"
 
 #. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup_sftp_host
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__sftp_host
 msgid "SFTP Server"
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+#: model_terms:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
 msgid "SFTP Settings"
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+#: model_terms:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
 msgid "Search the action named 'Backup scheduler'."
 msgstr "?????????????????????????????????Backup scheduler??????"
 
 #. module: auto_backup
-#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+#: model_terms:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
 msgid ""
 "Set the scheduler to active and fill in how often you want backups generated."
 msgstr ""
@@ -259,42 +356,52 @@ msgstr ""
 "???????????????????????????"
 
 #. module: auto_backup
-#: model:ir.model.fields,help:auto_backup.field_db_backup_name
+#: model:ir.model.fields,help:auto_backup.field_db_backup__name
 msgid "Summary of this backup process"
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+#: model_terms:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
 msgid "Test SFTP Connection"
 msgstr "?????? SFTP ??????"
 
 #. module: auto_backup
-#: model:ir.model.fields,help:auto_backup.field_db_backup_sftp_host
+#: model:ir.model.fields,help:auto_backup.field_db_backup__sftp_host
 msgid ""
 "The host name or IP address from your remote server. For example 192.168.0.1"
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.model.fields,help:auto_backup.field_db_backup_sftp_password
+#: model:ir.model.fields,help:auto_backup.field_db_backup__sftp_password
 msgid ""
 "The password for the SFTP connection. If you specify a private key file, "
 "then this is the password to decrypt it."
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.model.fields,help:auto_backup.field_db_backup_sftp_port
+#: model:ir.model.fields,help:auto_backup.field_db_backup__sftp_port
 msgid "The port on the FTP server that accepts SSH/SFTP calls."
 msgstr "?????? SSH/SFTP ?????????FTP ????????????????????????"
 
 #. module: auto_backup
-#: model:ir.model.fields,help:auto_backup.field_db_backup_sftp_user
+#: model:ir.model.fields,help:auto_backup.field_db_backup__sftp_user
 msgid ""
 "The username where the SFTP connection should be made with. This is the user "
 "on the external server."
 msgstr "SFTP ????????????????????????????????????SFTP????????????????????????"
 
 #. module: auto_backup
-#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__message_unread
+msgid "Unread Messages"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__message_unread_counter
+msgid "Unread Messages Counter"
+msgstr ""
+
+#. module: auto_backup
+#: model_terms:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
 msgid ""
 "Use SFTP with caution! This writes files to external servers under the path "
 "you specify."
@@ -303,21 +410,41 @@ msgstr ""
 "???????????????????????????"
 
 #. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup_sftp_user
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__sftp_user
 msgid "Username in the SFTP Server"
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+#: model_terms:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
 msgid "Warning:"
 msgstr "?????????"
 
 #. module: auto_backup
-#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__website_message_ids
+msgid "Website Messages"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,help:auto_backup.field_db_backup__website_message_ids
+msgid "Website communication history"
+msgstr ""
+
+#. module: auto_backup
+#: model_terms:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
 msgid "john"
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+#: selection:db.backup,backup_format:0
+msgid "pg_dump custom format (without filestore)"
+msgstr ""
+
+#. module: auto_backup
+#: model_terms:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
 msgid "sftp.example.com"
 msgstr ""
+
+#. module: auto_backup
+#: selection:db.backup,backup_format:0
+msgid "zip (includes filestore)"
+msgstr ""
diff --git a/auto_backup/i18n/zh_TW.po b/auto_backup/i18n/zh_TW.po
index d5813212411..cf817f0b6c8 100644
--- a/auto_backup/i18n/zh_TW.po
+++ b/auto_backup/i18n/zh_TW.po
@@ -20,15 +20,25 @@ msgstr ""
 "Plural-Forms: nplurals=1; plural=0;\n"
 
 #. module: auto_backup
-#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+#: model_terms:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
 msgid "/home/odoo/.ssh/id_rsa"
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.model.fields,help:auto_backup.field_db_backup_folder
+#: model:ir.model.fields,help:auto_backup.field_db_backup__folder
 msgid "Absolute path for storing the backups"
 msgstr ""
 
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__message_needaction
+msgid "Action Needed"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__message_attachment_count
+msgid "Attachment Count"
+msgstr ""
+
 #. module: auto_backup
 #: model:ir.actions.act_window,name:auto_backup.action_backup_conf_form
 #: model:ir.ui.menu,name:auto_backup.backup_conf_menu
@@ -36,7 +46,7 @@ msgid "Automated Backups"
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+#: model_terms:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
 msgid "Automatic backups of the database can be scheduled as follows:"
 msgstr ""
 
@@ -45,6 +55,11 @@ msgstr ""
 msgid "Backup Failed"
 msgstr ""
 
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__backup_format
+msgid "Backup Format"
+msgstr ""
+
 #. module: auto_backup
 #: model:ir.actions.server,name:auto_backup.ir_cron_backup_scheduler_0_ir_actions_server
 #: model:ir.cron,cron_name:auto_backup.ir_cron_backup_scheduler_0
@@ -58,14 +73,14 @@ msgid "Backup Successful"
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.model.fields,help:auto_backup.field_db_backup_days_to_keep
+#: model:ir.model.fields,help:auto_backup.field_db_backup__days_to_keep
 msgid ""
 "Backups older than this will be deleted automatically. Set 0 to disable "
 "autodeletion."
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+#: model_terms:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
 msgid "Basic backup configuration"
 msgstr ""
 
@@ -75,35 +90,40 @@ msgid "Cannot duplicate a configuration."
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.model.fields,help:auto_backup.field_db_backup_method
+#: model:ir.model.fields,help:auto_backup.field_db_backup__backup_format
+msgid "Choose the format for this backup."
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,help:auto_backup.field_db_backup__method
 msgid "Choose the storage method for this backup."
 msgstr ""
 
 #. module: auto_backup
-#: code:addons/auto_backup/models/db_backup.py:249
+#: code:addons/auto_backup/models/db_backup.py:265
 #, python-format
 msgid "Cleanup of old database backups failed."
 msgstr ""
 
 #. module: auto_backup
-#: code:addons/auto_backup/models/db_backup.py:128
+#: code:addons/auto_backup/models/db_backup.py:137
 #, python-format
 msgid "Connection Test Failed!"
 msgstr ""
 
 #. module: auto_backup
-#: code:addons/auto_backup/models/db_backup.py:123
+#: code:addons/auto_backup/models/db_backup.py:132
 #, python-format
 msgid "Connection Test Succeeded!"
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup_create_uid
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__create_uid
 msgid "Created by"
 msgstr "?????????"
 
 #. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup_create_date
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__create_date
 msgid "Created on"
 msgstr "?????????"
 
@@ -113,38 +133,38 @@ msgid "Database Backup"
 msgstr ""
 
 #. module: auto_backup
-#: code:addons/auto_backup/models/db_backup.py:203
+#: code:addons/auto_backup/models/db_backup.py:219
 #: model:mail.message.subtype,description:auto_backup.mail_message_subtype_failure
 #, python-format
 msgid "Database backup failed."
 msgstr ""
 
 #. module: auto_backup
-#: code:addons/auto_backup/models/db_backup.py:211
+#: code:addons/auto_backup/models/db_backup.py:227
 #: model:mail.message.subtype,description:auto_backup.mail_message_subtype_success
 #, python-format
 msgid "Database backup succeeded."
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup_days_to_keep
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__days_to_keep
 msgid "Days To Keep"
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup_display_name
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__display_name
 msgid "Display Name"
 msgstr "????????????"
 
 #. module: auto_backup
-#: code:addons/auto_backup/models/db_backup.py:114
+#: code:addons/auto_backup/models/db_backup.py:123
 #, python-format
 msgid ""
 "Do not save backups on your filestore, or you will backup your backups too!"
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+#: model_terms:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
 msgid "Execute backup"
 msgstr ""
 
@@ -154,17 +174,32 @@ msgid "Execute backup(s)"
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup_folder
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__folder
 msgid "Folder"
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__message_follower_ids
+msgid "Followers"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__message_channel_ids
+msgid "Followers (Channels)"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__message_partner_ids
+msgid "Followers (Partners)"
+msgstr ""
+
+#. module: auto_backup
+#: model_terms:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
 msgid "Go to Settings / Technical / Automation / Scheduled Actions."
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+#: model_terms:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
 msgid "Help"
 msgstr ""
 
@@ -174,22 +209,42 @@ msgid "I cannot remove backups from the future. Ask Doc for that."
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup_id
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__id
 msgid "ID"
 msgstr "ID"
 
 #. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup___last_update
+#: model:ir.model.fields,help:auto_backup.field_db_backup__message_unread
+msgid "If checked new messages require your attention."
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,help:auto_backup.field_db_backup__message_needaction
+msgid "If checked, new messages require your attention."
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,help:auto_backup.field_db_backup__message_has_error
+msgid "If checked, some messages have a delivery error."
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__message_is_follower
+msgid "Is Follower"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup____last_update
 msgid "Last Modified on"
 msgstr "????????????:"
 
 #. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup_write_uid
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__write_uid
 msgid "Last Updated by"
 msgstr "???????????????"
 
 #. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup_write_date
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__write_date
 msgid "Last Updated on"
 msgstr "???????????????"
 
@@ -199,24 +254,64 @@ msgid "Local disk"
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup_method
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__message_main_attachment_id
+msgid "Main Attachment"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__message_has_error
+msgid "Message Delivery error"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__message_ids
+msgid "Messages"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__method
 msgid "Method"
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup_name
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__name
 msgid "Name"
 msgstr "??????"
 
 #. module: auto_backup
-#: model:ir.model.fields,help:auto_backup.field_db_backup_sftp_private_key
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__message_needaction_counter
+msgid "Number of Actions"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__message_has_error_counter
+msgid "Number of error"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,help:auto_backup.field_db_backup__message_needaction_counter
+msgid "Number of messages which requires an action"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,help:auto_backup.field_db_backup__message_has_error_counter
+msgid "Number of messages with delivery error"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,help:auto_backup.field_db_backup__message_unread_counter
+msgid "Number of unread messages"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,help:auto_backup.field_db_backup__sftp_private_key
 msgid ""
 "Path to the private key file. Only the Odoo user should have read "
 "permissions for that file."
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup_sftp_private_key
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__sftp_private_key
 msgid "Private key location"
 msgstr ""
 
@@ -226,94 +321,124 @@ msgid "Remote SFTP server"
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup_sftp_password
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__sftp_password
 msgid "SFTP Password"
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup_sftp_port
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__sftp_port
 msgid "SFTP Port"
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup_sftp_host
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__sftp_host
 msgid "SFTP Server"
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+#: model_terms:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
 msgid "SFTP Settings"
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+#: model_terms:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
 msgid "Search the action named 'Backup scheduler'."
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+#: model_terms:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
 msgid ""
 "Set the scheduler to active and fill in how often you want backups generated."
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.model.fields,help:auto_backup.field_db_backup_name
+#: model:ir.model.fields,help:auto_backup.field_db_backup__name
 msgid "Summary of this backup process"
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+#: model_terms:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
 msgid "Test SFTP Connection"
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.model.fields,help:auto_backup.field_db_backup_sftp_host
+#: model:ir.model.fields,help:auto_backup.field_db_backup__sftp_host
 msgid ""
 "The host name or IP address from your remote server. For example 192.168.0.1"
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.model.fields,help:auto_backup.field_db_backup_sftp_password
+#: model:ir.model.fields,help:auto_backup.field_db_backup__sftp_password
 msgid ""
 "The password for the SFTP connection. If you specify a private key file, "
 "then this is the password to decrypt it."
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.model.fields,help:auto_backup.field_db_backup_sftp_port
+#: model:ir.model.fields,help:auto_backup.field_db_backup__sftp_port
 msgid "The port on the FTP server that accepts SSH/SFTP calls."
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.model.fields,help:auto_backup.field_db_backup_sftp_user
+#: model:ir.model.fields,help:auto_backup.field_db_backup__sftp_user
 msgid ""
 "The username where the SFTP connection should be made with. This is the user "
 "on the external server."
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__message_unread
+msgid "Unread Messages"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__message_unread_counter
+msgid "Unread Messages Counter"
+msgstr ""
+
+#. module: auto_backup
+#: model_terms:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
 msgid ""
 "Use SFTP with caution! This writes files to external servers under the path "
 "you specify."
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup_sftp_user
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__sftp_user
 msgid "Username in the SFTP Server"
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+#: model_terms:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
 msgid "Warning:"
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__website_message_ids
+msgid "Website Messages"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,help:auto_backup.field_db_backup__website_message_ids
+msgid "Website communication history"
+msgstr ""
+
+#. module: auto_backup
+#: model_terms:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
 msgid "john"
 msgstr ""
 
 #. module: auto_backup
-#: model:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+#: selection:db.backup,backup_format:0
+msgid "pg_dump custom format (without filestore)"
+msgstr ""
+
+#. module: auto_backup
+#: model_terms:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
 msgid "sftp.example.com"
 msgstr ""
+
+#. module: auto_backup
+#: selection:db.backup,backup_format:0
+msgid "zip (includes filestore)"
+msgstr ""
diff --git a/auto_backup/models/db_backup.py b/auto_backup/models/db_backup.py
index 3c1557424a4..be927eb7a04 100644
--- a/auto_backup/models/db_backup.py
+++ b/auto_backup/models/db_backup.py
@@ -1,6 +1,6 @@
-# ?? 2004-2009 Tiny SPRL (<http://tiny.be>).
-# ?? 2015 Agile Business Group <http://www.agilebg.com>
-# ?? 2016 Grupo ESOC Ingenier??a de Servicios, S.L.U. - Jairo Llopis
+# Copyright 2004-2009 Tiny SPRL (<http://tiny.be>).
+# Copyright 2015 Agile Business Group <http://www.agilebg.com>
+# Copyright 2016 Grupo ESOC Ingenieria de Servicios, S.L.U. - Jairo Llopis
 # License AGPL-3.0 or later (https://www.gnu.org/licenses/agpl).
 
 import logging
@@ -215,7 +215,7 @@ def backup_log(self):
             _logger.exception("Database backup failed: %s", self.name)
             escaped_tb = tools.html_escape(traceback.format_exc())
             self.message_post(  # pylint: disable=translation-required
-                "<p>%s</p><pre>%s</pre>" % (
+                body="<p>%s</p><pre>%s</pre>" % (
                     _("Database backup failed."),
                     escaped_tb),
                 subtype=self.env.ref(
@@ -224,7 +224,7 @@ def backup_log(self):
             )
         else:
             _logger.info("Database backup succeeded: %s", self.name)
-            self.message_post(_("Database backup succeeded."))
+            self.message_post(body=_("Database backup succeeded."))
 
     @api.multi
     def cleanup(self):
@@ -261,7 +261,7 @@ def cleanup_log(self):
             _logger.exception("Cleanup of old database backups failed: %s")
             escaped_tb = tools.html_escape(traceback.format_exc())
             self.message_post(  # pylint: disable=translation-required
-                "<p>%s</p><pre>%s</pre>" % (
+                body="<p>%s</p><pre>%s</pre>" % (
                     _("Cleanup of old database backups failed."),
                     escaped_tb),
                 subtype=self.env.ref("auto_backup.failure"))
diff --git a/auto_backup/readme/CONFIGURE.rst b/auto_backup/readme/CONFIGURE.rst
new file mode 100644
index 00000000000..406e814877b
--- /dev/null
+++ b/auto_backup/readme/CONFIGURE.rst
@@ -0,0 +1,3 @@
+Go to *Settings -> Database Structure -> Automated Backup* to
+create your configurations for each database that you needed
+to backups.
diff --git a/auto_backup/readme/CONTRIBUTORS.rst b/auto_backup/readme/CONTRIBUTORS.rst
new file mode 100644
index 00000000000..7ee6bb99e63
--- /dev/null
+++ b/auto_backup/readme/CONTRIBUTORS.rst
@@ -0,0 +1,6 @@
+* Yenthe Van Ginneken <yenthe.vanginneken@vanroey.be>
+* Alessio Gerace <alessio.gerace@agilebg.com>
+* Jairo Llopis <yajo.sk8@gmail.com>
+* Dave Lasley <dave@laslabs.com>
+* Andrea Stirpe <a.stirpe@onestein.nl>
+* Aitor Bouzas <aitor.bouzas@adaptivecity.com>
diff --git a/auto_backup/readme/DESCRIPTION.rst b/auto_backup/readme/DESCRIPTION.rst
new file mode 100644
index 00000000000..c7add463354
--- /dev/null
+++ b/auto_backup/readme/DESCRIPTION.rst
@@ -0,0 +1 @@
+A tool for all your back-ups, internal and external!
diff --git a/auto_backup/readme/INSTALL.rst b/auto_backup/readme/INSTALL.rst
new file mode 100644
index 00000000000..595ea5a6d06
--- /dev/null
+++ b/auto_backup/readme/INSTALL.rst
@@ -0,0 +1,4 @@
+Before installing this module, you need to execute::
+
+    pip3 install pysftp==0.2.8
+
diff --git a/auto_backup/readme/ROADMAP.rst b/auto_backup/readme/ROADMAP.rst
new file mode 100644
index 00000000000..e96ef407e25
--- /dev/null
+++ b/auto_backup/readme/ROADMAP.rst
@@ -0,0 +1,6 @@
+* On larger databases, it is possible that backups will die due to Odoo server
+  settings. In order to circumvent this without frivolously changing settings,
+  you need to run the backup from outside of the main Odoo instance. How to do
+  this is outlined in `this blog post
+  <https://blog.laslabs.com/2016/10/running-python-scripts-within-odoos-environment/>`_.
+* Backups won't work if list_db=False is configured in the instance.
diff --git a/auto_backup/readme/USAGE.rst b/auto_backup/readme/USAGE.rst
new file mode 100644
index 00000000000..58fe6275835
--- /dev/null
+++ b/auto_backup/readme/USAGE.rst
@@ -0,0 +1,46 @@
+Keep your Odoo data safe with this module. Take automated back-ups,
+remove them automatically and even write them to an external server
+through an encrypted tunnel. You can even specify how long local backups
+and external backups should be kept, automatically!
+
+Connect with an FTP Server
+~~~~~~~~~~~~~~~~~~~~~~~~~~
+
+Keep your data safe, through an SSH tunnel!
+-------------------------------------------
+
+Want to go even further and write your backups to an external server?
+You can with this module! Specify the credentials to the server, specify
+a path and everything will be backed up automatically. This is done
+through an SSH (encrypted) tunnel, thanks to pysftp, so your data is
+safe!
+
+Test connection
+~~~~~~~~~~~~~~~
+
+Checks your credentials in one click
+------------------------------------
+
+Want to make sure if the connection details are correct and if Odoo can
+automatically write them to the remote server? Simply click on the ???Test
+SFTP Connection??? button and you will get message telling you if
+everything is OK, or what is wrong!
+
+E-mail on backup failure
+~~~~~~~~~~~~~~~~~~~~~~~~
+
+Stay informed of problems, automatically!
+-----------------------------------------
+
+Do you want to know if the database backup succeeded or failed? Subscribe to
+the corresponding backup setting notification type.
+
+Run backups when you want
+~~~~~~~~~~~~~~~~~~~~~~~~~
+
+From the backups configuration list, press *More > Execute backup(s)* to
+manually execute the selected processes.
+
+.. image:: https://odoo-community.org/website/image/ir.attachment/5784_f2813bd/datas
+   :alt: Try me on Runbot
+   :target: https://runbot.odoo-community.org/runbot/149/11.0
diff --git a/auto_backup/static/description/index.html b/auto_backup/static/description/index.html
new file mode 100644
index 00000000000..a54d6616e86
--- /dev/null
+++ b/auto_backup/static/description/index.html
@@ -0,0 +1,512 @@
+<?xml version="1.0" encoding="utf-8" ?>
+<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
+<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
+<head>
+<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
+<meta name="generator" content="Docutils 0.15.1: http://docutils.sourceforge.net/" />
+<title>Database Auto-Backup</title>
+<style type="text/css">
+
+/*
+:Author: David Goodger (goodger@python.org)
+:Id: $Id: html4css1.css 7952 2016-07-26 18:15:59Z milde $
+:Copyright: This stylesheet has been placed in the public domain.
+
+Default cascading style sheet for the HTML output of Docutils.
+
+See http://docutils.sf.net/docs/howto/html-stylesheets.html for how to
+customize this style sheet.
+*/
+
+/* used to remove borders from tables and images */
+.borderless, table.borderless td, table.borderless th {
+  border: 0 }
+
+table.borderless td, table.borderless th {
+  /* Override padding for "table.docutils td" with "! important".
+     The right padding separates the table cells. */
+  padding: 0 0.5em 0 0 ! important }
+
+.first {
+  /* Override more specific margin styles with "! important". */
+  margin-top: 0 ! important }
+
+.last, .with-subtitle {
+  margin-bottom: 0 ! important }
+
+.hidden {
+  display: none }
+
+.subscript {
+  vertical-align: sub;
+  font-size: smaller }
+
+.superscript {
+  vertical-align: super;
+  font-size: smaller }
+
+a.toc-backref {
+  text-decoration: none ;
+  color: black }
+
+blockquote.epigraph {
+  margin: 2em 5em ; }
+
+dl.docutils dd {
+  margin-bottom: 0.5em }
+
+object[type="image/svg+xml"], object[type="application/x-shockwave-flash"] {
+  overflow: hidden;
+}
+
+/* Uncomment (and remove this text!) to get bold-faced definition list terms
+dl.docutils dt {
+  font-weight: bold }
+*/
+
+div.abstract {
+  margin: 2em 5em }
+
+div.abstract p.topic-title {
+  font-weight: bold ;
+  text-align: center }
+
+div.admonition, div.attention, div.caution, div.danger, div.error,
+div.hint, div.important, div.note, div.tip, div.warning {
+  margin: 2em ;
+  border: medium outset ;
+  padding: 1em }
+
+div.admonition p.admonition-title, div.hint p.admonition-title,
+div.important p.admonition-title, div.note p.admonition-title,
+div.tip p.admonition-title {
+  font-weight: bold ;
+  font-family: sans-serif }
+
+div.attention p.admonition-title, div.caution p.admonition-title,
+div.danger p.admonition-title, div.error p.admonition-title,
+div.warning p.admonition-title, .code .error {
+  color: red ;
+  font-weight: bold ;
+  font-family: sans-serif }
+
+/* Uncomment (and remove this text!) to get reduced vertical space in
+   compound paragraphs.
+div.compound .compound-first, div.compound .compound-middle {
+  margin-bottom: 0.5em }
+
+div.compound .compound-last, div.compound .compound-middle {
+  margin-top: 0.5em }
+*/
+
+div.dedication {
+  margin: 2em 5em ;
+  text-align: center ;
+  font-style: italic }
+
+div.dedication p.topic-title {
+  font-weight: bold ;
+  font-style: normal }
+
+div.figure {
+  margin-left: 2em ;
+  margin-right: 2em }
+
+div.footer, div.header {
+  clear: both;
+  font-size: smaller }
+
+div.line-block {
+  display: block ;
+  margin-top: 1em ;
+  margin-bottom: 1em }
+
+div.line-block div.line-block {
+  margin-top: 0 ;
+  margin-bottom: 0 ;
+  margin-left: 1.5em }
+
+div.sidebar {
+  margin: 0 0 0.5em 1em ;
+  border: medium outset ;
+  padding: 1em ;
+  background-color: #ffffee ;
+  width: 40% ;
+  float: right ;
+  clear: right }
+
+div.sidebar p.rubric {
+  font-family: sans-serif ;
+  font-size: medium }
+
+div.system-messages {
+  margin: 5em }
+
+div.system-messages h1 {
+  color: red }
+
+div.system-message {
+  border: medium outset ;
+  padding: 1em }
+
+div.system-message p.system-message-title {
+  color: red ;
+  font-weight: bold }
+
+div.topic {
+  margin: 2em }
+
+h1.section-subtitle, h2.section-subtitle, h3.section-subtitle,
+h4.section-subtitle, h5.section-subtitle, h6.section-subtitle {
+  margin-top: 0.4em }
+
+h1.title {
+  text-align: center }
+
+h2.subtitle {
+  text-align: center }
+
+hr.docutils {
+  width: 75% }
+
+img.align-left, .figure.align-left, object.align-left, table.align-left {
+  clear: left ;
+  float: left ;
+  margin-right: 1em }
+
+img.align-right, .figure.align-right, object.align-right, table.align-right {
+  clear: right ;
+  float: right ;
+  margin-left: 1em }
+
+img.align-center, .figure.align-center, object.align-center {
+  display: block;
+  margin-left: auto;
+  margin-right: auto;
+}
+
+table.align-center {
+  margin-left: auto;
+  margin-right: auto;
+}
+
+.align-left {
+  text-align: left }
+
+.align-center {
+  clear: both ;
+  text-align: center }
+
+.align-right {
+  text-align: right }
+
+/* reset inner alignment in figures */
+div.align-right {
+  text-align: inherit }
+
+/* div.align-center * { */
+/*   text-align: left } */
+
+.align-top    {
+  vertical-align: top }
+
+.align-middle {
+  vertical-align: middle }
+
+.align-bottom {
+  vertical-align: bottom }
+
+ol.simple, ul.simple {
+  margin-bottom: 1em }
+
+ol.arabic {
+  list-style: decimal }
+
+ol.loweralpha {
+  list-style: lower-alpha }
+
+ol.upperalpha {
+  list-style: upper-alpha }
+
+ol.lowerroman {
+  list-style: lower-roman }
+
+ol.upperroman {
+  list-style: upper-roman }
+
+p.attribution {
+  text-align: right ;
+  margin-left: 50% }
+
+p.caption {
+  font-style: italic }
+
+p.credits {
+  font-style: italic ;
+  font-size: smaller }
+
+p.label {
+  white-space: nowrap }
+
+p.rubric {
+  font-weight: bold ;
+  font-size: larger ;
+  color: maroon ;
+  text-align: center }
+
+p.sidebar-title {
+  font-family: sans-serif ;
+  font-weight: bold ;
+  font-size: larger }
+
+p.sidebar-subtitle {
+  font-family: sans-serif ;
+  font-weight: bold }
+
+p.topic-title {
+  font-weight: bold }
+
+pre.address {
+  margin-bottom: 0 ;
+  margin-top: 0 ;
+  font: inherit }
+
+pre.literal-block, pre.doctest-block, pre.math, pre.code {
+  margin-left: 2em ;
+  margin-right: 2em }
+
+pre.code .ln { color: grey; } /* line numbers */
+pre.code, code { background-color: #eeeeee }
+pre.code .comment, code .comment { color: #5C6576 }
+pre.code .keyword, code .keyword { color: #3B0D06; font-weight: bold }
+pre.code .literal.string, code .literal.string { color: #0C5404 }
+pre.code .name.builtin, code .name.builtin { color: #352B84 }
+pre.code .deleted, code .deleted { background-color: #DEB0A1}
+pre.code .inserted, code .inserted { background-color: #A3D289}
+
+span.classifier {
+  font-family: sans-serif ;
+  font-style: oblique }
+
+span.classifier-delimiter {
+  font-family: sans-serif ;
+  font-weight: bold }
+
+span.interpreted {
+  font-family: sans-serif }
+
+span.option {
+  white-space: nowrap }
+
+span.pre {
+  white-space: pre }
+
+span.problematic {
+  color: red }
+
+span.section-subtitle {
+  /* font-size relative to parent (h1..h6 element) */
+  font-size: 80% }
+
+table.citation {
+  border-left: solid 1px gray;
+  margin-left: 1px }
+
+table.docinfo {
+  margin: 2em 4em }
+
+table.docutils {
+  margin-top: 0.5em ;
+  margin-bottom: 0.5em }
+
+table.footnote {
+  border-left: solid 1px black;
+  margin-left: 1px }
+
+table.docutils td, table.docutils th,
+table.docinfo td, table.docinfo th {
+  padding-left: 0.5em ;
+  padding-right: 0.5em ;
+  vertical-align: top }
+
+table.docutils th.field-name, table.docinfo th.docinfo-name {
+  font-weight: bold ;
+  text-align: left ;
+  white-space: nowrap ;
+  padding-left: 0 }
+
+/* "booktabs" style (no vertical lines) */
+table.docutils.booktabs {
+  border: 0px;
+  border-top: 2px solid;
+  border-bottom: 2px solid;
+  border-collapse: collapse;
+}
+table.docutils.booktabs * {
+  border: 0px;
+}
+table.docutils.booktabs th {
+  border-bottom: thin solid;
+  text-align: left;
+}
+
+h1 tt.docutils, h2 tt.docutils, h3 tt.docutils,
+h4 tt.docutils, h5 tt.docutils, h6 tt.docutils {
+  font-size: 100% }
+
+ul.auto-toc {
+  list-style-type: none }
+
+</style>
+</head>
+<body>
+<div class="document" id="database-auto-backup">
+<h1 class="title">Database Auto-Backup</h1>
+
+<!-- !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
+!! This file is generated by oca-gen-addon-readme !!
+!! changes will be overwritten.                   !!
+!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! -->
+<p><a class="reference external" href="https://odoo-community.org/page/development-status"><img alt="Beta" src="https://img.shields.io/badge/maturity-Beta-yellow.png" /></a> <a class="reference external" href="http://www.gnu.org/licenses/agpl-3.0-standalone.html"><img alt="License: AGPL-3" src="https://img.shields.io/badge/licence-AGPL--3-blue.png" /></a> <a class="reference external" href="https://github.com/OCA/server-tools/tree/12.0/auto_backup"><img alt="OCA/server-tools" src="https://img.shields.io/badge/github-OCA%2Fserver--tools-lightgray.png?logo=github" /></a> <a class="reference external" href="https://translation.odoo-community.org/projects/server-tools-12-0/server-tools-12-0-auto_backup"><img alt="Translate me on Weblate" src="https://img.shields.io/badge/weblate-Translate%20me-F47D42.png" /></a> <a class="reference external" href="https://runbot.odoo-community.org/runbot/149/12.0"><img alt="Try me on Runbot" src="https://img.shields.io/badge/runbot-Try%20me-875A7B.png" /></a></p>
+<p>A tool for all your back-ups, internal and external!</p>
+<p><strong>Table of contents</strong></p>
+<div class="contents local topic" id="contents">
+<ul class="simple">
+<li><a class="reference internal" href="#installation" id="id1">Installation</a></li>
+<li><a class="reference internal" href="#configuration" id="id2">Configuration</a></li>
+<li><a class="reference internal" href="#usage" id="id3">Usage</a><ul>
+<li><a class="reference internal" href="#connect-with-an-ftp-server" id="id4">Connect with an FTP Server</a><ul>
+<li><a class="reference internal" href="#keep-your-data-safe-through-an-ssh-tunnel" id="id5">Keep your data safe, through an SSH tunnel!</a></li>
+</ul>
+</li>
+<li><a class="reference internal" href="#test-connection" id="id6">Test connection</a><ul>
+<li><a class="reference internal" href="#checks-your-credentials-in-one-click" id="id7">Checks your credentials in one click</a></li>
+</ul>
+</li>
+<li><a class="reference internal" href="#e-mail-on-backup-failure" id="id8">E-mail on backup failure</a><ul>
+<li><a class="reference internal" href="#stay-informed-of-problems-automatically" id="id9">Stay informed of problems, automatically!</a></li>
+</ul>
+</li>
+<li><a class="reference internal" href="#run-backups-when-you-want" id="id10">Run backups when you want</a></li>
+</ul>
+</li>
+<li><a class="reference internal" href="#known-issues-roadmap" id="id11">Known issues / Roadmap</a></li>
+<li><a class="reference internal" href="#bug-tracker" id="id12">Bug Tracker</a></li>
+<li><a class="reference internal" href="#credits" id="id13">Credits</a><ul>
+<li><a class="reference internal" href="#authors" id="id14">Authors</a></li>
+<li><a class="reference internal" href="#contributors" id="id15">Contributors</a></li>
+<li><a class="reference internal" href="#maintainers" id="id16">Maintainers</a></li>
+</ul>
+</li>
+</ul>
+</div>
+<div class="section" id="installation">
+<h1><a class="toc-backref" href="#id1">Installation</a></h1>
+<p>Before installing this module, you need to execute:</p>
+<pre class="literal-block">
+pip3 install pysftp==0.2.8
+</pre>
+</div>
+<div class="section" id="configuration">
+<h1><a class="toc-backref" href="#id2">Configuration</a></h1>
+<p>Go to <em>Settings -&gt; Database Structure -&gt; Automated Backup</em> to
+create your configurations for each database that you needed
+to backups.</p>
+</div>
+<div class="section" id="usage">
+<h1><a class="toc-backref" href="#id3">Usage</a></h1>
+<p>Keep your Odoo data safe with this module. Take automated back-ups,
+remove them automatically and even write them to an external server
+through an encrypted tunnel. You can even specify how long local backups
+and external backups should be kept, automatically!</p>
+<div class="section" id="connect-with-an-ftp-server">
+<h2><a class="toc-backref" href="#id4">Connect with an FTP Server</a></h2>
+<div class="section" id="keep-your-data-safe-through-an-ssh-tunnel">
+<h3><a class="toc-backref" href="#id5">Keep your data safe, through an SSH tunnel!</a></h3>
+<p>Want to go even further and write your backups to an external server?
+You can with this module! Specify the credentials to the server, specify
+a path and everything will be backed up automatically. This is done
+through an SSH (encrypted) tunnel, thanks to pysftp, so your data is
+safe!</p>
+</div>
+</div>
+<div class="section" id="test-connection">
+<h2><a class="toc-backref" href="#id6">Test connection</a></h2>
+<div class="section" id="checks-your-credentials-in-one-click">
+<h3><a class="toc-backref" href="#id7">Checks your credentials in one click</a></h3>
+<p>Want to make sure if the connection details are correct and if Odoo can
+automatically write them to the remote server? Simply click on the ???Test
+SFTP Connection??? button and you will get message telling you if
+everything is OK, or what is wrong!</p>
+</div>
+</div>
+<div class="section" id="e-mail-on-backup-failure">
+<h2><a class="toc-backref" href="#id8">E-mail on backup failure</a></h2>
+<div class="section" id="stay-informed-of-problems-automatically">
+<h3><a class="toc-backref" href="#id9">Stay informed of problems, automatically!</a></h3>
+<p>Do you want to know if the database backup succeeded or failed? Subscribe to
+the corresponding backup setting notification type.</p>
+</div>
+</div>
+<div class="section" id="run-backups-when-you-want">
+<h2><a class="toc-backref" href="#id10">Run backups when you want</a></h2>
+<p>From the backups configuration list, press <em>More &gt; Execute backup(s)</em> to
+manually execute the selected processes.</p>
+<a class="reference external image-reference" href="https://runbot.odoo-community.org/runbot/149/11.0"><img alt="Try me on Runbot" src="https://odoo-community.org/website/image/ir.attachment/5784_f2813bd/datas" /></a>
+</div>
+</div>
+<div class="section" id="known-issues-roadmap">
+<h1><a class="toc-backref" href="#id11">Known issues / Roadmap</a></h1>
+<ul class="simple">
+<li>On larger databases, it is possible that backups will die due to Odoo server
+settings. In order to circumvent this without frivolously changing settings,
+you need to run the backup from outside of the main Odoo instance. How to do
+this is outlined in <a class="reference external" href="https://blog.laslabs.com/2016/10/running-python-scripts-within-odoos-environment/">this blog post</a>.</li>
+<li>Backups won???t work if list_db=False is configured in the instance.</li>
+</ul>
+</div>
+<div class="section" id="bug-tracker">
+<h1><a class="toc-backref" href="#id12">Bug Tracker</a></h1>
+<p>Bugs are tracked on <a class="reference external" href="https://github.com/OCA/server-tools/issues">GitHub Issues</a>.
+In case of trouble, please check there if your issue has already been reported.
+If you spotted it first, help us smashing it by providing a detailed and welcomed
+<a class="reference external" href="https://github.com/OCA/server-tools/issues/new?body=module:%20auto_backup%0Aversion:%2012.0%0A%0A**Steps%20to%20reproduce**%0A-%20...%0A%0A**Current%20behavior**%0A%0A**Expected%20behavior**">feedback</a>.</p>
+<p>Do not contact contributors directly about support or help with technical issues.</p>
+</div>
+<div class="section" id="credits">
+<h1><a class="toc-backref" href="#id13">Credits</a></h1>
+<div class="section" id="authors">
+<h2><a class="toc-backref" href="#id14">Authors</a></h2>
+<ul class="simple">
+<li>Yenthe Van Ginneken</li>
+<li>Agile Business Group</li>
+<li>Grupo ESOC Ingenieria de Servicios</li>
+<li>LasLabs</li>
+<li>AdaptiveCity</li>
+</ul>
+</div>
+<div class="section" id="contributors">
+<h2><a class="toc-backref" href="#id15">Contributors</a></h2>
+<ul class="simple">
+<li>Yenthe Van Ginneken &lt;<a class="reference external" href="mailto:yenthe.vanginneken&#64;vanroey.be">yenthe.vanginneken&#64;vanroey.be</a>&gt;</li>
+<li>Alessio Gerace &lt;<a class="reference external" href="mailto:alessio.gerace&#64;agilebg.com">alessio.gerace&#64;agilebg.com</a>&gt;</li>
+<li>Jairo Llopis &lt;<a class="reference external" href="mailto:yajo.sk8&#64;gmail.com">yajo.sk8&#64;gmail.com</a>&gt;</li>
+<li>Dave Lasley &lt;<a class="reference external" href="mailto:dave&#64;laslabs.com">dave&#64;laslabs.com</a>&gt;</li>
+<li>Andrea Stirpe &lt;<a class="reference external" href="mailto:a.stirpe&#64;onestein.nl">a.stirpe&#64;onestein.nl</a>&gt;</li>
+<li>Aitor Bouzas &lt;<a class="reference external" href="mailto:aitor.bouzas&#64;adaptivecity.com">aitor.bouzas&#64;adaptivecity.com</a>&gt;</li>
+</ul>
+</div>
+<div class="section" id="maintainers">
+<h2><a class="toc-backref" href="#id16">Maintainers</a></h2>
+<p>This module is maintained by the OCA.</p>
+<a class="reference external image-reference" href="https://odoo-community.org"><img alt="Odoo Community Association" src="https://odoo-community.org/logo.png" /></a>
+<p>OCA, or the Odoo Community Association, is a nonprofit organization whose
+mission is to support the collaborative development of Odoo features and
+promote its widespread use.</p>
+<p>This module is part of the <a class="reference external" href="https://github.com/OCA/server-tools/tree/12.0/auto_backup">OCA/server-tools</a> project on GitHub.</p>
+<p>You are welcome to contribute. To learn how please visit <a class="reference external" href="https://odoo-community.org/page/Contribute">https://odoo-community.org/page/Contribute</a>.</p>
+</div>
+</div>
+</div>
+</body>
+</html>
diff --git a/auto_backup/tests/test_db_backup.py b/auto_backup/tests/test_db_backup.py
index fdeda3886e5..dc196ef0684 100644
--- a/auto_backup/tests/test_db_backup.py
+++ b/auto_backup/tests/test_db_backup.py
@@ -1,6 +1,6 @@
-# ?? 2015 Agile Business Group <http://www.agilebg.com>
-# ?? 2015 Alessio Gerace <alesiso.gerace@agilebg.com>
-# ?? 2016 Grupo ESOC Ingenier??a de Servicios, S.L.U. - Jairo Llopis
+# Copyright 2015 Agile Business Group <http://www.agilebg.com>
+# Copyright 2015 Alessio Gerace <alesiso.gerace@agilebg.com>
+# Copyright 2016 Grupo ESOC Ingenieria de Servicios, S.L.U. - Jairo Llopis
 # Copyright 2016 LasLabs Inc.
 # License AGPL-3.0 or later (https://www.gnu.org/licenses/agpl).
 
diff --git a/auto_backup/view/db_backup_view.xml b/auto_backup/view/db_backup_view.xml
index ebed80c91af..9b426e5b836 100644
--- a/auto_backup/view/db_backup_view.xml
+++ b/auto_backup/view/db_backup_view.xml
@@ -18,7 +18,7 @@
                     <field name="backup_format"/>
                 </group>
                 <div attrs="{'invisible': [('method', '!=', 'sftp')]}">
-                    <div class="bg-warning text-warning">
+                    <div class="bg-warning">
                         <h3>Warning:</h3>
                         Use SFTP with caution! This writes files to external servers under the path you specify.
                     </div>

From 81208b0b8ccc6660c5b40991f8942b6a7d2bb08f Mon Sep 17 00:00:00 2001
From: Rodrigo Macedo <rmsolucoeseminformatic4@gmail.com>
Date: Fri, 30 Aug 2019 16:15:46 +0000
Subject: [PATCH 19/52] Translated using Weblate (Portuguese (Brazil))

Currently translated at 17.5% (14 of 80 strings)

Translation: server-tools-12.0/server-tools-12.0-auto_backup
Translate-URL: https://translation.odoo-community.org/projects/server-tools-12-0/server-tools-12-0-auto_backup/pt_BR/
---
 auto_backup/i18n/pt_BR.po | 15 ++++++++-------
 1 file changed, 8 insertions(+), 7 deletions(-)

diff --git a/auto_backup/i18n/pt_BR.po b/auto_backup/i18n/pt_BR.po
index 2eac1eefc18..e1b649ebb79 100644
--- a/auto_backup/i18n/pt_BR.po
+++ b/auto_backup/i18n/pt_BR.po
@@ -9,20 +9,21 @@ msgstr ""
 "Project-Id-Version: Odoo Server 10.0\n"
 "Report-Msgid-Bugs-To: \n"
 "POT-Creation-Date: 2016-12-08 03:36+0000\n"
-"PO-Revision-Date: 2016-12-08 03:36+0000\n"
-"Last-Translator: OCA Transbot <transbot@odoo-community.org>, 2016\n"
-"Language-Team: Portuguese (Brazil) (https://www.transifex.com/oca/"
-"teams/23907/pt_BR/)\n"
+"PO-Revision-Date: 2019-08-30 17:04+0000\n"
+"Last-Translator: Rodrigo Macedo <rmsolucoeseminformatic4@gmail.com>\n"
+"Language-Team: Portuguese (Brazil) (https://www.transifex.com/oca/teams/"
+"23907/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"
+"Plural-Forms: nplurals=2; plural=n > 1;\n"
+"X-Generator: Weblate 3.8\n"
 
 #. module: auto_backup
 #: model_terms:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
 msgid "/home/odoo/.ssh/id_rsa"
-msgstr ""
+msgstr "/home/odoo/.ssh/id_rsa"
 
 #. module: auto_backup
 #: model:ir.model.fields,help:auto_backup.field_db_backup__folder
@@ -32,7 +33,7 @@ msgstr "Caminho absoluto para armazenar os backups"
 #. module: auto_backup
 #: model:ir.model.fields,field_description:auto_backup.field_db_backup__message_needaction
 msgid "Action Needed"
-msgstr ""
+msgstr "A????o Necess??ria"
 
 #. module: auto_backup
 #: model:ir.model.fields,field_description:auto_backup.field_db_backup__message_attachment_count

From 3ef2b4c86c584d0e771222f7b2af142c9d9863d9 Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?=E9=BB=8E=E4=BC=9F=E6=9D=B0?= <674416404@qq.com>
Date: Fri, 30 Aug 2019 17:05:50 +0000
Subject: [PATCH 20/52] Translated using Weblate (Chinese (Simplified))

Currently translated at 26.2% (21 of 80 strings)

Translation: server-tools-12.0/server-tools-12.0-auto_backup
Translate-URL: https://translation.odoo-community.org/projects/server-tools-12-0/server-tools-12-0-auto_backup/zh_CN/

Translated using Weblate (Chinese (Simplified))

Currently translated at 100.0% (80 of 80 strings)

Translation: server-tools-12.0/server-tools-12.0-auto_backup
Translate-URL: https://translation.odoo-community.org/projects/server-tools-12-0/server-tools-12-0-auto_backup/zh_CN/

Translated using Weblate (Chinese (Simplified))

Currently translated at 100.0% (80 of 80 strings)

Translation: server-tools-12.0/server-tools-12.0-auto_backup
Translate-URL: https://translation.odoo-community.org/projects/server-tools-12-0/server-tools-12-0-auto_backup/zh_CN/

Translated using Weblate (Chinese (Simplified))

Currently translated at 100.0% (80 of 80 strings)

Translation: server-tools-12.0/server-tools-12.0-auto_backup
Translate-URL: https://translation.odoo-community.org/projects/server-tools-12-0/server-tools-12-0-auto_backup/zh_CN/
---
 auto_backup/i18n/zh_CN.po | 137 +++++++++++++++++++-------------------
 1 file changed, 67 insertions(+), 70 deletions(-)

diff --git a/auto_backup/i18n/zh_CN.po b/auto_backup/i18n/zh_CN.po
index 8301fe08538..b897838b3a3 100644
--- a/auto_backup/i18n/zh_CN.po
+++ b/auto_backup/i18n/zh_CN.po
@@ -9,8 +9,8 @@ msgstr ""
 "Project-Id-Version: Odoo Server 11.0\n"
 "Report-Msgid-Bugs-To: \n"
 "POT-Creation-Date: 2018-03-03 10:08+0000\n"
-"PO-Revision-Date: 2018-03-03 10:08+0000\n"
-"Last-Translator: OCA Transbot <transbot@odoo-community.org>, 2018\n"
+"PO-Revision-Date: 2019-09-01 04:34+0000\n"
+"Last-Translator: ????????? <674416404@qq.com>\n"
 "Language-Team: Chinese (China) (https://www.transifex.com/oca/teams/23907/"
 "zh_CN/)\n"
 "Language: zh_CN\n"
@@ -18,11 +18,12 @@ msgstr ""
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: \n"
 "Plural-Forms: nplurals=1; plural=0;\n"
+"X-Generator: Weblate 3.8\n"
 
 #. module: auto_backup
 #: model_terms:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
 msgid "/home/odoo/.ssh/id_rsa"
-msgstr ""
+msgstr "/home/odoo/.ssh/id_rsa"
 
 #. module: auto_backup
 #: model:ir.model.fields,help:auto_backup.field_db_backup__folder
@@ -32,18 +33,18 @@ msgstr "??????????????????"
 #. module: auto_backup
 #: model:ir.model.fields,field_description:auto_backup.field_db_backup__message_needaction
 msgid "Action Needed"
-msgstr ""
+msgstr "????????????"
 
 #. module: auto_backup
 #: model:ir.model.fields,field_description:auto_backup.field_db_backup__message_attachment_count
 msgid "Attachment Count"
-msgstr ""
+msgstr "????????????"
 
 #. module: auto_backup
 #: model:ir.actions.act_window,name:auto_backup.action_backup_conf_form
 #: model:ir.ui.menu,name:auto_backup.backup_conf_menu
 msgid "Automated Backups"
-msgstr ""
+msgstr "????????????"
 
 #. module: auto_backup
 #: model_terms:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
@@ -53,71 +54,69 @@ msgstr "?????????????????????????????????????????????"
 #. module: auto_backup
 #: model:mail.message.subtype,name:auto_backup.mail_message_subtype_failure
 msgid "Backup Failed"
-msgstr ""
+msgstr "????????????"
 
 #. module: auto_backup
 #: model:ir.model.fields,field_description:auto_backup.field_db_backup__backup_format
 msgid "Backup Format"
-msgstr ""
+msgstr "????????????"
 
 #. module: auto_backup
 #: model:ir.actions.server,name:auto_backup.ir_cron_backup_scheduler_0_ir_actions_server
 #: model:ir.cron,cron_name:auto_backup.ir_cron_backup_scheduler_0
 #: model:ir.cron,name:auto_backup.ir_cron_backup_scheduler_0
 msgid "Backup Scheduler"
-msgstr ""
+msgstr "????????????"
 
 #. module: auto_backup
 #: model:mail.message.subtype,name:auto_backup.mail_message_subtype_success
 msgid "Backup Successful"
-msgstr ""
+msgstr "????????????"
 
 #. module: auto_backup
 #: model:ir.model.fields,help:auto_backup.field_db_backup__days_to_keep
 msgid ""
 "Backups older than this will be deleted automatically. Set 0 to disable "
 "autodeletion."
-msgstr ""
+msgstr "???????????????????????????????????????0?????????????????????"
 
 #. module: auto_backup
 #: model_terms:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
 msgid "Basic backup configuration"
-msgstr ""
+msgstr "??????????????????"
 
 #. module: auto_backup
 #: sql_constraint:db.backup:0
 msgid "Cannot duplicate a configuration."
-msgstr ""
+msgstr "?????????????????????"
 
 #. module: auto_backup
 #: model:ir.model.fields,help:auto_backup.field_db_backup__backup_format
-#, fuzzy
-#| msgid "Absolute path for storing the backups"
 msgid "Choose the format for this backup."
-msgstr "??????????????????"
+msgstr "???????????????????????????."
 
 #. module: auto_backup
 #: model:ir.model.fields,help:auto_backup.field_db_backup__method
 msgid "Choose the storage method for this backup."
-msgstr ""
+msgstr "?????????????????????????????????."
 
 #. module: auto_backup
 #: code:addons/auto_backup/models/db_backup.py:265
 #, python-format
 msgid "Cleanup of old database backups failed."
-msgstr ""
+msgstr "??????????????????????????????."
 
 #. module: auto_backup
 #: code:addons/auto_backup/models/db_backup.py:137
 #, python-format
 msgid "Connection Test Failed!"
-msgstr ""
+msgstr "?????????????????????"
 
 #. module: auto_backup
 #: code:addons/auto_backup/models/db_backup.py:132
 #, python-format
 msgid "Connection Test Succeeded!"
-msgstr ""
+msgstr "?????????????????????"
 
 #. module: auto_backup
 #: model:ir.model.fields,field_description:auto_backup.field_db_backup__create_uid
@@ -132,26 +131,26 @@ msgstr "????????????"
 #. module: auto_backup
 #: model:ir.model,name:auto_backup.model_db_backup
 msgid "Database Backup"
-msgstr ""
+msgstr "???????????????"
 
 #. module: auto_backup
 #: code:addons/auto_backup/models/db_backup.py:219
 #: model:mail.message.subtype,description:auto_backup.mail_message_subtype_failure
 #, python-format
 msgid "Database backup failed."
-msgstr ""
+msgstr "????????????????????????"
 
 #. module: auto_backup
 #: code:addons/auto_backup/models/db_backup.py:227
 #: model:mail.message.subtype,description:auto_backup.mail_message_subtype_success
 #, python-format
 msgid "Database backup succeeded."
-msgstr ""
+msgstr "?????????????????????."
 
 #. module: auto_backup
 #: model:ir.model.fields,field_description:auto_backup.field_db_backup__days_to_keep
 msgid "Days To Keep"
-msgstr ""
+msgstr "????????????"
 
 #. module: auto_backup
 #: model:ir.model.fields,field_description:auto_backup.field_db_backup__display_name
@@ -163,42 +162,42 @@ msgstr "????????????"
 #, python-format
 msgid ""
 "Do not save backups on your filestore, or you will backup your backups too!"
-msgstr ""
+msgstr "???????????????????????????????????????,?????????????????????????????????"
 
 #. module: auto_backup
 #: model_terms:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
 msgid "Execute backup"
-msgstr ""
+msgstr "????????????"
 
 #. module: auto_backup
 #: model:ir.actions.server,name:auto_backup.action_server_backup
 msgid "Execute backup(s)"
-msgstr ""
+msgstr "????????????(??????)"
 
 #. module: auto_backup
 #: model:ir.model.fields,field_description:auto_backup.field_db_backup__folder
 msgid "Folder"
-msgstr ""
+msgstr "?????????"
 
 #. module: auto_backup
 #: model:ir.model.fields,field_description:auto_backup.field_db_backup__message_follower_ids
 msgid "Followers"
-msgstr ""
+msgstr "?????????"
 
 #. module: auto_backup
 #: model:ir.model.fields,field_description:auto_backup.field_db_backup__message_channel_ids
 msgid "Followers (Channels)"
-msgstr ""
+msgstr "?????????(??????)"
 
 #. module: auto_backup
 #: model:ir.model.fields,field_description:auto_backup.field_db_backup__message_partner_ids
 msgid "Followers (Partners)"
-msgstr ""
+msgstr "?????????(????????????)"
 
 #. module: auto_backup
 #: model_terms:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
 msgid "Go to Settings / Technical / Automation / Scheduled Actions."
-msgstr "??????   ?????? / ?????? / ????????? / ???????????????"
+msgstr "??????   ?????? / ?????? / ????????? / ??????????????????"
 
 #. module: auto_backup
 #: model_terms:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
@@ -208,7 +207,7 @@ msgstr "??????"
 #. module: auto_backup
 #: sql_constraint:db.backup:0
 msgid "I cannot remove backups from the future. Ask Doc for that."
-msgstr ""
+msgstr "????????????????????????????????????Doc?????????"
 
 #. module: auto_backup
 #: model:ir.model.fields,field_description:auto_backup.field_db_backup__id
@@ -218,22 +217,22 @@ msgstr "ID"
 #. module: auto_backup
 #: model:ir.model.fields,help:auto_backup.field_db_backup__message_unread
 msgid "If checked new messages require your attention."
-msgstr ""
+msgstr "????????????????????????????????????????????????"
 
 #. module: auto_backup
 #: model:ir.model.fields,help:auto_backup.field_db_backup__message_needaction
 msgid "If checked, new messages require your attention."
-msgstr ""
+msgstr "????????????????????????????????????????????????"
 
 #. module: auto_backup
 #: model:ir.model.fields,help:auto_backup.field_db_backup__message_has_error
 msgid "If checked, some messages have a delivery error."
-msgstr ""
+msgstr "??????????????????????????????????????????????????????"
 
 #. module: auto_backup
 #: model:ir.model.fields,field_description:auto_backup.field_db_backup__message_is_follower
 msgid "Is Follower"
-msgstr ""
+msgstr "????????????"
 
 #. module: auto_backup
 #: model:ir.model.fields,field_description:auto_backup.field_db_backup____last_update
@@ -253,27 +252,27 @@ msgstr "??????????????????"
 #. module: auto_backup
 #: selection:db.backup,method:0
 msgid "Local disk"
-msgstr ""
+msgstr "????????????"
 
 #. module: auto_backup
 #: model:ir.model.fields,field_description:auto_backup.field_db_backup__message_main_attachment_id
 msgid "Main Attachment"
-msgstr ""
+msgstr "????????????"
 
 #. module: auto_backup
 #: model:ir.model.fields,field_description:auto_backup.field_db_backup__message_has_error
 msgid "Message Delivery error"
-msgstr ""
+msgstr "??????????????????"
 
 #. module: auto_backup
 #: model:ir.model.fields,field_description:auto_backup.field_db_backup__message_ids
 msgid "Messages"
-msgstr ""
+msgstr "??????"
 
 #. module: auto_backup
 #: model:ir.model.fields,field_description:auto_backup.field_db_backup__method
 msgid "Method"
-msgstr ""
+msgstr "??????"
 
 #. module: auto_backup
 #: model:ir.model.fields,field_description:auto_backup.field_db_backup__name
@@ -283,49 +282,49 @@ msgstr "??????"
 #. module: auto_backup
 #: model:ir.model.fields,field_description:auto_backup.field_db_backup__message_needaction_counter
 msgid "Number of Actions"
-msgstr ""
+msgstr "????????????"
 
 #. module: auto_backup
 #: model:ir.model.fields,field_description:auto_backup.field_db_backup__message_has_error_counter
 msgid "Number of error"
-msgstr ""
+msgstr "????????????"
 
 #. module: auto_backup
 #: model:ir.model.fields,help:auto_backup.field_db_backup__message_needaction_counter
 msgid "Number of messages which requires an action"
-msgstr ""
+msgstr "???????????????????????????"
 
 #. module: auto_backup
 #: model:ir.model.fields,help:auto_backup.field_db_backup__message_has_error_counter
 msgid "Number of messages with delivery error"
-msgstr ""
+msgstr "???????????????????????????"
 
 #. module: auto_backup
 #: model:ir.model.fields,help:auto_backup.field_db_backup__message_unread_counter
 msgid "Number of unread messages"
-msgstr ""
+msgstr "?????????????????????"
 
 #. module: auto_backup
 #: model:ir.model.fields,help:auto_backup.field_db_backup__sftp_private_key
 msgid ""
 "Path to the private key file. Only the Odoo user should have read "
 "permissions for that file."
-msgstr ""
+msgstr "??????????????????????????????Odoo??????????????????????????????????????????"
 
 #. module: auto_backup
 #: model:ir.model.fields,field_description:auto_backup.field_db_backup__sftp_private_key
 msgid "Private key location"
-msgstr ""
+msgstr "????????????"
 
 #. module: auto_backup
 #: selection:db.backup,method:0
 msgid "Remote SFTP server"
-msgstr ""
+msgstr "??????SFTP?????????"
 
 #. module: auto_backup
 #: model:ir.model.fields,field_description:auto_backup.field_db_backup__sftp_password
 msgid "SFTP Password"
-msgstr ""
+msgstr "SFTP??????"
 
 #. module: auto_backup
 #: model:ir.model.fields,field_description:auto_backup.field_db_backup__sftp_port
@@ -335,30 +334,28 @@ msgstr "SFTP ??????"
 #. module: auto_backup
 #: model:ir.model.fields,field_description:auto_backup.field_db_backup__sftp_host
 msgid "SFTP Server"
-msgstr ""
+msgstr "SFTP?????????"
 
 #. module: auto_backup
 #: model_terms:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
 msgid "SFTP Settings"
-msgstr ""
+msgstr "SFTP??????"
 
 #. module: auto_backup
 #: model_terms:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
 msgid "Search the action named 'Backup scheduler'."
-msgstr "?????????????????????????????????Backup scheduler??????"
+msgstr "?????????????????????????????????????????????"
 
 #. module: auto_backup
 #: model_terms:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
 msgid ""
 "Set the scheduler to active and fill in how often you want backups generated."
-msgstr ""
-"??????????????????????????????????????????????????????????????????????????????????????????????????????????????????"
-"???????????????????????????"
+msgstr "?????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????"
 
 #. module: auto_backup
 #: model:ir.model.fields,help:auto_backup.field_db_backup__name
 msgid "Summary of this backup process"
-msgstr ""
+msgstr "????????????????????????"
 
 #. module: auto_backup
 #: model_terms:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
@@ -369,19 +366,19 @@ msgstr "?????? SFTP ??????"
 #: model:ir.model.fields,help:auto_backup.field_db_backup__sftp_host
 msgid ""
 "The host name or IP address from your remote server. For example 192.168.0.1"
-msgstr ""
+msgstr "??????????????????????????????IP???????????????192.168.0.1"
 
 #. module: auto_backup
 #: model:ir.model.fields,help:auto_backup.field_db_backup__sftp_password
 msgid ""
 "The password for the SFTP connection. If you specify a private key file, "
 "then this is the password to decrypt it."
-msgstr ""
+msgstr "SFTP???????????????????????????????????????????????????????????????????????????"
 
 #. module: auto_backup
 #: model:ir.model.fields,help:auto_backup.field_db_backup__sftp_port
 msgid "The port on the FTP server that accepts SSH/SFTP calls."
-msgstr "?????? SSH/SFTP ?????????FTP ????????????????????????"
+msgstr "FTP??????????????????SSH / SFTP??????????????????"
 
 #. module: auto_backup
 #: model:ir.model.fields,help:auto_backup.field_db_backup__sftp_user
@@ -393,12 +390,12 @@ msgstr "SFTP ????????????????????????????????????SFTP????????????????????????"
 #. module: auto_backup
 #: model:ir.model.fields,field_description:auto_backup.field_db_backup__message_unread
 msgid "Unread Messages"
-msgstr ""
+msgstr "????????????"
 
 #. module: auto_backup
 #: model:ir.model.fields,field_description:auto_backup.field_db_backup__message_unread_counter
 msgid "Unread Messages Counter"
-msgstr ""
+msgstr "?????????????????????"
 
 #. module: auto_backup
 #: model_terms:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
@@ -412,7 +409,7 @@ msgstr ""
 #. module: auto_backup
 #: model:ir.model.fields,field_description:auto_backup.field_db_backup__sftp_user
 msgid "Username in the SFTP Server"
-msgstr ""
+msgstr "SFTP????????????????????????"
 
 #. module: auto_backup
 #: model_terms:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
@@ -422,29 +419,29 @@ msgstr "?????????"
 #. module: auto_backup
 #: model:ir.model.fields,field_description:auto_backup.field_db_backup__website_message_ids
 msgid "Website Messages"
-msgstr ""
+msgstr "????????????"
 
 #. module: auto_backup
 #: model:ir.model.fields,help:auto_backup.field_db_backup__website_message_ids
 msgid "Website communication history"
-msgstr ""
+msgstr "??????????????????"
 
 #. module: auto_backup
 #: model_terms:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
 msgid "john"
-msgstr ""
+msgstr "??????"
 
 #. module: auto_backup
 #: selection:db.backup,backup_format:0
 msgid "pg_dump custom format (without filestore)"
-msgstr ""
+msgstr "pg_dump???????????????????????????????????????"
 
 #. module: auto_backup
 #: model_terms:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
 msgid "sftp.example.com"
-msgstr ""
+msgstr "sftp.example.com"
 
 #. module: auto_backup
 #: selection:db.backup,backup_format:0
 msgid "zip (includes filestore)"
-msgstr ""
+msgstr "zip????????????????????????"

From 0527ec90e49a186157e3dd097bf866b444417a7c Mon Sep 17 00:00:00 2001
From: Bole <bole@dajmi5.com>
Date: Wed, 13 Nov 2019 14:54:55 +0000
Subject: [PATCH 21/52] Translated using Weblate (Croatian)

Currently translated at 51.2% (41 of 80 strings)

Translation: server-tools-12.0/server-tools-12.0-auto_backup
Translate-URL: https://translation.odoo-community.org/projects/server-tools-12-0/server-tools-12-0-auto_backup/hr/
---
 auto_backup/i18n/de.po    |  2 --
 auto_backup/i18n/es.po    |  2 --
 auto_backup/i18n/fr.po    |  2 --
 auto_backup/i18n/hr.po    | 27 ++++++++++++---------------
 auto_backup/i18n/it.po    |  2 --
 auto_backup/i18n/nl.po    |  2 --
 auto_backup/i18n/nl_BE.po |  1 -
 auto_backup/i18n/pt_BR.po |  5 ++---
 auto_backup/i18n/sl.po    |  1 -
 9 files changed, 14 insertions(+), 30 deletions(-)

diff --git a/auto_backup/i18n/de.po b/auto_backup/i18n/de.po
index e5b70674a3f..2c3d94aa80c 100644
--- a/auto_backup/i18n/de.po
+++ b/auto_backup/i18n/de.po
@@ -58,7 +58,6 @@ msgstr "Backup fehlgeschlagen"
 #. module: auto_backup
 #: model:ir.model.fields,field_description:auto_backup.field_db_backup__backup_format
 #, fuzzy
-#| msgid "Backup Failed"
 msgid "Backup Format"
 msgstr "Backup fehlgeschlagen"
 
@@ -94,7 +93,6 @@ msgstr ""
 #. module: auto_backup
 #: model:ir.model.fields,help:auto_backup.field_db_backup__backup_format
 #, fuzzy
-#| msgid "Absolute path for storing the backups"
 msgid "Choose the format for this backup."
 msgstr "Absoluter Pfad zum Speichern der Sicherungen"
 
diff --git a/auto_backup/i18n/es.po b/auto_backup/i18n/es.po
index 615b6bc7900..afdd68fb915 100644
--- a/auto_backup/i18n/es.po
+++ b/auto_backup/i18n/es.po
@@ -59,7 +59,6 @@ msgstr "Error de copia de seguridad"
 #. module: auto_backup
 #: model:ir.model.fields,field_description:auto_backup.field_db_backup__backup_format
 #, fuzzy
-#| msgid "Backup Failed"
 msgid "Backup Format"
 msgstr "Error de copia de seguridad"
 
@@ -97,7 +96,6 @@ msgstr "No se puede duplicar una configuraci??n."
 #. module: auto_backup
 #: model:ir.model.fields,help:auto_backup.field_db_backup__backup_format
 #, fuzzy
-#| msgid "Choose the storage method for this backup."
 msgid "Choose the format for this backup."
 msgstr "Elija el m??todo de almacenamiento para esta copia de seguridad."
 
diff --git a/auto_backup/i18n/fr.po b/auto_backup/i18n/fr.po
index ad7e3bbc61f..a4a1b0ac4f2 100644
--- a/auto_backup/i18n/fr.po
+++ b/auto_backup/i18n/fr.po
@@ -59,7 +59,6 @@ msgstr "??chec de la saugarde"
 #. module: auto_backup
 #: model:ir.model.fields,field_description:auto_backup.field_db_backup__backup_format
 #, fuzzy
-#| msgid "Backup Failed"
 msgid "Backup Format"
 msgstr "??chec de la saugarde"
 
@@ -97,7 +96,6 @@ msgstr "Impossible de dupliquer une configuration."
 #. module: auto_backup
 #: model:ir.model.fields,help:auto_backup.field_db_backup__backup_format
 #, fuzzy
-#| msgid "Choose the storage method for this backup."
 msgid "Choose the format for this backup."
 msgstr "Choisissez la m??thode de stockage pour cette sauvegarde."
 
diff --git a/auto_backup/i18n/hr.po b/auto_backup/i18n/hr.po
index 0a624b545a0..ea9f0efdd49 100644
--- a/auto_backup/i18n/hr.po
+++ b/auto_backup/i18n/hr.po
@@ -9,15 +9,16 @@ msgstr ""
 "Project-Id-Version: Odoo Server 11.0\n"
 "Report-Msgid-Bugs-To: \n"
 "POT-Creation-Date: 2018-03-03 10:08+0000\n"
-"PO-Revision-Date: 2018-03-03 10:08+0000\n"
-"Last-Translator: OCA Transbot <transbot@odoo-community.org>, 2018\n"
+"PO-Revision-Date: 2019-11-13 17:34+0000\n"
+"Last-Translator: Bole <bole@dajmi5.com>\n"
 "Language-Team: Croatian (https://www.transifex.com/oca/teams/23907/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"
+"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"
+"X-Generator: Weblate 3.8\n"
 
 #. module: auto_backup
 #: model_terms:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
@@ -32,12 +33,12 @@ msgstr "Apsolutna putanja za spremanje backupa"
 #. module: auto_backup
 #: model:ir.model.fields,field_description:auto_backup.field_db_backup__message_needaction
 msgid "Action Needed"
-msgstr ""
+msgstr "Potrebna radnja"
 
 #. module: auto_backup
 #: model:ir.model.fields,field_description:auto_backup.field_db_backup__message_attachment_count
 msgid "Attachment Count"
-msgstr ""
+msgstr "Broj priloga"
 
 #. module: auto_backup
 #: model:ir.actions.act_window,name:auto_backup.action_backup_conf_form
@@ -57,17 +58,15 @@ msgstr "Backup nije uspio"
 
 #. module: auto_backup
 #: model:ir.model.fields,field_description:auto_backup.field_db_backup__backup_format
-#, fuzzy
-#| msgid "Backup Failed"
 msgid "Backup Format"
-msgstr "Backup nije uspio"
+msgstr "Format backupa"
 
 #. module: auto_backup
 #: model:ir.actions.server,name:auto_backup.ir_cron_backup_scheduler_0_ir_actions_server
 #: model:ir.cron,cron_name:auto_backup.ir_cron_backup_scheduler_0
 #: model:ir.cron,name:auto_backup.ir_cron_backup_scheduler_0
 msgid "Backup Scheduler"
-msgstr ""
+msgstr "Zakazivanje backupa"
 
 #. module: auto_backup
 #: model:mail.message.subtype,name:auto_backup.mail_message_subtype_success
@@ -93,10 +92,8 @@ msgstr "Nije mogu??e dupliciranje postavki."
 
 #. module: auto_backup
 #: model:ir.model.fields,help:auto_backup.field_db_backup__backup_format
-#, fuzzy
-#| msgid "Choose the storage method for this backup."
 msgid "Choose the format for this backup."
-msgstr "Odaberite metodu pohrane za ovaj backup."
+msgstr "Odaberite format za ovaj backup."
 
 #. module: auto_backup
 #: model:ir.model.fields,help:auto_backup.field_db_backup__method
@@ -134,7 +131,7 @@ msgstr "Kreirano "
 #. module: auto_backup
 #: model:ir.model,name:auto_backup.model_db_backup
 msgid "Database Backup"
-msgstr ""
+msgstr "Backup baze"
 
 #. module: auto_backup
 #: code:addons/auto_backup/models/db_backup.py:219
@@ -153,7 +150,7 @@ msgstr "Backup baze uspje??an."
 #. module: auto_backup
 #: model:ir.model.fields,field_description:auto_backup.field_db_backup__days_to_keep
 msgid "Days To Keep"
-msgstr ""
+msgstr "??uvati dana"
 
 #. module: auto_backup
 #: model:ir.model.fields,field_description:auto_backup.field_db_backup__display_name
diff --git a/auto_backup/i18n/it.po b/auto_backup/i18n/it.po
index 9be9a2fa855..aacaf37aea6 100644
--- a/auto_backup/i18n/it.po
+++ b/auto_backup/i18n/it.po
@@ -57,7 +57,6 @@ msgstr "Backup Fallito"
 #. module: auto_backup
 #: model:ir.model.fields,field_description:auto_backup.field_db_backup__backup_format
 #, fuzzy
-#| msgid "Backup Failed"
 msgid "Backup Format"
 msgstr "Backup Fallito"
 
@@ -95,7 +94,6 @@ msgstr "Impossibile duplicare una configurazione."
 #. module: auto_backup
 #: model:ir.model.fields,help:auto_backup.field_db_backup__backup_format
 #, fuzzy
-#| msgid "Choose the storage method for this backup."
 msgid "Choose the format for this backup."
 msgstr "Scegliere il tipo di archiviazione per questo metodo di backup. "
 
diff --git a/auto_backup/i18n/nl.po b/auto_backup/i18n/nl.po
index c1700ebfc9e..07f6f8646a4 100644
--- a/auto_backup/i18n/nl.po
+++ b/auto_backup/i18n/nl.po
@@ -57,7 +57,6 @@ msgstr "Backup mislukt"
 #. module: auto_backup
 #: model:ir.model.fields,field_description:auto_backup.field_db_backup__backup_format
 #, fuzzy
-#| msgid "Backup Failed"
 msgid "Backup Format"
 msgstr "Backup mislukt"
 
@@ -95,7 +94,6 @@ msgstr "Kan een configuratie niet dupliceren."
 #. module: auto_backup
 #: model:ir.model.fields,help:auto_backup.field_db_backup__backup_format
 #, fuzzy
-#| msgid "Choose the storage method for this backup."
 msgid "Choose the format for this backup."
 msgstr "Kies een opslag methode voor deze backup."
 
diff --git a/auto_backup/i18n/nl_BE.po b/auto_backup/i18n/nl_BE.po
index 6d8e728fd88..eefe3c70616 100644
--- a/auto_backup/i18n/nl_BE.po
+++ b/auto_backup/i18n/nl_BE.po
@@ -95,7 +95,6 @@ msgstr "Lokale backup configuratie"
 #. module: auto_backup
 #: model:ir.model.fields,help:auto_backup.field_db_backup__backup_format
 #, fuzzy
-#| msgid "Absolute path for storing the backups"
 msgid "Choose the format for this backup."
 msgstr "Absoluut pad om backups te bewaren"
 
diff --git a/auto_backup/i18n/pt_BR.po b/auto_backup/i18n/pt_BR.po
index e1b649ebb79..7aea7872f7d 100644
--- a/auto_backup/i18n/pt_BR.po
+++ b/auto_backup/i18n/pt_BR.po
@@ -11,8 +11,8 @@ msgstr ""
 "POT-Creation-Date: 2016-12-08 03:36+0000\n"
 "PO-Revision-Date: 2019-08-30 17:04+0000\n"
 "Last-Translator: Rodrigo Macedo <rmsolucoeseminformatic4@gmail.com>\n"
-"Language-Team: Portuguese (Brazil) (https://www.transifex.com/oca/teams/"
-"23907/pt_BR/)\n"
+"Language-Team: Portuguese (Brazil) (https://www.transifex.com/oca/"
+"teams/23907/pt_BR/)\n"
 "Language: pt_BR\n"
 "MIME-Version: 1.0\n"
 "Content-Type: text/plain; charset=UTF-8\n"
@@ -93,7 +93,6 @@ msgstr ""
 #. module: auto_backup
 #: model:ir.model.fields,help:auto_backup.field_db_backup__backup_format
 #, fuzzy
-#| msgid "Absolute path for storing the backups"
 msgid "Choose the format for this backup."
 msgstr "Caminho absoluto para armazenar os backups"
 
diff --git a/auto_backup/i18n/sl.po b/auto_backup/i18n/sl.po
index 5ad0a58ad31..5d9888b207a 100644
--- a/auto_backup/i18n/sl.po
+++ b/auto_backup/i18n/sl.po
@@ -94,7 +94,6 @@ msgstr "Nastavitev ne morete podvojiti."
 #. module: auto_backup
 #: model:ir.model.fields,help:auto_backup.field_db_backup__backup_format
 #, fuzzy
-#| msgid "Choose the storage method for this backup."
 msgid "Choose the format for this backup."
 msgstr "Izberite metodo shranjevanja za to varnostno kopiranje."
 

From c9b020948850f7f2e4afa41cc46dad96603d533f Mon Sep 17 00:00:00 2001
From: David Alonso // Solvos <david.alonso@solvos.es>
Date: Fri, 5 Feb 2021 18:59:30 +0100
Subject: [PATCH 22/52] [IMP] auto_backup: black, isort, prettier

---
 auto_backup/README.rst                    |   4 +-
 auto_backup/__manifest__.py               |  21 ++-
 auto_backup/data/ir_cron.xml              |  11 +-
 auto_backup/data/mail_message_subtype.xml |   5 +-
 auto_backup/i18n/am.po                    |   4 +-
 auto_backup/i18n/ar.po                    |  16 +--
 auto_backup/i18n/bg.po                    |  14 +-
 auto_backup/i18n/bs.po                    |   6 +-
 auto_backup/i18n/ca.po                    |   6 +-
 auto_backup/i18n/cs.po                    |   8 +-
 auto_backup/i18n/cs_CZ.po                 |  18 +--
 auto_backup/i18n/da.po                    |   2 +-
 auto_backup/i18n/de.po                    |   6 +-
 auto_backup/i18n/el_GR.po                 |  10 +-
 auto_backup/i18n/es.po                    |  60 ++++----
 auto_backup/i18n/es_AR.po                 |   6 +-
 auto_backup/i18n/es_CL.po                 |   8 +-
 auto_backup/i18n/es_CO.po                 |   4 +-
 auto_backup/i18n/es_CR.po                 |   4 +-
 auto_backup/i18n/es_DO.po                 |   8 +-
 auto_backup/i18n/es_EC.po                 |   6 +-
 auto_backup/i18n/es_ES.po                 |   6 +-
 auto_backup/i18n/es_MX.po                 |   4 +-
 auto_backup/i18n/es_PE.po                 |   6 +-
 auto_backup/i18n/es_PY.po                 |   4 +-
 auto_backup/i18n/es_VE.po                 |   6 +-
 auto_backup/i18n/et.po                    |   2 +-
 auto_backup/i18n/fa.po                    |  16 +--
 auto_backup/i18n/fi.po                    |   4 +-
 auto_backup/i18n/fr.po                    |  50 +++----
 auto_backup/i18n/fr_CA.po                 |   8 +-
 auto_backup/i18n/fr_CH.po                 |  12 +-
 auto_backup/i18n/gl.po                    |   4 +-
 auto_backup/i18n/he.po                    |  16 +--
 auto_backup/i18n/hr.po                    |  28 ++--
 auto_backup/i18n/hr_HR.po                 |   4 +-
 auto_backup/i18n/hu.po                    |  16 +--
 auto_backup/i18n/it.po                    |  10 +-
 auto_backup/i18n/ja.po                    |  14 +-
 auto_backup/i18n/ko.po                    |  14 +-
 auto_backup/i18n/lt.po                    |   8 +-
 auto_backup/i18n/lt_LT.po                 |   6 +-
 auto_backup/i18n/lv.po                    |   4 +-
 auto_backup/i18n/mk.po                    |  14 +-
 auto_backup/i18n/mn.po                    |  14 +-
 auto_backup/i18n/nb.po                    |   2 +-
 auto_backup/i18n/nb_NO.po                 |   2 +-
 auto_backup/i18n/pl.po                    |   2 +-
 auto_backup/i18n/pt.po                    |   8 +-
 auto_backup/i18n/pt_BR.po                 |  16 +--
 auto_backup/i18n/pt_PT.po                 |   8 +-
 auto_backup/i18n/ro.po                    |   6 +-
 auto_backup/i18n/ru.po                    |  10 +-
 auto_backup/i18n/sk.po                    |   8 +-
 auto_backup/i18n/sl.po                    |  46 +++----
 auto_backup/i18n/th.po                    |  16 +--
 auto_backup/i18n/tr.po                    |  16 +--
 auto_backup/i18n/tr_TR.po                 |  12 +-
 auto_backup/i18n/uk.po                    |  12 +-
 auto_backup/i18n/vi.po                    |  12 +-
 auto_backup/i18n/vi_VN.po                 |  10 +-
 auto_backup/i18n/zh_CN.po                 | 158 +++++++++++-----------
 auto_backup/i18n/zh_TW.po                 |  14 +-
 auto_backup/models/db_backup.py           | 134 +++++++++---------
 auto_backup/readme/INSTALL.rst            |   1 -
 auto_backup/readme/USAGE.rst              |   4 +-
 auto_backup/static/description/icon.svg   |   4 +-
 auto_backup/static/description/index.html |   6 +-
 auto_backup/tests/test_db_backup.py       | 124 ++++++++---------
 auto_backup/view/db_backup_view.xml       |  68 +++++-----
 70 files changed, 593 insertions(+), 603 deletions(-)

diff --git a/auto_backup/README.rst b/auto_backup/README.rst
index 153de5697c2..2850e7767cf 100644
--- a/auto_backup/README.rst
+++ b/auto_backup/README.rst
@@ -74,8 +74,8 @@ Checks your credentials in one click
 ------------------------------------
 
 Want to make sure if the connection details are correct and if Odoo can
-automatically write them to the remote server? Simply click on the ???Test
-SFTP Connection??? button and you will get message telling you if
+automatically write them to the remote server? Simply click on the ‘Test
+SFTP Connection’ button and you will get message telling you if
 everything is OK, or what is wrong!
 
 E-mail on backup failure
diff --git a/auto_backup/__manifest__.py b/auto_backup/__manifest__.py
index b2a5b661d16..36c1a7d465f 100644
--- a/auto_backup/__manifest__.py
+++ b/auto_backup/__manifest__.py
@@ -7,19 +7,16 @@
     "name": "Database Auto-Backup",
     "summary": "Backups database",
     "version": "12.0.1.0.0",
-    "author":
-        "Yenthe Van Ginneken, "
-        "Agile Business Group, "
-        "Grupo ESOC Ingenieria de Servicios, "
-        "LasLabs, "
-        "AdaptiveCity, "
-        "Odoo Community Association (OCA)",
+    "author": "Yenthe Van Ginneken, "
+    "Agile Business Group, "
+    "Grupo ESOC Ingenieria de Servicios, "
+    "LasLabs, "
+    "AdaptiveCity, "
+    "Odoo Community Association (OCA)",
     "license": "AGPL-3",
     "website": "https://github.com/OCA/server-tools/",
     "category": "Tools",
-    "depends": [
-        "mail",
-    ],
+    "depends": ["mail",],
     "data": [
         "data/ir_cron.xml",
         "data/mail_message_subtype.xml",
@@ -27,7 +24,5 @@
         "view/db_backup_view.xml",
     ],
     "installable": True,
-    "external_dependencies": {
-        "python": ["pysftp"],
-    },
+    "external_dependencies": {"python": ["pysftp"],},
 }
diff --git a/auto_backup/data/ir_cron.xml b/auto_backup/data/ir_cron.xml
index 9fe1bfb76f4..a6d644cd7fe 100644
--- a/auto_backup/data/ir_cron.xml
+++ b/auto_backup/data/ir_cron.xml
@@ -1,16 +1,17 @@
-<?xml version="1.0" encoding="utf-8"?>
+<?xml version="1.0" encoding="utf-8" ?>
 <odoo noupdate="1">
-
     <record id="ir_cron_backup_scheduler_0" model="ir.cron">
         <field name="name">Backup Scheduler</field>
         <field name="user_id" ref="base.user_root" />
         <field name="interval_number">1</field>
         <field name="interval_type">days</field>
         <field name="numbercall">-1</field>
-        <field name="nextcall" eval="(datetime.now() + timedelta(days=1)).strftime('%Y-%m-%d 03:00:00')"/>
-        <field name="model_id" ref="model_db_backup"/>
+        <field
+            name="nextcall"
+            eval="(datetime.now() + timedelta(days=1)).strftime('%Y-%m-%d 03:00:00')"
+        />
+        <field name="model_id" ref="model_db_backup" />
         <field name="state">code</field>
         <field name="code">model.action_backup_all()</field>
     </record>
-
 </odoo>
diff --git a/auto_backup/data/mail_message_subtype.xml b/auto_backup/data/mail_message_subtype.xml
index a0e8e932bca..4f37c759803 100644
--- a/auto_backup/data/mail_message_subtype.xml
+++ b/auto_backup/data/mail_message_subtype.xml
@@ -1,18 +1,15 @@
-<?xml version="1.0" encoding="utf-8"?>
+<?xml version="1.0" encoding="utf-8" ?>
 <odoo noupdate="1">
-
     <record id="mail_message_subtype_success" model="mail.message.subtype">
         <field name="name">Backup Successful</field>
         <field name="description">Database backup succeeded.</field>
         <field name="res_model">db.backup</field>
         <field name="default" eval="False" />
     </record>
-
     <record id="mail_message_subtype_failure" model="mail.message.subtype">
         <field name="name">Backup Failed</field>
         <field name="description">Database backup failed.</field>
         <field name="res_model">db.backup</field>
         <field name="default" eval="True" />
     </record>
-
 </odoo>
diff --git a/auto_backup/i18n/am.po b/auto_backup/i18n/am.po
index d353b8c0e5c..ff2a70a37a2 100644
--- a/auto_backup/i18n/am.po
+++ b/auto_backup/i18n/am.po
@@ -240,12 +240,12 @@ msgstr ""
 #. module: auto_backup
 #: model:ir.model.fields,field_description:auto_backup.field_db_backup__write_uid
 msgid "Last Updated by"
-msgstr "??ltima actualizaci??n por"
+msgstr "Última actualización por"
 
 #. module: auto_backup
 #: model:ir.model.fields,field_description:auto_backup.field_db_backup__write_date
 msgid "Last Updated on"
-msgstr "??ltima actualizaci??n en"
+msgstr "Última actualización en"
 
 #. module: auto_backup
 #: selection:db.backup,method:0
diff --git a/auto_backup/i18n/ar.po b/auto_backup/i18n/ar.po
index 716dd6bbeff..56dce46d860 100644
--- a/auto_backup/i18n/ar.po
+++ b/auto_backup/i18n/ar.po
@@ -120,12 +120,12 @@ msgstr ""
 #. module: auto_backup
 #: model:ir.model.fields,field_description:auto_backup.field_db_backup__create_uid
 msgid "Created by"
-msgstr "???????? ????????????"
+msgstr "أنشئ بواسطة"
 
 #. module: auto_backup
 #: model:ir.model.fields,field_description:auto_backup.field_db_backup__create_date
 msgid "Created on"
-msgstr "???????? ????"
+msgstr "أنشئ في"
 
 #. module: auto_backup
 #: model:ir.model,name:auto_backup.model_db_backup
@@ -154,7 +154,7 @@ msgstr ""
 #. module: auto_backup
 #: model:ir.model.fields,field_description:auto_backup.field_db_backup__display_name
 msgid "Display Name"
-msgstr "?????? ??????????"
+msgstr "اسم العرض"
 
 #. module: auto_backup
 #: code:addons/auto_backup/models/db_backup.py:123
@@ -211,7 +211,7 @@ msgstr ""
 #. module: auto_backup
 #: model:ir.model.fields,field_description:auto_backup.field_db_backup__id
 msgid "ID"
-msgstr "????????????"
+msgstr "المعرف"
 
 #. module: auto_backup
 #: model:ir.model.fields,help:auto_backup.field_db_backup__message_unread
@@ -236,17 +236,17 @@ msgstr ""
 #. module: auto_backup
 #: model:ir.model.fields,field_description:auto_backup.field_db_backup____last_update
 msgid "Last Modified on"
-msgstr "?????? ?????????? ????"
+msgstr "آخر تعديل في"
 
 #. module: auto_backup
 #: model:ir.model.fields,field_description:auto_backup.field_db_backup__write_uid
 msgid "Last Updated by"
-msgstr "?????? ?????????? ????????????"
+msgstr "آخر تحديث بواسطة"
 
 #. module: auto_backup
 #: model:ir.model.fields,field_description:auto_backup.field_db_backup__write_date
 msgid "Last Updated on"
-msgstr "?????? ?????????? ????"
+msgstr "آخر تحديث في"
 
 #. module: auto_backup
 #: selection:db.backup,method:0
@@ -276,7 +276,7 @@ msgstr ""
 #. module: auto_backup
 #: model:ir.model.fields,field_description:auto_backup.field_db_backup__name
 msgid "Name"
-msgstr "??????????"
+msgstr "الاسم"
 
 #. module: auto_backup
 #: model:ir.model.fields,field_description:auto_backup.field_db_backup__message_needaction_counter
diff --git a/auto_backup/i18n/bg.po b/auto_backup/i18n/bg.po
index 2f49ac695b0..52ccbdb04d8 100644
--- a/auto_backup/i18n/bg.po
+++ b/auto_backup/i18n/bg.po
@@ -119,12 +119,12 @@ msgstr ""
 #. module: auto_backup
 #: model:ir.model.fields,field_description:auto_backup.field_db_backup__create_uid
 msgid "Created by"
-msgstr "?????????????????? ????"
+msgstr "Създадено от"
 
 #. module: auto_backup
 #: model:ir.model.fields,field_description:auto_backup.field_db_backup__create_date
 msgid "Created on"
-msgstr "?????????????????? ????"
+msgstr "Създадено на"
 
 #. module: auto_backup
 #: model:ir.model,name:auto_backup.model_db_backup
@@ -153,7 +153,7 @@ msgstr ""
 #. module: auto_backup
 #: model:ir.model.fields,field_description:auto_backup.field_db_backup__display_name
 msgid "Display Name"
-msgstr "?????? ???? ??????????????????"
+msgstr "Име за показване"
 
 #. module: auto_backup
 #: code:addons/auto_backup/models/db_backup.py:123
@@ -235,17 +235,17 @@ msgstr ""
 #. module: auto_backup
 #: model:ir.model.fields,field_description:auto_backup.field_db_backup____last_update
 msgid "Last Modified on"
-msgstr "???????????????? ???????????????? ????"
+msgstr "Последно обновено на"
 
 #. module: auto_backup
 #: model:ir.model.fields,field_description:auto_backup.field_db_backup__write_uid
 msgid "Last Updated by"
-msgstr "???????????????? ???????????????? ????"
+msgstr "Последно обновено от"
 
 #. module: auto_backup
 #: model:ir.model.fields,field_description:auto_backup.field_db_backup__write_date
 msgid "Last Updated on"
-msgstr "???????????????? ???????????????? ????"
+msgstr "Последно обновено на"
 
 #. module: auto_backup
 #: selection:db.backup,method:0
@@ -275,7 +275,7 @@ msgstr ""
 #. module: auto_backup
 #: model:ir.model.fields,field_description:auto_backup.field_db_backup__name
 msgid "Name"
-msgstr "??????"
+msgstr "Име"
 
 #. module: auto_backup
 #: model:ir.model.fields,field_description:auto_backup.field_db_backup__message_needaction_counter
diff --git a/auto_backup/i18n/bs.po b/auto_backup/i18n/bs.po
index dbb16da6081..ab42a88da60 100644
--- a/auto_backup/i18n/bs.po
+++ b/auto_backup/i18n/bs.po
@@ -154,7 +154,7 @@ msgstr ""
 #. module: auto_backup
 #: model:ir.model.fields,field_description:auto_backup.field_db_backup__display_name
 msgid "Display Name"
-msgstr "Prika??i naziv"
+msgstr "Prikaži naziv"
 
 #. module: auto_backup
 #: code:addons/auto_backup/models/db_backup.py:123
@@ -241,12 +241,12 @@ msgstr "Zadnje mijenjano"
 #. module: auto_backup
 #: model:ir.model.fields,field_description:auto_backup.field_db_backup__write_uid
 msgid "Last Updated by"
-msgstr "Zadnji a??urirao"
+msgstr "Zadnji ažurirao"
 
 #. module: auto_backup
 #: model:ir.model.fields,field_description:auto_backup.field_db_backup__write_date
 msgid "Last Updated on"
-msgstr "Zadnje a??urirano"
+msgstr "Zadnje ažurirano"
 
 #. module: auto_backup
 #: selection:db.backup,method:0
diff --git a/auto_backup/i18n/ca.po b/auto_backup/i18n/ca.po
index 68aad7144ac..83d1c05114c 100644
--- a/auto_backup/i18n/ca.po
+++ b/auto_backup/i18n/ca.po
@@ -235,17 +235,17 @@ msgstr ""
 #. module: auto_backup
 #: model:ir.model.fields,field_description:auto_backup.field_db_backup____last_update
 msgid "Last Modified on"
-msgstr "Darrera modificaci?? el"
+msgstr "Darrera modificació el"
 
 #. module: auto_backup
 #: model:ir.model.fields,field_description:auto_backup.field_db_backup__write_uid
 msgid "Last Updated by"
-msgstr "Darrera Actualitzaci?? per"
+msgstr "Darrera Actualització per"
 
 #. module: auto_backup
 #: model:ir.model.fields,field_description:auto_backup.field_db_backup__write_date
 msgid "Last Updated on"
-msgstr "Darrera Actualitzaci?? el"
+msgstr "Darrera Actualització el"
 
 #. module: auto_backup
 #: selection:db.backup,method:0
diff --git a/auto_backup/i18n/cs.po b/auto_backup/i18n/cs.po
index 98a62eed709..4c83cc40edc 100644
--- a/auto_backup/i18n/cs.po
+++ b/auto_backup/i18n/cs.po
@@ -119,12 +119,12 @@ msgstr ""
 #. module: auto_backup
 #: model:ir.model.fields,field_description:auto_backup.field_db_backup__create_uid
 msgid "Created by"
-msgstr "Vytvo??il(a)"
+msgstr "Vytvořil(a)"
 
 #. module: auto_backup
 #: model:ir.model.fields,field_description:auto_backup.field_db_backup__create_date
 msgid "Created on"
-msgstr "Vytvo??eno"
+msgstr "Vytvořeno"
 
 #. module: auto_backup
 #: model:ir.model,name:auto_backup.model_db_backup
@@ -153,7 +153,7 @@ msgstr ""
 #. module: auto_backup
 #: model:ir.model.fields,field_description:auto_backup.field_db_backup__display_name
 msgid "Display Name"
-msgstr "Zobrazovan?? n??zev"
+msgstr "Zobrazovaný název"
 
 #. module: auto_backup
 #: code:addons/auto_backup/models/db_backup.py:123
@@ -275,7 +275,7 @@ msgstr ""
 #. module: auto_backup
 #: model:ir.model.fields,field_description:auto_backup.field_db_backup__name
 msgid "Name"
-msgstr "N??zev"
+msgstr "Název"
 
 #. module: auto_backup
 #: model:ir.model.fields,field_description:auto_backup.field_db_backup__message_needaction_counter
diff --git a/auto_backup/i18n/cs_CZ.po b/auto_backup/i18n/cs_CZ.po
index a958e90b521..5c7c45b98b3 100644
--- a/auto_backup/i18n/cs_CZ.po
+++ b/auto_backup/i18n/cs_CZ.po
@@ -3,14 +3,14 @@
 # * auto_backup
 #
 # Translators:
-# Luk???? Spurn?? <lukasspurny8@gmail.com>, 2018
+# Lukáš Spurný <lukasspurny8@gmail.com>, 2018
 msgid ""
 msgstr ""
 "Project-Id-Version: Odoo Server 11.0\n"
 "Report-Msgid-Bugs-To: \n"
 "POT-Creation-Date: 2018-03-03 10:08+0000\n"
 "PO-Revision-Date: 2018-03-03 10:08+0000\n"
-"Last-Translator: Luk???? Spurn?? <lukasspurny8@gmail.com>, 2018\n"
+"Last-Translator: Lukáš Spurný <lukasspurny8@gmail.com>, 2018\n"
 "Language-Team: Czech (Czech Republic) (https://www.transifex.com/oca/"
 "teams/23907/cs_CZ/)\n"
 "Language: cs_CZ\n"
@@ -120,12 +120,12 @@ msgstr ""
 #. module: auto_backup
 #: model:ir.model.fields,field_description:auto_backup.field_db_backup__create_uid
 msgid "Created by"
-msgstr "Vytvo??il"
+msgstr "Vytvořil"
 
 #. module: auto_backup
 #: model:ir.model.fields,field_description:auto_backup.field_db_backup__create_date
 msgid "Created on"
-msgstr "Vytvo??eno"
+msgstr "Vytvořeno"
 
 #. module: auto_backup
 #: model:ir.model,name:auto_backup.model_db_backup
@@ -154,7 +154,7 @@ msgstr ""
 #. module: auto_backup
 #: model:ir.model.fields,field_description:auto_backup.field_db_backup__display_name
 msgid "Display Name"
-msgstr "Zobrazit n??zev"
+msgstr "Zobrazit název"
 
 #. module: auto_backup
 #: code:addons/auto_backup/models/db_backup.py:123
@@ -236,17 +236,17 @@ msgstr ""
 #. module: auto_backup
 #: model:ir.model.fields,field_description:auto_backup.field_db_backup____last_update
 msgid "Last Modified on"
-msgstr "Posledn?? zm??na dne"
+msgstr "Poslední změna dne"
 
 #. module: auto_backup
 #: model:ir.model.fields,field_description:auto_backup.field_db_backup__write_uid
 msgid "Last Updated by"
-msgstr "Naposledy aktualizov??no"
+msgstr "Naposledy aktualizováno"
 
 #. module: auto_backup
 #: model:ir.model.fields,field_description:auto_backup.field_db_backup__write_date
 msgid "Last Updated on"
-msgstr "Posledn?? aktualizace dne"
+msgstr "Poslední aktualizace dne"
 
 #. module: auto_backup
 #: selection:db.backup,method:0
@@ -276,7 +276,7 @@ msgstr "Metoda"
 #. module: auto_backup
 #: model:ir.model.fields,field_description:auto_backup.field_db_backup__name
 msgid "Name"
-msgstr "N??zev"
+msgstr "Název"
 
 #. module: auto_backup
 #: model:ir.model.fields,field_description:auto_backup.field_db_backup__message_needaction_counter
diff --git a/auto_backup/i18n/da.po b/auto_backup/i18n/da.po
index 68fdbdb7731..8d3cb0a8be0 100644
--- a/auto_backup/i18n/da.po
+++ b/auto_backup/i18n/da.po
@@ -235,7 +235,7 @@ msgstr ""
 #. module: auto_backup
 #: model:ir.model.fields,field_description:auto_backup.field_db_backup____last_update
 msgid "Last Modified on"
-msgstr "Sidst ??ndret den"
+msgstr "Sidst ændret den"
 
 #. module: auto_backup
 #: model:ir.model.fields,field_description:auto_backup.field_db_backup__write_uid
diff --git a/auto_backup/i18n/de.po b/auto_backup/i18n/de.po
index 2c3d94aa80c..3b6de45b5cc 100644
--- a/auto_backup/i18n/de.po
+++ b/auto_backup/i18n/de.po
@@ -48,7 +48,7 @@ msgstr "Automatisiertes Backup"
 #: model_terms:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
 msgid "Automatic backups of the database can be scheduled as follows:"
 msgstr ""
-"Automatische Sicherungen der Datenbank k??nnen wie folgt geplant werden:"
+"Automatische Sicherungen der Datenbank können wie folgt geplant werden:"
 
 #. module: auto_backup
 #: model:mail.message.subtype,name:auto_backup.mail_message_subtype_failure
@@ -199,7 +199,7 @@ msgstr ""
 #: model_terms:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
 msgid "Go to Settings / Technical / Automation / Scheduled Actions."
 msgstr ""
-"Gehen Sie zu Einstellungen / Technisch / Automation / Geplante Vorg??nge"
+"Gehen Sie zu Einstellungen / Technisch / Automation / Geplante Vorgänge"
 
 #. module: auto_backup
 #: model_terms:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
@@ -239,7 +239,7 @@ msgstr ""
 #. module: auto_backup
 #: model:ir.model.fields,field_description:auto_backup.field_db_backup____last_update
 msgid "Last Modified on"
-msgstr "Zuletzt ge??ndert am"
+msgstr "Zuletzt geändert am"
 
 #. module: auto_backup
 #: model:ir.model.fields,field_description:auto_backup.field_db_backup__write_uid
diff --git a/auto_backup/i18n/el_GR.po b/auto_backup/i18n/el_GR.po
index 05f1b3168a6..d879121129c 100644
--- a/auto_backup/i18n/el_GR.po
+++ b/auto_backup/i18n/el_GR.po
@@ -120,12 +120,12 @@ msgstr ""
 #. module: auto_backup
 #: model:ir.model.fields,field_description:auto_backup.field_db_backup__create_uid
 msgid "Created by"
-msgstr "?????????????????????????? ????????"
+msgstr "Δημιουργήθηκε στις"
 
 #. module: auto_backup
 #: model:ir.model.fields,field_description:auto_backup.field_db_backup__create_date
 msgid "Created on"
-msgstr "?????????????????????????? ??????"
+msgstr "Δημιουργήθηκε από"
 
 #. module: auto_backup
 #: model:ir.model,name:auto_backup.model_db_backup
@@ -241,12 +241,12 @@ msgstr ""
 #. module: auto_backup
 #: model:ir.model.fields,field_description:auto_backup.field_db_backup__write_uid
 msgid "Last Updated by"
-msgstr "?????????????????? ?????????????????? ??????"
+msgstr "Τελευταία Ενημέρωση από"
 
 #. module: auto_backup
 #: model:ir.model.fields,field_description:auto_backup.field_db_backup__write_date
 msgid "Last Updated on"
-msgstr "?????????????????? ?????????????????? ????????"
+msgstr "Τελευταία Ενημέρωση στις"
 
 #. module: auto_backup
 #: selection:db.backup,method:0
@@ -276,7 +276,7 @@ msgstr ""
 #. module: auto_backup
 #: model:ir.model.fields,field_description:auto_backup.field_db_backup__name
 msgid "Name"
-msgstr "????????????????"
+msgstr "Ονομασία"
 
 #. module: auto_backup
 #: model:ir.model.fields,field_description:auto_backup.field_db_backup__message_needaction_counter
diff --git a/auto_backup/i18n/es.po b/auto_backup/i18n/es.po
index afdd68fb915..75b880ae84c 100644
--- a/auto_backup/i18n/es.po
+++ b/auto_backup/i18n/es.po
@@ -48,7 +48,7 @@ msgstr "Copias de seguridad automatizadas"
 #: model_terms:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
 msgid "Automatic backups of the database can be scheduled as follows:"
 msgstr ""
-"Copias de seguridad autom??ticas de la base de datos se pueden programar de "
+"Copias de seguridad automáticas de la base de datos se pueden programar de "
 "la siguiente manera:"
 
 #. module: auto_backup
@@ -72,7 +72,7 @@ msgstr ""
 #. module: auto_backup
 #: model:mail.message.subtype,name:auto_backup.mail_message_subtype_success
 msgid "Backup Successful"
-msgstr "Copia de seguridad con ??xito"
+msgstr "Copia de seguridad con éxito"
 
 #. module: auto_backup
 #: model:ir.model.fields,help:auto_backup.field_db_backup__days_to_keep
@@ -80,29 +80,29 @@ msgid ""
 "Backups older than this will be deleted automatically. Set 0 to disable "
 "autodeletion."
 msgstr ""
-"Las copias de seguridad m??s antiguas que ??sta se eliminar??n de forma "
-"autom??tica. Establecer a 0 para desactivar el borrado autom??tico."
+"Las copias de seguridad más antiguas que ésta se eliminarán de forma "
+"automática. Establecer a 0 para desactivar el borrado automático."
 
 #. module: auto_backup
 #: model_terms:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
 msgid "Basic backup configuration"
-msgstr "Configuraci??n b??sica de la copia de seguridad"
+msgstr "Configuración básica de la copia de seguridad"
 
 #. module: auto_backup
 #: sql_constraint:db.backup:0
 msgid "Cannot duplicate a configuration."
-msgstr "No se puede duplicar una configuraci??n."
+msgstr "No se puede duplicar una configuración."
 
 #. module: auto_backup
 #: model:ir.model.fields,help:auto_backup.field_db_backup__backup_format
 #, fuzzy
 msgid "Choose the format for this backup."
-msgstr "Elija el m??todo de almacenamiento para esta copia de seguridad."
+msgstr "Elija el método de almacenamiento para esta copia de seguridad."
 
 #. module: auto_backup
 #: model:ir.model.fields,help:auto_backup.field_db_backup__method
 msgid "Choose the storage method for this backup."
-msgstr "Elija el m??todo de almacenamiento para esta copia de seguridad."
+msgstr "Elija el método de almacenamiento para esta copia de seguridad."
 
 #. module: auto_backup
 #: code:addons/auto_backup/models/db_backup.py:265
@@ -116,13 +116,13 @@ msgstr ""
 #: code:addons/auto_backup/models/db_backup.py:137
 #, python-format
 msgid "Connection Test Failed!"
-msgstr "Error en la prueba de conexi??n!"
+msgstr "Error en la prueba de conexión!"
 
 #. module: auto_backup
 #: code:addons/auto_backup/models/db_backup.py:132
 #, python-format
 msgid "Connection Test Succeeded!"
-msgstr "Prueba de conexi??n correcta!"
+msgstr "Prueba de conexión correcta!"
 
 #. module: auto_backup
 #: model:ir.model.fields,field_description:auto_backup.field_db_backup__create_uid
@@ -169,8 +169,8 @@ msgstr "Nombre a mostrar"
 msgid ""
 "Do not save backups on your filestore, or you will backup your backups too!"
 msgstr ""
-"No guardar las copias de seguridad en su almac??n de archivos, o se copiaran "
-"las copias de seguridad tambi??n!"
+"No guardar las copias de seguridad en su almacén de archivos, o se copiaran "
+"las copias de seguridad también!"
 
 #. module: auto_backup
 #: model_terms:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
@@ -205,7 +205,7 @@ msgstr ""
 #. module: auto_backup
 #: model_terms:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
 msgid "Go to Settings / Technical / Automation / Scheduled Actions."
-msgstr "Ir a Configuraci??n / T??cnico / Automatizaci??n / Acciones Planificadas"
+msgstr "Ir a Configuración / Técnico / Automatización / Acciones Planificadas"
 
 #. module: auto_backup
 #: model_terms:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
@@ -217,7 +217,7 @@ msgstr "Ayuda"
 msgid "I cannot remove backups from the future. Ask Doc for that."
 msgstr ""
 "No puedo eliminar las copias de seguridad desde el futuro. Consulta la "
-"documentaci??n para eso."
+"documentación para eso."
 
 #. module: auto_backup
 #: model:ir.model.fields,field_description:auto_backup.field_db_backup__id
@@ -247,17 +247,17 @@ msgstr ""
 #. module: auto_backup
 #: model:ir.model.fields,field_description:auto_backup.field_db_backup____last_update
 msgid "Last Modified on"
-msgstr "??ltima actualizaci??n por"
+msgstr "Última actualización por"
 
 #. module: auto_backup
 #: model:ir.model.fields,field_description:auto_backup.field_db_backup__write_uid
 msgid "Last Updated by"
-msgstr "??ltima actualizaci??n por"
+msgstr "Última actualización por"
 
 #. module: auto_backup
 #: model:ir.model.fields,field_description:auto_backup.field_db_backup__write_date
 msgid "Last Updated on"
-msgstr "??ltima actualizaci??n el"
+msgstr "Última actualización el"
 
 #. module: auto_backup
 #: selection:db.backup,method:0
@@ -282,7 +282,7 @@ msgstr ""
 #. module: auto_backup
 #: model:ir.model.fields,field_description:auto_backup.field_db_backup__method
 msgid "Method"
-msgstr "M??todo"
+msgstr "Método"
 
 #. module: auto_backup
 #: model:ir.model.fields,field_description:auto_backup.field_db_backup__name
@@ -320,13 +320,13 @@ msgid ""
 "Path to the private key file. Only the Odoo user should have read "
 "permissions for that file."
 msgstr ""
-"Ruta del archivo de clave privada. S??lo el usuario Odoo debe tener permisos "
+"Ruta del archivo de clave privada. Sólo el usuario Odoo debe tener permisos "
 "de lectura para ese archivo."
 
 #. module: auto_backup
 #: model:ir.model.fields,field_description:auto_backup.field_db_backup__sftp_private_key
 msgid "Private key location"
-msgstr "Ubicaci??n de la clave privada"
+msgstr "Ubicación de la clave privada"
 
 #. module: auto_backup
 #: selection:db.backup,method:0
@@ -336,7 +336,7 @@ msgstr "Servidor remoto SFTP"
 #. module: auto_backup
 #: model:ir.model.fields,field_description:auto_backup.field_db_backup__sftp_password
 msgid "SFTP Password"
-msgstr "Contrase??a SFTP"
+msgstr "Contraseña SFTP"
 
 #. module: auto_backup
 #: model:ir.model.fields,field_description:auto_backup.field_db_backup__sftp_port
@@ -351,19 +351,19 @@ msgstr "Servidor SFTP"
 #. module: auto_backup
 #: model_terms:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
 msgid "SFTP Settings"
-msgstr "Configuraci??n de SFTP"
+msgstr "Configuración de SFTP"
 
 #. module: auto_backup
 #: model_terms:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
 msgid "Search the action named 'Backup scheduler'."
-msgstr "Buscar la acci??n llamada 'Backup sheduler'."
+msgstr "Buscar la acción llamada 'Backup sheduler'."
 
 #. module: auto_backup
 #: model_terms:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
 msgid ""
 "Set the scheduler to active and fill in how often you want backups generated."
 msgstr ""
-"Ajuste el programador para activar y rellenar con qu?? frecuencia desea las "
+"Ajuste el programador para activar y rellenar con qué frecuencia desea las "
 "copias de seguridad generadas."
 
 #. module: auto_backup
@@ -374,14 +374,14 @@ msgstr "Resumen de este proceso de copia de seguridad"
 #. module: auto_backup
 #: model_terms:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
 msgid "Test SFTP Connection"
-msgstr "Prueba de conexi??n SFTP"
+msgstr "Prueba de conexión SFTP"
 
 #. module: auto_backup
 #: model:ir.model.fields,help:auto_backup.field_db_backup__sftp_host
 msgid ""
 "The host name or IP address from your remote server. For example 192.168.0.1"
 msgstr ""
-"El nombre del host o la direcci??n IP de su servidor remoto. Por ejemplo "
+"El nombre del host o la dirección IP de su servidor remoto. Por ejemplo "
 "192.168.0.1"
 
 #. module: auto_backup
@@ -390,8 +390,8 @@ msgid ""
 "The password for the SFTP connection. If you specify a private key file, "
 "then this is the password to decrypt it."
 msgstr ""
-"La contrase??a para la conexi??n SFTP. Si se especifica un archivo de clave "
-"privada, entonces esta es la contrase??a para descifrarlo."
+"La contraseña para la conexión SFTP. Si se especifica un archivo de clave "
+"privada, entonces esta es la contraseña para descifrarlo."
 
 #. module: auto_backup
 #: model:ir.model.fields,help:auto_backup.field_db_backup__sftp_port
@@ -404,7 +404,7 @@ msgid ""
 "The username where the SFTP connection should be made with. This is the user "
 "on the external server."
 msgstr ""
-"El nombre de usuario donde la conexi??n SFTP se debe hacer con. Este es el "
+"El nombre de usuario donde la conexión SFTP se debe hacer con. Este es el "
 "usuario en el servidor externo."
 
 #. module: auto_backup
@@ -423,7 +423,7 @@ msgid ""
 "Use SFTP with caution! This writes files to external servers under the path "
 "you specify."
 msgstr ""
-"Utilizar SFTP con precauci??n! Escribe archivos a servidores externos en la "
+"Utilizar SFTP con precaución! Escribe archivos a servidores externos en la "
 "ruta que especifique."
 
 #. module: auto_backup
diff --git a/auto_backup/i18n/es_AR.po b/auto_backup/i18n/es_AR.po
index 32d62418c0d..66e042eb2aa 100644
--- a/auto_backup/i18n/es_AR.po
+++ b/auto_backup/i18n/es_AR.po
@@ -236,17 +236,17 @@ msgstr ""
 #. module: auto_backup
 #: model:ir.model.fields,field_description:auto_backup.field_db_backup____last_update
 msgid "Last Modified on"
-msgstr "??ltima modificaci??n en"
+msgstr "Última modificación en"
 
 #. module: auto_backup
 #: model:ir.model.fields,field_description:auto_backup.field_db_backup__write_uid
 msgid "Last Updated by"
-msgstr "??ltima actualizaci??n realizada por"
+msgstr "Última actualización realizada por"
 
 #. module: auto_backup
 #: model:ir.model.fields,field_description:auto_backup.field_db_backup__write_date
 msgid "Last Updated on"
-msgstr "??ltima actualizaci??n el"
+msgstr "Última actualización el"
 
 #. module: auto_backup
 #: selection:db.backup,method:0
diff --git a/auto_backup/i18n/es_CL.po b/auto_backup/i18n/es_CL.po
index 3a5fb7fd83e..a838fbf9d06 100644
--- a/auto_backup/i18n/es_CL.po
+++ b/auto_backup/i18n/es_CL.po
@@ -211,7 +211,7 @@ msgstr ""
 #. module: auto_backup
 #: model:ir.model.fields,field_description:auto_backup.field_db_backup__id
 msgid "ID"
-msgstr "ID (identificaci??n)"
+msgstr "ID (identificación)"
 
 #. module: auto_backup
 #: model:ir.model.fields,help:auto_backup.field_db_backup__message_unread
@@ -236,17 +236,17 @@ msgstr ""
 #. module: auto_backup
 #: model:ir.model.fields,field_description:auto_backup.field_db_backup____last_update
 msgid "Last Modified on"
-msgstr "??ltima modificaci??n en"
+msgstr "Última modificación en"
 
 #. module: auto_backup
 #: model:ir.model.fields,field_description:auto_backup.field_db_backup__write_uid
 msgid "Last Updated by"
-msgstr "??ltima actualizaci??n de"
+msgstr "Última actualización de"
 
 #. module: auto_backup
 #: model:ir.model.fields,field_description:auto_backup.field_db_backup__write_date
 msgid "Last Updated on"
-msgstr "??ltima actualizaci??n en"
+msgstr "Última actualización en"
 
 #. module: auto_backup
 #: selection:db.backup,method:0
diff --git a/auto_backup/i18n/es_CO.po b/auto_backup/i18n/es_CO.po
index 43f403d8431..12b2790ce27 100644
--- a/auto_backup/i18n/es_CO.po
+++ b/auto_backup/i18n/es_CO.po
@@ -154,7 +154,7 @@ msgstr ""
 #. module: auto_backup
 #: model:ir.model.fields,field_description:auto_backup.field_db_backup__display_name
 msgid "Display Name"
-msgstr "Nombre P??blico"
+msgstr "Nombre Público"
 
 #. module: auto_backup
 #: code:addons/auto_backup/models/db_backup.py:123
@@ -236,7 +236,7 @@ msgstr ""
 #. module: auto_backup
 #: model:ir.model.fields,field_description:auto_backup.field_db_backup____last_update
 msgid "Last Modified on"
-msgstr "??ltima Modificaci??n el"
+msgstr "Última Modificación el"
 
 #. module: auto_backup
 #: model:ir.model.fields,field_description:auto_backup.field_db_backup__write_uid
diff --git a/auto_backup/i18n/es_CR.po b/auto_backup/i18n/es_CR.po
index 0ad1ed4a4e6..eb096650d39 100644
--- a/auto_backup/i18n/es_CR.po
+++ b/auto_backup/i18n/es_CR.po
@@ -241,12 +241,12 @@ msgstr ""
 #. module: auto_backup
 #: model:ir.model.fields,field_description:auto_backup.field_db_backup__write_uid
 msgid "Last Updated by"
-msgstr "Ultima actualizaci??n por"
+msgstr "Ultima actualización por"
 
 #. module: auto_backup
 #: model:ir.model.fields,field_description:auto_backup.field_db_backup__write_date
 msgid "Last Updated on"
-msgstr "Ultima actualizaci??n en"
+msgstr "Ultima actualización en"
 
 #. module: auto_backup
 #: selection:db.backup,method:0
diff --git a/auto_backup/i18n/es_DO.po b/auto_backup/i18n/es_DO.po
index 957f4ce2b93..ea67ad899be 100644
--- a/auto_backup/i18n/es_DO.po
+++ b/auto_backup/i18n/es_DO.po
@@ -211,7 +211,7 @@ msgstr ""
 #. module: auto_backup
 #: model:ir.model.fields,field_description:auto_backup.field_db_backup__id
 msgid "ID"
-msgstr "ID (identificaci??n)"
+msgstr "ID (identificación)"
 
 #. module: auto_backup
 #: model:ir.model.fields,help:auto_backup.field_db_backup__message_unread
@@ -236,17 +236,17 @@ msgstr ""
 #. module: auto_backup
 #: model:ir.model.fields,field_description:auto_backup.field_db_backup____last_update
 msgid "Last Modified on"
-msgstr "??ltima modificaci??n en"
+msgstr "Última modificación en"
 
 #. module: auto_backup
 #: model:ir.model.fields,field_description:auto_backup.field_db_backup__write_uid
 msgid "Last Updated by"
-msgstr "??ltima actualizaci??n de"
+msgstr "Última actualización de"
 
 #. module: auto_backup
 #: model:ir.model.fields,field_description:auto_backup.field_db_backup__write_date
 msgid "Last Updated on"
-msgstr "??ltima actualizaci??n en"
+msgstr "Última actualización en"
 
 #. module: auto_backup
 #: selection:db.backup,method:0
diff --git a/auto_backup/i18n/es_EC.po b/auto_backup/i18n/es_EC.po
index ad7c7798a2b..611448427f8 100644
--- a/auto_backup/i18n/es_EC.po
+++ b/auto_backup/i18n/es_EC.po
@@ -236,17 +236,17 @@ msgstr ""
 #. module: auto_backup
 #: model:ir.model.fields,field_description:auto_backup.field_db_backup____last_update
 msgid "Last Modified on"
-msgstr "??ltima modificaci??n en"
+msgstr "Última modificación en"
 
 #. module: auto_backup
 #: model:ir.model.fields,field_description:auto_backup.field_db_backup__write_uid
 msgid "Last Updated by"
-msgstr "??ltima actualizaci??n de"
+msgstr "Última actualización de"
 
 #. module: auto_backup
 #: model:ir.model.fields,field_description:auto_backup.field_db_backup__write_date
 msgid "Last Updated on"
-msgstr "??ltima actualizaci??n en"
+msgstr "Última actualización en"
 
 #. module: auto_backup
 #: selection:db.backup,method:0
diff --git a/auto_backup/i18n/es_ES.po b/auto_backup/i18n/es_ES.po
index 93361209d67..357c3e44536 100644
--- a/auto_backup/i18n/es_ES.po
+++ b/auto_backup/i18n/es_ES.po
@@ -236,17 +236,17 @@ msgstr ""
 #. module: auto_backup
 #: model:ir.model.fields,field_description:auto_backup.field_db_backup____last_update
 msgid "Last Modified on"
-msgstr "??ltima modificaci??n en"
+msgstr "Última modificación en"
 
 #. module: auto_backup
 #: model:ir.model.fields,field_description:auto_backup.field_db_backup__write_uid
 msgid "Last Updated by"
-msgstr "??ltima actualizaci??n por"
+msgstr "Última actualización por"
 
 #. module: auto_backup
 #: model:ir.model.fields,field_description:auto_backup.field_db_backup__write_date
 msgid "Last Updated on"
-msgstr "??ltima actualizaci??n en"
+msgstr "Última actualización en"
 
 #. module: auto_backup
 #: selection:db.backup,method:0
diff --git a/auto_backup/i18n/es_MX.po b/auto_backup/i18n/es_MX.po
index 3ded2d10d57..0af2c472aa3 100644
--- a/auto_backup/i18n/es_MX.po
+++ b/auto_backup/i18n/es_MX.po
@@ -241,12 +241,12 @@ msgstr "Ultima modificacion realizada"
 #. module: auto_backup
 #: model:ir.model.fields,field_description:auto_backup.field_db_backup__write_uid
 msgid "Last Updated by"
-msgstr "Ultima actualizaci??n por"
+msgstr "Ultima actualización por"
 
 #. module: auto_backup
 #: model:ir.model.fields,field_description:auto_backup.field_db_backup__write_date
 msgid "Last Updated on"
-msgstr "Ultima actualizaci??n en"
+msgstr "Ultima actualización en"
 
 #. module: auto_backup
 #: selection:db.backup,method:0
diff --git a/auto_backup/i18n/es_PE.po b/auto_backup/i18n/es_PE.po
index cde95777a4c..cda23b21be6 100644
--- a/auto_backup/i18n/es_PE.po
+++ b/auto_backup/i18n/es_PE.po
@@ -236,17 +236,17 @@ msgstr ""
 #. module: auto_backup
 #: model:ir.model.fields,field_description:auto_backup.field_db_backup____last_update
 msgid "Last Modified on"
-msgstr "Ultima Modificaci??n en"
+msgstr "Ultima Modificación en"
 
 #. module: auto_backup
 #: model:ir.model.fields,field_description:auto_backup.field_db_backup__write_uid
 msgid "Last Updated by"
-msgstr "Actualizado ??ltima vez por"
+msgstr "Actualizado última vez por"
 
 #. module: auto_backup
 #: model:ir.model.fields,field_description:auto_backup.field_db_backup__write_date
 msgid "Last Updated on"
-msgstr "Ultima Actualizaci??n"
+msgstr "Ultima Actualización"
 
 #. module: auto_backup
 #: selection:db.backup,method:0
diff --git a/auto_backup/i18n/es_PY.po b/auto_backup/i18n/es_PY.po
index c5f40c53fc9..c72dd57f941 100644
--- a/auto_backup/i18n/es_PY.po
+++ b/auto_backup/i18n/es_PY.po
@@ -241,12 +241,12 @@ msgstr ""
 #. module: auto_backup
 #: model:ir.model.fields,field_description:auto_backup.field_db_backup__write_uid
 msgid "Last Updated by"
-msgstr "Ultima actualizaci??n por"
+msgstr "Ultima actualización por"
 
 #. module: auto_backup
 #: model:ir.model.fields,field_description:auto_backup.field_db_backup__write_date
 msgid "Last Updated on"
-msgstr "Ultima actualizaci??n en"
+msgstr "Ultima actualización en"
 
 #. module: auto_backup
 #: selection:db.backup,method:0
diff --git a/auto_backup/i18n/es_VE.po b/auto_backup/i18n/es_VE.po
index 60b78881097..e255242107e 100644
--- a/auto_backup/i18n/es_VE.po
+++ b/auto_backup/i18n/es_VE.po
@@ -236,17 +236,17 @@ msgstr ""
 #. module: auto_backup
 #: model:ir.model.fields,field_description:auto_backup.field_db_backup____last_update
 msgid "Last Modified on"
-msgstr "Modificada por ??ltima vez"
+msgstr "Modificada por última vez"
 
 #. module: auto_backup
 #: model:ir.model.fields,field_description:auto_backup.field_db_backup__write_uid
 msgid "Last Updated by"
-msgstr "Ultima actualizaci??n por"
+msgstr "Ultima actualización por"
 
 #. module: auto_backup
 #: model:ir.model.fields,field_description:auto_backup.field_db_backup__write_date
 msgid "Last Updated on"
-msgstr "Ultima actualizaci??n en"
+msgstr "Ultima actualización en"
 
 #. module: auto_backup
 #: selection:db.backup,method:0
diff --git a/auto_backup/i18n/et.po b/auto_backup/i18n/et.po
index eefa21f9a09..01be3411163 100644
--- a/auto_backup/i18n/et.po
+++ b/auto_backup/i18n/et.po
@@ -153,7 +153,7 @@ msgstr ""
 #. module: auto_backup
 #: model:ir.model.fields,field_description:auto_backup.field_db_backup__display_name
 msgid "Display Name"
-msgstr "N??idatav nimi"
+msgstr "Näidatav nimi"
 
 #. module: auto_backup
 #: code:addons/auto_backup/models/db_backup.py:123
diff --git a/auto_backup/i18n/fa.po b/auto_backup/i18n/fa.po
index e96f3c0af22..a1b4fa1ba91 100644
--- a/auto_backup/i18n/fa.po
+++ b/auto_backup/i18n/fa.po
@@ -119,12 +119,12 @@ msgstr ""
 #. module: auto_backup
 #: model:ir.model.fields,field_description:auto_backup.field_db_backup__create_uid
 msgid "Created by"
-msgstr "?????????? ?????? ????????"
+msgstr "ایجاد شده توسط"
 
 #. module: auto_backup
 #: model:ir.model.fields,field_description:auto_backup.field_db_backup__create_date
 msgid "Created on"
-msgstr "?????????? ?????? ????"
+msgstr "ایجاد شده در"
 
 #. module: auto_backup
 #: model:ir.model,name:auto_backup.model_db_backup
@@ -153,7 +153,7 @@ msgstr ""
 #. module: auto_backup
 #: model:ir.model.fields,field_description:auto_backup.field_db_backup__display_name
 msgid "Display Name"
-msgstr "?????? ????????????"
+msgstr "نام نمایشی"
 
 #. module: auto_backup
 #: code:addons/auto_backup/models/db_backup.py:123
@@ -210,7 +210,7 @@ msgstr ""
 #. module: auto_backup
 #: model:ir.model.fields,field_description:auto_backup.field_db_backup__id
 msgid "ID"
-msgstr "??????????"
+msgstr "شناسه"
 
 #. module: auto_backup
 #: model:ir.model.fields,help:auto_backup.field_db_backup__message_unread
@@ -235,17 +235,17 @@ msgstr ""
 #. module: auto_backup
 #: model:ir.model.fields,field_description:auto_backup.field_db_backup____last_update
 msgid "Last Modified on"
-msgstr "?????????? ?????????? ???????????????????????"
+msgstr "تاریخ آخرین به‌روزرسانی"
 
 #. module: auto_backup
 #: model:ir.model.fields,field_description:auto_backup.field_db_backup__write_uid
 msgid "Last Updated by"
-msgstr "?????????? ???? ?????? ?????????? ????????"
+msgstr "آخرین به روز رسانی توسط"
 
 #. module: auto_backup
 #: model:ir.model.fields,field_description:auto_backup.field_db_backup__write_date
 msgid "Last Updated on"
-msgstr "?????????? ???? ?????? ?????????? ????"
+msgstr "آخرین به روز رسانی در"
 
 #. module: auto_backup
 #: selection:db.backup,method:0
@@ -275,7 +275,7 @@ msgstr ""
 #. module: auto_backup
 #: model:ir.model.fields,field_description:auto_backup.field_db_backup__name
 msgid "Name"
-msgstr "??????"
+msgstr "نام"
 
 #. module: auto_backup
 #: model:ir.model.fields,field_description:auto_backup.field_db_backup__message_needaction_counter
diff --git a/auto_backup/i18n/fi.po b/auto_backup/i18n/fi.po
index c935fc9d069..85451003d43 100644
--- a/auto_backup/i18n/fi.po
+++ b/auto_backup/i18n/fi.po
@@ -240,12 +240,12 @@ msgstr "Viimeksi muokattu"
 #. module: auto_backup
 #: model:ir.model.fields,field_description:auto_backup.field_db_backup__write_uid
 msgid "Last Updated by"
-msgstr "Viimeksi p??ivitt??nyt"
+msgstr "Viimeksi päivittänyt"
 
 #. module: auto_backup
 #: model:ir.model.fields,field_description:auto_backup.field_db_backup__write_date
 msgid "Last Updated on"
-msgstr "Viimeksi p??ivitetty"
+msgstr "Viimeksi päivitetty"
 
 #. module: auto_backup
 #: selection:db.backup,method:0
diff --git a/auto_backup/i18n/fr.po b/auto_backup/i18n/fr.po
index a4a1b0ac4f2..936fb8fc154 100644
--- a/auto_backup/i18n/fr.po
+++ b/auto_backup/i18n/fr.po
@@ -26,7 +26,7 @@ msgstr "/home/odoo/.ssh/id_rsa"
 #. module: auto_backup
 #: model:ir.model.fields,help:auto_backup.field_db_backup__folder
 msgid "Absolute path for storing the backups"
-msgstr "Chemin absolu o?? sont conserv??es les sauvegardes"
+msgstr "Chemin absolu où sont conservées les sauvegardes"
 
 #. module: auto_backup
 #: model:ir.model.fields,field_description:auto_backup.field_db_backup__message_needaction
@@ -42,25 +42,25 @@ msgstr ""
 #: model:ir.actions.act_window,name:auto_backup.action_backup_conf_form
 #: model:ir.ui.menu,name:auto_backup.backup_conf_menu
 msgid "Automated Backups"
-msgstr "Sauvegardes automatis??es"
+msgstr "Sauvegardes automatisées"
 
 #. module: auto_backup
 #: model_terms:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
 msgid "Automatic backups of the database can be scheduled as follows:"
 msgstr ""
-"Les sauvegardes automatis??es de la base de donn??es peuvent ??tre programm??es "
+"Les sauvegardes automatisées de la base de données peuvent être programmées "
 "comme suit:"
 
 #. module: auto_backup
 #: model:mail.message.subtype,name:auto_backup.mail_message_subtype_failure
 msgid "Backup Failed"
-msgstr "??chec de la saugarde"
+msgstr "Échec de la saugarde"
 
 #. module: auto_backup
 #: model:ir.model.fields,field_description:auto_backup.field_db_backup__backup_format
 #, fuzzy
 msgid "Backup Format"
-msgstr "??chec de la saugarde"
+msgstr "Échec de la saugarde"
 
 #. module: auto_backup
 #: model:ir.actions.server,name:auto_backup.ir_cron_backup_scheduler_0_ir_actions_server
@@ -72,7 +72,7 @@ msgstr ""
 #. module: auto_backup
 #: model:mail.message.subtype,name:auto_backup.mail_message_subtype_success
 msgid "Backup Successful"
-msgstr "Sauvegarde r??ussie"
+msgstr "Sauvegarde réussie"
 
 #. module: auto_backup
 #: model:ir.model.fields,help:auto_backup.field_db_backup__days_to_keep
@@ -80,8 +80,8 @@ msgid ""
 "Backups older than this will be deleted automatically. Set 0 to disable "
 "autodeletion."
 msgstr ""
-"Les sauvegardes plus anciennes que la valeur d??finie seront supprim??es "
-"automatiquement. D??finir ?? 0 pour d??sactiver la suppression automatique."
+"Les sauvegardes plus anciennes que la valeur définie seront supprimées "
+"automatiquement. Définir à 0 pour désactiver la suppression automatique."
 
 #. module: auto_backup
 #: model_terms:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
@@ -97,40 +97,40 @@ msgstr "Impossible de dupliquer une configuration."
 #: model:ir.model.fields,help:auto_backup.field_db_backup__backup_format
 #, fuzzy
 msgid "Choose the format for this backup."
-msgstr "Choisissez la m??thode de stockage pour cette sauvegarde."
+msgstr "Choisissez la méthode de stockage pour cette sauvegarde."
 
 #. module: auto_backup
 #: model:ir.model.fields,help:auto_backup.field_db_backup__method
 msgid "Choose the storage method for this backup."
-msgstr "Choisissez la m??thode de stockage pour cette sauvegarde."
+msgstr "Choisissez la méthode de stockage pour cette sauvegarde."
 
 #. module: auto_backup
 #: code:addons/auto_backup/models/db_backup.py:265
 #, python-format
 msgid "Cleanup of old database backups failed."
-msgstr "??chec du nettoyage des anciennes sauvegardes de la base de donn??es."
+msgstr "Échec du nettoyage des anciennes sauvegardes de la base de données."
 
 #. module: auto_backup
 #: code:addons/auto_backup/models/db_backup.py:137
 #, python-format
 msgid "Connection Test Failed!"
-msgstr "??chec du test de connexion !"
+msgstr "Échec du test de connexion !"
 
 #. module: auto_backup
 #: code:addons/auto_backup/models/db_backup.py:132
 #, python-format
 msgid "Connection Test Succeeded!"
-msgstr "Test de connexion r??ussi !"
+msgstr "Test de connexion réussi !"
 
 #. module: auto_backup
 #: model:ir.model.fields,field_description:auto_backup.field_db_backup__create_uid
 msgid "Created by"
-msgstr "Cr???? par"
+msgstr "Créé par"
 
 #. module: auto_backup
 #: model:ir.model.fields,field_description:auto_backup.field_db_backup__create_date
 msgid "Created on"
-msgstr "Cr???? le"
+msgstr "Créé le"
 
 #. module: auto_backup
 #: model:ir.model,name:auto_backup.model_db_backup
@@ -142,14 +142,14 @@ msgstr ""
 #: model:mail.message.subtype,description:auto_backup.mail_message_subtype_failure
 #, python-format
 msgid "Database backup failed."
-msgstr "??chec de la sauvegarde de la base de donn??es"
+msgstr "Échec de la sauvegarde de la base de données"
 
 #. module: auto_backup
 #: code:addons/auto_backup/models/db_backup.py:227
 #: model:mail.message.subtype,description:auto_backup.mail_message_subtype_success
 #, python-format
 msgid "Database backup succeeded."
-msgstr "Sauvegarde de la base de donn??es r??ussie."
+msgstr "Sauvegarde de la base de données réussie."
 
 #. module: auto_backup
 #: model:ir.model.fields,field_description:auto_backup.field_db_backup__days_to_keep
@@ -159,7 +159,7 @@ msgstr ""
 #. module: auto_backup
 #: model:ir.model.fields,field_description:auto_backup.field_db_backup__display_name
 msgid "Display Name"
-msgstr "Nom affich??"
+msgstr "Nom affiché"
 
 #. module: auto_backup
 #: code:addons/auto_backup/models/db_backup.py:123
@@ -168,7 +168,7 @@ msgid ""
 "Do not save backups on your filestore, or you will backup your backups too!"
 msgstr ""
 "Ne conservez pas vos sauvegardes dans le filestore, sinon vos sauvegardes "
-"seront elles-m??mes sauvegard??es ! "
+"seront elles-mêmes sauvegardées ! "
 
 #. module: auto_backup
 #: model_terms:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
@@ -204,7 +204,7 @@ msgstr ""
 #: model_terms:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
 msgid "Go to Settings / Technical / Automation / Scheduled Actions."
 msgstr ""
-"Allez sur Configuration / Technique / Automatisation / Actions planifi??es"
+"Allez sur Configuration / Technique / Automatisation / Actions planifiées"
 
 #. module: auto_backup
 #: model_terms:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
@@ -244,17 +244,17 @@ msgstr ""
 #. module: auto_backup
 #: model:ir.model.fields,field_description:auto_backup.field_db_backup____last_update
 msgid "Last Modified on"
-msgstr "Derni??re modification le"
+msgstr "Dernière modification le"
 
 #. module: auto_backup
 #: model:ir.model.fields,field_description:auto_backup.field_db_backup__write_uid
 msgid "Last Updated by"
-msgstr "Mis ?? jour par"
+msgstr "Mis à jour par"
 
 #. module: auto_backup
 #: model:ir.model.fields,field_description:auto_backup.field_db_backup__write_date
 msgid "Last Updated on"
-msgstr "Mis ?? jour le"
+msgstr "Mis à jour le"
 
 #. module: auto_backup
 #: selection:db.backup,method:0
@@ -279,7 +279,7 @@ msgstr ""
 #. module: auto_backup
 #: model:ir.model.fields,field_description:auto_backup.field_db_backup__method
 msgid "Method"
-msgstr "M??thode"
+msgstr "Méthode"
 
 #. module: auto_backup
 #: model:ir.model.fields,field_description:auto_backup.field_db_backup__name
@@ -317,7 +317,7 @@ msgid ""
 "Path to the private key file. Only the Odoo user should have read "
 "permissions for that file."
 msgstr ""
-"Chemin vers la cl?? priv??e. Seul l'utilisateur odoo devrait avoir les "
+"Chemin vers la clé privée. Seul l'utilisateur odoo devrait avoir les "
 "permissions de lecture sur ce fichier."
 
 #. module: auto_backup
diff --git a/auto_backup/i18n/fr_CA.po b/auto_backup/i18n/fr_CA.po
index 781ce07aa02..55492966df2 100644
--- a/auto_backup/i18n/fr_CA.po
+++ b/auto_backup/i18n/fr_CA.po
@@ -120,12 +120,12 @@ msgstr ""
 #. module: auto_backup
 #: model:ir.model.fields,field_description:auto_backup.field_db_backup__create_uid
 msgid "Created by"
-msgstr "Cr???? par"
+msgstr "Créé par"
 
 #. module: auto_backup
 #: model:ir.model.fields,field_description:auto_backup.field_db_backup__create_date
 msgid "Created on"
-msgstr "Cr???? le"
+msgstr "Créé le"
 
 #. module: auto_backup
 #: model:ir.model,name:auto_backup.model_db_backup
@@ -241,12 +241,12 @@ msgstr ""
 #. module: auto_backup
 #: model:ir.model.fields,field_description:auto_backup.field_db_backup__write_uid
 msgid "Last Updated by"
-msgstr "Derni??re mise ?? jour par"
+msgstr "Dernière mise à jour par"
 
 #. module: auto_backup
 #: model:ir.model.fields,field_description:auto_backup.field_db_backup__write_date
 msgid "Last Updated on"
-msgstr "Derni??re mise ?? jour le"
+msgstr "Dernière mise à jour le"
 
 #. module: auto_backup
 #: selection:db.backup,method:0
diff --git a/auto_backup/i18n/fr_CH.po b/auto_backup/i18n/fr_CH.po
index 0d129f4075c..b77becaa030 100644
--- a/auto_backup/i18n/fr_CH.po
+++ b/auto_backup/i18n/fr_CH.po
@@ -120,12 +120,12 @@ msgstr ""
 #. module: auto_backup
 #: model:ir.model.fields,field_description:auto_backup.field_db_backup__create_uid
 msgid "Created by"
-msgstr "Cr???? par"
+msgstr "Créé par"
 
 #. module: auto_backup
 #: model:ir.model.fields,field_description:auto_backup.field_db_backup__create_date
 msgid "Created on"
-msgstr "Cr???? le"
+msgstr "Créé le"
 
 #. module: auto_backup
 #: model:ir.model,name:auto_backup.model_db_backup
@@ -154,7 +154,7 @@ msgstr ""
 #. module: auto_backup
 #: model:ir.model.fields,field_description:auto_backup.field_db_backup__display_name
 msgid "Display Name"
-msgstr "Nom affich??"
+msgstr "Nom affiché"
 
 #. module: auto_backup
 #: code:addons/auto_backup/models/db_backup.py:123
@@ -236,17 +236,17 @@ msgstr ""
 #. module: auto_backup
 #: model:ir.model.fields,field_description:auto_backup.field_db_backup____last_update
 msgid "Last Modified on"
-msgstr "Derni??re modification le"
+msgstr "Dernière modification le"
 
 #. module: auto_backup
 #: model:ir.model.fields,field_description:auto_backup.field_db_backup__write_uid
 msgid "Last Updated by"
-msgstr "Modifi?? par"
+msgstr "Modifié par"
 
 #. module: auto_backup
 #: model:ir.model.fields,field_description:auto_backup.field_db_backup__write_date
 msgid "Last Updated on"
-msgstr "Modifi?? le"
+msgstr "Modifié le"
 
 #. module: auto_backup
 #: selection:db.backup,method:0
diff --git a/auto_backup/i18n/gl.po b/auto_backup/i18n/gl.po
index 712ea44d7f4..0cd9ec90fef 100644
--- a/auto_backup/i18n/gl.po
+++ b/auto_backup/i18n/gl.po
@@ -235,7 +235,7 @@ msgstr ""
 #. module: auto_backup
 #: model:ir.model.fields,field_description:auto_backup.field_db_backup____last_update
 msgid "Last Modified on"
-msgstr "Modificado por ??ltima vez o"
+msgstr "Modificado por última vez o"
 
 #. module: auto_backup
 #: model:ir.model.fields,field_description:auto_backup.field_db_backup__write_uid
@@ -245,7 +245,7 @@ msgstr "Actualizado por"
 #. module: auto_backup
 #: model:ir.model.fields,field_description:auto_backup.field_db_backup__write_date
 msgid "Last Updated on"
-msgstr "??ltima actualizaci??n"
+msgstr "Última actualización"
 
 #. module: auto_backup
 #: selection:db.backup,method:0
diff --git a/auto_backup/i18n/he.po b/auto_backup/i18n/he.po
index 9448df8b1b3..d4ba1f0a9d3 100644
--- a/auto_backup/i18n/he.po
+++ b/auto_backup/i18n/he.po
@@ -119,12 +119,12 @@ msgstr ""
 #. module: auto_backup
 #: model:ir.model.fields,field_description:auto_backup.field_db_backup__create_uid
 msgid "Created by"
-msgstr "???????? ???? ??????"
+msgstr "נוצר על ידי"
 
 #. module: auto_backup
 #: model:ir.model.fields,field_description:auto_backup.field_db_backup__create_date
 msgid "Created on"
-msgstr "???????? ??-"
+msgstr "נוצר ב-"
 
 #. module: auto_backup
 #: model:ir.model,name:auto_backup.model_db_backup
@@ -153,7 +153,7 @@ msgstr ""
 #. module: auto_backup
 #: model:ir.model.fields,field_description:auto_backup.field_db_backup__display_name
 msgid "Display Name"
-msgstr "?????? ??????????"
+msgstr "השם המוצג"
 
 #. module: auto_backup
 #: code:addons/auto_backup/models/db_backup.py:123
@@ -210,7 +210,7 @@ msgstr ""
 #. module: auto_backup
 #: model:ir.model.fields,field_description:auto_backup.field_db_backup__id
 msgid "ID"
-msgstr "????????"
+msgstr "מזהה"
 
 #. module: auto_backup
 #: model:ir.model.fields,help:auto_backup.field_db_backup__message_unread
@@ -235,17 +235,17 @@ msgstr ""
 #. module: auto_backup
 #: model:ir.model.fields,field_description:auto_backup.field_db_backup____last_update
 msgid "Last Modified on"
-msgstr "?????????? ?????????? ??????????"
+msgstr "תאריך שינוי אחרון"
 
 #. module: auto_backup
 #: model:ir.model.fields,field_description:auto_backup.field_db_backup__write_uid
 msgid "Last Updated by"
-msgstr "?????????? ?????????????? ???? ??????"
+msgstr "עודכן לאחרונה על ידי"
 
 #. module: auto_backup
 #: model:ir.model.fields,field_description:auto_backup.field_db_backup__write_date
 msgid "Last Updated on"
-msgstr "?????????? ?????????????? ????"
+msgstr "עודכן לאחרונה על"
 
 #. module: auto_backup
 #: selection:db.backup,method:0
@@ -275,7 +275,7 @@ msgstr ""
 #. module: auto_backup
 #: model:ir.model.fields,field_description:auto_backup.field_db_backup__name
 msgid "Name"
-msgstr "????"
+msgstr "שם"
 
 #. module: auto_backup
 #: model:ir.model.fields,field_description:auto_backup.field_db_backup__message_needaction_counter
diff --git a/auto_backup/i18n/hr.po b/auto_backup/i18n/hr.po
index ea9f0efdd49..2a846f817ba 100644
--- a/auto_backup/i18n/hr.po
+++ b/auto_backup/i18n/hr.po
@@ -49,7 +49,7 @@ msgstr "Atuomatski backup"
 #. module: auto_backup
 #: model_terms:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
 msgid "Automatic backups of the database can be scheduled as follows:"
-msgstr "Automatski backup baze mo??e biti zadan na sljede??i na??in:"
+msgstr "Automatski backup baze može biti zadan na sljedeći način:"
 
 #. module: auto_backup
 #: model:mail.message.subtype,name:auto_backup.mail_message_subtype_failure
@@ -88,7 +88,7 @@ msgstr "Osnovne postavke backupa"
 #. module: auto_backup
 #: sql_constraint:db.backup:0
 msgid "Cannot duplicate a configuration."
-msgstr "Nije mogu??e dupliciranje postavki."
+msgstr "Nije moguće dupliciranje postavki."
 
 #. module: auto_backup
 #: model:ir.model.fields,help:auto_backup.field_db_backup__backup_format
@@ -104,7 +104,7 @@ msgstr "Odaberite metodu pohrane za ovaj backup."
 #: code:addons/auto_backup/models/db_backup.py:265
 #, python-format
 msgid "Cleanup of old database backups failed."
-msgstr "??i????enje starih backup datoteka nije uspjelo."
+msgstr "Čišćenje starih backup datoteka nije uspjelo."
 
 #. module: auto_backup
 #: code:addons/auto_backup/models/db_backup.py:137
@@ -116,7 +116,7 @@ msgstr "Provjera povezivanja nije uspjela!"
 #: code:addons/auto_backup/models/db_backup.py:132
 #, python-format
 msgid "Connection Test Succeeded!"
-msgstr "Provjera povezivanja uspje??na!"
+msgstr "Provjera povezivanja uspješna!"
 
 #. module: auto_backup
 #: model:ir.model.fields,field_description:auto_backup.field_db_backup__create_uid
@@ -145,17 +145,17 @@ msgstr "Backup baze nije uspio."
 #: model:mail.message.subtype,description:auto_backup.mail_message_subtype_success
 #, python-format
 msgid "Database backup succeeded."
-msgstr "Backup baze uspje??an."
+msgstr "Backup baze uspješan."
 
 #. module: auto_backup
 #: model:ir.model.fields,field_description:auto_backup.field_db_backup__days_to_keep
 msgid "Days To Keep"
-msgstr "??uvati dana"
+msgstr "Čuvati dana"
 
 #. module: auto_backup
 #: model:ir.model.fields,field_description:auto_backup.field_db_backup__display_name
 msgid "Display Name"
-msgstr "Prika??i naziv"
+msgstr "Prikaži naziv"
 
 #. module: auto_backup
 #: code:addons/auto_backup/models/db_backup.py:123
@@ -163,7 +163,7 @@ msgstr "Prika??i naziv"
 msgid ""
 "Do not save backups on your filestore, or you will backup your backups too!"
 msgstr ""
-"Nemojte ??uvati backup na va??em poslu??itelju me??u ostalim podacima, jer ??e se "
+"Nemojte čuvati backup na vašem poslužitelju među ostalim podacima, jer će se "
 "i on backupirati!"
 
 #. module: auto_backup
@@ -174,7 +174,7 @@ msgstr ""
 #. module: auto_backup
 #: model:ir.actions.server,name:auto_backup.action_server_backup
 msgid "Execute backup(s)"
-msgstr "Izvr??i backup(e)"
+msgstr "Izvrši backup(e)"
 
 #. module: auto_backup
 #: model:ir.model.fields,field_description:auto_backup.field_db_backup__folder
@@ -204,7 +204,7 @@ msgstr ""
 #. module: auto_backup
 #: model_terms:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
 msgid "Help"
-msgstr "Pomo??"
+msgstr "Pomoć"
 
 #. module: auto_backup
 #: sql_constraint:db.backup:0
@@ -244,12 +244,12 @@ msgstr "Zadnja izmjena na"
 #. module: auto_backup
 #: model:ir.model.fields,field_description:auto_backup.field_db_backup__write_uid
 msgid "Last Updated by"
-msgstr "Zadnje a??uriranje izvr??io"
+msgstr "Zadnje ažuriranje izvršio"
 
 #. module: auto_backup
 #: model:ir.model.fields,field_description:auto_backup.field_db_backup__write_date
 msgid "Last Updated on"
-msgstr "Zadnje a??uriranje na"
+msgstr "Zadnje ažuriranje na"
 
 #. module: auto_backup
 #: selection:db.backup,method:0
@@ -316,12 +316,12 @@ msgstr ""
 #. module: auto_backup
 #: model:ir.model.fields,field_description:auto_backup.field_db_backup__sftp_private_key
 msgid "Private key location"
-msgstr "Lokacija privatnog klju??a"
+msgstr "Lokacija privatnog ključa"
 
 #. module: auto_backup
 #: selection:db.backup,method:0
 msgid "Remote SFTP server"
-msgstr "Udaljeni SFTP poslu??itelj"
+msgstr "Udaljeni SFTP poslužitelj"
 
 #. module: auto_backup
 #: model:ir.model.fields,field_description:auto_backup.field_db_backup__sftp_password
diff --git a/auto_backup/i18n/hr_HR.po b/auto_backup/i18n/hr_HR.po
index 29eba1d6bf3..ff0aec44a7c 100644
--- a/auto_backup/i18n/hr_HR.po
+++ b/auto_backup/i18n/hr_HR.po
@@ -242,12 +242,12 @@ msgstr "Zadnje modificirano"
 #. module: auto_backup
 #: model:ir.model.fields,field_description:auto_backup.field_db_backup__write_uid
 msgid "Last Updated by"
-msgstr "Zadnje a??urirao"
+msgstr "Zadnje ažurirao"
 
 #. module: auto_backup
 #: model:ir.model.fields,field_description:auto_backup.field_db_backup__write_date
 msgid "Last Updated on"
-msgstr "Zadnje a??urirano"
+msgstr "Zadnje ažurirano"
 
 #. module: auto_backup
 #: selection:db.backup,method:0
diff --git a/auto_backup/i18n/hu.po b/auto_backup/i18n/hu.po
index bafea799046..e594550e6ee 100644
--- a/auto_backup/i18n/hu.po
+++ b/auto_backup/i18n/hu.po
@@ -119,12 +119,12 @@ msgstr ""
 #. module: auto_backup
 #: model:ir.model.fields,field_description:auto_backup.field_db_backup__create_uid
 msgid "Created by"
-msgstr "K??sz??tette"
+msgstr "Készítette"
 
 #. module: auto_backup
 #: model:ir.model.fields,field_description:auto_backup.field_db_backup__create_date
 msgid "Created on"
-msgstr "L??trehoz??s d??tuma"
+msgstr "Létrehozás dátuma"
 
 #. module: auto_backup
 #: model:ir.model,name:auto_backup.model_db_backup
@@ -153,7 +153,7 @@ msgstr ""
 #. module: auto_backup
 #: model:ir.model.fields,field_description:auto_backup.field_db_backup__display_name
 msgid "Display Name"
-msgstr "N??v megjelen??t??se"
+msgstr "Név megjelenítése"
 
 #. module: auto_backup
 #: code:addons/auto_backup/models/db_backup.py:123
@@ -210,7 +210,7 @@ msgstr ""
 #. module: auto_backup
 #: model:ir.model.fields,field_description:auto_backup.field_db_backup__id
 msgid "ID"
-msgstr "Azonos??t?? ID"
+msgstr "Azonosító ID"
 
 #. module: auto_backup
 #: model:ir.model.fields,help:auto_backup.field_db_backup__message_unread
@@ -235,17 +235,17 @@ msgstr ""
 #. module: auto_backup
 #: model:ir.model.fields,field_description:auto_backup.field_db_backup____last_update
 msgid "Last Modified on"
-msgstr "Utols?? friss??t??s d??tuma"
+msgstr "Utolsó frissítés dátuma"
 
 #. module: auto_backup
 #: model:ir.model.fields,field_description:auto_backup.field_db_backup__write_uid
 msgid "Last Updated by"
-msgstr "Utolj??ra friss??tve, ??ltal"
+msgstr "Utoljára frissítve, által"
 
 #. module: auto_backup
 #: model:ir.model.fields,field_description:auto_backup.field_db_backup__write_date
 msgid "Last Updated on"
-msgstr "Utolj??ra friss??tve ekkor"
+msgstr "Utoljára frissítve ekkor"
 
 #. module: auto_backup
 #: selection:db.backup,method:0
@@ -275,7 +275,7 @@ msgstr ""
 #. module: auto_backup
 #: model:ir.model.fields,field_description:auto_backup.field_db_backup__name
 msgid "Name"
-msgstr "N??v"
+msgstr "Név"
 
 #. module: auto_backup
 #: model:ir.model.fields,field_description:auto_backup.field_db_backup__message_needaction_counter
diff --git a/auto_backup/i18n/it.po b/auto_backup/i18n/it.po
index aacaf37aea6..f947906d33f 100644
--- a/auto_backup/i18n/it.po
+++ b/auto_backup/i18n/it.po
@@ -47,7 +47,7 @@ msgstr "Backup automatici"
 #. module: auto_backup
 #: model_terms:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
 msgid "Automatic backups of the database can be scheduled as follows:"
-msgstr "Il backup automatico del DB ?? pianificato come segue:"
+msgstr "Il backup automatico del DB è pianificato come segue:"
 
 #. module: auto_backup
 #: model:mail.message.subtype,name:auto_backup.mail_message_subtype_failure
@@ -165,7 +165,7 @@ msgstr "Nome da visualizzare"
 msgid ""
 "Do not save backups on your filestore, or you will backup your backups too!"
 msgstr ""
-"Non salvare i backup nel proprio filestore altrimenti verr?? eseguita una "
+"Non salvare i backup nel proprio filestore altrimenti verrà eseguita una "
 "copia di backup anche dei propri backup!"
 
 #. module: auto_backup
@@ -386,7 +386,7 @@ msgid ""
 "then this is the password to decrypt it."
 msgstr ""
 "La password per la connessione SFTP. Se viene specificato un file per la "
-"chiave privata, allora questo ?? la password per decodificarla."
+"chiave privata, allora questo è la password per decodificarla."
 
 #. module: auto_backup
 #: model:ir.model.fields,help:auto_backup.field_db_backup__sftp_port
@@ -399,7 +399,7 @@ msgid ""
 "The username where the SFTP connection should be made with. This is the user "
 "on the external server."
 msgstr ""
-"Il nome utente per la connessione SFTP. Questo ?? l'utente sul server esterno."
+"Il nome utente per la connessione SFTP. Questo è l'utente sul server esterno."
 
 #. module: auto_backup
 #: model:ir.model.fields,field_description:auto_backup.field_db_backup__message_unread
@@ -417,7 +417,7 @@ msgid ""
 "Use SFTP with caution! This writes files to external servers under the path "
 "you specify."
 msgstr ""
-"Usare SFTP con cautela! Questa modalit?? scrive file nel percorso specificato "
+"Usare SFTP con cautela! Questa modalità scrive file nel percorso specificato "
 "su server esterni."
 
 #. module: auto_backup
diff --git a/auto_backup/i18n/ja.po b/auto_backup/i18n/ja.po
index 267a4c5208a..e137a641ec3 100644
--- a/auto_backup/i18n/ja.po
+++ b/auto_backup/i18n/ja.po
@@ -119,12 +119,12 @@ msgstr ""
 #. module: auto_backup
 #: model:ir.model.fields,field_description:auto_backup.field_db_backup__create_uid
 msgid "Created by"
-msgstr "?????????"
+msgstr "作成者"
 
 #. module: auto_backup
 #: model:ir.model.fields,field_description:auto_backup.field_db_backup__create_date
 msgid "Created on"
-msgstr "?????????"
+msgstr "作成日"
 
 #. module: auto_backup
 #: model:ir.model,name:auto_backup.model_db_backup
@@ -153,7 +153,7 @@ msgstr ""
 #. module: auto_backup
 #: model:ir.model.fields,field_description:auto_backup.field_db_backup__display_name
 msgid "Display Name"
-msgstr "?????????"
+msgstr "表示名"
 
 #. module: auto_backup
 #: code:addons/auto_backup/models/db_backup.py:123
@@ -235,17 +235,17 @@ msgstr ""
 #. module: auto_backup
 #: model:ir.model.fields,field_description:auto_backup.field_db_backup____last_update
 msgid "Last Modified on"
-msgstr "???????????????"
+msgstr "最終更新日"
 
 #. module: auto_backup
 #: model:ir.model.fields,field_description:auto_backup.field_db_backup__write_uid
 msgid "Last Updated by"
-msgstr "???????????????"
+msgstr "最終更新者"
 
 #. module: auto_backup
 #: model:ir.model.fields,field_description:auto_backup.field_db_backup__write_date
 msgid "Last Updated on"
-msgstr "???????????????"
+msgstr "最終更新日"
 
 #. module: auto_backup
 #: selection:db.backup,method:0
@@ -275,7 +275,7 @@ msgstr ""
 #. module: auto_backup
 #: model:ir.model.fields,field_description:auto_backup.field_db_backup__name
 msgid "Name"
-msgstr "??????"
+msgstr "名称"
 
 #. module: auto_backup
 #: model:ir.model.fields,field_description:auto_backup.field_db_backup__message_needaction_counter
diff --git a/auto_backup/i18n/ko.po b/auto_backup/i18n/ko.po
index 5e719fe179a..be75fe31e43 100644
--- a/auto_backup/i18n/ko.po
+++ b/auto_backup/i18n/ko.po
@@ -119,12 +119,12 @@ msgstr ""
 #. module: auto_backup
 #: model:ir.model.fields,field_description:auto_backup.field_db_backup__create_uid
 msgid "Created by"
-msgstr "?????????"
+msgstr "작성자"
 
 #. module: auto_backup
 #: model:ir.model.fields,field_description:auto_backup.field_db_backup__create_date
 msgid "Created on"
-msgstr "?????????"
+msgstr "작성일"
 
 #. module: auto_backup
 #: model:ir.model,name:auto_backup.model_db_backup
@@ -153,7 +153,7 @@ msgstr ""
 #. module: auto_backup
 #: model:ir.model.fields,field_description:auto_backup.field_db_backup__display_name
 msgid "Display Name"
-msgstr "?????? ??????"
+msgstr "표시 이름"
 
 #. module: auto_backup
 #: code:addons/auto_backup/models/db_backup.py:123
@@ -235,17 +235,17 @@ msgstr ""
 #. module: auto_backup
 #: model:ir.model.fields,field_description:auto_backup.field_db_backup____last_update
 msgid "Last Modified on"
-msgstr "?????? ??????"
+msgstr "최근 수정"
 
 #. module: auto_backup
 #: model:ir.model.fields,field_description:auto_backup.field_db_backup__write_uid
 msgid "Last Updated by"
-msgstr "?????? ????????? ??????"
+msgstr "최근 갱신한 사람"
 
 #. module: auto_backup
 #: model:ir.model.fields,field_description:auto_backup.field_db_backup__write_date
 msgid "Last Updated on"
-msgstr "?????? ?????? ??????"
+msgstr "최근 갱신 날짜"
 
 #. module: auto_backup
 #: selection:db.backup,method:0
@@ -275,7 +275,7 @@ msgstr ""
 #. module: auto_backup
 #: model:ir.model.fields,field_description:auto_backup.field_db_backup__name
 msgid "Name"
-msgstr "??????"
+msgstr "이름"
 
 #. module: auto_backup
 #: model:ir.model.fields,field_description:auto_backup.field_db_backup__message_needaction_counter
diff --git a/auto_backup/i18n/lt.po b/auto_backup/i18n/lt.po
index 271d6b714da..8e04fe724f7 100644
--- a/auto_backup/i18n/lt.po
+++ b/auto_backup/i18n/lt.po
@@ -120,7 +120,7 @@ msgstr ""
 #. module: auto_backup
 #: model:ir.model.fields,field_description:auto_backup.field_db_backup__create_uid
 msgid "Created by"
-msgstr "Suk??r??"
+msgstr "Sukūrė"
 
 #. module: auto_backup
 #: model:ir.model.fields,field_description:auto_backup.field_db_backup__create_date
@@ -236,17 +236,17 @@ msgstr ""
 #. module: auto_backup
 #: model:ir.model.fields,field_description:auto_backup.field_db_backup____last_update
 msgid "Last Modified on"
-msgstr "Paskutin?? kart?? keista"
+msgstr "Paskutinį kartą keista"
 
 #. module: auto_backup
 #: model:ir.model.fields,field_description:auto_backup.field_db_backup__write_uid
 msgid "Last Updated by"
-msgstr "Paskutini kart?? atnaujino"
+msgstr "Paskutini kartą atnaujino"
 
 #. module: auto_backup
 #: model:ir.model.fields,field_description:auto_backup.field_db_backup__write_date
 msgid "Last Updated on"
-msgstr "Paskutin?? kart?? atnaujinta"
+msgstr "Paskutinį kartą atnaujinta"
 
 #. module: auto_backup
 #: selection:db.backup,method:0
diff --git a/auto_backup/i18n/lt_LT.po b/auto_backup/i18n/lt_LT.po
index fb79e2a1906..01861113f3f 100644
--- a/auto_backup/i18n/lt_LT.po
+++ b/auto_backup/i18n/lt_LT.po
@@ -121,7 +121,7 @@ msgstr ""
 #. module: auto_backup
 #: model:ir.model.fields,field_description:auto_backup.field_db_backup__create_uid
 msgid "Created by"
-msgstr "Suk??r??"
+msgstr "Sukūrė"
 
 #. module: auto_backup
 #: model:ir.model.fields,field_description:auto_backup.field_db_backup__create_date
@@ -242,12 +242,12 @@ msgstr ""
 #. module: auto_backup
 #: model:ir.model.fields,field_description:auto_backup.field_db_backup__write_uid
 msgid "Last Updated by"
-msgstr "Paskutin?? kart?? atnaujino"
+msgstr "Paskutinį kartą atnaujino"
 
 #. module: auto_backup
 #: model:ir.model.fields,field_description:auto_backup.field_db_backup__write_date
 msgid "Last Updated on"
-msgstr "Paskutin?? kart?? atnaujinta"
+msgstr "Paskutinį kartą atnaujinta"
 
 #. module: auto_backup
 #: selection:db.backup,method:0
diff --git a/auto_backup/i18n/lv.po b/auto_backup/i18n/lv.po
index 61a9afb453d..0eee18234f4 100644
--- a/auto_backup/i18n/lv.po
+++ b/auto_backup/i18n/lv.po
@@ -241,12 +241,12 @@ msgstr ""
 #. module: auto_backup
 #: model:ir.model.fields,field_description:auto_backup.field_db_backup__write_uid
 msgid "Last Updated by"
-msgstr "P??d??jo reizi atjaunoja"
+msgstr "Pēdējo reizi atjaunoja"
 
 #. module: auto_backup
 #: model:ir.model.fields,field_description:auto_backup.field_db_backup__write_date
 msgid "Last Updated on"
-msgstr "P??d??j??s izmai??as"
+msgstr "Pēdējās izmaiņas"
 
 #. module: auto_backup
 #: selection:db.backup,method:0
diff --git a/auto_backup/i18n/mk.po b/auto_backup/i18n/mk.po
index 8afa6553d2f..68f61d0299e 100644
--- a/auto_backup/i18n/mk.po
+++ b/auto_backup/i18n/mk.po
@@ -119,12 +119,12 @@ msgstr ""
 #. module: auto_backup
 #: model:ir.model.fields,field_description:auto_backup.field_db_backup__create_uid
 msgid "Created by"
-msgstr "???????????????? ????"
+msgstr "Креирано од"
 
 #. module: auto_backup
 #: model:ir.model.fields,field_description:auto_backup.field_db_backup__create_date
 msgid "Created on"
-msgstr "???????????????? ????"
+msgstr "Креирано на"
 
 #. module: auto_backup
 #: model:ir.model,name:auto_backup.model_db_backup
@@ -153,7 +153,7 @@ msgstr ""
 #. module: auto_backup
 #: model:ir.model.fields,field_description:auto_backup.field_db_backup__display_name
 msgid "Display Name"
-msgstr "?????????????? ??????"
+msgstr "Прикажи име"
 
 #. module: auto_backup
 #: code:addons/auto_backup/models/db_backup.py:123
@@ -235,17 +235,17 @@ msgstr ""
 #. module: auto_backup
 #: model:ir.model.fields,field_description:auto_backup.field_db_backup____last_update
 msgid "Last Modified on"
-msgstr "???????????????? ?????????????? ????"
+msgstr "Последна промена на"
 
 #. module: auto_backup
 #: model:ir.model.fields,field_description:auto_backup.field_db_backup__write_uid
 msgid "Last Updated by"
-msgstr "???????????????? ?????????????????? ????"
+msgstr "Последно ажурирање од"
 
 #. module: auto_backup
 #: model:ir.model.fields,field_description:auto_backup.field_db_backup__write_date
 msgid "Last Updated on"
-msgstr "???????????????? ?????????????????? ????"
+msgstr "Последно ажурирање на"
 
 #. module: auto_backup
 #: selection:db.backup,method:0
@@ -275,7 +275,7 @@ msgstr ""
 #. module: auto_backup
 #: model:ir.model.fields,field_description:auto_backup.field_db_backup__name
 msgid "Name"
-msgstr "??????"
+msgstr "Име"
 
 #. module: auto_backup
 #: model:ir.model.fields,field_description:auto_backup.field_db_backup__message_needaction_counter
diff --git a/auto_backup/i18n/mn.po b/auto_backup/i18n/mn.po
index 8b8128aaae7..3cf997cd5d8 100644
--- a/auto_backup/i18n/mn.po
+++ b/auto_backup/i18n/mn.po
@@ -119,12 +119,12 @@ msgstr ""
 #. module: auto_backup
 #: model:ir.model.fields,field_description:auto_backup.field_db_backup__create_uid
 msgid "Created by"
-msgstr "??????????????"
+msgstr "Үүсгэгч"
 
 #. module: auto_backup
 #: model:ir.model.fields,field_description:auto_backup.field_db_backup__create_date
 msgid "Created on"
-msgstr "???????????????? ??????????"
+msgstr "Үүсгэсэн огноо"
 
 #. module: auto_backup
 #: model:ir.model,name:auto_backup.model_db_backup
@@ -153,7 +153,7 @@ msgstr ""
 #. module: auto_backup
 #: model:ir.model.fields,field_description:auto_backup.field_db_backup__display_name
 msgid "Display Name"
-msgstr "?????????????????? ??????"
+msgstr "Дэлгэцийн Нэр"
 
 #. module: auto_backup
 #: code:addons/auto_backup/models/db_backup.py:123
@@ -235,17 +235,17 @@ msgstr ""
 #. module: auto_backup
 #: model:ir.model.fields,field_description:auto_backup.field_db_backup____last_update
 msgid "Last Modified on"
-msgstr "?????????????? ???????????? ???????????? ??????????"
+msgstr "Сүүлийн засвар хийсэн огноо"
 
 #. module: auto_backup
 #: model:ir.model.fields,field_description:auto_backup.field_db_backup__write_uid
 msgid "Last Updated by"
-msgstr "?????????????? ???????????? ????????????"
+msgstr "Сүүлийн засвар хийсэн"
 
 #. module: auto_backup
 #: model:ir.model.fields,field_description:auto_backup.field_db_backup__write_date
 msgid "Last Updated on"
-msgstr "?????????????? ???????????? ???????????? ??????????"
+msgstr "Сүүлийн засвар хийсэн огноо"
 
 #. module: auto_backup
 #: selection:db.backup,method:0
@@ -275,7 +275,7 @@ msgstr ""
 #. module: auto_backup
 #: model:ir.model.fields,field_description:auto_backup.field_db_backup__name
 msgid "Name"
-msgstr "??????"
+msgstr "Нэр"
 
 #. module: auto_backup
 #: model:ir.model.fields,field_description:auto_backup.field_db_backup__message_needaction_counter
diff --git a/auto_backup/i18n/nb.po b/auto_backup/i18n/nb.po
index 0eac6e9a82a..4e4851a8c14 100644
--- a/auto_backup/i18n/nb.po
+++ b/auto_backup/i18n/nb.po
@@ -11,7 +11,7 @@ msgstr ""
 "POT-Creation-Date: 2017-02-18 02:29+0000\n"
 "PO-Revision-Date: 2017-02-18 02:29+0000\n"
 "Last-Translator: OCA Transbot <transbot@odoo-community.org>, 2016\n"
-"Language-Team: Norwegian Bokm??l (https://www.transifex.com/oca/teams/23907/"
+"Language-Team: Norwegian Bokmål (https://www.transifex.com/oca/teams/23907/"
 "nb/)\n"
 "Language: nb\n"
 "MIME-Version: 1.0\n"
diff --git a/auto_backup/i18n/nb_NO.po b/auto_backup/i18n/nb_NO.po
index cbe4de4bc06..a49d479b928 100644
--- a/auto_backup/i18n/nb_NO.po
+++ b/auto_backup/i18n/nb_NO.po
@@ -11,7 +11,7 @@ msgstr ""
 "POT-Creation-Date: 2016-12-08 03:36+0000\n"
 "PO-Revision-Date: 2016-12-08 03:36+0000\n"
 "Last-Translator: OCA Transbot <transbot@odoo-community.org>, 2016\n"
-"Language-Team: Norwegian Bokm??l (Norway) (https://www.transifex.com/oca/"
+"Language-Team: Norwegian Bokmål (Norway) (https://www.transifex.com/oca/"
 "teams/23907/nb_NO/)\n"
 "Language: nb_NO\n"
 "MIME-Version: 1.0\n"
diff --git a/auto_backup/i18n/pl.po b/auto_backup/i18n/pl.po
index dd10c1f73c7..ca7706a2096 100644
--- a/auto_backup/i18n/pl.po
+++ b/auto_backup/i18n/pl.po
@@ -155,7 +155,7 @@ msgstr ""
 #. module: auto_backup
 #: model:ir.model.fields,field_description:auto_backup.field_db_backup__display_name
 msgid "Display Name"
-msgstr "Wy??wietlana nazwa "
+msgstr "Wyświetlana nazwa "
 
 #. module: auto_backup
 #: code:addons/auto_backup/models/db_backup.py:123
diff --git a/auto_backup/i18n/pt.po b/auto_backup/i18n/pt.po
index 65206071e2a..b22b87af354 100644
--- a/auto_backup/i18n/pt.po
+++ b/auto_backup/i18n/pt.po
@@ -235,17 +235,17 @@ msgstr ""
 #. module: auto_backup
 #: model:ir.model.fields,field_description:auto_backup.field_db_backup____last_update
 msgid "Last Modified on"
-msgstr "??ltima Modifica????o Em"
+msgstr "Última Modificação Em"
 
 #. module: auto_backup
 #: model:ir.model.fields,field_description:auto_backup.field_db_backup__write_uid
 msgid "Last Updated by"
-msgstr "??ltima Atualiza????o Por"
+msgstr "Última Atualização Por"
 
 #. module: auto_backup
 #: model:ir.model.fields,field_description:auto_backup.field_db_backup__write_date
 msgid "Last Updated on"
-msgstr "??ltima Atualiza????o Em"
+msgstr "Última Atualização Em"
 
 #. module: auto_backup
 #: selection:db.backup,method:0
@@ -270,7 +270,7 @@ msgstr ""
 #. module: auto_backup
 #: model:ir.model.fields,field_description:auto_backup.field_db_backup__method
 msgid "Method"
-msgstr "M??todo"
+msgstr "Método"
 
 #. module: auto_backup
 #: model:ir.model.fields,field_description:auto_backup.field_db_backup__name
diff --git a/auto_backup/i18n/pt_BR.po b/auto_backup/i18n/pt_BR.po
index 7aea7872f7d..37393ec9f76 100644
--- a/auto_backup/i18n/pt_BR.po
+++ b/auto_backup/i18n/pt_BR.po
@@ -33,7 +33,7 @@ msgstr "Caminho absoluto para armazenar os backups"
 #. module: auto_backup
 #: model:ir.model.fields,field_description:auto_backup.field_db_backup__message_needaction
 msgid "Action Needed"
-msgstr "A????o Necess??ria"
+msgstr "Ação Necessária"
 
 #. module: auto_backup
 #: model:ir.model.fields,field_description:auto_backup.field_db_backup__message_attachment_count
@@ -44,7 +44,7 @@ msgstr ""
 #: model:ir.actions.act_window,name:auto_backup.action_backup_conf_form
 #: model:ir.ui.menu,name:auto_backup.backup_conf_menu
 msgid "Automated Backups"
-msgstr "Backups Autom??ticos"
+msgstr "Backups Automáticos"
 
 #. module: auto_backup
 #: model_terms:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
@@ -133,7 +133,7 @@ msgstr "Criado em"
 #: model:ir.model,name:auto_backup.model_db_backup
 #, fuzzy
 msgid "Database Backup"
-msgstr "Backups Autom??ticos"
+msgstr "Backups Automáticos"
 
 #. module: auto_backup
 #: code:addons/auto_backup/models/db_backup.py:219
@@ -214,7 +214,7 @@ msgstr ""
 #. module: auto_backup
 #: model:ir.model.fields,field_description:auto_backup.field_db_backup__id
 msgid "ID"
-msgstr "Identifica????o"
+msgstr "Identificação"
 
 #. module: auto_backup
 #: model:ir.model.fields,help:auto_backup.field_db_backup__message_unread
@@ -239,17 +239,17 @@ msgstr ""
 #. module: auto_backup
 #: model:ir.model.fields,field_description:auto_backup.field_db_backup____last_update
 msgid "Last Modified on"
-msgstr "??ltima atualiza????o em"
+msgstr "Última atualização em"
 
 #. module: auto_backup
 #: model:ir.model.fields,field_description:auto_backup.field_db_backup__write_uid
 msgid "Last Updated by"
-msgstr "??ltima atualiza????o por"
+msgstr "Última atualização por"
 
 #. module: auto_backup
 #: model:ir.model.fields,field_description:auto_backup.field_db_backup__write_date
 msgid "Last Updated on"
-msgstr "??ltima atualiza????o em"
+msgstr "Última atualização em"
 
 #. module: auto_backup
 #: selection:db.backup,method:0
@@ -274,7 +274,7 @@ msgstr ""
 #. module: auto_backup
 #: model:ir.model.fields,field_description:auto_backup.field_db_backup__method
 msgid "Method"
-msgstr "M??todo"
+msgstr "Método"
 
 #. module: auto_backup
 #: model:ir.model.fields,field_description:auto_backup.field_db_backup__name
diff --git a/auto_backup/i18n/pt_PT.po b/auto_backup/i18n/pt_PT.po
index e76e637898b..308e2762b51 100644
--- a/auto_backup/i18n/pt_PT.po
+++ b/auto_backup/i18n/pt_PT.po
@@ -236,17 +236,17 @@ msgstr ""
 #. module: auto_backup
 #: model:ir.model.fields,field_description:auto_backup.field_db_backup____last_update
 msgid "Last Modified on"
-msgstr "??ltima Modifica????o em"
+msgstr "Última Modificação em"
 
 #. module: auto_backup
 #: model:ir.model.fields,field_description:auto_backup.field_db_backup__write_uid
 msgid "Last Updated by"
-msgstr "??ltima Modifica????o por"
+msgstr "Última Modificação por"
 
 #. module: auto_backup
 #: model:ir.model.fields,field_description:auto_backup.field_db_backup__write_date
 msgid "Last Updated on"
-msgstr "??ltima Atualiza????o em"
+msgstr "Última Atualização em"
 
 #. module: auto_backup
 #: selection:db.backup,method:0
@@ -271,7 +271,7 @@ msgstr ""
 #. module: auto_backup
 #: model:ir.model.fields,field_description:auto_backup.field_db_backup__method
 msgid "Method"
-msgstr "M??todo"
+msgstr "Método"
 
 #. module: auto_backup
 #: model:ir.model.fields,field_description:auto_backup.field_db_backup__name
diff --git a/auto_backup/i18n/ro.po b/auto_backup/i18n/ro.po
index e939337fc28..b2954f51394 100644
--- a/auto_backup/i18n/ro.po
+++ b/auto_backup/i18n/ro.po
@@ -154,7 +154,7 @@ msgstr ""
 #. module: auto_backup
 #: model:ir.model.fields,field_description:auto_backup.field_db_backup__display_name
 msgid "Display Name"
-msgstr "Nume Afi??at"
+msgstr "Nume Afişat"
 
 #. module: auto_backup
 #: code:addons/auto_backup/models/db_backup.py:123
@@ -236,12 +236,12 @@ msgstr ""
 #. module: auto_backup
 #: model:ir.model.fields,field_description:auto_backup.field_db_backup____last_update
 msgid "Last Modified on"
-msgstr "Ultima actualizare ??n"
+msgstr "Ultima actualizare în"
 
 #. module: auto_backup
 #: model:ir.model.fields,field_description:auto_backup.field_db_backup__write_uid
 msgid "Last Updated by"
-msgstr "Ultima actualizare f??cut?? de"
+msgstr "Ultima actualizare făcută de"
 
 #. module: auto_backup
 #: model:ir.model.fields,field_description:auto_backup.field_db_backup__write_date
diff --git a/auto_backup/i18n/ru.po b/auto_backup/i18n/ru.po
index f70421ab614..d14f2c4e2dc 100644
--- a/auto_backup/i18n/ru.po
+++ b/auto_backup/i18n/ru.po
@@ -121,12 +121,12 @@ msgstr ""
 #. module: auto_backup
 #: model:ir.model.fields,field_description:auto_backup.field_db_backup__create_uid
 msgid "Created by"
-msgstr "??????????????"
+msgstr "Создано"
 
 #. module: auto_backup
 #: model:ir.model.fields,field_description:auto_backup.field_db_backup__create_date
 msgid "Created on"
-msgstr "????????????"
+msgstr "Создан"
 
 #. module: auto_backup
 #: model:ir.model,name:auto_backup.model_db_backup
@@ -242,12 +242,12 @@ msgstr ""
 #. module: auto_backup
 #: model:ir.model.fields,field_description:auto_backup.field_db_backup__write_uid
 msgid "Last Updated by"
-msgstr "?????????????????? ?????? ??????????????????"
+msgstr "Последний раз обновлено"
 
 #. module: auto_backup
 #: model:ir.model.fields,field_description:auto_backup.field_db_backup__write_date
 msgid "Last Updated on"
-msgstr "?????????????????? ?????? ??????????????????"
+msgstr "Последний раз обновлено"
 
 #. module: auto_backup
 #: selection:db.backup,method:0
@@ -277,7 +277,7 @@ msgstr ""
 #. module: auto_backup
 #: model:ir.model.fields,field_description:auto_backup.field_db_backup__name
 msgid "Name"
-msgstr "????????????????"
+msgstr "Название"
 
 #. module: auto_backup
 #: model:ir.model.fields,field_description:auto_backup.field_db_backup__message_needaction_counter
diff --git a/auto_backup/i18n/sk.po b/auto_backup/i18n/sk.po
index a122068a0b6..670f3c7c63e 100644
--- a/auto_backup/i18n/sk.po
+++ b/auto_backup/i18n/sk.po
@@ -124,7 +124,7 @@ msgstr "Vytvoril"
 #. module: auto_backup
 #: model:ir.model.fields,field_description:auto_backup.field_db_backup__create_date
 msgid "Created on"
-msgstr "Vytvoren??"
+msgstr "Vytvorené"
 
 #. module: auto_backup
 #: model:ir.model,name:auto_backup.model_db_backup
@@ -153,7 +153,7 @@ msgstr ""
 #. module: auto_backup
 #: model:ir.model.fields,field_description:auto_backup.field_db_backup__display_name
 msgid "Display Name"
-msgstr "Zobrazi?? meno"
+msgstr "Zobraziť meno"
 
 #. module: auto_backup
 #: code:addons/auto_backup/models/db_backup.py:123
@@ -235,7 +235,7 @@ msgstr ""
 #. module: auto_backup
 #: model:ir.model.fields,field_description:auto_backup.field_db_backup____last_update
 msgid "Last Modified on"
-msgstr "Posledn?? modifik??cia"
+msgstr "Posledná modifikácia"
 
 #. module: auto_backup
 #: model:ir.model.fields,field_description:auto_backup.field_db_backup__write_uid
@@ -245,7 +245,7 @@ msgstr "Naposledy upravoval"
 #. module: auto_backup
 #: model:ir.model.fields,field_description:auto_backup.field_db_backup__write_date
 msgid "Last Updated on"
-msgstr "Naposledy upravovan??"
+msgstr "Naposledy upravované"
 
 #. module: auto_backup
 #: selection:db.backup,method:0
diff --git a/auto_backup/i18n/sl.po b/auto_backup/i18n/sl.po
index 5d9888b207a..e59a84330c2 100644
--- a/auto_backup/i18n/sl.po
+++ b/auto_backup/i18n/sl.po
@@ -78,8 +78,8 @@ msgid ""
 "Backups older than this will be deleted automatically. Set 0 to disable "
 "autodeletion."
 msgstr ""
-"Varnostne kopije starej??e od tega bodo samodejno izbrisane. Nastavite 0, da "
-"bi onemogo??ili samodejno brisanje."
+"Varnostne kopije starejše od tega bodo samodejno izbrisane. Nastavite 0, da "
+"bi onemogočili samodejno brisanje."
 
 #. module: auto_backup
 #: model_terms:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
@@ -106,13 +106,13 @@ msgstr "Izberite metodo shranjevanja za to varnostno kopiranje."
 #: code:addons/auto_backup/models/db_backup.py:265
 #, python-format
 msgid "Cleanup of old database backups failed."
-msgstr "Brisanje starih varnostnih kopij podatkovnih baz neuspe??no."
+msgstr "Brisanje starih varnostnih kopij podatkovnih baz neuspešno."
 
 #. module: auto_backup
 #: code:addons/auto_backup/models/db_backup.py:137
 #, python-format
 msgid "Connection Test Failed!"
-msgstr "Test povezave neuspe??en!"
+msgstr "Test povezave neuspešen!"
 
 #. module: auto_backup
 #: code:addons/auto_backup/models/db_backup.py:132
@@ -140,14 +140,14 @@ msgstr ""
 #: model:mail.message.subtype,description:auto_backup.mail_message_subtype_failure
 #, python-format
 msgid "Database backup failed."
-msgstr "Varnostno kopiranje podatkovne baze neuspe??no."
+msgstr "Varnostno kopiranje podatkovne baze neuspešno."
 
 #. module: auto_backup
 #: code:addons/auto_backup/models/db_backup.py:227
 #: model:mail.message.subtype,description:auto_backup.mail_message_subtype_success
 #, python-format
 msgid "Database backup succeeded."
-msgstr "Varnostno kopiranje podatkovne baze uspe??no."
+msgstr "Varnostno kopiranje podatkovne baze uspešno."
 
 #. module: auto_backup
 #: model:ir.model.fields,field_description:auto_backup.field_db_backup__days_to_keep
@@ -201,12 +201,12 @@ msgstr ""
 #. module: auto_backup
 #: model_terms:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
 msgid "Go to Settings / Technical / Automation / Scheduled Actions."
-msgstr "Pojdi na Nastavitve / Tehni??no / Avtomatizacija / Planirana dejanja"
+msgstr "Pojdi na Nastavitve / Tehnično / Avtomatizacija / Planirana dejanja"
 
 #. module: auto_backup
 #: model_terms:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
 msgid "Help"
-msgstr "Pomo??"
+msgstr "Pomoč"
 
 #. module: auto_backup
 #: sql_constraint:db.backup:0
@@ -241,7 +241,7 @@ msgstr ""
 #. module: auto_backup
 #: model:ir.model.fields,field_description:auto_backup.field_db_backup____last_update
 msgid "Last Modified on"
-msgstr "Zadnji?? spremenjeno"
+msgstr "Zadnjič spremenjeno"
 
 #. module: auto_backup
 #: model:ir.model.fields,field_description:auto_backup.field_db_backup__write_uid
@@ -251,7 +251,7 @@ msgstr "Zadnji posodobil"
 #. module: auto_backup
 #: model:ir.model.fields,field_description:auto_backup.field_db_backup__write_date
 msgid "Last Updated on"
-msgstr "Zadnji?? posodobljeno"
+msgstr "Zadnjič posodobljeno"
 
 #. module: auto_backup
 #: selection:db.backup,method:0
@@ -314,18 +314,18 @@ msgid ""
 "Path to the private key file. Only the Odoo user should have read "
 "permissions for that file."
 msgstr ""
-"Pot do datoteke privatnega klju??a. Le Odoo uporabnik naj ima dovoljenje za "
+"Pot do datoteke privatnega ključa. Le Odoo uporabnik naj ima dovoljenje za "
 "branje te datoteke."
 
 #. module: auto_backup
 #: model:ir.model.fields,field_description:auto_backup.field_db_backup__sftp_private_key
 msgid "Private key location"
-msgstr "Lokacija privatnega klju??a"
+msgstr "Lokacija privatnega ključa"
 
 #. module: auto_backup
 #: selection:db.backup,method:0
 msgid "Remote SFTP server"
-msgstr "Oddaljeni SFTP stre??nik"
+msgstr "Oddaljeni SFTP strežnik"
 
 #. module: auto_backup
 #: model:ir.model.fields,field_description:auto_backup.field_db_backup__sftp_password
@@ -340,7 +340,7 @@ msgstr "SFTP port"
 #. module: auto_backup
 #: model:ir.model.fields,field_description:auto_backup.field_db_backup__sftp_host
 msgid "SFTP Server"
-msgstr "SFTP stre??nik"
+msgstr "SFTP strežnik"
 
 #. module: auto_backup
 #: model_terms:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
@@ -357,7 +357,7 @@ msgstr "Iskanje dejanja z nazivom 'Razporejevalnik varnostnih kopiranj'"
 msgid ""
 "Set the scheduler to active and fill in how often you want backups generated."
 msgstr ""
-"Nastavite razporejevalnik kot aktiven in izpolnite, kako pogosto ??elite "
+"Nastavite razporejevalnik kot aktiven in izpolnite, kako pogosto želite "
 "ustvarjati varnostne kopije."
 
 #. module: auto_backup
@@ -374,7 +374,7 @@ msgstr "Test SFTP povezave"
 #: model:ir.model.fields,help:auto_backup.field_db_backup__sftp_host
 msgid ""
 "The host name or IP address from your remote server. For example 192.168.0.1"
-msgstr "IP naslov ali 'hostname' oddaljenega stre??nika. Npr. 192.168.0.1"
+msgstr "IP naslov ali 'hostname' oddaljenega strežnika. Npr. 192.168.0.1"
 
 #. module: auto_backup
 #: model:ir.model.fields,help:auto_backup.field_db_backup__sftp_password
@@ -382,20 +382,20 @@ msgid ""
 "The password for the SFTP connection. If you specify a private key file, "
 "then this is the password to decrypt it."
 msgstr ""
-"Geslo za SFTP povezavo. ??e dolo??ite datoteko privatnega klju??a, je to geslo "
-"za de??ifriranje klju??a."
+"Geslo za SFTP povezavo. Če določite datoteko privatnega ključa, je to geslo "
+"za dešifriranje ključa."
 
 #. module: auto_backup
 #: model:ir.model.fields,help:auto_backup.field_db_backup__sftp_port
 msgid "The port on the FTP server that accepts SSH/SFTP calls."
-msgstr "Vrata FTP stre??nika, ki sprejema SSH/SFTP klice."
+msgstr "Vrata FTP strežnika, ki sprejema SSH/SFTP klice."
 
 #. module: auto_backup
 #: model:ir.model.fields,help:auto_backup.field_db_backup__sftp_user
 msgid ""
 "The username where the SFTP connection should be made with. This is the user "
 "on the external server."
-msgstr "Uporabni??ko ime SFTP povezave. To je uporabnik zunanjega stre??nika."
+msgstr "Uporabniško ime SFTP povezave. To je uporabnik zunanjega strežnika."
 
 #. module: auto_backup
 #: model:ir.model.fields,field_description:auto_backup.field_db_backup__message_unread
@@ -413,13 +413,13 @@ msgid ""
 "Use SFTP with caution! This writes files to external servers under the path "
 "you specify."
 msgstr ""
-"SFTP uporabljajte previdno! Datoteke se bodo zapisovale na zunanje stre??nike "
-"v pot, ki jo sami dolo??ite."
+"SFTP uporabljajte previdno! Datoteke se bodo zapisovale na zunanje strežnike "
+"v pot, ki jo sami določite."
 
 #. module: auto_backup
 #: model:ir.model.fields,field_description:auto_backup.field_db_backup__sftp_user
 msgid "Username in the SFTP Server"
-msgstr "Uporabni??ko ime za SFTP stre??nik"
+msgstr "Uporabniško ime za SFTP strežnik"
 
 #. module: auto_backup
 #: model_terms:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
diff --git a/auto_backup/i18n/th.po b/auto_backup/i18n/th.po
index 065cdd14c8c..2e6cce24c84 100644
--- a/auto_backup/i18n/th.po
+++ b/auto_backup/i18n/th.po
@@ -119,12 +119,12 @@ msgstr ""
 #. module: auto_backup
 #: model:ir.model.fields,field_description:auto_backup.field_db_backup__create_uid
 msgid "Created by"
-msgstr "????????????????????????"
+msgstr "สร้างโดย"
 
 #. module: auto_backup
 #: model:ir.model.fields,field_description:auto_backup.field_db_backup__create_date
 msgid "Created on"
-msgstr "??????????????????????????????"
+msgstr "สร้างเมื่อ"
 
 #. module: auto_backup
 #: model:ir.model,name:auto_backup.model_db_backup
@@ -153,7 +153,7 @@ msgstr ""
 #. module: auto_backup
 #: model:ir.model.fields,field_description:auto_backup.field_db_backup__display_name
 msgid "Display Name"
-msgstr "??????????????????????????????????????????"
+msgstr "ชื่อที่ใช้แสดง"
 
 #. module: auto_backup
 #: code:addons/auto_backup/models/db_backup.py:123
@@ -210,7 +210,7 @@ msgstr ""
 #. module: auto_backup
 #: model:ir.model.fields,field_description:auto_backup.field_db_backup__id
 msgid "ID"
-msgstr "????????????"
+msgstr "รหัส"
 
 #. module: auto_backup
 #: model:ir.model.fields,help:auto_backup.field_db_backup__message_unread
@@ -235,17 +235,17 @@ msgstr ""
 #. module: auto_backup
 #: model:ir.model.fields,field_description:auto_backup.field_db_backup____last_update
 msgid "Last Modified on"
-msgstr "??????????????????????????????????????????????????????????????????"
+msgstr "แก้ไขครั้งสุดท้ายเมื่อ"
 
 #. module: auto_backup
 #: model:ir.model.fields,field_description:auto_backup.field_db_backup__write_uid
 msgid "Last Updated by"
-msgstr "???????????????????????????????????????????????????????????????"
+msgstr "อัพเดทครั้งสุดท้ายโดย"
 
 #. module: auto_backup
 #: model:ir.model.fields,field_description:auto_backup.field_db_backup__write_date
 msgid "Last Updated on"
-msgstr "?????????????????????????????????????????????????????????????????????"
+msgstr "อัพเดทครั้งสุดท้ายเมื่อ"
 
 #. module: auto_backup
 #: selection:db.backup,method:0
@@ -275,7 +275,7 @@ msgstr ""
 #. module: auto_backup
 #: model:ir.model.fields,field_description:auto_backup.field_db_backup__name
 msgid "Name"
-msgstr "????????????"
+msgstr "ชื่อ"
 
 #. module: auto_backup
 #: model:ir.model.fields,field_description:auto_backup.field_db_backup__message_needaction_counter
diff --git a/auto_backup/i18n/tr.po b/auto_backup/i18n/tr.po
index 88af72e159c..693be9c550a 100644
--- a/auto_backup/i18n/tr.po
+++ b/auto_backup/i18n/tr.po
@@ -119,12 +119,12 @@ msgstr ""
 #. module: auto_backup
 #: model:ir.model.fields,field_description:auto_backup.field_db_backup__create_uid
 msgid "Created by"
-msgstr "Olu??turan"
+msgstr "Oluşturan"
 
 #. module: auto_backup
 #: model:ir.model.fields,field_description:auto_backup.field_db_backup__create_date
 msgid "Created on"
-msgstr "Olu??turuldu"
+msgstr "Oluşturuldu"
 
 #. module: auto_backup
 #: model:ir.model,name:auto_backup.model_db_backup
@@ -153,7 +153,7 @@ msgstr ""
 #. module: auto_backup
 #: model:ir.model.fields,field_description:auto_backup.field_db_backup__display_name
 msgid "Display Name"
-msgstr "G??r??nen ??sim"
+msgstr "Görünen İsim"
 
 #. module: auto_backup
 #: code:addons/auto_backup/models/db_backup.py:123
@@ -175,7 +175,7 @@ msgstr ""
 #. module: auto_backup
 #: model:ir.model.fields,field_description:auto_backup.field_db_backup__folder
 msgid "Folder"
-msgstr "Klas??r"
+msgstr "Klasör"
 
 #. module: auto_backup
 #: model:ir.model.fields,field_description:auto_backup.field_db_backup__message_follower_ids
@@ -235,17 +235,17 @@ msgstr ""
 #. module: auto_backup
 #: model:ir.model.fields,field_description:auto_backup.field_db_backup____last_update
 msgid "Last Modified on"
-msgstr "Son de??i??iklik"
+msgstr "Son değişiklik"
 
 #. module: auto_backup
 #: model:ir.model.fields,field_description:auto_backup.field_db_backup__write_uid
 msgid "Last Updated by"
-msgstr "Son g??ncelleyen"
+msgstr "Son güncelleyen"
 
 #. module: auto_backup
 #: model:ir.model.fields,field_description:auto_backup.field_db_backup__write_date
 msgid "Last Updated on"
-msgstr "Son g??ncellenme"
+msgstr "Son güncellenme"
 
 #. module: auto_backup
 #: selection:db.backup,method:0
@@ -275,7 +275,7 @@ msgstr "Method"
 #. module: auto_backup
 #: model:ir.model.fields,field_description:auto_backup.field_db_backup__name
 msgid "Name"
-msgstr "Ad??"
+msgstr "Adı"
 
 #. module: auto_backup
 #: model:ir.model.fields,field_description:auto_backup.field_db_backup__message_needaction_counter
diff --git a/auto_backup/i18n/tr_TR.po b/auto_backup/i18n/tr_TR.po
index 64101b9b88b..abd374b82d1 100644
--- a/auto_backup/i18n/tr_TR.po
+++ b/auto_backup/i18n/tr_TR.po
@@ -120,12 +120,12 @@ msgstr ""
 #. module: auto_backup
 #: model:ir.model.fields,field_description:auto_backup.field_db_backup__create_uid
 msgid "Created by"
-msgstr "Olu??turan"
+msgstr "Oluşturan"
 
 #. module: auto_backup
 #: model:ir.model.fields,field_description:auto_backup.field_db_backup__create_date
 msgid "Created on"
-msgstr "Olu??turulma tarihi"
+msgstr "Oluşturulma tarihi"
 
 #. module: auto_backup
 #: model:ir.model,name:auto_backup.model_db_backup
@@ -154,7 +154,7 @@ msgstr ""
 #. module: auto_backup
 #: model:ir.model.fields,field_description:auto_backup.field_db_backup__display_name
 msgid "Display Name"
-msgstr "G??r??nen ad"
+msgstr "Görünen ad"
 
 #. module: auto_backup
 #: code:addons/auto_backup/models/db_backup.py:123
@@ -236,17 +236,17 @@ msgstr ""
 #. module: auto_backup
 #: model:ir.model.fields,field_description:auto_backup.field_db_backup____last_update
 msgid "Last Modified on"
-msgstr "En son g??ncelleme tarihi"
+msgstr "En son güncelleme tarihi"
 
 #. module: auto_backup
 #: model:ir.model.fields,field_description:auto_backup.field_db_backup__write_uid
 msgid "Last Updated by"
-msgstr "En son g??ncelleyen "
+msgstr "En son güncelleyen "
 
 #. module: auto_backup
 #: model:ir.model.fields,field_description:auto_backup.field_db_backup__write_date
 msgid "Last Updated on"
-msgstr "En son g??ncelleme tarihi"
+msgstr "En son güncelleme tarihi"
 
 #. module: auto_backup
 #: selection:db.backup,method:0
diff --git a/auto_backup/i18n/uk.po b/auto_backup/i18n/uk.po
index 3e53f3f2d24..9ad08daacc5 100644
--- a/auto_backup/i18n/uk.po
+++ b/auto_backup/i18n/uk.po
@@ -120,12 +120,12 @@ msgstr ""
 #. module: auto_backup
 #: model:ir.model.fields,field_description:auto_backup.field_db_backup__create_uid
 msgid "Created by"
-msgstr "??????????????"
+msgstr "Створив"
 
 #. module: auto_backup
 #: model:ir.model.fields,field_description:auto_backup.field_db_backup__create_date
 msgid "Created on"
-msgstr "????????????????"
+msgstr "Створено"
 
 #. module: auto_backup
 #: model:ir.model,name:auto_backup.model_db_backup
@@ -154,7 +154,7 @@ msgstr ""
 #. module: auto_backup
 #: model:ir.model.fields,field_description:auto_backup.field_db_backup__display_name
 msgid "Display Name"
-msgstr "?????????? ?????? ????????????????????????"
+msgstr "Назва для відображення"
 
 #. module: auto_backup
 #: code:addons/auto_backup/models/db_backup.py:123
@@ -236,17 +236,17 @@ msgstr ""
 #. module: auto_backup
 #: model:ir.model.fields,field_description:auto_backup.field_db_backup____last_update
 msgid "Last Modified on"
-msgstr "?????????????? ??????????????????????"
+msgstr "Остання модифікація"
 
 #. module: auto_backup
 #: model:ir.model.fields,field_description:auto_backup.field_db_backup__write_uid
 msgid "Last Updated by"
-msgstr "???????????????? ??????????????????????????"
+msgstr "Востаннє відредаговано"
 
 #. module: auto_backup
 #: model:ir.model.fields,field_description:auto_backup.field_db_backup__write_date
 msgid "Last Updated on"
-msgstr "???????? ?????????????????? ??????????"
+msgstr "Дата останньої зміни"
 
 #. module: auto_backup
 #: selection:db.backup,method:0
diff --git a/auto_backup/i18n/vi.po b/auto_backup/i18n/vi.po
index 93fb0f9373e..c2dcd368950 100644
--- a/auto_backup/i18n/vi.po
+++ b/auto_backup/i18n/vi.po
@@ -119,12 +119,12 @@ msgstr ""
 #. module: auto_backup
 #: model:ir.model.fields,field_description:auto_backup.field_db_backup__create_uid
 msgid "Created by"
-msgstr "???????c t???o b???i"
+msgstr "Được tạo bởi"
 
 #. module: auto_backup
 #: model:ir.model.fields,field_description:auto_backup.field_db_backup__create_date
 msgid "Created on"
-msgstr "T???o tr??n"
+msgstr "Tạo trên"
 
 #. module: auto_backup
 #: model:ir.model,name:auto_backup.model_db_backup
@@ -153,7 +153,7 @@ msgstr ""
 #. module: auto_backup
 #: model:ir.model.fields,field_description:auto_backup.field_db_backup__display_name
 msgid "Display Name"
-msgstr "T??n hi???n th???"
+msgstr "Tên hiển thị"
 
 #. module: auto_backup
 #: code:addons/auto_backup/models/db_backup.py:123
@@ -235,7 +235,7 @@ msgstr ""
 #. module: auto_backup
 #: model:ir.model.fields,field_description:auto_backup.field_db_backup____last_update
 msgid "Last Modified on"
-msgstr "S???a l???n cu???i v??o"
+msgstr "Sửa lần cuối vào"
 
 #. module: auto_backup
 #: model:ir.model.fields,field_description:auto_backup.field_db_backup__write_uid
@@ -245,7 +245,7 @@ msgstr "Last Updated by"
 #. module: auto_backup
 #: model:ir.model.fields,field_description:auto_backup.field_db_backup__write_date
 msgid "Last Updated on"
-msgstr "C???p nh???t l???n cu???i v??o"
+msgstr "Cập nhật lần cuối vào"
 
 #. module: auto_backup
 #: selection:db.backup,method:0
@@ -275,7 +275,7 @@ msgstr ""
 #. module: auto_backup
 #: model:ir.model.fields,field_description:auto_backup.field_db_backup__name
 msgid "Name"
-msgstr "T??n"
+msgstr "Tên"
 
 #. module: auto_backup
 #: model:ir.model.fields,field_description:auto_backup.field_db_backup__message_needaction_counter
diff --git a/auto_backup/i18n/vi_VN.po b/auto_backup/i18n/vi_VN.po
index 85e5384ecbc..87c81b2384a 100644
--- a/auto_backup/i18n/vi_VN.po
+++ b/auto_backup/i18n/vi_VN.po
@@ -120,12 +120,12 @@ msgstr ""
 #. module: auto_backup
 #: model:ir.model.fields,field_description:auto_backup.field_db_backup__create_uid
 msgid "Created by"
-msgstr "T???o b???i"
+msgstr "Tạo bởi"
 
 #. module: auto_backup
 #: model:ir.model.fields,field_description:auto_backup.field_db_backup__create_date
 msgid "Created on"
-msgstr "T???o v??o"
+msgstr "Tạo vào"
 
 #. module: auto_backup
 #: model:ir.model,name:auto_backup.model_db_backup
@@ -241,12 +241,12 @@ msgstr ""
 #. module: auto_backup
 #: model:ir.model.fields,field_description:auto_backup.field_db_backup__write_uid
 msgid "Last Updated by"
-msgstr "C???p nh???t l???n cu???i b???i"
+msgstr "Cập nhật lần cuối bởi"
 
 #. module: auto_backup
 #: model:ir.model.fields,field_description:auto_backup.field_db_backup__write_date
 msgid "Last Updated on"
-msgstr "C???p nh???t l???n cu???i v??o"
+msgstr "Cập nhật lần cuối vào"
 
 #. module: auto_backup
 #: selection:db.backup,method:0
@@ -276,7 +276,7 @@ msgstr ""
 #. module: auto_backup
 #: model:ir.model.fields,field_description:auto_backup.field_db_backup__name
 msgid "Name"
-msgstr "T??n"
+msgstr "Tên"
 
 #. module: auto_backup
 #: model:ir.model.fields,field_description:auto_backup.field_db_backup__message_needaction_counter
diff --git a/auto_backup/i18n/zh_CN.po b/auto_backup/i18n/zh_CN.po
index b897838b3a3..3e370213f7f 100644
--- a/auto_backup/i18n/zh_CN.po
+++ b/auto_backup/i18n/zh_CN.po
@@ -10,7 +10,7 @@ msgstr ""
 "Report-Msgid-Bugs-To: \n"
 "POT-Creation-Date: 2018-03-03 10:08+0000\n"
 "PO-Revision-Date: 2019-09-01 04:34+0000\n"
-"Last-Translator: ????????? <674416404@qq.com>\n"
+"Last-Translator: 黎伟杰 <674416404@qq.com>\n"
 "Language-Team: Chinese (China) (https://www.transifex.com/oca/teams/23907/"
 "zh_CN/)\n"
 "Language: zh_CN\n"
@@ -28,186 +28,186 @@ msgstr "/home/odoo/.ssh/id_rsa"
 #. module: auto_backup
 #: model:ir.model.fields,help:auto_backup.field_db_backup__folder
 msgid "Absolute path for storing the backups"
-msgstr "??????????????????"
+msgstr "备份绝对路径"
 
 #. module: auto_backup
 #: model:ir.model.fields,field_description:auto_backup.field_db_backup__message_needaction
 msgid "Action Needed"
-msgstr "????????????"
+msgstr "前置操作"
 
 #. module: auto_backup
 #: model:ir.model.fields,field_description:auto_backup.field_db_backup__message_attachment_count
 msgid "Attachment Count"
-msgstr "????????????"
+msgstr "附件数量"
 
 #. module: auto_backup
 #: model:ir.actions.act_window,name:auto_backup.action_backup_conf_form
 #: model:ir.ui.menu,name:auto_backup.backup_conf_menu
 msgid "Automated Backups"
-msgstr "????????????"
+msgstr "自动备份"
 
 #. module: auto_backup
 #: model_terms:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
 msgid "Automatic backups of the database can be scheduled as follows:"
-msgstr "?????????????????????????????????????????????"
+msgstr "数据库的自动备份时间安排如下:"
 
 #. module: auto_backup
 #: model:mail.message.subtype,name:auto_backup.mail_message_subtype_failure
 msgid "Backup Failed"
-msgstr "????????????"
+msgstr "备份失败"
 
 #. module: auto_backup
 #: model:ir.model.fields,field_description:auto_backup.field_db_backup__backup_format
 msgid "Backup Format"
-msgstr "????????????"
+msgstr "备份格式"
 
 #. module: auto_backup
 #: model:ir.actions.server,name:auto_backup.ir_cron_backup_scheduler_0_ir_actions_server
 #: model:ir.cron,cron_name:auto_backup.ir_cron_backup_scheduler_0
 #: model:ir.cron,name:auto_backup.ir_cron_backup_scheduler_0
 msgid "Backup Scheduler"
-msgstr "????????????"
+msgstr "备份计划"
 
 #. module: auto_backup
 #: model:mail.message.subtype,name:auto_backup.mail_message_subtype_success
 msgid "Backup Successful"
-msgstr "????????????"
+msgstr "备份成功"
 
 #. module: auto_backup
 #: model:ir.model.fields,help:auto_backup.field_db_backup__days_to_keep
 msgid ""
 "Backups older than this will be deleted automatically. Set 0 to disable "
 "autodeletion."
-msgstr "???????????????????????????????????????0?????????????????????"
+msgstr "自动删除旧的备份文件,设置0可禁用此功能。"
 
 #. module: auto_backup
 #: model_terms:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
 msgid "Basic backup configuration"
-msgstr "??????????????????"
+msgstr "备份基础设置"
 
 #. module: auto_backup
 #: sql_constraint:db.backup:0
 msgid "Cannot duplicate a configuration."
-msgstr "?????????????????????"
+msgstr "无法复制配置。"
 
 #. module: auto_backup
 #: model:ir.model.fields,help:auto_backup.field_db_backup__backup_format
 msgid "Choose the format for this backup."
-msgstr "???????????????????????????."
+msgstr "选择这个备份的格式."
 
 #. module: auto_backup
 #: model:ir.model.fields,help:auto_backup.field_db_backup__method
 msgid "Choose the storage method for this backup."
-msgstr "?????????????????????????????????."
+msgstr "选择这个备份的存储方法."
 
 #. module: auto_backup
 #: code:addons/auto_backup/models/db_backup.py:265
 #, python-format
 msgid "Cleanup of old database backups failed."
-msgstr "??????????????????????????????."
+msgstr "清除旧数据库备份失败."
 
 #. module: auto_backup
 #: code:addons/auto_backup/models/db_backup.py:137
 #, python-format
 msgid "Connection Test Failed!"
-msgstr "?????????????????????"
+msgstr "连接测试失败!"
 
 #. module: auto_backup
 #: code:addons/auto_backup/models/db_backup.py:132
 #, python-format
 msgid "Connection Test Succeeded!"
-msgstr "?????????????????????"
+msgstr "连接测试成功!"
 
 #. module: auto_backup
 #: model:ir.model.fields,field_description:auto_backup.field_db_backup__create_uid
 msgid "Created by"
-msgstr "?????????"
+msgstr "创建者"
 
 #. module: auto_backup
 #: model:ir.model.fields,field_description:auto_backup.field_db_backup__create_date
 msgid "Created on"
-msgstr "????????????"
+msgstr "创建时间"
 
 #. module: auto_backup
 #: model:ir.model,name:auto_backup.model_db_backup
 msgid "Database Backup"
-msgstr "???????????????"
+msgstr "数据库备份"
 
 #. module: auto_backup
 #: code:addons/auto_backup/models/db_backup.py:219
 #: model:mail.message.subtype,description:auto_backup.mail_message_subtype_failure
 #, python-format
 msgid "Database backup failed."
-msgstr "????????????????????????"
+msgstr "数据库备份失败。"
 
 #. module: auto_backup
 #: code:addons/auto_backup/models/db_backup.py:227
 #: model:mail.message.subtype,description:auto_backup.mail_message_subtype_success
 #, python-format
 msgid "Database backup succeeded."
-msgstr "?????????????????????."
+msgstr "数据库备份成功."
 
 #. module: auto_backup
 #: model:ir.model.fields,field_description:auto_backup.field_db_backup__days_to_keep
 msgid "Days To Keep"
-msgstr "????????????"
+msgstr "保留天数"
 
 #. module: auto_backup
 #: model:ir.model.fields,field_description:auto_backup.field_db_backup__display_name
 msgid "Display Name"
-msgstr "????????????"
+msgstr "显示名称"
 
 #. module: auto_backup
 #: code:addons/auto_backup/models/db_backup.py:123
 #, python-format
 msgid ""
 "Do not save backups on your filestore, or you will backup your backups too!"
-msgstr "???????????????????????????????????????,?????????????????????????????????"
+msgstr "不要在此存储上保存备份文件,否则你将需要再次备份!"
 
 #. module: auto_backup
 #: model_terms:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
 msgid "Execute backup"
-msgstr "????????????"
+msgstr "执行备份"
 
 #. module: auto_backup
 #: model:ir.actions.server,name:auto_backup.action_server_backup
 msgid "Execute backup(s)"
-msgstr "????????????(??????)"
+msgstr "执行备份(多项)"
 
 #. module: auto_backup
 #: model:ir.model.fields,field_description:auto_backup.field_db_backup__folder
 msgid "Folder"
-msgstr "?????????"
+msgstr "文件夹"
 
 #. module: auto_backup
 #: model:ir.model.fields,field_description:auto_backup.field_db_backup__message_follower_ids
 msgid "Followers"
-msgstr "?????????"
+msgstr "关注者"
 
 #. module: auto_backup
 #: model:ir.model.fields,field_description:auto_backup.field_db_backup__message_channel_ids
 msgid "Followers (Channels)"
-msgstr "?????????(??????)"
+msgstr "关注者(频道)"
 
 #. module: auto_backup
 #: model:ir.model.fields,field_description:auto_backup.field_db_backup__message_partner_ids
 msgid "Followers (Partners)"
-msgstr "?????????(????????????)"
+msgstr "关注者(业务伙伴)"
 
 #. module: auto_backup
 #: model_terms:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
 msgid "Go to Settings / Technical / Automation / Scheduled Actions."
-msgstr "??????   ?????? / ?????? / ????????? / ??????????????????"
+msgstr "点击   设置 / 技术 / 自动化 / 安排的动作。"
 
 #. module: auto_backup
 #: model_terms:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
 msgid "Help"
-msgstr "??????"
+msgstr "帮助"
 
 #. module: auto_backup
 #: sql_constraint:db.backup:0
 msgid "I cannot remove backups from the future. Ask Doc for that."
-msgstr "????????????????????????????????????Doc?????????"
+msgstr "我无法从将来删除备份。向Doc询问。"
 
 #. module: auto_backup
 #: model:ir.model.fields,field_description:auto_backup.field_db_backup__id
@@ -217,185 +217,185 @@ msgstr "ID"
 #. module: auto_backup
 #: model:ir.model.fields,help:auto_backup.field_db_backup__message_unread
 msgid "If checked new messages require your attention."
-msgstr "????????????????????????????????????????????????"
+msgstr "如果检查了新消息,需要您的注意。"
 
 #. module: auto_backup
 #: model:ir.model.fields,help:auto_backup.field_db_backup__message_needaction
 msgid "If checked, new messages require your attention."
-msgstr "????????????????????????????????????????????????"
+msgstr "如果勾选此项,则需要注意新消息。"
 
 #. module: auto_backup
 #: model:ir.model.fields,help:auto_backup.field_db_backup__message_has_error
 msgid "If checked, some messages have a delivery error."
-msgstr "??????????????????????????????????????????????????????"
+msgstr "如果勾选此项,有些消息会有传递错误。"
 
 #. module: auto_backup
 #: model:ir.model.fields,field_description:auto_backup.field_db_backup__message_is_follower
 msgid "Is Follower"
-msgstr "????????????"
+msgstr "是关注者"
 
 #. module: auto_backup
 #: model:ir.model.fields,field_description:auto_backup.field_db_backup____last_update
 msgid "Last Modified on"
-msgstr "??????????????????"
+msgstr "最后修改时间"
 
 #. module: auto_backup
 #: model:ir.model.fields,field_description:auto_backup.field_db_backup__write_uid
 msgid "Last Updated by"
-msgstr "???????????????"
+msgstr "最后更新者"
 
 #. module: auto_backup
 #: model:ir.model.fields,field_description:auto_backup.field_db_backup__write_date
 msgid "Last Updated on"
-msgstr "??????????????????"
+msgstr "最后更新时间"
 
 #. module: auto_backup
 #: selection:db.backup,method:0
 msgid "Local disk"
-msgstr "????????????"
+msgstr "本地磁盘"
 
 #. module: auto_backup
 #: model:ir.model.fields,field_description:auto_backup.field_db_backup__message_main_attachment_id
 msgid "Main Attachment"
-msgstr "????????????"
+msgstr "主要附件"
 
 #. module: auto_backup
 #: model:ir.model.fields,field_description:auto_backup.field_db_backup__message_has_error
 msgid "Message Delivery error"
-msgstr "??????????????????"
+msgstr "消息传递错误"
 
 #. module: auto_backup
 #: model:ir.model.fields,field_description:auto_backup.field_db_backup__message_ids
 msgid "Messages"
-msgstr "??????"
+msgstr "消息"
 
 #. module: auto_backup
 #: model:ir.model.fields,field_description:auto_backup.field_db_backup__method
 msgid "Method"
-msgstr "??????"
+msgstr "方法"
 
 #. module: auto_backup
 #: model:ir.model.fields,field_description:auto_backup.field_db_backup__name
 msgid "Name"
-msgstr "??????"
+msgstr "名称"
 
 #. module: auto_backup
 #: model:ir.model.fields,field_description:auto_backup.field_db_backup__message_needaction_counter
 msgid "Number of Actions"
-msgstr "????????????"
+msgstr "行动数量"
 
 #. module: auto_backup
 #: model:ir.model.fields,field_description:auto_backup.field_db_backup__message_has_error_counter
 msgid "Number of error"
-msgstr "????????????"
+msgstr "错误数量"
 
 #. module: auto_backup
 #: model:ir.model.fields,help:auto_backup.field_db_backup__message_needaction_counter
 msgid "Number of messages which requires an action"
-msgstr "???????????????????????????"
+msgstr "需要操作的消息数量"
 
 #. module: auto_backup
 #: model:ir.model.fields,help:auto_backup.field_db_backup__message_has_error_counter
 msgid "Number of messages with delivery error"
-msgstr "???????????????????????????"
+msgstr "发送错误的消息数量"
 
 #. module: auto_backup
 #: model:ir.model.fields,help:auto_backup.field_db_backup__message_unread_counter
 msgid "Number of unread messages"
-msgstr "?????????????????????"
+msgstr "未读消息的数量"
 
 #. module: auto_backup
 #: model:ir.model.fields,help:auto_backup.field_db_backup__sftp_private_key
 msgid ""
 "Path to the private key file. Only the Odoo user should have read "
 "permissions for that file."
-msgstr "??????????????????????????????Odoo??????????????????????????????????????????"
+msgstr "私钥文件的路径。只有Odoo用户才具有该文件的读取权限。"
 
 #. module: auto_backup
 #: model:ir.model.fields,field_description:auto_backup.field_db_backup__sftp_private_key
 msgid "Private key location"
-msgstr "????????????"
+msgstr "私钥位置"
 
 #. module: auto_backup
 #: selection:db.backup,method:0
 msgid "Remote SFTP server"
-msgstr "??????SFTP?????????"
+msgstr "远程SFTP服务器"
 
 #. module: auto_backup
 #: model:ir.model.fields,field_description:auto_backup.field_db_backup__sftp_password
 msgid "SFTP Password"
-msgstr "SFTP??????"
+msgstr "SFTP密码"
 
 #. module: auto_backup
 #: model:ir.model.fields,field_description:auto_backup.field_db_backup__sftp_port
 msgid "SFTP Port"
-msgstr "SFTP ??????"
+msgstr "SFTP 端口"
 
 #. module: auto_backup
 #: model:ir.model.fields,field_description:auto_backup.field_db_backup__sftp_host
 msgid "SFTP Server"
-msgstr "SFTP?????????"
+msgstr "SFTP服务器"
 
 #. module: auto_backup
 #: model_terms:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
 msgid "SFTP Settings"
-msgstr "SFTP??????"
+msgstr "SFTP设置"
 
 #. module: auto_backup
 #: model_terms:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
 msgid "Search the action named 'Backup scheduler'."
-msgstr "?????????????????????????????????????????????"
+msgstr "在安排的动作搜索“备份计划”。"
 
 #. module: auto_backup
 #: model_terms:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
 msgid ""
 "Set the scheduler to active and fill in how often you want backups generated."
-msgstr "?????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????"
+msgstr "将安排的动作设置为活动状态,并填写备份间隔时间,间隔时间单位,间隔次数,执行时间等数据库具体备份方案。"
 
 #. module: auto_backup
 #: model:ir.model.fields,help:auto_backup.field_db_backup__name
 msgid "Summary of this backup process"
-msgstr "????????????????????????"
+msgstr "此备份过程的摘要"
 
 #. module: auto_backup
 #: model_terms:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
 msgid "Test SFTP Connection"
-msgstr "?????? SFTP ??????"
+msgstr "测试 SFTP 连接"
 
 #. module: auto_backup
 #: model:ir.model.fields,help:auto_backup.field_db_backup__sftp_host
 msgid ""
 "The host name or IP address from your remote server. For example 192.168.0.1"
-msgstr "??????????????????????????????IP???????????????192.168.0.1"
+msgstr "远程服务器的主机名或IP地址。例如192.168.0.1"
 
 #. module: auto_backup
 #: model:ir.model.fields,help:auto_backup.field_db_backup__sftp_password
 msgid ""
 "The password for the SFTP connection. If you specify a private key file, "
 "then this is the password to decrypt it."
-msgstr "SFTP???????????????????????????????????????????????????????????????????????????"
+msgstr "SFTP连接的密码。如果指定私钥文件,则这是解密它的密码。"
 
 #. module: auto_backup
 #: model:ir.model.fields,help:auto_backup.field_db_backup__sftp_port
 msgid "The port on the FTP server that accepts SSH/SFTP calls."
-msgstr "FTP??????????????????SSH / SFTP??????????????????"
+msgstr "FTP服务器上接受SSH / SFTP调用的端口。"
 
 #. module: auto_backup
 #: model:ir.model.fields,help:auto_backup.field_db_backup__sftp_user
 msgid ""
 "The username where the SFTP connection should be made with. This is the user "
 "on the external server."
-msgstr "SFTP ????????????????????????????????????SFTP????????????????????????"
+msgstr "SFTP 连接使用该用户名。这是在SFTP服务器上的用户。"
 
 #. module: auto_backup
 #: model:ir.model.fields,field_description:auto_backup.field_db_backup__message_unread
 msgid "Unread Messages"
-msgstr "????????????"
+msgstr "未读消息"
 
 #. module: auto_backup
 #: model:ir.model.fields,field_description:auto_backup.field_db_backup__message_unread_counter
 msgid "Unread Messages Counter"
-msgstr "?????????????????????"
+msgstr "未读消息计数器"
 
 #. module: auto_backup
 #: model_terms:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
@@ -403,38 +403,38 @@ msgid ""
 "Use SFTP with caution! This writes files to external servers under the path "
 "you specify."
 msgstr ""
-"??????????????? SFTP???????????????????????????????????????????????????????????????SFTP????????????????????????"
-"???????????????????????????"
+"请注意你的 SFTP服务器网络安全!数据库备份文件将备份到你的SFTP服务器,文件保存"
+"在设置的目录下面。"
 
 #. module: auto_backup
 #: model:ir.model.fields,field_description:auto_backup.field_db_backup__sftp_user
 msgid "Username in the SFTP Server"
-msgstr "SFTP????????????????????????"
+msgstr "SFTP服务器中的用户名"
 
 #. module: auto_backup
 #: model_terms:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
 msgid "Warning:"
-msgstr "?????????"
+msgstr "警告:"
 
 #. module: auto_backup
 #: model:ir.model.fields,field_description:auto_backup.field_db_backup__website_message_ids
 msgid "Website Messages"
-msgstr "????????????"
+msgstr "网站消息"
 
 #. module: auto_backup
 #: model:ir.model.fields,help:auto_backup.field_db_backup__website_message_ids
 msgid "Website communication history"
-msgstr "??????????????????"
+msgstr "网站沟通记录"
 
 #. module: auto_backup
 #: model_terms:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
 msgid "john"
-msgstr "??????"
+msgstr "约翰"
 
 #. module: auto_backup
 #: selection:db.backup,backup_format:0
 msgid "pg_dump custom format (without filestore)"
-msgstr "pg_dump???????????????????????????????????????"
+msgstr "pg_dump自定义格式(没有文件存储)"
 
 #. module: auto_backup
 #: model_terms:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
@@ -444,4 +444,4 @@ msgstr "sftp.example.com"
 #. module: auto_backup
 #: selection:db.backup,backup_format:0
 msgid "zip (includes filestore)"
-msgstr "zip????????????????????????"
+msgstr "zip(包括文件存储)"
diff --git a/auto_backup/i18n/zh_TW.po b/auto_backup/i18n/zh_TW.po
index cf817f0b6c8..7a6caa564e9 100644
--- a/auto_backup/i18n/zh_TW.po
+++ b/auto_backup/i18n/zh_TW.po
@@ -120,12 +120,12 @@ msgstr ""
 #. module: auto_backup
 #: model:ir.model.fields,field_description:auto_backup.field_db_backup__create_uid
 msgid "Created by"
-msgstr "?????????"
+msgstr "建立者"
 
 #. module: auto_backup
 #: model:ir.model.fields,field_description:auto_backup.field_db_backup__create_date
 msgid "Created on"
-msgstr "?????????"
+msgstr "建立於"
 
 #. module: auto_backup
 #: model:ir.model,name:auto_backup.model_db_backup
@@ -154,7 +154,7 @@ msgstr ""
 #. module: auto_backup
 #: model:ir.model.fields,field_description:auto_backup.field_db_backup__display_name
 msgid "Display Name"
-msgstr "????????????"
+msgstr "顯示名稱"
 
 #. module: auto_backup
 #: code:addons/auto_backup/models/db_backup.py:123
@@ -236,17 +236,17 @@ msgstr ""
 #. module: auto_backup
 #: model:ir.model.fields,field_description:auto_backup.field_db_backup____last_update
 msgid "Last Modified on"
-msgstr "????????????:"
+msgstr "最後修改:"
 
 #. module: auto_backup
 #: model:ir.model.fields,field_description:auto_backup.field_db_backup__write_uid
 msgid "Last Updated by"
-msgstr "???????????????"
+msgstr "最後更新:"
 
 #. module: auto_backup
 #: model:ir.model.fields,field_description:auto_backup.field_db_backup__write_date
 msgid "Last Updated on"
-msgstr "???????????????"
+msgstr "最後更新於"
 
 #. module: auto_backup
 #: selection:db.backup,method:0
@@ -276,7 +276,7 @@ msgstr ""
 #. module: auto_backup
 #: model:ir.model.fields,field_description:auto_backup.field_db_backup__name
 msgid "Name"
-msgstr "??????"
+msgstr "名稱"
 
 #. module: auto_backup
 #: model:ir.model.fields,field_description:auto_backup.field_db_backup__message_needaction_counter
diff --git a/auto_backup/models/db_backup.py b/auto_backup/models/db_backup.py
index be927eb7a04..13217282df5 100644
--- a/auto_backup/models/db_backup.py
+++ b/auto_backup/models/db_backup.py
@@ -18,35 +18,36 @@
 try:
     import pysftp
 except ImportError:  # pragma: no cover
-    _logger.debug('Cannot import pysftp')
+    _logger.debug("Cannot import pysftp")
 
 
 class DbBackup(models.Model):
-    _description = 'Database Backup'
-    _name = 'db.backup'
+    _description = "Database Backup"
+    _name = "db.backup"
     _inherit = "mail.thread"
 
     _sql_constraints = [
         ("name_unique", "UNIQUE(name)", "Cannot duplicate a configuration."),
-        ("days_to_keep_positive", "CHECK(days_to_keep >= 0)",
-         "I cannot remove backups from the future. Ask Doc for that."),
+        (
+            "days_to_keep_positive",
+            "CHECK(days_to_keep >= 0)",
+            "I cannot remove backups from the future. Ask Doc for that.",
+        ),
     ]
 
     name = fields.Char(
-        compute="_compute_name",
-        store=True,
-        help="Summary of this backup process",
+        compute="_compute_name", store=True, help="Summary of this backup process",
     )
     folder = fields.Char(
         default=lambda self: self._default_folder(),
-        help='Absolute path for storing the backups',
-        required=True
+        help="Absolute path for storing the backups",
+        required=True,
     )
     days_to_keep = fields.Integer(
         required=True,
         default=0,
         help="Backups older than this will be deleted automatically. "
-             "Set 0 to disable autodeletion.",
+        "Set 0 to disable autodeletion.",
     )
     method = fields.Selection(
         [("local", "Local disk"), ("sftp", "Remote SFTP server")],
@@ -54,51 +55,48 @@ class DbBackup(models.Model):
         help="Choose the storage method for this backup.",
     )
     sftp_host = fields.Char(
-        'SFTP Server',
+        "SFTP Server",
         help=(
             "The host name or IP address from your remote"
             " server. For example 192.168.0.1"
-        )
+        ),
     )
     sftp_port = fields.Integer(
         "SFTP Port",
         default=22,
-        help="The port on the FTP server that accepts SSH/SFTP calls."
+        help="The port on the FTP server that accepts SSH/SFTP calls.",
     )
     sftp_user = fields.Char(
-        'Username in the SFTP Server',
+        "Username in the SFTP Server",
         help=(
             "The username where the SFTP connection "
             "should be made with. This is the user on the external server."
-        )
+        ),
     )
     sftp_password = fields.Char(
         "SFTP Password",
         help="The password for the SFTP connection. If you specify a private "
-             "key file, then this is the password to decrypt it.",
+        "key file, then this is the password to decrypt it.",
     )
     sftp_private_key = fields.Char(
         "Private key location",
         help="Path to the private key file. Only the Odoo user should have "
-             "read permissions for that file.",
+        "read permissions for that file.",
     )
 
     backup_format = fields.Selection(
         [
             ("zip", "zip (includes filestore)"),
-            ("dump", "pg_dump custom format (without filestore)")
+            ("dump", "pg_dump custom format (without filestore)"),
         ],
-        default='zip',
-        help="Choose the format for this backup."
+        default="zip",
+        help="Choose the format for this backup.",
     )
 
     @api.model
     def _default_folder(self):
         """Default to ``backups`` folder inside current server datadir."""
-        return os.path.join(
-            tools.config["data_dir"],
-            "backups",
-            self.env.cr.dbname)
+        return os.path.join(tools.config["data_dir"], "backups", self.env.cr.dbname)
 
     @api.multi
     @api.depends("folder", "method", "sftp_host", "sftp_port", "sftp_user")
@@ -109,19 +107,26 @@ def _compute_name(self):
                 rec.name = "%s @ localhost" % rec.folder
             elif rec.method == "sftp":
                 rec.name = "sftp://%s@%s:%d%s" % (
-                    rec.sftp_user, rec.sftp_host, rec.sftp_port, rec.folder)
+                    rec.sftp_user,
+                    rec.sftp_host,
+                    rec.sftp_port,
+                    rec.folder,
+                )
 
     @api.multi
     @api.constrains("folder", "method")
     def _check_folder(self):
         """Do not use the filestore or you will backup your backups."""
         for record in self:
-            if (record.method == "local" and
-                    record.folder.startswith(
-                        tools.config.filestore(self.env.cr.dbname))):
+            if record.method == "local" and record.folder.startswith(
+                tools.config.filestore(self.env.cr.dbname)
+            ):
                 raise exceptions.ValidationError(
-                    _("Do not save backups on your filestore, or you will "
-                      "backup your backups too!"))
+                    _(
+                        "Do not save backups on your filestore, or you will "
+                        "backup your backups too!"
+                    )
+                )
 
     @api.multi
     def action_sftp_test_connection(self):
@@ -130,9 +135,11 @@ def action_sftp_test_connection(self):
             # Just open and close the connection
             with self.sftp_connection():
                 raise exceptions.Warning(_("Connection Test Succeeded!"))
-        except (pysftp.CredentialException,
-                pysftp.ConnectionException,
-                pysftp.SSHException):
+        except (
+            pysftp.CredentialException,
+            pysftp.ConnectionException,
+            pysftp.SSHException,
+        ):
             _logger.info("Connection Test Failed!", exc_info=True)
             raise exceptions.Warning(_("Connection Test Failed!"))
 
@@ -152,8 +159,7 @@ def action_backup(self):
                 except OSError:
                     pass
 
-                with open(os.path.join(rec.folder, filename),
-                          'wb') as destiny:
+                with open(os.path.join(rec.folder, filename), "wb") as destiny:
                     # Copy the cached backup
                     if backup:
                         with open(backup) as cached:
@@ -161,9 +167,7 @@ def action_backup(self):
                     # Generate new backup
                     else:
                         db.dump_db(
-                            self.env.cr.dbname,
-                            destiny,
-                            backup_format=rec.backup_format
+                            self.env.cr.dbname, destiny, backup_format=rec.backup_format
                         )
                         backup = backup or destiny.name
                 successful |= rec
@@ -176,9 +180,7 @@ def action_backup(self):
                 with rec.backup_log():
 
                     cached = db.dump_db(
-                        self.env.cr.dbname,
-                        None,
-                        backup_format=rec.backup_format
+                        self.env.cr.dbname, None, backup_format=rec.backup_format
                     )
 
                     with cached:
@@ -191,8 +193,8 @@ def action_backup(self):
 
                             # Copy cached backup to remote server
                             with remote.open(
-                                    os.path.join(rec.folder, filename),
-                                    "wb") as destiny:
+                                os.path.join(rec.folder, filename), "wb"
+                            ) as destiny:
                                 shutil.copyfileobj(cached, destiny)
                         successful |= rec
 
@@ -215,12 +217,9 @@ def backup_log(self):
             _logger.exception("Database backup failed: %s", self.name)
             escaped_tb = tools.html_escape(traceback.format_exc())
             self.message_post(  # pylint: disable=translation-required
-                body="<p>%s</p><pre>%s</pre>" % (
-                    _("Database backup failed."),
-                    escaped_tb),
-                subtype=self.env.ref(
-                    "auto_backup.mail_message_subtype_failure"
-                ),
+                body="<p>%s</p><pre>%s</pre>"
+                % (_("Database backup failed."), escaped_tb),
+                subtype=self.env.ref("auto_backup.mail_message_subtype_failure"),
             )
         else:
             _logger.info("Database backup succeeded: %s", self.name)
@@ -235,17 +234,18 @@ def cleanup(self):
                 oldest = self.filename(now - timedelta(days=rec.days_to_keep))
 
                 if rec.method == "local":
-                    for name in iglob(os.path.join(rec.folder,
-                                                   "*.dump.zip")):
+                    for name in iglob(os.path.join(rec.folder, "*.dump.zip")):
                         if os.path.basename(name) < oldest:
                             os.unlink(name)
 
                 elif rec.method == "sftp":
                     with rec.sftp_connection() as remote:
                         for name in remote.listdir(rec.folder):
-                            if (name.endswith(".dump.zip") and
-                                    os.path.basename(name) < oldest):
-                                remote.unlink('%s/%s' % (rec.folder, name))
+                            if (
+                                name.endswith(".dump.zip")
+                                and os.path.basename(name) < oldest
+                            ):
+                                remote.unlink("{}/{}".format(rec.folder, name))
 
     @api.multi
     @contextmanager
@@ -254,24 +254,22 @@ def cleanup_log(self):
         self.ensure_one()
         try:
             _logger.info(
-                "Starting cleanup process after database backup: %s",
-                self.name)
+                "Starting cleanup process after database backup: %s", self.name
+            )
             yield
         except Exception:
             _logger.exception("Cleanup of old database backups failed: %s")
             escaped_tb = tools.html_escape(traceback.format_exc())
             self.message_post(  # pylint: disable=translation-required
-                body="<p>%s</p><pre>%s</pre>" % (
-                    _("Cleanup of old database backups failed."),
-                    escaped_tb),
-                subtype=self.env.ref("auto_backup.failure"))
+                body="<p>%s</p><pre>%s</pre>"
+                % (_("Cleanup of old database backups failed."), escaped_tb),
+                subtype=self.env.ref("auto_backup.failure"),
+            )
         else:
-            _logger.info(
-                "Cleanup of old database backups succeeded: %s",
-                self.name)
+            _logger.info("Cleanup of old database backups succeeded: %s", self.name)
 
     @staticmethod
-    def filename(when, ext='zip'):
+    def filename(when, ext="zip"):
         """Generate a file name for a backup.
 
         :param datetime.datetime when:
@@ -279,7 +277,7 @@ def filename(when, ext='zip'):
         :param str ext: Extension of the file. Default: dump.zip
         """
         return "{:%Y_%m_%d_%H_%M_%S}.{ext}".format(
-            when, ext='dump.zip' if ext == 'zip' else ext
+            when, ext="dump.zip" if ext == "zip" else ext
         )
 
     @api.multi
@@ -292,8 +290,8 @@ def sftp_connection(self):
             "port": self.sftp_port,
         }
         _logger.debug(
-            "Trying to connect to sftp://%(username)s@%(host)s:%(port)d",
-            extra=params)
+            "Trying to connect to sftp://%(username)s@%(host)s:%(port)d", extra=params
+        )
         if self.sftp_private_key:
             params["private_key"] = self.sftp_private_key
             if self.sftp_password:
diff --git a/auto_backup/readme/INSTALL.rst b/auto_backup/readme/INSTALL.rst
index 595ea5a6d06..219bc85d0a2 100644
--- a/auto_backup/readme/INSTALL.rst
+++ b/auto_backup/readme/INSTALL.rst
@@ -1,4 +1,3 @@
 Before installing this module, you need to execute::
 
     pip3 install pysftp==0.2.8
-
diff --git a/auto_backup/readme/USAGE.rst b/auto_backup/readme/USAGE.rst
index 58fe6275835..bc3607e22a4 100644
--- a/auto_backup/readme/USAGE.rst
+++ b/auto_backup/readme/USAGE.rst
@@ -22,8 +22,8 @@ Checks your credentials in one click
 ------------------------------------
 
 Want to make sure if the connection details are correct and if Odoo can
-automatically write them to the remote server? Simply click on the ???Test
-SFTP Connection??? button and you will get message telling you if
+automatically write them to the remote server? Simply click on the ‘Test
+SFTP Connection’ button and you will get message telling you if
 everything is OK, or what is wrong!
 
 E-mail on backup failure
diff --git a/auto_backup/static/description/icon.svg b/auto_backup/static/description/icon.svg
index 12d9dc53869..b28b182e116 100644
--- a/auto_backup/static/description/icon.svg
+++ b/auto_backup/static/description/icon.svg
@@ -36,7 +36,7 @@
          style="fill:#1a1a1a;stroke-width:1.7658242"
          y="1031.6924"
          x="40.411446"
-         id="tspan3338">???</tspan></text>
+         id="tspan3338"></tspan></text>
     <text
        id="text3340"
        y="1050.2731"
@@ -46,6 +46,6 @@
          style="stroke-width:1.13756943"
          y="1050.2731"
          x="74.752251"
-         id="tspan3342">???</tspan></text>
+         id="tspan3342"></tspan></text>
   </g>
 </svg>
diff --git a/auto_backup/static/description/index.html b/auto_backup/static/description/index.html
index a54d6616e86..0d4346de30b 100644
--- a/auto_backup/static/description/index.html
+++ b/auto_backup/static/description/index.html
@@ -435,8 +435,8 @@ <h2><a class="toc-backref" href="#id6">Test connection</a></h2>
 <div class="section" id="checks-your-credentials-in-one-click">
 <h3><a class="toc-backref" href="#id7">Checks your credentials in one click</a></h3>
 <p>Want to make sure if the connection details are correct and if Odoo can
-automatically write them to the remote server? Simply click on the ???Test
-SFTP Connection??? button and you will get message telling you if
+automatically write them to the remote server? Simply click on the ‘Test
+SFTP Connection’ button and you will get message telling you if
 everything is OK, or what is wrong!</p>
 </div>
 </div>
@@ -462,7 +462,7 @@ <h1><a class="toc-backref" href="#id11">Known issues / Roadmap</a></h1>
 settings. In order to circumvent this without frivolously changing settings,
 you need to run the backup from outside of the main Odoo instance. How to do
 this is outlined in <a class="reference external" href="https://blog.laslabs.com/2016/10/running-python-scripts-within-odoos-environment/">this blog post</a>.</li>
-<li>Backups won???t work if list_db=False is configured in the instance.</li>
+<li>Backups won’t work if list_db=False is configured in the instance.</li>
 </ul>
 </div>
 <div class="section" id="bug-tracker">
diff --git a/auto_backup/tests/test_db_backup.py b/auto_backup/tests/test_db_backup.py
index dc196ef0684..51941a542a5 100644
--- a/auto_backup/tests/test_db_backup.py
+++ b/auto_backup/tests/test_db_backup.py
@@ -19,16 +19,15 @@
     pass
 
 
-model = 'odoo.addons.auto_backup.models.db_backup'
+model = "odoo.addons.auto_backup.models.db_backup"
 
 
 class TestConnectionException(pysftp.ConnectionException):
     def __init__(self):
-        super(TestConnectionException, self).__init__('test', 'test')
+        super(TestConnectionException, self).__init__("test", "test")
 
 
 class TestDbBackup(common.TransactionCase):
-
     def setUp(self):
         super(TestDbBackup, self).setUp()
         self.Model = self.env["db.backup"]
@@ -36,42 +35,44 @@ def setUp(self):
     @contextmanager
     def mock_assets(self):
         """ It provides mocked core assets """
-        self.path_join_val = '/this/is/a/path'
-        with mock.patch('%s.db' % model) as db:
-            with mock.patch('%s.os' % model) as os:
-                with mock.patch('%s.shutil' % model) as shutil:
+        self.path_join_val = "/this/is/a/path"
+        with mock.patch("%s.db" % model) as db:
+            with mock.patch("%s.os" % model) as os:
+                with mock.patch("%s.shutil" % model) as shutil:
                     os.path.join.return_value = self.path_join_val
                     yield {
-                        'db': db,
-                        'os': os,
-                        'shutil': shutil,
+                        "db": db,
+                        "os": os,
+                        "shutil": shutil,
                     }
 
     @contextmanager
     def patch_filtered_sftp(self, record, mocks=None):
         """ It patches filtered record and provides a mock """
         if mocks is None:
-            mocks = ['sftp_connection']
+            mocks = ["sftp_connection"]
         mocks = {m: mock.DEFAULT for m in mocks}
-        with mock.patch.object(record, 'filtered') as filtered:
-            with mock.patch.object(record, 'backup_log'):
+        with mock.patch.object(record, "filtered") as filtered:
+            with mock.patch.object(record, "backup_log"):
                 with mock.patch.multiple(record, **mocks):
                     filtered.side_effect = [], [record]
                     yield filtered
 
-    def new_record(self, method='sftp'):
+    def new_record(self, method="sftp"):
         vals = {
-            'name': u'T??st backup',
-            'method': method,
+            "name": u"Têst backup",
+            "method": method,
         }
-        if method == 'sftp':
-            vals.update({
-                'sftp_host': 'test_host',
-                'sftp_port': '222',
-                'sftp_user': 'tuser',
-                'sftp_password': 'password',
-                'folder': '/folder/',
-            })
+        if method == "sftp":
+            vals.update(
+                {
+                    "sftp_host": "test_host",
+                    "sftp_port": "222",
+                    "sftp_user": "tuser",
+                    "sftp_password": "password",
+                    "folder": "/folder/",
+                }
+            )
         self.vals = vals
         return self.Model.create(vals)
 
@@ -79,39 +80,41 @@ def test_compute_name_sftp(self):
         """ It should create proper SFTP URI """
         rec_id = self.new_record()
         self.assertEqual(
-            'sftp://%(user)s@%(host)s:%(port)s%(folder)s' % {
-                'user': self.vals['sftp_user'],
-                'host': self.vals['sftp_host'],
-                'port': self.vals['sftp_port'],
-                'folder': self.vals['folder'],
+            "sftp://%(user)s@%(host)s:%(port)s%(folder)s"
+            % {
+                "user": self.vals["sftp_user"],
+                "host": self.vals["sftp_host"],
+                "port": self.vals["sftp_port"],
+                "folder": self.vals["folder"],
             },
             rec_id.name,
         )
 
     def test_check_folder(self):
         """ It should not allow recursive backups """
-        rec_id = self.new_record('local')
+        rec_id = self.new_record("local")
         with self.assertRaises(exceptions.ValidationError):
-            rec_id.write({
-                'folder': '%s/another/path' % tools.config.filestore(
-                    self.env.cr.dbname
-                ),
-            })
+            rec_id.write(
+                {
+                    "folder": "%s/another/path"
+                    % tools.config.filestore(self.env.cr.dbname),
+                }
+            )
 
-    @mock.patch('%s._' % model)
+    @mock.patch("%s._" % model)
     def test_action_sftp_test_connection_success(self, _):
         """ It should raise connection succeeded warning """
         rec_id = self.new_record()
-        with mock.patch.object(rec_id, 'sftp_connection'):
+        with mock.patch.object(rec_id, "sftp_connection"):
             with self.assertRaises(exceptions.Warning):
                 rec_id.action_sftp_test_connection()
             _.assert_called_once_with("Connection Test Succeeded!")
 
-    @mock.patch('%s._' % model)
+    @mock.patch("%s._" % model)
     def test_action_sftp_test_connection_fail(self, _):
         """ It should raise connection fail warning """
         rec_id = self.new_record()
-        with mock.patch.object(rec_id, 'sftp_connection') as conn:
+        with mock.patch.object(rec_id, "sftp_connection") as conn:
             conn().__enter__.side_effect = TestConnectionException
             with self.assertRaises(exceptions.Warning):
                 rec_id.action_sftp_test_connection()
@@ -119,28 +122,25 @@ def test_action_sftp_test_connection_fail(self, _):
 
     def test_action_backup_local(self):
         """ It should backup local database """
-        rec_id = self.new_record('local')
+        rec_id = self.new_record("local")
         filename = rec_id.filename(datetime.now())
         rec_id.action_backup()
-        generated_backup = [f for f in os.listdir(rec_id.folder)
-                            if f >= filename]
+        generated_backup = [f for f in os.listdir(rec_id.folder) if f >= filename]
         self.assertEqual(1, len(generated_backup))
 
     def test_action_backup_local_cleanup(self):
         """ Backup local database and cleanup old databases """
-        rec_id = self.new_record('local')
+        rec_id = self.new_record("local")
         rec_id.days_to_keep = 1
         old_date = datetime.now() - timedelta(days=3)
         filename = rec_id.filename(old_date)
         rec_id.action_backup()
-        generated_backup = [f for f in os.listdir(rec_id.folder)
-                            if f >= filename]
+        generated_backup = [f for f in os.listdir(rec_id.folder) if f >= filename]
         self.assertEqual(2, len(generated_backup))
 
         filename = rec_id.filename(datetime.now())
         rec_id.action_backup()
-        generated_backup = [f for f in os.listdir(rec_id.folder)
-                            if f >= filename]
+        generated_backup = [f for f in os.listdir(rec_id.folder) if f >= filename]
         self.assertEqual(1, len(generated_backup))
 
     def test_action_backup_sftp_mkdirs(self):
@@ -170,28 +170,23 @@ def test_action_backup_sftp_remote_open(self):
             with self.patch_filtered_sftp(rec_id):
                 conn = rec_id.sftp_connection().__enter__()
                 rec_id.action_backup()
-                conn.open.assert_called_once_with(
-                    assets['os'].path.join(),
-                    'wb'
-                )
+                conn.open.assert_called_once_with(assets["os"].path.join(), "wb")
 
     def test_action_backup_all_search(self):
         """ It should search all records """
         rec_id = self.new_record()
-        with mock.patch.object(rec_id, 'search'):
+        with mock.patch.object(rec_id, "search"):
             rec_id.action_backup_all()
             rec_id.search.assert_called_once_with([])
 
     def test_action_backup_all_return(self):
         """ It should return result of backup operation """
         rec_id = self.new_record()
-        with mock.patch.object(rec_id, 'search'):
+        with mock.patch.object(rec_id, "search"):
             res = rec_id.action_backup_all()
-            self.assertEqual(
-                rec_id.search().action_backup(), res
-            )
+            self.assertEqual(rec_id.search().action_backup(), res)
 
-    @mock.patch('%s.pysftp' % model)
+    @mock.patch("%s.pysftp" % model)
     def test_sftp_connection_init_passwd(self, pysftp):
         """ It should initiate SFTP connection w/ proper args and pass """
         rec_id = self.new_record()
@@ -203,14 +198,13 @@ def test_sftp_connection_init_passwd(self, pysftp):
             password=rec_id.sftp_password,
         )
 
-    @mock.patch('%s.pysftp' % model)
+    @mock.patch("%s.pysftp" % model)
     def test_sftp_connection_init_key(self, pysftp):
         """ It should initiate SFTP connection w/ proper args and key """
         rec_id = self.new_record()
-        rec_id.write({
-            'sftp_private_key': 'pkey',
-            'sftp_password': 'pkeypass',
-        })
+        rec_id.write(
+            {"sftp_private_key": "pkey", "sftp_password": "pkeypass",}
+        )
         rec_id.sftp_connection()
         pysftp.Connection.assert_called_once_with(
             host=rec_id.sftp_host,
@@ -220,7 +214,7 @@ def test_sftp_connection_init_key(self, pysftp):
             private_key_pass=rec_id.sftp_password,
         )
 
-    @mock.patch('%s.pysftp' % model)
+    @mock.patch("%s.pysftp" % model)
     def test_sftp_connection_return(self, pysftp):
         """ It should return new sftp connection """
         rec_id = self.new_record()
@@ -238,11 +232,11 @@ def test_filename_default(self):
     def test_filename_zip(self):
         """ It should return a dump.zip filename"""
         now = datetime.now()
-        res = self.Model.filename(now, ext='zip')
+        res = self.Model.filename(now, ext="zip")
         self.assertTrue(res.endswith(".dump.zip"))
 
     def test_filename_dump(self):
         """ It should return a dump filename"""
         now = datetime.now()
-        res = self.Model.filename(now, ext='dump')
+        res = self.Model.filename(now, ext="dump")
         self.assertTrue(res.endswith(".dump"))
diff --git a/auto_backup/view/db_backup_view.xml b/auto_backup/view/db_backup_view.xml
index 9b426e5b836..b361d24fcff 100644
--- a/auto_backup/view/db_backup_view.xml
+++ b/auto_backup/view/db_backup_view.xml
@@ -1,21 +1,27 @@
-<?xml version="1.0" encoding="utf-8"?>
+<?xml version="1.0" encoding="utf-8" ?>
 <odoo>
-
     <record id="view_backup_conf_form" model="ir.ui.view">
         <field name="model">db.backup</field>
         <field name="arch" type="xml">
             <form>
                 <header>
-                    <button name="action_backup" type="object" string="Execute backup" class="oe_highlight"/>
+                    <button
+                        name="action_backup"
+                        type="object"
+                        string="Execute backup"
+                        class="oe_highlight"
+                    />
                 </header>
                 <div class="oe_title">
-                   <h1><field name="name"/></h1>
+                    <h1>
+                        <field name="name" />
+                    </h1>
                 </div>
                 <group string="Basic backup configuration">
-                    <field name="folder"/>
-                    <field name="days_to_keep"/>
-                    <field name="method"/>
-                    <field name="backup_format"/>
+                    <field name="folder" />
+                    <field name="days_to_keep" />
+                    <field name="method" />
+                    <field name="backup_format" />
                 </group>
                 <div attrs="{'invisible': [('method', '!=', 'sftp')]}">
                     <div class="bg-warning">
@@ -23,65 +29,66 @@
                         Use SFTP with caution! This writes files to external servers under the path you specify.
                     </div>
                     <group string="SFTP Settings">
-                        <field name="sftp_host" placeholder="sftp.example.com"/>
-                        <field name="sftp_port"/>
-                        <field name="sftp_user" placeholder="john"/>
-                        <field name="sftp_password"/>
+                        <field name="sftp_host" placeholder="sftp.example.com" />
+                        <field name="sftp_port" />
+                        <field name="sftp_user" placeholder="john" />
+                        <field name="sftp_password" />
                         <field
                             name="sftp_private_key"
-                            placeholder="/home/odoo/.ssh/id_rsa"/>
+                            placeholder="/home/odoo/.ssh/id_rsa"
+                        />
                         <button
                             name="action_sftp_test_connection"
                             type="object"
                             string="Test SFTP Connection"
-                            icon="fa-television"/>
+                            icon="fa-television"
+                        />
                     </group>
                 </div>
-                <separator string="Help" colspan="2"/>
+                <separator string="Help" colspan="2" />
                 <div>
                     Automatic backups of the database can be scheduled as follows:
                     <ol>
-                        <li>Go to Settings / Technical / Automation / Scheduled Actions.</li>
+                        <li
+                        >Go to Settings / Technical / Automation / Scheduled Actions.</li>
                         <li>Search the action named 'Backup scheduler'.</li>
-                        <li>Set the scheduler to active and fill in how often you want backups generated.</li>
+                        <li
+                        >Set the scheduler to active and fill in how often you want backups generated.</li>
                     </ol>
                 </div>
             </form>
         </field>
     </record>
-
     <record id="view_backup_conf_tree" model="ir.ui.view">
         <field name="model">db.backup</field>
         <field name="arch" type="xml">
             <tree>
-                <field name="name"/>
-                <field name="folder"/>
-                <field name="days_to_keep"/>
+                <field name="name" />
+                <field name="folder" />
+                <field name="days_to_keep" />
             </tree>
         </field>
     </record>
-
     <record id="view_backup_conf_search" model="ir.ui.view">
         <field name="model">db.backup</field>
         <field name="arch" type="xml">
             <search>
-                <field name="name"/>
-                <field name="folder"/>
-                <field name="sftp_host"/>
+                <field name="name" />
+                <field name="folder" />
+                <field name="sftp_host" />
             </search>
         </field>
     </record>
-
     <act_window
         name="Automated Backups"
         id="action_backup_conf_form"
-        res_model="db.backup"/>
-
+        res_model="db.backup"
+    />
     <menuitem
         parent="base.next_id_9"
         action="action_backup_conf_form"
-        id="backup_conf_menu"/>
-
+        id="backup_conf_menu"
+    />
     <!-- Execute backup from "More" menu -->
     <record id="action_server_backup" model="ir.actions.server">
         <field name="name">Execute backup(s)</field>
@@ -91,5 +98,4 @@
         <field name="state">code</field>
         <field name="code">records.action_backup()</field>
     </record>
-
 </odoo>

From cad26734694717b27432d917e7ff951541a4da36 Mon Sep 17 00:00:00 2001
From: David Alonso // Solvos <david.alonso@solvos.es>
Date: Fri, 5 Feb 2021 19:27:23 +0100
Subject: [PATCH 23/52] [MIG] auto_backup: Migration to 13.0

---
 auto_backup/__manifest__.py         |  6 +++---
 auto_backup/models/db_backup.py     | 20 +++++++++-----------
 auto_backup/tests/test_db_backup.py |  4 +---
 3 files changed, 13 insertions(+), 17 deletions(-)

diff --git a/auto_backup/__manifest__.py b/auto_backup/__manifest__.py
index 36c1a7d465f..e831aca7ed8 100644
--- a/auto_backup/__manifest__.py
+++ b/auto_backup/__manifest__.py
@@ -6,7 +6,7 @@
 {
     "name": "Database Auto-Backup",
     "summary": "Backups database",
-    "version": "12.0.1.0.0",
+    "version": "13.0.1.0.0",
     "author": "Yenthe Van Ginneken, "
     "Agile Business Group, "
     "Grupo ESOC Ingenieria de Servicios, "
@@ -16,7 +16,7 @@
     "license": "AGPL-3",
     "website": "https://github.com/OCA/server-tools/",
     "category": "Tools",
-    "depends": ["mail",],
+    "depends": ["mail"],
     "data": [
         "data/ir_cron.xml",
         "data/mail_message_subtype.xml",
@@ -24,5 +24,5 @@
         "view/db_backup_view.xml",
     ],
     "installable": True,
-    "external_dependencies": {"python": ["pysftp"],},
+    "external_dependencies": {"python": ["pysftp"]},
 }
diff --git a/auto_backup/models/db_backup.py b/auto_backup/models/db_backup.py
index 13217282df5..9015b4b2dc6 100644
--- a/auto_backup/models/db_backup.py
+++ b/auto_backup/models/db_backup.py
@@ -98,7 +98,6 @@ def _default_folder(self):
         """Default to ``backups`` folder inside current server datadir."""
         return os.path.join(tools.config["data_dir"], "backups", self.env.cr.dbname)
 
-    @api.multi
     @api.depends("folder", "method", "sftp_host", "sftp_port", "sftp_user")
     def _compute_name(self):
         """Get the right summary for this job."""
@@ -113,7 +112,6 @@ def _compute_name(self):
                     rec.folder,
                 )
 
-    @api.multi
     @api.constrains("folder", "method")
     def _check_folder(self):
         """Do not use the filestore or you will backup your backups."""
@@ -128,7 +126,6 @@ def _check_folder(self):
                     )
                 )
 
-    @api.multi
     def action_sftp_test_connection(self):
         """Check if the SFTP settings are correct."""
         try:
@@ -143,7 +140,6 @@ def action_sftp_test_connection(self):
             _logger.info("Connection Test Failed!", exc_info=True)
             raise exceptions.Warning(_("Connection Test Failed!"))
 
-    @api.multi
     def action_backup(self):
         """Run selected backups."""
         backup = None
@@ -206,7 +202,6 @@ def action_backup_all(self):
         """Run all scheduled backups."""
         return self.search([]).action_backup()
 
-    @api.multi
     @contextmanager
     def backup_log(self):
         """Log a backup result."""
@@ -225,16 +220,21 @@ def backup_log(self):
             _logger.info("Database backup succeeded: %s", self.name)
             self.message_post(body=_("Database backup succeeded."))
 
-    @api.multi
     def cleanup(self):
         """Clean up old backups."""
         now = datetime.now()
         for rec in self.filtered("days_to_keep"):
             with rec.cleanup_log():
-                oldest = self.filename(now - timedelta(days=rec.days_to_keep))
+                bu_format = rec.backup_format
+                file_extension = bu_format == "zip" and "dump.zip" or bu_format
+                oldest = self.filename(
+                    now - timedelta(days=rec.days_to_keep), bu_format
+                )
 
                 if rec.method == "local":
-                    for name in iglob(os.path.join(rec.folder, "*.dump.zip")):
+                    for name in iglob(
+                        os.path.join(rec.folder, "*.%s" % file_extension)
+                    ):
                         if os.path.basename(name) < oldest:
                             os.unlink(name)
 
@@ -242,12 +242,11 @@ def cleanup(self):
                     with rec.sftp_connection() as remote:
                         for name in remote.listdir(rec.folder):
                             if (
-                                name.endswith(".dump.zip")
+                                name.endswith(".%s" % file_extension)
                                 and os.path.basename(name) < oldest
                             ):
                                 remote.unlink("{}/{}".format(rec.folder, name))
 
-    @api.multi
     @contextmanager
     def cleanup_log(self):
         """Log a possible cleanup failure."""
@@ -280,7 +279,6 @@ def filename(when, ext="zip"):
             when, ext="dump.zip" if ext == "zip" else ext
         )
 
-    @api.multi
     def sftp_connection(self):
         """Return a new SFTP connection with found parameters."""
         self.ensure_one()
diff --git a/auto_backup/tests/test_db_backup.py b/auto_backup/tests/test_db_backup.py
index 51941a542a5..08d02723603 100644
--- a/auto_backup/tests/test_db_backup.py
+++ b/auto_backup/tests/test_db_backup.py
@@ -202,9 +202,7 @@ def test_sftp_connection_init_passwd(self, pysftp):
     def test_sftp_connection_init_key(self, pysftp):
         """ It should initiate SFTP connection w/ proper args and key """
         rec_id = self.new_record()
-        rec_id.write(
-            {"sftp_private_key": "pkey", "sftp_password": "pkeypass",}
-        )
+        rec_id.write({"sftp_private_key": "pkey", "sftp_password": "pkeypass"})
         rec_id.sftp_connection()
         pysftp.Connection.assert_called_once_with(
             host=rec_id.sftp_host,

From b640c34350fcd1523826e1c4f3402142c144ba98 Mon Sep 17 00:00:00 2001
From: simonev <simone.vanin@agilebg.com>
Date: Fri, 23 Jul 2021 11:08:17 +0200
Subject: [PATCH 24/52] [IMP] auto_backup: black, isort, prettier

---
 auto_backup/__manifest__.py         | 2 +-
 auto_backup/models/db_backup.py     | 4 +++-
 auto_backup/tests/test_db_backup.py | 3 ++-
 3 files changed, 6 insertions(+), 3 deletions(-)

diff --git a/auto_backup/__manifest__.py b/auto_backup/__manifest__.py
index e831aca7ed8..5d3c73b180d 100644
--- a/auto_backup/__manifest__.py
+++ b/auto_backup/__manifest__.py
@@ -14,7 +14,7 @@
     "AdaptiveCity, "
     "Odoo Community Association (OCA)",
     "license": "AGPL-3",
-    "website": "https://github.com/OCA/server-tools/",
+    "website": "https://github.com/OCA/server-tools",
     "category": "Tools",
     "depends": ["mail"],
     "data": [
diff --git a/auto_backup/models/db_backup.py b/auto_backup/models/db_backup.py
index 9015b4b2dc6..01b4fc4f84d 100644
--- a/auto_backup/models/db_backup.py
+++ b/auto_backup/models/db_backup.py
@@ -36,7 +36,9 @@ class DbBackup(models.Model):
     ]
 
     name = fields.Char(
-        compute="_compute_name", store=True, help="Summary of this backup process",
+        compute="_compute_name",
+        store=True,
+        help="Summary of this backup process",
     )
     folder = fields.Char(
         default=lambda self: self._default_folder(),
diff --git a/auto_backup/tests/test_db_backup.py b/auto_backup/tests/test_db_backup.py
index 08d02723603..f2188642952 100644
--- a/auto_backup/tests/test_db_backup.py
+++ b/auto_backup/tests/test_db_backup.py
@@ -218,7 +218,8 @@ def test_sftp_connection_return(self, pysftp):
         rec_id = self.new_record()
         res = rec_id.sftp_connection()
         self.assertEqual(
-            pysftp.Connection(), res,
+            pysftp.Connection(),
+            res,
         )
 
     def test_filename_default(self):

From 95fef12dd89536c64d7cc52220af251402c47f33 Mon Sep 17 00:00:00 2001
From: simonev <simone.vanin@agilebg.com>
Date: Thu, 11 Mar 2021 14:35:15 +0100
Subject: [PATCH 25/52] [14.0][MIG]auto_backup

---
 auto_backup/README.rst                    | 12 ++++++------
 auto_backup/__manifest__.py               |  2 +-
 auto_backup/models/db_backup.py           |  9 +++++----
 auto_backup/readme/CONTRIBUTORS.rst       |  1 +
 auto_backup/static/description/index.html |  9 +++++----
 auto_backup/view/db_backup_view.xml       |  9 ++++-----
 6 files changed, 22 insertions(+), 20 deletions(-)

diff --git a/auto_backup/README.rst b/auto_backup/README.rst
index 2850e7767cf..1acb6e2252a 100644
--- a/auto_backup/README.rst
+++ b/auto_backup/README.rst
@@ -14,13 +14,13 @@ Database Auto-Backup
     :target: http://www.gnu.org/licenses/agpl-3.0-standalone.html
     :alt: License: AGPL-3
 .. |badge3| image:: https://img.shields.io/badge/github-OCA%2Fserver--tools-lightgray.png?logo=github
-    :target: https://github.com/OCA/server-tools/tree/12.0/auto_backup
+    :target: https://github.com/OCA/server-tools/tree/14.0/auto_backup
     :alt: OCA/server-tools
 .. |badge4| image:: https://img.shields.io/badge/weblate-Translate%20me-F47D42.png
-    :target: https://translation.odoo-community.org/projects/server-tools-12-0/server-tools-12-0-auto_backup
+    :target: https://translation.odoo-community.org/projects/server-tools-14-0/server-tools-14-0-auto_backup
     :alt: Translate me on Weblate
 .. |badge5| image:: https://img.shields.io/badge/runbot-Try%20me-875A7B.png
-    :target: https://runbot.odoo-community.org/runbot/149/12.0
+    :target: https://runbot.odoo-community.org/runbot/149/14.0
     :alt: Try me on Runbot
 
 |badge1| |badge2| |badge3| |badge4| |badge5| 
@@ -39,7 +39,6 @@ Before installing this module, you need to execute::
 
     pip3 install pysftp==0.2.8
 
-
 Configuration
 =============
 
@@ -113,7 +112,7 @@ Bug Tracker
 Bugs are tracked on `GitHub Issues <https://github.com/OCA/server-tools/issues>`_.
 In case of trouble, please check there if your issue has already been reported.
 If you spotted it first, help us smashing it by providing a detailed and welcomed
-`feedback <https://github.com/OCA/server-tools/issues/new?body=module:%20auto_backup%0Aversion:%2012.0%0A%0A**Steps%20to%20reproduce**%0A-%20...%0A%0A**Current%20behavior**%0A%0A**Expected%20behavior**>`_.
+`feedback <https://github.com/OCA/server-tools/issues/new?body=module:%20auto_backup%0Aversion:%2014.0%0A%0A**Steps%20to%20reproduce**%0A-%20...%0A%0A**Current%20behavior**%0A%0A**Expected%20behavior**>`_.
 
 Do not contact contributors directly about support or help with technical issues.
 
@@ -138,6 +137,7 @@ Contributors
 * Dave Lasley <dave@laslabs.com>
 * Andrea Stirpe <a.stirpe@onestein.nl>
 * Aitor Bouzas <aitor.bouzas@adaptivecity.com>
+* Simone Vanin <simone.vanin@agilebg.com>
 
 Maintainers
 ~~~~~~~~~~~
@@ -152,6 +152,6 @@ OCA, or the Odoo Community Association, is a nonprofit organization whose
 mission is to support the collaborative development of Odoo features and
 promote its widespread use.
 
-This module is part of the `OCA/server-tools <https://github.com/OCA/server-tools/tree/12.0/auto_backup>`_ project on GitHub.
+This module is part of the `OCA/server-tools <https://github.com/OCA/server-tools/tree/14.0/auto_backup>`_ project on GitHub.
 
 You are welcome to contribute. To learn how please visit https://odoo-community.org/page/Contribute.
diff --git a/auto_backup/__manifest__.py b/auto_backup/__manifest__.py
index 5d3c73b180d..587cc1ce5ad 100644
--- a/auto_backup/__manifest__.py
+++ b/auto_backup/__manifest__.py
@@ -6,7 +6,7 @@
 {
     "name": "Database Auto-Backup",
     "summary": "Backups database",
-    "version": "13.0.1.0.0",
+    "version": "14.0.1.0.0",
     "author": "Yenthe Van Ginneken, "
     "Agile Business Group, "
     "Grupo ESOC Ingenieria de Servicios, "
diff --git a/auto_backup/models/db_backup.py b/auto_backup/models/db_backup.py
index 01b4fc4f84d..cb7b517d3c8 100644
--- a/auto_backup/models/db_backup.py
+++ b/auto_backup/models/db_backup.py
@@ -12,6 +12,7 @@
 from glob import iglob
 
 from odoo import _, api, exceptions, fields, models, tools
+from odoo.exceptions import UserError
 from odoo.service import db
 
 _logger = logging.getLogger(__name__)
@@ -133,14 +134,14 @@ def action_sftp_test_connection(self):
         try:
             # Just open and close the connection
             with self.sftp_connection():
-                raise exceptions.Warning(_("Connection Test Succeeded!"))
+                raise UserError(_("Connection Test Succeeded!"))
         except (
             pysftp.CredentialException,
             pysftp.ConnectionException,
             pysftp.SSHException,
         ):
             _logger.info("Connection Test Failed!", exc_info=True)
-            raise exceptions.Warning(_("Connection Test Failed!"))
+            raise UserError(_("Connection Test Failed!"))
 
     def action_backup(self):
         """Run selected backups."""
@@ -216,7 +217,7 @@ def backup_log(self):
             self.message_post(  # pylint: disable=translation-required
                 body="<p>%s</p><pre>%s</pre>"
                 % (_("Database backup failed."), escaped_tb),
-                subtype=self.env.ref("auto_backup.mail_message_subtype_failure"),
+                subtype_id=self.env.ref("auto_backup.mail_message_subtype_failure").id,
             )
         else:
             _logger.info("Database backup succeeded: %s", self.name)
@@ -264,7 +265,7 @@ def cleanup_log(self):
             self.message_post(  # pylint: disable=translation-required
                 body="<p>%s</p><pre>%s</pre>"
                 % (_("Cleanup of old database backups failed."), escaped_tb),
-                subtype=self.env.ref("auto_backup.failure"),
+                subtype_id=self.env.ref("auto_backup.failure").id,
             )
         else:
             _logger.info("Cleanup of old database backups succeeded: %s", self.name)
diff --git a/auto_backup/readme/CONTRIBUTORS.rst b/auto_backup/readme/CONTRIBUTORS.rst
index 7ee6bb99e63..552ecb558ed 100644
--- a/auto_backup/readme/CONTRIBUTORS.rst
+++ b/auto_backup/readme/CONTRIBUTORS.rst
@@ -4,3 +4,4 @@
 * Dave Lasley <dave@laslabs.com>
 * Andrea Stirpe <a.stirpe@onestein.nl>
 * Aitor Bouzas <aitor.bouzas@adaptivecity.com>
+* Simone Vanin <simone.vanin@agilebg.com>
diff --git a/auto_backup/static/description/index.html b/auto_backup/static/description/index.html
index 0d4346de30b..17cec612f45 100644
--- a/auto_backup/static/description/index.html
+++ b/auto_backup/static/description/index.html
@@ -3,7 +3,7 @@
 <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
 <head>
 <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
-<meta name="generator" content="Docutils 0.15.1: http://docutils.sourceforge.net/" />
+<meta name="generator" content="Docutils: http://docutils.sourceforge.net/" />
 <title>Database Auto-Backup</title>
 <style type="text/css">
 
@@ -367,7 +367,7 @@ <h1 class="title">Database Auto-Backup</h1>
 !! This file is generated by oca-gen-addon-readme !!
 !! changes will be overwritten.                   !!
 !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! -->
-<p><a class="reference external" href="https://odoo-community.org/page/development-status"><img alt="Beta" src="https://img.shields.io/badge/maturity-Beta-yellow.png" /></a> <a class="reference external" href="http://www.gnu.org/licenses/agpl-3.0-standalone.html"><img alt="License: AGPL-3" src="https://img.shields.io/badge/licence-AGPL--3-blue.png" /></a> <a class="reference external" href="https://github.com/OCA/server-tools/tree/12.0/auto_backup"><img alt="OCA/server-tools" src="https://img.shields.io/badge/github-OCA%2Fserver--tools-lightgray.png?logo=github" /></a> <a class="reference external" href="https://translation.odoo-community.org/projects/server-tools-12-0/server-tools-12-0-auto_backup"><img alt="Translate me on Weblate" src="https://img.shields.io/badge/weblate-Translate%20me-F47D42.png" /></a> <a class="reference external" href="https://runbot.odoo-community.org/runbot/149/12.0"><img alt="Try me on Runbot" src="https://img.shields.io/badge/runbot-Try%20me-875A7B.png" /></a></p>
+<p><a class="reference external" href="https://odoo-community.org/page/development-status"><img alt="Beta" src="https://img.shields.io/badge/maturity-Beta-yellow.png" /></a> <a class="reference external" href="http://www.gnu.org/licenses/agpl-3.0-standalone.html"><img alt="License: AGPL-3" src="https://img.shields.io/badge/licence-AGPL--3-blue.png" /></a> <a class="reference external" href="https://github.com/OCA/server-tools/tree/14.0/auto_backup"><img alt="OCA/server-tools" src="https://img.shields.io/badge/github-OCA%2Fserver--tools-lightgray.png?logo=github" /></a> <a class="reference external" href="https://translation.odoo-community.org/projects/server-tools-14-0/server-tools-14-0-auto_backup"><img alt="Translate me on Weblate" src="https://img.shields.io/badge/weblate-Translate%20me-F47D42.png" /></a> <a class="reference external" href="https://runbot.odoo-community.org/runbot/149/14.0"><img alt="Try me on Runbot" src="https://img.shields.io/badge/runbot-Try%20me-875A7B.png" /></a></p>
 <p>A tool for all your back-ups, internal and external!</p>
 <p><strong>Table of contents</strong></p>
 <div class="contents local topic" id="contents">
@@ -470,7 +470,7 @@ <h1><a class="toc-backref" href="#id12">Bug Tracker</a></h1>
 <p>Bugs are tracked on <a class="reference external" href="https://github.com/OCA/server-tools/issues">GitHub Issues</a>.
 In case of trouble, please check there if your issue has already been reported.
 If you spotted it first, help us smashing it by providing a detailed and welcomed
-<a class="reference external" href="https://github.com/OCA/server-tools/issues/new?body=module:%20auto_backup%0Aversion:%2012.0%0A%0A**Steps%20to%20reproduce**%0A-%20...%0A%0A**Current%20behavior**%0A%0A**Expected%20behavior**">feedback</a>.</p>
+<a class="reference external" href="https://github.com/OCA/server-tools/issues/new?body=module:%20auto_backup%0Aversion:%2014.0%0A%0A**Steps%20to%20reproduce**%0A-%20...%0A%0A**Current%20behavior**%0A%0A**Expected%20behavior**">feedback</a>.</p>
 <p>Do not contact contributors directly about support or help with technical issues.</p>
 </div>
 <div class="section" id="credits">
@@ -494,6 +494,7 @@ <h2><a class="toc-backref" href="#id15">Contributors</a></h2>
 <li>Dave Lasley &lt;<a class="reference external" href="mailto:dave&#64;laslabs.com">dave&#64;laslabs.com</a>&gt;</li>
 <li>Andrea Stirpe &lt;<a class="reference external" href="mailto:a.stirpe&#64;onestein.nl">a.stirpe&#64;onestein.nl</a>&gt;</li>
 <li>Aitor Bouzas &lt;<a class="reference external" href="mailto:aitor.bouzas&#64;adaptivecity.com">aitor.bouzas&#64;adaptivecity.com</a>&gt;</li>
+<li>Simone Vanin &lt;<a class="reference external" href="mailto:simone.vanin&#64;agilebg.com">simone.vanin&#64;agilebg.com</a>&gt;</li>
 </ul>
 </div>
 <div class="section" id="maintainers">
@@ -503,7 +504,7 @@ <h2><a class="toc-backref" href="#id16">Maintainers</a></h2>
 <p>OCA, or the Odoo Community Association, is a nonprofit organization whose
 mission is to support the collaborative development of Odoo features and
 promote its widespread use.</p>
-<p>This module is part of the <a class="reference external" href="https://github.com/OCA/server-tools/tree/12.0/auto_backup">OCA/server-tools</a> project on GitHub.</p>
+<p>This module is part of the <a class="reference external" href="https://github.com/OCA/server-tools/tree/14.0/auto_backup">OCA/server-tools</a> project on GitHub.</p>
 <p>You are welcome to contribute. To learn how please visit <a class="reference external" href="https://odoo-community.org/page/Contribute">https://odoo-community.org/page/Contribute</a>.</p>
 </div>
 </div>
diff --git a/auto_backup/view/db_backup_view.xml b/auto_backup/view/db_backup_view.xml
index b361d24fcff..d4dc9a95168 100644
--- a/auto_backup/view/db_backup_view.xml
+++ b/auto_backup/view/db_backup_view.xml
@@ -79,11 +79,10 @@
             </search>
         </field>
     </record>
-    <act_window
-        name="Automated Backups"
-        id="action_backup_conf_form"
-        res_model="db.backup"
-    />
+    <record id="action_backup_conf_form" model="ir.actions.act_window">
+        <field name="name">Automated Backups</field>
+        <field name="res_model">db.backup</field>
+    </record>
     <menuitem
         parent="base.next_id_9"
         action="action_backup_conf_form"

From 807c6d8dc135b58c2df3216b25c009f96539e973 Mon Sep 17 00:00:00 2001
From: simonev <simone.vanin@agilebg.com>
Date: Tue, 23 Mar 2021 11:56:11 +0100
Subject: [PATCH 26/52] [FIX] Tests with mock

---
 auto_backup/i18n/am.po                    |  68 ++++++++++----
 auto_backup/i18n/ar.po                    |  68 ++++++++++----
 auto_backup/i18n/auto_backup.pot          | 105 +++++++++++++++-------
 auto_backup/i18n/bg.po                    |  68 ++++++++++----
 auto_backup/i18n/bs.po                    |  68 ++++++++++----
 auto_backup/i18n/ca.po                    |  68 ++++++++++----
 auto_backup/i18n/cs.po                    |  68 ++++++++++----
 auto_backup/i18n/cs_CZ.po                 |  68 ++++++++++----
 auto_backup/i18n/da.po                    |  68 ++++++++++----
 auto_backup/i18n/de.po                    |  68 ++++++++++----
 auto_backup/i18n/el_GR.po                 |  68 ++++++++++----
 auto_backup/i18n/en_GB.po                 |  68 ++++++++++----
 auto_backup/i18n/es.po                    |  68 ++++++++++----
 auto_backup/i18n/es_AR.po                 |  68 ++++++++++----
 auto_backup/i18n/es_CL.po                 |  68 ++++++++++----
 auto_backup/i18n/es_CO.po                 |  68 ++++++++++----
 auto_backup/i18n/es_CR.po                 |  68 ++++++++++----
 auto_backup/i18n/es_DO.po                 |  68 ++++++++++----
 auto_backup/i18n/es_EC.po                 |  68 ++++++++++----
 auto_backup/i18n/es_ES.po                 |  68 ++++++++++----
 auto_backup/i18n/es_MX.po                 |  68 ++++++++++----
 auto_backup/i18n/es_PE.po                 |  68 ++++++++++----
 auto_backup/i18n/es_PY.po                 |  68 ++++++++++----
 auto_backup/i18n/es_VE.po                 |  68 ++++++++++----
 auto_backup/i18n/et.po                    |  68 ++++++++++----
 auto_backup/i18n/eu.po                    |  68 ++++++++++----
 auto_backup/i18n/fa.po                    |  68 ++++++++++----
 auto_backup/i18n/fi.po                    |  68 ++++++++++----
 auto_backup/i18n/fr.po                    |  68 ++++++++++----
 auto_backup/i18n/fr_CA.po                 |  68 ++++++++++----
 auto_backup/i18n/fr_CH.po                 |  68 ++++++++++----
 auto_backup/i18n/gl.po                    |  68 ++++++++++----
 auto_backup/i18n/gl_ES.po                 |  68 ++++++++++----
 auto_backup/i18n/he.po                    |  68 ++++++++++----
 auto_backup/i18n/hr.po                    |  72 ++++++++++-----
 auto_backup/i18n/hr_HR.po                 |  68 ++++++++++----
 auto_backup/i18n/hu.po                    |  68 ++++++++++----
 auto_backup/i18n/id.po                    |  68 ++++++++++----
 auto_backup/i18n/it.po                    |  68 ++++++++++----
 auto_backup/i18n/ja.po                    |  68 ++++++++++----
 auto_backup/i18n/ko.po                    |  68 ++++++++++----
 auto_backup/i18n/lt.po                    |  68 ++++++++++----
 auto_backup/i18n/lt_LT.po                 |  68 ++++++++++----
 auto_backup/i18n/lv.po                    |  68 ++++++++++----
 auto_backup/i18n/mk.po                    |  68 ++++++++++----
 auto_backup/i18n/mn.po                    |  68 ++++++++++----
 auto_backup/i18n/nb.po                    |  68 ++++++++++----
 auto_backup/i18n/nb_NO.po                 |  68 ++++++++++----
 auto_backup/i18n/nl.po                    |  68 ++++++++++----
 auto_backup/i18n/nl_BE.po                 |  68 ++++++++++----
 auto_backup/i18n/nl_NL.po                 |  68 ++++++++++----
 auto_backup/i18n/pl.po                    |  68 ++++++++++----
 auto_backup/i18n/pt.po                    |  68 ++++++++++----
 auto_backup/i18n/pt_BR.po                 |  68 ++++++++++----
 auto_backup/i18n/pt_PT.po                 |  68 ++++++++++----
 auto_backup/i18n/ro.po                    |  68 ++++++++++----
 auto_backup/i18n/ru.po                    |  68 ++++++++++----
 auto_backup/i18n/sk.po                    |  68 ++++++++++----
 auto_backup/i18n/sl.po                    |  68 ++++++++++----
 auto_backup/i18n/sr.po                    |  68 ++++++++++----
 auto_backup/i18n/sr@latin.po              |  68 ++++++++++----
 auto_backup/i18n/sv.po                    |  68 ++++++++++----
 auto_backup/i18n/th.po                    |  68 ++++++++++----
 auto_backup/i18n/tr.po                    |  68 ++++++++++----
 auto_backup/i18n/tr_TR.po                 |  68 ++++++++++----
 auto_backup/i18n/uk.po                    |  68 ++++++++++----
 auto_backup/i18n/vi.po                    |  68 ++++++++++----
 auto_backup/i18n/vi_VN.po                 |  68 ++++++++++----
 auto_backup/i18n/zh_CN.po                 |  80 ++++++++++++-----
 auto_backup/i18n/zh_TW.po                 |  68 ++++++++++----
 auto_backup/static/description/index.html |   2 +-
 auto_backup/tests/test_db_backup.py       |  95 ++++++++++----------
 72 files changed, 3586 insertions(+), 1324 deletions(-)

diff --git a/auto_backup/i18n/am.po b/auto_backup/i18n/am.po
index ff2a70a37a2..f2350032a2a 100644
--- a/auto_backup/i18n/am.po
+++ b/auto_backup/i18n/am.po
@@ -84,10 +84,20 @@ msgid "Basic backup configuration"
 msgstr ""
 
 #. module: auto_backup
-#: sql_constraint:db.backup:0
+#: model:ir.model.constraint,message:auto_backup.constraint_db_backup_name_unique
 msgid "Cannot duplicate a configuration."
 msgstr ""
 
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__changeset_change_ids
+msgid "Changeset Changes"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__changeset_ids
+msgid "Changesets"
+msgstr ""
+
 #. module: auto_backup
 #: model:ir.model.fields,help:auto_backup.field_db_backup__backup_format
 msgid "Choose the format for this backup."
@@ -99,23 +109,33 @@ msgid "Choose the storage method for this backup."
 msgstr ""
 
 #. module: auto_backup
-#: code:addons/auto_backup/models/db_backup.py:265
+#: code:addons/auto_backup/models/db_backup.py:0
 #, python-format
 msgid "Cleanup of old database backups failed."
 msgstr ""
 
 #. module: auto_backup
-#: code:addons/auto_backup/models/db_backup.py:137
+#: code:addons/auto_backup/models/db_backup.py:0
 #, python-format
 msgid "Connection Test Failed!"
 msgstr ""
 
 #. module: auto_backup
-#: code:addons/auto_backup/models/db_backup.py:132
+#: code:addons/auto_backup/models/db_backup.py:0
 #, python-format
 msgid "Connection Test Succeeded!"
 msgstr ""
 
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__count_pending_changeset_changes
+msgid "Count Pending Changeset Changes"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__count_pending_changesets
+msgid "Count Pending Changesets"
+msgstr ""
+
 #. module: auto_backup
 #: model:ir.model.fields,field_description:auto_backup.field_db_backup__create_uid
 msgid "Created by"
@@ -132,14 +152,14 @@ msgid "Database Backup"
 msgstr ""
 
 #. module: auto_backup
-#: code:addons/auto_backup/models/db_backup.py:219
+#: code:addons/auto_backup/models/db_backup.py:0
 #: model:mail.message.subtype,description:auto_backup.mail_message_subtype_failure
 #, python-format
 msgid "Database backup failed."
 msgstr ""
 
 #. module: auto_backup
-#: code:addons/auto_backup/models/db_backup.py:227
+#: code:addons/auto_backup/models/db_backup.py:0
 #: model:mail.message.subtype,description:auto_backup.mail_message_subtype_success
 #, python-format
 msgid "Database backup succeeded."
@@ -156,7 +176,7 @@ msgid "Display Name"
 msgstr ""
 
 #. module: auto_backup
-#: code:addons/auto_backup/models/db_backup.py:123
+#: code:addons/auto_backup/models/db_backup.py:0
 #, python-format
 msgid ""
 "Do not save backups on your filestore, or you will backup your backups too!"
@@ -203,7 +223,7 @@ msgid "Help"
 msgstr ""
 
 #. module: auto_backup
-#: sql_constraint:db.backup:0
+#: model:ir.model.constraint,message:auto_backup.constraint_db_backup_days_to_keep_positive
 msgid "I cannot remove backups from the future. Ask Doc for that."
 msgstr ""
 
@@ -212,18 +232,15 @@ msgstr ""
 msgid "ID"
 msgstr "ID"
 
-#. module: auto_backup
-#: model:ir.model.fields,help:auto_backup.field_db_backup__message_unread
-msgid "If checked new messages require your attention."
-msgstr ""
-
 #. module: auto_backup
 #: model:ir.model.fields,help:auto_backup.field_db_backup__message_needaction
+#: model:ir.model.fields,help:auto_backup.field_db_backup__message_unread
 msgid "If checked, new messages require your attention."
 msgstr ""
 
 #. module: auto_backup
 #: model:ir.model.fields,help:auto_backup.field_db_backup__message_has_error
+#: model:ir.model.fields,help:auto_backup.field_db_backup__message_has_sms_error
 msgid "If checked, some messages have a delivery error."
 msgstr ""
 
@@ -248,7 +265,7 @@ msgid "Last Updated on"
 msgstr "Última actualización en"
 
 #. module: auto_backup
-#: selection:db.backup,method:0
+#: model:ir.model.fields.selection,name:auto_backup.selection__db_backup__method__local
 msgid "Local disk"
 msgstr ""
 
@@ -284,7 +301,7 @@ msgstr ""
 
 #. module: auto_backup
 #: model:ir.model.fields,field_description:auto_backup.field_db_backup__message_has_error_counter
-msgid "Number of error"
+msgid "Number of errors"
 msgstr ""
 
 #. module: auto_backup
@@ -315,7 +332,7 @@ msgid "Private key location"
 msgstr ""
 
 #. module: auto_backup
-#: selection:db.backup,method:0
+#: model:ir.model.fields.selection,name:auto_backup.selection__db_backup__method__sftp
 msgid "Remote SFTP server"
 msgstr ""
 
@@ -339,6 +356,11 @@ msgstr ""
 msgid "SFTP Settings"
 msgstr ""
 
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__message_has_sms_error
+msgid "SMS Delivery error"
+msgstr ""
+
 #. module: auto_backup
 #: model_terms:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
 msgid "Search the action named 'Backup scheduler'."
@@ -350,6 +372,11 @@ msgid ""
 "Set the scheduler to active and fill in how often you want backups generated."
 msgstr ""
 
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__smart_search
+msgid "Smart Search"
+msgstr ""
+
 #. module: auto_backup
 #: model:ir.model.fields,help:auto_backup.field_db_backup__name
 msgid "Summary of this backup process"
@@ -402,6 +429,11 @@ msgid ""
 "you specify."
 msgstr ""
 
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__user_can_see_changeset
+msgid "User Can See Changeset"
+msgstr ""
+
 #. module: auto_backup
 #: model:ir.model.fields,field_description:auto_backup.field_db_backup__sftp_user
 msgid "Username in the SFTP Server"
@@ -428,7 +460,7 @@ msgid "john"
 msgstr ""
 
 #. module: auto_backup
-#: selection:db.backup,backup_format:0
+#: model:ir.model.fields.selection,name:auto_backup.selection__db_backup__backup_format__dump
 msgid "pg_dump custom format (without filestore)"
 msgstr ""
 
@@ -438,6 +470,6 @@ msgid "sftp.example.com"
 msgstr ""
 
 #. module: auto_backup
-#: selection:db.backup,backup_format:0
+#: model:ir.model.fields.selection,name:auto_backup.selection__db_backup__backup_format__zip
 msgid "zip (includes filestore)"
 msgstr ""
diff --git a/auto_backup/i18n/ar.po b/auto_backup/i18n/ar.po
index 56dce46d860..e2b140e7be3 100644
--- a/auto_backup/i18n/ar.po
+++ b/auto_backup/i18n/ar.po
@@ -85,10 +85,20 @@ msgid "Basic backup configuration"
 msgstr ""
 
 #. module: auto_backup
-#: sql_constraint:db.backup:0
+#: model:ir.model.constraint,message:auto_backup.constraint_db_backup_name_unique
 msgid "Cannot duplicate a configuration."
 msgstr ""
 
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__changeset_change_ids
+msgid "Changeset Changes"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__changeset_ids
+msgid "Changesets"
+msgstr ""
+
 #. module: auto_backup
 #: model:ir.model.fields,help:auto_backup.field_db_backup__backup_format
 msgid "Choose the format for this backup."
@@ -100,23 +110,33 @@ msgid "Choose the storage method for this backup."
 msgstr ""
 
 #. module: auto_backup
-#: code:addons/auto_backup/models/db_backup.py:265
+#: code:addons/auto_backup/models/db_backup.py:0
 #, python-format
 msgid "Cleanup of old database backups failed."
 msgstr ""
 
 #. module: auto_backup
-#: code:addons/auto_backup/models/db_backup.py:137
+#: code:addons/auto_backup/models/db_backup.py:0
 #, python-format
 msgid "Connection Test Failed!"
 msgstr ""
 
 #. module: auto_backup
-#: code:addons/auto_backup/models/db_backup.py:132
+#: code:addons/auto_backup/models/db_backup.py:0
 #, python-format
 msgid "Connection Test Succeeded!"
 msgstr ""
 
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__count_pending_changeset_changes
+msgid "Count Pending Changeset Changes"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__count_pending_changesets
+msgid "Count Pending Changesets"
+msgstr ""
+
 #. module: auto_backup
 #: model:ir.model.fields,field_description:auto_backup.field_db_backup__create_uid
 msgid "Created by"
@@ -133,14 +153,14 @@ msgid "Database Backup"
 msgstr ""
 
 #. module: auto_backup
-#: code:addons/auto_backup/models/db_backup.py:219
+#: code:addons/auto_backup/models/db_backup.py:0
 #: model:mail.message.subtype,description:auto_backup.mail_message_subtype_failure
 #, python-format
 msgid "Database backup failed."
 msgstr ""
 
 #. module: auto_backup
-#: code:addons/auto_backup/models/db_backup.py:227
+#: code:addons/auto_backup/models/db_backup.py:0
 #: model:mail.message.subtype,description:auto_backup.mail_message_subtype_success
 #, python-format
 msgid "Database backup succeeded."
@@ -157,7 +177,7 @@ msgid "Display Name"
 msgstr "اسم العرض"
 
 #. module: auto_backup
-#: code:addons/auto_backup/models/db_backup.py:123
+#: code:addons/auto_backup/models/db_backup.py:0
 #, python-format
 msgid ""
 "Do not save backups on your filestore, or you will backup your backups too!"
@@ -204,7 +224,7 @@ msgid "Help"
 msgstr ""
 
 #. module: auto_backup
-#: sql_constraint:db.backup:0
+#: model:ir.model.constraint,message:auto_backup.constraint_db_backup_days_to_keep_positive
 msgid "I cannot remove backups from the future. Ask Doc for that."
 msgstr ""
 
@@ -213,18 +233,15 @@ msgstr ""
 msgid "ID"
 msgstr "المعرف"
 
-#. module: auto_backup
-#: model:ir.model.fields,help:auto_backup.field_db_backup__message_unread
-msgid "If checked new messages require your attention."
-msgstr ""
-
 #. module: auto_backup
 #: model:ir.model.fields,help:auto_backup.field_db_backup__message_needaction
+#: model:ir.model.fields,help:auto_backup.field_db_backup__message_unread
 msgid "If checked, new messages require your attention."
 msgstr ""
 
 #. module: auto_backup
 #: model:ir.model.fields,help:auto_backup.field_db_backup__message_has_error
+#: model:ir.model.fields,help:auto_backup.field_db_backup__message_has_sms_error
 msgid "If checked, some messages have a delivery error."
 msgstr ""
 
@@ -249,7 +266,7 @@ msgid "Last Updated on"
 msgstr "آخر تحديث في"
 
 #. module: auto_backup
-#: selection:db.backup,method:0
+#: model:ir.model.fields.selection,name:auto_backup.selection__db_backup__method__local
 msgid "Local disk"
 msgstr ""
 
@@ -285,7 +302,7 @@ msgstr ""
 
 #. module: auto_backup
 #: model:ir.model.fields,field_description:auto_backup.field_db_backup__message_has_error_counter
-msgid "Number of error"
+msgid "Number of errors"
 msgstr ""
 
 #. module: auto_backup
@@ -316,7 +333,7 @@ msgid "Private key location"
 msgstr ""
 
 #. module: auto_backup
-#: selection:db.backup,method:0
+#: model:ir.model.fields.selection,name:auto_backup.selection__db_backup__method__sftp
 msgid "Remote SFTP server"
 msgstr ""
 
@@ -340,6 +357,11 @@ msgstr ""
 msgid "SFTP Settings"
 msgstr ""
 
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__message_has_sms_error
+msgid "SMS Delivery error"
+msgstr ""
+
 #. module: auto_backup
 #: model_terms:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
 msgid "Search the action named 'Backup scheduler'."
@@ -351,6 +373,11 @@ msgid ""
 "Set the scheduler to active and fill in how often you want backups generated."
 msgstr ""
 
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__smart_search
+msgid "Smart Search"
+msgstr ""
+
 #. module: auto_backup
 #: model:ir.model.fields,help:auto_backup.field_db_backup__name
 msgid "Summary of this backup process"
@@ -403,6 +430,11 @@ msgid ""
 "you specify."
 msgstr ""
 
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__user_can_see_changeset
+msgid "User Can See Changeset"
+msgstr ""
+
 #. module: auto_backup
 #: model:ir.model.fields,field_description:auto_backup.field_db_backup__sftp_user
 msgid "Username in the SFTP Server"
@@ -429,7 +461,7 @@ msgid "john"
 msgstr ""
 
 #. module: auto_backup
-#: selection:db.backup,backup_format:0
+#: model:ir.model.fields.selection,name:auto_backup.selection__db_backup__backup_format__dump
 msgid "pg_dump custom format (without filestore)"
 msgstr ""
 
@@ -439,6 +471,6 @@ msgid "sftp.example.com"
 msgstr ""
 
 #. module: auto_backup
-#: selection:db.backup,backup_format:0
+#: model:ir.model.fields.selection,name:auto_backup.selection__db_backup__backup_format__zip
 msgid "zip (includes filestore)"
 msgstr ""
diff --git a/auto_backup/i18n/auto_backup.pot b/auto_backup/i18n/auto_backup.pot
index 7382048f744..a3443303937 100644
--- a/auto_backup/i18n/auto_backup.pot
+++ b/auto_backup/i18n/auto_backup.pot
@@ -1,12 +1,12 @@
 # Translation of Odoo Server.
 # This file contains the translation of the following modules:
-#	* auto_backup
+# 	* auto_backup
 #
 msgid ""
 msgstr ""
-"Project-Id-Version: Odoo Server 12.0\n"
+"Project-Id-Version: Odoo Server 14.0\n"
 "Report-Msgid-Bugs-To: \n"
-"Last-Translator: <>\n"
+"Last-Translator: \n"
 "Language-Team: \n"
 "MIME-Version: 1.0\n"
 "Content-Type: text/plain; charset=UTF-8\n"
@@ -68,7 +68,9 @@ msgstr ""
 
 #. module: auto_backup
 #: model:ir.model.fields,help:auto_backup.field_db_backup__days_to_keep
-msgid "Backups older than this will be deleted automatically. Set 0 to disable autodeletion."
+msgid ""
+"Backups older than this will be deleted automatically. Set 0 to disable "
+"autodeletion."
 msgstr ""
 
 #. module: auto_backup
@@ -77,10 +79,20 @@ msgid "Basic backup configuration"
 msgstr ""
 
 #. module: auto_backup
-#: sql_constraint:db.backup:0
+#: model:ir.model.constraint,message:auto_backup.constraint_db_backup_name_unique
 msgid "Cannot duplicate a configuration."
 msgstr ""
 
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__changeset_change_ids
+msgid "Changeset Changes"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__changeset_ids
+msgid "Changesets"
+msgstr ""
+
 #. module: auto_backup
 #: model:ir.model.fields,help:auto_backup.field_db_backup__backup_format
 msgid "Choose the format for this backup."
@@ -92,23 +104,33 @@ msgid "Choose the storage method for this backup."
 msgstr ""
 
 #. module: auto_backup
-#: code:addons/auto_backup/models/db_backup.py:265
+#: code:addons/auto_backup/models/db_backup.py:0
 #, python-format
 msgid "Cleanup of old database backups failed."
 msgstr ""
 
 #. module: auto_backup
-#: code:addons/auto_backup/models/db_backup.py:137
+#: code:addons/auto_backup/models/db_backup.py:0
 #, python-format
 msgid "Connection Test Failed!"
 msgstr ""
 
 #. module: auto_backup
-#: code:addons/auto_backup/models/db_backup.py:132
+#: code:addons/auto_backup/models/db_backup.py:0
 #, python-format
 msgid "Connection Test Succeeded!"
 msgstr ""
 
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__count_pending_changeset_changes
+msgid "Count Pending Changeset Changes"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__count_pending_changesets
+msgid "Count Pending Changesets"
+msgstr ""
+
 #. module: auto_backup
 #: model:ir.model.fields,field_description:auto_backup.field_db_backup__create_uid
 msgid "Created by"
@@ -125,14 +147,14 @@ msgid "Database Backup"
 msgstr ""
 
 #. module: auto_backup
-#: code:addons/auto_backup/models/db_backup.py:219
+#: code:addons/auto_backup/models/db_backup.py:0
 #: model:mail.message.subtype,description:auto_backup.mail_message_subtype_failure
 #, python-format
 msgid "Database backup failed."
 msgstr ""
 
 #. module: auto_backup
-#: code:addons/auto_backup/models/db_backup.py:227
+#: code:addons/auto_backup/models/db_backup.py:0
 #: model:mail.message.subtype,description:auto_backup.mail_message_subtype_success
 #, python-format
 msgid "Database backup succeeded."
@@ -149,9 +171,10 @@ msgid "Display Name"
 msgstr ""
 
 #. module: auto_backup
-#: code:addons/auto_backup/models/db_backup.py:123
+#: code:addons/auto_backup/models/db_backup.py:0
 #, python-format
-msgid "Do not save backups on your filestore, or you will backup your backups too!"
+msgid ""
+"Do not save backups on your filestore, or you will backup your backups too!"
 msgstr ""
 
 #. module: auto_backup
@@ -195,7 +218,7 @@ msgid "Help"
 msgstr ""
 
 #. module: auto_backup
-#: sql_constraint:db.backup:0
+#: model:ir.model.constraint,message:auto_backup.constraint_db_backup_days_to_keep_positive
 msgid "I cannot remove backups from the future. Ask Doc for that."
 msgstr ""
 
@@ -204,18 +227,15 @@ msgstr ""
 msgid "ID"
 msgstr ""
 
-#. module: auto_backup
-#: model:ir.model.fields,help:auto_backup.field_db_backup__message_unread
-msgid "If checked new messages require your attention."
-msgstr ""
-
 #. module: auto_backup
 #: model:ir.model.fields,help:auto_backup.field_db_backup__message_needaction
+#: model:ir.model.fields,help:auto_backup.field_db_backup__message_unread
 msgid "If checked, new messages require your attention."
 msgstr ""
 
 #. module: auto_backup
 #: model:ir.model.fields,help:auto_backup.field_db_backup__message_has_error
+#: model:ir.model.fields,help:auto_backup.field_db_backup__message_has_sms_error
 msgid "If checked, some messages have a delivery error."
 msgstr ""
 
@@ -240,7 +260,7 @@ msgid "Last Updated on"
 msgstr ""
 
 #. module: auto_backup
-#: selection:db.backup,method:0
+#: model:ir.model.fields.selection,name:auto_backup.selection__db_backup__method__local
 msgid "Local disk"
 msgstr ""
 
@@ -276,7 +296,7 @@ msgstr ""
 
 #. module: auto_backup
 #: model:ir.model.fields,field_description:auto_backup.field_db_backup__message_has_error_counter
-msgid "Number of error"
+msgid "Number of errors"
 msgstr ""
 
 #. module: auto_backup
@@ -296,7 +316,9 @@ msgstr ""
 
 #. module: auto_backup
 #: model:ir.model.fields,help:auto_backup.field_db_backup__sftp_private_key
-msgid "Path to the private key file. Only the Odoo user should have read permissions for that file."
+msgid ""
+"Path to the private key file. Only the Odoo user should have read "
+"permissions for that file."
 msgstr ""
 
 #. module: auto_backup
@@ -305,7 +327,7 @@ msgid "Private key location"
 msgstr ""
 
 #. module: auto_backup
-#: selection:db.backup,method:0
+#: model:ir.model.fields.selection,name:auto_backup.selection__db_backup__method__sftp
 msgid "Remote SFTP server"
 msgstr ""
 
@@ -329,6 +351,11 @@ msgstr ""
 msgid "SFTP Settings"
 msgstr ""
 
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__message_has_sms_error
+msgid "SMS Delivery error"
+msgstr ""
+
 #. module: auto_backup
 #: model_terms:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
 msgid "Search the action named 'Backup scheduler'."
@@ -336,7 +363,14 @@ msgstr ""
 
 #. module: auto_backup
 #: model_terms:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
-msgid "Set the scheduler to active and fill in how often you want backups generated."
+msgid ""
+"Set the scheduler to active and fill in how often you want backups "
+"generated."
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__smart_search
+msgid "Smart Search"
 msgstr ""
 
 #. module: auto_backup
@@ -351,12 +385,15 @@ msgstr ""
 
 #. module: auto_backup
 #: model:ir.model.fields,help:auto_backup.field_db_backup__sftp_host
-msgid "The host name or IP address from your remote server. For example 192.168.0.1"
+msgid ""
+"The host name or IP address from your remote server. For example 192.168.0.1"
 msgstr ""
 
 #. module: auto_backup
 #: model:ir.model.fields,help:auto_backup.field_db_backup__sftp_password
-msgid "The password for the SFTP connection. If you specify a private key file, then this is the password to decrypt it."
+msgid ""
+"The password for the SFTP connection. If you specify a private key file, "
+"then this is the password to decrypt it."
 msgstr ""
 
 #. module: auto_backup
@@ -366,7 +403,9 @@ msgstr ""
 
 #. module: auto_backup
 #: model:ir.model.fields,help:auto_backup.field_db_backup__sftp_user
-msgid "The username where the SFTP connection should be made with. This is the user on the external server."
+msgid ""
+"The username where the SFTP connection should be made with. This is the user"
+" on the external server."
 msgstr ""
 
 #. module: auto_backup
@@ -381,7 +420,14 @@ msgstr ""
 
 #. module: auto_backup
 #: model_terms:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
-msgid "Use SFTP with caution! This writes files to external servers under the path you specify."
+msgid ""
+"Use SFTP with caution! This writes files to external servers under the path "
+"you specify."
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__user_can_see_changeset
+msgid "User Can See Changeset"
 msgstr ""
 
 #. module: auto_backup
@@ -410,7 +456,7 @@ msgid "john"
 msgstr ""
 
 #. module: auto_backup
-#: selection:db.backup,backup_format:0
+#: model:ir.model.fields.selection,name:auto_backup.selection__db_backup__backup_format__dump
 msgid "pg_dump custom format (without filestore)"
 msgstr ""
 
@@ -420,7 +466,6 @@ msgid "sftp.example.com"
 msgstr ""
 
 #. module: auto_backup
-#: selection:db.backup,backup_format:0
+#: model:ir.model.fields.selection,name:auto_backup.selection__db_backup__backup_format__zip
 msgid "zip (includes filestore)"
 msgstr ""
-
diff --git a/auto_backup/i18n/bg.po b/auto_backup/i18n/bg.po
index 52ccbdb04d8..aea9bae3753 100644
--- a/auto_backup/i18n/bg.po
+++ b/auto_backup/i18n/bg.po
@@ -84,10 +84,20 @@ msgid "Basic backup configuration"
 msgstr ""
 
 #. module: auto_backup
-#: sql_constraint:db.backup:0
+#: model:ir.model.constraint,message:auto_backup.constraint_db_backup_name_unique
 msgid "Cannot duplicate a configuration."
 msgstr ""
 
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__changeset_change_ids
+msgid "Changeset Changes"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__changeset_ids
+msgid "Changesets"
+msgstr ""
+
 #. module: auto_backup
 #: model:ir.model.fields,help:auto_backup.field_db_backup__backup_format
 msgid "Choose the format for this backup."
@@ -99,23 +109,33 @@ msgid "Choose the storage method for this backup."
 msgstr ""
 
 #. module: auto_backup
-#: code:addons/auto_backup/models/db_backup.py:265
+#: code:addons/auto_backup/models/db_backup.py:0
 #, python-format
 msgid "Cleanup of old database backups failed."
 msgstr ""
 
 #. module: auto_backup
-#: code:addons/auto_backup/models/db_backup.py:137
+#: code:addons/auto_backup/models/db_backup.py:0
 #, python-format
 msgid "Connection Test Failed!"
 msgstr ""
 
 #. module: auto_backup
-#: code:addons/auto_backup/models/db_backup.py:132
+#: code:addons/auto_backup/models/db_backup.py:0
 #, python-format
 msgid "Connection Test Succeeded!"
 msgstr ""
 
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__count_pending_changeset_changes
+msgid "Count Pending Changeset Changes"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__count_pending_changesets
+msgid "Count Pending Changesets"
+msgstr ""
+
 #. module: auto_backup
 #: model:ir.model.fields,field_description:auto_backup.field_db_backup__create_uid
 msgid "Created by"
@@ -132,14 +152,14 @@ msgid "Database Backup"
 msgstr ""
 
 #. module: auto_backup
-#: code:addons/auto_backup/models/db_backup.py:219
+#: code:addons/auto_backup/models/db_backup.py:0
 #: model:mail.message.subtype,description:auto_backup.mail_message_subtype_failure
 #, python-format
 msgid "Database backup failed."
 msgstr ""
 
 #. module: auto_backup
-#: code:addons/auto_backup/models/db_backup.py:227
+#: code:addons/auto_backup/models/db_backup.py:0
 #: model:mail.message.subtype,description:auto_backup.mail_message_subtype_success
 #, python-format
 msgid "Database backup succeeded."
@@ -156,7 +176,7 @@ msgid "Display Name"
 msgstr "Име за показване"
 
 #. module: auto_backup
-#: code:addons/auto_backup/models/db_backup.py:123
+#: code:addons/auto_backup/models/db_backup.py:0
 #, python-format
 msgid ""
 "Do not save backups on your filestore, or you will backup your backups too!"
@@ -203,7 +223,7 @@ msgid "Help"
 msgstr ""
 
 #. module: auto_backup
-#: sql_constraint:db.backup:0
+#: model:ir.model.constraint,message:auto_backup.constraint_db_backup_days_to_keep_positive
 msgid "I cannot remove backups from the future. Ask Doc for that."
 msgstr ""
 
@@ -212,18 +232,15 @@ msgstr ""
 msgid "ID"
 msgstr "ID"
 
-#. module: auto_backup
-#: model:ir.model.fields,help:auto_backup.field_db_backup__message_unread
-msgid "If checked new messages require your attention."
-msgstr ""
-
 #. module: auto_backup
 #: model:ir.model.fields,help:auto_backup.field_db_backup__message_needaction
+#: model:ir.model.fields,help:auto_backup.field_db_backup__message_unread
 msgid "If checked, new messages require your attention."
 msgstr ""
 
 #. module: auto_backup
 #: model:ir.model.fields,help:auto_backup.field_db_backup__message_has_error
+#: model:ir.model.fields,help:auto_backup.field_db_backup__message_has_sms_error
 msgid "If checked, some messages have a delivery error."
 msgstr ""
 
@@ -248,7 +265,7 @@ msgid "Last Updated on"
 msgstr "Последно обновено на"
 
 #. module: auto_backup
-#: selection:db.backup,method:0
+#: model:ir.model.fields.selection,name:auto_backup.selection__db_backup__method__local
 msgid "Local disk"
 msgstr ""
 
@@ -284,7 +301,7 @@ msgstr ""
 
 #. module: auto_backup
 #: model:ir.model.fields,field_description:auto_backup.field_db_backup__message_has_error_counter
-msgid "Number of error"
+msgid "Number of errors"
 msgstr ""
 
 #. module: auto_backup
@@ -315,7 +332,7 @@ msgid "Private key location"
 msgstr ""
 
 #. module: auto_backup
-#: selection:db.backup,method:0
+#: model:ir.model.fields.selection,name:auto_backup.selection__db_backup__method__sftp
 msgid "Remote SFTP server"
 msgstr ""
 
@@ -339,6 +356,11 @@ msgstr ""
 msgid "SFTP Settings"
 msgstr ""
 
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__message_has_sms_error
+msgid "SMS Delivery error"
+msgstr ""
+
 #. module: auto_backup
 #: model_terms:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
 msgid "Search the action named 'Backup scheduler'."
@@ -350,6 +372,11 @@ msgid ""
 "Set the scheduler to active and fill in how often you want backups generated."
 msgstr ""
 
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__smart_search
+msgid "Smart Search"
+msgstr ""
+
 #. module: auto_backup
 #: model:ir.model.fields,help:auto_backup.field_db_backup__name
 msgid "Summary of this backup process"
@@ -402,6 +429,11 @@ msgid ""
 "you specify."
 msgstr ""
 
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__user_can_see_changeset
+msgid "User Can See Changeset"
+msgstr ""
+
 #. module: auto_backup
 #: model:ir.model.fields,field_description:auto_backup.field_db_backup__sftp_user
 msgid "Username in the SFTP Server"
@@ -428,7 +460,7 @@ msgid "john"
 msgstr ""
 
 #. module: auto_backup
-#: selection:db.backup,backup_format:0
+#: model:ir.model.fields.selection,name:auto_backup.selection__db_backup__backup_format__dump
 msgid "pg_dump custom format (without filestore)"
 msgstr ""
 
@@ -438,6 +470,6 @@ msgid "sftp.example.com"
 msgstr ""
 
 #. module: auto_backup
-#: selection:db.backup,backup_format:0
+#: model:ir.model.fields.selection,name:auto_backup.selection__db_backup__backup_format__zip
 msgid "zip (includes filestore)"
 msgstr ""
diff --git a/auto_backup/i18n/bs.po b/auto_backup/i18n/bs.po
index ab42a88da60..b403d0b43d2 100644
--- a/auto_backup/i18n/bs.po
+++ b/auto_backup/i18n/bs.po
@@ -85,10 +85,20 @@ msgid "Basic backup configuration"
 msgstr ""
 
 #. module: auto_backup
-#: sql_constraint:db.backup:0
+#: model:ir.model.constraint,message:auto_backup.constraint_db_backup_name_unique
 msgid "Cannot duplicate a configuration."
 msgstr ""
 
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__changeset_change_ids
+msgid "Changeset Changes"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__changeset_ids
+msgid "Changesets"
+msgstr ""
+
 #. module: auto_backup
 #: model:ir.model.fields,help:auto_backup.field_db_backup__backup_format
 msgid "Choose the format for this backup."
@@ -100,23 +110,33 @@ msgid "Choose the storage method for this backup."
 msgstr ""
 
 #. module: auto_backup
-#: code:addons/auto_backup/models/db_backup.py:265
+#: code:addons/auto_backup/models/db_backup.py:0
 #, python-format
 msgid "Cleanup of old database backups failed."
 msgstr ""
 
 #. module: auto_backup
-#: code:addons/auto_backup/models/db_backup.py:137
+#: code:addons/auto_backup/models/db_backup.py:0
 #, python-format
 msgid "Connection Test Failed!"
 msgstr ""
 
 #. module: auto_backup
-#: code:addons/auto_backup/models/db_backup.py:132
+#: code:addons/auto_backup/models/db_backup.py:0
 #, python-format
 msgid "Connection Test Succeeded!"
 msgstr ""
 
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__count_pending_changeset_changes
+msgid "Count Pending Changeset Changes"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__count_pending_changesets
+msgid "Count Pending Changesets"
+msgstr ""
+
 #. module: auto_backup
 #: model:ir.model.fields,field_description:auto_backup.field_db_backup__create_uid
 msgid "Created by"
@@ -133,14 +153,14 @@ msgid "Database Backup"
 msgstr ""
 
 #. module: auto_backup
-#: code:addons/auto_backup/models/db_backup.py:219
+#: code:addons/auto_backup/models/db_backup.py:0
 #: model:mail.message.subtype,description:auto_backup.mail_message_subtype_failure
 #, python-format
 msgid "Database backup failed."
 msgstr ""
 
 #. module: auto_backup
-#: code:addons/auto_backup/models/db_backup.py:227
+#: code:addons/auto_backup/models/db_backup.py:0
 #: model:mail.message.subtype,description:auto_backup.mail_message_subtype_success
 #, python-format
 msgid "Database backup succeeded."
@@ -157,7 +177,7 @@ msgid "Display Name"
 msgstr "Prikaži naziv"
 
 #. module: auto_backup
-#: code:addons/auto_backup/models/db_backup.py:123
+#: code:addons/auto_backup/models/db_backup.py:0
 #, python-format
 msgid ""
 "Do not save backups on your filestore, or you will backup your backups too!"
@@ -204,7 +224,7 @@ msgid "Help"
 msgstr ""
 
 #. module: auto_backup
-#: sql_constraint:db.backup:0
+#: model:ir.model.constraint,message:auto_backup.constraint_db_backup_days_to_keep_positive
 msgid "I cannot remove backups from the future. Ask Doc for that."
 msgstr ""
 
@@ -213,18 +233,15 @@ msgstr ""
 msgid "ID"
 msgstr "ID"
 
-#. module: auto_backup
-#: model:ir.model.fields,help:auto_backup.field_db_backup__message_unread
-msgid "If checked new messages require your attention."
-msgstr ""
-
 #. module: auto_backup
 #: model:ir.model.fields,help:auto_backup.field_db_backup__message_needaction
+#: model:ir.model.fields,help:auto_backup.field_db_backup__message_unread
 msgid "If checked, new messages require your attention."
 msgstr ""
 
 #. module: auto_backup
 #: model:ir.model.fields,help:auto_backup.field_db_backup__message_has_error
+#: model:ir.model.fields,help:auto_backup.field_db_backup__message_has_sms_error
 msgid "If checked, some messages have a delivery error."
 msgstr ""
 
@@ -249,7 +266,7 @@ msgid "Last Updated on"
 msgstr "Zadnje ažurirano"
 
 #. module: auto_backup
-#: selection:db.backup,method:0
+#: model:ir.model.fields.selection,name:auto_backup.selection__db_backup__method__local
 msgid "Local disk"
 msgstr ""
 
@@ -285,7 +302,7 @@ msgstr ""
 
 #. module: auto_backup
 #: model:ir.model.fields,field_description:auto_backup.field_db_backup__message_has_error_counter
-msgid "Number of error"
+msgid "Number of errors"
 msgstr ""
 
 #. module: auto_backup
@@ -316,7 +333,7 @@ msgid "Private key location"
 msgstr ""
 
 #. module: auto_backup
-#: selection:db.backup,method:0
+#: model:ir.model.fields.selection,name:auto_backup.selection__db_backup__method__sftp
 msgid "Remote SFTP server"
 msgstr ""
 
@@ -340,6 +357,11 @@ msgstr ""
 msgid "SFTP Settings"
 msgstr ""
 
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__message_has_sms_error
+msgid "SMS Delivery error"
+msgstr ""
+
 #. module: auto_backup
 #: model_terms:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
 msgid "Search the action named 'Backup scheduler'."
@@ -351,6 +373,11 @@ msgid ""
 "Set the scheduler to active and fill in how often you want backups generated."
 msgstr ""
 
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__smart_search
+msgid "Smart Search"
+msgstr ""
+
 #. module: auto_backup
 #: model:ir.model.fields,help:auto_backup.field_db_backup__name
 msgid "Summary of this backup process"
@@ -403,6 +430,11 @@ msgid ""
 "you specify."
 msgstr ""
 
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__user_can_see_changeset
+msgid "User Can See Changeset"
+msgstr ""
+
 #. module: auto_backup
 #: model:ir.model.fields,field_description:auto_backup.field_db_backup__sftp_user
 msgid "Username in the SFTP Server"
@@ -429,7 +461,7 @@ msgid "john"
 msgstr ""
 
 #. module: auto_backup
-#: selection:db.backup,backup_format:0
+#: model:ir.model.fields.selection,name:auto_backup.selection__db_backup__backup_format__dump
 msgid "pg_dump custom format (without filestore)"
 msgstr ""
 
@@ -439,6 +471,6 @@ msgid "sftp.example.com"
 msgstr ""
 
 #. module: auto_backup
-#: selection:db.backup,backup_format:0
+#: model:ir.model.fields.selection,name:auto_backup.selection__db_backup__backup_format__zip
 msgid "zip (includes filestore)"
 msgstr ""
diff --git a/auto_backup/i18n/ca.po b/auto_backup/i18n/ca.po
index 83d1c05114c..a6a0279b118 100644
--- a/auto_backup/i18n/ca.po
+++ b/auto_backup/i18n/ca.po
@@ -84,10 +84,20 @@ msgid "Basic backup configuration"
 msgstr ""
 
 #. module: auto_backup
-#: sql_constraint:db.backup:0
+#: model:ir.model.constraint,message:auto_backup.constraint_db_backup_name_unique
 msgid "Cannot duplicate a configuration."
 msgstr ""
 
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__changeset_change_ids
+msgid "Changeset Changes"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__changeset_ids
+msgid "Changesets"
+msgstr ""
+
 #. module: auto_backup
 #: model:ir.model.fields,help:auto_backup.field_db_backup__backup_format
 msgid "Choose the format for this backup."
@@ -99,23 +109,33 @@ msgid "Choose the storage method for this backup."
 msgstr ""
 
 #. module: auto_backup
-#: code:addons/auto_backup/models/db_backup.py:265
+#: code:addons/auto_backup/models/db_backup.py:0
 #, python-format
 msgid "Cleanup of old database backups failed."
 msgstr ""
 
 #. module: auto_backup
-#: code:addons/auto_backup/models/db_backup.py:137
+#: code:addons/auto_backup/models/db_backup.py:0
 #, python-format
 msgid "Connection Test Failed!"
 msgstr ""
 
 #. module: auto_backup
-#: code:addons/auto_backup/models/db_backup.py:132
+#: code:addons/auto_backup/models/db_backup.py:0
 #, python-format
 msgid "Connection Test Succeeded!"
 msgstr ""
 
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__count_pending_changeset_changes
+msgid "Count Pending Changeset Changes"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__count_pending_changesets
+msgid "Count Pending Changesets"
+msgstr ""
+
 #. module: auto_backup
 #: model:ir.model.fields,field_description:auto_backup.field_db_backup__create_uid
 msgid "Created by"
@@ -132,14 +152,14 @@ msgid "Database Backup"
 msgstr ""
 
 #. module: auto_backup
-#: code:addons/auto_backup/models/db_backup.py:219
+#: code:addons/auto_backup/models/db_backup.py:0
 #: model:mail.message.subtype,description:auto_backup.mail_message_subtype_failure
 #, python-format
 msgid "Database backup failed."
 msgstr ""
 
 #. module: auto_backup
-#: code:addons/auto_backup/models/db_backup.py:227
+#: code:addons/auto_backup/models/db_backup.py:0
 #: model:mail.message.subtype,description:auto_backup.mail_message_subtype_success
 #, python-format
 msgid "Database backup succeeded."
@@ -156,7 +176,7 @@ msgid "Display Name"
 msgstr "Nom a mostrar"
 
 #. module: auto_backup
-#: code:addons/auto_backup/models/db_backup.py:123
+#: code:addons/auto_backup/models/db_backup.py:0
 #, python-format
 msgid ""
 "Do not save backups on your filestore, or you will backup your backups too!"
@@ -203,7 +223,7 @@ msgid "Help"
 msgstr ""
 
 #. module: auto_backup
-#: sql_constraint:db.backup:0
+#: model:ir.model.constraint,message:auto_backup.constraint_db_backup_days_to_keep_positive
 msgid "I cannot remove backups from the future. Ask Doc for that."
 msgstr ""
 
@@ -212,18 +232,15 @@ msgstr ""
 msgid "ID"
 msgstr "ID"
 
-#. module: auto_backup
-#: model:ir.model.fields,help:auto_backup.field_db_backup__message_unread
-msgid "If checked new messages require your attention."
-msgstr ""
-
 #. module: auto_backup
 #: model:ir.model.fields,help:auto_backup.field_db_backup__message_needaction
+#: model:ir.model.fields,help:auto_backup.field_db_backup__message_unread
 msgid "If checked, new messages require your attention."
 msgstr ""
 
 #. module: auto_backup
 #: model:ir.model.fields,help:auto_backup.field_db_backup__message_has_error
+#: model:ir.model.fields,help:auto_backup.field_db_backup__message_has_sms_error
 msgid "If checked, some messages have a delivery error."
 msgstr ""
 
@@ -248,7 +265,7 @@ msgid "Last Updated on"
 msgstr "Darrera Actualització el"
 
 #. module: auto_backup
-#: selection:db.backup,method:0
+#: model:ir.model.fields.selection,name:auto_backup.selection__db_backup__method__local
 msgid "Local disk"
 msgstr ""
 
@@ -284,7 +301,7 @@ msgstr ""
 
 #. module: auto_backup
 #: model:ir.model.fields,field_description:auto_backup.field_db_backup__message_has_error_counter
-msgid "Number of error"
+msgid "Number of errors"
 msgstr ""
 
 #. module: auto_backup
@@ -315,7 +332,7 @@ msgid "Private key location"
 msgstr ""
 
 #. module: auto_backup
-#: selection:db.backup,method:0
+#: model:ir.model.fields.selection,name:auto_backup.selection__db_backup__method__sftp
 msgid "Remote SFTP server"
 msgstr ""
 
@@ -339,6 +356,11 @@ msgstr ""
 msgid "SFTP Settings"
 msgstr ""
 
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__message_has_sms_error
+msgid "SMS Delivery error"
+msgstr ""
+
 #. module: auto_backup
 #: model_terms:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
 msgid "Search the action named 'Backup scheduler'."
@@ -350,6 +372,11 @@ msgid ""
 "Set the scheduler to active and fill in how often you want backups generated."
 msgstr ""
 
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__smart_search
+msgid "Smart Search"
+msgstr ""
+
 #. module: auto_backup
 #: model:ir.model.fields,help:auto_backup.field_db_backup__name
 msgid "Summary of this backup process"
@@ -402,6 +429,11 @@ msgid ""
 "you specify."
 msgstr ""
 
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__user_can_see_changeset
+msgid "User Can See Changeset"
+msgstr ""
+
 #. module: auto_backup
 #: model:ir.model.fields,field_description:auto_backup.field_db_backup__sftp_user
 msgid "Username in the SFTP Server"
@@ -428,7 +460,7 @@ msgid "john"
 msgstr ""
 
 #. module: auto_backup
-#: selection:db.backup,backup_format:0
+#: model:ir.model.fields.selection,name:auto_backup.selection__db_backup__backup_format__dump
 msgid "pg_dump custom format (without filestore)"
 msgstr ""
 
@@ -438,6 +470,6 @@ msgid "sftp.example.com"
 msgstr ""
 
 #. module: auto_backup
-#: selection:db.backup,backup_format:0
+#: model:ir.model.fields.selection,name:auto_backup.selection__db_backup__backup_format__zip
 msgid "zip (includes filestore)"
 msgstr ""
diff --git a/auto_backup/i18n/cs.po b/auto_backup/i18n/cs.po
index 4c83cc40edc..daa184ccc2b 100644
--- a/auto_backup/i18n/cs.po
+++ b/auto_backup/i18n/cs.po
@@ -84,10 +84,20 @@ msgid "Basic backup configuration"
 msgstr ""
 
 #. module: auto_backup
-#: sql_constraint:db.backup:0
+#: model:ir.model.constraint,message:auto_backup.constraint_db_backup_name_unique
 msgid "Cannot duplicate a configuration."
 msgstr ""
 
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__changeset_change_ids
+msgid "Changeset Changes"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__changeset_ids
+msgid "Changesets"
+msgstr ""
+
 #. module: auto_backup
 #: model:ir.model.fields,help:auto_backup.field_db_backup__backup_format
 msgid "Choose the format for this backup."
@@ -99,23 +109,33 @@ msgid "Choose the storage method for this backup."
 msgstr ""
 
 #. module: auto_backup
-#: code:addons/auto_backup/models/db_backup.py:265
+#: code:addons/auto_backup/models/db_backup.py:0
 #, python-format
 msgid "Cleanup of old database backups failed."
 msgstr ""
 
 #. module: auto_backup
-#: code:addons/auto_backup/models/db_backup.py:137
+#: code:addons/auto_backup/models/db_backup.py:0
 #, python-format
 msgid "Connection Test Failed!"
 msgstr ""
 
 #. module: auto_backup
-#: code:addons/auto_backup/models/db_backup.py:132
+#: code:addons/auto_backup/models/db_backup.py:0
 #, python-format
 msgid "Connection Test Succeeded!"
 msgstr ""
 
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__count_pending_changeset_changes
+msgid "Count Pending Changeset Changes"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__count_pending_changesets
+msgid "Count Pending Changesets"
+msgstr ""
+
 #. module: auto_backup
 #: model:ir.model.fields,field_description:auto_backup.field_db_backup__create_uid
 msgid "Created by"
@@ -132,14 +152,14 @@ msgid "Database Backup"
 msgstr ""
 
 #. module: auto_backup
-#: code:addons/auto_backup/models/db_backup.py:219
+#: code:addons/auto_backup/models/db_backup.py:0
 #: model:mail.message.subtype,description:auto_backup.mail_message_subtype_failure
 #, python-format
 msgid "Database backup failed."
 msgstr ""
 
 #. module: auto_backup
-#: code:addons/auto_backup/models/db_backup.py:227
+#: code:addons/auto_backup/models/db_backup.py:0
 #: model:mail.message.subtype,description:auto_backup.mail_message_subtype_success
 #, python-format
 msgid "Database backup succeeded."
@@ -156,7 +176,7 @@ msgid "Display Name"
 msgstr "Zobrazovaný název"
 
 #. module: auto_backup
-#: code:addons/auto_backup/models/db_backup.py:123
+#: code:addons/auto_backup/models/db_backup.py:0
 #, python-format
 msgid ""
 "Do not save backups on your filestore, or you will backup your backups too!"
@@ -203,7 +223,7 @@ msgid "Help"
 msgstr ""
 
 #. module: auto_backup
-#: sql_constraint:db.backup:0
+#: model:ir.model.constraint,message:auto_backup.constraint_db_backup_days_to_keep_positive
 msgid "I cannot remove backups from the future. Ask Doc for that."
 msgstr ""
 
@@ -212,18 +232,15 @@ msgstr ""
 msgid "ID"
 msgstr "ID"
 
-#. module: auto_backup
-#: model:ir.model.fields,help:auto_backup.field_db_backup__message_unread
-msgid "If checked new messages require your attention."
-msgstr ""
-
 #. module: auto_backup
 #: model:ir.model.fields,help:auto_backup.field_db_backup__message_needaction
+#: model:ir.model.fields,help:auto_backup.field_db_backup__message_unread
 msgid "If checked, new messages require your attention."
 msgstr ""
 
 #. module: auto_backup
 #: model:ir.model.fields,help:auto_backup.field_db_backup__message_has_error
+#: model:ir.model.fields,help:auto_backup.field_db_backup__message_has_sms_error
 msgid "If checked, some messages have a delivery error."
 msgstr ""
 
@@ -248,7 +265,7 @@ msgid "Last Updated on"
 msgstr "Naposled upraveno"
 
 #. module: auto_backup
-#: selection:db.backup,method:0
+#: model:ir.model.fields.selection,name:auto_backup.selection__db_backup__method__local
 msgid "Local disk"
 msgstr ""
 
@@ -284,7 +301,7 @@ msgstr ""
 
 #. module: auto_backup
 #: model:ir.model.fields,field_description:auto_backup.field_db_backup__message_has_error_counter
-msgid "Number of error"
+msgid "Number of errors"
 msgstr ""
 
 #. module: auto_backup
@@ -315,7 +332,7 @@ msgid "Private key location"
 msgstr ""
 
 #. module: auto_backup
-#: selection:db.backup,method:0
+#: model:ir.model.fields.selection,name:auto_backup.selection__db_backup__method__sftp
 msgid "Remote SFTP server"
 msgstr ""
 
@@ -339,6 +356,11 @@ msgstr ""
 msgid "SFTP Settings"
 msgstr ""
 
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__message_has_sms_error
+msgid "SMS Delivery error"
+msgstr ""
+
 #. module: auto_backup
 #: model_terms:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
 msgid "Search the action named 'Backup scheduler'."
@@ -350,6 +372,11 @@ msgid ""
 "Set the scheduler to active and fill in how often you want backups generated."
 msgstr ""
 
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__smart_search
+msgid "Smart Search"
+msgstr ""
+
 #. module: auto_backup
 #: model:ir.model.fields,help:auto_backup.field_db_backup__name
 msgid "Summary of this backup process"
@@ -402,6 +429,11 @@ msgid ""
 "you specify."
 msgstr ""
 
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__user_can_see_changeset
+msgid "User Can See Changeset"
+msgstr ""
+
 #. module: auto_backup
 #: model:ir.model.fields,field_description:auto_backup.field_db_backup__sftp_user
 msgid "Username in the SFTP Server"
@@ -428,7 +460,7 @@ msgid "john"
 msgstr ""
 
 #. module: auto_backup
-#: selection:db.backup,backup_format:0
+#: model:ir.model.fields.selection,name:auto_backup.selection__db_backup__backup_format__dump
 msgid "pg_dump custom format (without filestore)"
 msgstr ""
 
@@ -438,6 +470,6 @@ msgid "sftp.example.com"
 msgstr ""
 
 #. module: auto_backup
-#: selection:db.backup,backup_format:0
+#: model:ir.model.fields.selection,name:auto_backup.selection__db_backup__backup_format__zip
 msgid "zip (includes filestore)"
 msgstr ""
diff --git a/auto_backup/i18n/cs_CZ.po b/auto_backup/i18n/cs_CZ.po
index 5c7c45b98b3..22ff6507724 100644
--- a/auto_backup/i18n/cs_CZ.po
+++ b/auto_backup/i18n/cs_CZ.po
@@ -85,10 +85,20 @@ msgid "Basic backup configuration"
 msgstr ""
 
 #. module: auto_backup
-#: sql_constraint:db.backup:0
+#: model:ir.model.constraint,message:auto_backup.constraint_db_backup_name_unique
 msgid "Cannot duplicate a configuration."
 msgstr ""
 
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__changeset_change_ids
+msgid "Changeset Changes"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__changeset_ids
+msgid "Changesets"
+msgstr ""
+
 #. module: auto_backup
 #: model:ir.model.fields,help:auto_backup.field_db_backup__backup_format
 msgid "Choose the format for this backup."
@@ -100,23 +110,33 @@ msgid "Choose the storage method for this backup."
 msgstr ""
 
 #. module: auto_backup
-#: code:addons/auto_backup/models/db_backup.py:265
+#: code:addons/auto_backup/models/db_backup.py:0
 #, python-format
 msgid "Cleanup of old database backups failed."
 msgstr ""
 
 #. module: auto_backup
-#: code:addons/auto_backup/models/db_backup.py:137
+#: code:addons/auto_backup/models/db_backup.py:0
 #, python-format
 msgid "Connection Test Failed!"
 msgstr ""
 
 #. module: auto_backup
-#: code:addons/auto_backup/models/db_backup.py:132
+#: code:addons/auto_backup/models/db_backup.py:0
 #, python-format
 msgid "Connection Test Succeeded!"
 msgstr ""
 
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__count_pending_changeset_changes
+msgid "Count Pending Changeset Changes"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__count_pending_changesets
+msgid "Count Pending Changesets"
+msgstr ""
+
 #. module: auto_backup
 #: model:ir.model.fields,field_description:auto_backup.field_db_backup__create_uid
 msgid "Created by"
@@ -133,14 +153,14 @@ msgid "Database Backup"
 msgstr ""
 
 #. module: auto_backup
-#: code:addons/auto_backup/models/db_backup.py:219
+#: code:addons/auto_backup/models/db_backup.py:0
 #: model:mail.message.subtype,description:auto_backup.mail_message_subtype_failure
 #, python-format
 msgid "Database backup failed."
 msgstr ""
 
 #. module: auto_backup
-#: code:addons/auto_backup/models/db_backup.py:227
+#: code:addons/auto_backup/models/db_backup.py:0
 #: model:mail.message.subtype,description:auto_backup.mail_message_subtype_success
 #, python-format
 msgid "Database backup succeeded."
@@ -157,7 +177,7 @@ msgid "Display Name"
 msgstr "Zobrazit název"
 
 #. module: auto_backup
-#: code:addons/auto_backup/models/db_backup.py:123
+#: code:addons/auto_backup/models/db_backup.py:0
 #, python-format
 msgid ""
 "Do not save backups on your filestore, or you will backup your backups too!"
@@ -204,7 +224,7 @@ msgid "Help"
 msgstr ""
 
 #. module: auto_backup
-#: sql_constraint:db.backup:0
+#: model:ir.model.constraint,message:auto_backup.constraint_db_backup_days_to_keep_positive
 msgid "I cannot remove backups from the future. Ask Doc for that."
 msgstr ""
 
@@ -213,18 +233,15 @@ msgstr ""
 msgid "ID"
 msgstr "ID"
 
-#. module: auto_backup
-#: model:ir.model.fields,help:auto_backup.field_db_backup__message_unread
-msgid "If checked new messages require your attention."
-msgstr ""
-
 #. module: auto_backup
 #: model:ir.model.fields,help:auto_backup.field_db_backup__message_needaction
+#: model:ir.model.fields,help:auto_backup.field_db_backup__message_unread
 msgid "If checked, new messages require your attention."
 msgstr ""
 
 #. module: auto_backup
 #: model:ir.model.fields,help:auto_backup.field_db_backup__message_has_error
+#: model:ir.model.fields,help:auto_backup.field_db_backup__message_has_sms_error
 msgid "If checked, some messages have a delivery error."
 msgstr ""
 
@@ -249,7 +266,7 @@ msgid "Last Updated on"
 msgstr "Poslední aktualizace dne"
 
 #. module: auto_backup
-#: selection:db.backup,method:0
+#: model:ir.model.fields.selection,name:auto_backup.selection__db_backup__method__local
 msgid "Local disk"
 msgstr ""
 
@@ -285,7 +302,7 @@ msgstr ""
 
 #. module: auto_backup
 #: model:ir.model.fields,field_description:auto_backup.field_db_backup__message_has_error_counter
-msgid "Number of error"
+msgid "Number of errors"
 msgstr ""
 
 #. module: auto_backup
@@ -316,7 +333,7 @@ msgid "Private key location"
 msgstr ""
 
 #. module: auto_backup
-#: selection:db.backup,method:0
+#: model:ir.model.fields.selection,name:auto_backup.selection__db_backup__method__sftp
 msgid "Remote SFTP server"
 msgstr ""
 
@@ -340,6 +357,11 @@ msgstr ""
 msgid "SFTP Settings"
 msgstr ""
 
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__message_has_sms_error
+msgid "SMS Delivery error"
+msgstr ""
+
 #. module: auto_backup
 #: model_terms:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
 msgid "Search the action named 'Backup scheduler'."
@@ -351,6 +373,11 @@ msgid ""
 "Set the scheduler to active and fill in how often you want backups generated."
 msgstr ""
 
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__smart_search
+msgid "Smart Search"
+msgstr ""
+
 #. module: auto_backup
 #: model:ir.model.fields,help:auto_backup.field_db_backup__name
 msgid "Summary of this backup process"
@@ -403,6 +430,11 @@ msgid ""
 "you specify."
 msgstr ""
 
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__user_can_see_changeset
+msgid "User Can See Changeset"
+msgstr ""
+
 #. module: auto_backup
 #: model:ir.model.fields,field_description:auto_backup.field_db_backup__sftp_user
 msgid "Username in the SFTP Server"
@@ -429,7 +461,7 @@ msgid "john"
 msgstr ""
 
 #. module: auto_backup
-#: selection:db.backup,backup_format:0
+#: model:ir.model.fields.selection,name:auto_backup.selection__db_backup__backup_format__dump
 msgid "pg_dump custom format (without filestore)"
 msgstr ""
 
@@ -439,6 +471,6 @@ msgid "sftp.example.com"
 msgstr ""
 
 #. module: auto_backup
-#: selection:db.backup,backup_format:0
+#: model:ir.model.fields.selection,name:auto_backup.selection__db_backup__backup_format__zip
 msgid "zip (includes filestore)"
 msgstr ""
diff --git a/auto_backup/i18n/da.po b/auto_backup/i18n/da.po
index 8d3cb0a8be0..daab321c83e 100644
--- a/auto_backup/i18n/da.po
+++ b/auto_backup/i18n/da.po
@@ -84,10 +84,20 @@ msgid "Basic backup configuration"
 msgstr ""
 
 #. module: auto_backup
-#: sql_constraint:db.backup:0
+#: model:ir.model.constraint,message:auto_backup.constraint_db_backup_name_unique
 msgid "Cannot duplicate a configuration."
 msgstr ""
 
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__changeset_change_ids
+msgid "Changeset Changes"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__changeset_ids
+msgid "Changesets"
+msgstr ""
+
 #. module: auto_backup
 #: model:ir.model.fields,help:auto_backup.field_db_backup__backup_format
 msgid "Choose the format for this backup."
@@ -99,23 +109,33 @@ msgid "Choose the storage method for this backup."
 msgstr ""
 
 #. module: auto_backup
-#: code:addons/auto_backup/models/db_backup.py:265
+#: code:addons/auto_backup/models/db_backup.py:0
 #, python-format
 msgid "Cleanup of old database backups failed."
 msgstr ""
 
 #. module: auto_backup
-#: code:addons/auto_backup/models/db_backup.py:137
+#: code:addons/auto_backup/models/db_backup.py:0
 #, python-format
 msgid "Connection Test Failed!"
 msgstr ""
 
 #. module: auto_backup
-#: code:addons/auto_backup/models/db_backup.py:132
+#: code:addons/auto_backup/models/db_backup.py:0
 #, python-format
 msgid "Connection Test Succeeded!"
 msgstr ""
 
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__count_pending_changeset_changes
+msgid "Count Pending Changeset Changes"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__count_pending_changesets
+msgid "Count Pending Changesets"
+msgstr ""
+
 #. module: auto_backup
 #: model:ir.model.fields,field_description:auto_backup.field_db_backup__create_uid
 msgid "Created by"
@@ -132,14 +152,14 @@ msgid "Database Backup"
 msgstr ""
 
 #. module: auto_backup
-#: code:addons/auto_backup/models/db_backup.py:219
+#: code:addons/auto_backup/models/db_backup.py:0
 #: model:mail.message.subtype,description:auto_backup.mail_message_subtype_failure
 #, python-format
 msgid "Database backup failed."
 msgstr ""
 
 #. module: auto_backup
-#: code:addons/auto_backup/models/db_backup.py:227
+#: code:addons/auto_backup/models/db_backup.py:0
 #: model:mail.message.subtype,description:auto_backup.mail_message_subtype_success
 #, python-format
 msgid "Database backup succeeded."
@@ -156,7 +176,7 @@ msgid "Display Name"
 msgstr "Vist navn"
 
 #. module: auto_backup
-#: code:addons/auto_backup/models/db_backup.py:123
+#: code:addons/auto_backup/models/db_backup.py:0
 #, python-format
 msgid ""
 "Do not save backups on your filestore, or you will backup your backups too!"
@@ -203,7 +223,7 @@ msgid "Help"
 msgstr ""
 
 #. module: auto_backup
-#: sql_constraint:db.backup:0
+#: model:ir.model.constraint,message:auto_backup.constraint_db_backup_days_to_keep_positive
 msgid "I cannot remove backups from the future. Ask Doc for that."
 msgstr ""
 
@@ -212,18 +232,15 @@ msgstr ""
 msgid "ID"
 msgstr "Id"
 
-#. module: auto_backup
-#: model:ir.model.fields,help:auto_backup.field_db_backup__message_unread
-msgid "If checked new messages require your attention."
-msgstr ""
-
 #. module: auto_backup
 #: model:ir.model.fields,help:auto_backup.field_db_backup__message_needaction
+#: model:ir.model.fields,help:auto_backup.field_db_backup__message_unread
 msgid "If checked, new messages require your attention."
 msgstr ""
 
 #. module: auto_backup
 #: model:ir.model.fields,help:auto_backup.field_db_backup__message_has_error
+#: model:ir.model.fields,help:auto_backup.field_db_backup__message_has_sms_error
 msgid "If checked, some messages have a delivery error."
 msgstr ""
 
@@ -248,7 +265,7 @@ msgid "Last Updated on"
 msgstr "Sidst opdateret den"
 
 #. module: auto_backup
-#: selection:db.backup,method:0
+#: model:ir.model.fields.selection,name:auto_backup.selection__db_backup__method__local
 msgid "Local disk"
 msgstr ""
 
@@ -284,7 +301,7 @@ msgstr ""
 
 #. module: auto_backup
 #: model:ir.model.fields,field_description:auto_backup.field_db_backup__message_has_error_counter
-msgid "Number of error"
+msgid "Number of errors"
 msgstr ""
 
 #. module: auto_backup
@@ -315,7 +332,7 @@ msgid "Private key location"
 msgstr ""
 
 #. module: auto_backup
-#: selection:db.backup,method:0
+#: model:ir.model.fields.selection,name:auto_backup.selection__db_backup__method__sftp
 msgid "Remote SFTP server"
 msgstr ""
 
@@ -339,6 +356,11 @@ msgstr ""
 msgid "SFTP Settings"
 msgstr ""
 
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__message_has_sms_error
+msgid "SMS Delivery error"
+msgstr ""
+
 #. module: auto_backup
 #: model_terms:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
 msgid "Search the action named 'Backup scheduler'."
@@ -350,6 +372,11 @@ msgid ""
 "Set the scheduler to active and fill in how often you want backups generated."
 msgstr ""
 
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__smart_search
+msgid "Smart Search"
+msgstr ""
+
 #. module: auto_backup
 #: model:ir.model.fields,help:auto_backup.field_db_backup__name
 msgid "Summary of this backup process"
@@ -402,6 +429,11 @@ msgid ""
 "you specify."
 msgstr ""
 
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__user_can_see_changeset
+msgid "User Can See Changeset"
+msgstr ""
+
 #. module: auto_backup
 #: model:ir.model.fields,field_description:auto_backup.field_db_backup__sftp_user
 msgid "Username in the SFTP Server"
@@ -428,7 +460,7 @@ msgid "john"
 msgstr ""
 
 #. module: auto_backup
-#: selection:db.backup,backup_format:0
+#: model:ir.model.fields.selection,name:auto_backup.selection__db_backup__backup_format__dump
 msgid "pg_dump custom format (without filestore)"
 msgstr ""
 
@@ -438,6 +470,6 @@ msgid "sftp.example.com"
 msgstr ""
 
 #. module: auto_backup
-#: selection:db.backup,backup_format:0
+#: model:ir.model.fields.selection,name:auto_backup.selection__db_backup__backup_format__zip
 msgid "zip (includes filestore)"
 msgstr ""
diff --git a/auto_backup/i18n/de.po b/auto_backup/i18n/de.po
index 3b6de45b5cc..32ce1b8556f 100644
--- a/auto_backup/i18n/de.po
+++ b/auto_backup/i18n/de.po
@@ -86,10 +86,20 @@ msgid "Basic backup configuration"
 msgstr ""
 
 #. module: auto_backup
-#: sql_constraint:db.backup:0
+#: model:ir.model.constraint,message:auto_backup.constraint_db_backup_name_unique
 msgid "Cannot duplicate a configuration."
 msgstr ""
 
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__changeset_change_ids
+msgid "Changeset Changes"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__changeset_ids
+msgid "Changesets"
+msgstr ""
+
 #. module: auto_backup
 #: model:ir.model.fields,help:auto_backup.field_db_backup__backup_format
 #, fuzzy
@@ -102,23 +112,33 @@ msgid "Choose the storage method for this backup."
 msgstr ""
 
 #. module: auto_backup
-#: code:addons/auto_backup/models/db_backup.py:265
+#: code:addons/auto_backup/models/db_backup.py:0
 #, python-format
 msgid "Cleanup of old database backups failed."
 msgstr ""
 
 #. module: auto_backup
-#: code:addons/auto_backup/models/db_backup.py:137
+#: code:addons/auto_backup/models/db_backup.py:0
 #, python-format
 msgid "Connection Test Failed!"
 msgstr ""
 
 #. module: auto_backup
-#: code:addons/auto_backup/models/db_backup.py:132
+#: code:addons/auto_backup/models/db_backup.py:0
 #, python-format
 msgid "Connection Test Succeeded!"
 msgstr ""
 
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__count_pending_changeset_changes
+msgid "Count Pending Changeset Changes"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__count_pending_changesets
+msgid "Count Pending Changesets"
+msgstr ""
+
 #. module: auto_backup
 #: model:ir.model.fields,field_description:auto_backup.field_db_backup__create_uid
 msgid "Created by"
@@ -135,14 +155,14 @@ msgid "Database Backup"
 msgstr ""
 
 #. module: auto_backup
-#: code:addons/auto_backup/models/db_backup.py:219
+#: code:addons/auto_backup/models/db_backup.py:0
 #: model:mail.message.subtype,description:auto_backup.mail_message_subtype_failure
 #, python-format
 msgid "Database backup failed."
 msgstr ""
 
 #. module: auto_backup
-#: code:addons/auto_backup/models/db_backup.py:227
+#: code:addons/auto_backup/models/db_backup.py:0
 #: model:mail.message.subtype,description:auto_backup.mail_message_subtype_success
 #, python-format
 msgid "Database backup succeeded."
@@ -159,7 +179,7 @@ msgid "Display Name"
 msgstr "Anzeigename"
 
 #. module: auto_backup
-#: code:addons/auto_backup/models/db_backup.py:123
+#: code:addons/auto_backup/models/db_backup.py:0
 #, python-format
 msgid ""
 "Do not save backups on your filestore, or you will backup your backups too!"
@@ -207,7 +227,7 @@ msgid "Help"
 msgstr "Hilfe"
 
 #. module: auto_backup
-#: sql_constraint:db.backup:0
+#: model:ir.model.constraint,message:auto_backup.constraint_db_backup_days_to_keep_positive
 msgid "I cannot remove backups from the future. Ask Doc for that."
 msgstr ""
 
@@ -216,18 +236,15 @@ msgstr ""
 msgid "ID"
 msgstr "ID"
 
-#. module: auto_backup
-#: model:ir.model.fields,help:auto_backup.field_db_backup__message_unread
-msgid "If checked new messages require your attention."
-msgstr ""
-
 #. module: auto_backup
 #: model:ir.model.fields,help:auto_backup.field_db_backup__message_needaction
+#: model:ir.model.fields,help:auto_backup.field_db_backup__message_unread
 msgid "If checked, new messages require your attention."
 msgstr ""
 
 #. module: auto_backup
 #: model:ir.model.fields,help:auto_backup.field_db_backup__message_has_error
+#: model:ir.model.fields,help:auto_backup.field_db_backup__message_has_sms_error
 msgid "If checked, some messages have a delivery error."
 msgstr ""
 
@@ -252,7 +269,7 @@ msgid "Last Updated on"
 msgstr "Zuletzt aktualisiert am"
 
 #. module: auto_backup
-#: selection:db.backup,method:0
+#: model:ir.model.fields.selection,name:auto_backup.selection__db_backup__method__local
 msgid "Local disk"
 msgstr ""
 
@@ -288,7 +305,7 @@ msgstr ""
 
 #. module: auto_backup
 #: model:ir.model.fields,field_description:auto_backup.field_db_backup__message_has_error_counter
-msgid "Number of error"
+msgid "Number of errors"
 msgstr ""
 
 #. module: auto_backup
@@ -319,7 +336,7 @@ msgid "Private key location"
 msgstr ""
 
 #. module: auto_backup
-#: selection:db.backup,method:0
+#: model:ir.model.fields.selection,name:auto_backup.selection__db_backup__method__sftp
 msgid "Remote SFTP server"
 msgstr ""
 
@@ -343,6 +360,11 @@ msgstr "SFTP-Server"
 msgid "SFTP Settings"
 msgstr "SFTP Einstellungen"
 
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__message_has_sms_error
+msgid "SMS Delivery error"
+msgstr ""
+
 #. module: auto_backup
 #: model_terms:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
 msgid "Search the action named 'Backup scheduler'."
@@ -356,6 +378,11 @@ msgstr ""
 "Setzen Sie die Aktion auf aktiv und geben Sie an wie oft die Sicherungen "
 "erstellt werden soll."
 
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__smart_search
+msgid "Smart Search"
+msgstr ""
+
 #. module: auto_backup
 #: model:ir.model.fields,help:auto_backup.field_db_backup__name
 msgid "Summary of this backup process"
@@ -412,6 +439,11 @@ msgstr ""
 "Verwenden Sie SFTP mit Vorsicht! Dies schreibt Dateien auf externen Servern "
 "unter dem Pfad, den Sie angeben."
 
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__user_can_see_changeset
+msgid "User Can See Changeset"
+msgstr ""
+
 #. module: auto_backup
 #: model:ir.model.fields,field_description:auto_backup.field_db_backup__sftp_user
 msgid "Username in the SFTP Server"
@@ -438,7 +470,7 @@ msgid "john"
 msgstr "john"
 
 #. module: auto_backup
-#: selection:db.backup,backup_format:0
+#: model:ir.model.fields.selection,name:auto_backup.selection__db_backup__backup_format__dump
 msgid "pg_dump custom format (without filestore)"
 msgstr ""
 
@@ -448,6 +480,6 @@ msgid "sftp.example.com"
 msgstr "sftp.example.com"
 
 #. module: auto_backup
-#: selection:db.backup,backup_format:0
+#: model:ir.model.fields.selection,name:auto_backup.selection__db_backup__backup_format__zip
 msgid "zip (includes filestore)"
 msgstr ""
diff --git a/auto_backup/i18n/el_GR.po b/auto_backup/i18n/el_GR.po
index d879121129c..023b12c9b1d 100644
--- a/auto_backup/i18n/el_GR.po
+++ b/auto_backup/i18n/el_GR.po
@@ -85,10 +85,20 @@ msgid "Basic backup configuration"
 msgstr ""
 
 #. module: auto_backup
-#: sql_constraint:db.backup:0
+#: model:ir.model.constraint,message:auto_backup.constraint_db_backup_name_unique
 msgid "Cannot duplicate a configuration."
 msgstr ""
 
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__changeset_change_ids
+msgid "Changeset Changes"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__changeset_ids
+msgid "Changesets"
+msgstr ""
+
 #. module: auto_backup
 #: model:ir.model.fields,help:auto_backup.field_db_backup__backup_format
 msgid "Choose the format for this backup."
@@ -100,23 +110,33 @@ msgid "Choose the storage method for this backup."
 msgstr ""
 
 #. module: auto_backup
-#: code:addons/auto_backup/models/db_backup.py:265
+#: code:addons/auto_backup/models/db_backup.py:0
 #, python-format
 msgid "Cleanup of old database backups failed."
 msgstr ""
 
 #. module: auto_backup
-#: code:addons/auto_backup/models/db_backup.py:137
+#: code:addons/auto_backup/models/db_backup.py:0
 #, python-format
 msgid "Connection Test Failed!"
 msgstr ""
 
 #. module: auto_backup
-#: code:addons/auto_backup/models/db_backup.py:132
+#: code:addons/auto_backup/models/db_backup.py:0
 #, python-format
 msgid "Connection Test Succeeded!"
 msgstr ""
 
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__count_pending_changeset_changes
+msgid "Count Pending Changeset Changes"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__count_pending_changesets
+msgid "Count Pending Changesets"
+msgstr ""
+
 #. module: auto_backup
 #: model:ir.model.fields,field_description:auto_backup.field_db_backup__create_uid
 msgid "Created by"
@@ -133,14 +153,14 @@ msgid "Database Backup"
 msgstr ""
 
 #. module: auto_backup
-#: code:addons/auto_backup/models/db_backup.py:219
+#: code:addons/auto_backup/models/db_backup.py:0
 #: model:mail.message.subtype,description:auto_backup.mail_message_subtype_failure
 #, python-format
 msgid "Database backup failed."
 msgstr ""
 
 #. module: auto_backup
-#: code:addons/auto_backup/models/db_backup.py:227
+#: code:addons/auto_backup/models/db_backup.py:0
 #: model:mail.message.subtype,description:auto_backup.mail_message_subtype_success
 #, python-format
 msgid "Database backup succeeded."
@@ -157,7 +177,7 @@ msgid "Display Name"
 msgstr ""
 
 #. module: auto_backup
-#: code:addons/auto_backup/models/db_backup.py:123
+#: code:addons/auto_backup/models/db_backup.py:0
 #, python-format
 msgid ""
 "Do not save backups on your filestore, or you will backup your backups too!"
@@ -204,7 +224,7 @@ msgid "Help"
 msgstr ""
 
 #. module: auto_backup
-#: sql_constraint:db.backup:0
+#: model:ir.model.constraint,message:auto_backup.constraint_db_backup_days_to_keep_positive
 msgid "I cannot remove backups from the future. Ask Doc for that."
 msgstr ""
 
@@ -213,18 +233,15 @@ msgstr ""
 msgid "ID"
 msgstr "ID"
 
-#. module: auto_backup
-#: model:ir.model.fields,help:auto_backup.field_db_backup__message_unread
-msgid "If checked new messages require your attention."
-msgstr ""
-
 #. module: auto_backup
 #: model:ir.model.fields,help:auto_backup.field_db_backup__message_needaction
+#: model:ir.model.fields,help:auto_backup.field_db_backup__message_unread
 msgid "If checked, new messages require your attention."
 msgstr ""
 
 #. module: auto_backup
 #: model:ir.model.fields,help:auto_backup.field_db_backup__message_has_error
+#: model:ir.model.fields,help:auto_backup.field_db_backup__message_has_sms_error
 msgid "If checked, some messages have a delivery error."
 msgstr ""
 
@@ -249,7 +266,7 @@ msgid "Last Updated on"
 msgstr "Τελευταία Ενημέρωση στις"
 
 #. module: auto_backup
-#: selection:db.backup,method:0
+#: model:ir.model.fields.selection,name:auto_backup.selection__db_backup__method__local
 msgid "Local disk"
 msgstr ""
 
@@ -285,7 +302,7 @@ msgstr ""
 
 #. module: auto_backup
 #: model:ir.model.fields,field_description:auto_backup.field_db_backup__message_has_error_counter
-msgid "Number of error"
+msgid "Number of errors"
 msgstr ""
 
 #. module: auto_backup
@@ -316,7 +333,7 @@ msgid "Private key location"
 msgstr ""
 
 #. module: auto_backup
-#: selection:db.backup,method:0
+#: model:ir.model.fields.selection,name:auto_backup.selection__db_backup__method__sftp
 msgid "Remote SFTP server"
 msgstr ""
 
@@ -340,6 +357,11 @@ msgstr ""
 msgid "SFTP Settings"
 msgstr ""
 
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__message_has_sms_error
+msgid "SMS Delivery error"
+msgstr ""
+
 #. module: auto_backup
 #: model_terms:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
 msgid "Search the action named 'Backup scheduler'."
@@ -351,6 +373,11 @@ msgid ""
 "Set the scheduler to active and fill in how often you want backups generated."
 msgstr ""
 
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__smart_search
+msgid "Smart Search"
+msgstr ""
+
 #. module: auto_backup
 #: model:ir.model.fields,help:auto_backup.field_db_backup__name
 msgid "Summary of this backup process"
@@ -403,6 +430,11 @@ msgid ""
 "you specify."
 msgstr ""
 
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__user_can_see_changeset
+msgid "User Can See Changeset"
+msgstr ""
+
 #. module: auto_backup
 #: model:ir.model.fields,field_description:auto_backup.field_db_backup__sftp_user
 msgid "Username in the SFTP Server"
@@ -429,7 +461,7 @@ msgid "john"
 msgstr ""
 
 #. module: auto_backup
-#: selection:db.backup,backup_format:0
+#: model:ir.model.fields.selection,name:auto_backup.selection__db_backup__backup_format__dump
 msgid "pg_dump custom format (without filestore)"
 msgstr ""
 
@@ -439,6 +471,6 @@ msgid "sftp.example.com"
 msgstr ""
 
 #. module: auto_backup
-#: selection:db.backup,backup_format:0
+#: model:ir.model.fields.selection,name:auto_backup.selection__db_backup__backup_format__zip
 msgid "zip (includes filestore)"
 msgstr ""
diff --git a/auto_backup/i18n/en_GB.po b/auto_backup/i18n/en_GB.po
index 02a8fecd08e..2fe2e18a782 100644
--- a/auto_backup/i18n/en_GB.po
+++ b/auto_backup/i18n/en_GB.po
@@ -85,10 +85,20 @@ msgid "Basic backup configuration"
 msgstr ""
 
 #. module: auto_backup
-#: sql_constraint:db.backup:0
+#: model:ir.model.constraint,message:auto_backup.constraint_db_backup_name_unique
 msgid "Cannot duplicate a configuration."
 msgstr ""
 
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__changeset_change_ids
+msgid "Changeset Changes"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__changeset_ids
+msgid "Changesets"
+msgstr ""
+
 #. module: auto_backup
 #: model:ir.model.fields,help:auto_backup.field_db_backup__backup_format
 msgid "Choose the format for this backup."
@@ -100,23 +110,33 @@ msgid "Choose the storage method for this backup."
 msgstr ""
 
 #. module: auto_backup
-#: code:addons/auto_backup/models/db_backup.py:265
+#: code:addons/auto_backup/models/db_backup.py:0
 #, python-format
 msgid "Cleanup of old database backups failed."
 msgstr ""
 
 #. module: auto_backup
-#: code:addons/auto_backup/models/db_backup.py:137
+#: code:addons/auto_backup/models/db_backup.py:0
 #, python-format
 msgid "Connection Test Failed!"
 msgstr ""
 
 #. module: auto_backup
-#: code:addons/auto_backup/models/db_backup.py:132
+#: code:addons/auto_backup/models/db_backup.py:0
 #, python-format
 msgid "Connection Test Succeeded!"
 msgstr ""
 
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__count_pending_changeset_changes
+msgid "Count Pending Changeset Changes"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__count_pending_changesets
+msgid "Count Pending Changesets"
+msgstr ""
+
 #. module: auto_backup
 #: model:ir.model.fields,field_description:auto_backup.field_db_backup__create_uid
 msgid "Created by"
@@ -133,14 +153,14 @@ msgid "Database Backup"
 msgstr ""
 
 #. module: auto_backup
-#: code:addons/auto_backup/models/db_backup.py:219
+#: code:addons/auto_backup/models/db_backup.py:0
 #: model:mail.message.subtype,description:auto_backup.mail_message_subtype_failure
 #, python-format
 msgid "Database backup failed."
 msgstr ""
 
 #. module: auto_backup
-#: code:addons/auto_backup/models/db_backup.py:227
+#: code:addons/auto_backup/models/db_backup.py:0
 #: model:mail.message.subtype,description:auto_backup.mail_message_subtype_success
 #, python-format
 msgid "Database backup succeeded."
@@ -157,7 +177,7 @@ msgid "Display Name"
 msgstr "Display Name"
 
 #. module: auto_backup
-#: code:addons/auto_backup/models/db_backup.py:123
+#: code:addons/auto_backup/models/db_backup.py:0
 #, python-format
 msgid ""
 "Do not save backups on your filestore, or you will backup your backups too!"
@@ -204,7 +224,7 @@ msgid "Help"
 msgstr ""
 
 #. module: auto_backup
-#: sql_constraint:db.backup:0
+#: model:ir.model.constraint,message:auto_backup.constraint_db_backup_days_to_keep_positive
 msgid "I cannot remove backups from the future. Ask Doc for that."
 msgstr ""
 
@@ -213,18 +233,15 @@ msgstr ""
 msgid "ID"
 msgstr "ID"
 
-#. module: auto_backup
-#: model:ir.model.fields,help:auto_backup.field_db_backup__message_unread
-msgid "If checked new messages require your attention."
-msgstr ""
-
 #. module: auto_backup
 #: model:ir.model.fields,help:auto_backup.field_db_backup__message_needaction
+#: model:ir.model.fields,help:auto_backup.field_db_backup__message_unread
 msgid "If checked, new messages require your attention."
 msgstr ""
 
 #. module: auto_backup
 #: model:ir.model.fields,help:auto_backup.field_db_backup__message_has_error
+#: model:ir.model.fields,help:auto_backup.field_db_backup__message_has_sms_error
 msgid "If checked, some messages have a delivery error."
 msgstr ""
 
@@ -249,7 +266,7 @@ msgid "Last Updated on"
 msgstr "Last Updated on"
 
 #. module: auto_backup
-#: selection:db.backup,method:0
+#: model:ir.model.fields.selection,name:auto_backup.selection__db_backup__method__local
 msgid "Local disk"
 msgstr ""
 
@@ -285,7 +302,7 @@ msgstr ""
 
 #. module: auto_backup
 #: model:ir.model.fields,field_description:auto_backup.field_db_backup__message_has_error_counter
-msgid "Number of error"
+msgid "Number of errors"
 msgstr ""
 
 #. module: auto_backup
@@ -316,7 +333,7 @@ msgid "Private key location"
 msgstr ""
 
 #. module: auto_backup
-#: selection:db.backup,method:0
+#: model:ir.model.fields.selection,name:auto_backup.selection__db_backup__method__sftp
 msgid "Remote SFTP server"
 msgstr ""
 
@@ -340,6 +357,11 @@ msgstr ""
 msgid "SFTP Settings"
 msgstr ""
 
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__message_has_sms_error
+msgid "SMS Delivery error"
+msgstr ""
+
 #. module: auto_backup
 #: model_terms:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
 msgid "Search the action named 'Backup scheduler'."
@@ -351,6 +373,11 @@ msgid ""
 "Set the scheduler to active and fill in how often you want backups generated."
 msgstr ""
 
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__smart_search
+msgid "Smart Search"
+msgstr ""
+
 #. module: auto_backup
 #: model:ir.model.fields,help:auto_backup.field_db_backup__name
 msgid "Summary of this backup process"
@@ -403,6 +430,11 @@ msgid ""
 "you specify."
 msgstr ""
 
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__user_can_see_changeset
+msgid "User Can See Changeset"
+msgstr ""
+
 #. module: auto_backup
 #: model:ir.model.fields,field_description:auto_backup.field_db_backup__sftp_user
 msgid "Username in the SFTP Server"
@@ -429,7 +461,7 @@ msgid "john"
 msgstr ""
 
 #. module: auto_backup
-#: selection:db.backup,backup_format:0
+#: model:ir.model.fields.selection,name:auto_backup.selection__db_backup__backup_format__dump
 msgid "pg_dump custom format (without filestore)"
 msgstr ""
 
@@ -439,6 +471,6 @@ msgid "sftp.example.com"
 msgstr ""
 
 #. module: auto_backup
-#: selection:db.backup,backup_format:0
+#: model:ir.model.fields.selection,name:auto_backup.selection__db_backup__backup_format__zip
 msgid "zip (includes filestore)"
 msgstr ""
diff --git a/auto_backup/i18n/es.po b/auto_backup/i18n/es.po
index 75b880ae84c..341327f5621 100644
--- a/auto_backup/i18n/es.po
+++ b/auto_backup/i18n/es.po
@@ -89,10 +89,20 @@ msgid "Basic backup configuration"
 msgstr "Configuración básica de la copia de seguridad"
 
 #. module: auto_backup
-#: sql_constraint:db.backup:0
+#: model:ir.model.constraint,message:auto_backup.constraint_db_backup_name_unique
 msgid "Cannot duplicate a configuration."
 msgstr "No se puede duplicar una configuración."
 
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__changeset_change_ids
+msgid "Changeset Changes"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__changeset_ids
+msgid "Changesets"
+msgstr ""
+
 #. module: auto_backup
 #: model:ir.model.fields,help:auto_backup.field_db_backup__backup_format
 #, fuzzy
@@ -105,7 +115,7 @@ msgid "Choose the storage method for this backup."
 msgstr "Elija el método de almacenamiento para esta copia de seguridad."
 
 #. module: auto_backup
-#: code:addons/auto_backup/models/db_backup.py:265
+#: code:addons/auto_backup/models/db_backup.py:0
 #, python-format
 msgid "Cleanup of old database backups failed."
 msgstr ""
@@ -113,17 +123,27 @@ msgstr ""
 "fallado."
 
 #. module: auto_backup
-#: code:addons/auto_backup/models/db_backup.py:137
+#: code:addons/auto_backup/models/db_backup.py:0
 #, python-format
 msgid "Connection Test Failed!"
 msgstr "Error en la prueba de conexión!"
 
 #. module: auto_backup
-#: code:addons/auto_backup/models/db_backup.py:132
+#: code:addons/auto_backup/models/db_backup.py:0
 #, python-format
 msgid "Connection Test Succeeded!"
 msgstr "Prueba de conexión correcta!"
 
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__count_pending_changeset_changes
+msgid "Count Pending Changeset Changes"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__count_pending_changesets
+msgid "Count Pending Changesets"
+msgstr ""
+
 #. module: auto_backup
 #: model:ir.model.fields,field_description:auto_backup.field_db_backup__create_uid
 msgid "Created by"
@@ -140,14 +160,14 @@ msgid "Database Backup"
 msgstr ""
 
 #. module: auto_backup
-#: code:addons/auto_backup/models/db_backup.py:219
+#: code:addons/auto_backup/models/db_backup.py:0
 #: model:mail.message.subtype,description:auto_backup.mail_message_subtype_failure
 #, python-format
 msgid "Database backup failed."
 msgstr "La copia de seguridad de la base de datos ha fallado."
 
 #. module: auto_backup
-#: code:addons/auto_backup/models/db_backup.py:227
+#: code:addons/auto_backup/models/db_backup.py:0
 #: model:mail.message.subtype,description:auto_backup.mail_message_subtype_success
 #, python-format
 msgid "Database backup succeeded."
@@ -164,7 +184,7 @@ msgid "Display Name"
 msgstr "Nombre a mostrar"
 
 #. module: auto_backup
-#: code:addons/auto_backup/models/db_backup.py:123
+#: code:addons/auto_backup/models/db_backup.py:0
 #, python-format
 msgid ""
 "Do not save backups on your filestore, or you will backup your backups too!"
@@ -213,7 +233,7 @@ msgid "Help"
 msgstr "Ayuda"
 
 #. module: auto_backup
-#: sql_constraint:db.backup:0
+#: model:ir.model.constraint,message:auto_backup.constraint_db_backup_days_to_keep_positive
 msgid "I cannot remove backups from the future. Ask Doc for that."
 msgstr ""
 "No puedo eliminar las copias de seguridad desde el futuro. Consulta la "
@@ -224,18 +244,15 @@ msgstr ""
 msgid "ID"
 msgstr "ID"
 
-#. module: auto_backup
-#: model:ir.model.fields,help:auto_backup.field_db_backup__message_unread
-msgid "If checked new messages require your attention."
-msgstr ""
-
 #. module: auto_backup
 #: model:ir.model.fields,help:auto_backup.field_db_backup__message_needaction
+#: model:ir.model.fields,help:auto_backup.field_db_backup__message_unread
 msgid "If checked, new messages require your attention."
 msgstr ""
 
 #. module: auto_backup
 #: model:ir.model.fields,help:auto_backup.field_db_backup__message_has_error
+#: model:ir.model.fields,help:auto_backup.field_db_backup__message_has_sms_error
 msgid "If checked, some messages have a delivery error."
 msgstr ""
 
@@ -260,7 +277,7 @@ msgid "Last Updated on"
 msgstr "Última actualización el"
 
 #. module: auto_backup
-#: selection:db.backup,method:0
+#: model:ir.model.fields.selection,name:auto_backup.selection__db_backup__method__local
 msgid "Local disk"
 msgstr "Disco local"
 
@@ -296,7 +313,7 @@ msgstr ""
 
 #. module: auto_backup
 #: model:ir.model.fields,field_description:auto_backup.field_db_backup__message_has_error_counter
-msgid "Number of error"
+msgid "Number of errors"
 msgstr ""
 
 #. module: auto_backup
@@ -329,7 +346,7 @@ msgid "Private key location"
 msgstr "Ubicación de la clave privada"
 
 #. module: auto_backup
-#: selection:db.backup,method:0
+#: model:ir.model.fields.selection,name:auto_backup.selection__db_backup__method__sftp
 msgid "Remote SFTP server"
 msgstr "Servidor remoto SFTP"
 
@@ -353,6 +370,11 @@ msgstr "Servidor SFTP"
 msgid "SFTP Settings"
 msgstr "Configuración de SFTP"
 
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__message_has_sms_error
+msgid "SMS Delivery error"
+msgstr ""
+
 #. module: auto_backup
 #: model_terms:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
 msgid "Search the action named 'Backup scheduler'."
@@ -366,6 +388,11 @@ msgstr ""
 "Ajuste el programador para activar y rellenar con qué frecuencia desea las "
 "copias de seguridad generadas."
 
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__smart_search
+msgid "Smart Search"
+msgstr ""
+
 #. module: auto_backup
 #: model:ir.model.fields,help:auto_backup.field_db_backup__name
 msgid "Summary of this backup process"
@@ -426,6 +453,11 @@ msgstr ""
 "Utilizar SFTP con precaución! Escribe archivos a servidores externos en la "
 "ruta que especifique."
 
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__user_can_see_changeset
+msgid "User Can See Changeset"
+msgstr ""
+
 #. module: auto_backup
 #: model:ir.model.fields,field_description:auto_backup.field_db_backup__sftp_user
 msgid "Username in the SFTP Server"
@@ -452,7 +484,7 @@ msgid "john"
 msgstr "john"
 
 #. module: auto_backup
-#: selection:db.backup,backup_format:0
+#: model:ir.model.fields.selection,name:auto_backup.selection__db_backup__backup_format__dump
 msgid "pg_dump custom format (without filestore)"
 msgstr ""
 
@@ -462,6 +494,6 @@ msgid "sftp.example.com"
 msgstr "sftp.example.com"
 
 #. module: auto_backup
-#: selection:db.backup,backup_format:0
+#: model:ir.model.fields.selection,name:auto_backup.selection__db_backup__backup_format__zip
 msgid "zip (includes filestore)"
 msgstr ""
diff --git a/auto_backup/i18n/es_AR.po b/auto_backup/i18n/es_AR.po
index 66e042eb2aa..a1baa8ac917 100644
--- a/auto_backup/i18n/es_AR.po
+++ b/auto_backup/i18n/es_AR.po
@@ -85,10 +85,20 @@ msgid "Basic backup configuration"
 msgstr ""
 
 #. module: auto_backup
-#: sql_constraint:db.backup:0
+#: model:ir.model.constraint,message:auto_backup.constraint_db_backup_name_unique
 msgid "Cannot duplicate a configuration."
 msgstr ""
 
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__changeset_change_ids
+msgid "Changeset Changes"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__changeset_ids
+msgid "Changesets"
+msgstr ""
+
 #. module: auto_backup
 #: model:ir.model.fields,help:auto_backup.field_db_backup__backup_format
 msgid "Choose the format for this backup."
@@ -100,23 +110,33 @@ msgid "Choose the storage method for this backup."
 msgstr ""
 
 #. module: auto_backup
-#: code:addons/auto_backup/models/db_backup.py:265
+#: code:addons/auto_backup/models/db_backup.py:0
 #, python-format
 msgid "Cleanup of old database backups failed."
 msgstr ""
 
 #. module: auto_backup
-#: code:addons/auto_backup/models/db_backup.py:137
+#: code:addons/auto_backup/models/db_backup.py:0
 #, python-format
 msgid "Connection Test Failed!"
 msgstr ""
 
 #. module: auto_backup
-#: code:addons/auto_backup/models/db_backup.py:132
+#: code:addons/auto_backup/models/db_backup.py:0
 #, python-format
 msgid "Connection Test Succeeded!"
 msgstr ""
 
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__count_pending_changeset_changes
+msgid "Count Pending Changeset Changes"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__count_pending_changesets
+msgid "Count Pending Changesets"
+msgstr ""
+
 #. module: auto_backup
 #: model:ir.model.fields,field_description:auto_backup.field_db_backup__create_uid
 msgid "Created by"
@@ -133,14 +153,14 @@ msgid "Database Backup"
 msgstr ""
 
 #. module: auto_backup
-#: code:addons/auto_backup/models/db_backup.py:219
+#: code:addons/auto_backup/models/db_backup.py:0
 #: model:mail.message.subtype,description:auto_backup.mail_message_subtype_failure
 #, python-format
 msgid "Database backup failed."
 msgstr ""
 
 #. module: auto_backup
-#: code:addons/auto_backup/models/db_backup.py:227
+#: code:addons/auto_backup/models/db_backup.py:0
 #: model:mail.message.subtype,description:auto_backup.mail_message_subtype_success
 #, python-format
 msgid "Database backup succeeded."
@@ -157,7 +177,7 @@ msgid "Display Name"
 msgstr "Mostrar Nombre"
 
 #. module: auto_backup
-#: code:addons/auto_backup/models/db_backup.py:123
+#: code:addons/auto_backup/models/db_backup.py:0
 #, python-format
 msgid ""
 "Do not save backups on your filestore, or you will backup your backups too!"
@@ -204,7 +224,7 @@ msgid "Help"
 msgstr ""
 
 #. module: auto_backup
-#: sql_constraint:db.backup:0
+#: model:ir.model.constraint,message:auto_backup.constraint_db_backup_days_to_keep_positive
 msgid "I cannot remove backups from the future. Ask Doc for that."
 msgstr ""
 
@@ -213,18 +233,15 @@ msgstr ""
 msgid "ID"
 msgstr "ID"
 
-#. module: auto_backup
-#: model:ir.model.fields,help:auto_backup.field_db_backup__message_unread
-msgid "If checked new messages require your attention."
-msgstr ""
-
 #. module: auto_backup
 #: model:ir.model.fields,help:auto_backup.field_db_backup__message_needaction
+#: model:ir.model.fields,help:auto_backup.field_db_backup__message_unread
 msgid "If checked, new messages require your attention."
 msgstr ""
 
 #. module: auto_backup
 #: model:ir.model.fields,help:auto_backup.field_db_backup__message_has_error
+#: model:ir.model.fields,help:auto_backup.field_db_backup__message_has_sms_error
 msgid "If checked, some messages have a delivery error."
 msgstr ""
 
@@ -249,7 +266,7 @@ msgid "Last Updated on"
 msgstr "Última actualización el"
 
 #. module: auto_backup
-#: selection:db.backup,method:0
+#: model:ir.model.fields.selection,name:auto_backup.selection__db_backup__method__local
 msgid "Local disk"
 msgstr ""
 
@@ -285,7 +302,7 @@ msgstr ""
 
 #. module: auto_backup
 #: model:ir.model.fields,field_description:auto_backup.field_db_backup__message_has_error_counter
-msgid "Number of error"
+msgid "Number of errors"
 msgstr ""
 
 #. module: auto_backup
@@ -316,7 +333,7 @@ msgid "Private key location"
 msgstr ""
 
 #. module: auto_backup
-#: selection:db.backup,method:0
+#: model:ir.model.fields.selection,name:auto_backup.selection__db_backup__method__sftp
 msgid "Remote SFTP server"
 msgstr ""
 
@@ -340,6 +357,11 @@ msgstr ""
 msgid "SFTP Settings"
 msgstr ""
 
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__message_has_sms_error
+msgid "SMS Delivery error"
+msgstr ""
+
 #. module: auto_backup
 #: model_terms:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
 msgid "Search the action named 'Backup scheduler'."
@@ -351,6 +373,11 @@ msgid ""
 "Set the scheduler to active and fill in how often you want backups generated."
 msgstr ""
 
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__smart_search
+msgid "Smart Search"
+msgstr ""
+
 #. module: auto_backup
 #: model:ir.model.fields,help:auto_backup.field_db_backup__name
 msgid "Summary of this backup process"
@@ -403,6 +430,11 @@ msgid ""
 "you specify."
 msgstr ""
 
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__user_can_see_changeset
+msgid "User Can See Changeset"
+msgstr ""
+
 #. module: auto_backup
 #: model:ir.model.fields,field_description:auto_backup.field_db_backup__sftp_user
 msgid "Username in the SFTP Server"
@@ -429,7 +461,7 @@ msgid "john"
 msgstr ""
 
 #. module: auto_backup
-#: selection:db.backup,backup_format:0
+#: model:ir.model.fields.selection,name:auto_backup.selection__db_backup__backup_format__dump
 msgid "pg_dump custom format (without filestore)"
 msgstr ""
 
@@ -439,6 +471,6 @@ msgid "sftp.example.com"
 msgstr ""
 
 #. module: auto_backup
-#: selection:db.backup,backup_format:0
+#: model:ir.model.fields.selection,name:auto_backup.selection__db_backup__backup_format__zip
 msgid "zip (includes filestore)"
 msgstr ""
diff --git a/auto_backup/i18n/es_CL.po b/auto_backup/i18n/es_CL.po
index a838fbf9d06..d61685e2d77 100644
--- a/auto_backup/i18n/es_CL.po
+++ b/auto_backup/i18n/es_CL.po
@@ -85,10 +85,20 @@ msgid "Basic backup configuration"
 msgstr ""
 
 #. module: auto_backup
-#: sql_constraint:db.backup:0
+#: model:ir.model.constraint,message:auto_backup.constraint_db_backup_name_unique
 msgid "Cannot duplicate a configuration."
 msgstr ""
 
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__changeset_change_ids
+msgid "Changeset Changes"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__changeset_ids
+msgid "Changesets"
+msgstr ""
+
 #. module: auto_backup
 #: model:ir.model.fields,help:auto_backup.field_db_backup__backup_format
 msgid "Choose the format for this backup."
@@ -100,23 +110,33 @@ msgid "Choose the storage method for this backup."
 msgstr ""
 
 #. module: auto_backup
-#: code:addons/auto_backup/models/db_backup.py:265
+#: code:addons/auto_backup/models/db_backup.py:0
 #, python-format
 msgid "Cleanup of old database backups failed."
 msgstr ""
 
 #. module: auto_backup
-#: code:addons/auto_backup/models/db_backup.py:137
+#: code:addons/auto_backup/models/db_backup.py:0
 #, python-format
 msgid "Connection Test Failed!"
 msgstr ""
 
 #. module: auto_backup
-#: code:addons/auto_backup/models/db_backup.py:132
+#: code:addons/auto_backup/models/db_backup.py:0
 #, python-format
 msgid "Connection Test Succeeded!"
 msgstr ""
 
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__count_pending_changeset_changes
+msgid "Count Pending Changeset Changes"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__count_pending_changesets
+msgid "Count Pending Changesets"
+msgstr ""
+
 #. module: auto_backup
 #: model:ir.model.fields,field_description:auto_backup.field_db_backup__create_uid
 msgid "Created by"
@@ -133,14 +153,14 @@ msgid "Database Backup"
 msgstr ""
 
 #. module: auto_backup
-#: code:addons/auto_backup/models/db_backup.py:219
+#: code:addons/auto_backup/models/db_backup.py:0
 #: model:mail.message.subtype,description:auto_backup.mail_message_subtype_failure
 #, python-format
 msgid "Database backup failed."
 msgstr ""
 
 #. module: auto_backup
-#: code:addons/auto_backup/models/db_backup.py:227
+#: code:addons/auto_backup/models/db_backup.py:0
 #: model:mail.message.subtype,description:auto_backup.mail_message_subtype_success
 #, python-format
 msgid "Database backup succeeded."
@@ -157,7 +177,7 @@ msgid "Display Name"
 msgstr "Nombre mostrado"
 
 #. module: auto_backup
-#: code:addons/auto_backup/models/db_backup.py:123
+#: code:addons/auto_backup/models/db_backup.py:0
 #, python-format
 msgid ""
 "Do not save backups on your filestore, or you will backup your backups too!"
@@ -204,7 +224,7 @@ msgid "Help"
 msgstr ""
 
 #. module: auto_backup
-#: sql_constraint:db.backup:0
+#: model:ir.model.constraint,message:auto_backup.constraint_db_backup_days_to_keep_positive
 msgid "I cannot remove backups from the future. Ask Doc for that."
 msgstr ""
 
@@ -213,18 +233,15 @@ msgstr ""
 msgid "ID"
 msgstr "ID (identificación)"
 
-#. module: auto_backup
-#: model:ir.model.fields,help:auto_backup.field_db_backup__message_unread
-msgid "If checked new messages require your attention."
-msgstr ""
-
 #. module: auto_backup
 #: model:ir.model.fields,help:auto_backup.field_db_backup__message_needaction
+#: model:ir.model.fields,help:auto_backup.field_db_backup__message_unread
 msgid "If checked, new messages require your attention."
 msgstr ""
 
 #. module: auto_backup
 #: model:ir.model.fields,help:auto_backup.field_db_backup__message_has_error
+#: model:ir.model.fields,help:auto_backup.field_db_backup__message_has_sms_error
 msgid "If checked, some messages have a delivery error."
 msgstr ""
 
@@ -249,7 +266,7 @@ msgid "Last Updated on"
 msgstr "Última actualización en"
 
 #. module: auto_backup
-#: selection:db.backup,method:0
+#: model:ir.model.fields.selection,name:auto_backup.selection__db_backup__method__local
 msgid "Local disk"
 msgstr ""
 
@@ -285,7 +302,7 @@ msgstr ""
 
 #. module: auto_backup
 #: model:ir.model.fields,field_description:auto_backup.field_db_backup__message_has_error_counter
-msgid "Number of error"
+msgid "Number of errors"
 msgstr ""
 
 #. module: auto_backup
@@ -316,7 +333,7 @@ msgid "Private key location"
 msgstr ""
 
 #. module: auto_backup
-#: selection:db.backup,method:0
+#: model:ir.model.fields.selection,name:auto_backup.selection__db_backup__method__sftp
 msgid "Remote SFTP server"
 msgstr ""
 
@@ -340,6 +357,11 @@ msgstr ""
 msgid "SFTP Settings"
 msgstr ""
 
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__message_has_sms_error
+msgid "SMS Delivery error"
+msgstr ""
+
 #. module: auto_backup
 #: model_terms:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
 msgid "Search the action named 'Backup scheduler'."
@@ -351,6 +373,11 @@ msgid ""
 "Set the scheduler to active and fill in how often you want backups generated."
 msgstr ""
 
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__smart_search
+msgid "Smart Search"
+msgstr ""
+
 #. module: auto_backup
 #: model:ir.model.fields,help:auto_backup.field_db_backup__name
 msgid "Summary of this backup process"
@@ -403,6 +430,11 @@ msgid ""
 "you specify."
 msgstr ""
 
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__user_can_see_changeset
+msgid "User Can See Changeset"
+msgstr ""
+
 #. module: auto_backup
 #: model:ir.model.fields,field_description:auto_backup.field_db_backup__sftp_user
 msgid "Username in the SFTP Server"
@@ -429,7 +461,7 @@ msgid "john"
 msgstr ""
 
 #. module: auto_backup
-#: selection:db.backup,backup_format:0
+#: model:ir.model.fields.selection,name:auto_backup.selection__db_backup__backup_format__dump
 msgid "pg_dump custom format (without filestore)"
 msgstr ""
 
@@ -439,6 +471,6 @@ msgid "sftp.example.com"
 msgstr ""
 
 #. module: auto_backup
-#: selection:db.backup,backup_format:0
+#: model:ir.model.fields.selection,name:auto_backup.selection__db_backup__backup_format__zip
 msgid "zip (includes filestore)"
 msgstr ""
diff --git a/auto_backup/i18n/es_CO.po b/auto_backup/i18n/es_CO.po
index 12b2790ce27..0f75464c2b0 100644
--- a/auto_backup/i18n/es_CO.po
+++ b/auto_backup/i18n/es_CO.po
@@ -85,10 +85,20 @@ msgid "Basic backup configuration"
 msgstr ""
 
 #. module: auto_backup
-#: sql_constraint:db.backup:0
+#: model:ir.model.constraint,message:auto_backup.constraint_db_backup_name_unique
 msgid "Cannot duplicate a configuration."
 msgstr ""
 
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__changeset_change_ids
+msgid "Changeset Changes"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__changeset_ids
+msgid "Changesets"
+msgstr ""
+
 #. module: auto_backup
 #: model:ir.model.fields,help:auto_backup.field_db_backup__backup_format
 msgid "Choose the format for this backup."
@@ -100,23 +110,33 @@ msgid "Choose the storage method for this backup."
 msgstr ""
 
 #. module: auto_backup
-#: code:addons/auto_backup/models/db_backup.py:265
+#: code:addons/auto_backup/models/db_backup.py:0
 #, python-format
 msgid "Cleanup of old database backups failed."
 msgstr ""
 
 #. module: auto_backup
-#: code:addons/auto_backup/models/db_backup.py:137
+#: code:addons/auto_backup/models/db_backup.py:0
 #, python-format
 msgid "Connection Test Failed!"
 msgstr ""
 
 #. module: auto_backup
-#: code:addons/auto_backup/models/db_backup.py:132
+#: code:addons/auto_backup/models/db_backup.py:0
 #, python-format
 msgid "Connection Test Succeeded!"
 msgstr ""
 
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__count_pending_changeset_changes
+msgid "Count Pending Changeset Changes"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__count_pending_changesets
+msgid "Count Pending Changesets"
+msgstr ""
+
 #. module: auto_backup
 #: model:ir.model.fields,field_description:auto_backup.field_db_backup__create_uid
 msgid "Created by"
@@ -133,14 +153,14 @@ msgid "Database Backup"
 msgstr ""
 
 #. module: auto_backup
-#: code:addons/auto_backup/models/db_backup.py:219
+#: code:addons/auto_backup/models/db_backup.py:0
 #: model:mail.message.subtype,description:auto_backup.mail_message_subtype_failure
 #, python-format
 msgid "Database backup failed."
 msgstr ""
 
 #. module: auto_backup
-#: code:addons/auto_backup/models/db_backup.py:227
+#: code:addons/auto_backup/models/db_backup.py:0
 #: model:mail.message.subtype,description:auto_backup.mail_message_subtype_success
 #, python-format
 msgid "Database backup succeeded."
@@ -157,7 +177,7 @@ msgid "Display Name"
 msgstr "Nombre Público"
 
 #. module: auto_backup
-#: code:addons/auto_backup/models/db_backup.py:123
+#: code:addons/auto_backup/models/db_backup.py:0
 #, python-format
 msgid ""
 "Do not save backups on your filestore, or you will backup your backups too!"
@@ -204,7 +224,7 @@ msgid "Help"
 msgstr ""
 
 #. module: auto_backup
-#: sql_constraint:db.backup:0
+#: model:ir.model.constraint,message:auto_backup.constraint_db_backup_days_to_keep_positive
 msgid "I cannot remove backups from the future. Ask Doc for that."
 msgstr ""
 
@@ -213,18 +233,15 @@ msgstr ""
 msgid "ID"
 msgstr "ID"
 
-#. module: auto_backup
-#: model:ir.model.fields,help:auto_backup.field_db_backup__message_unread
-msgid "If checked new messages require your attention."
-msgstr ""
-
 #. module: auto_backup
 #: model:ir.model.fields,help:auto_backup.field_db_backup__message_needaction
+#: model:ir.model.fields,help:auto_backup.field_db_backup__message_unread
 msgid "If checked, new messages require your attention."
 msgstr ""
 
 #. module: auto_backup
 #: model:ir.model.fields,help:auto_backup.field_db_backup__message_has_error
+#: model:ir.model.fields,help:auto_backup.field_db_backup__message_has_sms_error
 msgid "If checked, some messages have a delivery error."
 msgstr ""
 
@@ -249,7 +266,7 @@ msgid "Last Updated on"
 msgstr "Actualizado"
 
 #. module: auto_backup
-#: selection:db.backup,method:0
+#: model:ir.model.fields.selection,name:auto_backup.selection__db_backup__method__local
 msgid "Local disk"
 msgstr ""
 
@@ -285,7 +302,7 @@ msgstr ""
 
 #. module: auto_backup
 #: model:ir.model.fields,field_description:auto_backup.field_db_backup__message_has_error_counter
-msgid "Number of error"
+msgid "Number of errors"
 msgstr ""
 
 #. module: auto_backup
@@ -316,7 +333,7 @@ msgid "Private key location"
 msgstr ""
 
 #. module: auto_backup
-#: selection:db.backup,method:0
+#: model:ir.model.fields.selection,name:auto_backup.selection__db_backup__method__sftp
 msgid "Remote SFTP server"
 msgstr ""
 
@@ -340,6 +357,11 @@ msgstr ""
 msgid "SFTP Settings"
 msgstr ""
 
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__message_has_sms_error
+msgid "SMS Delivery error"
+msgstr ""
+
 #. module: auto_backup
 #: model_terms:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
 msgid "Search the action named 'Backup scheduler'."
@@ -351,6 +373,11 @@ msgid ""
 "Set the scheduler to active and fill in how often you want backups generated."
 msgstr ""
 
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__smart_search
+msgid "Smart Search"
+msgstr ""
+
 #. module: auto_backup
 #: model:ir.model.fields,help:auto_backup.field_db_backup__name
 msgid "Summary of this backup process"
@@ -403,6 +430,11 @@ msgid ""
 "you specify."
 msgstr ""
 
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__user_can_see_changeset
+msgid "User Can See Changeset"
+msgstr ""
+
 #. module: auto_backup
 #: model:ir.model.fields,field_description:auto_backup.field_db_backup__sftp_user
 msgid "Username in the SFTP Server"
@@ -429,7 +461,7 @@ msgid "john"
 msgstr ""
 
 #. module: auto_backup
-#: selection:db.backup,backup_format:0
+#: model:ir.model.fields.selection,name:auto_backup.selection__db_backup__backup_format__dump
 msgid "pg_dump custom format (without filestore)"
 msgstr ""
 
@@ -439,6 +471,6 @@ msgid "sftp.example.com"
 msgstr ""
 
 #. module: auto_backup
-#: selection:db.backup,backup_format:0
+#: model:ir.model.fields.selection,name:auto_backup.selection__db_backup__backup_format__zip
 msgid "zip (includes filestore)"
 msgstr ""
diff --git a/auto_backup/i18n/es_CR.po b/auto_backup/i18n/es_CR.po
index eb096650d39..6741ad5feeb 100644
--- a/auto_backup/i18n/es_CR.po
+++ b/auto_backup/i18n/es_CR.po
@@ -85,10 +85,20 @@ msgid "Basic backup configuration"
 msgstr ""
 
 #. module: auto_backup
-#: sql_constraint:db.backup:0
+#: model:ir.model.constraint,message:auto_backup.constraint_db_backup_name_unique
 msgid "Cannot duplicate a configuration."
 msgstr ""
 
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__changeset_change_ids
+msgid "Changeset Changes"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__changeset_ids
+msgid "Changesets"
+msgstr ""
+
 #. module: auto_backup
 #: model:ir.model.fields,help:auto_backup.field_db_backup__backup_format
 msgid "Choose the format for this backup."
@@ -100,23 +110,33 @@ msgid "Choose the storage method for this backup."
 msgstr ""
 
 #. module: auto_backup
-#: code:addons/auto_backup/models/db_backup.py:265
+#: code:addons/auto_backup/models/db_backup.py:0
 #, python-format
 msgid "Cleanup of old database backups failed."
 msgstr ""
 
 #. module: auto_backup
-#: code:addons/auto_backup/models/db_backup.py:137
+#: code:addons/auto_backup/models/db_backup.py:0
 #, python-format
 msgid "Connection Test Failed!"
 msgstr ""
 
 #. module: auto_backup
-#: code:addons/auto_backup/models/db_backup.py:132
+#: code:addons/auto_backup/models/db_backup.py:0
 #, python-format
 msgid "Connection Test Succeeded!"
 msgstr ""
 
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__count_pending_changeset_changes
+msgid "Count Pending Changeset Changes"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__count_pending_changesets
+msgid "Count Pending Changesets"
+msgstr ""
+
 #. module: auto_backup
 #: model:ir.model.fields,field_description:auto_backup.field_db_backup__create_uid
 msgid "Created by"
@@ -133,14 +153,14 @@ msgid "Database Backup"
 msgstr ""
 
 #. module: auto_backup
-#: code:addons/auto_backup/models/db_backup.py:219
+#: code:addons/auto_backup/models/db_backup.py:0
 #: model:mail.message.subtype,description:auto_backup.mail_message_subtype_failure
 #, python-format
 msgid "Database backup failed."
 msgstr ""
 
 #. module: auto_backup
-#: code:addons/auto_backup/models/db_backup.py:227
+#: code:addons/auto_backup/models/db_backup.py:0
 #: model:mail.message.subtype,description:auto_backup.mail_message_subtype_success
 #, python-format
 msgid "Database backup succeeded."
@@ -157,7 +177,7 @@ msgid "Display Name"
 msgstr ""
 
 #. module: auto_backup
-#: code:addons/auto_backup/models/db_backup.py:123
+#: code:addons/auto_backup/models/db_backup.py:0
 #, python-format
 msgid ""
 "Do not save backups on your filestore, or you will backup your backups too!"
@@ -204,7 +224,7 @@ msgid "Help"
 msgstr ""
 
 #. module: auto_backup
-#: sql_constraint:db.backup:0
+#: model:ir.model.constraint,message:auto_backup.constraint_db_backup_days_to_keep_positive
 msgid "I cannot remove backups from the future. Ask Doc for that."
 msgstr ""
 
@@ -213,18 +233,15 @@ msgstr ""
 msgid "ID"
 msgstr "ID"
 
-#. module: auto_backup
-#: model:ir.model.fields,help:auto_backup.field_db_backup__message_unread
-msgid "If checked new messages require your attention."
-msgstr ""
-
 #. module: auto_backup
 #: model:ir.model.fields,help:auto_backup.field_db_backup__message_needaction
+#: model:ir.model.fields,help:auto_backup.field_db_backup__message_unread
 msgid "If checked, new messages require your attention."
 msgstr ""
 
 #. module: auto_backup
 #: model:ir.model.fields,help:auto_backup.field_db_backup__message_has_error
+#: model:ir.model.fields,help:auto_backup.field_db_backup__message_has_sms_error
 msgid "If checked, some messages have a delivery error."
 msgstr ""
 
@@ -249,7 +266,7 @@ msgid "Last Updated on"
 msgstr "Ultima actualización en"
 
 #. module: auto_backup
-#: selection:db.backup,method:0
+#: model:ir.model.fields.selection,name:auto_backup.selection__db_backup__method__local
 msgid "Local disk"
 msgstr ""
 
@@ -285,7 +302,7 @@ msgstr ""
 
 #. module: auto_backup
 #: model:ir.model.fields,field_description:auto_backup.field_db_backup__message_has_error_counter
-msgid "Number of error"
+msgid "Number of errors"
 msgstr ""
 
 #. module: auto_backup
@@ -316,7 +333,7 @@ msgid "Private key location"
 msgstr ""
 
 #. module: auto_backup
-#: selection:db.backup,method:0
+#: model:ir.model.fields.selection,name:auto_backup.selection__db_backup__method__sftp
 msgid "Remote SFTP server"
 msgstr ""
 
@@ -340,6 +357,11 @@ msgstr ""
 msgid "SFTP Settings"
 msgstr ""
 
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__message_has_sms_error
+msgid "SMS Delivery error"
+msgstr ""
+
 #. module: auto_backup
 #: model_terms:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
 msgid "Search the action named 'Backup scheduler'."
@@ -351,6 +373,11 @@ msgid ""
 "Set the scheduler to active and fill in how often you want backups generated."
 msgstr ""
 
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__smart_search
+msgid "Smart Search"
+msgstr ""
+
 #. module: auto_backup
 #: model:ir.model.fields,help:auto_backup.field_db_backup__name
 msgid "Summary of this backup process"
@@ -403,6 +430,11 @@ msgid ""
 "you specify."
 msgstr ""
 
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__user_can_see_changeset
+msgid "User Can See Changeset"
+msgstr ""
+
 #. module: auto_backup
 #: model:ir.model.fields,field_description:auto_backup.field_db_backup__sftp_user
 msgid "Username in the SFTP Server"
@@ -429,7 +461,7 @@ msgid "john"
 msgstr ""
 
 #. module: auto_backup
-#: selection:db.backup,backup_format:0
+#: model:ir.model.fields.selection,name:auto_backup.selection__db_backup__backup_format__dump
 msgid "pg_dump custom format (without filestore)"
 msgstr ""
 
@@ -439,6 +471,6 @@ msgid "sftp.example.com"
 msgstr ""
 
 #. module: auto_backup
-#: selection:db.backup,backup_format:0
+#: model:ir.model.fields.selection,name:auto_backup.selection__db_backup__backup_format__zip
 msgid "zip (includes filestore)"
 msgstr ""
diff --git a/auto_backup/i18n/es_DO.po b/auto_backup/i18n/es_DO.po
index ea67ad899be..6990be4d15b 100644
--- a/auto_backup/i18n/es_DO.po
+++ b/auto_backup/i18n/es_DO.po
@@ -85,10 +85,20 @@ msgid "Basic backup configuration"
 msgstr ""
 
 #. module: auto_backup
-#: sql_constraint:db.backup:0
+#: model:ir.model.constraint,message:auto_backup.constraint_db_backup_name_unique
 msgid "Cannot duplicate a configuration."
 msgstr ""
 
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__changeset_change_ids
+msgid "Changeset Changes"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__changeset_ids
+msgid "Changesets"
+msgstr ""
+
 #. module: auto_backup
 #: model:ir.model.fields,help:auto_backup.field_db_backup__backup_format
 msgid "Choose the format for this backup."
@@ -100,23 +110,33 @@ msgid "Choose the storage method for this backup."
 msgstr ""
 
 #. module: auto_backup
-#: code:addons/auto_backup/models/db_backup.py:265
+#: code:addons/auto_backup/models/db_backup.py:0
 #, python-format
 msgid "Cleanup of old database backups failed."
 msgstr ""
 
 #. module: auto_backup
-#: code:addons/auto_backup/models/db_backup.py:137
+#: code:addons/auto_backup/models/db_backup.py:0
 #, python-format
 msgid "Connection Test Failed!"
 msgstr ""
 
 #. module: auto_backup
-#: code:addons/auto_backup/models/db_backup.py:132
+#: code:addons/auto_backup/models/db_backup.py:0
 #, python-format
 msgid "Connection Test Succeeded!"
 msgstr ""
 
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__count_pending_changeset_changes
+msgid "Count Pending Changeset Changes"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__count_pending_changesets
+msgid "Count Pending Changesets"
+msgstr ""
+
 #. module: auto_backup
 #: model:ir.model.fields,field_description:auto_backup.field_db_backup__create_uid
 msgid "Created by"
@@ -133,14 +153,14 @@ msgid "Database Backup"
 msgstr ""
 
 #. module: auto_backup
-#: code:addons/auto_backup/models/db_backup.py:219
+#: code:addons/auto_backup/models/db_backup.py:0
 #: model:mail.message.subtype,description:auto_backup.mail_message_subtype_failure
 #, python-format
 msgid "Database backup failed."
 msgstr ""
 
 #. module: auto_backup
-#: code:addons/auto_backup/models/db_backup.py:227
+#: code:addons/auto_backup/models/db_backup.py:0
 #: model:mail.message.subtype,description:auto_backup.mail_message_subtype_success
 #, python-format
 msgid "Database backup succeeded."
@@ -157,7 +177,7 @@ msgid "Display Name"
 msgstr "Nombre mostrado"
 
 #. module: auto_backup
-#: code:addons/auto_backup/models/db_backup.py:123
+#: code:addons/auto_backup/models/db_backup.py:0
 #, python-format
 msgid ""
 "Do not save backups on your filestore, or you will backup your backups too!"
@@ -204,7 +224,7 @@ msgid "Help"
 msgstr ""
 
 #. module: auto_backup
-#: sql_constraint:db.backup:0
+#: model:ir.model.constraint,message:auto_backup.constraint_db_backup_days_to_keep_positive
 msgid "I cannot remove backups from the future. Ask Doc for that."
 msgstr ""
 
@@ -213,18 +233,15 @@ msgstr ""
 msgid "ID"
 msgstr "ID (identificación)"
 
-#. module: auto_backup
-#: model:ir.model.fields,help:auto_backup.field_db_backup__message_unread
-msgid "If checked new messages require your attention."
-msgstr ""
-
 #. module: auto_backup
 #: model:ir.model.fields,help:auto_backup.field_db_backup__message_needaction
+#: model:ir.model.fields,help:auto_backup.field_db_backup__message_unread
 msgid "If checked, new messages require your attention."
 msgstr ""
 
 #. module: auto_backup
 #: model:ir.model.fields,help:auto_backup.field_db_backup__message_has_error
+#: model:ir.model.fields,help:auto_backup.field_db_backup__message_has_sms_error
 msgid "If checked, some messages have a delivery error."
 msgstr ""
 
@@ -249,7 +266,7 @@ msgid "Last Updated on"
 msgstr "Última actualización en"
 
 #. module: auto_backup
-#: selection:db.backup,method:0
+#: model:ir.model.fields.selection,name:auto_backup.selection__db_backup__method__local
 msgid "Local disk"
 msgstr ""
 
@@ -285,7 +302,7 @@ msgstr ""
 
 #. module: auto_backup
 #: model:ir.model.fields,field_description:auto_backup.field_db_backup__message_has_error_counter
-msgid "Number of error"
+msgid "Number of errors"
 msgstr ""
 
 #. module: auto_backup
@@ -316,7 +333,7 @@ msgid "Private key location"
 msgstr ""
 
 #. module: auto_backup
-#: selection:db.backup,method:0
+#: model:ir.model.fields.selection,name:auto_backup.selection__db_backup__method__sftp
 msgid "Remote SFTP server"
 msgstr ""
 
@@ -340,6 +357,11 @@ msgstr ""
 msgid "SFTP Settings"
 msgstr ""
 
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__message_has_sms_error
+msgid "SMS Delivery error"
+msgstr ""
+
 #. module: auto_backup
 #: model_terms:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
 msgid "Search the action named 'Backup scheduler'."
@@ -351,6 +373,11 @@ msgid ""
 "Set the scheduler to active and fill in how often you want backups generated."
 msgstr ""
 
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__smart_search
+msgid "Smart Search"
+msgstr ""
+
 #. module: auto_backup
 #: model:ir.model.fields,help:auto_backup.field_db_backup__name
 msgid "Summary of this backup process"
@@ -403,6 +430,11 @@ msgid ""
 "you specify."
 msgstr ""
 
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__user_can_see_changeset
+msgid "User Can See Changeset"
+msgstr ""
+
 #. module: auto_backup
 #: model:ir.model.fields,field_description:auto_backup.field_db_backup__sftp_user
 msgid "Username in the SFTP Server"
@@ -429,7 +461,7 @@ msgid "john"
 msgstr ""
 
 #. module: auto_backup
-#: selection:db.backup,backup_format:0
+#: model:ir.model.fields.selection,name:auto_backup.selection__db_backup__backup_format__dump
 msgid "pg_dump custom format (without filestore)"
 msgstr ""
 
@@ -439,6 +471,6 @@ msgid "sftp.example.com"
 msgstr ""
 
 #. module: auto_backup
-#: selection:db.backup,backup_format:0
+#: model:ir.model.fields.selection,name:auto_backup.selection__db_backup__backup_format__zip
 msgid "zip (includes filestore)"
 msgstr ""
diff --git a/auto_backup/i18n/es_EC.po b/auto_backup/i18n/es_EC.po
index 611448427f8..29402992f29 100644
--- a/auto_backup/i18n/es_EC.po
+++ b/auto_backup/i18n/es_EC.po
@@ -85,10 +85,20 @@ msgid "Basic backup configuration"
 msgstr ""
 
 #. module: auto_backup
-#: sql_constraint:db.backup:0
+#: model:ir.model.constraint,message:auto_backup.constraint_db_backup_name_unique
 msgid "Cannot duplicate a configuration."
 msgstr ""
 
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__changeset_change_ids
+msgid "Changeset Changes"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__changeset_ids
+msgid "Changesets"
+msgstr ""
+
 #. module: auto_backup
 #: model:ir.model.fields,help:auto_backup.field_db_backup__backup_format
 msgid "Choose the format for this backup."
@@ -100,23 +110,33 @@ msgid "Choose the storage method for this backup."
 msgstr ""
 
 #. module: auto_backup
-#: code:addons/auto_backup/models/db_backup.py:265
+#: code:addons/auto_backup/models/db_backup.py:0
 #, python-format
 msgid "Cleanup of old database backups failed."
 msgstr ""
 
 #. module: auto_backup
-#: code:addons/auto_backup/models/db_backup.py:137
+#: code:addons/auto_backup/models/db_backup.py:0
 #, python-format
 msgid "Connection Test Failed!"
 msgstr ""
 
 #. module: auto_backup
-#: code:addons/auto_backup/models/db_backup.py:132
+#: code:addons/auto_backup/models/db_backup.py:0
 #, python-format
 msgid "Connection Test Succeeded!"
 msgstr ""
 
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__count_pending_changeset_changes
+msgid "Count Pending Changeset Changes"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__count_pending_changesets
+msgid "Count Pending Changesets"
+msgstr ""
+
 #. module: auto_backup
 #: model:ir.model.fields,field_description:auto_backup.field_db_backup__create_uid
 msgid "Created by"
@@ -133,14 +153,14 @@ msgid "Database Backup"
 msgstr ""
 
 #. module: auto_backup
-#: code:addons/auto_backup/models/db_backup.py:219
+#: code:addons/auto_backup/models/db_backup.py:0
 #: model:mail.message.subtype,description:auto_backup.mail_message_subtype_failure
 #, python-format
 msgid "Database backup failed."
 msgstr ""
 
 #. module: auto_backup
-#: code:addons/auto_backup/models/db_backup.py:227
+#: code:addons/auto_backup/models/db_backup.py:0
 #: model:mail.message.subtype,description:auto_backup.mail_message_subtype_success
 #, python-format
 msgid "Database backup succeeded."
@@ -157,7 +177,7 @@ msgid "Display Name"
 msgstr "Nombre mostrado"
 
 #. module: auto_backup
-#: code:addons/auto_backup/models/db_backup.py:123
+#: code:addons/auto_backup/models/db_backup.py:0
 #, python-format
 msgid ""
 "Do not save backups on your filestore, or you will backup your backups too!"
@@ -204,7 +224,7 @@ msgid "Help"
 msgstr ""
 
 #. module: auto_backup
-#: sql_constraint:db.backup:0
+#: model:ir.model.constraint,message:auto_backup.constraint_db_backup_days_to_keep_positive
 msgid "I cannot remove backups from the future. Ask Doc for that."
 msgstr ""
 
@@ -213,18 +233,15 @@ msgstr ""
 msgid "ID"
 msgstr "ID"
 
-#. module: auto_backup
-#: model:ir.model.fields,help:auto_backup.field_db_backup__message_unread
-msgid "If checked new messages require your attention."
-msgstr ""
-
 #. module: auto_backup
 #: model:ir.model.fields,help:auto_backup.field_db_backup__message_needaction
+#: model:ir.model.fields,help:auto_backup.field_db_backup__message_unread
 msgid "If checked, new messages require your attention."
 msgstr ""
 
 #. module: auto_backup
 #: model:ir.model.fields,help:auto_backup.field_db_backup__message_has_error
+#: model:ir.model.fields,help:auto_backup.field_db_backup__message_has_sms_error
 msgid "If checked, some messages have a delivery error."
 msgstr ""
 
@@ -249,7 +266,7 @@ msgid "Last Updated on"
 msgstr "Última actualización en"
 
 #. module: auto_backup
-#: selection:db.backup,method:0
+#: model:ir.model.fields.selection,name:auto_backup.selection__db_backup__method__local
 msgid "Local disk"
 msgstr ""
 
@@ -285,7 +302,7 @@ msgstr ""
 
 #. module: auto_backup
 #: model:ir.model.fields,field_description:auto_backup.field_db_backup__message_has_error_counter
-msgid "Number of error"
+msgid "Number of errors"
 msgstr ""
 
 #. module: auto_backup
@@ -316,7 +333,7 @@ msgid "Private key location"
 msgstr ""
 
 #. module: auto_backup
-#: selection:db.backup,method:0
+#: model:ir.model.fields.selection,name:auto_backup.selection__db_backup__method__sftp
 msgid "Remote SFTP server"
 msgstr ""
 
@@ -340,6 +357,11 @@ msgstr ""
 msgid "SFTP Settings"
 msgstr ""
 
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__message_has_sms_error
+msgid "SMS Delivery error"
+msgstr ""
+
 #. module: auto_backup
 #: model_terms:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
 msgid "Search the action named 'Backup scheduler'."
@@ -351,6 +373,11 @@ msgid ""
 "Set the scheduler to active and fill in how often you want backups generated."
 msgstr ""
 
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__smart_search
+msgid "Smart Search"
+msgstr ""
+
 #. module: auto_backup
 #: model:ir.model.fields,help:auto_backup.field_db_backup__name
 msgid "Summary of this backup process"
@@ -403,6 +430,11 @@ msgid ""
 "you specify."
 msgstr ""
 
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__user_can_see_changeset
+msgid "User Can See Changeset"
+msgstr ""
+
 #. module: auto_backup
 #: model:ir.model.fields,field_description:auto_backup.field_db_backup__sftp_user
 msgid "Username in the SFTP Server"
@@ -429,7 +461,7 @@ msgid "john"
 msgstr ""
 
 #. module: auto_backup
-#: selection:db.backup,backup_format:0
+#: model:ir.model.fields.selection,name:auto_backup.selection__db_backup__backup_format__dump
 msgid "pg_dump custom format (without filestore)"
 msgstr ""
 
@@ -439,6 +471,6 @@ msgid "sftp.example.com"
 msgstr ""
 
 #. module: auto_backup
-#: selection:db.backup,backup_format:0
+#: model:ir.model.fields.selection,name:auto_backup.selection__db_backup__backup_format__zip
 msgid "zip (includes filestore)"
 msgstr ""
diff --git a/auto_backup/i18n/es_ES.po b/auto_backup/i18n/es_ES.po
index 357c3e44536..269b88cf21f 100644
--- a/auto_backup/i18n/es_ES.po
+++ b/auto_backup/i18n/es_ES.po
@@ -85,10 +85,20 @@ msgid "Basic backup configuration"
 msgstr ""
 
 #. module: auto_backup
-#: sql_constraint:db.backup:0
+#: model:ir.model.constraint,message:auto_backup.constraint_db_backup_name_unique
 msgid "Cannot duplicate a configuration."
 msgstr ""
 
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__changeset_change_ids
+msgid "Changeset Changes"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__changeset_ids
+msgid "Changesets"
+msgstr ""
+
 #. module: auto_backup
 #: model:ir.model.fields,help:auto_backup.field_db_backup__backup_format
 msgid "Choose the format for this backup."
@@ -100,23 +110,33 @@ msgid "Choose the storage method for this backup."
 msgstr ""
 
 #. module: auto_backup
-#: code:addons/auto_backup/models/db_backup.py:265
+#: code:addons/auto_backup/models/db_backup.py:0
 #, python-format
 msgid "Cleanup of old database backups failed."
 msgstr ""
 
 #. module: auto_backup
-#: code:addons/auto_backup/models/db_backup.py:137
+#: code:addons/auto_backup/models/db_backup.py:0
 #, python-format
 msgid "Connection Test Failed!"
 msgstr ""
 
 #. module: auto_backup
-#: code:addons/auto_backup/models/db_backup.py:132
+#: code:addons/auto_backup/models/db_backup.py:0
 #, python-format
 msgid "Connection Test Succeeded!"
 msgstr ""
 
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__count_pending_changeset_changes
+msgid "Count Pending Changeset Changes"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__count_pending_changesets
+msgid "Count Pending Changesets"
+msgstr ""
+
 #. module: auto_backup
 #: model:ir.model.fields,field_description:auto_backup.field_db_backup__create_uid
 msgid "Created by"
@@ -133,14 +153,14 @@ msgid "Database Backup"
 msgstr ""
 
 #. module: auto_backup
-#: code:addons/auto_backup/models/db_backup.py:219
+#: code:addons/auto_backup/models/db_backup.py:0
 #: model:mail.message.subtype,description:auto_backup.mail_message_subtype_failure
 #, python-format
 msgid "Database backup failed."
 msgstr ""
 
 #. module: auto_backup
-#: code:addons/auto_backup/models/db_backup.py:227
+#: code:addons/auto_backup/models/db_backup.py:0
 #: model:mail.message.subtype,description:auto_backup.mail_message_subtype_success
 #, python-format
 msgid "Database backup succeeded."
@@ -157,7 +177,7 @@ msgid "Display Name"
 msgstr "Nombre para mostrar"
 
 #. module: auto_backup
-#: code:addons/auto_backup/models/db_backup.py:123
+#: code:addons/auto_backup/models/db_backup.py:0
 #, python-format
 msgid ""
 "Do not save backups on your filestore, or you will backup your backups too!"
@@ -204,7 +224,7 @@ msgid "Help"
 msgstr ""
 
 #. module: auto_backup
-#: sql_constraint:db.backup:0
+#: model:ir.model.constraint,message:auto_backup.constraint_db_backup_days_to_keep_positive
 msgid "I cannot remove backups from the future. Ask Doc for that."
 msgstr ""
 
@@ -213,18 +233,15 @@ msgstr ""
 msgid "ID"
 msgstr "ID"
 
-#. module: auto_backup
-#: model:ir.model.fields,help:auto_backup.field_db_backup__message_unread
-msgid "If checked new messages require your attention."
-msgstr ""
-
 #. module: auto_backup
 #: model:ir.model.fields,help:auto_backup.field_db_backup__message_needaction
+#: model:ir.model.fields,help:auto_backup.field_db_backup__message_unread
 msgid "If checked, new messages require your attention."
 msgstr ""
 
 #. module: auto_backup
 #: model:ir.model.fields,help:auto_backup.field_db_backup__message_has_error
+#: model:ir.model.fields,help:auto_backup.field_db_backup__message_has_sms_error
 msgid "If checked, some messages have a delivery error."
 msgstr ""
 
@@ -249,7 +266,7 @@ msgid "Last Updated on"
 msgstr "Última actualización en"
 
 #. module: auto_backup
-#: selection:db.backup,method:0
+#: model:ir.model.fields.selection,name:auto_backup.selection__db_backup__method__local
 msgid "Local disk"
 msgstr ""
 
@@ -285,7 +302,7 @@ msgstr ""
 
 #. module: auto_backup
 #: model:ir.model.fields,field_description:auto_backup.field_db_backup__message_has_error_counter
-msgid "Number of error"
+msgid "Number of errors"
 msgstr ""
 
 #. module: auto_backup
@@ -316,7 +333,7 @@ msgid "Private key location"
 msgstr ""
 
 #. module: auto_backup
-#: selection:db.backup,method:0
+#: model:ir.model.fields.selection,name:auto_backup.selection__db_backup__method__sftp
 msgid "Remote SFTP server"
 msgstr ""
 
@@ -340,6 +357,11 @@ msgstr ""
 msgid "SFTP Settings"
 msgstr ""
 
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__message_has_sms_error
+msgid "SMS Delivery error"
+msgstr ""
+
 #. module: auto_backup
 #: model_terms:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
 msgid "Search the action named 'Backup scheduler'."
@@ -351,6 +373,11 @@ msgid ""
 "Set the scheduler to active and fill in how often you want backups generated."
 msgstr ""
 
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__smart_search
+msgid "Smart Search"
+msgstr ""
+
 #. module: auto_backup
 #: model:ir.model.fields,help:auto_backup.field_db_backup__name
 msgid "Summary of this backup process"
@@ -403,6 +430,11 @@ msgid ""
 "you specify."
 msgstr ""
 
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__user_can_see_changeset
+msgid "User Can See Changeset"
+msgstr ""
+
 #. module: auto_backup
 #: model:ir.model.fields,field_description:auto_backup.field_db_backup__sftp_user
 msgid "Username in the SFTP Server"
@@ -429,7 +461,7 @@ msgid "john"
 msgstr ""
 
 #. module: auto_backup
-#: selection:db.backup,backup_format:0
+#: model:ir.model.fields.selection,name:auto_backup.selection__db_backup__backup_format__dump
 msgid "pg_dump custom format (without filestore)"
 msgstr ""
 
@@ -439,6 +471,6 @@ msgid "sftp.example.com"
 msgstr ""
 
 #. module: auto_backup
-#: selection:db.backup,backup_format:0
+#: model:ir.model.fields.selection,name:auto_backup.selection__db_backup__backup_format__zip
 msgid "zip (includes filestore)"
 msgstr ""
diff --git a/auto_backup/i18n/es_MX.po b/auto_backup/i18n/es_MX.po
index 0af2c472aa3..54214aa9f1b 100644
--- a/auto_backup/i18n/es_MX.po
+++ b/auto_backup/i18n/es_MX.po
@@ -85,10 +85,20 @@ msgid "Basic backup configuration"
 msgstr ""
 
 #. module: auto_backup
-#: sql_constraint:db.backup:0
+#: model:ir.model.constraint,message:auto_backup.constraint_db_backup_name_unique
 msgid "Cannot duplicate a configuration."
 msgstr ""
 
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__changeset_change_ids
+msgid "Changeset Changes"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__changeset_ids
+msgid "Changesets"
+msgstr ""
+
 #. module: auto_backup
 #: model:ir.model.fields,help:auto_backup.field_db_backup__backup_format
 msgid "Choose the format for this backup."
@@ -100,23 +110,33 @@ msgid "Choose the storage method for this backup."
 msgstr ""
 
 #. module: auto_backup
-#: code:addons/auto_backup/models/db_backup.py:265
+#: code:addons/auto_backup/models/db_backup.py:0
 #, python-format
 msgid "Cleanup of old database backups failed."
 msgstr ""
 
 #. module: auto_backup
-#: code:addons/auto_backup/models/db_backup.py:137
+#: code:addons/auto_backup/models/db_backup.py:0
 #, python-format
 msgid "Connection Test Failed!"
 msgstr ""
 
 #. module: auto_backup
-#: code:addons/auto_backup/models/db_backup.py:132
+#: code:addons/auto_backup/models/db_backup.py:0
 #, python-format
 msgid "Connection Test Succeeded!"
 msgstr ""
 
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__count_pending_changeset_changes
+msgid "Count Pending Changeset Changes"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__count_pending_changesets
+msgid "Count Pending Changesets"
+msgstr ""
+
 #. module: auto_backup
 #: model:ir.model.fields,field_description:auto_backup.field_db_backup__create_uid
 msgid "Created by"
@@ -133,14 +153,14 @@ msgid "Database Backup"
 msgstr ""
 
 #. module: auto_backup
-#: code:addons/auto_backup/models/db_backup.py:219
+#: code:addons/auto_backup/models/db_backup.py:0
 #: model:mail.message.subtype,description:auto_backup.mail_message_subtype_failure
 #, python-format
 msgid "Database backup failed."
 msgstr ""
 
 #. module: auto_backup
-#: code:addons/auto_backup/models/db_backup.py:227
+#: code:addons/auto_backup/models/db_backup.py:0
 #: model:mail.message.subtype,description:auto_backup.mail_message_subtype_success
 #, python-format
 msgid "Database backup succeeded."
@@ -157,7 +177,7 @@ msgid "Display Name"
 msgstr "Nombre desplegado"
 
 #. module: auto_backup
-#: code:addons/auto_backup/models/db_backup.py:123
+#: code:addons/auto_backup/models/db_backup.py:0
 #, python-format
 msgid ""
 "Do not save backups on your filestore, or you will backup your backups too!"
@@ -204,7 +224,7 @@ msgid "Help"
 msgstr ""
 
 #. module: auto_backup
-#: sql_constraint:db.backup:0
+#: model:ir.model.constraint,message:auto_backup.constraint_db_backup_days_to_keep_positive
 msgid "I cannot remove backups from the future. Ask Doc for that."
 msgstr ""
 
@@ -213,18 +233,15 @@ msgstr ""
 msgid "ID"
 msgstr "ID"
 
-#. module: auto_backup
-#: model:ir.model.fields,help:auto_backup.field_db_backup__message_unread
-msgid "If checked new messages require your attention."
-msgstr ""
-
 #. module: auto_backup
 #: model:ir.model.fields,help:auto_backup.field_db_backup__message_needaction
+#: model:ir.model.fields,help:auto_backup.field_db_backup__message_unread
 msgid "If checked, new messages require your attention."
 msgstr ""
 
 #. module: auto_backup
 #: model:ir.model.fields,help:auto_backup.field_db_backup__message_has_error
+#: model:ir.model.fields,help:auto_backup.field_db_backup__message_has_sms_error
 msgid "If checked, some messages have a delivery error."
 msgstr ""
 
@@ -249,7 +266,7 @@ msgid "Last Updated on"
 msgstr "Ultima actualización en"
 
 #. module: auto_backup
-#: selection:db.backup,method:0
+#: model:ir.model.fields.selection,name:auto_backup.selection__db_backup__method__local
 msgid "Local disk"
 msgstr ""
 
@@ -285,7 +302,7 @@ msgstr ""
 
 #. module: auto_backup
 #: model:ir.model.fields,field_description:auto_backup.field_db_backup__message_has_error_counter
-msgid "Number of error"
+msgid "Number of errors"
 msgstr ""
 
 #. module: auto_backup
@@ -316,7 +333,7 @@ msgid "Private key location"
 msgstr ""
 
 #. module: auto_backup
-#: selection:db.backup,method:0
+#: model:ir.model.fields.selection,name:auto_backup.selection__db_backup__method__sftp
 msgid "Remote SFTP server"
 msgstr ""
 
@@ -340,6 +357,11 @@ msgstr ""
 msgid "SFTP Settings"
 msgstr ""
 
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__message_has_sms_error
+msgid "SMS Delivery error"
+msgstr ""
+
 #. module: auto_backup
 #: model_terms:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
 msgid "Search the action named 'Backup scheduler'."
@@ -351,6 +373,11 @@ msgid ""
 "Set the scheduler to active and fill in how often you want backups generated."
 msgstr ""
 
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__smart_search
+msgid "Smart Search"
+msgstr ""
+
 #. module: auto_backup
 #: model:ir.model.fields,help:auto_backup.field_db_backup__name
 msgid "Summary of this backup process"
@@ -403,6 +430,11 @@ msgid ""
 "you specify."
 msgstr ""
 
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__user_can_see_changeset
+msgid "User Can See Changeset"
+msgstr ""
+
 #. module: auto_backup
 #: model:ir.model.fields,field_description:auto_backup.field_db_backup__sftp_user
 msgid "Username in the SFTP Server"
@@ -429,7 +461,7 @@ msgid "john"
 msgstr ""
 
 #. module: auto_backup
-#: selection:db.backup,backup_format:0
+#: model:ir.model.fields.selection,name:auto_backup.selection__db_backup__backup_format__dump
 msgid "pg_dump custom format (without filestore)"
 msgstr ""
 
@@ -439,6 +471,6 @@ msgid "sftp.example.com"
 msgstr ""
 
 #. module: auto_backup
-#: selection:db.backup,backup_format:0
+#: model:ir.model.fields.selection,name:auto_backup.selection__db_backup__backup_format__zip
 msgid "zip (includes filestore)"
 msgstr ""
diff --git a/auto_backup/i18n/es_PE.po b/auto_backup/i18n/es_PE.po
index cda23b21be6..eb4ce1e7e29 100644
--- a/auto_backup/i18n/es_PE.po
+++ b/auto_backup/i18n/es_PE.po
@@ -85,10 +85,20 @@ msgid "Basic backup configuration"
 msgstr ""
 
 #. module: auto_backup
-#: sql_constraint:db.backup:0
+#: model:ir.model.constraint,message:auto_backup.constraint_db_backup_name_unique
 msgid "Cannot duplicate a configuration."
 msgstr ""
 
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__changeset_change_ids
+msgid "Changeset Changes"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__changeset_ids
+msgid "Changesets"
+msgstr ""
+
 #. module: auto_backup
 #: model:ir.model.fields,help:auto_backup.field_db_backup__backup_format
 msgid "Choose the format for this backup."
@@ -100,23 +110,33 @@ msgid "Choose the storage method for this backup."
 msgstr ""
 
 #. module: auto_backup
-#: code:addons/auto_backup/models/db_backup.py:265
+#: code:addons/auto_backup/models/db_backup.py:0
 #, python-format
 msgid "Cleanup of old database backups failed."
 msgstr ""
 
 #. module: auto_backup
-#: code:addons/auto_backup/models/db_backup.py:137
+#: code:addons/auto_backup/models/db_backup.py:0
 #, python-format
 msgid "Connection Test Failed!"
 msgstr ""
 
 #. module: auto_backup
-#: code:addons/auto_backup/models/db_backup.py:132
+#: code:addons/auto_backup/models/db_backup.py:0
 #, python-format
 msgid "Connection Test Succeeded!"
 msgstr ""
 
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__count_pending_changeset_changes
+msgid "Count Pending Changeset Changes"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__count_pending_changesets
+msgid "Count Pending Changesets"
+msgstr ""
+
 #. module: auto_backup
 #: model:ir.model.fields,field_description:auto_backup.field_db_backup__create_uid
 msgid "Created by"
@@ -133,14 +153,14 @@ msgid "Database Backup"
 msgstr ""
 
 #. module: auto_backup
-#: code:addons/auto_backup/models/db_backup.py:219
+#: code:addons/auto_backup/models/db_backup.py:0
 #: model:mail.message.subtype,description:auto_backup.mail_message_subtype_failure
 #, python-format
 msgid "Database backup failed."
 msgstr ""
 
 #. module: auto_backup
-#: code:addons/auto_backup/models/db_backup.py:227
+#: code:addons/auto_backup/models/db_backup.py:0
 #: model:mail.message.subtype,description:auto_backup.mail_message_subtype_success
 #, python-format
 msgid "Database backup succeeded."
@@ -157,7 +177,7 @@ msgid "Display Name"
 msgstr "Nombre a Mostrar"
 
 #. module: auto_backup
-#: code:addons/auto_backup/models/db_backup.py:123
+#: code:addons/auto_backup/models/db_backup.py:0
 #, python-format
 msgid ""
 "Do not save backups on your filestore, or you will backup your backups too!"
@@ -204,7 +224,7 @@ msgid "Help"
 msgstr ""
 
 #. module: auto_backup
-#: sql_constraint:db.backup:0
+#: model:ir.model.constraint,message:auto_backup.constraint_db_backup_days_to_keep_positive
 msgid "I cannot remove backups from the future. Ask Doc for that."
 msgstr ""
 
@@ -213,18 +233,15 @@ msgstr ""
 msgid "ID"
 msgstr "ID"
 
-#. module: auto_backup
-#: model:ir.model.fields,help:auto_backup.field_db_backup__message_unread
-msgid "If checked new messages require your attention."
-msgstr ""
-
 #. module: auto_backup
 #: model:ir.model.fields,help:auto_backup.field_db_backup__message_needaction
+#: model:ir.model.fields,help:auto_backup.field_db_backup__message_unread
 msgid "If checked, new messages require your attention."
 msgstr ""
 
 #. module: auto_backup
 #: model:ir.model.fields,help:auto_backup.field_db_backup__message_has_error
+#: model:ir.model.fields,help:auto_backup.field_db_backup__message_has_sms_error
 msgid "If checked, some messages have a delivery error."
 msgstr ""
 
@@ -249,7 +266,7 @@ msgid "Last Updated on"
 msgstr "Ultima Actualización"
 
 #. module: auto_backup
-#: selection:db.backup,method:0
+#: model:ir.model.fields.selection,name:auto_backup.selection__db_backup__method__local
 msgid "Local disk"
 msgstr ""
 
@@ -285,7 +302,7 @@ msgstr ""
 
 #. module: auto_backup
 #: model:ir.model.fields,field_description:auto_backup.field_db_backup__message_has_error_counter
-msgid "Number of error"
+msgid "Number of errors"
 msgstr ""
 
 #. module: auto_backup
@@ -316,7 +333,7 @@ msgid "Private key location"
 msgstr ""
 
 #. module: auto_backup
-#: selection:db.backup,method:0
+#: model:ir.model.fields.selection,name:auto_backup.selection__db_backup__method__sftp
 msgid "Remote SFTP server"
 msgstr ""
 
@@ -340,6 +357,11 @@ msgstr ""
 msgid "SFTP Settings"
 msgstr ""
 
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__message_has_sms_error
+msgid "SMS Delivery error"
+msgstr ""
+
 #. module: auto_backup
 #: model_terms:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
 msgid "Search the action named 'Backup scheduler'."
@@ -351,6 +373,11 @@ msgid ""
 "Set the scheduler to active and fill in how often you want backups generated."
 msgstr ""
 
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__smart_search
+msgid "Smart Search"
+msgstr ""
+
 #. module: auto_backup
 #: model:ir.model.fields,help:auto_backup.field_db_backup__name
 msgid "Summary of this backup process"
@@ -403,6 +430,11 @@ msgid ""
 "you specify."
 msgstr ""
 
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__user_can_see_changeset
+msgid "User Can See Changeset"
+msgstr ""
+
 #. module: auto_backup
 #: model:ir.model.fields,field_description:auto_backup.field_db_backup__sftp_user
 msgid "Username in the SFTP Server"
@@ -429,7 +461,7 @@ msgid "john"
 msgstr ""
 
 #. module: auto_backup
-#: selection:db.backup,backup_format:0
+#: model:ir.model.fields.selection,name:auto_backup.selection__db_backup__backup_format__dump
 msgid "pg_dump custom format (without filestore)"
 msgstr ""
 
@@ -439,6 +471,6 @@ msgid "sftp.example.com"
 msgstr ""
 
 #. module: auto_backup
-#: selection:db.backup,backup_format:0
+#: model:ir.model.fields.selection,name:auto_backup.selection__db_backup__backup_format__zip
 msgid "zip (includes filestore)"
 msgstr ""
diff --git a/auto_backup/i18n/es_PY.po b/auto_backup/i18n/es_PY.po
index c72dd57f941..864692c4eac 100644
--- a/auto_backup/i18n/es_PY.po
+++ b/auto_backup/i18n/es_PY.po
@@ -85,10 +85,20 @@ msgid "Basic backup configuration"
 msgstr ""
 
 #. module: auto_backup
-#: sql_constraint:db.backup:0
+#: model:ir.model.constraint,message:auto_backup.constraint_db_backup_name_unique
 msgid "Cannot duplicate a configuration."
 msgstr ""
 
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__changeset_change_ids
+msgid "Changeset Changes"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__changeset_ids
+msgid "Changesets"
+msgstr ""
+
 #. module: auto_backup
 #: model:ir.model.fields,help:auto_backup.field_db_backup__backup_format
 msgid "Choose the format for this backup."
@@ -100,23 +110,33 @@ msgid "Choose the storage method for this backup."
 msgstr ""
 
 #. module: auto_backup
-#: code:addons/auto_backup/models/db_backup.py:265
+#: code:addons/auto_backup/models/db_backup.py:0
 #, python-format
 msgid "Cleanup of old database backups failed."
 msgstr ""
 
 #. module: auto_backup
-#: code:addons/auto_backup/models/db_backup.py:137
+#: code:addons/auto_backup/models/db_backup.py:0
 #, python-format
 msgid "Connection Test Failed!"
 msgstr ""
 
 #. module: auto_backup
-#: code:addons/auto_backup/models/db_backup.py:132
+#: code:addons/auto_backup/models/db_backup.py:0
 #, python-format
 msgid "Connection Test Succeeded!"
 msgstr ""
 
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__count_pending_changeset_changes
+msgid "Count Pending Changeset Changes"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__count_pending_changesets
+msgid "Count Pending Changesets"
+msgstr ""
+
 #. module: auto_backup
 #: model:ir.model.fields,field_description:auto_backup.field_db_backup__create_uid
 msgid "Created by"
@@ -133,14 +153,14 @@ msgid "Database Backup"
 msgstr ""
 
 #. module: auto_backup
-#: code:addons/auto_backup/models/db_backup.py:219
+#: code:addons/auto_backup/models/db_backup.py:0
 #: model:mail.message.subtype,description:auto_backup.mail_message_subtype_failure
 #, python-format
 msgid "Database backup failed."
 msgstr ""
 
 #. module: auto_backup
-#: code:addons/auto_backup/models/db_backup.py:227
+#: code:addons/auto_backup/models/db_backup.py:0
 #: model:mail.message.subtype,description:auto_backup.mail_message_subtype_success
 #, python-format
 msgid "Database backup succeeded."
@@ -157,7 +177,7 @@ msgid "Display Name"
 msgstr ""
 
 #. module: auto_backup
-#: code:addons/auto_backup/models/db_backup.py:123
+#: code:addons/auto_backup/models/db_backup.py:0
 #, python-format
 msgid ""
 "Do not save backups on your filestore, or you will backup your backups too!"
@@ -204,7 +224,7 @@ msgid "Help"
 msgstr ""
 
 #. module: auto_backup
-#: sql_constraint:db.backup:0
+#: model:ir.model.constraint,message:auto_backup.constraint_db_backup_days_to_keep_positive
 msgid "I cannot remove backups from the future. Ask Doc for that."
 msgstr ""
 
@@ -213,18 +233,15 @@ msgstr ""
 msgid "ID"
 msgstr "ID"
 
-#. module: auto_backup
-#: model:ir.model.fields,help:auto_backup.field_db_backup__message_unread
-msgid "If checked new messages require your attention."
-msgstr ""
-
 #. module: auto_backup
 #: model:ir.model.fields,help:auto_backup.field_db_backup__message_needaction
+#: model:ir.model.fields,help:auto_backup.field_db_backup__message_unread
 msgid "If checked, new messages require your attention."
 msgstr ""
 
 #. module: auto_backup
 #: model:ir.model.fields,help:auto_backup.field_db_backup__message_has_error
+#: model:ir.model.fields,help:auto_backup.field_db_backup__message_has_sms_error
 msgid "If checked, some messages have a delivery error."
 msgstr ""
 
@@ -249,7 +266,7 @@ msgid "Last Updated on"
 msgstr "Ultima actualización en"
 
 #. module: auto_backup
-#: selection:db.backup,method:0
+#: model:ir.model.fields.selection,name:auto_backup.selection__db_backup__method__local
 msgid "Local disk"
 msgstr ""
 
@@ -285,7 +302,7 @@ msgstr ""
 
 #. module: auto_backup
 #: model:ir.model.fields,field_description:auto_backup.field_db_backup__message_has_error_counter
-msgid "Number of error"
+msgid "Number of errors"
 msgstr ""
 
 #. module: auto_backup
@@ -316,7 +333,7 @@ msgid "Private key location"
 msgstr ""
 
 #. module: auto_backup
-#: selection:db.backup,method:0
+#: model:ir.model.fields.selection,name:auto_backup.selection__db_backup__method__sftp
 msgid "Remote SFTP server"
 msgstr ""
 
@@ -340,6 +357,11 @@ msgstr ""
 msgid "SFTP Settings"
 msgstr ""
 
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__message_has_sms_error
+msgid "SMS Delivery error"
+msgstr ""
+
 #. module: auto_backup
 #: model_terms:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
 msgid "Search the action named 'Backup scheduler'."
@@ -351,6 +373,11 @@ msgid ""
 "Set the scheduler to active and fill in how often you want backups generated."
 msgstr ""
 
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__smart_search
+msgid "Smart Search"
+msgstr ""
+
 #. module: auto_backup
 #: model:ir.model.fields,help:auto_backup.field_db_backup__name
 msgid "Summary of this backup process"
@@ -403,6 +430,11 @@ msgid ""
 "you specify."
 msgstr ""
 
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__user_can_see_changeset
+msgid "User Can See Changeset"
+msgstr ""
+
 #. module: auto_backup
 #: model:ir.model.fields,field_description:auto_backup.field_db_backup__sftp_user
 msgid "Username in the SFTP Server"
@@ -429,7 +461,7 @@ msgid "john"
 msgstr ""
 
 #. module: auto_backup
-#: selection:db.backup,backup_format:0
+#: model:ir.model.fields.selection,name:auto_backup.selection__db_backup__backup_format__dump
 msgid "pg_dump custom format (without filestore)"
 msgstr ""
 
@@ -439,6 +471,6 @@ msgid "sftp.example.com"
 msgstr ""
 
 #. module: auto_backup
-#: selection:db.backup,backup_format:0
+#: model:ir.model.fields.selection,name:auto_backup.selection__db_backup__backup_format__zip
 msgid "zip (includes filestore)"
 msgstr ""
diff --git a/auto_backup/i18n/es_VE.po b/auto_backup/i18n/es_VE.po
index e255242107e..b1e538c3cb3 100644
--- a/auto_backup/i18n/es_VE.po
+++ b/auto_backup/i18n/es_VE.po
@@ -85,10 +85,20 @@ msgid "Basic backup configuration"
 msgstr ""
 
 #. module: auto_backup
-#: sql_constraint:db.backup:0
+#: model:ir.model.constraint,message:auto_backup.constraint_db_backup_name_unique
 msgid "Cannot duplicate a configuration."
 msgstr ""
 
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__changeset_change_ids
+msgid "Changeset Changes"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__changeset_ids
+msgid "Changesets"
+msgstr ""
+
 #. module: auto_backup
 #: model:ir.model.fields,help:auto_backup.field_db_backup__backup_format
 msgid "Choose the format for this backup."
@@ -100,23 +110,33 @@ msgid "Choose the storage method for this backup."
 msgstr ""
 
 #. module: auto_backup
-#: code:addons/auto_backup/models/db_backup.py:265
+#: code:addons/auto_backup/models/db_backup.py:0
 #, python-format
 msgid "Cleanup of old database backups failed."
 msgstr ""
 
 #. module: auto_backup
-#: code:addons/auto_backup/models/db_backup.py:137
+#: code:addons/auto_backup/models/db_backup.py:0
 #, python-format
 msgid "Connection Test Failed!"
 msgstr ""
 
 #. module: auto_backup
-#: code:addons/auto_backup/models/db_backup.py:132
+#: code:addons/auto_backup/models/db_backup.py:0
 #, python-format
 msgid "Connection Test Succeeded!"
 msgstr ""
 
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__count_pending_changeset_changes
+msgid "Count Pending Changeset Changes"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__count_pending_changesets
+msgid "Count Pending Changesets"
+msgstr ""
+
 #. module: auto_backup
 #: model:ir.model.fields,field_description:auto_backup.field_db_backup__create_uid
 msgid "Created by"
@@ -133,14 +153,14 @@ msgid "Database Backup"
 msgstr ""
 
 #. module: auto_backup
-#: code:addons/auto_backup/models/db_backup.py:219
+#: code:addons/auto_backup/models/db_backup.py:0
 #: model:mail.message.subtype,description:auto_backup.mail_message_subtype_failure
 #, python-format
 msgid "Database backup failed."
 msgstr ""
 
 #. module: auto_backup
-#: code:addons/auto_backup/models/db_backup.py:227
+#: code:addons/auto_backup/models/db_backup.py:0
 #: model:mail.message.subtype,description:auto_backup.mail_message_subtype_success
 #, python-format
 msgid "Database backup succeeded."
@@ -157,7 +177,7 @@ msgid "Display Name"
 msgstr "Mostrar nombre"
 
 #. module: auto_backup
-#: code:addons/auto_backup/models/db_backup.py:123
+#: code:addons/auto_backup/models/db_backup.py:0
 #, python-format
 msgid ""
 "Do not save backups on your filestore, or you will backup your backups too!"
@@ -204,7 +224,7 @@ msgid "Help"
 msgstr ""
 
 #. module: auto_backup
-#: sql_constraint:db.backup:0
+#: model:ir.model.constraint,message:auto_backup.constraint_db_backup_days_to_keep_positive
 msgid "I cannot remove backups from the future. Ask Doc for that."
 msgstr ""
 
@@ -213,18 +233,15 @@ msgstr ""
 msgid "ID"
 msgstr "ID"
 
-#. module: auto_backup
-#: model:ir.model.fields,help:auto_backup.field_db_backup__message_unread
-msgid "If checked new messages require your attention."
-msgstr ""
-
 #. module: auto_backup
 #: model:ir.model.fields,help:auto_backup.field_db_backup__message_needaction
+#: model:ir.model.fields,help:auto_backup.field_db_backup__message_unread
 msgid "If checked, new messages require your attention."
 msgstr ""
 
 #. module: auto_backup
 #: model:ir.model.fields,help:auto_backup.field_db_backup__message_has_error
+#: model:ir.model.fields,help:auto_backup.field_db_backup__message_has_sms_error
 msgid "If checked, some messages have a delivery error."
 msgstr ""
 
@@ -249,7 +266,7 @@ msgid "Last Updated on"
 msgstr "Ultima actualización en"
 
 #. module: auto_backup
-#: selection:db.backup,method:0
+#: model:ir.model.fields.selection,name:auto_backup.selection__db_backup__method__local
 msgid "Local disk"
 msgstr ""
 
@@ -285,7 +302,7 @@ msgstr ""
 
 #. module: auto_backup
 #: model:ir.model.fields,field_description:auto_backup.field_db_backup__message_has_error_counter
-msgid "Number of error"
+msgid "Number of errors"
 msgstr ""
 
 #. module: auto_backup
@@ -316,7 +333,7 @@ msgid "Private key location"
 msgstr ""
 
 #. module: auto_backup
-#: selection:db.backup,method:0
+#: model:ir.model.fields.selection,name:auto_backup.selection__db_backup__method__sftp
 msgid "Remote SFTP server"
 msgstr ""
 
@@ -340,6 +357,11 @@ msgstr ""
 msgid "SFTP Settings"
 msgstr ""
 
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__message_has_sms_error
+msgid "SMS Delivery error"
+msgstr ""
+
 #. module: auto_backup
 #: model_terms:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
 msgid "Search the action named 'Backup scheduler'."
@@ -351,6 +373,11 @@ msgid ""
 "Set the scheduler to active and fill in how often you want backups generated."
 msgstr ""
 
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__smart_search
+msgid "Smart Search"
+msgstr ""
+
 #. module: auto_backup
 #: model:ir.model.fields,help:auto_backup.field_db_backup__name
 msgid "Summary of this backup process"
@@ -403,6 +430,11 @@ msgid ""
 "you specify."
 msgstr ""
 
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__user_can_see_changeset
+msgid "User Can See Changeset"
+msgstr ""
+
 #. module: auto_backup
 #: model:ir.model.fields,field_description:auto_backup.field_db_backup__sftp_user
 msgid "Username in the SFTP Server"
@@ -429,7 +461,7 @@ msgid "john"
 msgstr ""
 
 #. module: auto_backup
-#: selection:db.backup,backup_format:0
+#: model:ir.model.fields.selection,name:auto_backup.selection__db_backup__backup_format__dump
 msgid "pg_dump custom format (without filestore)"
 msgstr ""
 
@@ -439,6 +471,6 @@ msgid "sftp.example.com"
 msgstr ""
 
 #. module: auto_backup
-#: selection:db.backup,backup_format:0
+#: model:ir.model.fields.selection,name:auto_backup.selection__db_backup__backup_format__zip
 msgid "zip (includes filestore)"
 msgstr ""
diff --git a/auto_backup/i18n/et.po b/auto_backup/i18n/et.po
index 01be3411163..b3c38d28ba4 100644
--- a/auto_backup/i18n/et.po
+++ b/auto_backup/i18n/et.po
@@ -84,10 +84,20 @@ msgid "Basic backup configuration"
 msgstr ""
 
 #. module: auto_backup
-#: sql_constraint:db.backup:0
+#: model:ir.model.constraint,message:auto_backup.constraint_db_backup_name_unique
 msgid "Cannot duplicate a configuration."
 msgstr ""
 
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__changeset_change_ids
+msgid "Changeset Changes"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__changeset_ids
+msgid "Changesets"
+msgstr ""
+
 #. module: auto_backup
 #: model:ir.model.fields,help:auto_backup.field_db_backup__backup_format
 msgid "Choose the format for this backup."
@@ -99,23 +109,33 @@ msgid "Choose the storage method for this backup."
 msgstr ""
 
 #. module: auto_backup
-#: code:addons/auto_backup/models/db_backup.py:265
+#: code:addons/auto_backup/models/db_backup.py:0
 #, python-format
 msgid "Cleanup of old database backups failed."
 msgstr ""
 
 #. module: auto_backup
-#: code:addons/auto_backup/models/db_backup.py:137
+#: code:addons/auto_backup/models/db_backup.py:0
 #, python-format
 msgid "Connection Test Failed!"
 msgstr ""
 
 #. module: auto_backup
-#: code:addons/auto_backup/models/db_backup.py:132
+#: code:addons/auto_backup/models/db_backup.py:0
 #, python-format
 msgid "Connection Test Succeeded!"
 msgstr ""
 
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__count_pending_changeset_changes
+msgid "Count Pending Changeset Changes"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__count_pending_changesets
+msgid "Count Pending Changesets"
+msgstr ""
+
 #. module: auto_backup
 #: model:ir.model.fields,field_description:auto_backup.field_db_backup__create_uid
 msgid "Created by"
@@ -132,14 +152,14 @@ msgid "Database Backup"
 msgstr ""
 
 #. module: auto_backup
-#: code:addons/auto_backup/models/db_backup.py:219
+#: code:addons/auto_backup/models/db_backup.py:0
 #: model:mail.message.subtype,description:auto_backup.mail_message_subtype_failure
 #, python-format
 msgid "Database backup failed."
 msgstr ""
 
 #. module: auto_backup
-#: code:addons/auto_backup/models/db_backup.py:227
+#: code:addons/auto_backup/models/db_backup.py:0
 #: model:mail.message.subtype,description:auto_backup.mail_message_subtype_success
 #, python-format
 msgid "Database backup succeeded."
@@ -156,7 +176,7 @@ msgid "Display Name"
 msgstr "Näidatav nimi"
 
 #. module: auto_backup
-#: code:addons/auto_backup/models/db_backup.py:123
+#: code:addons/auto_backup/models/db_backup.py:0
 #, python-format
 msgid ""
 "Do not save backups on your filestore, or you will backup your backups too!"
@@ -203,7 +223,7 @@ msgid "Help"
 msgstr ""
 
 #. module: auto_backup
-#: sql_constraint:db.backup:0
+#: model:ir.model.constraint,message:auto_backup.constraint_db_backup_days_to_keep_positive
 msgid "I cannot remove backups from the future. Ask Doc for that."
 msgstr ""
 
@@ -212,18 +232,15 @@ msgstr ""
 msgid "ID"
 msgstr "ID"
 
-#. module: auto_backup
-#: model:ir.model.fields,help:auto_backup.field_db_backup__message_unread
-msgid "If checked new messages require your attention."
-msgstr ""
-
 #. module: auto_backup
 #: model:ir.model.fields,help:auto_backup.field_db_backup__message_needaction
+#: model:ir.model.fields,help:auto_backup.field_db_backup__message_unread
 msgid "If checked, new messages require your attention."
 msgstr ""
 
 #. module: auto_backup
 #: model:ir.model.fields,help:auto_backup.field_db_backup__message_has_error
+#: model:ir.model.fields,help:auto_backup.field_db_backup__message_has_sms_error
 msgid "If checked, some messages have a delivery error."
 msgstr ""
 
@@ -248,7 +265,7 @@ msgid "Last Updated on"
 msgstr "Viimati uuendatud"
 
 #. module: auto_backup
-#: selection:db.backup,method:0
+#: model:ir.model.fields.selection,name:auto_backup.selection__db_backup__method__local
 msgid "Local disk"
 msgstr ""
 
@@ -284,7 +301,7 @@ msgstr ""
 
 #. module: auto_backup
 #: model:ir.model.fields,field_description:auto_backup.field_db_backup__message_has_error_counter
-msgid "Number of error"
+msgid "Number of errors"
 msgstr ""
 
 #. module: auto_backup
@@ -315,7 +332,7 @@ msgid "Private key location"
 msgstr ""
 
 #. module: auto_backup
-#: selection:db.backup,method:0
+#: model:ir.model.fields.selection,name:auto_backup.selection__db_backup__method__sftp
 msgid "Remote SFTP server"
 msgstr ""
 
@@ -339,6 +356,11 @@ msgstr ""
 msgid "SFTP Settings"
 msgstr ""
 
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__message_has_sms_error
+msgid "SMS Delivery error"
+msgstr ""
+
 #. module: auto_backup
 #: model_terms:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
 msgid "Search the action named 'Backup scheduler'."
@@ -350,6 +372,11 @@ msgid ""
 "Set the scheduler to active and fill in how often you want backups generated."
 msgstr ""
 
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__smart_search
+msgid "Smart Search"
+msgstr ""
+
 #. module: auto_backup
 #: model:ir.model.fields,help:auto_backup.field_db_backup__name
 msgid "Summary of this backup process"
@@ -402,6 +429,11 @@ msgid ""
 "you specify."
 msgstr ""
 
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__user_can_see_changeset
+msgid "User Can See Changeset"
+msgstr ""
+
 #. module: auto_backup
 #: model:ir.model.fields,field_description:auto_backup.field_db_backup__sftp_user
 msgid "Username in the SFTP Server"
@@ -428,7 +460,7 @@ msgid "john"
 msgstr ""
 
 #. module: auto_backup
-#: selection:db.backup,backup_format:0
+#: model:ir.model.fields.selection,name:auto_backup.selection__db_backup__backup_format__dump
 msgid "pg_dump custom format (without filestore)"
 msgstr ""
 
@@ -438,6 +470,6 @@ msgid "sftp.example.com"
 msgstr ""
 
 #. module: auto_backup
-#: selection:db.backup,backup_format:0
+#: model:ir.model.fields.selection,name:auto_backup.selection__db_backup__backup_format__zip
 msgid "zip (includes filestore)"
 msgstr ""
diff --git a/auto_backup/i18n/eu.po b/auto_backup/i18n/eu.po
index 513e9f1ed81..f60b8652613 100644
--- a/auto_backup/i18n/eu.po
+++ b/auto_backup/i18n/eu.po
@@ -84,10 +84,20 @@ msgid "Basic backup configuration"
 msgstr ""
 
 #. module: auto_backup
-#: sql_constraint:db.backup:0
+#: model:ir.model.constraint,message:auto_backup.constraint_db_backup_name_unique
 msgid "Cannot duplicate a configuration."
 msgstr ""
 
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__changeset_change_ids
+msgid "Changeset Changes"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__changeset_ids
+msgid "Changesets"
+msgstr ""
+
 #. module: auto_backup
 #: model:ir.model.fields,help:auto_backup.field_db_backup__backup_format
 msgid "Choose the format for this backup."
@@ -99,23 +109,33 @@ msgid "Choose the storage method for this backup."
 msgstr ""
 
 #. module: auto_backup
-#: code:addons/auto_backup/models/db_backup.py:265
+#: code:addons/auto_backup/models/db_backup.py:0
 #, python-format
 msgid "Cleanup of old database backups failed."
 msgstr ""
 
 #. module: auto_backup
-#: code:addons/auto_backup/models/db_backup.py:137
+#: code:addons/auto_backup/models/db_backup.py:0
 #, python-format
 msgid "Connection Test Failed!"
 msgstr ""
 
 #. module: auto_backup
-#: code:addons/auto_backup/models/db_backup.py:132
+#: code:addons/auto_backup/models/db_backup.py:0
 #, python-format
 msgid "Connection Test Succeeded!"
 msgstr ""
 
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__count_pending_changeset_changes
+msgid "Count Pending Changeset Changes"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__count_pending_changesets
+msgid "Count Pending Changesets"
+msgstr ""
+
 #. module: auto_backup
 #: model:ir.model.fields,field_description:auto_backup.field_db_backup__create_uid
 msgid "Created by"
@@ -132,14 +152,14 @@ msgid "Database Backup"
 msgstr ""
 
 #. module: auto_backup
-#: code:addons/auto_backup/models/db_backup.py:219
+#: code:addons/auto_backup/models/db_backup.py:0
 #: model:mail.message.subtype,description:auto_backup.mail_message_subtype_failure
 #, python-format
 msgid "Database backup failed."
 msgstr ""
 
 #. module: auto_backup
-#: code:addons/auto_backup/models/db_backup.py:227
+#: code:addons/auto_backup/models/db_backup.py:0
 #: model:mail.message.subtype,description:auto_backup.mail_message_subtype_success
 #, python-format
 msgid "Database backup succeeded."
@@ -156,7 +176,7 @@ msgid "Display Name"
 msgstr "Izena erakutsi"
 
 #. module: auto_backup
-#: code:addons/auto_backup/models/db_backup.py:123
+#: code:addons/auto_backup/models/db_backup.py:0
 #, python-format
 msgid ""
 "Do not save backups on your filestore, or you will backup your backups too!"
@@ -203,7 +223,7 @@ msgid "Help"
 msgstr ""
 
 #. module: auto_backup
-#: sql_constraint:db.backup:0
+#: model:ir.model.constraint,message:auto_backup.constraint_db_backup_days_to_keep_positive
 msgid "I cannot remove backups from the future. Ask Doc for that."
 msgstr ""
 
@@ -212,18 +232,15 @@ msgstr ""
 msgid "ID"
 msgstr "ID"
 
-#. module: auto_backup
-#: model:ir.model.fields,help:auto_backup.field_db_backup__message_unread
-msgid "If checked new messages require your attention."
-msgstr ""
-
 #. module: auto_backup
 #: model:ir.model.fields,help:auto_backup.field_db_backup__message_needaction
+#: model:ir.model.fields,help:auto_backup.field_db_backup__message_unread
 msgid "If checked, new messages require your attention."
 msgstr ""
 
 #. module: auto_backup
 #: model:ir.model.fields,help:auto_backup.field_db_backup__message_has_error
+#: model:ir.model.fields,help:auto_backup.field_db_backup__message_has_sms_error
 msgid "If checked, some messages have a delivery error."
 msgstr ""
 
@@ -248,7 +265,7 @@ msgid "Last Updated on"
 msgstr "Last Updated on"
 
 #. module: auto_backup
-#: selection:db.backup,method:0
+#: model:ir.model.fields.selection,name:auto_backup.selection__db_backup__method__local
 msgid "Local disk"
 msgstr ""
 
@@ -284,7 +301,7 @@ msgstr ""
 
 #. module: auto_backup
 #: model:ir.model.fields,field_description:auto_backup.field_db_backup__message_has_error_counter
-msgid "Number of error"
+msgid "Number of errors"
 msgstr ""
 
 #. module: auto_backup
@@ -315,7 +332,7 @@ msgid "Private key location"
 msgstr ""
 
 #. module: auto_backup
-#: selection:db.backup,method:0
+#: model:ir.model.fields.selection,name:auto_backup.selection__db_backup__method__sftp
 msgid "Remote SFTP server"
 msgstr ""
 
@@ -339,6 +356,11 @@ msgstr ""
 msgid "SFTP Settings"
 msgstr ""
 
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__message_has_sms_error
+msgid "SMS Delivery error"
+msgstr ""
+
 #. module: auto_backup
 #: model_terms:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
 msgid "Search the action named 'Backup scheduler'."
@@ -350,6 +372,11 @@ msgid ""
 "Set the scheduler to active and fill in how often you want backups generated."
 msgstr ""
 
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__smart_search
+msgid "Smart Search"
+msgstr ""
+
 #. module: auto_backup
 #: model:ir.model.fields,help:auto_backup.field_db_backup__name
 msgid "Summary of this backup process"
@@ -402,6 +429,11 @@ msgid ""
 "you specify."
 msgstr ""
 
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__user_can_see_changeset
+msgid "User Can See Changeset"
+msgstr ""
+
 #. module: auto_backup
 #: model:ir.model.fields,field_description:auto_backup.field_db_backup__sftp_user
 msgid "Username in the SFTP Server"
@@ -428,7 +460,7 @@ msgid "john"
 msgstr ""
 
 #. module: auto_backup
-#: selection:db.backup,backup_format:0
+#: model:ir.model.fields.selection,name:auto_backup.selection__db_backup__backup_format__dump
 msgid "pg_dump custom format (without filestore)"
 msgstr ""
 
@@ -438,6 +470,6 @@ msgid "sftp.example.com"
 msgstr ""
 
 #. module: auto_backup
-#: selection:db.backup,backup_format:0
+#: model:ir.model.fields.selection,name:auto_backup.selection__db_backup__backup_format__zip
 msgid "zip (includes filestore)"
 msgstr ""
diff --git a/auto_backup/i18n/fa.po b/auto_backup/i18n/fa.po
index a1b4fa1ba91..f2b85af0685 100644
--- a/auto_backup/i18n/fa.po
+++ b/auto_backup/i18n/fa.po
@@ -84,10 +84,20 @@ msgid "Basic backup configuration"
 msgstr ""
 
 #. module: auto_backup
-#: sql_constraint:db.backup:0
+#: model:ir.model.constraint,message:auto_backup.constraint_db_backup_name_unique
 msgid "Cannot duplicate a configuration."
 msgstr ""
 
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__changeset_change_ids
+msgid "Changeset Changes"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__changeset_ids
+msgid "Changesets"
+msgstr ""
+
 #. module: auto_backup
 #: model:ir.model.fields,help:auto_backup.field_db_backup__backup_format
 msgid "Choose the format for this backup."
@@ -99,23 +109,33 @@ msgid "Choose the storage method for this backup."
 msgstr ""
 
 #. module: auto_backup
-#: code:addons/auto_backup/models/db_backup.py:265
+#: code:addons/auto_backup/models/db_backup.py:0
 #, python-format
 msgid "Cleanup of old database backups failed."
 msgstr ""
 
 #. module: auto_backup
-#: code:addons/auto_backup/models/db_backup.py:137
+#: code:addons/auto_backup/models/db_backup.py:0
 #, python-format
 msgid "Connection Test Failed!"
 msgstr ""
 
 #. module: auto_backup
-#: code:addons/auto_backup/models/db_backup.py:132
+#: code:addons/auto_backup/models/db_backup.py:0
 #, python-format
 msgid "Connection Test Succeeded!"
 msgstr ""
 
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__count_pending_changeset_changes
+msgid "Count Pending Changeset Changes"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__count_pending_changesets
+msgid "Count Pending Changesets"
+msgstr ""
+
 #. module: auto_backup
 #: model:ir.model.fields,field_description:auto_backup.field_db_backup__create_uid
 msgid "Created by"
@@ -132,14 +152,14 @@ msgid "Database Backup"
 msgstr ""
 
 #. module: auto_backup
-#: code:addons/auto_backup/models/db_backup.py:219
+#: code:addons/auto_backup/models/db_backup.py:0
 #: model:mail.message.subtype,description:auto_backup.mail_message_subtype_failure
 #, python-format
 msgid "Database backup failed."
 msgstr ""
 
 #. module: auto_backup
-#: code:addons/auto_backup/models/db_backup.py:227
+#: code:addons/auto_backup/models/db_backup.py:0
 #: model:mail.message.subtype,description:auto_backup.mail_message_subtype_success
 #, python-format
 msgid "Database backup succeeded."
@@ -156,7 +176,7 @@ msgid "Display Name"
 msgstr "نام نمایشی"
 
 #. module: auto_backup
-#: code:addons/auto_backup/models/db_backup.py:123
+#: code:addons/auto_backup/models/db_backup.py:0
 #, python-format
 msgid ""
 "Do not save backups on your filestore, or you will backup your backups too!"
@@ -203,7 +223,7 @@ msgid "Help"
 msgstr ""
 
 #. module: auto_backup
-#: sql_constraint:db.backup:0
+#: model:ir.model.constraint,message:auto_backup.constraint_db_backup_days_to_keep_positive
 msgid "I cannot remove backups from the future. Ask Doc for that."
 msgstr ""
 
@@ -212,18 +232,15 @@ msgstr ""
 msgid "ID"
 msgstr "شناسه"
 
-#. module: auto_backup
-#: model:ir.model.fields,help:auto_backup.field_db_backup__message_unread
-msgid "If checked new messages require your attention."
-msgstr ""
-
 #. module: auto_backup
 #: model:ir.model.fields,help:auto_backup.field_db_backup__message_needaction
+#: model:ir.model.fields,help:auto_backup.field_db_backup__message_unread
 msgid "If checked, new messages require your attention."
 msgstr ""
 
 #. module: auto_backup
 #: model:ir.model.fields,help:auto_backup.field_db_backup__message_has_error
+#: model:ir.model.fields,help:auto_backup.field_db_backup__message_has_sms_error
 msgid "If checked, some messages have a delivery error."
 msgstr ""
 
@@ -248,7 +265,7 @@ msgid "Last Updated on"
 msgstr "آخرین به روز رسانی در"
 
 #. module: auto_backup
-#: selection:db.backup,method:0
+#: model:ir.model.fields.selection,name:auto_backup.selection__db_backup__method__local
 msgid "Local disk"
 msgstr ""
 
@@ -284,7 +301,7 @@ msgstr ""
 
 #. module: auto_backup
 #: model:ir.model.fields,field_description:auto_backup.field_db_backup__message_has_error_counter
-msgid "Number of error"
+msgid "Number of errors"
 msgstr ""
 
 #. module: auto_backup
@@ -315,7 +332,7 @@ msgid "Private key location"
 msgstr ""
 
 #. module: auto_backup
-#: selection:db.backup,method:0
+#: model:ir.model.fields.selection,name:auto_backup.selection__db_backup__method__sftp
 msgid "Remote SFTP server"
 msgstr ""
 
@@ -339,6 +356,11 @@ msgstr ""
 msgid "SFTP Settings"
 msgstr ""
 
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__message_has_sms_error
+msgid "SMS Delivery error"
+msgstr ""
+
 #. module: auto_backup
 #: model_terms:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
 msgid "Search the action named 'Backup scheduler'."
@@ -350,6 +372,11 @@ msgid ""
 "Set the scheduler to active and fill in how often you want backups generated."
 msgstr ""
 
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__smart_search
+msgid "Smart Search"
+msgstr ""
+
 #. module: auto_backup
 #: model:ir.model.fields,help:auto_backup.field_db_backup__name
 msgid "Summary of this backup process"
@@ -402,6 +429,11 @@ msgid ""
 "you specify."
 msgstr ""
 
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__user_can_see_changeset
+msgid "User Can See Changeset"
+msgstr ""
+
 #. module: auto_backup
 #: model:ir.model.fields,field_description:auto_backup.field_db_backup__sftp_user
 msgid "Username in the SFTP Server"
@@ -428,7 +460,7 @@ msgid "john"
 msgstr ""
 
 #. module: auto_backup
-#: selection:db.backup,backup_format:0
+#: model:ir.model.fields.selection,name:auto_backup.selection__db_backup__backup_format__dump
 msgid "pg_dump custom format (without filestore)"
 msgstr ""
 
@@ -438,6 +470,6 @@ msgid "sftp.example.com"
 msgstr ""
 
 #. module: auto_backup
-#: selection:db.backup,backup_format:0
+#: model:ir.model.fields.selection,name:auto_backup.selection__db_backup__backup_format__zip
 msgid "zip (includes filestore)"
 msgstr ""
diff --git a/auto_backup/i18n/fi.po b/auto_backup/i18n/fi.po
index 85451003d43..a53ff25190a 100644
--- a/auto_backup/i18n/fi.po
+++ b/auto_backup/i18n/fi.po
@@ -84,10 +84,20 @@ msgid "Basic backup configuration"
 msgstr ""
 
 #. module: auto_backup
-#: sql_constraint:db.backup:0
+#: model:ir.model.constraint,message:auto_backup.constraint_db_backup_name_unique
 msgid "Cannot duplicate a configuration."
 msgstr ""
 
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__changeset_change_ids
+msgid "Changeset Changes"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__changeset_ids
+msgid "Changesets"
+msgstr ""
+
 #. module: auto_backup
 #: model:ir.model.fields,help:auto_backup.field_db_backup__backup_format
 msgid "Choose the format for this backup."
@@ -99,23 +109,33 @@ msgid "Choose the storage method for this backup."
 msgstr ""
 
 #. module: auto_backup
-#: code:addons/auto_backup/models/db_backup.py:265
+#: code:addons/auto_backup/models/db_backup.py:0
 #, python-format
 msgid "Cleanup of old database backups failed."
 msgstr ""
 
 #. module: auto_backup
-#: code:addons/auto_backup/models/db_backup.py:137
+#: code:addons/auto_backup/models/db_backup.py:0
 #, python-format
 msgid "Connection Test Failed!"
 msgstr ""
 
 #. module: auto_backup
-#: code:addons/auto_backup/models/db_backup.py:132
+#: code:addons/auto_backup/models/db_backup.py:0
 #, python-format
 msgid "Connection Test Succeeded!"
 msgstr ""
 
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__count_pending_changeset_changes
+msgid "Count Pending Changeset Changes"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__count_pending_changesets
+msgid "Count Pending Changesets"
+msgstr ""
+
 #. module: auto_backup
 #: model:ir.model.fields,field_description:auto_backup.field_db_backup__create_uid
 msgid "Created by"
@@ -132,14 +152,14 @@ msgid "Database Backup"
 msgstr ""
 
 #. module: auto_backup
-#: code:addons/auto_backup/models/db_backup.py:219
+#: code:addons/auto_backup/models/db_backup.py:0
 #: model:mail.message.subtype,description:auto_backup.mail_message_subtype_failure
 #, python-format
 msgid "Database backup failed."
 msgstr ""
 
 #. module: auto_backup
-#: code:addons/auto_backup/models/db_backup.py:227
+#: code:addons/auto_backup/models/db_backup.py:0
 #: model:mail.message.subtype,description:auto_backup.mail_message_subtype_success
 #, python-format
 msgid "Database backup succeeded."
@@ -156,7 +176,7 @@ msgid "Display Name"
 msgstr "Nimi"
 
 #. module: auto_backup
-#: code:addons/auto_backup/models/db_backup.py:123
+#: code:addons/auto_backup/models/db_backup.py:0
 #, python-format
 msgid ""
 "Do not save backups on your filestore, or you will backup your backups too!"
@@ -203,7 +223,7 @@ msgid "Help"
 msgstr ""
 
 #. module: auto_backup
-#: sql_constraint:db.backup:0
+#: model:ir.model.constraint,message:auto_backup.constraint_db_backup_days_to_keep_positive
 msgid "I cannot remove backups from the future. Ask Doc for that."
 msgstr ""
 
@@ -212,18 +232,15 @@ msgstr ""
 msgid "ID"
 msgstr "ID"
 
-#. module: auto_backup
-#: model:ir.model.fields,help:auto_backup.field_db_backup__message_unread
-msgid "If checked new messages require your attention."
-msgstr ""
-
 #. module: auto_backup
 #: model:ir.model.fields,help:auto_backup.field_db_backup__message_needaction
+#: model:ir.model.fields,help:auto_backup.field_db_backup__message_unread
 msgid "If checked, new messages require your attention."
 msgstr ""
 
 #. module: auto_backup
 #: model:ir.model.fields,help:auto_backup.field_db_backup__message_has_error
+#: model:ir.model.fields,help:auto_backup.field_db_backup__message_has_sms_error
 msgid "If checked, some messages have a delivery error."
 msgstr ""
 
@@ -248,7 +265,7 @@ msgid "Last Updated on"
 msgstr "Viimeksi päivitetty"
 
 #. module: auto_backup
-#: selection:db.backup,method:0
+#: model:ir.model.fields.selection,name:auto_backup.selection__db_backup__method__local
 msgid "Local disk"
 msgstr ""
 
@@ -284,7 +301,7 @@ msgstr ""
 
 #. module: auto_backup
 #: model:ir.model.fields,field_description:auto_backup.field_db_backup__message_has_error_counter
-msgid "Number of error"
+msgid "Number of errors"
 msgstr ""
 
 #. module: auto_backup
@@ -315,7 +332,7 @@ msgid "Private key location"
 msgstr ""
 
 #. module: auto_backup
-#: selection:db.backup,method:0
+#: model:ir.model.fields.selection,name:auto_backup.selection__db_backup__method__sftp
 msgid "Remote SFTP server"
 msgstr ""
 
@@ -339,6 +356,11 @@ msgstr ""
 msgid "SFTP Settings"
 msgstr ""
 
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__message_has_sms_error
+msgid "SMS Delivery error"
+msgstr ""
+
 #. module: auto_backup
 #: model_terms:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
 msgid "Search the action named 'Backup scheduler'."
@@ -350,6 +372,11 @@ msgid ""
 "Set the scheduler to active and fill in how often you want backups generated."
 msgstr ""
 
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__smart_search
+msgid "Smart Search"
+msgstr ""
+
 #. module: auto_backup
 #: model:ir.model.fields,help:auto_backup.field_db_backup__name
 msgid "Summary of this backup process"
@@ -402,6 +429,11 @@ msgid ""
 "you specify."
 msgstr ""
 
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__user_can_see_changeset
+msgid "User Can See Changeset"
+msgstr ""
+
 #. module: auto_backup
 #: model:ir.model.fields,field_description:auto_backup.field_db_backup__sftp_user
 msgid "Username in the SFTP Server"
@@ -428,7 +460,7 @@ msgid "john"
 msgstr ""
 
 #. module: auto_backup
-#: selection:db.backup,backup_format:0
+#: model:ir.model.fields.selection,name:auto_backup.selection__db_backup__backup_format__dump
 msgid "pg_dump custom format (without filestore)"
 msgstr ""
 
@@ -438,6 +470,6 @@ msgid "sftp.example.com"
 msgstr ""
 
 #. module: auto_backup
-#: selection:db.backup,backup_format:0
+#: model:ir.model.fields.selection,name:auto_backup.selection__db_backup__backup_format__zip
 msgid "zip (includes filestore)"
 msgstr ""
diff --git a/auto_backup/i18n/fr.po b/auto_backup/i18n/fr.po
index 936fb8fc154..d8a4ab5fe87 100644
--- a/auto_backup/i18n/fr.po
+++ b/auto_backup/i18n/fr.po
@@ -89,10 +89,20 @@ msgid "Basic backup configuration"
 msgstr "Configuration basique de sauvegarde"
 
 #. module: auto_backup
-#: sql_constraint:db.backup:0
+#: model:ir.model.constraint,message:auto_backup.constraint_db_backup_name_unique
 msgid "Cannot duplicate a configuration."
 msgstr "Impossible de dupliquer une configuration."
 
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__changeset_change_ids
+msgid "Changeset Changes"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__changeset_ids
+msgid "Changesets"
+msgstr ""
+
 #. module: auto_backup
 #: model:ir.model.fields,help:auto_backup.field_db_backup__backup_format
 #, fuzzy
@@ -105,23 +115,33 @@ msgid "Choose the storage method for this backup."
 msgstr "Choisissez la méthode de stockage pour cette sauvegarde."
 
 #. module: auto_backup
-#: code:addons/auto_backup/models/db_backup.py:265
+#: code:addons/auto_backup/models/db_backup.py:0
 #, python-format
 msgid "Cleanup of old database backups failed."
 msgstr "Échec du nettoyage des anciennes sauvegardes de la base de données."
 
 #. module: auto_backup
-#: code:addons/auto_backup/models/db_backup.py:137
+#: code:addons/auto_backup/models/db_backup.py:0
 #, python-format
 msgid "Connection Test Failed!"
 msgstr "Échec du test de connexion !"
 
 #. module: auto_backup
-#: code:addons/auto_backup/models/db_backup.py:132
+#: code:addons/auto_backup/models/db_backup.py:0
 #, python-format
 msgid "Connection Test Succeeded!"
 msgstr "Test de connexion réussi !"
 
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__count_pending_changeset_changes
+msgid "Count Pending Changeset Changes"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__count_pending_changesets
+msgid "Count Pending Changesets"
+msgstr ""
+
 #. module: auto_backup
 #: model:ir.model.fields,field_description:auto_backup.field_db_backup__create_uid
 msgid "Created by"
@@ -138,14 +158,14 @@ msgid "Database Backup"
 msgstr ""
 
 #. module: auto_backup
-#: code:addons/auto_backup/models/db_backup.py:219
+#: code:addons/auto_backup/models/db_backup.py:0
 #: model:mail.message.subtype,description:auto_backup.mail_message_subtype_failure
 #, python-format
 msgid "Database backup failed."
 msgstr "Échec de la sauvegarde de la base de données"
 
 #. module: auto_backup
-#: code:addons/auto_backup/models/db_backup.py:227
+#: code:addons/auto_backup/models/db_backup.py:0
 #: model:mail.message.subtype,description:auto_backup.mail_message_subtype_success
 #, python-format
 msgid "Database backup succeeded."
@@ -162,7 +182,7 @@ msgid "Display Name"
 msgstr "Nom affiché"
 
 #. module: auto_backup
-#: code:addons/auto_backup/models/db_backup.py:123
+#: code:addons/auto_backup/models/db_backup.py:0
 #, python-format
 msgid ""
 "Do not save backups on your filestore, or you will backup your backups too!"
@@ -212,7 +232,7 @@ msgid "Help"
 msgstr "Aide"
 
 #. module: auto_backup
-#: sql_constraint:db.backup:0
+#: model:ir.model.constraint,message:auto_backup.constraint_db_backup_days_to_keep_positive
 msgid "I cannot remove backups from the future. Ask Doc for that."
 msgstr ""
 
@@ -221,18 +241,15 @@ msgstr ""
 msgid "ID"
 msgstr "ID"
 
-#. module: auto_backup
-#: model:ir.model.fields,help:auto_backup.field_db_backup__message_unread
-msgid "If checked new messages require your attention."
-msgstr ""
-
 #. module: auto_backup
 #: model:ir.model.fields,help:auto_backup.field_db_backup__message_needaction
+#: model:ir.model.fields,help:auto_backup.field_db_backup__message_unread
 msgid "If checked, new messages require your attention."
 msgstr ""
 
 #. module: auto_backup
 #: model:ir.model.fields,help:auto_backup.field_db_backup__message_has_error
+#: model:ir.model.fields,help:auto_backup.field_db_backup__message_has_sms_error
 msgid "If checked, some messages have a delivery error."
 msgstr ""
 
@@ -257,7 +274,7 @@ msgid "Last Updated on"
 msgstr "Mis à jour le"
 
 #. module: auto_backup
-#: selection:db.backup,method:0
+#: model:ir.model.fields.selection,name:auto_backup.selection__db_backup__method__local
 msgid "Local disk"
 msgstr "Disque local"
 
@@ -293,7 +310,7 @@ msgstr ""
 
 #. module: auto_backup
 #: model:ir.model.fields,field_description:auto_backup.field_db_backup__message_has_error_counter
-msgid "Number of error"
+msgid "Number of errors"
 msgstr ""
 
 #. module: auto_backup
@@ -326,7 +343,7 @@ msgid "Private key location"
 msgstr ""
 
 #. module: auto_backup
-#: selection:db.backup,method:0
+#: model:ir.model.fields.selection,name:auto_backup.selection__db_backup__method__sftp
 msgid "Remote SFTP server"
 msgstr ""
 
@@ -350,6 +367,11 @@ msgstr ""
 msgid "SFTP Settings"
 msgstr ""
 
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__message_has_sms_error
+msgid "SMS Delivery error"
+msgstr ""
+
 #. module: auto_backup
 #: model_terms:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
 msgid "Search the action named 'Backup scheduler'."
@@ -361,6 +383,11 @@ msgid ""
 "Set the scheduler to active and fill in how often you want backups generated."
 msgstr ""
 
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__smart_search
+msgid "Smart Search"
+msgstr ""
+
 #. module: auto_backup
 #: model:ir.model.fields,help:auto_backup.field_db_backup__name
 msgid "Summary of this backup process"
@@ -413,6 +440,11 @@ msgid ""
 "you specify."
 msgstr ""
 
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__user_can_see_changeset
+msgid "User Can See Changeset"
+msgstr ""
+
 #. module: auto_backup
 #: model:ir.model.fields,field_description:auto_backup.field_db_backup__sftp_user
 msgid "Username in the SFTP Server"
@@ -439,7 +471,7 @@ msgid "john"
 msgstr ""
 
 #. module: auto_backup
-#: selection:db.backup,backup_format:0
+#: model:ir.model.fields.selection,name:auto_backup.selection__db_backup__backup_format__dump
 msgid "pg_dump custom format (without filestore)"
 msgstr ""
 
@@ -449,6 +481,6 @@ msgid "sftp.example.com"
 msgstr ""
 
 #. module: auto_backup
-#: selection:db.backup,backup_format:0
+#: model:ir.model.fields.selection,name:auto_backup.selection__db_backup__backup_format__zip
 msgid "zip (includes filestore)"
 msgstr ""
diff --git a/auto_backup/i18n/fr_CA.po b/auto_backup/i18n/fr_CA.po
index 55492966df2..e5c382ae953 100644
--- a/auto_backup/i18n/fr_CA.po
+++ b/auto_backup/i18n/fr_CA.po
@@ -85,10 +85,20 @@ msgid "Basic backup configuration"
 msgstr ""
 
 #. module: auto_backup
-#: sql_constraint:db.backup:0
+#: model:ir.model.constraint,message:auto_backup.constraint_db_backup_name_unique
 msgid "Cannot duplicate a configuration."
 msgstr ""
 
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__changeset_change_ids
+msgid "Changeset Changes"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__changeset_ids
+msgid "Changesets"
+msgstr ""
+
 #. module: auto_backup
 #: model:ir.model.fields,help:auto_backup.field_db_backup__backup_format
 msgid "Choose the format for this backup."
@@ -100,23 +110,33 @@ msgid "Choose the storage method for this backup."
 msgstr ""
 
 #. module: auto_backup
-#: code:addons/auto_backup/models/db_backup.py:265
+#: code:addons/auto_backup/models/db_backup.py:0
 #, python-format
 msgid "Cleanup of old database backups failed."
 msgstr ""
 
 #. module: auto_backup
-#: code:addons/auto_backup/models/db_backup.py:137
+#: code:addons/auto_backup/models/db_backup.py:0
 #, python-format
 msgid "Connection Test Failed!"
 msgstr ""
 
 #. module: auto_backup
-#: code:addons/auto_backup/models/db_backup.py:132
+#: code:addons/auto_backup/models/db_backup.py:0
 #, python-format
 msgid "Connection Test Succeeded!"
 msgstr ""
 
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__count_pending_changeset_changes
+msgid "Count Pending Changeset Changes"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__count_pending_changesets
+msgid "Count Pending Changesets"
+msgstr ""
+
 #. module: auto_backup
 #: model:ir.model.fields,field_description:auto_backup.field_db_backup__create_uid
 msgid "Created by"
@@ -133,14 +153,14 @@ msgid "Database Backup"
 msgstr ""
 
 #. module: auto_backup
-#: code:addons/auto_backup/models/db_backup.py:219
+#: code:addons/auto_backup/models/db_backup.py:0
 #: model:mail.message.subtype,description:auto_backup.mail_message_subtype_failure
 #, python-format
 msgid "Database backup failed."
 msgstr ""
 
 #. module: auto_backup
-#: code:addons/auto_backup/models/db_backup.py:227
+#: code:addons/auto_backup/models/db_backup.py:0
 #: model:mail.message.subtype,description:auto_backup.mail_message_subtype_success
 #, python-format
 msgid "Database backup succeeded."
@@ -157,7 +177,7 @@ msgid "Display Name"
 msgstr "Afficher le nom"
 
 #. module: auto_backup
-#: code:addons/auto_backup/models/db_backup.py:123
+#: code:addons/auto_backup/models/db_backup.py:0
 #, python-format
 msgid ""
 "Do not save backups on your filestore, or you will backup your backups too!"
@@ -204,7 +224,7 @@ msgid "Help"
 msgstr ""
 
 #. module: auto_backup
-#: sql_constraint:db.backup:0
+#: model:ir.model.constraint,message:auto_backup.constraint_db_backup_days_to_keep_positive
 msgid "I cannot remove backups from the future. Ask Doc for that."
 msgstr ""
 
@@ -213,18 +233,15 @@ msgstr ""
 msgid "ID"
 msgstr "Identifiant"
 
-#. module: auto_backup
-#: model:ir.model.fields,help:auto_backup.field_db_backup__message_unread
-msgid "If checked new messages require your attention."
-msgstr ""
-
 #. module: auto_backup
 #: model:ir.model.fields,help:auto_backup.field_db_backup__message_needaction
+#: model:ir.model.fields,help:auto_backup.field_db_backup__message_unread
 msgid "If checked, new messages require your attention."
 msgstr ""
 
 #. module: auto_backup
 #: model:ir.model.fields,help:auto_backup.field_db_backup__message_has_error
+#: model:ir.model.fields,help:auto_backup.field_db_backup__message_has_sms_error
 msgid "If checked, some messages have a delivery error."
 msgstr ""
 
@@ -249,7 +266,7 @@ msgid "Last Updated on"
 msgstr "Dernière mise à jour le"
 
 #. module: auto_backup
-#: selection:db.backup,method:0
+#: model:ir.model.fields.selection,name:auto_backup.selection__db_backup__method__local
 msgid "Local disk"
 msgstr ""
 
@@ -285,7 +302,7 @@ msgstr ""
 
 #. module: auto_backup
 #: model:ir.model.fields,field_description:auto_backup.field_db_backup__message_has_error_counter
-msgid "Number of error"
+msgid "Number of errors"
 msgstr ""
 
 #. module: auto_backup
@@ -316,7 +333,7 @@ msgid "Private key location"
 msgstr ""
 
 #. module: auto_backup
-#: selection:db.backup,method:0
+#: model:ir.model.fields.selection,name:auto_backup.selection__db_backup__method__sftp
 msgid "Remote SFTP server"
 msgstr ""
 
@@ -340,6 +357,11 @@ msgstr ""
 msgid "SFTP Settings"
 msgstr ""
 
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__message_has_sms_error
+msgid "SMS Delivery error"
+msgstr ""
+
 #. module: auto_backup
 #: model_terms:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
 msgid "Search the action named 'Backup scheduler'."
@@ -351,6 +373,11 @@ msgid ""
 "Set the scheduler to active and fill in how often you want backups generated."
 msgstr ""
 
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__smart_search
+msgid "Smart Search"
+msgstr ""
+
 #. module: auto_backup
 #: model:ir.model.fields,help:auto_backup.field_db_backup__name
 msgid "Summary of this backup process"
@@ -403,6 +430,11 @@ msgid ""
 "you specify."
 msgstr ""
 
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__user_can_see_changeset
+msgid "User Can See Changeset"
+msgstr ""
+
 #. module: auto_backup
 #: model:ir.model.fields,field_description:auto_backup.field_db_backup__sftp_user
 msgid "Username in the SFTP Server"
@@ -429,7 +461,7 @@ msgid "john"
 msgstr ""
 
 #. module: auto_backup
-#: selection:db.backup,backup_format:0
+#: model:ir.model.fields.selection,name:auto_backup.selection__db_backup__backup_format__dump
 msgid "pg_dump custom format (without filestore)"
 msgstr ""
 
@@ -439,6 +471,6 @@ msgid "sftp.example.com"
 msgstr ""
 
 #. module: auto_backup
-#: selection:db.backup,backup_format:0
+#: model:ir.model.fields.selection,name:auto_backup.selection__db_backup__backup_format__zip
 msgid "zip (includes filestore)"
 msgstr ""
diff --git a/auto_backup/i18n/fr_CH.po b/auto_backup/i18n/fr_CH.po
index b77becaa030..59b922d4637 100644
--- a/auto_backup/i18n/fr_CH.po
+++ b/auto_backup/i18n/fr_CH.po
@@ -85,10 +85,20 @@ msgid "Basic backup configuration"
 msgstr ""
 
 #. module: auto_backup
-#: sql_constraint:db.backup:0
+#: model:ir.model.constraint,message:auto_backup.constraint_db_backup_name_unique
 msgid "Cannot duplicate a configuration."
 msgstr ""
 
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__changeset_change_ids
+msgid "Changeset Changes"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__changeset_ids
+msgid "Changesets"
+msgstr ""
+
 #. module: auto_backup
 #: model:ir.model.fields,help:auto_backup.field_db_backup__backup_format
 msgid "Choose the format for this backup."
@@ -100,23 +110,33 @@ msgid "Choose the storage method for this backup."
 msgstr ""
 
 #. module: auto_backup
-#: code:addons/auto_backup/models/db_backup.py:265
+#: code:addons/auto_backup/models/db_backup.py:0
 #, python-format
 msgid "Cleanup of old database backups failed."
 msgstr ""
 
 #. module: auto_backup
-#: code:addons/auto_backup/models/db_backup.py:137
+#: code:addons/auto_backup/models/db_backup.py:0
 #, python-format
 msgid "Connection Test Failed!"
 msgstr ""
 
 #. module: auto_backup
-#: code:addons/auto_backup/models/db_backup.py:132
+#: code:addons/auto_backup/models/db_backup.py:0
 #, python-format
 msgid "Connection Test Succeeded!"
 msgstr ""
 
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__count_pending_changeset_changes
+msgid "Count Pending Changeset Changes"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__count_pending_changesets
+msgid "Count Pending Changesets"
+msgstr ""
+
 #. module: auto_backup
 #: model:ir.model.fields,field_description:auto_backup.field_db_backup__create_uid
 msgid "Created by"
@@ -133,14 +153,14 @@ msgid "Database Backup"
 msgstr ""
 
 #. module: auto_backup
-#: code:addons/auto_backup/models/db_backup.py:219
+#: code:addons/auto_backup/models/db_backup.py:0
 #: model:mail.message.subtype,description:auto_backup.mail_message_subtype_failure
 #, python-format
 msgid "Database backup failed."
 msgstr ""
 
 #. module: auto_backup
-#: code:addons/auto_backup/models/db_backup.py:227
+#: code:addons/auto_backup/models/db_backup.py:0
 #: model:mail.message.subtype,description:auto_backup.mail_message_subtype_success
 #, python-format
 msgid "Database backup succeeded."
@@ -157,7 +177,7 @@ msgid "Display Name"
 msgstr "Nom affiché"
 
 #. module: auto_backup
-#: code:addons/auto_backup/models/db_backup.py:123
+#: code:addons/auto_backup/models/db_backup.py:0
 #, python-format
 msgid ""
 "Do not save backups on your filestore, or you will backup your backups too!"
@@ -204,7 +224,7 @@ msgid "Help"
 msgstr ""
 
 #. module: auto_backup
-#: sql_constraint:db.backup:0
+#: model:ir.model.constraint,message:auto_backup.constraint_db_backup_days_to_keep_positive
 msgid "I cannot remove backups from the future. Ask Doc for that."
 msgstr ""
 
@@ -213,18 +233,15 @@ msgstr ""
 msgid "ID"
 msgstr "ID"
 
-#. module: auto_backup
-#: model:ir.model.fields,help:auto_backup.field_db_backup__message_unread
-msgid "If checked new messages require your attention."
-msgstr ""
-
 #. module: auto_backup
 #: model:ir.model.fields,help:auto_backup.field_db_backup__message_needaction
+#: model:ir.model.fields,help:auto_backup.field_db_backup__message_unread
 msgid "If checked, new messages require your attention."
 msgstr ""
 
 #. module: auto_backup
 #: model:ir.model.fields,help:auto_backup.field_db_backup__message_has_error
+#: model:ir.model.fields,help:auto_backup.field_db_backup__message_has_sms_error
 msgid "If checked, some messages have a delivery error."
 msgstr ""
 
@@ -249,7 +266,7 @@ msgid "Last Updated on"
 msgstr "Modifié le"
 
 #. module: auto_backup
-#: selection:db.backup,method:0
+#: model:ir.model.fields.selection,name:auto_backup.selection__db_backup__method__local
 msgid "Local disk"
 msgstr ""
 
@@ -285,7 +302,7 @@ msgstr ""
 
 #. module: auto_backup
 #: model:ir.model.fields,field_description:auto_backup.field_db_backup__message_has_error_counter
-msgid "Number of error"
+msgid "Number of errors"
 msgstr ""
 
 #. module: auto_backup
@@ -316,7 +333,7 @@ msgid "Private key location"
 msgstr ""
 
 #. module: auto_backup
-#: selection:db.backup,method:0
+#: model:ir.model.fields.selection,name:auto_backup.selection__db_backup__method__sftp
 msgid "Remote SFTP server"
 msgstr ""
 
@@ -340,6 +357,11 @@ msgstr ""
 msgid "SFTP Settings"
 msgstr ""
 
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__message_has_sms_error
+msgid "SMS Delivery error"
+msgstr ""
+
 #. module: auto_backup
 #: model_terms:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
 msgid "Search the action named 'Backup scheduler'."
@@ -351,6 +373,11 @@ msgid ""
 "Set the scheduler to active and fill in how often you want backups generated."
 msgstr ""
 
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__smart_search
+msgid "Smart Search"
+msgstr ""
+
 #. module: auto_backup
 #: model:ir.model.fields,help:auto_backup.field_db_backup__name
 msgid "Summary of this backup process"
@@ -403,6 +430,11 @@ msgid ""
 "you specify."
 msgstr ""
 
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__user_can_see_changeset
+msgid "User Can See Changeset"
+msgstr ""
+
 #. module: auto_backup
 #: model:ir.model.fields,field_description:auto_backup.field_db_backup__sftp_user
 msgid "Username in the SFTP Server"
@@ -429,7 +461,7 @@ msgid "john"
 msgstr ""
 
 #. module: auto_backup
-#: selection:db.backup,backup_format:0
+#: model:ir.model.fields.selection,name:auto_backup.selection__db_backup__backup_format__dump
 msgid "pg_dump custom format (without filestore)"
 msgstr ""
 
@@ -439,6 +471,6 @@ msgid "sftp.example.com"
 msgstr ""
 
 #. module: auto_backup
-#: selection:db.backup,backup_format:0
+#: model:ir.model.fields.selection,name:auto_backup.selection__db_backup__backup_format__zip
 msgid "zip (includes filestore)"
 msgstr ""
diff --git a/auto_backup/i18n/gl.po b/auto_backup/i18n/gl.po
index 0cd9ec90fef..8a99f29eaa7 100644
--- a/auto_backup/i18n/gl.po
+++ b/auto_backup/i18n/gl.po
@@ -84,10 +84,20 @@ msgid "Basic backup configuration"
 msgstr ""
 
 #. module: auto_backup
-#: sql_constraint:db.backup:0
+#: model:ir.model.constraint,message:auto_backup.constraint_db_backup_name_unique
 msgid "Cannot duplicate a configuration."
 msgstr ""
 
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__changeset_change_ids
+msgid "Changeset Changes"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__changeset_ids
+msgid "Changesets"
+msgstr ""
+
 #. module: auto_backup
 #: model:ir.model.fields,help:auto_backup.field_db_backup__backup_format
 msgid "Choose the format for this backup."
@@ -99,23 +109,33 @@ msgid "Choose the storage method for this backup."
 msgstr ""
 
 #. module: auto_backup
-#: code:addons/auto_backup/models/db_backup.py:265
+#: code:addons/auto_backup/models/db_backup.py:0
 #, python-format
 msgid "Cleanup of old database backups failed."
 msgstr ""
 
 #. module: auto_backup
-#: code:addons/auto_backup/models/db_backup.py:137
+#: code:addons/auto_backup/models/db_backup.py:0
 #, python-format
 msgid "Connection Test Failed!"
 msgstr ""
 
 #. module: auto_backup
-#: code:addons/auto_backup/models/db_backup.py:132
+#: code:addons/auto_backup/models/db_backup.py:0
 #, python-format
 msgid "Connection Test Succeeded!"
 msgstr ""
 
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__count_pending_changeset_changes
+msgid "Count Pending Changeset Changes"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__count_pending_changesets
+msgid "Count Pending Changesets"
+msgstr ""
+
 #. module: auto_backup
 #: model:ir.model.fields,field_description:auto_backup.field_db_backup__create_uid
 msgid "Created by"
@@ -132,14 +152,14 @@ msgid "Database Backup"
 msgstr ""
 
 #. module: auto_backup
-#: code:addons/auto_backup/models/db_backup.py:219
+#: code:addons/auto_backup/models/db_backup.py:0
 #: model:mail.message.subtype,description:auto_backup.mail_message_subtype_failure
 #, python-format
 msgid "Database backup failed."
 msgstr ""
 
 #. module: auto_backup
-#: code:addons/auto_backup/models/db_backup.py:227
+#: code:addons/auto_backup/models/db_backup.py:0
 #: model:mail.message.subtype,description:auto_backup.mail_message_subtype_success
 #, python-format
 msgid "Database backup succeeded."
@@ -156,7 +176,7 @@ msgid "Display Name"
 msgstr ""
 
 #. module: auto_backup
-#: code:addons/auto_backup/models/db_backup.py:123
+#: code:addons/auto_backup/models/db_backup.py:0
 #, python-format
 msgid ""
 "Do not save backups on your filestore, or you will backup your backups too!"
@@ -203,7 +223,7 @@ msgid "Help"
 msgstr ""
 
 #. module: auto_backup
-#: sql_constraint:db.backup:0
+#: model:ir.model.constraint,message:auto_backup.constraint_db_backup_days_to_keep_positive
 msgid "I cannot remove backups from the future. Ask Doc for that."
 msgstr ""
 
@@ -212,18 +232,15 @@ msgstr ""
 msgid "ID"
 msgstr "ID"
 
-#. module: auto_backup
-#: model:ir.model.fields,help:auto_backup.field_db_backup__message_unread
-msgid "If checked new messages require your attention."
-msgstr ""
-
 #. module: auto_backup
 #: model:ir.model.fields,help:auto_backup.field_db_backup__message_needaction
+#: model:ir.model.fields,help:auto_backup.field_db_backup__message_unread
 msgid "If checked, new messages require your attention."
 msgstr ""
 
 #. module: auto_backup
 #: model:ir.model.fields,help:auto_backup.field_db_backup__message_has_error
+#: model:ir.model.fields,help:auto_backup.field_db_backup__message_has_sms_error
 msgid "If checked, some messages have a delivery error."
 msgstr ""
 
@@ -248,7 +265,7 @@ msgid "Last Updated on"
 msgstr "Última actualización"
 
 #. module: auto_backup
-#: selection:db.backup,method:0
+#: model:ir.model.fields.selection,name:auto_backup.selection__db_backup__method__local
 msgid "Local disk"
 msgstr ""
 
@@ -284,7 +301,7 @@ msgstr ""
 
 #. module: auto_backup
 #: model:ir.model.fields,field_description:auto_backup.field_db_backup__message_has_error_counter
-msgid "Number of error"
+msgid "Number of errors"
 msgstr ""
 
 #. module: auto_backup
@@ -315,7 +332,7 @@ msgid "Private key location"
 msgstr ""
 
 #. module: auto_backup
-#: selection:db.backup,method:0
+#: model:ir.model.fields.selection,name:auto_backup.selection__db_backup__method__sftp
 msgid "Remote SFTP server"
 msgstr ""
 
@@ -339,6 +356,11 @@ msgstr ""
 msgid "SFTP Settings"
 msgstr ""
 
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__message_has_sms_error
+msgid "SMS Delivery error"
+msgstr ""
+
 #. module: auto_backup
 #: model_terms:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
 msgid "Search the action named 'Backup scheduler'."
@@ -350,6 +372,11 @@ msgid ""
 "Set the scheduler to active and fill in how often you want backups generated."
 msgstr ""
 
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__smart_search
+msgid "Smart Search"
+msgstr ""
+
 #. module: auto_backup
 #: model:ir.model.fields,help:auto_backup.field_db_backup__name
 msgid "Summary of this backup process"
@@ -402,6 +429,11 @@ msgid ""
 "you specify."
 msgstr ""
 
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__user_can_see_changeset
+msgid "User Can See Changeset"
+msgstr ""
+
 #. module: auto_backup
 #: model:ir.model.fields,field_description:auto_backup.field_db_backup__sftp_user
 msgid "Username in the SFTP Server"
@@ -428,7 +460,7 @@ msgid "john"
 msgstr ""
 
 #. module: auto_backup
-#: selection:db.backup,backup_format:0
+#: model:ir.model.fields.selection,name:auto_backup.selection__db_backup__backup_format__dump
 msgid "pg_dump custom format (without filestore)"
 msgstr ""
 
@@ -438,6 +470,6 @@ msgid "sftp.example.com"
 msgstr ""
 
 #. module: auto_backup
-#: selection:db.backup,backup_format:0
+#: model:ir.model.fields.selection,name:auto_backup.selection__db_backup__backup_format__zip
 msgid "zip (includes filestore)"
 msgstr ""
diff --git a/auto_backup/i18n/gl_ES.po b/auto_backup/i18n/gl_ES.po
index e98c2d49c81..b0ac1c57095 100644
--- a/auto_backup/i18n/gl_ES.po
+++ b/auto_backup/i18n/gl_ES.po
@@ -85,10 +85,20 @@ msgid "Basic backup configuration"
 msgstr ""
 
 #. module: auto_backup
-#: sql_constraint:db.backup:0
+#: model:ir.model.constraint,message:auto_backup.constraint_db_backup_name_unique
 msgid "Cannot duplicate a configuration."
 msgstr ""
 
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__changeset_change_ids
+msgid "Changeset Changes"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__changeset_ids
+msgid "Changesets"
+msgstr ""
+
 #. module: auto_backup
 #: model:ir.model.fields,help:auto_backup.field_db_backup__backup_format
 msgid "Choose the format for this backup."
@@ -100,23 +110,33 @@ msgid "Choose the storage method for this backup."
 msgstr ""
 
 #. module: auto_backup
-#: code:addons/auto_backup/models/db_backup.py:265
+#: code:addons/auto_backup/models/db_backup.py:0
 #, python-format
 msgid "Cleanup of old database backups failed."
 msgstr ""
 
 #. module: auto_backup
-#: code:addons/auto_backup/models/db_backup.py:137
+#: code:addons/auto_backup/models/db_backup.py:0
 #, python-format
 msgid "Connection Test Failed!"
 msgstr ""
 
 #. module: auto_backup
-#: code:addons/auto_backup/models/db_backup.py:132
+#: code:addons/auto_backup/models/db_backup.py:0
 #, python-format
 msgid "Connection Test Succeeded!"
 msgstr ""
 
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__count_pending_changeset_changes
+msgid "Count Pending Changeset Changes"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__count_pending_changesets
+msgid "Count Pending Changesets"
+msgstr ""
+
 #. module: auto_backup
 #: model:ir.model.fields,field_description:auto_backup.field_db_backup__create_uid
 msgid "Created by"
@@ -133,14 +153,14 @@ msgid "Database Backup"
 msgstr ""
 
 #. module: auto_backup
-#: code:addons/auto_backup/models/db_backup.py:219
+#: code:addons/auto_backup/models/db_backup.py:0
 #: model:mail.message.subtype,description:auto_backup.mail_message_subtype_failure
 #, python-format
 msgid "Database backup failed."
 msgstr ""
 
 #. module: auto_backup
-#: code:addons/auto_backup/models/db_backup.py:227
+#: code:addons/auto_backup/models/db_backup.py:0
 #: model:mail.message.subtype,description:auto_backup.mail_message_subtype_success
 #, python-format
 msgid "Database backup succeeded."
@@ -157,7 +177,7 @@ msgid "Display Name"
 msgstr ""
 
 #. module: auto_backup
-#: code:addons/auto_backup/models/db_backup.py:123
+#: code:addons/auto_backup/models/db_backup.py:0
 #, python-format
 msgid ""
 "Do not save backups on your filestore, or you will backup your backups too!"
@@ -204,7 +224,7 @@ msgid "Help"
 msgstr ""
 
 #. module: auto_backup
-#: sql_constraint:db.backup:0
+#: model:ir.model.constraint,message:auto_backup.constraint_db_backup_days_to_keep_positive
 msgid "I cannot remove backups from the future. Ask Doc for that."
 msgstr ""
 
@@ -213,18 +233,15 @@ msgstr ""
 msgid "ID"
 msgstr "ID"
 
-#. module: auto_backup
-#: model:ir.model.fields,help:auto_backup.field_db_backup__message_unread
-msgid "If checked new messages require your attention."
-msgstr ""
-
 #. module: auto_backup
 #: model:ir.model.fields,help:auto_backup.field_db_backup__message_needaction
+#: model:ir.model.fields,help:auto_backup.field_db_backup__message_unread
 msgid "If checked, new messages require your attention."
 msgstr ""
 
 #. module: auto_backup
 #: model:ir.model.fields,help:auto_backup.field_db_backup__message_has_error
+#: model:ir.model.fields,help:auto_backup.field_db_backup__message_has_sms_error
 msgid "If checked, some messages have a delivery error."
 msgstr ""
 
@@ -249,7 +266,7 @@ msgid "Last Updated on"
 msgstr ""
 
 #. module: auto_backup
-#: selection:db.backup,method:0
+#: model:ir.model.fields.selection,name:auto_backup.selection__db_backup__method__local
 msgid "Local disk"
 msgstr ""
 
@@ -285,7 +302,7 @@ msgstr ""
 
 #. module: auto_backup
 #: model:ir.model.fields,field_description:auto_backup.field_db_backup__message_has_error_counter
-msgid "Number of error"
+msgid "Number of errors"
 msgstr ""
 
 #. module: auto_backup
@@ -316,7 +333,7 @@ msgid "Private key location"
 msgstr ""
 
 #. module: auto_backup
-#: selection:db.backup,method:0
+#: model:ir.model.fields.selection,name:auto_backup.selection__db_backup__method__sftp
 msgid "Remote SFTP server"
 msgstr ""
 
@@ -340,6 +357,11 @@ msgstr ""
 msgid "SFTP Settings"
 msgstr ""
 
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__message_has_sms_error
+msgid "SMS Delivery error"
+msgstr ""
+
 #. module: auto_backup
 #: model_terms:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
 msgid "Search the action named 'Backup scheduler'."
@@ -351,6 +373,11 @@ msgid ""
 "Set the scheduler to active and fill in how often you want backups generated."
 msgstr ""
 
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__smart_search
+msgid "Smart Search"
+msgstr ""
+
 #. module: auto_backup
 #: model:ir.model.fields,help:auto_backup.field_db_backup__name
 msgid "Summary of this backup process"
@@ -403,6 +430,11 @@ msgid ""
 "you specify."
 msgstr ""
 
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__user_can_see_changeset
+msgid "User Can See Changeset"
+msgstr ""
+
 #. module: auto_backup
 #: model:ir.model.fields,field_description:auto_backup.field_db_backup__sftp_user
 msgid "Username in the SFTP Server"
@@ -429,7 +461,7 @@ msgid "john"
 msgstr ""
 
 #. module: auto_backup
-#: selection:db.backup,backup_format:0
+#: model:ir.model.fields.selection,name:auto_backup.selection__db_backup__backup_format__dump
 msgid "pg_dump custom format (without filestore)"
 msgstr ""
 
@@ -439,6 +471,6 @@ msgid "sftp.example.com"
 msgstr ""
 
 #. module: auto_backup
-#: selection:db.backup,backup_format:0
+#: model:ir.model.fields.selection,name:auto_backup.selection__db_backup__backup_format__zip
 msgid "zip (includes filestore)"
 msgstr ""
diff --git a/auto_backup/i18n/he.po b/auto_backup/i18n/he.po
index d4ba1f0a9d3..b73fce00c43 100644
--- a/auto_backup/i18n/he.po
+++ b/auto_backup/i18n/he.po
@@ -84,10 +84,20 @@ msgid "Basic backup configuration"
 msgstr ""
 
 #. module: auto_backup
-#: sql_constraint:db.backup:0
+#: model:ir.model.constraint,message:auto_backup.constraint_db_backup_name_unique
 msgid "Cannot duplicate a configuration."
 msgstr ""
 
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__changeset_change_ids
+msgid "Changeset Changes"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__changeset_ids
+msgid "Changesets"
+msgstr ""
+
 #. module: auto_backup
 #: model:ir.model.fields,help:auto_backup.field_db_backup__backup_format
 msgid "Choose the format for this backup."
@@ -99,23 +109,33 @@ msgid "Choose the storage method for this backup."
 msgstr ""
 
 #. module: auto_backup
-#: code:addons/auto_backup/models/db_backup.py:265
+#: code:addons/auto_backup/models/db_backup.py:0
 #, python-format
 msgid "Cleanup of old database backups failed."
 msgstr ""
 
 #. module: auto_backup
-#: code:addons/auto_backup/models/db_backup.py:137
+#: code:addons/auto_backup/models/db_backup.py:0
 #, python-format
 msgid "Connection Test Failed!"
 msgstr ""
 
 #. module: auto_backup
-#: code:addons/auto_backup/models/db_backup.py:132
+#: code:addons/auto_backup/models/db_backup.py:0
 #, python-format
 msgid "Connection Test Succeeded!"
 msgstr ""
 
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__count_pending_changeset_changes
+msgid "Count Pending Changeset Changes"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__count_pending_changesets
+msgid "Count Pending Changesets"
+msgstr ""
+
 #. module: auto_backup
 #: model:ir.model.fields,field_description:auto_backup.field_db_backup__create_uid
 msgid "Created by"
@@ -132,14 +152,14 @@ msgid "Database Backup"
 msgstr ""
 
 #. module: auto_backup
-#: code:addons/auto_backup/models/db_backup.py:219
+#: code:addons/auto_backup/models/db_backup.py:0
 #: model:mail.message.subtype,description:auto_backup.mail_message_subtype_failure
 #, python-format
 msgid "Database backup failed."
 msgstr ""
 
 #. module: auto_backup
-#: code:addons/auto_backup/models/db_backup.py:227
+#: code:addons/auto_backup/models/db_backup.py:0
 #: model:mail.message.subtype,description:auto_backup.mail_message_subtype_success
 #, python-format
 msgid "Database backup succeeded."
@@ -156,7 +176,7 @@ msgid "Display Name"
 msgstr "השם המוצג"
 
 #. module: auto_backup
-#: code:addons/auto_backup/models/db_backup.py:123
+#: code:addons/auto_backup/models/db_backup.py:0
 #, python-format
 msgid ""
 "Do not save backups on your filestore, or you will backup your backups too!"
@@ -203,7 +223,7 @@ msgid "Help"
 msgstr ""
 
 #. module: auto_backup
-#: sql_constraint:db.backup:0
+#: model:ir.model.constraint,message:auto_backup.constraint_db_backup_days_to_keep_positive
 msgid "I cannot remove backups from the future. Ask Doc for that."
 msgstr ""
 
@@ -212,18 +232,15 @@ msgstr ""
 msgid "ID"
 msgstr "מזהה"
 
-#. module: auto_backup
-#: model:ir.model.fields,help:auto_backup.field_db_backup__message_unread
-msgid "If checked new messages require your attention."
-msgstr ""
-
 #. module: auto_backup
 #: model:ir.model.fields,help:auto_backup.field_db_backup__message_needaction
+#: model:ir.model.fields,help:auto_backup.field_db_backup__message_unread
 msgid "If checked, new messages require your attention."
 msgstr ""
 
 #. module: auto_backup
 #: model:ir.model.fields,help:auto_backup.field_db_backup__message_has_error
+#: model:ir.model.fields,help:auto_backup.field_db_backup__message_has_sms_error
 msgid "If checked, some messages have a delivery error."
 msgstr ""
 
@@ -248,7 +265,7 @@ msgid "Last Updated on"
 msgstr "עודכן לאחרונה על"
 
 #. module: auto_backup
-#: selection:db.backup,method:0
+#: model:ir.model.fields.selection,name:auto_backup.selection__db_backup__method__local
 msgid "Local disk"
 msgstr ""
 
@@ -284,7 +301,7 @@ msgstr ""
 
 #. module: auto_backup
 #: model:ir.model.fields,field_description:auto_backup.field_db_backup__message_has_error_counter
-msgid "Number of error"
+msgid "Number of errors"
 msgstr ""
 
 #. module: auto_backup
@@ -315,7 +332,7 @@ msgid "Private key location"
 msgstr ""
 
 #. module: auto_backup
-#: selection:db.backup,method:0
+#: model:ir.model.fields.selection,name:auto_backup.selection__db_backup__method__sftp
 msgid "Remote SFTP server"
 msgstr ""
 
@@ -339,6 +356,11 @@ msgstr ""
 msgid "SFTP Settings"
 msgstr ""
 
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__message_has_sms_error
+msgid "SMS Delivery error"
+msgstr ""
+
 #. module: auto_backup
 #: model_terms:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
 msgid "Search the action named 'Backup scheduler'."
@@ -350,6 +372,11 @@ msgid ""
 "Set the scheduler to active and fill in how often you want backups generated."
 msgstr ""
 
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__smart_search
+msgid "Smart Search"
+msgstr ""
+
 #. module: auto_backup
 #: model:ir.model.fields,help:auto_backup.field_db_backup__name
 msgid "Summary of this backup process"
@@ -402,6 +429,11 @@ msgid ""
 "you specify."
 msgstr ""
 
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__user_can_see_changeset
+msgid "User Can See Changeset"
+msgstr ""
+
 #. module: auto_backup
 #: model:ir.model.fields,field_description:auto_backup.field_db_backup__sftp_user
 msgid "Username in the SFTP Server"
@@ -428,7 +460,7 @@ msgid "john"
 msgstr ""
 
 #. module: auto_backup
-#: selection:db.backup,backup_format:0
+#: model:ir.model.fields.selection,name:auto_backup.selection__db_backup__backup_format__dump
 msgid "pg_dump custom format (without filestore)"
 msgstr ""
 
@@ -438,6 +470,6 @@ msgid "sftp.example.com"
 msgstr ""
 
 #. module: auto_backup
-#: selection:db.backup,backup_format:0
+#: model:ir.model.fields.selection,name:auto_backup.selection__db_backup__backup_format__zip
 msgid "zip (includes filestore)"
 msgstr ""
diff --git a/auto_backup/i18n/hr.po b/auto_backup/i18n/hr.po
index 2a846f817ba..07dbd8ec5dc 100644
--- a/auto_backup/i18n/hr.po
+++ b/auto_backup/i18n/hr.po
@@ -16,8 +16,8 @@ msgstr ""
 "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"
+"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"
 "X-Generator: Weblate 3.8\n"
 
 #. module: auto_backup
@@ -86,10 +86,20 @@ msgid "Basic backup configuration"
 msgstr "Osnovne postavke backupa"
 
 #. module: auto_backup
-#: sql_constraint:db.backup:0
+#: model:ir.model.constraint,message:auto_backup.constraint_db_backup_name_unique
 msgid "Cannot duplicate a configuration."
 msgstr "Nije moguće dupliciranje postavki."
 
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__changeset_change_ids
+msgid "Changeset Changes"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__changeset_ids
+msgid "Changesets"
+msgstr ""
+
 #. module: auto_backup
 #: model:ir.model.fields,help:auto_backup.field_db_backup__backup_format
 msgid "Choose the format for this backup."
@@ -101,23 +111,33 @@ msgid "Choose the storage method for this backup."
 msgstr "Odaberite metodu pohrane za ovaj backup."
 
 #. module: auto_backup
-#: code:addons/auto_backup/models/db_backup.py:265
+#: code:addons/auto_backup/models/db_backup.py:0
 #, python-format
 msgid "Cleanup of old database backups failed."
 msgstr "Čišćenje starih backup datoteka nije uspjelo."
 
 #. module: auto_backup
-#: code:addons/auto_backup/models/db_backup.py:137
+#: code:addons/auto_backup/models/db_backup.py:0
 #, python-format
 msgid "Connection Test Failed!"
 msgstr "Provjera povezivanja nije uspjela!"
 
 #. module: auto_backup
-#: code:addons/auto_backup/models/db_backup.py:132
+#: code:addons/auto_backup/models/db_backup.py:0
 #, python-format
 msgid "Connection Test Succeeded!"
 msgstr "Provjera povezivanja uspješna!"
 
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__count_pending_changeset_changes
+msgid "Count Pending Changeset Changes"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__count_pending_changesets
+msgid "Count Pending Changesets"
+msgstr ""
+
 #. module: auto_backup
 #: model:ir.model.fields,field_description:auto_backup.field_db_backup__create_uid
 msgid "Created by"
@@ -134,14 +154,14 @@ msgid "Database Backup"
 msgstr "Backup baze"
 
 #. module: auto_backup
-#: code:addons/auto_backup/models/db_backup.py:219
+#: code:addons/auto_backup/models/db_backup.py:0
 #: model:mail.message.subtype,description:auto_backup.mail_message_subtype_failure
 #, python-format
 msgid "Database backup failed."
 msgstr "Backup baze nije uspio."
 
 #. module: auto_backup
-#: code:addons/auto_backup/models/db_backup.py:227
+#: code:addons/auto_backup/models/db_backup.py:0
 #: model:mail.message.subtype,description:auto_backup.mail_message_subtype_success
 #, python-format
 msgid "Database backup succeeded."
@@ -158,7 +178,7 @@ msgid "Display Name"
 msgstr "Prikaži naziv"
 
 #. module: auto_backup
-#: code:addons/auto_backup/models/db_backup.py:123
+#: code:addons/auto_backup/models/db_backup.py:0
 #, python-format
 msgid ""
 "Do not save backups on your filestore, or you will backup your backups too!"
@@ -207,7 +227,7 @@ msgid "Help"
 msgstr "Pomoć"
 
 #. module: auto_backup
-#: sql_constraint:db.backup:0
+#: model:ir.model.constraint,message:auto_backup.constraint_db_backup_days_to_keep_positive
 msgid "I cannot remove backups from the future. Ask Doc for that."
 msgstr ""
 
@@ -216,18 +236,15 @@ msgstr ""
 msgid "ID"
 msgstr "ID"
 
-#. module: auto_backup
-#: model:ir.model.fields,help:auto_backup.field_db_backup__message_unread
-msgid "If checked new messages require your attention."
-msgstr ""
-
 #. module: auto_backup
 #: model:ir.model.fields,help:auto_backup.field_db_backup__message_needaction
+#: model:ir.model.fields,help:auto_backup.field_db_backup__message_unread
 msgid "If checked, new messages require your attention."
 msgstr ""
 
 #. module: auto_backup
 #: model:ir.model.fields,help:auto_backup.field_db_backup__message_has_error
+#: model:ir.model.fields,help:auto_backup.field_db_backup__message_has_sms_error
 msgid "If checked, some messages have a delivery error."
 msgstr ""
 
@@ -252,7 +269,7 @@ msgid "Last Updated on"
 msgstr "Zadnje ažuriranje na"
 
 #. module: auto_backup
-#: selection:db.backup,method:0
+#: model:ir.model.fields.selection,name:auto_backup.selection__db_backup__method__local
 msgid "Local disk"
 msgstr "Lokalni disk"
 
@@ -288,7 +305,7 @@ msgstr ""
 
 #. module: auto_backup
 #: model:ir.model.fields,field_description:auto_backup.field_db_backup__message_has_error_counter
-msgid "Number of error"
+msgid "Number of errors"
 msgstr ""
 
 #. module: auto_backup
@@ -319,7 +336,7 @@ msgid "Private key location"
 msgstr "Lokacija privatnog ključa"
 
 #. module: auto_backup
-#: selection:db.backup,method:0
+#: model:ir.model.fields.selection,name:auto_backup.selection__db_backup__method__sftp
 msgid "Remote SFTP server"
 msgstr "Udaljeni SFTP poslužitelj"
 
@@ -343,6 +360,11 @@ msgstr "SFTP Server"
 msgid "SFTP Settings"
 msgstr "SFTP Postavke"
 
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__message_has_sms_error
+msgid "SMS Delivery error"
+msgstr ""
+
 #. module: auto_backup
 #: model_terms:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
 msgid "Search the action named 'Backup scheduler'."
@@ -354,6 +376,11 @@ msgid ""
 "Set the scheduler to active and fill in how often you want backups generated."
 msgstr ""
 
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__smart_search
+msgid "Smart Search"
+msgstr ""
+
 #. module: auto_backup
 #: model:ir.model.fields,help:auto_backup.field_db_backup__name
 msgid "Summary of this backup process"
@@ -406,6 +433,11 @@ msgid ""
 "you specify."
 msgstr ""
 
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__user_can_see_changeset
+msgid "User Can See Changeset"
+msgstr ""
+
 #. module: auto_backup
 #: model:ir.model.fields,field_description:auto_backup.field_db_backup__sftp_user
 msgid "Username in the SFTP Server"
@@ -432,7 +464,7 @@ msgid "john"
 msgstr ""
 
 #. module: auto_backup
-#: selection:db.backup,backup_format:0
+#: model:ir.model.fields.selection,name:auto_backup.selection__db_backup__backup_format__dump
 msgid "pg_dump custom format (without filestore)"
 msgstr ""
 
@@ -442,6 +474,6 @@ msgid "sftp.example.com"
 msgstr ""
 
 #. module: auto_backup
-#: selection:db.backup,backup_format:0
+#: model:ir.model.fields.selection,name:auto_backup.selection__db_backup__backup_format__zip
 msgid "zip (includes filestore)"
 msgstr ""
diff --git a/auto_backup/i18n/hr_HR.po b/auto_backup/i18n/hr_HR.po
index ff0aec44a7c..9e0939fb9a4 100644
--- a/auto_backup/i18n/hr_HR.po
+++ b/auto_backup/i18n/hr_HR.po
@@ -86,10 +86,20 @@ msgid "Basic backup configuration"
 msgstr ""
 
 #. module: auto_backup
-#: sql_constraint:db.backup:0
+#: model:ir.model.constraint,message:auto_backup.constraint_db_backup_name_unique
 msgid "Cannot duplicate a configuration."
 msgstr ""
 
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__changeset_change_ids
+msgid "Changeset Changes"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__changeset_ids
+msgid "Changesets"
+msgstr ""
+
 #. module: auto_backup
 #: model:ir.model.fields,help:auto_backup.field_db_backup__backup_format
 msgid "Choose the format for this backup."
@@ -101,23 +111,33 @@ msgid "Choose the storage method for this backup."
 msgstr ""
 
 #. module: auto_backup
-#: code:addons/auto_backup/models/db_backup.py:265
+#: code:addons/auto_backup/models/db_backup.py:0
 #, python-format
 msgid "Cleanup of old database backups failed."
 msgstr ""
 
 #. module: auto_backup
-#: code:addons/auto_backup/models/db_backup.py:137
+#: code:addons/auto_backup/models/db_backup.py:0
 #, python-format
 msgid "Connection Test Failed!"
 msgstr ""
 
 #. module: auto_backup
-#: code:addons/auto_backup/models/db_backup.py:132
+#: code:addons/auto_backup/models/db_backup.py:0
 #, python-format
 msgid "Connection Test Succeeded!"
 msgstr ""
 
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__count_pending_changeset_changes
+msgid "Count Pending Changeset Changes"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__count_pending_changesets
+msgid "Count Pending Changesets"
+msgstr ""
+
 #. module: auto_backup
 #: model:ir.model.fields,field_description:auto_backup.field_db_backup__create_uid
 msgid "Created by"
@@ -134,14 +154,14 @@ msgid "Database Backup"
 msgstr ""
 
 #. module: auto_backup
-#: code:addons/auto_backup/models/db_backup.py:219
+#: code:addons/auto_backup/models/db_backup.py:0
 #: model:mail.message.subtype,description:auto_backup.mail_message_subtype_failure
 #, python-format
 msgid "Database backup failed."
 msgstr ""
 
 #. module: auto_backup
-#: code:addons/auto_backup/models/db_backup.py:227
+#: code:addons/auto_backup/models/db_backup.py:0
 #: model:mail.message.subtype,description:auto_backup.mail_message_subtype_success
 #, python-format
 msgid "Database backup succeeded."
@@ -158,7 +178,7 @@ msgid "Display Name"
 msgstr "Naziv"
 
 #. module: auto_backup
-#: code:addons/auto_backup/models/db_backup.py:123
+#: code:addons/auto_backup/models/db_backup.py:0
 #, python-format
 msgid ""
 "Do not save backups on your filestore, or you will backup your backups too!"
@@ -205,7 +225,7 @@ msgid "Help"
 msgstr ""
 
 #. module: auto_backup
-#: sql_constraint:db.backup:0
+#: model:ir.model.constraint,message:auto_backup.constraint_db_backup_days_to_keep_positive
 msgid "I cannot remove backups from the future. Ask Doc for that."
 msgstr ""
 
@@ -214,18 +234,15 @@ msgstr ""
 msgid "ID"
 msgstr "ID"
 
-#. module: auto_backup
-#: model:ir.model.fields,help:auto_backup.field_db_backup__message_unread
-msgid "If checked new messages require your attention."
-msgstr ""
-
 #. module: auto_backup
 #: model:ir.model.fields,help:auto_backup.field_db_backup__message_needaction
+#: model:ir.model.fields,help:auto_backup.field_db_backup__message_unread
 msgid "If checked, new messages require your attention."
 msgstr ""
 
 #. module: auto_backup
 #: model:ir.model.fields,help:auto_backup.field_db_backup__message_has_error
+#: model:ir.model.fields,help:auto_backup.field_db_backup__message_has_sms_error
 msgid "If checked, some messages have a delivery error."
 msgstr ""
 
@@ -250,7 +267,7 @@ msgid "Last Updated on"
 msgstr "Zadnje ažurirano"
 
 #. module: auto_backup
-#: selection:db.backup,method:0
+#: model:ir.model.fields.selection,name:auto_backup.selection__db_backup__method__local
 msgid "Local disk"
 msgstr ""
 
@@ -286,7 +303,7 @@ msgstr ""
 
 #. module: auto_backup
 #: model:ir.model.fields,field_description:auto_backup.field_db_backup__message_has_error_counter
-msgid "Number of error"
+msgid "Number of errors"
 msgstr ""
 
 #. module: auto_backup
@@ -317,7 +334,7 @@ msgid "Private key location"
 msgstr ""
 
 #. module: auto_backup
-#: selection:db.backup,method:0
+#: model:ir.model.fields.selection,name:auto_backup.selection__db_backup__method__sftp
 msgid "Remote SFTP server"
 msgstr ""
 
@@ -341,6 +358,11 @@ msgstr ""
 msgid "SFTP Settings"
 msgstr ""
 
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__message_has_sms_error
+msgid "SMS Delivery error"
+msgstr ""
+
 #. module: auto_backup
 #: model_terms:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
 msgid "Search the action named 'Backup scheduler'."
@@ -352,6 +374,11 @@ msgid ""
 "Set the scheduler to active and fill in how often you want backups generated."
 msgstr ""
 
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__smart_search
+msgid "Smart Search"
+msgstr ""
+
 #. module: auto_backup
 #: model:ir.model.fields,help:auto_backup.field_db_backup__name
 msgid "Summary of this backup process"
@@ -404,6 +431,11 @@ msgid ""
 "you specify."
 msgstr ""
 
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__user_can_see_changeset
+msgid "User Can See Changeset"
+msgstr ""
+
 #. module: auto_backup
 #: model:ir.model.fields,field_description:auto_backup.field_db_backup__sftp_user
 msgid "Username in the SFTP Server"
@@ -430,7 +462,7 @@ msgid "john"
 msgstr ""
 
 #. module: auto_backup
-#: selection:db.backup,backup_format:0
+#: model:ir.model.fields.selection,name:auto_backup.selection__db_backup__backup_format__dump
 msgid "pg_dump custom format (without filestore)"
 msgstr ""
 
@@ -440,6 +472,6 @@ msgid "sftp.example.com"
 msgstr ""
 
 #. module: auto_backup
-#: selection:db.backup,backup_format:0
+#: model:ir.model.fields.selection,name:auto_backup.selection__db_backup__backup_format__zip
 msgid "zip (includes filestore)"
 msgstr ""
diff --git a/auto_backup/i18n/hu.po b/auto_backup/i18n/hu.po
index e594550e6ee..e1db6d660f1 100644
--- a/auto_backup/i18n/hu.po
+++ b/auto_backup/i18n/hu.po
@@ -84,10 +84,20 @@ msgid "Basic backup configuration"
 msgstr ""
 
 #. module: auto_backup
-#: sql_constraint:db.backup:0
+#: model:ir.model.constraint,message:auto_backup.constraint_db_backup_name_unique
 msgid "Cannot duplicate a configuration."
 msgstr ""
 
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__changeset_change_ids
+msgid "Changeset Changes"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__changeset_ids
+msgid "Changesets"
+msgstr ""
+
 #. module: auto_backup
 #: model:ir.model.fields,help:auto_backup.field_db_backup__backup_format
 msgid "Choose the format for this backup."
@@ -99,23 +109,33 @@ msgid "Choose the storage method for this backup."
 msgstr ""
 
 #. module: auto_backup
-#: code:addons/auto_backup/models/db_backup.py:265
+#: code:addons/auto_backup/models/db_backup.py:0
 #, python-format
 msgid "Cleanup of old database backups failed."
 msgstr ""
 
 #. module: auto_backup
-#: code:addons/auto_backup/models/db_backup.py:137
+#: code:addons/auto_backup/models/db_backup.py:0
 #, python-format
 msgid "Connection Test Failed!"
 msgstr ""
 
 #. module: auto_backup
-#: code:addons/auto_backup/models/db_backup.py:132
+#: code:addons/auto_backup/models/db_backup.py:0
 #, python-format
 msgid "Connection Test Succeeded!"
 msgstr ""
 
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__count_pending_changeset_changes
+msgid "Count Pending Changeset Changes"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__count_pending_changesets
+msgid "Count Pending Changesets"
+msgstr ""
+
 #. module: auto_backup
 #: model:ir.model.fields,field_description:auto_backup.field_db_backup__create_uid
 msgid "Created by"
@@ -132,14 +152,14 @@ msgid "Database Backup"
 msgstr ""
 
 #. module: auto_backup
-#: code:addons/auto_backup/models/db_backup.py:219
+#: code:addons/auto_backup/models/db_backup.py:0
 #: model:mail.message.subtype,description:auto_backup.mail_message_subtype_failure
 #, python-format
 msgid "Database backup failed."
 msgstr ""
 
 #. module: auto_backup
-#: code:addons/auto_backup/models/db_backup.py:227
+#: code:addons/auto_backup/models/db_backup.py:0
 #: model:mail.message.subtype,description:auto_backup.mail_message_subtype_success
 #, python-format
 msgid "Database backup succeeded."
@@ -156,7 +176,7 @@ msgid "Display Name"
 msgstr "Név megjelenítése"
 
 #. module: auto_backup
-#: code:addons/auto_backup/models/db_backup.py:123
+#: code:addons/auto_backup/models/db_backup.py:0
 #, python-format
 msgid ""
 "Do not save backups on your filestore, or you will backup your backups too!"
@@ -203,7 +223,7 @@ msgid "Help"
 msgstr ""
 
 #. module: auto_backup
-#: sql_constraint:db.backup:0
+#: model:ir.model.constraint,message:auto_backup.constraint_db_backup_days_to_keep_positive
 msgid "I cannot remove backups from the future. Ask Doc for that."
 msgstr ""
 
@@ -212,18 +232,15 @@ msgstr ""
 msgid "ID"
 msgstr "Azonosító ID"
 
-#. module: auto_backup
-#: model:ir.model.fields,help:auto_backup.field_db_backup__message_unread
-msgid "If checked new messages require your attention."
-msgstr ""
-
 #. module: auto_backup
 #: model:ir.model.fields,help:auto_backup.field_db_backup__message_needaction
+#: model:ir.model.fields,help:auto_backup.field_db_backup__message_unread
 msgid "If checked, new messages require your attention."
 msgstr ""
 
 #. module: auto_backup
 #: model:ir.model.fields,help:auto_backup.field_db_backup__message_has_error
+#: model:ir.model.fields,help:auto_backup.field_db_backup__message_has_sms_error
 msgid "If checked, some messages have a delivery error."
 msgstr ""
 
@@ -248,7 +265,7 @@ msgid "Last Updated on"
 msgstr "Utoljára frissítve ekkor"
 
 #. module: auto_backup
-#: selection:db.backup,method:0
+#: model:ir.model.fields.selection,name:auto_backup.selection__db_backup__method__local
 msgid "Local disk"
 msgstr ""
 
@@ -284,7 +301,7 @@ msgstr ""
 
 #. module: auto_backup
 #: model:ir.model.fields,field_description:auto_backup.field_db_backup__message_has_error_counter
-msgid "Number of error"
+msgid "Number of errors"
 msgstr ""
 
 #. module: auto_backup
@@ -315,7 +332,7 @@ msgid "Private key location"
 msgstr ""
 
 #. module: auto_backup
-#: selection:db.backup,method:0
+#: model:ir.model.fields.selection,name:auto_backup.selection__db_backup__method__sftp
 msgid "Remote SFTP server"
 msgstr ""
 
@@ -339,6 +356,11 @@ msgstr ""
 msgid "SFTP Settings"
 msgstr ""
 
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__message_has_sms_error
+msgid "SMS Delivery error"
+msgstr ""
+
 #. module: auto_backup
 #: model_terms:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
 msgid "Search the action named 'Backup scheduler'."
@@ -350,6 +372,11 @@ msgid ""
 "Set the scheduler to active and fill in how often you want backups generated."
 msgstr ""
 
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__smart_search
+msgid "Smart Search"
+msgstr ""
+
 #. module: auto_backup
 #: model:ir.model.fields,help:auto_backup.field_db_backup__name
 msgid "Summary of this backup process"
@@ -402,6 +429,11 @@ msgid ""
 "you specify."
 msgstr ""
 
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__user_can_see_changeset
+msgid "User Can See Changeset"
+msgstr ""
+
 #. module: auto_backup
 #: model:ir.model.fields,field_description:auto_backup.field_db_backup__sftp_user
 msgid "Username in the SFTP Server"
@@ -428,7 +460,7 @@ msgid "john"
 msgstr ""
 
 #. module: auto_backup
-#: selection:db.backup,backup_format:0
+#: model:ir.model.fields.selection,name:auto_backup.selection__db_backup__backup_format__dump
 msgid "pg_dump custom format (without filestore)"
 msgstr ""
 
@@ -438,6 +470,6 @@ msgid "sftp.example.com"
 msgstr ""
 
 #. module: auto_backup
-#: selection:db.backup,backup_format:0
+#: model:ir.model.fields.selection,name:auto_backup.selection__db_backup__backup_format__zip
 msgid "zip (includes filestore)"
 msgstr ""
diff --git a/auto_backup/i18n/id.po b/auto_backup/i18n/id.po
index 77bd10c8e44..941a1c4ef90 100644
--- a/auto_backup/i18n/id.po
+++ b/auto_backup/i18n/id.po
@@ -84,10 +84,20 @@ msgid "Basic backup configuration"
 msgstr ""
 
 #. module: auto_backup
-#: sql_constraint:db.backup:0
+#: model:ir.model.constraint,message:auto_backup.constraint_db_backup_name_unique
 msgid "Cannot duplicate a configuration."
 msgstr ""
 
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__changeset_change_ids
+msgid "Changeset Changes"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__changeset_ids
+msgid "Changesets"
+msgstr ""
+
 #. module: auto_backup
 #: model:ir.model.fields,help:auto_backup.field_db_backup__backup_format
 msgid "Choose the format for this backup."
@@ -99,23 +109,33 @@ msgid "Choose the storage method for this backup."
 msgstr ""
 
 #. module: auto_backup
-#: code:addons/auto_backup/models/db_backup.py:265
+#: code:addons/auto_backup/models/db_backup.py:0
 #, python-format
 msgid "Cleanup of old database backups failed."
 msgstr ""
 
 #. module: auto_backup
-#: code:addons/auto_backup/models/db_backup.py:137
+#: code:addons/auto_backup/models/db_backup.py:0
 #, python-format
 msgid "Connection Test Failed!"
 msgstr ""
 
 #. module: auto_backup
-#: code:addons/auto_backup/models/db_backup.py:132
+#: code:addons/auto_backup/models/db_backup.py:0
 #, python-format
 msgid "Connection Test Succeeded!"
 msgstr ""
 
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__count_pending_changeset_changes
+msgid "Count Pending Changeset Changes"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__count_pending_changesets
+msgid "Count Pending Changesets"
+msgstr ""
+
 #. module: auto_backup
 #: model:ir.model.fields,field_description:auto_backup.field_db_backup__create_uid
 msgid "Created by"
@@ -132,14 +152,14 @@ msgid "Database Backup"
 msgstr ""
 
 #. module: auto_backup
-#: code:addons/auto_backup/models/db_backup.py:219
+#: code:addons/auto_backup/models/db_backup.py:0
 #: model:mail.message.subtype,description:auto_backup.mail_message_subtype_failure
 #, python-format
 msgid "Database backup failed."
 msgstr ""
 
 #. module: auto_backup
-#: code:addons/auto_backup/models/db_backup.py:227
+#: code:addons/auto_backup/models/db_backup.py:0
 #: model:mail.message.subtype,description:auto_backup.mail_message_subtype_success
 #, python-format
 msgid "Database backup succeeded."
@@ -156,7 +176,7 @@ msgid "Display Name"
 msgstr "Nama Tampilan"
 
 #. module: auto_backup
-#: code:addons/auto_backup/models/db_backup.py:123
+#: code:addons/auto_backup/models/db_backup.py:0
 #, python-format
 msgid ""
 "Do not save backups on your filestore, or you will backup your backups too!"
@@ -203,7 +223,7 @@ msgid "Help"
 msgstr ""
 
 #. module: auto_backup
-#: sql_constraint:db.backup:0
+#: model:ir.model.constraint,message:auto_backup.constraint_db_backup_days_to_keep_positive
 msgid "I cannot remove backups from the future. Ask Doc for that."
 msgstr ""
 
@@ -212,18 +232,15 @@ msgstr ""
 msgid "ID"
 msgstr "ID"
 
-#. module: auto_backup
-#: model:ir.model.fields,help:auto_backup.field_db_backup__message_unread
-msgid "If checked new messages require your attention."
-msgstr ""
-
 #. module: auto_backup
 #: model:ir.model.fields,help:auto_backup.field_db_backup__message_needaction
+#: model:ir.model.fields,help:auto_backup.field_db_backup__message_unread
 msgid "If checked, new messages require your attention."
 msgstr ""
 
 #. module: auto_backup
 #: model:ir.model.fields,help:auto_backup.field_db_backup__message_has_error
+#: model:ir.model.fields,help:auto_backup.field_db_backup__message_has_sms_error
 msgid "If checked, some messages have a delivery error."
 msgstr ""
 
@@ -248,7 +265,7 @@ msgid "Last Updated on"
 msgstr "Diperbaharui pada"
 
 #. module: auto_backup
-#: selection:db.backup,method:0
+#: model:ir.model.fields.selection,name:auto_backup.selection__db_backup__method__local
 msgid "Local disk"
 msgstr ""
 
@@ -284,7 +301,7 @@ msgstr ""
 
 #. module: auto_backup
 #: model:ir.model.fields,field_description:auto_backup.field_db_backup__message_has_error_counter
-msgid "Number of error"
+msgid "Number of errors"
 msgstr ""
 
 #. module: auto_backup
@@ -315,7 +332,7 @@ msgid "Private key location"
 msgstr ""
 
 #. module: auto_backup
-#: selection:db.backup,method:0
+#: model:ir.model.fields.selection,name:auto_backup.selection__db_backup__method__sftp
 msgid "Remote SFTP server"
 msgstr ""
 
@@ -339,6 +356,11 @@ msgstr ""
 msgid "SFTP Settings"
 msgstr ""
 
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__message_has_sms_error
+msgid "SMS Delivery error"
+msgstr ""
+
 #. module: auto_backup
 #: model_terms:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
 msgid "Search the action named 'Backup scheduler'."
@@ -350,6 +372,11 @@ msgid ""
 "Set the scheduler to active and fill in how often you want backups generated."
 msgstr ""
 
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__smart_search
+msgid "Smart Search"
+msgstr ""
+
 #. module: auto_backup
 #: model:ir.model.fields,help:auto_backup.field_db_backup__name
 msgid "Summary of this backup process"
@@ -402,6 +429,11 @@ msgid ""
 "you specify."
 msgstr ""
 
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__user_can_see_changeset
+msgid "User Can See Changeset"
+msgstr ""
+
 #. module: auto_backup
 #: model:ir.model.fields,field_description:auto_backup.field_db_backup__sftp_user
 msgid "Username in the SFTP Server"
@@ -428,7 +460,7 @@ msgid "john"
 msgstr ""
 
 #. module: auto_backup
-#: selection:db.backup,backup_format:0
+#: model:ir.model.fields.selection,name:auto_backup.selection__db_backup__backup_format__dump
 msgid "pg_dump custom format (without filestore)"
 msgstr ""
 
@@ -438,6 +470,6 @@ msgid "sftp.example.com"
 msgstr ""
 
 #. module: auto_backup
-#: selection:db.backup,backup_format:0
+#: model:ir.model.fields.selection,name:auto_backup.selection__db_backup__backup_format__zip
 msgid "zip (includes filestore)"
 msgstr ""
diff --git a/auto_backup/i18n/it.po b/auto_backup/i18n/it.po
index f947906d33f..d8090eabf56 100644
--- a/auto_backup/i18n/it.po
+++ b/auto_backup/i18n/it.po
@@ -87,10 +87,20 @@ msgid "Basic backup configuration"
 msgstr "Configurazione di base del Backup"
 
 #. module: auto_backup
-#: sql_constraint:db.backup:0
+#: model:ir.model.constraint,message:auto_backup.constraint_db_backup_name_unique
 msgid "Cannot duplicate a configuration."
 msgstr "Impossibile duplicare una configurazione."
 
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__changeset_change_ids
+msgid "Changeset Changes"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__changeset_ids
+msgid "Changesets"
+msgstr ""
+
 #. module: auto_backup
 #: model:ir.model.fields,help:auto_backup.field_db_backup__backup_format
 #, fuzzy
@@ -103,23 +113,33 @@ msgid "Choose the storage method for this backup."
 msgstr "Scegliere il tipo di archiviazione per questo metodo di backup. "
 
 #. module: auto_backup
-#: code:addons/auto_backup/models/db_backup.py:265
+#: code:addons/auto_backup/models/db_backup.py:0
 #, python-format
 msgid "Cleanup of old database backups failed."
 msgstr "Eliminazione dei vecchi backup di database non riuscita."
 
 #. module: auto_backup
-#: code:addons/auto_backup/models/db_backup.py:137
+#: code:addons/auto_backup/models/db_backup.py:0
 #, python-format
 msgid "Connection Test Failed!"
 msgstr "Test connessione Fallito!"
 
 #. module: auto_backup
-#: code:addons/auto_backup/models/db_backup.py:132
+#: code:addons/auto_backup/models/db_backup.py:0
 #, python-format
 msgid "Connection Test Succeeded!"
 msgstr "Test connessione avvenuto con successo!"
 
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__count_pending_changeset_changes
+msgid "Count Pending Changeset Changes"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__count_pending_changesets
+msgid "Count Pending Changesets"
+msgstr ""
+
 #. module: auto_backup
 #: model:ir.model.fields,field_description:auto_backup.field_db_backup__create_uid
 msgid "Created by"
@@ -136,14 +156,14 @@ msgid "Database Backup"
 msgstr ""
 
 #. module: auto_backup
-#: code:addons/auto_backup/models/db_backup.py:219
+#: code:addons/auto_backup/models/db_backup.py:0
 #: model:mail.message.subtype,description:auto_backup.mail_message_subtype_failure
 #, python-format
 msgid "Database backup failed."
 msgstr "Backup del Database non riuscito."
 
 #. module: auto_backup
-#: code:addons/auto_backup/models/db_backup.py:227
+#: code:addons/auto_backup/models/db_backup.py:0
 #: model:mail.message.subtype,description:auto_backup.mail_message_subtype_success
 #, python-format
 msgid "Database backup succeeded."
@@ -160,7 +180,7 @@ msgid "Display Name"
 msgstr "Nome da visualizzare"
 
 #. module: auto_backup
-#: code:addons/auto_backup/models/db_backup.py:123
+#: code:addons/auto_backup/models/db_backup.py:0
 #, python-format
 msgid ""
 "Do not save backups on your filestore, or you will backup your backups too!"
@@ -211,7 +231,7 @@ msgid "Help"
 msgstr "Aiuto"
 
 #. module: auto_backup
-#: sql_constraint:db.backup:0
+#: model:ir.model.constraint,message:auto_backup.constraint_db_backup_days_to_keep_positive
 msgid "I cannot remove backups from the future. Ask Doc for that."
 msgstr "Impossibile rimuovere backup dal futuro. Cercare nella Documentazione."
 
@@ -220,18 +240,15 @@ msgstr "Impossibile rimuovere backup dal futuro. Cercare nella Documentazione."
 msgid "ID"
 msgstr "ID"
 
-#. module: auto_backup
-#: model:ir.model.fields,help:auto_backup.field_db_backup__message_unread
-msgid "If checked new messages require your attention."
-msgstr ""
-
 #. module: auto_backup
 #: model:ir.model.fields,help:auto_backup.field_db_backup__message_needaction
+#: model:ir.model.fields,help:auto_backup.field_db_backup__message_unread
 msgid "If checked, new messages require your attention."
 msgstr ""
 
 #. module: auto_backup
 #: model:ir.model.fields,help:auto_backup.field_db_backup__message_has_error
+#: model:ir.model.fields,help:auto_backup.field_db_backup__message_has_sms_error
 msgid "If checked, some messages have a delivery error."
 msgstr ""
 
@@ -256,7 +273,7 @@ msgid "Last Updated on"
 msgstr "Ultimo aggiornamento il"
 
 #. module: auto_backup
-#: selection:db.backup,method:0
+#: model:ir.model.fields.selection,name:auto_backup.selection__db_backup__method__local
 msgid "Local disk"
 msgstr "Disco locale"
 
@@ -292,7 +309,7 @@ msgstr ""
 
 #. module: auto_backup
 #: model:ir.model.fields,field_description:auto_backup.field_db_backup__message_has_error_counter
-msgid "Number of error"
+msgid "Number of errors"
 msgstr ""
 
 #. module: auto_backup
@@ -325,7 +342,7 @@ msgid "Private key location"
 msgstr "Posizione chiave privata"
 
 #. module: auto_backup
-#: selection:db.backup,method:0
+#: model:ir.model.fields.selection,name:auto_backup.selection__db_backup__method__sftp
 msgid "Remote SFTP server"
 msgstr "Server SFTP remoto"
 
@@ -349,6 +366,11 @@ msgstr "Server SFTP"
 msgid "SFTP Settings"
 msgstr "Impostazioni SFTP"
 
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__message_has_sms_error
+msgid "SMS Delivery error"
+msgstr ""
+
 #. module: auto_backup
 #: model_terms:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
 msgid "Search the action named 'Backup scheduler'."
@@ -362,6 +384,11 @@ msgstr ""
 "Impostare lo scheduler per attivare e compilare la frequenza con cui si "
 "desidera generare il backup."
 
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__smart_search
+msgid "Smart Search"
+msgstr ""
+
 #. module: auto_backup
 #: model:ir.model.fields,help:auto_backup.field_db_backup__name
 msgid "Summary of this backup process"
@@ -420,6 +447,11 @@ msgstr ""
 "Usare SFTP con cautela! Questa modalità scrive file nel percorso specificato "
 "su server esterni."
 
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__user_can_see_changeset
+msgid "User Can See Changeset"
+msgstr ""
+
 #. module: auto_backup
 #: model:ir.model.fields,field_description:auto_backup.field_db_backup__sftp_user
 msgid "Username in the SFTP Server"
@@ -446,7 +478,7 @@ msgid "john"
 msgstr "john"
 
 #. module: auto_backup
-#: selection:db.backup,backup_format:0
+#: model:ir.model.fields.selection,name:auto_backup.selection__db_backup__backup_format__dump
 msgid "pg_dump custom format (without filestore)"
 msgstr ""
 
@@ -456,6 +488,6 @@ msgid "sftp.example.com"
 msgstr "sftp.example.com"
 
 #. module: auto_backup
-#: selection:db.backup,backup_format:0
+#: model:ir.model.fields.selection,name:auto_backup.selection__db_backup__backup_format__zip
 msgid "zip (includes filestore)"
 msgstr ""
diff --git a/auto_backup/i18n/ja.po b/auto_backup/i18n/ja.po
index e137a641ec3..24b54b87b69 100644
--- a/auto_backup/i18n/ja.po
+++ b/auto_backup/i18n/ja.po
@@ -84,10 +84,20 @@ msgid "Basic backup configuration"
 msgstr ""
 
 #. module: auto_backup
-#: sql_constraint:db.backup:0
+#: model:ir.model.constraint,message:auto_backup.constraint_db_backup_name_unique
 msgid "Cannot duplicate a configuration."
 msgstr ""
 
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__changeset_change_ids
+msgid "Changeset Changes"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__changeset_ids
+msgid "Changesets"
+msgstr ""
+
 #. module: auto_backup
 #: model:ir.model.fields,help:auto_backup.field_db_backup__backup_format
 msgid "Choose the format for this backup."
@@ -99,23 +109,33 @@ msgid "Choose the storage method for this backup."
 msgstr ""
 
 #. module: auto_backup
-#: code:addons/auto_backup/models/db_backup.py:265
+#: code:addons/auto_backup/models/db_backup.py:0
 #, python-format
 msgid "Cleanup of old database backups failed."
 msgstr ""
 
 #. module: auto_backup
-#: code:addons/auto_backup/models/db_backup.py:137
+#: code:addons/auto_backup/models/db_backup.py:0
 #, python-format
 msgid "Connection Test Failed!"
 msgstr ""
 
 #. module: auto_backup
-#: code:addons/auto_backup/models/db_backup.py:132
+#: code:addons/auto_backup/models/db_backup.py:0
 #, python-format
 msgid "Connection Test Succeeded!"
 msgstr ""
 
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__count_pending_changeset_changes
+msgid "Count Pending Changeset Changes"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__count_pending_changesets
+msgid "Count Pending Changesets"
+msgstr ""
+
 #. module: auto_backup
 #: model:ir.model.fields,field_description:auto_backup.field_db_backup__create_uid
 msgid "Created by"
@@ -132,14 +152,14 @@ msgid "Database Backup"
 msgstr ""
 
 #. module: auto_backup
-#: code:addons/auto_backup/models/db_backup.py:219
+#: code:addons/auto_backup/models/db_backup.py:0
 #: model:mail.message.subtype,description:auto_backup.mail_message_subtype_failure
 #, python-format
 msgid "Database backup failed."
 msgstr ""
 
 #. module: auto_backup
-#: code:addons/auto_backup/models/db_backup.py:227
+#: code:addons/auto_backup/models/db_backup.py:0
 #: model:mail.message.subtype,description:auto_backup.mail_message_subtype_success
 #, python-format
 msgid "Database backup succeeded."
@@ -156,7 +176,7 @@ msgid "Display Name"
 msgstr "表示名"
 
 #. module: auto_backup
-#: code:addons/auto_backup/models/db_backup.py:123
+#: code:addons/auto_backup/models/db_backup.py:0
 #, python-format
 msgid ""
 "Do not save backups on your filestore, or you will backup your backups too!"
@@ -203,7 +223,7 @@ msgid "Help"
 msgstr ""
 
 #. module: auto_backup
-#: sql_constraint:db.backup:0
+#: model:ir.model.constraint,message:auto_backup.constraint_db_backup_days_to_keep_positive
 msgid "I cannot remove backups from the future. Ask Doc for that."
 msgstr ""
 
@@ -212,18 +232,15 @@ msgstr ""
 msgid "ID"
 msgstr "ID"
 
-#. module: auto_backup
-#: model:ir.model.fields,help:auto_backup.field_db_backup__message_unread
-msgid "If checked new messages require your attention."
-msgstr ""
-
 #. module: auto_backup
 #: model:ir.model.fields,help:auto_backup.field_db_backup__message_needaction
+#: model:ir.model.fields,help:auto_backup.field_db_backup__message_unread
 msgid "If checked, new messages require your attention."
 msgstr ""
 
 #. module: auto_backup
 #: model:ir.model.fields,help:auto_backup.field_db_backup__message_has_error
+#: model:ir.model.fields,help:auto_backup.field_db_backup__message_has_sms_error
 msgid "If checked, some messages have a delivery error."
 msgstr ""
 
@@ -248,7 +265,7 @@ msgid "Last Updated on"
 msgstr "最終更新日"
 
 #. module: auto_backup
-#: selection:db.backup,method:0
+#: model:ir.model.fields.selection,name:auto_backup.selection__db_backup__method__local
 msgid "Local disk"
 msgstr ""
 
@@ -284,7 +301,7 @@ msgstr ""
 
 #. module: auto_backup
 #: model:ir.model.fields,field_description:auto_backup.field_db_backup__message_has_error_counter
-msgid "Number of error"
+msgid "Number of errors"
 msgstr ""
 
 #. module: auto_backup
@@ -315,7 +332,7 @@ msgid "Private key location"
 msgstr ""
 
 #. module: auto_backup
-#: selection:db.backup,method:0
+#: model:ir.model.fields.selection,name:auto_backup.selection__db_backup__method__sftp
 msgid "Remote SFTP server"
 msgstr ""
 
@@ -339,6 +356,11 @@ msgstr ""
 msgid "SFTP Settings"
 msgstr ""
 
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__message_has_sms_error
+msgid "SMS Delivery error"
+msgstr ""
+
 #. module: auto_backup
 #: model_terms:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
 msgid "Search the action named 'Backup scheduler'."
@@ -350,6 +372,11 @@ msgid ""
 "Set the scheduler to active and fill in how often you want backups generated."
 msgstr ""
 
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__smart_search
+msgid "Smart Search"
+msgstr ""
+
 #. module: auto_backup
 #: model:ir.model.fields,help:auto_backup.field_db_backup__name
 msgid "Summary of this backup process"
@@ -402,6 +429,11 @@ msgid ""
 "you specify."
 msgstr ""
 
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__user_can_see_changeset
+msgid "User Can See Changeset"
+msgstr ""
+
 #. module: auto_backup
 #: model:ir.model.fields,field_description:auto_backup.field_db_backup__sftp_user
 msgid "Username in the SFTP Server"
@@ -428,7 +460,7 @@ msgid "john"
 msgstr ""
 
 #. module: auto_backup
-#: selection:db.backup,backup_format:0
+#: model:ir.model.fields.selection,name:auto_backup.selection__db_backup__backup_format__dump
 msgid "pg_dump custom format (without filestore)"
 msgstr ""
 
@@ -438,6 +470,6 @@ msgid "sftp.example.com"
 msgstr ""
 
 #. module: auto_backup
-#: selection:db.backup,backup_format:0
+#: model:ir.model.fields.selection,name:auto_backup.selection__db_backup__backup_format__zip
 msgid "zip (includes filestore)"
 msgstr ""
diff --git a/auto_backup/i18n/ko.po b/auto_backup/i18n/ko.po
index be75fe31e43..1f000c11bd5 100644
--- a/auto_backup/i18n/ko.po
+++ b/auto_backup/i18n/ko.po
@@ -84,10 +84,20 @@ msgid "Basic backup configuration"
 msgstr ""
 
 #. module: auto_backup
-#: sql_constraint:db.backup:0
+#: model:ir.model.constraint,message:auto_backup.constraint_db_backup_name_unique
 msgid "Cannot duplicate a configuration."
 msgstr ""
 
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__changeset_change_ids
+msgid "Changeset Changes"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__changeset_ids
+msgid "Changesets"
+msgstr ""
+
 #. module: auto_backup
 #: model:ir.model.fields,help:auto_backup.field_db_backup__backup_format
 msgid "Choose the format for this backup."
@@ -99,23 +109,33 @@ msgid "Choose the storage method for this backup."
 msgstr ""
 
 #. module: auto_backup
-#: code:addons/auto_backup/models/db_backup.py:265
+#: code:addons/auto_backup/models/db_backup.py:0
 #, python-format
 msgid "Cleanup of old database backups failed."
 msgstr ""
 
 #. module: auto_backup
-#: code:addons/auto_backup/models/db_backup.py:137
+#: code:addons/auto_backup/models/db_backup.py:0
 #, python-format
 msgid "Connection Test Failed!"
 msgstr ""
 
 #. module: auto_backup
-#: code:addons/auto_backup/models/db_backup.py:132
+#: code:addons/auto_backup/models/db_backup.py:0
 #, python-format
 msgid "Connection Test Succeeded!"
 msgstr ""
 
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__count_pending_changeset_changes
+msgid "Count Pending Changeset Changes"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__count_pending_changesets
+msgid "Count Pending Changesets"
+msgstr ""
+
 #. module: auto_backup
 #: model:ir.model.fields,field_description:auto_backup.field_db_backup__create_uid
 msgid "Created by"
@@ -132,14 +152,14 @@ msgid "Database Backup"
 msgstr ""
 
 #. module: auto_backup
-#: code:addons/auto_backup/models/db_backup.py:219
+#: code:addons/auto_backup/models/db_backup.py:0
 #: model:mail.message.subtype,description:auto_backup.mail_message_subtype_failure
 #, python-format
 msgid "Database backup failed."
 msgstr ""
 
 #. module: auto_backup
-#: code:addons/auto_backup/models/db_backup.py:227
+#: code:addons/auto_backup/models/db_backup.py:0
 #: model:mail.message.subtype,description:auto_backup.mail_message_subtype_success
 #, python-format
 msgid "Database backup succeeded."
@@ -156,7 +176,7 @@ msgid "Display Name"
 msgstr "표시 이름"
 
 #. module: auto_backup
-#: code:addons/auto_backup/models/db_backup.py:123
+#: code:addons/auto_backup/models/db_backup.py:0
 #, python-format
 msgid ""
 "Do not save backups on your filestore, or you will backup your backups too!"
@@ -203,7 +223,7 @@ msgid "Help"
 msgstr ""
 
 #. module: auto_backup
-#: sql_constraint:db.backup:0
+#: model:ir.model.constraint,message:auto_backup.constraint_db_backup_days_to_keep_positive
 msgid "I cannot remove backups from the future. Ask Doc for that."
 msgstr ""
 
@@ -212,18 +232,15 @@ msgstr ""
 msgid "ID"
 msgstr "ID"
 
-#. module: auto_backup
-#: model:ir.model.fields,help:auto_backup.field_db_backup__message_unread
-msgid "If checked new messages require your attention."
-msgstr ""
-
 #. module: auto_backup
 #: model:ir.model.fields,help:auto_backup.field_db_backup__message_needaction
+#: model:ir.model.fields,help:auto_backup.field_db_backup__message_unread
 msgid "If checked, new messages require your attention."
 msgstr ""
 
 #. module: auto_backup
 #: model:ir.model.fields,help:auto_backup.field_db_backup__message_has_error
+#: model:ir.model.fields,help:auto_backup.field_db_backup__message_has_sms_error
 msgid "If checked, some messages have a delivery error."
 msgstr ""
 
@@ -248,7 +265,7 @@ msgid "Last Updated on"
 msgstr "최근 갱신 날짜"
 
 #. module: auto_backup
-#: selection:db.backup,method:0
+#: model:ir.model.fields.selection,name:auto_backup.selection__db_backup__method__local
 msgid "Local disk"
 msgstr ""
 
@@ -284,7 +301,7 @@ msgstr ""
 
 #. module: auto_backup
 #: model:ir.model.fields,field_description:auto_backup.field_db_backup__message_has_error_counter
-msgid "Number of error"
+msgid "Number of errors"
 msgstr ""
 
 #. module: auto_backup
@@ -315,7 +332,7 @@ msgid "Private key location"
 msgstr ""
 
 #. module: auto_backup
-#: selection:db.backup,method:0
+#: model:ir.model.fields.selection,name:auto_backup.selection__db_backup__method__sftp
 msgid "Remote SFTP server"
 msgstr ""
 
@@ -339,6 +356,11 @@ msgstr ""
 msgid "SFTP Settings"
 msgstr ""
 
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__message_has_sms_error
+msgid "SMS Delivery error"
+msgstr ""
+
 #. module: auto_backup
 #: model_terms:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
 msgid "Search the action named 'Backup scheduler'."
@@ -350,6 +372,11 @@ msgid ""
 "Set the scheduler to active and fill in how often you want backups generated."
 msgstr ""
 
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__smart_search
+msgid "Smart Search"
+msgstr ""
+
 #. module: auto_backup
 #: model:ir.model.fields,help:auto_backup.field_db_backup__name
 msgid "Summary of this backup process"
@@ -402,6 +429,11 @@ msgid ""
 "you specify."
 msgstr ""
 
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__user_can_see_changeset
+msgid "User Can See Changeset"
+msgstr ""
+
 #. module: auto_backup
 #: model:ir.model.fields,field_description:auto_backup.field_db_backup__sftp_user
 msgid "Username in the SFTP Server"
@@ -428,7 +460,7 @@ msgid "john"
 msgstr ""
 
 #. module: auto_backup
-#: selection:db.backup,backup_format:0
+#: model:ir.model.fields.selection,name:auto_backup.selection__db_backup__backup_format__dump
 msgid "pg_dump custom format (without filestore)"
 msgstr ""
 
@@ -438,6 +470,6 @@ msgid "sftp.example.com"
 msgstr ""
 
 #. module: auto_backup
-#: selection:db.backup,backup_format:0
+#: model:ir.model.fields.selection,name:auto_backup.selection__db_backup__backup_format__zip
 msgid "zip (includes filestore)"
 msgstr ""
diff --git a/auto_backup/i18n/lt.po b/auto_backup/i18n/lt.po
index 8e04fe724f7..0b61ec0f92f 100644
--- a/auto_backup/i18n/lt.po
+++ b/auto_backup/i18n/lt.po
@@ -85,10 +85,20 @@ msgid "Basic backup configuration"
 msgstr ""
 
 #. module: auto_backup
-#: sql_constraint:db.backup:0
+#: model:ir.model.constraint,message:auto_backup.constraint_db_backup_name_unique
 msgid "Cannot duplicate a configuration."
 msgstr ""
 
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__changeset_change_ids
+msgid "Changeset Changes"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__changeset_ids
+msgid "Changesets"
+msgstr ""
+
 #. module: auto_backup
 #: model:ir.model.fields,help:auto_backup.field_db_backup__backup_format
 msgid "Choose the format for this backup."
@@ -100,23 +110,33 @@ msgid "Choose the storage method for this backup."
 msgstr ""
 
 #. module: auto_backup
-#: code:addons/auto_backup/models/db_backup.py:265
+#: code:addons/auto_backup/models/db_backup.py:0
 #, python-format
 msgid "Cleanup of old database backups failed."
 msgstr ""
 
 #. module: auto_backup
-#: code:addons/auto_backup/models/db_backup.py:137
+#: code:addons/auto_backup/models/db_backup.py:0
 #, python-format
 msgid "Connection Test Failed!"
 msgstr ""
 
 #. module: auto_backup
-#: code:addons/auto_backup/models/db_backup.py:132
+#: code:addons/auto_backup/models/db_backup.py:0
 #, python-format
 msgid "Connection Test Succeeded!"
 msgstr ""
 
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__count_pending_changeset_changes
+msgid "Count Pending Changeset Changes"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__count_pending_changesets
+msgid "Count Pending Changesets"
+msgstr ""
+
 #. module: auto_backup
 #: model:ir.model.fields,field_description:auto_backup.field_db_backup__create_uid
 msgid "Created by"
@@ -133,14 +153,14 @@ msgid "Database Backup"
 msgstr ""
 
 #. module: auto_backup
-#: code:addons/auto_backup/models/db_backup.py:219
+#: code:addons/auto_backup/models/db_backup.py:0
 #: model:mail.message.subtype,description:auto_backup.mail_message_subtype_failure
 #, python-format
 msgid "Database backup failed."
 msgstr ""
 
 #. module: auto_backup
-#: code:addons/auto_backup/models/db_backup.py:227
+#: code:addons/auto_backup/models/db_backup.py:0
 #: model:mail.message.subtype,description:auto_backup.mail_message_subtype_success
 #, python-format
 msgid "Database backup succeeded."
@@ -157,7 +177,7 @@ msgid "Display Name"
 msgstr "Vaizduojamas pavadinimas"
 
 #. module: auto_backup
-#: code:addons/auto_backup/models/db_backup.py:123
+#: code:addons/auto_backup/models/db_backup.py:0
 #, python-format
 msgid ""
 "Do not save backups on your filestore, or you will backup your backups too!"
@@ -204,7 +224,7 @@ msgid "Help"
 msgstr ""
 
 #. module: auto_backup
-#: sql_constraint:db.backup:0
+#: model:ir.model.constraint,message:auto_backup.constraint_db_backup_days_to_keep_positive
 msgid "I cannot remove backups from the future. Ask Doc for that."
 msgstr ""
 
@@ -213,18 +233,15 @@ msgstr ""
 msgid "ID"
 msgstr "ID"
 
-#. module: auto_backup
-#: model:ir.model.fields,help:auto_backup.field_db_backup__message_unread
-msgid "If checked new messages require your attention."
-msgstr ""
-
 #. module: auto_backup
 #: model:ir.model.fields,help:auto_backup.field_db_backup__message_needaction
+#: model:ir.model.fields,help:auto_backup.field_db_backup__message_unread
 msgid "If checked, new messages require your attention."
 msgstr ""
 
 #. module: auto_backup
 #: model:ir.model.fields,help:auto_backup.field_db_backup__message_has_error
+#: model:ir.model.fields,help:auto_backup.field_db_backup__message_has_sms_error
 msgid "If checked, some messages have a delivery error."
 msgstr ""
 
@@ -249,7 +266,7 @@ msgid "Last Updated on"
 msgstr "Paskutinį kartą atnaujinta"
 
 #. module: auto_backup
-#: selection:db.backup,method:0
+#: model:ir.model.fields.selection,name:auto_backup.selection__db_backup__method__local
 msgid "Local disk"
 msgstr ""
 
@@ -285,7 +302,7 @@ msgstr ""
 
 #. module: auto_backup
 #: model:ir.model.fields,field_description:auto_backup.field_db_backup__message_has_error_counter
-msgid "Number of error"
+msgid "Number of errors"
 msgstr ""
 
 #. module: auto_backup
@@ -316,7 +333,7 @@ msgid "Private key location"
 msgstr ""
 
 #. module: auto_backup
-#: selection:db.backup,method:0
+#: model:ir.model.fields.selection,name:auto_backup.selection__db_backup__method__sftp
 msgid "Remote SFTP server"
 msgstr ""
 
@@ -340,6 +357,11 @@ msgstr ""
 msgid "SFTP Settings"
 msgstr ""
 
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__message_has_sms_error
+msgid "SMS Delivery error"
+msgstr ""
+
 #. module: auto_backup
 #: model_terms:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
 msgid "Search the action named 'Backup scheduler'."
@@ -351,6 +373,11 @@ msgid ""
 "Set the scheduler to active and fill in how often you want backups generated."
 msgstr ""
 
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__smart_search
+msgid "Smart Search"
+msgstr ""
+
 #. module: auto_backup
 #: model:ir.model.fields,help:auto_backup.field_db_backup__name
 msgid "Summary of this backup process"
@@ -403,6 +430,11 @@ msgid ""
 "you specify."
 msgstr ""
 
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__user_can_see_changeset
+msgid "User Can See Changeset"
+msgstr ""
+
 #. module: auto_backup
 #: model:ir.model.fields,field_description:auto_backup.field_db_backup__sftp_user
 msgid "Username in the SFTP Server"
@@ -429,7 +461,7 @@ msgid "john"
 msgstr ""
 
 #. module: auto_backup
-#: selection:db.backup,backup_format:0
+#: model:ir.model.fields.selection,name:auto_backup.selection__db_backup__backup_format__dump
 msgid "pg_dump custom format (without filestore)"
 msgstr ""
 
@@ -439,6 +471,6 @@ msgid "sftp.example.com"
 msgstr ""
 
 #. module: auto_backup
-#: selection:db.backup,backup_format:0
+#: model:ir.model.fields.selection,name:auto_backup.selection__db_backup__backup_format__zip
 msgid "zip (includes filestore)"
 msgstr ""
diff --git a/auto_backup/i18n/lt_LT.po b/auto_backup/i18n/lt_LT.po
index 01861113f3f..3d6518ac5d8 100644
--- a/auto_backup/i18n/lt_LT.po
+++ b/auto_backup/i18n/lt_LT.po
@@ -86,10 +86,20 @@ msgid "Basic backup configuration"
 msgstr ""
 
 #. module: auto_backup
-#: sql_constraint:db.backup:0
+#: model:ir.model.constraint,message:auto_backup.constraint_db_backup_name_unique
 msgid "Cannot duplicate a configuration."
 msgstr ""
 
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__changeset_change_ids
+msgid "Changeset Changes"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__changeset_ids
+msgid "Changesets"
+msgstr ""
+
 #. module: auto_backup
 #: model:ir.model.fields,help:auto_backup.field_db_backup__backup_format
 msgid "Choose the format for this backup."
@@ -101,23 +111,33 @@ msgid "Choose the storage method for this backup."
 msgstr ""
 
 #. module: auto_backup
-#: code:addons/auto_backup/models/db_backup.py:265
+#: code:addons/auto_backup/models/db_backup.py:0
 #, python-format
 msgid "Cleanup of old database backups failed."
 msgstr ""
 
 #. module: auto_backup
-#: code:addons/auto_backup/models/db_backup.py:137
+#: code:addons/auto_backup/models/db_backup.py:0
 #, python-format
 msgid "Connection Test Failed!"
 msgstr ""
 
 #. module: auto_backup
-#: code:addons/auto_backup/models/db_backup.py:132
+#: code:addons/auto_backup/models/db_backup.py:0
 #, python-format
 msgid "Connection Test Succeeded!"
 msgstr ""
 
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__count_pending_changeset_changes
+msgid "Count Pending Changeset Changes"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__count_pending_changesets
+msgid "Count Pending Changesets"
+msgstr ""
+
 #. module: auto_backup
 #: model:ir.model.fields,field_description:auto_backup.field_db_backup__create_uid
 msgid "Created by"
@@ -134,14 +154,14 @@ msgid "Database Backup"
 msgstr ""
 
 #. module: auto_backup
-#: code:addons/auto_backup/models/db_backup.py:219
+#: code:addons/auto_backup/models/db_backup.py:0
 #: model:mail.message.subtype,description:auto_backup.mail_message_subtype_failure
 #, python-format
 msgid "Database backup failed."
 msgstr ""
 
 #. module: auto_backup
-#: code:addons/auto_backup/models/db_backup.py:227
+#: code:addons/auto_backup/models/db_backup.py:0
 #: model:mail.message.subtype,description:auto_backup.mail_message_subtype_success
 #, python-format
 msgid "Database backup succeeded."
@@ -158,7 +178,7 @@ msgid "Display Name"
 msgstr ""
 
 #. module: auto_backup
-#: code:addons/auto_backup/models/db_backup.py:123
+#: code:addons/auto_backup/models/db_backup.py:0
 #, python-format
 msgid ""
 "Do not save backups on your filestore, or you will backup your backups too!"
@@ -205,7 +225,7 @@ msgid "Help"
 msgstr ""
 
 #. module: auto_backup
-#: sql_constraint:db.backup:0
+#: model:ir.model.constraint,message:auto_backup.constraint_db_backup_days_to_keep_positive
 msgid "I cannot remove backups from the future. Ask Doc for that."
 msgstr ""
 
@@ -214,18 +234,15 @@ msgstr ""
 msgid "ID"
 msgstr "ID"
 
-#. module: auto_backup
-#: model:ir.model.fields,help:auto_backup.field_db_backup__message_unread
-msgid "If checked new messages require your attention."
-msgstr ""
-
 #. module: auto_backup
 #: model:ir.model.fields,help:auto_backup.field_db_backup__message_needaction
+#: model:ir.model.fields,help:auto_backup.field_db_backup__message_unread
 msgid "If checked, new messages require your attention."
 msgstr ""
 
 #. module: auto_backup
 #: model:ir.model.fields,help:auto_backup.field_db_backup__message_has_error
+#: model:ir.model.fields,help:auto_backup.field_db_backup__message_has_sms_error
 msgid "If checked, some messages have a delivery error."
 msgstr ""
 
@@ -250,7 +267,7 @@ msgid "Last Updated on"
 msgstr "Paskutinį kartą atnaujinta"
 
 #. module: auto_backup
-#: selection:db.backup,method:0
+#: model:ir.model.fields.selection,name:auto_backup.selection__db_backup__method__local
 msgid "Local disk"
 msgstr ""
 
@@ -286,7 +303,7 @@ msgstr ""
 
 #. module: auto_backup
 #: model:ir.model.fields,field_description:auto_backup.field_db_backup__message_has_error_counter
-msgid "Number of error"
+msgid "Number of errors"
 msgstr ""
 
 #. module: auto_backup
@@ -317,7 +334,7 @@ msgid "Private key location"
 msgstr ""
 
 #. module: auto_backup
-#: selection:db.backup,method:0
+#: model:ir.model.fields.selection,name:auto_backup.selection__db_backup__method__sftp
 msgid "Remote SFTP server"
 msgstr ""
 
@@ -341,6 +358,11 @@ msgstr ""
 msgid "SFTP Settings"
 msgstr ""
 
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__message_has_sms_error
+msgid "SMS Delivery error"
+msgstr ""
+
 #. module: auto_backup
 #: model_terms:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
 msgid "Search the action named 'Backup scheduler'."
@@ -352,6 +374,11 @@ msgid ""
 "Set the scheduler to active and fill in how often you want backups generated."
 msgstr ""
 
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__smart_search
+msgid "Smart Search"
+msgstr ""
+
 #. module: auto_backup
 #: model:ir.model.fields,help:auto_backup.field_db_backup__name
 msgid "Summary of this backup process"
@@ -404,6 +431,11 @@ msgid ""
 "you specify."
 msgstr ""
 
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__user_can_see_changeset
+msgid "User Can See Changeset"
+msgstr ""
+
 #. module: auto_backup
 #: model:ir.model.fields,field_description:auto_backup.field_db_backup__sftp_user
 msgid "Username in the SFTP Server"
@@ -430,7 +462,7 @@ msgid "john"
 msgstr ""
 
 #. module: auto_backup
-#: selection:db.backup,backup_format:0
+#: model:ir.model.fields.selection,name:auto_backup.selection__db_backup__backup_format__dump
 msgid "pg_dump custom format (without filestore)"
 msgstr ""
 
@@ -440,6 +472,6 @@ msgid "sftp.example.com"
 msgstr ""
 
 #. module: auto_backup
-#: selection:db.backup,backup_format:0
+#: model:ir.model.fields.selection,name:auto_backup.selection__db_backup__backup_format__zip
 msgid "zip (includes filestore)"
 msgstr ""
diff --git a/auto_backup/i18n/lv.po b/auto_backup/i18n/lv.po
index 0eee18234f4..325a28095de 100644
--- a/auto_backup/i18n/lv.po
+++ b/auto_backup/i18n/lv.po
@@ -85,10 +85,20 @@ msgid "Basic backup configuration"
 msgstr ""
 
 #. module: auto_backup
-#: sql_constraint:db.backup:0
+#: model:ir.model.constraint,message:auto_backup.constraint_db_backup_name_unique
 msgid "Cannot duplicate a configuration."
 msgstr ""
 
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__changeset_change_ids
+msgid "Changeset Changes"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__changeset_ids
+msgid "Changesets"
+msgstr ""
+
 #. module: auto_backup
 #: model:ir.model.fields,help:auto_backup.field_db_backup__backup_format
 msgid "Choose the format for this backup."
@@ -100,23 +110,33 @@ msgid "Choose the storage method for this backup."
 msgstr ""
 
 #. module: auto_backup
-#: code:addons/auto_backup/models/db_backup.py:265
+#: code:addons/auto_backup/models/db_backup.py:0
 #, python-format
 msgid "Cleanup of old database backups failed."
 msgstr ""
 
 #. module: auto_backup
-#: code:addons/auto_backup/models/db_backup.py:137
+#: code:addons/auto_backup/models/db_backup.py:0
 #, python-format
 msgid "Connection Test Failed!"
 msgstr ""
 
 #. module: auto_backup
-#: code:addons/auto_backup/models/db_backup.py:132
+#: code:addons/auto_backup/models/db_backup.py:0
 #, python-format
 msgid "Connection Test Succeeded!"
 msgstr ""
 
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__count_pending_changeset_changes
+msgid "Count Pending Changeset Changes"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__count_pending_changesets
+msgid "Count Pending Changesets"
+msgstr ""
+
 #. module: auto_backup
 #: model:ir.model.fields,field_description:auto_backup.field_db_backup__create_uid
 msgid "Created by"
@@ -133,14 +153,14 @@ msgid "Database Backup"
 msgstr ""
 
 #. module: auto_backup
-#: code:addons/auto_backup/models/db_backup.py:219
+#: code:addons/auto_backup/models/db_backup.py:0
 #: model:mail.message.subtype,description:auto_backup.mail_message_subtype_failure
 #, python-format
 msgid "Database backup failed."
 msgstr ""
 
 #. module: auto_backup
-#: code:addons/auto_backup/models/db_backup.py:227
+#: code:addons/auto_backup/models/db_backup.py:0
 #: model:mail.message.subtype,description:auto_backup.mail_message_subtype_success
 #, python-format
 msgid "Database backup succeeded."
@@ -157,7 +177,7 @@ msgid "Display Name"
 msgstr ""
 
 #. module: auto_backup
-#: code:addons/auto_backup/models/db_backup.py:123
+#: code:addons/auto_backup/models/db_backup.py:0
 #, python-format
 msgid ""
 "Do not save backups on your filestore, or you will backup your backups too!"
@@ -204,7 +224,7 @@ msgid "Help"
 msgstr ""
 
 #. module: auto_backup
-#: sql_constraint:db.backup:0
+#: model:ir.model.constraint,message:auto_backup.constraint_db_backup_days_to_keep_positive
 msgid "I cannot remove backups from the future. Ask Doc for that."
 msgstr ""
 
@@ -213,18 +233,15 @@ msgstr ""
 msgid "ID"
 msgstr "ID"
 
-#. module: auto_backup
-#: model:ir.model.fields,help:auto_backup.field_db_backup__message_unread
-msgid "If checked new messages require your attention."
-msgstr ""
-
 #. module: auto_backup
 #: model:ir.model.fields,help:auto_backup.field_db_backup__message_needaction
+#: model:ir.model.fields,help:auto_backup.field_db_backup__message_unread
 msgid "If checked, new messages require your attention."
 msgstr ""
 
 #. module: auto_backup
 #: model:ir.model.fields,help:auto_backup.field_db_backup__message_has_error
+#: model:ir.model.fields,help:auto_backup.field_db_backup__message_has_sms_error
 msgid "If checked, some messages have a delivery error."
 msgstr ""
 
@@ -249,7 +266,7 @@ msgid "Last Updated on"
 msgstr "Pēdējās izmaiņas"
 
 #. module: auto_backup
-#: selection:db.backup,method:0
+#: model:ir.model.fields.selection,name:auto_backup.selection__db_backup__method__local
 msgid "Local disk"
 msgstr ""
 
@@ -285,7 +302,7 @@ msgstr ""
 
 #. module: auto_backup
 #: model:ir.model.fields,field_description:auto_backup.field_db_backup__message_has_error_counter
-msgid "Number of error"
+msgid "Number of errors"
 msgstr ""
 
 #. module: auto_backup
@@ -316,7 +333,7 @@ msgid "Private key location"
 msgstr ""
 
 #. module: auto_backup
-#: selection:db.backup,method:0
+#: model:ir.model.fields.selection,name:auto_backup.selection__db_backup__method__sftp
 msgid "Remote SFTP server"
 msgstr ""
 
@@ -340,6 +357,11 @@ msgstr ""
 msgid "SFTP Settings"
 msgstr ""
 
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__message_has_sms_error
+msgid "SMS Delivery error"
+msgstr ""
+
 #. module: auto_backup
 #: model_terms:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
 msgid "Search the action named 'Backup scheduler'."
@@ -351,6 +373,11 @@ msgid ""
 "Set the scheduler to active and fill in how often you want backups generated."
 msgstr ""
 
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__smart_search
+msgid "Smart Search"
+msgstr ""
+
 #. module: auto_backup
 #: model:ir.model.fields,help:auto_backup.field_db_backup__name
 msgid "Summary of this backup process"
@@ -403,6 +430,11 @@ msgid ""
 "you specify."
 msgstr ""
 
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__user_can_see_changeset
+msgid "User Can See Changeset"
+msgstr ""
+
 #. module: auto_backup
 #: model:ir.model.fields,field_description:auto_backup.field_db_backup__sftp_user
 msgid "Username in the SFTP Server"
@@ -429,7 +461,7 @@ msgid "john"
 msgstr ""
 
 #. module: auto_backup
-#: selection:db.backup,backup_format:0
+#: model:ir.model.fields.selection,name:auto_backup.selection__db_backup__backup_format__dump
 msgid "pg_dump custom format (without filestore)"
 msgstr ""
 
@@ -439,6 +471,6 @@ msgid "sftp.example.com"
 msgstr ""
 
 #. module: auto_backup
-#: selection:db.backup,backup_format:0
+#: model:ir.model.fields.selection,name:auto_backup.selection__db_backup__backup_format__zip
 msgid "zip (includes filestore)"
 msgstr ""
diff --git a/auto_backup/i18n/mk.po b/auto_backup/i18n/mk.po
index 68f61d0299e..a0b9f21c569 100644
--- a/auto_backup/i18n/mk.po
+++ b/auto_backup/i18n/mk.po
@@ -84,10 +84,20 @@ msgid "Basic backup configuration"
 msgstr ""
 
 #. module: auto_backup
-#: sql_constraint:db.backup:0
+#: model:ir.model.constraint,message:auto_backup.constraint_db_backup_name_unique
 msgid "Cannot duplicate a configuration."
 msgstr ""
 
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__changeset_change_ids
+msgid "Changeset Changes"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__changeset_ids
+msgid "Changesets"
+msgstr ""
+
 #. module: auto_backup
 #: model:ir.model.fields,help:auto_backup.field_db_backup__backup_format
 msgid "Choose the format for this backup."
@@ -99,23 +109,33 @@ msgid "Choose the storage method for this backup."
 msgstr ""
 
 #. module: auto_backup
-#: code:addons/auto_backup/models/db_backup.py:265
+#: code:addons/auto_backup/models/db_backup.py:0
 #, python-format
 msgid "Cleanup of old database backups failed."
 msgstr ""
 
 #. module: auto_backup
-#: code:addons/auto_backup/models/db_backup.py:137
+#: code:addons/auto_backup/models/db_backup.py:0
 #, python-format
 msgid "Connection Test Failed!"
 msgstr ""
 
 #. module: auto_backup
-#: code:addons/auto_backup/models/db_backup.py:132
+#: code:addons/auto_backup/models/db_backup.py:0
 #, python-format
 msgid "Connection Test Succeeded!"
 msgstr ""
 
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__count_pending_changeset_changes
+msgid "Count Pending Changeset Changes"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__count_pending_changesets
+msgid "Count Pending Changesets"
+msgstr ""
+
 #. module: auto_backup
 #: model:ir.model.fields,field_description:auto_backup.field_db_backup__create_uid
 msgid "Created by"
@@ -132,14 +152,14 @@ msgid "Database Backup"
 msgstr ""
 
 #. module: auto_backup
-#: code:addons/auto_backup/models/db_backup.py:219
+#: code:addons/auto_backup/models/db_backup.py:0
 #: model:mail.message.subtype,description:auto_backup.mail_message_subtype_failure
 #, python-format
 msgid "Database backup failed."
 msgstr ""
 
 #. module: auto_backup
-#: code:addons/auto_backup/models/db_backup.py:227
+#: code:addons/auto_backup/models/db_backup.py:0
 #: model:mail.message.subtype,description:auto_backup.mail_message_subtype_success
 #, python-format
 msgid "Database backup succeeded."
@@ -156,7 +176,7 @@ msgid "Display Name"
 msgstr "Прикажи име"
 
 #. module: auto_backup
-#: code:addons/auto_backup/models/db_backup.py:123
+#: code:addons/auto_backup/models/db_backup.py:0
 #, python-format
 msgid ""
 "Do not save backups on your filestore, or you will backup your backups too!"
@@ -203,7 +223,7 @@ msgid "Help"
 msgstr ""
 
 #. module: auto_backup
-#: sql_constraint:db.backup:0
+#: model:ir.model.constraint,message:auto_backup.constraint_db_backup_days_to_keep_positive
 msgid "I cannot remove backups from the future. Ask Doc for that."
 msgstr ""
 
@@ -212,18 +232,15 @@ msgstr ""
 msgid "ID"
 msgstr "ID"
 
-#. module: auto_backup
-#: model:ir.model.fields,help:auto_backup.field_db_backup__message_unread
-msgid "If checked new messages require your attention."
-msgstr ""
-
 #. module: auto_backup
 #: model:ir.model.fields,help:auto_backup.field_db_backup__message_needaction
+#: model:ir.model.fields,help:auto_backup.field_db_backup__message_unread
 msgid "If checked, new messages require your attention."
 msgstr ""
 
 #. module: auto_backup
 #: model:ir.model.fields,help:auto_backup.field_db_backup__message_has_error
+#: model:ir.model.fields,help:auto_backup.field_db_backup__message_has_sms_error
 msgid "If checked, some messages have a delivery error."
 msgstr ""
 
@@ -248,7 +265,7 @@ msgid "Last Updated on"
 msgstr "Последно ажурирање на"
 
 #. module: auto_backup
-#: selection:db.backup,method:0
+#: model:ir.model.fields.selection,name:auto_backup.selection__db_backup__method__local
 msgid "Local disk"
 msgstr ""
 
@@ -284,7 +301,7 @@ msgstr ""
 
 #. module: auto_backup
 #: model:ir.model.fields,field_description:auto_backup.field_db_backup__message_has_error_counter
-msgid "Number of error"
+msgid "Number of errors"
 msgstr ""
 
 #. module: auto_backup
@@ -315,7 +332,7 @@ msgid "Private key location"
 msgstr ""
 
 #. module: auto_backup
-#: selection:db.backup,method:0
+#: model:ir.model.fields.selection,name:auto_backup.selection__db_backup__method__sftp
 msgid "Remote SFTP server"
 msgstr ""
 
@@ -339,6 +356,11 @@ msgstr ""
 msgid "SFTP Settings"
 msgstr ""
 
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__message_has_sms_error
+msgid "SMS Delivery error"
+msgstr ""
+
 #. module: auto_backup
 #: model_terms:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
 msgid "Search the action named 'Backup scheduler'."
@@ -350,6 +372,11 @@ msgid ""
 "Set the scheduler to active and fill in how often you want backups generated."
 msgstr ""
 
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__smart_search
+msgid "Smart Search"
+msgstr ""
+
 #. module: auto_backup
 #: model:ir.model.fields,help:auto_backup.field_db_backup__name
 msgid "Summary of this backup process"
@@ -402,6 +429,11 @@ msgid ""
 "you specify."
 msgstr ""
 
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__user_can_see_changeset
+msgid "User Can See Changeset"
+msgstr ""
+
 #. module: auto_backup
 #: model:ir.model.fields,field_description:auto_backup.field_db_backup__sftp_user
 msgid "Username in the SFTP Server"
@@ -428,7 +460,7 @@ msgid "john"
 msgstr ""
 
 #. module: auto_backup
-#: selection:db.backup,backup_format:0
+#: model:ir.model.fields.selection,name:auto_backup.selection__db_backup__backup_format__dump
 msgid "pg_dump custom format (without filestore)"
 msgstr ""
 
@@ -438,6 +470,6 @@ msgid "sftp.example.com"
 msgstr ""
 
 #. module: auto_backup
-#: selection:db.backup,backup_format:0
+#: model:ir.model.fields.selection,name:auto_backup.selection__db_backup__backup_format__zip
 msgid "zip (includes filestore)"
 msgstr ""
diff --git a/auto_backup/i18n/mn.po b/auto_backup/i18n/mn.po
index 3cf997cd5d8..3aca3bb4ab9 100644
--- a/auto_backup/i18n/mn.po
+++ b/auto_backup/i18n/mn.po
@@ -84,10 +84,20 @@ msgid "Basic backup configuration"
 msgstr ""
 
 #. module: auto_backup
-#: sql_constraint:db.backup:0
+#: model:ir.model.constraint,message:auto_backup.constraint_db_backup_name_unique
 msgid "Cannot duplicate a configuration."
 msgstr ""
 
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__changeset_change_ids
+msgid "Changeset Changes"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__changeset_ids
+msgid "Changesets"
+msgstr ""
+
 #. module: auto_backup
 #: model:ir.model.fields,help:auto_backup.field_db_backup__backup_format
 msgid "Choose the format for this backup."
@@ -99,23 +109,33 @@ msgid "Choose the storage method for this backup."
 msgstr ""
 
 #. module: auto_backup
-#: code:addons/auto_backup/models/db_backup.py:265
+#: code:addons/auto_backup/models/db_backup.py:0
 #, python-format
 msgid "Cleanup of old database backups failed."
 msgstr ""
 
 #. module: auto_backup
-#: code:addons/auto_backup/models/db_backup.py:137
+#: code:addons/auto_backup/models/db_backup.py:0
 #, python-format
 msgid "Connection Test Failed!"
 msgstr ""
 
 #. module: auto_backup
-#: code:addons/auto_backup/models/db_backup.py:132
+#: code:addons/auto_backup/models/db_backup.py:0
 #, python-format
 msgid "Connection Test Succeeded!"
 msgstr ""
 
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__count_pending_changeset_changes
+msgid "Count Pending Changeset Changes"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__count_pending_changesets
+msgid "Count Pending Changesets"
+msgstr ""
+
 #. module: auto_backup
 #: model:ir.model.fields,field_description:auto_backup.field_db_backup__create_uid
 msgid "Created by"
@@ -132,14 +152,14 @@ msgid "Database Backup"
 msgstr ""
 
 #. module: auto_backup
-#: code:addons/auto_backup/models/db_backup.py:219
+#: code:addons/auto_backup/models/db_backup.py:0
 #: model:mail.message.subtype,description:auto_backup.mail_message_subtype_failure
 #, python-format
 msgid "Database backup failed."
 msgstr ""
 
 #. module: auto_backup
-#: code:addons/auto_backup/models/db_backup.py:227
+#: code:addons/auto_backup/models/db_backup.py:0
 #: model:mail.message.subtype,description:auto_backup.mail_message_subtype_success
 #, python-format
 msgid "Database backup succeeded."
@@ -156,7 +176,7 @@ msgid "Display Name"
 msgstr "Дэлгэцийн Нэр"
 
 #. module: auto_backup
-#: code:addons/auto_backup/models/db_backup.py:123
+#: code:addons/auto_backup/models/db_backup.py:0
 #, python-format
 msgid ""
 "Do not save backups on your filestore, or you will backup your backups too!"
@@ -203,7 +223,7 @@ msgid "Help"
 msgstr ""
 
 #. module: auto_backup
-#: sql_constraint:db.backup:0
+#: model:ir.model.constraint,message:auto_backup.constraint_db_backup_days_to_keep_positive
 msgid "I cannot remove backups from the future. Ask Doc for that."
 msgstr ""
 
@@ -212,18 +232,15 @@ msgstr ""
 msgid "ID"
 msgstr "ID"
 
-#. module: auto_backup
-#: model:ir.model.fields,help:auto_backup.field_db_backup__message_unread
-msgid "If checked new messages require your attention."
-msgstr ""
-
 #. module: auto_backup
 #: model:ir.model.fields,help:auto_backup.field_db_backup__message_needaction
+#: model:ir.model.fields,help:auto_backup.field_db_backup__message_unread
 msgid "If checked, new messages require your attention."
 msgstr ""
 
 #. module: auto_backup
 #: model:ir.model.fields,help:auto_backup.field_db_backup__message_has_error
+#: model:ir.model.fields,help:auto_backup.field_db_backup__message_has_sms_error
 msgid "If checked, some messages have a delivery error."
 msgstr ""
 
@@ -248,7 +265,7 @@ msgid "Last Updated on"
 msgstr "Сүүлийн засвар хийсэн огноо"
 
 #. module: auto_backup
-#: selection:db.backup,method:0
+#: model:ir.model.fields.selection,name:auto_backup.selection__db_backup__method__local
 msgid "Local disk"
 msgstr ""
 
@@ -284,7 +301,7 @@ msgstr ""
 
 #. module: auto_backup
 #: model:ir.model.fields,field_description:auto_backup.field_db_backup__message_has_error_counter
-msgid "Number of error"
+msgid "Number of errors"
 msgstr ""
 
 #. module: auto_backup
@@ -315,7 +332,7 @@ msgid "Private key location"
 msgstr ""
 
 #. module: auto_backup
-#: selection:db.backup,method:0
+#: model:ir.model.fields.selection,name:auto_backup.selection__db_backup__method__sftp
 msgid "Remote SFTP server"
 msgstr ""
 
@@ -339,6 +356,11 @@ msgstr ""
 msgid "SFTP Settings"
 msgstr ""
 
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__message_has_sms_error
+msgid "SMS Delivery error"
+msgstr ""
+
 #. module: auto_backup
 #: model_terms:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
 msgid "Search the action named 'Backup scheduler'."
@@ -350,6 +372,11 @@ msgid ""
 "Set the scheduler to active and fill in how often you want backups generated."
 msgstr ""
 
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__smart_search
+msgid "Smart Search"
+msgstr ""
+
 #. module: auto_backup
 #: model:ir.model.fields,help:auto_backup.field_db_backup__name
 msgid "Summary of this backup process"
@@ -402,6 +429,11 @@ msgid ""
 "you specify."
 msgstr ""
 
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__user_can_see_changeset
+msgid "User Can See Changeset"
+msgstr ""
+
 #. module: auto_backup
 #: model:ir.model.fields,field_description:auto_backup.field_db_backup__sftp_user
 msgid "Username in the SFTP Server"
@@ -428,7 +460,7 @@ msgid "john"
 msgstr ""
 
 #. module: auto_backup
-#: selection:db.backup,backup_format:0
+#: model:ir.model.fields.selection,name:auto_backup.selection__db_backup__backup_format__dump
 msgid "pg_dump custom format (without filestore)"
 msgstr ""
 
@@ -438,6 +470,6 @@ msgid "sftp.example.com"
 msgstr ""
 
 #. module: auto_backup
-#: selection:db.backup,backup_format:0
+#: model:ir.model.fields.selection,name:auto_backup.selection__db_backup__backup_format__zip
 msgid "zip (includes filestore)"
 msgstr ""
diff --git a/auto_backup/i18n/nb.po b/auto_backup/i18n/nb.po
index 4e4851a8c14..16a0beb2de8 100644
--- a/auto_backup/i18n/nb.po
+++ b/auto_backup/i18n/nb.po
@@ -85,10 +85,20 @@ msgid "Basic backup configuration"
 msgstr ""
 
 #. module: auto_backup
-#: sql_constraint:db.backup:0
+#: model:ir.model.constraint,message:auto_backup.constraint_db_backup_name_unique
 msgid "Cannot duplicate a configuration."
 msgstr ""
 
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__changeset_change_ids
+msgid "Changeset Changes"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__changeset_ids
+msgid "Changesets"
+msgstr ""
+
 #. module: auto_backup
 #: model:ir.model.fields,help:auto_backup.field_db_backup__backup_format
 msgid "Choose the format for this backup."
@@ -100,23 +110,33 @@ msgid "Choose the storage method for this backup."
 msgstr ""
 
 #. module: auto_backup
-#: code:addons/auto_backup/models/db_backup.py:265
+#: code:addons/auto_backup/models/db_backup.py:0
 #, python-format
 msgid "Cleanup of old database backups failed."
 msgstr ""
 
 #. module: auto_backup
-#: code:addons/auto_backup/models/db_backup.py:137
+#: code:addons/auto_backup/models/db_backup.py:0
 #, python-format
 msgid "Connection Test Failed!"
 msgstr ""
 
 #. module: auto_backup
-#: code:addons/auto_backup/models/db_backup.py:132
+#: code:addons/auto_backup/models/db_backup.py:0
 #, python-format
 msgid "Connection Test Succeeded!"
 msgstr ""
 
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__count_pending_changeset_changes
+msgid "Count Pending Changeset Changes"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__count_pending_changesets
+msgid "Count Pending Changesets"
+msgstr ""
+
 #. module: auto_backup
 #: model:ir.model.fields,field_description:auto_backup.field_db_backup__create_uid
 msgid "Created by"
@@ -133,14 +153,14 @@ msgid "Database Backup"
 msgstr ""
 
 #. module: auto_backup
-#: code:addons/auto_backup/models/db_backup.py:219
+#: code:addons/auto_backup/models/db_backup.py:0
 #: model:mail.message.subtype,description:auto_backup.mail_message_subtype_failure
 #, python-format
 msgid "Database backup failed."
 msgstr ""
 
 #. module: auto_backup
-#: code:addons/auto_backup/models/db_backup.py:227
+#: code:addons/auto_backup/models/db_backup.py:0
 #: model:mail.message.subtype,description:auto_backup.mail_message_subtype_success
 #, python-format
 msgid "Database backup succeeded."
@@ -157,7 +177,7 @@ msgid "Display Name"
 msgstr "Visnings navn"
 
 #. module: auto_backup
-#: code:addons/auto_backup/models/db_backup.py:123
+#: code:addons/auto_backup/models/db_backup.py:0
 #, python-format
 msgid ""
 "Do not save backups on your filestore, or you will backup your backups too!"
@@ -204,7 +224,7 @@ msgid "Help"
 msgstr ""
 
 #. module: auto_backup
-#: sql_constraint:db.backup:0
+#: model:ir.model.constraint,message:auto_backup.constraint_db_backup_days_to_keep_positive
 msgid "I cannot remove backups from the future. Ask Doc for that."
 msgstr ""
 
@@ -213,18 +233,15 @@ msgstr ""
 msgid "ID"
 msgstr "ID"
 
-#. module: auto_backup
-#: model:ir.model.fields,help:auto_backup.field_db_backup__message_unread
-msgid "If checked new messages require your attention."
-msgstr ""
-
 #. module: auto_backup
 #: model:ir.model.fields,help:auto_backup.field_db_backup__message_needaction
+#: model:ir.model.fields,help:auto_backup.field_db_backup__message_unread
 msgid "If checked, new messages require your attention."
 msgstr ""
 
 #. module: auto_backup
 #: model:ir.model.fields,help:auto_backup.field_db_backup__message_has_error
+#: model:ir.model.fields,help:auto_backup.field_db_backup__message_has_sms_error
 msgid "If checked, some messages have a delivery error."
 msgstr ""
 
@@ -249,7 +266,7 @@ msgid "Last Updated on"
 msgstr "Sist oppdatert"
 
 #. module: auto_backup
-#: selection:db.backup,method:0
+#: model:ir.model.fields.selection,name:auto_backup.selection__db_backup__method__local
 msgid "Local disk"
 msgstr ""
 
@@ -285,7 +302,7 @@ msgstr ""
 
 #. module: auto_backup
 #: model:ir.model.fields,field_description:auto_backup.field_db_backup__message_has_error_counter
-msgid "Number of error"
+msgid "Number of errors"
 msgstr ""
 
 #. module: auto_backup
@@ -316,7 +333,7 @@ msgid "Private key location"
 msgstr ""
 
 #. module: auto_backup
-#: selection:db.backup,method:0
+#: model:ir.model.fields.selection,name:auto_backup.selection__db_backup__method__sftp
 msgid "Remote SFTP server"
 msgstr ""
 
@@ -340,6 +357,11 @@ msgstr ""
 msgid "SFTP Settings"
 msgstr ""
 
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__message_has_sms_error
+msgid "SMS Delivery error"
+msgstr ""
+
 #. module: auto_backup
 #: model_terms:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
 msgid "Search the action named 'Backup scheduler'."
@@ -351,6 +373,11 @@ msgid ""
 "Set the scheduler to active and fill in how often you want backups generated."
 msgstr ""
 
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__smart_search
+msgid "Smart Search"
+msgstr ""
+
 #. module: auto_backup
 #: model:ir.model.fields,help:auto_backup.field_db_backup__name
 msgid "Summary of this backup process"
@@ -403,6 +430,11 @@ msgid ""
 "you specify."
 msgstr ""
 
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__user_can_see_changeset
+msgid "User Can See Changeset"
+msgstr ""
+
 #. module: auto_backup
 #: model:ir.model.fields,field_description:auto_backup.field_db_backup__sftp_user
 msgid "Username in the SFTP Server"
@@ -429,7 +461,7 @@ msgid "john"
 msgstr ""
 
 #. module: auto_backup
-#: selection:db.backup,backup_format:0
+#: model:ir.model.fields.selection,name:auto_backup.selection__db_backup__backup_format__dump
 msgid "pg_dump custom format (without filestore)"
 msgstr ""
 
@@ -439,6 +471,6 @@ msgid "sftp.example.com"
 msgstr ""
 
 #. module: auto_backup
-#: selection:db.backup,backup_format:0
+#: model:ir.model.fields.selection,name:auto_backup.selection__db_backup__backup_format__zip
 msgid "zip (includes filestore)"
 msgstr ""
diff --git a/auto_backup/i18n/nb_NO.po b/auto_backup/i18n/nb_NO.po
index a49d479b928..e50100dbf4e 100644
--- a/auto_backup/i18n/nb_NO.po
+++ b/auto_backup/i18n/nb_NO.po
@@ -85,10 +85,20 @@ msgid "Basic backup configuration"
 msgstr ""
 
 #. module: auto_backup
-#: sql_constraint:db.backup:0
+#: model:ir.model.constraint,message:auto_backup.constraint_db_backup_name_unique
 msgid "Cannot duplicate a configuration."
 msgstr ""
 
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__changeset_change_ids
+msgid "Changeset Changes"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__changeset_ids
+msgid "Changesets"
+msgstr ""
+
 #. module: auto_backup
 #: model:ir.model.fields,help:auto_backup.field_db_backup__backup_format
 msgid "Choose the format for this backup."
@@ -100,23 +110,33 @@ msgid "Choose the storage method for this backup."
 msgstr ""
 
 #. module: auto_backup
-#: code:addons/auto_backup/models/db_backup.py:265
+#: code:addons/auto_backup/models/db_backup.py:0
 #, python-format
 msgid "Cleanup of old database backups failed."
 msgstr ""
 
 #. module: auto_backup
-#: code:addons/auto_backup/models/db_backup.py:137
+#: code:addons/auto_backup/models/db_backup.py:0
 #, python-format
 msgid "Connection Test Failed!"
 msgstr ""
 
 #. module: auto_backup
-#: code:addons/auto_backup/models/db_backup.py:132
+#: code:addons/auto_backup/models/db_backup.py:0
 #, python-format
 msgid "Connection Test Succeeded!"
 msgstr ""
 
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__count_pending_changeset_changes
+msgid "Count Pending Changeset Changes"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__count_pending_changesets
+msgid "Count Pending Changesets"
+msgstr ""
+
 #. module: auto_backup
 #: model:ir.model.fields,field_description:auto_backup.field_db_backup__create_uid
 msgid "Created by"
@@ -133,14 +153,14 @@ msgid "Database Backup"
 msgstr ""
 
 #. module: auto_backup
-#: code:addons/auto_backup/models/db_backup.py:219
+#: code:addons/auto_backup/models/db_backup.py:0
 #: model:mail.message.subtype,description:auto_backup.mail_message_subtype_failure
 #, python-format
 msgid "Database backup failed."
 msgstr ""
 
 #. module: auto_backup
-#: code:addons/auto_backup/models/db_backup.py:227
+#: code:addons/auto_backup/models/db_backup.py:0
 #: model:mail.message.subtype,description:auto_backup.mail_message_subtype_success
 #, python-format
 msgid "Database backup succeeded."
@@ -157,7 +177,7 @@ msgid "Display Name"
 msgstr "Vis navn"
 
 #. module: auto_backup
-#: code:addons/auto_backup/models/db_backup.py:123
+#: code:addons/auto_backup/models/db_backup.py:0
 #, python-format
 msgid ""
 "Do not save backups on your filestore, or you will backup your backups too!"
@@ -204,7 +224,7 @@ msgid "Help"
 msgstr ""
 
 #. module: auto_backup
-#: sql_constraint:db.backup:0
+#: model:ir.model.constraint,message:auto_backup.constraint_db_backup_days_to_keep_positive
 msgid "I cannot remove backups from the future. Ask Doc for that."
 msgstr ""
 
@@ -213,18 +233,15 @@ msgstr ""
 msgid "ID"
 msgstr "ID"
 
-#. module: auto_backup
-#: model:ir.model.fields,help:auto_backup.field_db_backup__message_unread
-msgid "If checked new messages require your attention."
-msgstr ""
-
 #. module: auto_backup
 #: model:ir.model.fields,help:auto_backup.field_db_backup__message_needaction
+#: model:ir.model.fields,help:auto_backup.field_db_backup__message_unread
 msgid "If checked, new messages require your attention."
 msgstr ""
 
 #. module: auto_backup
 #: model:ir.model.fields,help:auto_backup.field_db_backup__message_has_error
+#: model:ir.model.fields,help:auto_backup.field_db_backup__message_has_sms_error
 msgid "If checked, some messages have a delivery error."
 msgstr ""
 
@@ -249,7 +266,7 @@ msgid "Last Updated on"
 msgstr "Sist oppdatert den"
 
 #. module: auto_backup
-#: selection:db.backup,method:0
+#: model:ir.model.fields.selection,name:auto_backup.selection__db_backup__method__local
 msgid "Local disk"
 msgstr ""
 
@@ -285,7 +302,7 @@ msgstr ""
 
 #. module: auto_backup
 #: model:ir.model.fields,field_description:auto_backup.field_db_backup__message_has_error_counter
-msgid "Number of error"
+msgid "Number of errors"
 msgstr ""
 
 #. module: auto_backup
@@ -316,7 +333,7 @@ msgid "Private key location"
 msgstr ""
 
 #. module: auto_backup
-#: selection:db.backup,method:0
+#: model:ir.model.fields.selection,name:auto_backup.selection__db_backup__method__sftp
 msgid "Remote SFTP server"
 msgstr ""
 
@@ -340,6 +357,11 @@ msgstr ""
 msgid "SFTP Settings"
 msgstr ""
 
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__message_has_sms_error
+msgid "SMS Delivery error"
+msgstr ""
+
 #. module: auto_backup
 #: model_terms:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
 msgid "Search the action named 'Backup scheduler'."
@@ -351,6 +373,11 @@ msgid ""
 "Set the scheduler to active and fill in how often you want backups generated."
 msgstr ""
 
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__smart_search
+msgid "Smart Search"
+msgstr ""
+
 #. module: auto_backup
 #: model:ir.model.fields,help:auto_backup.field_db_backup__name
 msgid "Summary of this backup process"
@@ -403,6 +430,11 @@ msgid ""
 "you specify."
 msgstr ""
 
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__user_can_see_changeset
+msgid "User Can See Changeset"
+msgstr ""
+
 #. module: auto_backup
 #: model:ir.model.fields,field_description:auto_backup.field_db_backup__sftp_user
 msgid "Username in the SFTP Server"
@@ -429,7 +461,7 @@ msgid "john"
 msgstr ""
 
 #. module: auto_backup
-#: selection:db.backup,backup_format:0
+#: model:ir.model.fields.selection,name:auto_backup.selection__db_backup__backup_format__dump
 msgid "pg_dump custom format (without filestore)"
 msgstr ""
 
@@ -439,6 +471,6 @@ msgid "sftp.example.com"
 msgstr ""
 
 #. module: auto_backup
-#: selection:db.backup,backup_format:0
+#: model:ir.model.fields.selection,name:auto_backup.selection__db_backup__backup_format__zip
 msgid "zip (includes filestore)"
 msgstr ""
diff --git a/auto_backup/i18n/nl.po b/auto_backup/i18n/nl.po
index 07f6f8646a4..3f9cffde2b6 100644
--- a/auto_backup/i18n/nl.po
+++ b/auto_backup/i18n/nl.po
@@ -87,10 +87,20 @@ msgid "Basic backup configuration"
 msgstr "Basis backup configuratie"
 
 #. module: auto_backup
-#: sql_constraint:db.backup:0
+#: model:ir.model.constraint,message:auto_backup.constraint_db_backup_name_unique
 msgid "Cannot duplicate a configuration."
 msgstr "Kan een configuratie niet dupliceren."
 
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__changeset_change_ids
+msgid "Changeset Changes"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__changeset_ids
+msgid "Changesets"
+msgstr ""
+
 #. module: auto_backup
 #: model:ir.model.fields,help:auto_backup.field_db_backup__backup_format
 #, fuzzy
@@ -103,23 +113,33 @@ msgid "Choose the storage method for this backup."
 msgstr "Kies een opslag methode voor deze backup."
 
 #. module: auto_backup
-#: code:addons/auto_backup/models/db_backup.py:265
+#: code:addons/auto_backup/models/db_backup.py:0
 #, python-format
 msgid "Cleanup of old database backups failed."
 msgstr "Opruimen oude database backups is mislukt."
 
 #. module: auto_backup
-#: code:addons/auto_backup/models/db_backup.py:137
+#: code:addons/auto_backup/models/db_backup.py:0
 #, python-format
 msgid "Connection Test Failed!"
 msgstr "Connectie test mislukt!"
 
 #. module: auto_backup
-#: code:addons/auto_backup/models/db_backup.py:132
+#: code:addons/auto_backup/models/db_backup.py:0
 #, python-format
 msgid "Connection Test Succeeded!"
 msgstr "Connectie test geslaagd!"
 
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__count_pending_changeset_changes
+msgid "Count Pending Changeset Changes"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__count_pending_changesets
+msgid "Count Pending Changesets"
+msgstr ""
+
 #. module: auto_backup
 #: model:ir.model.fields,field_description:auto_backup.field_db_backup__create_uid
 msgid "Created by"
@@ -136,14 +156,14 @@ msgid "Database Backup"
 msgstr "Database backup"
 
 #. module: auto_backup
-#: code:addons/auto_backup/models/db_backup.py:219
+#: code:addons/auto_backup/models/db_backup.py:0
 #: model:mail.message.subtype,description:auto_backup.mail_message_subtype_failure
 #, python-format
 msgid "Database backup failed."
 msgstr "Database backup mislukt."
 
 #. module: auto_backup
-#: code:addons/auto_backup/models/db_backup.py:227
+#: code:addons/auto_backup/models/db_backup.py:0
 #: model:mail.message.subtype,description:auto_backup.mail_message_subtype_success
 #, python-format
 msgid "Database backup succeeded."
@@ -160,7 +180,7 @@ msgid "Display Name"
 msgstr "Weergave naam"
 
 #. module: auto_backup
-#: code:addons/auto_backup/models/db_backup.py:123
+#: code:addons/auto_backup/models/db_backup.py:0
 #, python-format
 msgid ""
 "Do not save backups on your filestore, or you will backup your backups too!"
@@ -207,7 +227,7 @@ msgid "Help"
 msgstr "Help"
 
 #. module: auto_backup
-#: sql_constraint:db.backup:0
+#: model:ir.model.constraint,message:auto_backup.constraint_db_backup_days_to_keep_positive
 msgid "I cannot remove backups from the future. Ask Doc for that."
 msgstr ""
 
@@ -216,18 +236,15 @@ msgstr ""
 msgid "ID"
 msgstr "ID"
 
-#. module: auto_backup
-#: model:ir.model.fields,help:auto_backup.field_db_backup__message_unread
-msgid "If checked new messages require your attention."
-msgstr ""
-
 #. module: auto_backup
 #: model:ir.model.fields,help:auto_backup.field_db_backup__message_needaction
+#: model:ir.model.fields,help:auto_backup.field_db_backup__message_unread
 msgid "If checked, new messages require your attention."
 msgstr ""
 
 #. module: auto_backup
 #: model:ir.model.fields,help:auto_backup.field_db_backup__message_has_error
+#: model:ir.model.fields,help:auto_backup.field_db_backup__message_has_sms_error
 msgid "If checked, some messages have a delivery error."
 msgstr ""
 
@@ -252,7 +269,7 @@ msgid "Last Updated on"
 msgstr "Laatst bijgewerkt op"
 
 #. module: auto_backup
-#: selection:db.backup,method:0
+#: model:ir.model.fields.selection,name:auto_backup.selection__db_backup__method__local
 msgid "Local disk"
 msgstr ""
 
@@ -288,7 +305,7 @@ msgstr ""
 
 #. module: auto_backup
 #: model:ir.model.fields,field_description:auto_backup.field_db_backup__message_has_error_counter
-msgid "Number of error"
+msgid "Number of errors"
 msgstr ""
 
 #. module: auto_backup
@@ -319,7 +336,7 @@ msgid "Private key location"
 msgstr ""
 
 #. module: auto_backup
-#: selection:db.backup,method:0
+#: model:ir.model.fields.selection,name:auto_backup.selection__db_backup__method__sftp
 msgid "Remote SFTP server"
 msgstr "Gebruikersnaam SFTP Server"
 
@@ -343,6 +360,11 @@ msgstr "Gebruikersnaam SFTP Server"
 msgid "SFTP Settings"
 msgstr ""
 
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__message_has_sms_error
+msgid "SMS Delivery error"
+msgstr ""
+
 #. module: auto_backup
 #: model_terms:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
 msgid "Search the action named 'Backup scheduler'."
@@ -355,6 +377,11 @@ msgid ""
 msgstr ""
 "Zet de planner op actief en vul in hoe vaak de backup moet gemaakt worden."
 
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__smart_search
+msgid "Smart Search"
+msgstr ""
+
 #. module: auto_backup
 #: model:ir.model.fields,help:auto_backup.field_db_backup__name
 msgid "Summary of this backup process"
@@ -413,6 +440,11 @@ msgstr ""
 "Gebruik SFTP voorzichtig! Dit schrijft bestanden naar externe servers onder "
 "het pad dat u opgeeft."
 
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__user_can_see_changeset
+msgid "User Can See Changeset"
+msgstr ""
+
 #. module: auto_backup
 #: model:ir.model.fields,field_description:auto_backup.field_db_backup__sftp_user
 msgid "Username in the SFTP Server"
@@ -439,7 +471,7 @@ msgid "john"
 msgstr ""
 
 #. module: auto_backup
-#: selection:db.backup,backup_format:0
+#: model:ir.model.fields.selection,name:auto_backup.selection__db_backup__backup_format__dump
 msgid "pg_dump custom format (without filestore)"
 msgstr ""
 
@@ -449,6 +481,6 @@ msgid "sftp.example.com"
 msgstr ""
 
 #. module: auto_backup
-#: selection:db.backup,backup_format:0
+#: model:ir.model.fields.selection,name:auto_backup.selection__db_backup__backup_format__zip
 msgid "zip (includes filestore)"
 msgstr ""
diff --git a/auto_backup/i18n/nl_BE.po b/auto_backup/i18n/nl_BE.po
index eefe3c70616..991f7499121 100644
--- a/auto_backup/i18n/nl_BE.po
+++ b/auto_backup/i18n/nl_BE.po
@@ -87,11 +87,21 @@ msgid "Basic backup configuration"
 msgstr "Lokale backup configuratie"
 
 #. module: auto_backup
-#: sql_constraint:db.backup:0
+#: model:ir.model.constraint,message:auto_backup.constraint_db_backup_name_unique
 #, fuzzy
 msgid "Cannot duplicate a configuration."
 msgstr "Lokale backup configuratie"
 
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__changeset_change_ids
+msgid "Changeset Changes"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__changeset_ids
+msgid "Changesets"
+msgstr ""
+
 #. module: auto_backup
 #: model:ir.model.fields,help:auto_backup.field_db_backup__backup_format
 #, fuzzy
@@ -104,23 +114,33 @@ msgid "Choose the storage method for this backup."
 msgstr ""
 
 #. module: auto_backup
-#: code:addons/auto_backup/models/db_backup.py:265
+#: code:addons/auto_backup/models/db_backup.py:0
 #, python-format
 msgid "Cleanup of old database backups failed."
 msgstr ""
 
 #. module: auto_backup
-#: code:addons/auto_backup/models/db_backup.py:137
+#: code:addons/auto_backup/models/db_backup.py:0
 #, python-format
 msgid "Connection Test Failed!"
 msgstr ""
 
 #. module: auto_backup
-#: code:addons/auto_backup/models/db_backup.py:132
+#: code:addons/auto_backup/models/db_backup.py:0
 #, python-format
 msgid "Connection Test Succeeded!"
 msgstr ""
 
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__count_pending_changeset_changes
+msgid "Count Pending Changeset Changes"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__count_pending_changesets
+msgid "Count Pending Changesets"
+msgstr ""
+
 #. module: auto_backup
 #: model:ir.model.fields,field_description:auto_backup.field_db_backup__create_uid
 msgid "Created by"
@@ -138,14 +158,14 @@ msgid "Database Backup"
 msgstr "Database"
 
 #. module: auto_backup
-#: code:addons/auto_backup/models/db_backup.py:219
+#: code:addons/auto_backup/models/db_backup.py:0
 #: model:mail.message.subtype,description:auto_backup.mail_message_subtype_failure
 #, python-format
 msgid "Database backup failed."
 msgstr ""
 
 #. module: auto_backup
-#: code:addons/auto_backup/models/db_backup.py:227
+#: code:addons/auto_backup/models/db_backup.py:0
 #: model:mail.message.subtype,description:auto_backup.mail_message_subtype_success
 #, python-format
 msgid "Database backup succeeded."
@@ -162,7 +182,7 @@ msgid "Display Name"
 msgstr ""
 
 #. module: auto_backup
-#: code:addons/auto_backup/models/db_backup.py:123
+#: code:addons/auto_backup/models/db_backup.py:0
 #, python-format
 msgid ""
 "Do not save backups on your filestore, or you will backup your backups too!"
@@ -209,7 +229,7 @@ msgid "Help"
 msgstr "Help"
 
 #. module: auto_backup
-#: sql_constraint:db.backup:0
+#: model:ir.model.constraint,message:auto_backup.constraint_db_backup_days_to_keep_positive
 msgid "I cannot remove backups from the future. Ask Doc for that."
 msgstr ""
 
@@ -218,18 +238,15 @@ msgstr ""
 msgid "ID"
 msgstr "ID"
 
-#. module: auto_backup
-#: model:ir.model.fields,help:auto_backup.field_db_backup__message_unread
-msgid "If checked new messages require your attention."
-msgstr ""
-
 #. module: auto_backup
 #: model:ir.model.fields,help:auto_backup.field_db_backup__message_needaction
+#: model:ir.model.fields,help:auto_backup.field_db_backup__message_unread
 msgid "If checked, new messages require your attention."
 msgstr ""
 
 #. module: auto_backup
 #: model:ir.model.fields,help:auto_backup.field_db_backup__message_has_error
+#: model:ir.model.fields,help:auto_backup.field_db_backup__message_has_sms_error
 msgid "If checked, some messages have a delivery error."
 msgstr ""
 
@@ -255,7 +272,7 @@ msgid "Last Updated on"
 msgstr "Laatst bijgewerkt op"
 
 #. module: auto_backup
-#: selection:db.backup,method:0
+#: model:ir.model.fields.selection,name:auto_backup.selection__db_backup__method__local
 msgid "Local disk"
 msgstr ""
 
@@ -291,7 +308,7 @@ msgstr ""
 
 #. module: auto_backup
 #: model:ir.model.fields,field_description:auto_backup.field_db_backup__message_has_error_counter
-msgid "Number of error"
+msgid "Number of errors"
 msgstr ""
 
 #. module: auto_backup
@@ -322,7 +339,7 @@ msgid "Private key location"
 msgstr ""
 
 #. module: auto_backup
-#: selection:db.backup,method:0
+#: model:ir.model.fields.selection,name:auto_backup.selection__db_backup__method__sftp
 #, fuzzy
 msgid "Remote SFTP server"
 msgstr "Gebruikersnaam SFTP Server"
@@ -349,6 +366,11 @@ msgstr "Gebruikersnaam SFTP Server"
 msgid "SFTP Settings"
 msgstr ""
 
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__message_has_sms_error
+msgid "SMS Delivery error"
+msgstr ""
+
 #. module: auto_backup
 #: model_terms:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
 msgid "Search the action named 'Backup scheduler'."
@@ -361,6 +383,11 @@ msgid ""
 msgstr ""
 "Zet de planner op actief en vul in hoe vaak de backup moet gemaakt worden."
 
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__smart_search
+msgid "Smart Search"
+msgstr ""
+
 #. module: auto_backup
 #: model:ir.model.fields,help:auto_backup.field_db_backup__name
 msgid "Summary of this backup process"
@@ -421,6 +448,11 @@ msgstr ""
 "Gebruik SFTP voorzichtig! Dit schrijft bestanden naar externe servers onder "
 "het pad dat u opgeeft."
 
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__user_can_see_changeset
+msgid "User Can See Changeset"
+msgstr ""
+
 #. module: auto_backup
 #: model:ir.model.fields,field_description:auto_backup.field_db_backup__sftp_user
 #, fuzzy
@@ -448,7 +480,7 @@ msgid "john"
 msgstr ""
 
 #. module: auto_backup
-#: selection:db.backup,backup_format:0
+#: model:ir.model.fields.selection,name:auto_backup.selection__db_backup__backup_format__dump
 msgid "pg_dump custom format (without filestore)"
 msgstr ""
 
@@ -458,7 +490,7 @@ msgid "sftp.example.com"
 msgstr ""
 
 #. module: auto_backup
-#: selection:db.backup,backup_format:0
+#: model:ir.model.fields.selection,name:auto_backup.selection__db_backup__backup_format__zip
 msgid "zip (includes filestore)"
 msgstr ""
 
diff --git a/auto_backup/i18n/nl_NL.po b/auto_backup/i18n/nl_NL.po
index d04a971a395..14063949236 100644
--- a/auto_backup/i18n/nl_NL.po
+++ b/auto_backup/i18n/nl_NL.po
@@ -85,10 +85,20 @@ msgid "Basic backup configuration"
 msgstr ""
 
 #. module: auto_backup
-#: sql_constraint:db.backup:0
+#: model:ir.model.constraint,message:auto_backup.constraint_db_backup_name_unique
 msgid "Cannot duplicate a configuration."
 msgstr ""
 
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__changeset_change_ids
+msgid "Changeset Changes"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__changeset_ids
+msgid "Changesets"
+msgstr ""
+
 #. module: auto_backup
 #: model:ir.model.fields,help:auto_backup.field_db_backup__backup_format
 msgid "Choose the format for this backup."
@@ -100,23 +110,33 @@ msgid "Choose the storage method for this backup."
 msgstr ""
 
 #. module: auto_backup
-#: code:addons/auto_backup/models/db_backup.py:265
+#: code:addons/auto_backup/models/db_backup.py:0
 #, python-format
 msgid "Cleanup of old database backups failed."
 msgstr ""
 
 #. module: auto_backup
-#: code:addons/auto_backup/models/db_backup.py:137
+#: code:addons/auto_backup/models/db_backup.py:0
 #, python-format
 msgid "Connection Test Failed!"
 msgstr ""
 
 #. module: auto_backup
-#: code:addons/auto_backup/models/db_backup.py:132
+#: code:addons/auto_backup/models/db_backup.py:0
 #, python-format
 msgid "Connection Test Succeeded!"
 msgstr ""
 
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__count_pending_changeset_changes
+msgid "Count Pending Changeset Changes"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__count_pending_changesets
+msgid "Count Pending Changesets"
+msgstr ""
+
 #. module: auto_backup
 #: model:ir.model.fields,field_description:auto_backup.field_db_backup__create_uid
 msgid "Created by"
@@ -133,14 +153,14 @@ msgid "Database Backup"
 msgstr ""
 
 #. module: auto_backup
-#: code:addons/auto_backup/models/db_backup.py:219
+#: code:addons/auto_backup/models/db_backup.py:0
 #: model:mail.message.subtype,description:auto_backup.mail_message_subtype_failure
 #, python-format
 msgid "Database backup failed."
 msgstr ""
 
 #. module: auto_backup
-#: code:addons/auto_backup/models/db_backup.py:227
+#: code:addons/auto_backup/models/db_backup.py:0
 #: model:mail.message.subtype,description:auto_backup.mail_message_subtype_success
 #, python-format
 msgid "Database backup succeeded."
@@ -157,7 +177,7 @@ msgid "Display Name"
 msgstr "Weergavenaam"
 
 #. module: auto_backup
-#: code:addons/auto_backup/models/db_backup.py:123
+#: code:addons/auto_backup/models/db_backup.py:0
 #, python-format
 msgid ""
 "Do not save backups on your filestore, or you will backup your backups too!"
@@ -204,7 +224,7 @@ msgid "Help"
 msgstr ""
 
 #. module: auto_backup
-#: sql_constraint:db.backup:0
+#: model:ir.model.constraint,message:auto_backup.constraint_db_backup_days_to_keep_positive
 msgid "I cannot remove backups from the future. Ask Doc for that."
 msgstr ""
 
@@ -213,18 +233,15 @@ msgstr ""
 msgid "ID"
 msgstr "ID"
 
-#. module: auto_backup
-#: model:ir.model.fields,help:auto_backup.field_db_backup__message_unread
-msgid "If checked new messages require your attention."
-msgstr ""
-
 #. module: auto_backup
 #: model:ir.model.fields,help:auto_backup.field_db_backup__message_needaction
+#: model:ir.model.fields,help:auto_backup.field_db_backup__message_unread
 msgid "If checked, new messages require your attention."
 msgstr ""
 
 #. module: auto_backup
 #: model:ir.model.fields,help:auto_backup.field_db_backup__message_has_error
+#: model:ir.model.fields,help:auto_backup.field_db_backup__message_has_sms_error
 msgid "If checked, some messages have a delivery error."
 msgstr ""
 
@@ -249,7 +266,7 @@ msgid "Last Updated on"
 msgstr "Laatst bijgewerkt op"
 
 #. module: auto_backup
-#: selection:db.backup,method:0
+#: model:ir.model.fields.selection,name:auto_backup.selection__db_backup__method__local
 msgid "Local disk"
 msgstr ""
 
@@ -285,7 +302,7 @@ msgstr ""
 
 #. module: auto_backup
 #: model:ir.model.fields,field_description:auto_backup.field_db_backup__message_has_error_counter
-msgid "Number of error"
+msgid "Number of errors"
 msgstr ""
 
 #. module: auto_backup
@@ -316,7 +333,7 @@ msgid "Private key location"
 msgstr ""
 
 #. module: auto_backup
-#: selection:db.backup,method:0
+#: model:ir.model.fields.selection,name:auto_backup.selection__db_backup__method__sftp
 msgid "Remote SFTP server"
 msgstr ""
 
@@ -340,6 +357,11 @@ msgstr ""
 msgid "SFTP Settings"
 msgstr ""
 
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__message_has_sms_error
+msgid "SMS Delivery error"
+msgstr ""
+
 #. module: auto_backup
 #: model_terms:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
 msgid "Search the action named 'Backup scheduler'."
@@ -351,6 +373,11 @@ msgid ""
 "Set the scheduler to active and fill in how often you want backups generated."
 msgstr ""
 
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__smart_search
+msgid "Smart Search"
+msgstr ""
+
 #. module: auto_backup
 #: model:ir.model.fields,help:auto_backup.field_db_backup__name
 msgid "Summary of this backup process"
@@ -403,6 +430,11 @@ msgid ""
 "you specify."
 msgstr ""
 
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__user_can_see_changeset
+msgid "User Can See Changeset"
+msgstr ""
+
 #. module: auto_backup
 #: model:ir.model.fields,field_description:auto_backup.field_db_backup__sftp_user
 msgid "Username in the SFTP Server"
@@ -429,7 +461,7 @@ msgid "john"
 msgstr ""
 
 #. module: auto_backup
-#: selection:db.backup,backup_format:0
+#: model:ir.model.fields.selection,name:auto_backup.selection__db_backup__backup_format__dump
 msgid "pg_dump custom format (without filestore)"
 msgstr ""
 
@@ -439,6 +471,6 @@ msgid "sftp.example.com"
 msgstr ""
 
 #. module: auto_backup
-#: selection:db.backup,backup_format:0
+#: model:ir.model.fields.selection,name:auto_backup.selection__db_backup__backup_format__zip
 msgid "zip (includes filestore)"
 msgstr ""
diff --git a/auto_backup/i18n/pl.po b/auto_backup/i18n/pl.po
index ca7706a2096..af6a282c56e 100644
--- a/auto_backup/i18n/pl.po
+++ b/auto_backup/i18n/pl.po
@@ -86,10 +86,20 @@ msgid "Basic backup configuration"
 msgstr ""
 
 #. module: auto_backup
-#: sql_constraint:db.backup:0
+#: model:ir.model.constraint,message:auto_backup.constraint_db_backup_name_unique
 msgid "Cannot duplicate a configuration."
 msgstr ""
 
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__changeset_change_ids
+msgid "Changeset Changes"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__changeset_ids
+msgid "Changesets"
+msgstr ""
+
 #. module: auto_backup
 #: model:ir.model.fields,help:auto_backup.field_db_backup__backup_format
 msgid "Choose the format for this backup."
@@ -101,23 +111,33 @@ msgid "Choose the storage method for this backup."
 msgstr ""
 
 #. module: auto_backup
-#: code:addons/auto_backup/models/db_backup.py:265
+#: code:addons/auto_backup/models/db_backup.py:0
 #, python-format
 msgid "Cleanup of old database backups failed."
 msgstr ""
 
 #. module: auto_backup
-#: code:addons/auto_backup/models/db_backup.py:137
+#: code:addons/auto_backup/models/db_backup.py:0
 #, python-format
 msgid "Connection Test Failed!"
 msgstr ""
 
 #. module: auto_backup
-#: code:addons/auto_backup/models/db_backup.py:132
+#: code:addons/auto_backup/models/db_backup.py:0
 #, python-format
 msgid "Connection Test Succeeded!"
 msgstr ""
 
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__count_pending_changeset_changes
+msgid "Count Pending Changeset Changes"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__count_pending_changesets
+msgid "Count Pending Changesets"
+msgstr ""
+
 #. module: auto_backup
 #: model:ir.model.fields,field_description:auto_backup.field_db_backup__create_uid
 msgid "Created by"
@@ -134,14 +154,14 @@ msgid "Database Backup"
 msgstr ""
 
 #. module: auto_backup
-#: code:addons/auto_backup/models/db_backup.py:219
+#: code:addons/auto_backup/models/db_backup.py:0
 #: model:mail.message.subtype,description:auto_backup.mail_message_subtype_failure
 #, python-format
 msgid "Database backup failed."
 msgstr ""
 
 #. module: auto_backup
-#: code:addons/auto_backup/models/db_backup.py:227
+#: code:addons/auto_backup/models/db_backup.py:0
 #: model:mail.message.subtype,description:auto_backup.mail_message_subtype_success
 #, python-format
 msgid "Database backup succeeded."
@@ -158,7 +178,7 @@ msgid "Display Name"
 msgstr "Wyświetlana nazwa "
 
 #. module: auto_backup
-#: code:addons/auto_backup/models/db_backup.py:123
+#: code:addons/auto_backup/models/db_backup.py:0
 #, python-format
 msgid ""
 "Do not save backups on your filestore, or you will backup your backups too!"
@@ -205,7 +225,7 @@ msgid "Help"
 msgstr ""
 
 #. module: auto_backup
-#: sql_constraint:db.backup:0
+#: model:ir.model.constraint,message:auto_backup.constraint_db_backup_days_to_keep_positive
 msgid "I cannot remove backups from the future. Ask Doc for that."
 msgstr ""
 
@@ -214,18 +234,15 @@ msgstr ""
 msgid "ID"
 msgstr "ID"
 
-#. module: auto_backup
-#: model:ir.model.fields,help:auto_backup.field_db_backup__message_unread
-msgid "If checked new messages require your attention."
-msgstr ""
-
 #. module: auto_backup
 #: model:ir.model.fields,help:auto_backup.field_db_backup__message_needaction
+#: model:ir.model.fields,help:auto_backup.field_db_backup__message_unread
 msgid "If checked, new messages require your attention."
 msgstr ""
 
 #. module: auto_backup
 #: model:ir.model.fields,help:auto_backup.field_db_backup__message_has_error
+#: model:ir.model.fields,help:auto_backup.field_db_backup__message_has_sms_error
 msgid "If checked, some messages have a delivery error."
 msgstr ""
 
@@ -250,7 +267,7 @@ msgid "Last Updated on"
 msgstr "Data ostatniej modyfikacji"
 
 #. module: auto_backup
-#: selection:db.backup,method:0
+#: model:ir.model.fields.selection,name:auto_backup.selection__db_backup__method__local
 msgid "Local disk"
 msgstr ""
 
@@ -286,7 +303,7 @@ msgstr ""
 
 #. module: auto_backup
 #: model:ir.model.fields,field_description:auto_backup.field_db_backup__message_has_error_counter
-msgid "Number of error"
+msgid "Number of errors"
 msgstr ""
 
 #. module: auto_backup
@@ -317,7 +334,7 @@ msgid "Private key location"
 msgstr ""
 
 #. module: auto_backup
-#: selection:db.backup,method:0
+#: model:ir.model.fields.selection,name:auto_backup.selection__db_backup__method__sftp
 msgid "Remote SFTP server"
 msgstr ""
 
@@ -341,6 +358,11 @@ msgstr ""
 msgid "SFTP Settings"
 msgstr ""
 
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__message_has_sms_error
+msgid "SMS Delivery error"
+msgstr ""
+
 #. module: auto_backup
 #: model_terms:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
 msgid "Search the action named 'Backup scheduler'."
@@ -352,6 +374,11 @@ msgid ""
 "Set the scheduler to active and fill in how often you want backups generated."
 msgstr ""
 
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__smart_search
+msgid "Smart Search"
+msgstr ""
+
 #. module: auto_backup
 #: model:ir.model.fields,help:auto_backup.field_db_backup__name
 msgid "Summary of this backup process"
@@ -404,6 +431,11 @@ msgid ""
 "you specify."
 msgstr ""
 
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__user_can_see_changeset
+msgid "User Can See Changeset"
+msgstr ""
+
 #. module: auto_backup
 #: model:ir.model.fields,field_description:auto_backup.field_db_backup__sftp_user
 msgid "Username in the SFTP Server"
@@ -430,7 +462,7 @@ msgid "john"
 msgstr ""
 
 #. module: auto_backup
-#: selection:db.backup,backup_format:0
+#: model:ir.model.fields.selection,name:auto_backup.selection__db_backup__backup_format__dump
 msgid "pg_dump custom format (without filestore)"
 msgstr ""
 
@@ -440,6 +472,6 @@ msgid "sftp.example.com"
 msgstr ""
 
 #. module: auto_backup
-#: selection:db.backup,backup_format:0
+#: model:ir.model.fields.selection,name:auto_backup.selection__db_backup__backup_format__zip
 msgid "zip (includes filestore)"
 msgstr ""
diff --git a/auto_backup/i18n/pt.po b/auto_backup/i18n/pt.po
index b22b87af354..6846685a245 100644
--- a/auto_backup/i18n/pt.po
+++ b/auto_backup/i18n/pt.po
@@ -84,10 +84,20 @@ msgid "Basic backup configuration"
 msgstr ""
 
 #. module: auto_backup
-#: sql_constraint:db.backup:0
+#: model:ir.model.constraint,message:auto_backup.constraint_db_backup_name_unique
 msgid "Cannot duplicate a configuration."
 msgstr ""
 
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__changeset_change_ids
+msgid "Changeset Changes"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__changeset_ids
+msgid "Changesets"
+msgstr ""
+
 #. module: auto_backup
 #: model:ir.model.fields,help:auto_backup.field_db_backup__backup_format
 msgid "Choose the format for this backup."
@@ -99,23 +109,33 @@ msgid "Choose the storage method for this backup."
 msgstr ""
 
 #. module: auto_backup
-#: code:addons/auto_backup/models/db_backup.py:265
+#: code:addons/auto_backup/models/db_backup.py:0
 #, python-format
 msgid "Cleanup of old database backups failed."
 msgstr ""
 
 #. module: auto_backup
-#: code:addons/auto_backup/models/db_backup.py:137
+#: code:addons/auto_backup/models/db_backup.py:0
 #, python-format
 msgid "Connection Test Failed!"
 msgstr ""
 
 #. module: auto_backup
-#: code:addons/auto_backup/models/db_backup.py:132
+#: code:addons/auto_backup/models/db_backup.py:0
 #, python-format
 msgid "Connection Test Succeeded!"
 msgstr ""
 
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__count_pending_changeset_changes
+msgid "Count Pending Changeset Changes"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__count_pending_changesets
+msgid "Count Pending Changesets"
+msgstr ""
+
 #. module: auto_backup
 #: model:ir.model.fields,field_description:auto_backup.field_db_backup__create_uid
 msgid "Created by"
@@ -132,14 +152,14 @@ msgid "Database Backup"
 msgstr ""
 
 #. module: auto_backup
-#: code:addons/auto_backup/models/db_backup.py:219
+#: code:addons/auto_backup/models/db_backup.py:0
 #: model:mail.message.subtype,description:auto_backup.mail_message_subtype_failure
 #, python-format
 msgid "Database backup failed."
 msgstr ""
 
 #. module: auto_backup
-#: code:addons/auto_backup/models/db_backup.py:227
+#: code:addons/auto_backup/models/db_backup.py:0
 #: model:mail.message.subtype,description:auto_backup.mail_message_subtype_success
 #, python-format
 msgid "Database backup succeeded."
@@ -156,7 +176,7 @@ msgid "Display Name"
 msgstr "Nome a Apresentar"
 
 #. module: auto_backup
-#: code:addons/auto_backup/models/db_backup.py:123
+#: code:addons/auto_backup/models/db_backup.py:0
 #, python-format
 msgid ""
 "Do not save backups on your filestore, or you will backup your backups too!"
@@ -203,7 +223,7 @@ msgid "Help"
 msgstr ""
 
 #. module: auto_backup
-#: sql_constraint:db.backup:0
+#: model:ir.model.constraint,message:auto_backup.constraint_db_backup_days_to_keep_positive
 msgid "I cannot remove backups from the future. Ask Doc for that."
 msgstr ""
 
@@ -212,18 +232,15 @@ msgstr ""
 msgid "ID"
 msgstr "ID"
 
-#. module: auto_backup
-#: model:ir.model.fields,help:auto_backup.field_db_backup__message_unread
-msgid "If checked new messages require your attention."
-msgstr ""
-
 #. module: auto_backup
 #: model:ir.model.fields,help:auto_backup.field_db_backup__message_needaction
+#: model:ir.model.fields,help:auto_backup.field_db_backup__message_unread
 msgid "If checked, new messages require your attention."
 msgstr ""
 
 #. module: auto_backup
 #: model:ir.model.fields,help:auto_backup.field_db_backup__message_has_error
+#: model:ir.model.fields,help:auto_backup.field_db_backup__message_has_sms_error
 msgid "If checked, some messages have a delivery error."
 msgstr ""
 
@@ -248,7 +265,7 @@ msgid "Last Updated on"
 msgstr "Última Atualização Em"
 
 #. module: auto_backup
-#: selection:db.backup,method:0
+#: model:ir.model.fields.selection,name:auto_backup.selection__db_backup__method__local
 msgid "Local disk"
 msgstr ""
 
@@ -284,7 +301,7 @@ msgstr ""
 
 #. module: auto_backup
 #: model:ir.model.fields,field_description:auto_backup.field_db_backup__message_has_error_counter
-msgid "Number of error"
+msgid "Number of errors"
 msgstr ""
 
 #. module: auto_backup
@@ -315,7 +332,7 @@ msgid "Private key location"
 msgstr ""
 
 #. module: auto_backup
-#: selection:db.backup,method:0
+#: model:ir.model.fields.selection,name:auto_backup.selection__db_backup__method__sftp
 msgid "Remote SFTP server"
 msgstr ""
 
@@ -339,6 +356,11 @@ msgstr ""
 msgid "SFTP Settings"
 msgstr ""
 
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__message_has_sms_error
+msgid "SMS Delivery error"
+msgstr ""
+
 #. module: auto_backup
 #: model_terms:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
 msgid "Search the action named 'Backup scheduler'."
@@ -350,6 +372,11 @@ msgid ""
 "Set the scheduler to active and fill in how often you want backups generated."
 msgstr ""
 
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__smart_search
+msgid "Smart Search"
+msgstr ""
+
 #. module: auto_backup
 #: model:ir.model.fields,help:auto_backup.field_db_backup__name
 msgid "Summary of this backup process"
@@ -402,6 +429,11 @@ msgid ""
 "you specify."
 msgstr ""
 
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__user_can_see_changeset
+msgid "User Can See Changeset"
+msgstr ""
+
 #. module: auto_backup
 #: model:ir.model.fields,field_description:auto_backup.field_db_backup__sftp_user
 msgid "Username in the SFTP Server"
@@ -428,7 +460,7 @@ msgid "john"
 msgstr ""
 
 #. module: auto_backup
-#: selection:db.backup,backup_format:0
+#: model:ir.model.fields.selection,name:auto_backup.selection__db_backup__backup_format__dump
 msgid "pg_dump custom format (without filestore)"
 msgstr ""
 
@@ -438,6 +470,6 @@ msgid "sftp.example.com"
 msgstr ""
 
 #. module: auto_backup
-#: selection:db.backup,backup_format:0
+#: model:ir.model.fields.selection,name:auto_backup.selection__db_backup__backup_format__zip
 msgid "zip (includes filestore)"
 msgstr ""
diff --git a/auto_backup/i18n/pt_BR.po b/auto_backup/i18n/pt_BR.po
index 37393ec9f76..55e2831f633 100644
--- a/auto_backup/i18n/pt_BR.po
+++ b/auto_backup/i18n/pt_BR.po
@@ -86,10 +86,20 @@ msgid "Basic backup configuration"
 msgstr ""
 
 #. module: auto_backup
-#: sql_constraint:db.backup:0
+#: model:ir.model.constraint,message:auto_backup.constraint_db_backup_name_unique
 msgid "Cannot duplicate a configuration."
 msgstr ""
 
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__changeset_change_ids
+msgid "Changeset Changes"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__changeset_ids
+msgid "Changesets"
+msgstr ""
+
 #. module: auto_backup
 #: model:ir.model.fields,help:auto_backup.field_db_backup__backup_format
 #, fuzzy
@@ -102,23 +112,33 @@ msgid "Choose the storage method for this backup."
 msgstr ""
 
 #. module: auto_backup
-#: code:addons/auto_backup/models/db_backup.py:265
+#: code:addons/auto_backup/models/db_backup.py:0
 #, python-format
 msgid "Cleanup of old database backups failed."
 msgstr ""
 
 #. module: auto_backup
-#: code:addons/auto_backup/models/db_backup.py:137
+#: code:addons/auto_backup/models/db_backup.py:0
 #, python-format
 msgid "Connection Test Failed!"
 msgstr ""
 
 #. module: auto_backup
-#: code:addons/auto_backup/models/db_backup.py:132
+#: code:addons/auto_backup/models/db_backup.py:0
 #, python-format
 msgid "Connection Test Succeeded!"
 msgstr ""
 
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__count_pending_changeset_changes
+msgid "Count Pending Changeset Changes"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__count_pending_changesets
+msgid "Count Pending Changesets"
+msgstr ""
+
 #. module: auto_backup
 #: model:ir.model.fields,field_description:auto_backup.field_db_backup__create_uid
 msgid "Created by"
@@ -136,14 +156,14 @@ msgid "Database Backup"
 msgstr "Backups Automáticos"
 
 #. module: auto_backup
-#: code:addons/auto_backup/models/db_backup.py:219
+#: code:addons/auto_backup/models/db_backup.py:0
 #: model:mail.message.subtype,description:auto_backup.mail_message_subtype_failure
 #, python-format
 msgid "Database backup failed."
 msgstr ""
 
 #. module: auto_backup
-#: code:addons/auto_backup/models/db_backup.py:227
+#: code:addons/auto_backup/models/db_backup.py:0
 #: model:mail.message.subtype,description:auto_backup.mail_message_subtype_success
 #, python-format
 msgid "Database backup succeeded."
@@ -160,7 +180,7 @@ msgid "Display Name"
 msgstr "Nome para Mostrar"
 
 #. module: auto_backup
-#: code:addons/auto_backup/models/db_backup.py:123
+#: code:addons/auto_backup/models/db_backup.py:0
 #, python-format
 msgid ""
 "Do not save backups on your filestore, or you will backup your backups too!"
@@ -207,7 +227,7 @@ msgid "Help"
 msgstr ""
 
 #. module: auto_backup
-#: sql_constraint:db.backup:0
+#: model:ir.model.constraint,message:auto_backup.constraint_db_backup_days_to_keep_positive
 msgid "I cannot remove backups from the future. Ask Doc for that."
 msgstr ""
 
@@ -216,18 +236,15 @@ msgstr ""
 msgid "ID"
 msgstr "Identificação"
 
-#. module: auto_backup
-#: model:ir.model.fields,help:auto_backup.field_db_backup__message_unread
-msgid "If checked new messages require your attention."
-msgstr ""
-
 #. module: auto_backup
 #: model:ir.model.fields,help:auto_backup.field_db_backup__message_needaction
+#: model:ir.model.fields,help:auto_backup.field_db_backup__message_unread
 msgid "If checked, new messages require your attention."
 msgstr ""
 
 #. module: auto_backup
 #: model:ir.model.fields,help:auto_backup.field_db_backup__message_has_error
+#: model:ir.model.fields,help:auto_backup.field_db_backup__message_has_sms_error
 msgid "If checked, some messages have a delivery error."
 msgstr ""
 
@@ -252,7 +269,7 @@ msgid "Last Updated on"
 msgstr "Última atualização em"
 
 #. module: auto_backup
-#: selection:db.backup,method:0
+#: model:ir.model.fields.selection,name:auto_backup.selection__db_backup__method__local
 msgid "Local disk"
 msgstr ""
 
@@ -288,7 +305,7 @@ msgstr ""
 
 #. module: auto_backup
 #: model:ir.model.fields,field_description:auto_backup.field_db_backup__message_has_error_counter
-msgid "Number of error"
+msgid "Number of errors"
 msgstr ""
 
 #. module: auto_backup
@@ -319,7 +336,7 @@ msgid "Private key location"
 msgstr ""
 
 #. module: auto_backup
-#: selection:db.backup,method:0
+#: model:ir.model.fields.selection,name:auto_backup.selection__db_backup__method__sftp
 msgid "Remote SFTP server"
 msgstr ""
 
@@ -343,6 +360,11 @@ msgstr ""
 msgid "SFTP Settings"
 msgstr ""
 
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__message_has_sms_error
+msgid "SMS Delivery error"
+msgstr ""
+
 #. module: auto_backup
 #: model_terms:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
 msgid "Search the action named 'Backup scheduler'."
@@ -354,6 +376,11 @@ msgid ""
 "Set the scheduler to active and fill in how often you want backups generated."
 msgstr ""
 
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__smart_search
+msgid "Smart Search"
+msgstr ""
+
 #. module: auto_backup
 #: model:ir.model.fields,help:auto_backup.field_db_backup__name
 msgid "Summary of this backup process"
@@ -406,6 +433,11 @@ msgid ""
 "you specify."
 msgstr ""
 
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__user_can_see_changeset
+msgid "User Can See Changeset"
+msgstr ""
+
 #. module: auto_backup
 #: model:ir.model.fields,field_description:auto_backup.field_db_backup__sftp_user
 msgid "Username in the SFTP Server"
@@ -432,7 +464,7 @@ msgid "john"
 msgstr ""
 
 #. module: auto_backup
-#: selection:db.backup,backup_format:0
+#: model:ir.model.fields.selection,name:auto_backup.selection__db_backup__backup_format__dump
 msgid "pg_dump custom format (without filestore)"
 msgstr ""
 
@@ -442,6 +474,6 @@ msgid "sftp.example.com"
 msgstr ""
 
 #. module: auto_backup
-#: selection:db.backup,backup_format:0
+#: model:ir.model.fields.selection,name:auto_backup.selection__db_backup__backup_format__zip
 msgid "zip (includes filestore)"
 msgstr ""
diff --git a/auto_backup/i18n/pt_PT.po b/auto_backup/i18n/pt_PT.po
index 308e2762b51..dd592ea1b7f 100644
--- a/auto_backup/i18n/pt_PT.po
+++ b/auto_backup/i18n/pt_PT.po
@@ -85,10 +85,20 @@ msgid "Basic backup configuration"
 msgstr ""
 
 #. module: auto_backup
-#: sql_constraint:db.backup:0
+#: model:ir.model.constraint,message:auto_backup.constraint_db_backup_name_unique
 msgid "Cannot duplicate a configuration."
 msgstr ""
 
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__changeset_change_ids
+msgid "Changeset Changes"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__changeset_ids
+msgid "Changesets"
+msgstr ""
+
 #. module: auto_backup
 #: model:ir.model.fields,help:auto_backup.field_db_backup__backup_format
 msgid "Choose the format for this backup."
@@ -100,23 +110,33 @@ msgid "Choose the storage method for this backup."
 msgstr ""
 
 #. module: auto_backup
-#: code:addons/auto_backup/models/db_backup.py:265
+#: code:addons/auto_backup/models/db_backup.py:0
 #, python-format
 msgid "Cleanup of old database backups failed."
 msgstr ""
 
 #. module: auto_backup
-#: code:addons/auto_backup/models/db_backup.py:137
+#: code:addons/auto_backup/models/db_backup.py:0
 #, python-format
 msgid "Connection Test Failed!"
 msgstr ""
 
 #. module: auto_backup
-#: code:addons/auto_backup/models/db_backup.py:132
+#: code:addons/auto_backup/models/db_backup.py:0
 #, python-format
 msgid "Connection Test Succeeded!"
 msgstr ""
 
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__count_pending_changeset_changes
+msgid "Count Pending Changeset Changes"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__count_pending_changesets
+msgid "Count Pending Changesets"
+msgstr ""
+
 #. module: auto_backup
 #: model:ir.model.fields,field_description:auto_backup.field_db_backup__create_uid
 msgid "Created by"
@@ -133,14 +153,14 @@ msgid "Database Backup"
 msgstr ""
 
 #. module: auto_backup
-#: code:addons/auto_backup/models/db_backup.py:219
+#: code:addons/auto_backup/models/db_backup.py:0
 #: model:mail.message.subtype,description:auto_backup.mail_message_subtype_failure
 #, python-format
 msgid "Database backup failed."
 msgstr ""
 
 #. module: auto_backup
-#: code:addons/auto_backup/models/db_backup.py:227
+#: code:addons/auto_backup/models/db_backup.py:0
 #: model:mail.message.subtype,description:auto_backup.mail_message_subtype_success
 #, python-format
 msgid "Database backup succeeded."
@@ -157,7 +177,7 @@ msgid "Display Name"
 msgstr "Nome a Apresentar"
 
 #. module: auto_backup
-#: code:addons/auto_backup/models/db_backup.py:123
+#: code:addons/auto_backup/models/db_backup.py:0
 #, python-format
 msgid ""
 "Do not save backups on your filestore, or you will backup your backups too!"
@@ -204,7 +224,7 @@ msgid "Help"
 msgstr ""
 
 #. module: auto_backup
-#: sql_constraint:db.backup:0
+#: model:ir.model.constraint,message:auto_backup.constraint_db_backup_days_to_keep_positive
 msgid "I cannot remove backups from the future. Ask Doc for that."
 msgstr ""
 
@@ -213,18 +233,15 @@ msgstr ""
 msgid "ID"
 msgstr "ID"
 
-#. module: auto_backup
-#: model:ir.model.fields,help:auto_backup.field_db_backup__message_unread
-msgid "If checked new messages require your attention."
-msgstr ""
-
 #. module: auto_backup
 #: model:ir.model.fields,help:auto_backup.field_db_backup__message_needaction
+#: model:ir.model.fields,help:auto_backup.field_db_backup__message_unread
 msgid "If checked, new messages require your attention."
 msgstr ""
 
 #. module: auto_backup
 #: model:ir.model.fields,help:auto_backup.field_db_backup__message_has_error
+#: model:ir.model.fields,help:auto_backup.field_db_backup__message_has_sms_error
 msgid "If checked, some messages have a delivery error."
 msgstr ""
 
@@ -249,7 +266,7 @@ msgid "Last Updated on"
 msgstr "Última Atualização em"
 
 #. module: auto_backup
-#: selection:db.backup,method:0
+#: model:ir.model.fields.selection,name:auto_backup.selection__db_backup__method__local
 msgid "Local disk"
 msgstr ""
 
@@ -285,7 +302,7 @@ msgstr ""
 
 #. module: auto_backup
 #: model:ir.model.fields,field_description:auto_backup.field_db_backup__message_has_error_counter
-msgid "Number of error"
+msgid "Number of errors"
 msgstr ""
 
 #. module: auto_backup
@@ -316,7 +333,7 @@ msgid "Private key location"
 msgstr ""
 
 #. module: auto_backup
-#: selection:db.backup,method:0
+#: model:ir.model.fields.selection,name:auto_backup.selection__db_backup__method__sftp
 msgid "Remote SFTP server"
 msgstr ""
 
@@ -340,6 +357,11 @@ msgstr ""
 msgid "SFTP Settings"
 msgstr ""
 
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__message_has_sms_error
+msgid "SMS Delivery error"
+msgstr ""
+
 #. module: auto_backup
 #: model_terms:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
 msgid "Search the action named 'Backup scheduler'."
@@ -351,6 +373,11 @@ msgid ""
 "Set the scheduler to active and fill in how often you want backups generated."
 msgstr ""
 
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__smart_search
+msgid "Smart Search"
+msgstr ""
+
 #. module: auto_backup
 #: model:ir.model.fields,help:auto_backup.field_db_backup__name
 msgid "Summary of this backup process"
@@ -403,6 +430,11 @@ msgid ""
 "you specify."
 msgstr ""
 
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__user_can_see_changeset
+msgid "User Can See Changeset"
+msgstr ""
+
 #. module: auto_backup
 #: model:ir.model.fields,field_description:auto_backup.field_db_backup__sftp_user
 msgid "Username in the SFTP Server"
@@ -429,7 +461,7 @@ msgid "john"
 msgstr ""
 
 #. module: auto_backup
-#: selection:db.backup,backup_format:0
+#: model:ir.model.fields.selection,name:auto_backup.selection__db_backup__backup_format__dump
 msgid "pg_dump custom format (without filestore)"
 msgstr ""
 
@@ -439,6 +471,6 @@ msgid "sftp.example.com"
 msgstr ""
 
 #. module: auto_backup
-#: selection:db.backup,backup_format:0
+#: model:ir.model.fields.selection,name:auto_backup.selection__db_backup__backup_format__zip
 msgid "zip (includes filestore)"
 msgstr ""
diff --git a/auto_backup/i18n/ro.po b/auto_backup/i18n/ro.po
index b2954f51394..58e08ba9165 100644
--- a/auto_backup/i18n/ro.po
+++ b/auto_backup/i18n/ro.po
@@ -85,10 +85,20 @@ msgid "Basic backup configuration"
 msgstr ""
 
 #. module: auto_backup
-#: sql_constraint:db.backup:0
+#: model:ir.model.constraint,message:auto_backup.constraint_db_backup_name_unique
 msgid "Cannot duplicate a configuration."
 msgstr ""
 
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__changeset_change_ids
+msgid "Changeset Changes"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__changeset_ids
+msgid "Changesets"
+msgstr ""
+
 #. module: auto_backup
 #: model:ir.model.fields,help:auto_backup.field_db_backup__backup_format
 msgid "Choose the format for this backup."
@@ -100,23 +110,33 @@ msgid "Choose the storage method for this backup."
 msgstr ""
 
 #. module: auto_backup
-#: code:addons/auto_backup/models/db_backup.py:265
+#: code:addons/auto_backup/models/db_backup.py:0
 #, python-format
 msgid "Cleanup of old database backups failed."
 msgstr ""
 
 #. module: auto_backup
-#: code:addons/auto_backup/models/db_backup.py:137
+#: code:addons/auto_backup/models/db_backup.py:0
 #, python-format
 msgid "Connection Test Failed!"
 msgstr ""
 
 #. module: auto_backup
-#: code:addons/auto_backup/models/db_backup.py:132
+#: code:addons/auto_backup/models/db_backup.py:0
 #, python-format
 msgid "Connection Test Succeeded!"
 msgstr ""
 
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__count_pending_changeset_changes
+msgid "Count Pending Changeset Changes"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__count_pending_changesets
+msgid "Count Pending Changesets"
+msgstr ""
+
 #. module: auto_backup
 #: model:ir.model.fields,field_description:auto_backup.field_db_backup__create_uid
 msgid "Created by"
@@ -133,14 +153,14 @@ msgid "Database Backup"
 msgstr ""
 
 #. module: auto_backup
-#: code:addons/auto_backup/models/db_backup.py:219
+#: code:addons/auto_backup/models/db_backup.py:0
 #: model:mail.message.subtype,description:auto_backup.mail_message_subtype_failure
 #, python-format
 msgid "Database backup failed."
 msgstr ""
 
 #. module: auto_backup
-#: code:addons/auto_backup/models/db_backup.py:227
+#: code:addons/auto_backup/models/db_backup.py:0
 #: model:mail.message.subtype,description:auto_backup.mail_message_subtype_success
 #, python-format
 msgid "Database backup succeeded."
@@ -157,7 +177,7 @@ msgid "Display Name"
 msgstr "Nume Afişat"
 
 #. module: auto_backup
-#: code:addons/auto_backup/models/db_backup.py:123
+#: code:addons/auto_backup/models/db_backup.py:0
 #, python-format
 msgid ""
 "Do not save backups on your filestore, or you will backup your backups too!"
@@ -204,7 +224,7 @@ msgid "Help"
 msgstr ""
 
 #. module: auto_backup
-#: sql_constraint:db.backup:0
+#: model:ir.model.constraint,message:auto_backup.constraint_db_backup_days_to_keep_positive
 msgid "I cannot remove backups from the future. Ask Doc for that."
 msgstr ""
 
@@ -213,18 +233,15 @@ msgstr ""
 msgid "ID"
 msgstr "ID"
 
-#. module: auto_backup
-#: model:ir.model.fields,help:auto_backup.field_db_backup__message_unread
-msgid "If checked new messages require your attention."
-msgstr ""
-
 #. module: auto_backup
 #: model:ir.model.fields,help:auto_backup.field_db_backup__message_needaction
+#: model:ir.model.fields,help:auto_backup.field_db_backup__message_unread
 msgid "If checked, new messages require your attention."
 msgstr ""
 
 #. module: auto_backup
 #: model:ir.model.fields,help:auto_backup.field_db_backup__message_has_error
+#: model:ir.model.fields,help:auto_backup.field_db_backup__message_has_sms_error
 msgid "If checked, some messages have a delivery error."
 msgstr ""
 
@@ -249,7 +266,7 @@ msgid "Last Updated on"
 msgstr "Ultima actualizare la"
 
 #. module: auto_backup
-#: selection:db.backup,method:0
+#: model:ir.model.fields.selection,name:auto_backup.selection__db_backup__method__local
 msgid "Local disk"
 msgstr ""
 
@@ -285,7 +302,7 @@ msgstr ""
 
 #. module: auto_backup
 #: model:ir.model.fields,field_description:auto_backup.field_db_backup__message_has_error_counter
-msgid "Number of error"
+msgid "Number of errors"
 msgstr ""
 
 #. module: auto_backup
@@ -316,7 +333,7 @@ msgid "Private key location"
 msgstr ""
 
 #. module: auto_backup
-#: selection:db.backup,method:0
+#: model:ir.model.fields.selection,name:auto_backup.selection__db_backup__method__sftp
 msgid "Remote SFTP server"
 msgstr ""
 
@@ -340,6 +357,11 @@ msgstr ""
 msgid "SFTP Settings"
 msgstr ""
 
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__message_has_sms_error
+msgid "SMS Delivery error"
+msgstr ""
+
 #. module: auto_backup
 #: model_terms:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
 msgid "Search the action named 'Backup scheduler'."
@@ -351,6 +373,11 @@ msgid ""
 "Set the scheduler to active and fill in how often you want backups generated."
 msgstr ""
 
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__smart_search
+msgid "Smart Search"
+msgstr ""
+
 #. module: auto_backup
 #: model:ir.model.fields,help:auto_backup.field_db_backup__name
 msgid "Summary of this backup process"
@@ -403,6 +430,11 @@ msgid ""
 "you specify."
 msgstr ""
 
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__user_can_see_changeset
+msgid "User Can See Changeset"
+msgstr ""
+
 #. module: auto_backup
 #: model:ir.model.fields,field_description:auto_backup.field_db_backup__sftp_user
 msgid "Username in the SFTP Server"
@@ -429,7 +461,7 @@ msgid "john"
 msgstr ""
 
 #. module: auto_backup
-#: selection:db.backup,backup_format:0
+#: model:ir.model.fields.selection,name:auto_backup.selection__db_backup__backup_format__dump
 msgid "pg_dump custom format (without filestore)"
 msgstr ""
 
@@ -439,6 +471,6 @@ msgid "sftp.example.com"
 msgstr ""
 
 #. module: auto_backup
-#: selection:db.backup,backup_format:0
+#: model:ir.model.fields.selection,name:auto_backup.selection__db_backup__backup_format__zip
 msgid "zip (includes filestore)"
 msgstr ""
diff --git a/auto_backup/i18n/ru.po b/auto_backup/i18n/ru.po
index d14f2c4e2dc..25209d91ef1 100644
--- a/auto_backup/i18n/ru.po
+++ b/auto_backup/i18n/ru.po
@@ -86,10 +86,20 @@ msgid "Basic backup configuration"
 msgstr ""
 
 #. module: auto_backup
-#: sql_constraint:db.backup:0
+#: model:ir.model.constraint,message:auto_backup.constraint_db_backup_name_unique
 msgid "Cannot duplicate a configuration."
 msgstr ""
 
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__changeset_change_ids
+msgid "Changeset Changes"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__changeset_ids
+msgid "Changesets"
+msgstr ""
+
 #. module: auto_backup
 #: model:ir.model.fields,help:auto_backup.field_db_backup__backup_format
 msgid "Choose the format for this backup."
@@ -101,23 +111,33 @@ msgid "Choose the storage method for this backup."
 msgstr ""
 
 #. module: auto_backup
-#: code:addons/auto_backup/models/db_backup.py:265
+#: code:addons/auto_backup/models/db_backup.py:0
 #, python-format
 msgid "Cleanup of old database backups failed."
 msgstr ""
 
 #. module: auto_backup
-#: code:addons/auto_backup/models/db_backup.py:137
+#: code:addons/auto_backup/models/db_backup.py:0
 #, python-format
 msgid "Connection Test Failed!"
 msgstr ""
 
 #. module: auto_backup
-#: code:addons/auto_backup/models/db_backup.py:132
+#: code:addons/auto_backup/models/db_backup.py:0
 #, python-format
 msgid "Connection Test Succeeded!"
 msgstr ""
 
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__count_pending_changeset_changes
+msgid "Count Pending Changeset Changes"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__count_pending_changesets
+msgid "Count Pending Changesets"
+msgstr ""
+
 #. module: auto_backup
 #: model:ir.model.fields,field_description:auto_backup.field_db_backup__create_uid
 msgid "Created by"
@@ -134,14 +154,14 @@ msgid "Database Backup"
 msgstr ""
 
 #. module: auto_backup
-#: code:addons/auto_backup/models/db_backup.py:219
+#: code:addons/auto_backup/models/db_backup.py:0
 #: model:mail.message.subtype,description:auto_backup.mail_message_subtype_failure
 #, python-format
 msgid "Database backup failed."
 msgstr ""
 
 #. module: auto_backup
-#: code:addons/auto_backup/models/db_backup.py:227
+#: code:addons/auto_backup/models/db_backup.py:0
 #: model:mail.message.subtype,description:auto_backup.mail_message_subtype_success
 #, python-format
 msgid "Database backup succeeded."
@@ -158,7 +178,7 @@ msgid "Display Name"
 msgstr ""
 
 #. module: auto_backup
-#: code:addons/auto_backup/models/db_backup.py:123
+#: code:addons/auto_backup/models/db_backup.py:0
 #, python-format
 msgid ""
 "Do not save backups on your filestore, or you will backup your backups too!"
@@ -205,7 +225,7 @@ msgid "Help"
 msgstr ""
 
 #. module: auto_backup
-#: sql_constraint:db.backup:0
+#: model:ir.model.constraint,message:auto_backup.constraint_db_backup_days_to_keep_positive
 msgid "I cannot remove backups from the future. Ask Doc for that."
 msgstr ""
 
@@ -214,18 +234,15 @@ msgstr ""
 msgid "ID"
 msgstr "ID"
 
-#. module: auto_backup
-#: model:ir.model.fields,help:auto_backup.field_db_backup__message_unread
-msgid "If checked new messages require your attention."
-msgstr ""
-
 #. module: auto_backup
 #: model:ir.model.fields,help:auto_backup.field_db_backup__message_needaction
+#: model:ir.model.fields,help:auto_backup.field_db_backup__message_unread
 msgid "If checked, new messages require your attention."
 msgstr ""
 
 #. module: auto_backup
 #: model:ir.model.fields,help:auto_backup.field_db_backup__message_has_error
+#: model:ir.model.fields,help:auto_backup.field_db_backup__message_has_sms_error
 msgid "If checked, some messages have a delivery error."
 msgstr ""
 
@@ -250,7 +267,7 @@ msgid "Last Updated on"
 msgstr "Последний раз обновлено"
 
 #. module: auto_backup
-#: selection:db.backup,method:0
+#: model:ir.model.fields.selection,name:auto_backup.selection__db_backup__method__local
 msgid "Local disk"
 msgstr ""
 
@@ -286,7 +303,7 @@ msgstr ""
 
 #. module: auto_backup
 #: model:ir.model.fields,field_description:auto_backup.field_db_backup__message_has_error_counter
-msgid "Number of error"
+msgid "Number of errors"
 msgstr ""
 
 #. module: auto_backup
@@ -317,7 +334,7 @@ msgid "Private key location"
 msgstr ""
 
 #. module: auto_backup
-#: selection:db.backup,method:0
+#: model:ir.model.fields.selection,name:auto_backup.selection__db_backup__method__sftp
 msgid "Remote SFTP server"
 msgstr ""
 
@@ -341,6 +358,11 @@ msgstr ""
 msgid "SFTP Settings"
 msgstr ""
 
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__message_has_sms_error
+msgid "SMS Delivery error"
+msgstr ""
+
 #. module: auto_backup
 #: model_terms:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
 msgid "Search the action named 'Backup scheduler'."
@@ -352,6 +374,11 @@ msgid ""
 "Set the scheduler to active and fill in how often you want backups generated."
 msgstr ""
 
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__smart_search
+msgid "Smart Search"
+msgstr ""
+
 #. module: auto_backup
 #: model:ir.model.fields,help:auto_backup.field_db_backup__name
 msgid "Summary of this backup process"
@@ -404,6 +431,11 @@ msgid ""
 "you specify."
 msgstr ""
 
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__user_can_see_changeset
+msgid "User Can See Changeset"
+msgstr ""
+
 #. module: auto_backup
 #: model:ir.model.fields,field_description:auto_backup.field_db_backup__sftp_user
 msgid "Username in the SFTP Server"
@@ -430,7 +462,7 @@ msgid "john"
 msgstr ""
 
 #. module: auto_backup
-#: selection:db.backup,backup_format:0
+#: model:ir.model.fields.selection,name:auto_backup.selection__db_backup__backup_format__dump
 msgid "pg_dump custom format (without filestore)"
 msgstr ""
 
@@ -440,6 +472,6 @@ msgid "sftp.example.com"
 msgstr ""
 
 #. module: auto_backup
-#: selection:db.backup,backup_format:0
+#: model:ir.model.fields.selection,name:auto_backup.selection__db_backup__backup_format__zip
 msgid "zip (includes filestore)"
 msgstr ""
diff --git a/auto_backup/i18n/sk.po b/auto_backup/i18n/sk.po
index 670f3c7c63e..96be1edb2b1 100644
--- a/auto_backup/i18n/sk.po
+++ b/auto_backup/i18n/sk.po
@@ -84,10 +84,20 @@ msgid "Basic backup configuration"
 msgstr ""
 
 #. module: auto_backup
-#: sql_constraint:db.backup:0
+#: model:ir.model.constraint,message:auto_backup.constraint_db_backup_name_unique
 msgid "Cannot duplicate a configuration."
 msgstr ""
 
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__changeset_change_ids
+msgid "Changeset Changes"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__changeset_ids
+msgid "Changesets"
+msgstr ""
+
 #. module: auto_backup
 #: model:ir.model.fields,help:auto_backup.field_db_backup__backup_format
 msgid "Choose the format for this backup."
@@ -99,23 +109,33 @@ msgid "Choose the storage method for this backup."
 msgstr ""
 
 #. module: auto_backup
-#: code:addons/auto_backup/models/db_backup.py:265
+#: code:addons/auto_backup/models/db_backup.py:0
 #, python-format
 msgid "Cleanup of old database backups failed."
 msgstr ""
 
 #. module: auto_backup
-#: code:addons/auto_backup/models/db_backup.py:137
+#: code:addons/auto_backup/models/db_backup.py:0
 #, python-format
 msgid "Connection Test Failed!"
 msgstr ""
 
 #. module: auto_backup
-#: code:addons/auto_backup/models/db_backup.py:132
+#: code:addons/auto_backup/models/db_backup.py:0
 #, python-format
 msgid "Connection Test Succeeded!"
 msgstr ""
 
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__count_pending_changeset_changes
+msgid "Count Pending Changeset Changes"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__count_pending_changesets
+msgid "Count Pending Changesets"
+msgstr ""
+
 #. module: auto_backup
 #: model:ir.model.fields,field_description:auto_backup.field_db_backup__create_uid
 msgid "Created by"
@@ -132,14 +152,14 @@ msgid "Database Backup"
 msgstr ""
 
 #. module: auto_backup
-#: code:addons/auto_backup/models/db_backup.py:219
+#: code:addons/auto_backup/models/db_backup.py:0
 #: model:mail.message.subtype,description:auto_backup.mail_message_subtype_failure
 #, python-format
 msgid "Database backup failed."
 msgstr ""
 
 #. module: auto_backup
-#: code:addons/auto_backup/models/db_backup.py:227
+#: code:addons/auto_backup/models/db_backup.py:0
 #: model:mail.message.subtype,description:auto_backup.mail_message_subtype_success
 #, python-format
 msgid "Database backup succeeded."
@@ -156,7 +176,7 @@ msgid "Display Name"
 msgstr "Zobraziť meno"
 
 #. module: auto_backup
-#: code:addons/auto_backup/models/db_backup.py:123
+#: code:addons/auto_backup/models/db_backup.py:0
 #, python-format
 msgid ""
 "Do not save backups on your filestore, or you will backup your backups too!"
@@ -203,7 +223,7 @@ msgid "Help"
 msgstr ""
 
 #. module: auto_backup
-#: sql_constraint:db.backup:0
+#: model:ir.model.constraint,message:auto_backup.constraint_db_backup_days_to_keep_positive
 msgid "I cannot remove backups from the future. Ask Doc for that."
 msgstr ""
 
@@ -212,18 +232,15 @@ msgstr ""
 msgid "ID"
 msgstr "ID"
 
-#. module: auto_backup
-#: model:ir.model.fields,help:auto_backup.field_db_backup__message_unread
-msgid "If checked new messages require your attention."
-msgstr ""
-
 #. module: auto_backup
 #: model:ir.model.fields,help:auto_backup.field_db_backup__message_needaction
+#: model:ir.model.fields,help:auto_backup.field_db_backup__message_unread
 msgid "If checked, new messages require your attention."
 msgstr ""
 
 #. module: auto_backup
 #: model:ir.model.fields,help:auto_backup.field_db_backup__message_has_error
+#: model:ir.model.fields,help:auto_backup.field_db_backup__message_has_sms_error
 msgid "If checked, some messages have a delivery error."
 msgstr ""
 
@@ -248,7 +265,7 @@ msgid "Last Updated on"
 msgstr "Naposledy upravované"
 
 #. module: auto_backup
-#: selection:db.backup,method:0
+#: model:ir.model.fields.selection,name:auto_backup.selection__db_backup__method__local
 msgid "Local disk"
 msgstr ""
 
@@ -284,7 +301,7 @@ msgstr ""
 
 #. module: auto_backup
 #: model:ir.model.fields,field_description:auto_backup.field_db_backup__message_has_error_counter
-msgid "Number of error"
+msgid "Number of errors"
 msgstr ""
 
 #. module: auto_backup
@@ -315,7 +332,7 @@ msgid "Private key location"
 msgstr ""
 
 #. module: auto_backup
-#: selection:db.backup,method:0
+#: model:ir.model.fields.selection,name:auto_backup.selection__db_backup__method__sftp
 msgid "Remote SFTP server"
 msgstr ""
 
@@ -339,6 +356,11 @@ msgstr ""
 msgid "SFTP Settings"
 msgstr ""
 
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__message_has_sms_error
+msgid "SMS Delivery error"
+msgstr ""
+
 #. module: auto_backup
 #: model_terms:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
 msgid "Search the action named 'Backup scheduler'."
@@ -350,6 +372,11 @@ msgid ""
 "Set the scheduler to active and fill in how often you want backups generated."
 msgstr ""
 
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__smart_search
+msgid "Smart Search"
+msgstr ""
+
 #. module: auto_backup
 #: model:ir.model.fields,help:auto_backup.field_db_backup__name
 msgid "Summary of this backup process"
@@ -402,6 +429,11 @@ msgid ""
 "you specify."
 msgstr ""
 
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__user_can_see_changeset
+msgid "User Can See Changeset"
+msgstr ""
+
 #. module: auto_backup
 #: model:ir.model.fields,field_description:auto_backup.field_db_backup__sftp_user
 msgid "Username in the SFTP Server"
@@ -428,7 +460,7 @@ msgid "john"
 msgstr ""
 
 #. module: auto_backup
-#: selection:db.backup,backup_format:0
+#: model:ir.model.fields.selection,name:auto_backup.selection__db_backup__backup_format__dump
 msgid "pg_dump custom format (without filestore)"
 msgstr ""
 
@@ -438,6 +470,6 @@ msgid "sftp.example.com"
 msgstr ""
 
 #. module: auto_backup
-#: selection:db.backup,backup_format:0
+#: model:ir.model.fields.selection,name:auto_backup.selection__db_backup__backup_format__zip
 msgid "zip (includes filestore)"
 msgstr ""
diff --git a/auto_backup/i18n/sl.po b/auto_backup/i18n/sl.po
index e59a84330c2..9e731448435 100644
--- a/auto_backup/i18n/sl.po
+++ b/auto_backup/i18n/sl.po
@@ -87,10 +87,20 @@ msgid "Basic backup configuration"
 msgstr "Osnove nastavitve varnostnega kopiranja"
 
 #. module: auto_backup
-#: sql_constraint:db.backup:0
+#: model:ir.model.constraint,message:auto_backup.constraint_db_backup_name_unique
 msgid "Cannot duplicate a configuration."
 msgstr "Nastavitev ne morete podvojiti."
 
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__changeset_change_ids
+msgid "Changeset Changes"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__changeset_ids
+msgid "Changesets"
+msgstr ""
+
 #. module: auto_backup
 #: model:ir.model.fields,help:auto_backup.field_db_backup__backup_format
 #, fuzzy
@@ -103,23 +113,33 @@ msgid "Choose the storage method for this backup."
 msgstr "Izberite metodo shranjevanja za to varnostno kopiranje."
 
 #. module: auto_backup
-#: code:addons/auto_backup/models/db_backup.py:265
+#: code:addons/auto_backup/models/db_backup.py:0
 #, python-format
 msgid "Cleanup of old database backups failed."
 msgstr "Brisanje starih varnostnih kopij podatkovnih baz neuspešno."
 
 #. module: auto_backup
-#: code:addons/auto_backup/models/db_backup.py:137
+#: code:addons/auto_backup/models/db_backup.py:0
 #, python-format
 msgid "Connection Test Failed!"
 msgstr "Test povezave neuspešen!"
 
 #. module: auto_backup
-#: code:addons/auto_backup/models/db_backup.py:132
+#: code:addons/auto_backup/models/db_backup.py:0
 #, python-format
 msgid "Connection Test Succeeded!"
 msgstr "Test povezave uspel!"
 
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__count_pending_changeset_changes
+msgid "Count Pending Changeset Changes"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__count_pending_changesets
+msgid "Count Pending Changesets"
+msgstr ""
+
 #. module: auto_backup
 #: model:ir.model.fields,field_description:auto_backup.field_db_backup__create_uid
 msgid "Created by"
@@ -136,14 +156,14 @@ msgid "Database Backup"
 msgstr ""
 
 #. module: auto_backup
-#: code:addons/auto_backup/models/db_backup.py:219
+#: code:addons/auto_backup/models/db_backup.py:0
 #: model:mail.message.subtype,description:auto_backup.mail_message_subtype_failure
 #, python-format
 msgid "Database backup failed."
 msgstr "Varnostno kopiranje podatkovne baze neuspešno."
 
 #. module: auto_backup
-#: code:addons/auto_backup/models/db_backup.py:227
+#: code:addons/auto_backup/models/db_backup.py:0
 #: model:mail.message.subtype,description:auto_backup.mail_message_subtype_success
 #, python-format
 msgid "Database backup succeeded."
@@ -160,7 +180,7 @@ msgid "Display Name"
 msgstr "Prikazni naziv"
 
 #. module: auto_backup
-#: code:addons/auto_backup/models/db_backup.py:123
+#: code:addons/auto_backup/models/db_backup.py:0
 #, python-format
 msgid ""
 "Do not save backups on your filestore, or you will backup your backups too!"
@@ -209,7 +229,7 @@ msgid "Help"
 msgstr "Pomoč"
 
 #. module: auto_backup
-#: sql_constraint:db.backup:0
+#: model:ir.model.constraint,message:auto_backup.constraint_db_backup_days_to_keep_positive
 msgid "I cannot remove backups from the future. Ask Doc for that."
 msgstr "Varnostnih kopij iz prihodnosti ne morete odstraniti."
 
@@ -218,18 +238,15 @@ msgstr "Varnostnih kopij iz prihodnosti ne morete odstraniti."
 msgid "ID"
 msgstr "ID"
 
-#. module: auto_backup
-#: model:ir.model.fields,help:auto_backup.field_db_backup__message_unread
-msgid "If checked new messages require your attention."
-msgstr ""
-
 #. module: auto_backup
 #: model:ir.model.fields,help:auto_backup.field_db_backup__message_needaction
+#: model:ir.model.fields,help:auto_backup.field_db_backup__message_unread
 msgid "If checked, new messages require your attention."
 msgstr ""
 
 #. module: auto_backup
 #: model:ir.model.fields,help:auto_backup.field_db_backup__message_has_error
+#: model:ir.model.fields,help:auto_backup.field_db_backup__message_has_sms_error
 msgid "If checked, some messages have a delivery error."
 msgstr ""
 
@@ -254,7 +271,7 @@ msgid "Last Updated on"
 msgstr "Zadnjič posodobljeno"
 
 #. module: auto_backup
-#: selection:db.backup,method:0
+#: model:ir.model.fields.selection,name:auto_backup.selection__db_backup__method__local
 msgid "Local disk"
 msgstr "Lokalni disk"
 
@@ -290,7 +307,7 @@ msgstr ""
 
 #. module: auto_backup
 #: model:ir.model.fields,field_description:auto_backup.field_db_backup__message_has_error_counter
-msgid "Number of error"
+msgid "Number of errors"
 msgstr ""
 
 #. module: auto_backup
@@ -323,7 +340,7 @@ msgid "Private key location"
 msgstr "Lokacija privatnega ključa"
 
 #. module: auto_backup
-#: selection:db.backup,method:0
+#: model:ir.model.fields.selection,name:auto_backup.selection__db_backup__method__sftp
 msgid "Remote SFTP server"
 msgstr "Oddaljeni SFTP strežnik"
 
@@ -347,6 +364,11 @@ msgstr "SFTP strežnik"
 msgid "SFTP Settings"
 msgstr "SFTP nastavitve"
 
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__message_has_sms_error
+msgid "SMS Delivery error"
+msgstr ""
+
 #. module: auto_backup
 #: model_terms:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
 msgid "Search the action named 'Backup scheduler'."
@@ -360,6 +382,11 @@ msgstr ""
 "Nastavite razporejevalnik kot aktiven in izpolnite, kako pogosto želite "
 "ustvarjati varnostne kopije."
 
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__smart_search
+msgid "Smart Search"
+msgstr ""
+
 #. module: auto_backup
 #: model:ir.model.fields,help:auto_backup.field_db_backup__name
 msgid "Summary of this backup process"
@@ -416,6 +443,11 @@ msgstr ""
 "SFTP uporabljajte previdno! Datoteke se bodo zapisovale na zunanje strežnike "
 "v pot, ki jo sami določite."
 
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__user_can_see_changeset
+msgid "User Can See Changeset"
+msgstr ""
+
 #. module: auto_backup
 #: model:ir.model.fields,field_description:auto_backup.field_db_backup__sftp_user
 msgid "Username in the SFTP Server"
@@ -442,7 +474,7 @@ msgid "john"
 msgstr "john"
 
 #. module: auto_backup
-#: selection:db.backup,backup_format:0
+#: model:ir.model.fields.selection,name:auto_backup.selection__db_backup__backup_format__dump
 msgid "pg_dump custom format (without filestore)"
 msgstr ""
 
@@ -452,6 +484,6 @@ msgid "sftp.example.com"
 msgstr "sftp.example.com"
 
 #. module: auto_backup
-#: selection:db.backup,backup_format:0
+#: model:ir.model.fields.selection,name:auto_backup.selection__db_backup__backup_format__zip
 msgid "zip (includes filestore)"
 msgstr ""
diff --git a/auto_backup/i18n/sr.po b/auto_backup/i18n/sr.po
index c8863b92a27..2e3e33efacb 100644
--- a/auto_backup/i18n/sr.po
+++ b/auto_backup/i18n/sr.po
@@ -85,10 +85,20 @@ msgid "Basic backup configuration"
 msgstr ""
 
 #. module: auto_backup
-#: sql_constraint:db.backup:0
+#: model:ir.model.constraint,message:auto_backup.constraint_db_backup_name_unique
 msgid "Cannot duplicate a configuration."
 msgstr ""
 
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__changeset_change_ids
+msgid "Changeset Changes"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__changeset_ids
+msgid "Changesets"
+msgstr ""
+
 #. module: auto_backup
 #: model:ir.model.fields,help:auto_backup.field_db_backup__backup_format
 msgid "Choose the format for this backup."
@@ -100,23 +110,33 @@ msgid "Choose the storage method for this backup."
 msgstr ""
 
 #. module: auto_backup
-#: code:addons/auto_backup/models/db_backup.py:265
+#: code:addons/auto_backup/models/db_backup.py:0
 #, python-format
 msgid "Cleanup of old database backups failed."
 msgstr ""
 
 #. module: auto_backup
-#: code:addons/auto_backup/models/db_backup.py:137
+#: code:addons/auto_backup/models/db_backup.py:0
 #, python-format
 msgid "Connection Test Failed!"
 msgstr ""
 
 #. module: auto_backup
-#: code:addons/auto_backup/models/db_backup.py:132
+#: code:addons/auto_backup/models/db_backup.py:0
 #, python-format
 msgid "Connection Test Succeeded!"
 msgstr ""
 
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__count_pending_changeset_changes
+msgid "Count Pending Changeset Changes"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__count_pending_changesets
+msgid "Count Pending Changesets"
+msgstr ""
+
 #. module: auto_backup
 #: model:ir.model.fields,field_description:auto_backup.field_db_backup__create_uid
 msgid "Created by"
@@ -133,14 +153,14 @@ msgid "Database Backup"
 msgstr ""
 
 #. module: auto_backup
-#: code:addons/auto_backup/models/db_backup.py:219
+#: code:addons/auto_backup/models/db_backup.py:0
 #: model:mail.message.subtype,description:auto_backup.mail_message_subtype_failure
 #, python-format
 msgid "Database backup failed."
 msgstr ""
 
 #. module: auto_backup
-#: code:addons/auto_backup/models/db_backup.py:227
+#: code:addons/auto_backup/models/db_backup.py:0
 #: model:mail.message.subtype,description:auto_backup.mail_message_subtype_success
 #, python-format
 msgid "Database backup succeeded."
@@ -157,7 +177,7 @@ msgid "Display Name"
 msgstr ""
 
 #. module: auto_backup
-#: code:addons/auto_backup/models/db_backup.py:123
+#: code:addons/auto_backup/models/db_backup.py:0
 #, python-format
 msgid ""
 "Do not save backups on your filestore, or you will backup your backups too!"
@@ -204,7 +224,7 @@ msgid "Help"
 msgstr ""
 
 #. module: auto_backup
-#: sql_constraint:db.backup:0
+#: model:ir.model.constraint,message:auto_backup.constraint_db_backup_days_to_keep_positive
 msgid "I cannot remove backups from the future. Ask Doc for that."
 msgstr ""
 
@@ -213,18 +233,15 @@ msgstr ""
 msgid "ID"
 msgstr "ID"
 
-#. module: auto_backup
-#: model:ir.model.fields,help:auto_backup.field_db_backup__message_unread
-msgid "If checked new messages require your attention."
-msgstr ""
-
 #. module: auto_backup
 #: model:ir.model.fields,help:auto_backup.field_db_backup__message_needaction
+#: model:ir.model.fields,help:auto_backup.field_db_backup__message_unread
 msgid "If checked, new messages require your attention."
 msgstr ""
 
 #. module: auto_backup
 #: model:ir.model.fields,help:auto_backup.field_db_backup__message_has_error
+#: model:ir.model.fields,help:auto_backup.field_db_backup__message_has_sms_error
 msgid "If checked, some messages have a delivery error."
 msgstr ""
 
@@ -249,7 +266,7 @@ msgid "Last Updated on"
 msgstr ""
 
 #. module: auto_backup
-#: selection:db.backup,method:0
+#: model:ir.model.fields.selection,name:auto_backup.selection__db_backup__method__local
 msgid "Local disk"
 msgstr ""
 
@@ -285,7 +302,7 @@ msgstr ""
 
 #. module: auto_backup
 #: model:ir.model.fields,field_description:auto_backup.field_db_backup__message_has_error_counter
-msgid "Number of error"
+msgid "Number of errors"
 msgstr ""
 
 #. module: auto_backup
@@ -316,7 +333,7 @@ msgid "Private key location"
 msgstr ""
 
 #. module: auto_backup
-#: selection:db.backup,method:0
+#: model:ir.model.fields.selection,name:auto_backup.selection__db_backup__method__sftp
 msgid "Remote SFTP server"
 msgstr ""
 
@@ -340,6 +357,11 @@ msgstr ""
 msgid "SFTP Settings"
 msgstr ""
 
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__message_has_sms_error
+msgid "SMS Delivery error"
+msgstr ""
+
 #. module: auto_backup
 #: model_terms:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
 msgid "Search the action named 'Backup scheduler'."
@@ -351,6 +373,11 @@ msgid ""
 "Set the scheduler to active and fill in how often you want backups generated."
 msgstr ""
 
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__smart_search
+msgid "Smart Search"
+msgstr ""
+
 #. module: auto_backup
 #: model:ir.model.fields,help:auto_backup.field_db_backup__name
 msgid "Summary of this backup process"
@@ -403,6 +430,11 @@ msgid ""
 "you specify."
 msgstr ""
 
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__user_can_see_changeset
+msgid "User Can See Changeset"
+msgstr ""
+
 #. module: auto_backup
 #: model:ir.model.fields,field_description:auto_backup.field_db_backup__sftp_user
 msgid "Username in the SFTP Server"
@@ -429,7 +461,7 @@ msgid "john"
 msgstr ""
 
 #. module: auto_backup
-#: selection:db.backup,backup_format:0
+#: model:ir.model.fields.selection,name:auto_backup.selection__db_backup__backup_format__dump
 msgid "pg_dump custom format (without filestore)"
 msgstr ""
 
@@ -439,6 +471,6 @@ msgid "sftp.example.com"
 msgstr ""
 
 #. module: auto_backup
-#: selection:db.backup,backup_format:0
+#: model:ir.model.fields.selection,name:auto_backup.selection__db_backup__backup_format__zip
 msgid "zip (includes filestore)"
 msgstr ""
diff --git a/auto_backup/i18n/sr@latin.po b/auto_backup/i18n/sr@latin.po
index b6a72a97928..33a67b49cee 100644
--- a/auto_backup/i18n/sr@latin.po
+++ b/auto_backup/i18n/sr@latin.po
@@ -86,10 +86,20 @@ msgid "Basic backup configuration"
 msgstr ""
 
 #. module: auto_backup
-#: sql_constraint:db.backup:0
+#: model:ir.model.constraint,message:auto_backup.constraint_db_backup_name_unique
 msgid "Cannot duplicate a configuration."
 msgstr ""
 
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__changeset_change_ids
+msgid "Changeset Changes"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__changeset_ids
+msgid "Changesets"
+msgstr ""
+
 #. module: auto_backup
 #: model:ir.model.fields,help:auto_backup.field_db_backup__backup_format
 msgid "Choose the format for this backup."
@@ -101,23 +111,33 @@ msgid "Choose the storage method for this backup."
 msgstr ""
 
 #. module: auto_backup
-#: code:addons/auto_backup/models/db_backup.py:265
+#: code:addons/auto_backup/models/db_backup.py:0
 #, python-format
 msgid "Cleanup of old database backups failed."
 msgstr ""
 
 #. module: auto_backup
-#: code:addons/auto_backup/models/db_backup.py:137
+#: code:addons/auto_backup/models/db_backup.py:0
 #, python-format
 msgid "Connection Test Failed!"
 msgstr ""
 
 #. module: auto_backup
-#: code:addons/auto_backup/models/db_backup.py:132
+#: code:addons/auto_backup/models/db_backup.py:0
 #, python-format
 msgid "Connection Test Succeeded!"
 msgstr ""
 
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__count_pending_changeset_changes
+msgid "Count Pending Changeset Changes"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__count_pending_changesets
+msgid "Count Pending Changesets"
+msgstr ""
+
 #. module: auto_backup
 #: model:ir.model.fields,field_description:auto_backup.field_db_backup__create_uid
 msgid "Created by"
@@ -134,14 +154,14 @@ msgid "Database Backup"
 msgstr ""
 
 #. module: auto_backup
-#: code:addons/auto_backup/models/db_backup.py:219
+#: code:addons/auto_backup/models/db_backup.py:0
 #: model:mail.message.subtype,description:auto_backup.mail_message_subtype_failure
 #, python-format
 msgid "Database backup failed."
 msgstr ""
 
 #. module: auto_backup
-#: code:addons/auto_backup/models/db_backup.py:227
+#: code:addons/auto_backup/models/db_backup.py:0
 #: model:mail.message.subtype,description:auto_backup.mail_message_subtype_success
 #, python-format
 msgid "Database backup succeeded."
@@ -158,7 +178,7 @@ msgid "Display Name"
 msgstr "Ime za prikaz"
 
 #. module: auto_backup
-#: code:addons/auto_backup/models/db_backup.py:123
+#: code:addons/auto_backup/models/db_backup.py:0
 #, python-format
 msgid ""
 "Do not save backups on your filestore, or you will backup your backups too!"
@@ -205,7 +225,7 @@ msgid "Help"
 msgstr ""
 
 #. module: auto_backup
-#: sql_constraint:db.backup:0
+#: model:ir.model.constraint,message:auto_backup.constraint_db_backup_days_to_keep_positive
 msgid "I cannot remove backups from the future. Ask Doc for that."
 msgstr ""
 
@@ -214,18 +234,15 @@ msgstr ""
 msgid "ID"
 msgstr "ID"
 
-#. module: auto_backup
-#: model:ir.model.fields,help:auto_backup.field_db_backup__message_unread
-msgid "If checked new messages require your attention."
-msgstr ""
-
 #. module: auto_backup
 #: model:ir.model.fields,help:auto_backup.field_db_backup__message_needaction
+#: model:ir.model.fields,help:auto_backup.field_db_backup__message_unread
 msgid "If checked, new messages require your attention."
 msgstr ""
 
 #. module: auto_backup
 #: model:ir.model.fields,help:auto_backup.field_db_backup__message_has_error
+#: model:ir.model.fields,help:auto_backup.field_db_backup__message_has_sms_error
 msgid "If checked, some messages have a delivery error."
 msgstr ""
 
@@ -250,7 +267,7 @@ msgid "Last Updated on"
 msgstr "Zadnja izmjena"
 
 #. module: auto_backup
-#: selection:db.backup,method:0
+#: model:ir.model.fields.selection,name:auto_backup.selection__db_backup__method__local
 msgid "Local disk"
 msgstr ""
 
@@ -286,7 +303,7 @@ msgstr ""
 
 #. module: auto_backup
 #: model:ir.model.fields,field_description:auto_backup.field_db_backup__message_has_error_counter
-msgid "Number of error"
+msgid "Number of errors"
 msgstr ""
 
 #. module: auto_backup
@@ -317,7 +334,7 @@ msgid "Private key location"
 msgstr ""
 
 #. module: auto_backup
-#: selection:db.backup,method:0
+#: model:ir.model.fields.selection,name:auto_backup.selection__db_backup__method__sftp
 msgid "Remote SFTP server"
 msgstr ""
 
@@ -341,6 +358,11 @@ msgstr ""
 msgid "SFTP Settings"
 msgstr ""
 
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__message_has_sms_error
+msgid "SMS Delivery error"
+msgstr ""
+
 #. module: auto_backup
 #: model_terms:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
 msgid "Search the action named 'Backup scheduler'."
@@ -352,6 +374,11 @@ msgid ""
 "Set the scheduler to active and fill in how often you want backups generated."
 msgstr ""
 
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__smart_search
+msgid "Smart Search"
+msgstr ""
+
 #. module: auto_backup
 #: model:ir.model.fields,help:auto_backup.field_db_backup__name
 msgid "Summary of this backup process"
@@ -404,6 +431,11 @@ msgid ""
 "you specify."
 msgstr ""
 
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__user_can_see_changeset
+msgid "User Can See Changeset"
+msgstr ""
+
 #. module: auto_backup
 #: model:ir.model.fields,field_description:auto_backup.field_db_backup__sftp_user
 msgid "Username in the SFTP Server"
@@ -430,7 +462,7 @@ msgid "john"
 msgstr ""
 
 #. module: auto_backup
-#: selection:db.backup,backup_format:0
+#: model:ir.model.fields.selection,name:auto_backup.selection__db_backup__backup_format__dump
 msgid "pg_dump custom format (without filestore)"
 msgstr ""
 
@@ -440,6 +472,6 @@ msgid "sftp.example.com"
 msgstr ""
 
 #. module: auto_backup
-#: selection:db.backup,backup_format:0
+#: model:ir.model.fields.selection,name:auto_backup.selection__db_backup__backup_format__zip
 msgid "zip (includes filestore)"
 msgstr ""
diff --git a/auto_backup/i18n/sv.po b/auto_backup/i18n/sv.po
index de84ad21137..6fa9f3f83de 100644
--- a/auto_backup/i18n/sv.po
+++ b/auto_backup/i18n/sv.po
@@ -84,10 +84,20 @@ msgid "Basic backup configuration"
 msgstr ""
 
 #. module: auto_backup
-#: sql_constraint:db.backup:0
+#: model:ir.model.constraint,message:auto_backup.constraint_db_backup_name_unique
 msgid "Cannot duplicate a configuration."
 msgstr ""
 
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__changeset_change_ids
+msgid "Changeset Changes"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__changeset_ids
+msgid "Changesets"
+msgstr ""
+
 #. module: auto_backup
 #: model:ir.model.fields,help:auto_backup.field_db_backup__backup_format
 msgid "Choose the format for this backup."
@@ -99,23 +109,33 @@ msgid "Choose the storage method for this backup."
 msgstr ""
 
 #. module: auto_backup
-#: code:addons/auto_backup/models/db_backup.py:265
+#: code:addons/auto_backup/models/db_backup.py:0
 #, python-format
 msgid "Cleanup of old database backups failed."
 msgstr ""
 
 #. module: auto_backup
-#: code:addons/auto_backup/models/db_backup.py:137
+#: code:addons/auto_backup/models/db_backup.py:0
 #, python-format
 msgid "Connection Test Failed!"
 msgstr ""
 
 #. module: auto_backup
-#: code:addons/auto_backup/models/db_backup.py:132
+#: code:addons/auto_backup/models/db_backup.py:0
 #, python-format
 msgid "Connection Test Succeeded!"
 msgstr ""
 
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__count_pending_changeset_changes
+msgid "Count Pending Changeset Changes"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__count_pending_changesets
+msgid "Count Pending Changesets"
+msgstr ""
+
 #. module: auto_backup
 #: model:ir.model.fields,field_description:auto_backup.field_db_backup__create_uid
 msgid "Created by"
@@ -132,14 +152,14 @@ msgid "Database Backup"
 msgstr ""
 
 #. module: auto_backup
-#: code:addons/auto_backup/models/db_backup.py:219
+#: code:addons/auto_backup/models/db_backup.py:0
 #: model:mail.message.subtype,description:auto_backup.mail_message_subtype_failure
 #, python-format
 msgid "Database backup failed."
 msgstr ""
 
 #. module: auto_backup
-#: code:addons/auto_backup/models/db_backup.py:227
+#: code:addons/auto_backup/models/db_backup.py:0
 #: model:mail.message.subtype,description:auto_backup.mail_message_subtype_success
 #, python-format
 msgid "Database backup succeeded."
@@ -156,7 +176,7 @@ msgid "Display Name"
 msgstr "Visa namn"
 
 #. module: auto_backup
-#: code:addons/auto_backup/models/db_backup.py:123
+#: code:addons/auto_backup/models/db_backup.py:0
 #, python-format
 msgid ""
 "Do not save backups on your filestore, or you will backup your backups too!"
@@ -203,7 +223,7 @@ msgid "Help"
 msgstr ""
 
 #. module: auto_backup
-#: sql_constraint:db.backup:0
+#: model:ir.model.constraint,message:auto_backup.constraint_db_backup_days_to_keep_positive
 msgid "I cannot remove backups from the future. Ask Doc for that."
 msgstr ""
 
@@ -212,18 +232,15 @@ msgstr ""
 msgid "ID"
 msgstr "ID"
 
-#. module: auto_backup
-#: model:ir.model.fields,help:auto_backup.field_db_backup__message_unread
-msgid "If checked new messages require your attention."
-msgstr ""
-
 #. module: auto_backup
 #: model:ir.model.fields,help:auto_backup.field_db_backup__message_needaction
+#: model:ir.model.fields,help:auto_backup.field_db_backup__message_unread
 msgid "If checked, new messages require your attention."
 msgstr ""
 
 #. module: auto_backup
 #: model:ir.model.fields,help:auto_backup.field_db_backup__message_has_error
+#: model:ir.model.fields,help:auto_backup.field_db_backup__message_has_sms_error
 msgid "If checked, some messages have a delivery error."
 msgstr ""
 
@@ -248,7 +265,7 @@ msgid "Last Updated on"
 msgstr "Senast uppdaterad"
 
 #. module: auto_backup
-#: selection:db.backup,method:0
+#: model:ir.model.fields.selection,name:auto_backup.selection__db_backup__method__local
 msgid "Local disk"
 msgstr ""
 
@@ -284,7 +301,7 @@ msgstr ""
 
 #. module: auto_backup
 #: model:ir.model.fields,field_description:auto_backup.field_db_backup__message_has_error_counter
-msgid "Number of error"
+msgid "Number of errors"
 msgstr ""
 
 #. module: auto_backup
@@ -315,7 +332,7 @@ msgid "Private key location"
 msgstr ""
 
 #. module: auto_backup
-#: selection:db.backup,method:0
+#: model:ir.model.fields.selection,name:auto_backup.selection__db_backup__method__sftp
 msgid "Remote SFTP server"
 msgstr ""
 
@@ -339,6 +356,11 @@ msgstr ""
 msgid "SFTP Settings"
 msgstr ""
 
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__message_has_sms_error
+msgid "SMS Delivery error"
+msgstr ""
+
 #. module: auto_backup
 #: model_terms:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
 msgid "Search the action named 'Backup scheduler'."
@@ -350,6 +372,11 @@ msgid ""
 "Set the scheduler to active and fill in how often you want backups generated."
 msgstr ""
 
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__smart_search
+msgid "Smart Search"
+msgstr ""
+
 #. module: auto_backup
 #: model:ir.model.fields,help:auto_backup.field_db_backup__name
 msgid "Summary of this backup process"
@@ -402,6 +429,11 @@ msgid ""
 "you specify."
 msgstr ""
 
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__user_can_see_changeset
+msgid "User Can See Changeset"
+msgstr ""
+
 #. module: auto_backup
 #: model:ir.model.fields,field_description:auto_backup.field_db_backup__sftp_user
 msgid "Username in the SFTP Server"
@@ -428,7 +460,7 @@ msgid "john"
 msgstr ""
 
 #. module: auto_backup
-#: selection:db.backup,backup_format:0
+#: model:ir.model.fields.selection,name:auto_backup.selection__db_backup__backup_format__dump
 msgid "pg_dump custom format (without filestore)"
 msgstr ""
 
@@ -438,6 +470,6 @@ msgid "sftp.example.com"
 msgstr ""
 
 #. module: auto_backup
-#: selection:db.backup,backup_format:0
+#: model:ir.model.fields.selection,name:auto_backup.selection__db_backup__backup_format__zip
 msgid "zip (includes filestore)"
 msgstr ""
diff --git a/auto_backup/i18n/th.po b/auto_backup/i18n/th.po
index 2e6cce24c84..c28b3686d9e 100644
--- a/auto_backup/i18n/th.po
+++ b/auto_backup/i18n/th.po
@@ -84,10 +84,20 @@ msgid "Basic backup configuration"
 msgstr ""
 
 #. module: auto_backup
-#: sql_constraint:db.backup:0
+#: model:ir.model.constraint,message:auto_backup.constraint_db_backup_name_unique
 msgid "Cannot duplicate a configuration."
 msgstr ""
 
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__changeset_change_ids
+msgid "Changeset Changes"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__changeset_ids
+msgid "Changesets"
+msgstr ""
+
 #. module: auto_backup
 #: model:ir.model.fields,help:auto_backup.field_db_backup__backup_format
 msgid "Choose the format for this backup."
@@ -99,23 +109,33 @@ msgid "Choose the storage method for this backup."
 msgstr ""
 
 #. module: auto_backup
-#: code:addons/auto_backup/models/db_backup.py:265
+#: code:addons/auto_backup/models/db_backup.py:0
 #, python-format
 msgid "Cleanup of old database backups failed."
 msgstr ""
 
 #. module: auto_backup
-#: code:addons/auto_backup/models/db_backup.py:137
+#: code:addons/auto_backup/models/db_backup.py:0
 #, python-format
 msgid "Connection Test Failed!"
 msgstr ""
 
 #. module: auto_backup
-#: code:addons/auto_backup/models/db_backup.py:132
+#: code:addons/auto_backup/models/db_backup.py:0
 #, python-format
 msgid "Connection Test Succeeded!"
 msgstr ""
 
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__count_pending_changeset_changes
+msgid "Count Pending Changeset Changes"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__count_pending_changesets
+msgid "Count Pending Changesets"
+msgstr ""
+
 #. module: auto_backup
 #: model:ir.model.fields,field_description:auto_backup.field_db_backup__create_uid
 msgid "Created by"
@@ -132,14 +152,14 @@ msgid "Database Backup"
 msgstr ""
 
 #. module: auto_backup
-#: code:addons/auto_backup/models/db_backup.py:219
+#: code:addons/auto_backup/models/db_backup.py:0
 #: model:mail.message.subtype,description:auto_backup.mail_message_subtype_failure
 #, python-format
 msgid "Database backup failed."
 msgstr ""
 
 #. module: auto_backup
-#: code:addons/auto_backup/models/db_backup.py:227
+#: code:addons/auto_backup/models/db_backup.py:0
 #: model:mail.message.subtype,description:auto_backup.mail_message_subtype_success
 #, python-format
 msgid "Database backup succeeded."
@@ -156,7 +176,7 @@ msgid "Display Name"
 msgstr "ชื่อที่ใช้แสดง"
 
 #. module: auto_backup
-#: code:addons/auto_backup/models/db_backup.py:123
+#: code:addons/auto_backup/models/db_backup.py:0
 #, python-format
 msgid ""
 "Do not save backups on your filestore, or you will backup your backups too!"
@@ -203,7 +223,7 @@ msgid "Help"
 msgstr ""
 
 #. module: auto_backup
-#: sql_constraint:db.backup:0
+#: model:ir.model.constraint,message:auto_backup.constraint_db_backup_days_to_keep_positive
 msgid "I cannot remove backups from the future. Ask Doc for that."
 msgstr ""
 
@@ -212,18 +232,15 @@ msgstr ""
 msgid "ID"
 msgstr "รหัส"
 
-#. module: auto_backup
-#: model:ir.model.fields,help:auto_backup.field_db_backup__message_unread
-msgid "If checked new messages require your attention."
-msgstr ""
-
 #. module: auto_backup
 #: model:ir.model.fields,help:auto_backup.field_db_backup__message_needaction
+#: model:ir.model.fields,help:auto_backup.field_db_backup__message_unread
 msgid "If checked, new messages require your attention."
 msgstr ""
 
 #. module: auto_backup
 #: model:ir.model.fields,help:auto_backup.field_db_backup__message_has_error
+#: model:ir.model.fields,help:auto_backup.field_db_backup__message_has_sms_error
 msgid "If checked, some messages have a delivery error."
 msgstr ""
 
@@ -248,7 +265,7 @@ msgid "Last Updated on"
 msgstr "อัพเดทครั้งสุดท้ายเมื่อ"
 
 #. module: auto_backup
-#: selection:db.backup,method:0
+#: model:ir.model.fields.selection,name:auto_backup.selection__db_backup__method__local
 msgid "Local disk"
 msgstr ""
 
@@ -284,7 +301,7 @@ msgstr ""
 
 #. module: auto_backup
 #: model:ir.model.fields,field_description:auto_backup.field_db_backup__message_has_error_counter
-msgid "Number of error"
+msgid "Number of errors"
 msgstr ""
 
 #. module: auto_backup
@@ -315,7 +332,7 @@ msgid "Private key location"
 msgstr ""
 
 #. module: auto_backup
-#: selection:db.backup,method:0
+#: model:ir.model.fields.selection,name:auto_backup.selection__db_backup__method__sftp
 msgid "Remote SFTP server"
 msgstr ""
 
@@ -339,6 +356,11 @@ msgstr ""
 msgid "SFTP Settings"
 msgstr ""
 
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__message_has_sms_error
+msgid "SMS Delivery error"
+msgstr ""
+
 #. module: auto_backup
 #: model_terms:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
 msgid "Search the action named 'Backup scheduler'."
@@ -350,6 +372,11 @@ msgid ""
 "Set the scheduler to active and fill in how often you want backups generated."
 msgstr ""
 
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__smart_search
+msgid "Smart Search"
+msgstr ""
+
 #. module: auto_backup
 #: model:ir.model.fields,help:auto_backup.field_db_backup__name
 msgid "Summary of this backup process"
@@ -402,6 +429,11 @@ msgid ""
 "you specify."
 msgstr ""
 
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__user_can_see_changeset
+msgid "User Can See Changeset"
+msgstr ""
+
 #. module: auto_backup
 #: model:ir.model.fields,field_description:auto_backup.field_db_backup__sftp_user
 msgid "Username in the SFTP Server"
@@ -428,7 +460,7 @@ msgid "john"
 msgstr ""
 
 #. module: auto_backup
-#: selection:db.backup,backup_format:0
+#: model:ir.model.fields.selection,name:auto_backup.selection__db_backup__backup_format__dump
 msgid "pg_dump custom format (without filestore)"
 msgstr ""
 
@@ -438,6 +470,6 @@ msgid "sftp.example.com"
 msgstr ""
 
 #. module: auto_backup
-#: selection:db.backup,backup_format:0
+#: model:ir.model.fields.selection,name:auto_backup.selection__db_backup__backup_format__zip
 msgid "zip (includes filestore)"
 msgstr ""
diff --git a/auto_backup/i18n/tr.po b/auto_backup/i18n/tr.po
index 693be9c550a..ca290e90c2c 100644
--- a/auto_backup/i18n/tr.po
+++ b/auto_backup/i18n/tr.po
@@ -84,10 +84,20 @@ msgid "Basic backup configuration"
 msgstr ""
 
 #. module: auto_backup
-#: sql_constraint:db.backup:0
+#: model:ir.model.constraint,message:auto_backup.constraint_db_backup_name_unique
 msgid "Cannot duplicate a configuration."
 msgstr ""
 
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__changeset_change_ids
+msgid "Changeset Changes"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__changeset_ids
+msgid "Changesets"
+msgstr ""
+
 #. module: auto_backup
 #: model:ir.model.fields,help:auto_backup.field_db_backup__backup_format
 msgid "Choose the format for this backup."
@@ -99,23 +109,33 @@ msgid "Choose the storage method for this backup."
 msgstr ""
 
 #. module: auto_backup
-#: code:addons/auto_backup/models/db_backup.py:265
+#: code:addons/auto_backup/models/db_backup.py:0
 #, python-format
 msgid "Cleanup of old database backups failed."
 msgstr ""
 
 #. module: auto_backup
-#: code:addons/auto_backup/models/db_backup.py:137
+#: code:addons/auto_backup/models/db_backup.py:0
 #, python-format
 msgid "Connection Test Failed!"
 msgstr ""
 
 #. module: auto_backup
-#: code:addons/auto_backup/models/db_backup.py:132
+#: code:addons/auto_backup/models/db_backup.py:0
 #, python-format
 msgid "Connection Test Succeeded!"
 msgstr ""
 
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__count_pending_changeset_changes
+msgid "Count Pending Changeset Changes"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__count_pending_changesets
+msgid "Count Pending Changesets"
+msgstr ""
+
 #. module: auto_backup
 #: model:ir.model.fields,field_description:auto_backup.field_db_backup__create_uid
 msgid "Created by"
@@ -132,14 +152,14 @@ msgid "Database Backup"
 msgstr ""
 
 #. module: auto_backup
-#: code:addons/auto_backup/models/db_backup.py:219
+#: code:addons/auto_backup/models/db_backup.py:0
 #: model:mail.message.subtype,description:auto_backup.mail_message_subtype_failure
 #, python-format
 msgid "Database backup failed."
 msgstr ""
 
 #. module: auto_backup
-#: code:addons/auto_backup/models/db_backup.py:227
+#: code:addons/auto_backup/models/db_backup.py:0
 #: model:mail.message.subtype,description:auto_backup.mail_message_subtype_success
 #, python-format
 msgid "Database backup succeeded."
@@ -156,7 +176,7 @@ msgid "Display Name"
 msgstr "Görünen İsim"
 
 #. module: auto_backup
-#: code:addons/auto_backup/models/db_backup.py:123
+#: code:addons/auto_backup/models/db_backup.py:0
 #, python-format
 msgid ""
 "Do not save backups on your filestore, or you will backup your backups too!"
@@ -203,7 +223,7 @@ msgid "Help"
 msgstr ""
 
 #. module: auto_backup
-#: sql_constraint:db.backup:0
+#: model:ir.model.constraint,message:auto_backup.constraint_db_backup_days_to_keep_positive
 msgid "I cannot remove backups from the future. Ask Doc for that."
 msgstr ""
 
@@ -212,18 +232,15 @@ msgstr ""
 msgid "ID"
 msgstr "ID"
 
-#. module: auto_backup
-#: model:ir.model.fields,help:auto_backup.field_db_backup__message_unread
-msgid "If checked new messages require your attention."
-msgstr ""
-
 #. module: auto_backup
 #: model:ir.model.fields,help:auto_backup.field_db_backup__message_needaction
+#: model:ir.model.fields,help:auto_backup.field_db_backup__message_unread
 msgid "If checked, new messages require your attention."
 msgstr ""
 
 #. module: auto_backup
 #: model:ir.model.fields,help:auto_backup.field_db_backup__message_has_error
+#: model:ir.model.fields,help:auto_backup.field_db_backup__message_has_sms_error
 msgid "If checked, some messages have a delivery error."
 msgstr ""
 
@@ -248,7 +265,7 @@ msgid "Last Updated on"
 msgstr "Son güncellenme"
 
 #. module: auto_backup
-#: selection:db.backup,method:0
+#: model:ir.model.fields.selection,name:auto_backup.selection__db_backup__method__local
 msgid "Local disk"
 msgstr ""
 
@@ -284,7 +301,7 @@ msgstr ""
 
 #. module: auto_backup
 #: model:ir.model.fields,field_description:auto_backup.field_db_backup__message_has_error_counter
-msgid "Number of error"
+msgid "Number of errors"
 msgstr ""
 
 #. module: auto_backup
@@ -315,7 +332,7 @@ msgid "Private key location"
 msgstr ""
 
 #. module: auto_backup
-#: selection:db.backup,method:0
+#: model:ir.model.fields.selection,name:auto_backup.selection__db_backup__method__sftp
 msgid "Remote SFTP server"
 msgstr ""
 
@@ -339,6 +356,11 @@ msgstr ""
 msgid "SFTP Settings"
 msgstr ""
 
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__message_has_sms_error
+msgid "SMS Delivery error"
+msgstr ""
+
 #. module: auto_backup
 #: model_terms:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
 msgid "Search the action named 'Backup scheduler'."
@@ -350,6 +372,11 @@ msgid ""
 "Set the scheduler to active and fill in how often you want backups generated."
 msgstr ""
 
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__smart_search
+msgid "Smart Search"
+msgstr ""
+
 #. module: auto_backup
 #: model:ir.model.fields,help:auto_backup.field_db_backup__name
 msgid "Summary of this backup process"
@@ -402,6 +429,11 @@ msgid ""
 "you specify."
 msgstr ""
 
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__user_can_see_changeset
+msgid "User Can See Changeset"
+msgstr ""
+
 #. module: auto_backup
 #: model:ir.model.fields,field_description:auto_backup.field_db_backup__sftp_user
 msgid "Username in the SFTP Server"
@@ -428,7 +460,7 @@ msgid "john"
 msgstr ""
 
 #. module: auto_backup
-#: selection:db.backup,backup_format:0
+#: model:ir.model.fields.selection,name:auto_backup.selection__db_backup__backup_format__dump
 msgid "pg_dump custom format (without filestore)"
 msgstr ""
 
@@ -438,6 +470,6 @@ msgid "sftp.example.com"
 msgstr ""
 
 #. module: auto_backup
-#: selection:db.backup,backup_format:0
+#: model:ir.model.fields.selection,name:auto_backup.selection__db_backup__backup_format__zip
 msgid "zip (includes filestore)"
 msgstr ""
diff --git a/auto_backup/i18n/tr_TR.po b/auto_backup/i18n/tr_TR.po
index abd374b82d1..5e4001f3107 100644
--- a/auto_backup/i18n/tr_TR.po
+++ b/auto_backup/i18n/tr_TR.po
@@ -85,10 +85,20 @@ msgid "Basic backup configuration"
 msgstr ""
 
 #. module: auto_backup
-#: sql_constraint:db.backup:0
+#: model:ir.model.constraint,message:auto_backup.constraint_db_backup_name_unique
 msgid "Cannot duplicate a configuration."
 msgstr ""
 
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__changeset_change_ids
+msgid "Changeset Changes"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__changeset_ids
+msgid "Changesets"
+msgstr ""
+
 #. module: auto_backup
 #: model:ir.model.fields,help:auto_backup.field_db_backup__backup_format
 msgid "Choose the format for this backup."
@@ -100,23 +110,33 @@ msgid "Choose the storage method for this backup."
 msgstr ""
 
 #. module: auto_backup
-#: code:addons/auto_backup/models/db_backup.py:265
+#: code:addons/auto_backup/models/db_backup.py:0
 #, python-format
 msgid "Cleanup of old database backups failed."
 msgstr ""
 
 #. module: auto_backup
-#: code:addons/auto_backup/models/db_backup.py:137
+#: code:addons/auto_backup/models/db_backup.py:0
 #, python-format
 msgid "Connection Test Failed!"
 msgstr ""
 
 #. module: auto_backup
-#: code:addons/auto_backup/models/db_backup.py:132
+#: code:addons/auto_backup/models/db_backup.py:0
 #, python-format
 msgid "Connection Test Succeeded!"
 msgstr ""
 
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__count_pending_changeset_changes
+msgid "Count Pending Changeset Changes"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__count_pending_changesets
+msgid "Count Pending Changesets"
+msgstr ""
+
 #. module: auto_backup
 #: model:ir.model.fields,field_description:auto_backup.field_db_backup__create_uid
 msgid "Created by"
@@ -133,14 +153,14 @@ msgid "Database Backup"
 msgstr ""
 
 #. module: auto_backup
-#: code:addons/auto_backup/models/db_backup.py:219
+#: code:addons/auto_backup/models/db_backup.py:0
 #: model:mail.message.subtype,description:auto_backup.mail_message_subtype_failure
 #, python-format
 msgid "Database backup failed."
 msgstr ""
 
 #. module: auto_backup
-#: code:addons/auto_backup/models/db_backup.py:227
+#: code:addons/auto_backup/models/db_backup.py:0
 #: model:mail.message.subtype,description:auto_backup.mail_message_subtype_success
 #, python-format
 msgid "Database backup succeeded."
@@ -157,7 +177,7 @@ msgid "Display Name"
 msgstr "Görünen ad"
 
 #. module: auto_backup
-#: code:addons/auto_backup/models/db_backup.py:123
+#: code:addons/auto_backup/models/db_backup.py:0
 #, python-format
 msgid ""
 "Do not save backups on your filestore, or you will backup your backups too!"
@@ -204,7 +224,7 @@ msgid "Help"
 msgstr ""
 
 #. module: auto_backup
-#: sql_constraint:db.backup:0
+#: model:ir.model.constraint,message:auto_backup.constraint_db_backup_days_to_keep_positive
 msgid "I cannot remove backups from the future. Ask Doc for that."
 msgstr ""
 
@@ -213,18 +233,15 @@ msgstr ""
 msgid "ID"
 msgstr "Kimlik"
 
-#. module: auto_backup
-#: model:ir.model.fields,help:auto_backup.field_db_backup__message_unread
-msgid "If checked new messages require your attention."
-msgstr ""
-
 #. module: auto_backup
 #: model:ir.model.fields,help:auto_backup.field_db_backup__message_needaction
+#: model:ir.model.fields,help:auto_backup.field_db_backup__message_unread
 msgid "If checked, new messages require your attention."
 msgstr ""
 
 #. module: auto_backup
 #: model:ir.model.fields,help:auto_backup.field_db_backup__message_has_error
+#: model:ir.model.fields,help:auto_backup.field_db_backup__message_has_sms_error
 msgid "If checked, some messages have a delivery error."
 msgstr ""
 
@@ -249,7 +266,7 @@ msgid "Last Updated on"
 msgstr "En son güncelleme tarihi"
 
 #. module: auto_backup
-#: selection:db.backup,method:0
+#: model:ir.model.fields.selection,name:auto_backup.selection__db_backup__method__local
 msgid "Local disk"
 msgstr ""
 
@@ -285,7 +302,7 @@ msgstr ""
 
 #. module: auto_backup
 #: model:ir.model.fields,field_description:auto_backup.field_db_backup__message_has_error_counter
-msgid "Number of error"
+msgid "Number of errors"
 msgstr ""
 
 #. module: auto_backup
@@ -316,7 +333,7 @@ msgid "Private key location"
 msgstr ""
 
 #. module: auto_backup
-#: selection:db.backup,method:0
+#: model:ir.model.fields.selection,name:auto_backup.selection__db_backup__method__sftp
 msgid "Remote SFTP server"
 msgstr ""
 
@@ -340,6 +357,11 @@ msgstr ""
 msgid "SFTP Settings"
 msgstr ""
 
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__message_has_sms_error
+msgid "SMS Delivery error"
+msgstr ""
+
 #. module: auto_backup
 #: model_terms:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
 msgid "Search the action named 'Backup scheduler'."
@@ -351,6 +373,11 @@ msgid ""
 "Set the scheduler to active and fill in how often you want backups generated."
 msgstr ""
 
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__smart_search
+msgid "Smart Search"
+msgstr ""
+
 #. module: auto_backup
 #: model:ir.model.fields,help:auto_backup.field_db_backup__name
 msgid "Summary of this backup process"
@@ -403,6 +430,11 @@ msgid ""
 "you specify."
 msgstr ""
 
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__user_can_see_changeset
+msgid "User Can See Changeset"
+msgstr ""
+
 #. module: auto_backup
 #: model:ir.model.fields,field_description:auto_backup.field_db_backup__sftp_user
 msgid "Username in the SFTP Server"
@@ -429,7 +461,7 @@ msgid "john"
 msgstr ""
 
 #. module: auto_backup
-#: selection:db.backup,backup_format:0
+#: model:ir.model.fields.selection,name:auto_backup.selection__db_backup__backup_format__dump
 msgid "pg_dump custom format (without filestore)"
 msgstr ""
 
@@ -439,6 +471,6 @@ msgid "sftp.example.com"
 msgstr ""
 
 #. module: auto_backup
-#: selection:db.backup,backup_format:0
+#: model:ir.model.fields.selection,name:auto_backup.selection__db_backup__backup_format__zip
 msgid "zip (includes filestore)"
 msgstr ""
diff --git a/auto_backup/i18n/uk.po b/auto_backup/i18n/uk.po
index 9ad08daacc5..d470f4a081e 100644
--- a/auto_backup/i18n/uk.po
+++ b/auto_backup/i18n/uk.po
@@ -85,10 +85,20 @@ msgid "Basic backup configuration"
 msgstr ""
 
 #. module: auto_backup
-#: sql_constraint:db.backup:0
+#: model:ir.model.constraint,message:auto_backup.constraint_db_backup_name_unique
 msgid "Cannot duplicate a configuration."
 msgstr ""
 
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__changeset_change_ids
+msgid "Changeset Changes"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__changeset_ids
+msgid "Changesets"
+msgstr ""
+
 #. module: auto_backup
 #: model:ir.model.fields,help:auto_backup.field_db_backup__backup_format
 msgid "Choose the format for this backup."
@@ -100,23 +110,33 @@ msgid "Choose the storage method for this backup."
 msgstr ""
 
 #. module: auto_backup
-#: code:addons/auto_backup/models/db_backup.py:265
+#: code:addons/auto_backup/models/db_backup.py:0
 #, python-format
 msgid "Cleanup of old database backups failed."
 msgstr ""
 
 #. module: auto_backup
-#: code:addons/auto_backup/models/db_backup.py:137
+#: code:addons/auto_backup/models/db_backup.py:0
 #, python-format
 msgid "Connection Test Failed!"
 msgstr ""
 
 #. module: auto_backup
-#: code:addons/auto_backup/models/db_backup.py:132
+#: code:addons/auto_backup/models/db_backup.py:0
 #, python-format
 msgid "Connection Test Succeeded!"
 msgstr ""
 
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__count_pending_changeset_changes
+msgid "Count Pending Changeset Changes"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__count_pending_changesets
+msgid "Count Pending Changesets"
+msgstr ""
+
 #. module: auto_backup
 #: model:ir.model.fields,field_description:auto_backup.field_db_backup__create_uid
 msgid "Created by"
@@ -133,14 +153,14 @@ msgid "Database Backup"
 msgstr ""
 
 #. module: auto_backup
-#: code:addons/auto_backup/models/db_backup.py:219
+#: code:addons/auto_backup/models/db_backup.py:0
 #: model:mail.message.subtype,description:auto_backup.mail_message_subtype_failure
 #, python-format
 msgid "Database backup failed."
 msgstr ""
 
 #. module: auto_backup
-#: code:addons/auto_backup/models/db_backup.py:227
+#: code:addons/auto_backup/models/db_backup.py:0
 #: model:mail.message.subtype,description:auto_backup.mail_message_subtype_success
 #, python-format
 msgid "Database backup succeeded."
@@ -157,7 +177,7 @@ msgid "Display Name"
 msgstr "Назва для відображення"
 
 #. module: auto_backup
-#: code:addons/auto_backup/models/db_backup.py:123
+#: code:addons/auto_backup/models/db_backup.py:0
 #, python-format
 msgid ""
 "Do not save backups on your filestore, or you will backup your backups too!"
@@ -204,7 +224,7 @@ msgid "Help"
 msgstr ""
 
 #. module: auto_backup
-#: sql_constraint:db.backup:0
+#: model:ir.model.constraint,message:auto_backup.constraint_db_backup_days_to_keep_positive
 msgid "I cannot remove backups from the future. Ask Doc for that."
 msgstr ""
 
@@ -213,18 +233,15 @@ msgstr ""
 msgid "ID"
 msgstr "ID"
 
-#. module: auto_backup
-#: model:ir.model.fields,help:auto_backup.field_db_backup__message_unread
-msgid "If checked new messages require your attention."
-msgstr ""
-
 #. module: auto_backup
 #: model:ir.model.fields,help:auto_backup.field_db_backup__message_needaction
+#: model:ir.model.fields,help:auto_backup.field_db_backup__message_unread
 msgid "If checked, new messages require your attention."
 msgstr ""
 
 #. module: auto_backup
 #: model:ir.model.fields,help:auto_backup.field_db_backup__message_has_error
+#: model:ir.model.fields,help:auto_backup.field_db_backup__message_has_sms_error
 msgid "If checked, some messages have a delivery error."
 msgstr ""
 
@@ -249,7 +266,7 @@ msgid "Last Updated on"
 msgstr "Дата останньої зміни"
 
 #. module: auto_backup
-#: selection:db.backup,method:0
+#: model:ir.model.fields.selection,name:auto_backup.selection__db_backup__method__local
 msgid "Local disk"
 msgstr ""
 
@@ -285,7 +302,7 @@ msgstr ""
 
 #. module: auto_backup
 #: model:ir.model.fields,field_description:auto_backup.field_db_backup__message_has_error_counter
-msgid "Number of error"
+msgid "Number of errors"
 msgstr ""
 
 #. module: auto_backup
@@ -316,7 +333,7 @@ msgid "Private key location"
 msgstr ""
 
 #. module: auto_backup
-#: selection:db.backup,method:0
+#: model:ir.model.fields.selection,name:auto_backup.selection__db_backup__method__sftp
 msgid "Remote SFTP server"
 msgstr ""
 
@@ -340,6 +357,11 @@ msgstr ""
 msgid "SFTP Settings"
 msgstr ""
 
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__message_has_sms_error
+msgid "SMS Delivery error"
+msgstr ""
+
 #. module: auto_backup
 #: model_terms:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
 msgid "Search the action named 'Backup scheduler'."
@@ -351,6 +373,11 @@ msgid ""
 "Set the scheduler to active and fill in how often you want backups generated."
 msgstr ""
 
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__smart_search
+msgid "Smart Search"
+msgstr ""
+
 #. module: auto_backup
 #: model:ir.model.fields,help:auto_backup.field_db_backup__name
 msgid "Summary of this backup process"
@@ -403,6 +430,11 @@ msgid ""
 "you specify."
 msgstr ""
 
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__user_can_see_changeset
+msgid "User Can See Changeset"
+msgstr ""
+
 #. module: auto_backup
 #: model:ir.model.fields,field_description:auto_backup.field_db_backup__sftp_user
 msgid "Username in the SFTP Server"
@@ -429,7 +461,7 @@ msgid "john"
 msgstr ""
 
 #. module: auto_backup
-#: selection:db.backup,backup_format:0
+#: model:ir.model.fields.selection,name:auto_backup.selection__db_backup__backup_format__dump
 msgid "pg_dump custom format (without filestore)"
 msgstr ""
 
@@ -439,6 +471,6 @@ msgid "sftp.example.com"
 msgstr ""
 
 #. module: auto_backup
-#: selection:db.backup,backup_format:0
+#: model:ir.model.fields.selection,name:auto_backup.selection__db_backup__backup_format__zip
 msgid "zip (includes filestore)"
 msgstr ""
diff --git a/auto_backup/i18n/vi.po b/auto_backup/i18n/vi.po
index c2dcd368950..325677ef2b6 100644
--- a/auto_backup/i18n/vi.po
+++ b/auto_backup/i18n/vi.po
@@ -84,10 +84,20 @@ msgid "Basic backup configuration"
 msgstr ""
 
 #. module: auto_backup
-#: sql_constraint:db.backup:0
+#: model:ir.model.constraint,message:auto_backup.constraint_db_backup_name_unique
 msgid "Cannot duplicate a configuration."
 msgstr ""
 
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__changeset_change_ids
+msgid "Changeset Changes"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__changeset_ids
+msgid "Changesets"
+msgstr ""
+
 #. module: auto_backup
 #: model:ir.model.fields,help:auto_backup.field_db_backup__backup_format
 msgid "Choose the format for this backup."
@@ -99,23 +109,33 @@ msgid "Choose the storage method for this backup."
 msgstr ""
 
 #. module: auto_backup
-#: code:addons/auto_backup/models/db_backup.py:265
+#: code:addons/auto_backup/models/db_backup.py:0
 #, python-format
 msgid "Cleanup of old database backups failed."
 msgstr ""
 
 #. module: auto_backup
-#: code:addons/auto_backup/models/db_backup.py:137
+#: code:addons/auto_backup/models/db_backup.py:0
 #, python-format
 msgid "Connection Test Failed!"
 msgstr ""
 
 #. module: auto_backup
-#: code:addons/auto_backup/models/db_backup.py:132
+#: code:addons/auto_backup/models/db_backup.py:0
 #, python-format
 msgid "Connection Test Succeeded!"
 msgstr ""
 
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__count_pending_changeset_changes
+msgid "Count Pending Changeset Changes"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__count_pending_changesets
+msgid "Count Pending Changesets"
+msgstr ""
+
 #. module: auto_backup
 #: model:ir.model.fields,field_description:auto_backup.field_db_backup__create_uid
 msgid "Created by"
@@ -132,14 +152,14 @@ msgid "Database Backup"
 msgstr ""
 
 #. module: auto_backup
-#: code:addons/auto_backup/models/db_backup.py:219
+#: code:addons/auto_backup/models/db_backup.py:0
 #: model:mail.message.subtype,description:auto_backup.mail_message_subtype_failure
 #, python-format
 msgid "Database backup failed."
 msgstr ""
 
 #. module: auto_backup
-#: code:addons/auto_backup/models/db_backup.py:227
+#: code:addons/auto_backup/models/db_backup.py:0
 #: model:mail.message.subtype,description:auto_backup.mail_message_subtype_success
 #, python-format
 msgid "Database backup succeeded."
@@ -156,7 +176,7 @@ msgid "Display Name"
 msgstr "Tên hiển thị"
 
 #. module: auto_backup
-#: code:addons/auto_backup/models/db_backup.py:123
+#: code:addons/auto_backup/models/db_backup.py:0
 #, python-format
 msgid ""
 "Do not save backups on your filestore, or you will backup your backups too!"
@@ -203,7 +223,7 @@ msgid "Help"
 msgstr ""
 
 #. module: auto_backup
-#: sql_constraint:db.backup:0
+#: model:ir.model.constraint,message:auto_backup.constraint_db_backup_days_to_keep_positive
 msgid "I cannot remove backups from the future. Ask Doc for that."
 msgstr ""
 
@@ -212,18 +232,15 @@ msgstr ""
 msgid "ID"
 msgstr "ID"
 
-#. module: auto_backup
-#: model:ir.model.fields,help:auto_backup.field_db_backup__message_unread
-msgid "If checked new messages require your attention."
-msgstr ""
-
 #. module: auto_backup
 #: model:ir.model.fields,help:auto_backup.field_db_backup__message_needaction
+#: model:ir.model.fields,help:auto_backup.field_db_backup__message_unread
 msgid "If checked, new messages require your attention."
 msgstr ""
 
 #. module: auto_backup
 #: model:ir.model.fields,help:auto_backup.field_db_backup__message_has_error
+#: model:ir.model.fields,help:auto_backup.field_db_backup__message_has_sms_error
 msgid "If checked, some messages have a delivery error."
 msgstr ""
 
@@ -248,7 +265,7 @@ msgid "Last Updated on"
 msgstr "Cập nhật lần cuối vào"
 
 #. module: auto_backup
-#: selection:db.backup,method:0
+#: model:ir.model.fields.selection,name:auto_backup.selection__db_backup__method__local
 msgid "Local disk"
 msgstr ""
 
@@ -284,7 +301,7 @@ msgstr ""
 
 #. module: auto_backup
 #: model:ir.model.fields,field_description:auto_backup.field_db_backup__message_has_error_counter
-msgid "Number of error"
+msgid "Number of errors"
 msgstr ""
 
 #. module: auto_backup
@@ -315,7 +332,7 @@ msgid "Private key location"
 msgstr ""
 
 #. module: auto_backup
-#: selection:db.backup,method:0
+#: model:ir.model.fields.selection,name:auto_backup.selection__db_backup__method__sftp
 msgid "Remote SFTP server"
 msgstr ""
 
@@ -339,6 +356,11 @@ msgstr ""
 msgid "SFTP Settings"
 msgstr ""
 
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__message_has_sms_error
+msgid "SMS Delivery error"
+msgstr ""
+
 #. module: auto_backup
 #: model_terms:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
 msgid "Search the action named 'Backup scheduler'."
@@ -350,6 +372,11 @@ msgid ""
 "Set the scheduler to active and fill in how often you want backups generated."
 msgstr ""
 
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__smart_search
+msgid "Smart Search"
+msgstr ""
+
 #. module: auto_backup
 #: model:ir.model.fields,help:auto_backup.field_db_backup__name
 msgid "Summary of this backup process"
@@ -402,6 +429,11 @@ msgid ""
 "you specify."
 msgstr ""
 
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__user_can_see_changeset
+msgid "User Can See Changeset"
+msgstr ""
+
 #. module: auto_backup
 #: model:ir.model.fields,field_description:auto_backup.field_db_backup__sftp_user
 msgid "Username in the SFTP Server"
@@ -428,7 +460,7 @@ msgid "john"
 msgstr ""
 
 #. module: auto_backup
-#: selection:db.backup,backup_format:0
+#: model:ir.model.fields.selection,name:auto_backup.selection__db_backup__backup_format__dump
 msgid "pg_dump custom format (without filestore)"
 msgstr ""
 
@@ -438,6 +470,6 @@ msgid "sftp.example.com"
 msgstr ""
 
 #. module: auto_backup
-#: selection:db.backup,backup_format:0
+#: model:ir.model.fields.selection,name:auto_backup.selection__db_backup__backup_format__zip
 msgid "zip (includes filestore)"
 msgstr ""
diff --git a/auto_backup/i18n/vi_VN.po b/auto_backup/i18n/vi_VN.po
index 87c81b2384a..b52d5f381cb 100644
--- a/auto_backup/i18n/vi_VN.po
+++ b/auto_backup/i18n/vi_VN.po
@@ -85,10 +85,20 @@ msgid "Basic backup configuration"
 msgstr ""
 
 #. module: auto_backup
-#: sql_constraint:db.backup:0
+#: model:ir.model.constraint,message:auto_backup.constraint_db_backup_name_unique
 msgid "Cannot duplicate a configuration."
 msgstr ""
 
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__changeset_change_ids
+msgid "Changeset Changes"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__changeset_ids
+msgid "Changesets"
+msgstr ""
+
 #. module: auto_backup
 #: model:ir.model.fields,help:auto_backup.field_db_backup__backup_format
 msgid "Choose the format for this backup."
@@ -100,23 +110,33 @@ msgid "Choose the storage method for this backup."
 msgstr ""
 
 #. module: auto_backup
-#: code:addons/auto_backup/models/db_backup.py:265
+#: code:addons/auto_backup/models/db_backup.py:0
 #, python-format
 msgid "Cleanup of old database backups failed."
 msgstr ""
 
 #. module: auto_backup
-#: code:addons/auto_backup/models/db_backup.py:137
+#: code:addons/auto_backup/models/db_backup.py:0
 #, python-format
 msgid "Connection Test Failed!"
 msgstr ""
 
 #. module: auto_backup
-#: code:addons/auto_backup/models/db_backup.py:132
+#: code:addons/auto_backup/models/db_backup.py:0
 #, python-format
 msgid "Connection Test Succeeded!"
 msgstr ""
 
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__count_pending_changeset_changes
+msgid "Count Pending Changeset Changes"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__count_pending_changesets
+msgid "Count Pending Changesets"
+msgstr ""
+
 #. module: auto_backup
 #: model:ir.model.fields,field_description:auto_backup.field_db_backup__create_uid
 msgid "Created by"
@@ -133,14 +153,14 @@ msgid "Database Backup"
 msgstr ""
 
 #. module: auto_backup
-#: code:addons/auto_backup/models/db_backup.py:219
+#: code:addons/auto_backup/models/db_backup.py:0
 #: model:mail.message.subtype,description:auto_backup.mail_message_subtype_failure
 #, python-format
 msgid "Database backup failed."
 msgstr ""
 
 #. module: auto_backup
-#: code:addons/auto_backup/models/db_backup.py:227
+#: code:addons/auto_backup/models/db_backup.py:0
 #: model:mail.message.subtype,description:auto_backup.mail_message_subtype_success
 #, python-format
 msgid "Database backup succeeded."
@@ -157,7 +177,7 @@ msgid "Display Name"
 msgstr ""
 
 #. module: auto_backup
-#: code:addons/auto_backup/models/db_backup.py:123
+#: code:addons/auto_backup/models/db_backup.py:0
 #, python-format
 msgid ""
 "Do not save backups on your filestore, or you will backup your backups too!"
@@ -204,7 +224,7 @@ msgid "Help"
 msgstr ""
 
 #. module: auto_backup
-#: sql_constraint:db.backup:0
+#: model:ir.model.constraint,message:auto_backup.constraint_db_backup_days_to_keep_positive
 msgid "I cannot remove backups from the future. Ask Doc for that."
 msgstr ""
 
@@ -213,18 +233,15 @@ msgstr ""
 msgid "ID"
 msgstr "ID"
 
-#. module: auto_backup
-#: model:ir.model.fields,help:auto_backup.field_db_backup__message_unread
-msgid "If checked new messages require your attention."
-msgstr ""
-
 #. module: auto_backup
 #: model:ir.model.fields,help:auto_backup.field_db_backup__message_needaction
+#: model:ir.model.fields,help:auto_backup.field_db_backup__message_unread
 msgid "If checked, new messages require your attention."
 msgstr ""
 
 #. module: auto_backup
 #: model:ir.model.fields,help:auto_backup.field_db_backup__message_has_error
+#: model:ir.model.fields,help:auto_backup.field_db_backup__message_has_sms_error
 msgid "If checked, some messages have a delivery error."
 msgstr ""
 
@@ -249,7 +266,7 @@ msgid "Last Updated on"
 msgstr "Cập nhật lần cuối vào"
 
 #. module: auto_backup
-#: selection:db.backup,method:0
+#: model:ir.model.fields.selection,name:auto_backup.selection__db_backup__method__local
 msgid "Local disk"
 msgstr ""
 
@@ -285,7 +302,7 @@ msgstr ""
 
 #. module: auto_backup
 #: model:ir.model.fields,field_description:auto_backup.field_db_backup__message_has_error_counter
-msgid "Number of error"
+msgid "Number of errors"
 msgstr ""
 
 #. module: auto_backup
@@ -316,7 +333,7 @@ msgid "Private key location"
 msgstr ""
 
 #. module: auto_backup
-#: selection:db.backup,method:0
+#: model:ir.model.fields.selection,name:auto_backup.selection__db_backup__method__sftp
 msgid "Remote SFTP server"
 msgstr ""
 
@@ -340,6 +357,11 @@ msgstr ""
 msgid "SFTP Settings"
 msgstr ""
 
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__message_has_sms_error
+msgid "SMS Delivery error"
+msgstr ""
+
 #. module: auto_backup
 #: model_terms:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
 msgid "Search the action named 'Backup scheduler'."
@@ -351,6 +373,11 @@ msgid ""
 "Set the scheduler to active and fill in how often you want backups generated."
 msgstr ""
 
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__smart_search
+msgid "Smart Search"
+msgstr ""
+
 #. module: auto_backup
 #: model:ir.model.fields,help:auto_backup.field_db_backup__name
 msgid "Summary of this backup process"
@@ -403,6 +430,11 @@ msgid ""
 "you specify."
 msgstr ""
 
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__user_can_see_changeset
+msgid "User Can See Changeset"
+msgstr ""
+
 #. module: auto_backup
 #: model:ir.model.fields,field_description:auto_backup.field_db_backup__sftp_user
 msgid "Username in the SFTP Server"
@@ -429,7 +461,7 @@ msgid "john"
 msgstr ""
 
 #. module: auto_backup
-#: selection:db.backup,backup_format:0
+#: model:ir.model.fields.selection,name:auto_backup.selection__db_backup__backup_format__dump
 msgid "pg_dump custom format (without filestore)"
 msgstr ""
 
@@ -439,6 +471,6 @@ msgid "sftp.example.com"
 msgstr ""
 
 #. module: auto_backup
-#: selection:db.backup,backup_format:0
+#: model:ir.model.fields.selection,name:auto_backup.selection__db_backup__backup_format__zip
 msgid "zip (includes filestore)"
 msgstr ""
diff --git a/auto_backup/i18n/zh_CN.po b/auto_backup/i18n/zh_CN.po
index 3e370213f7f..2180a7997bc 100644
--- a/auto_backup/i18n/zh_CN.po
+++ b/auto_backup/i18n/zh_CN.po
@@ -86,10 +86,20 @@ msgid "Basic backup configuration"
 msgstr "备份基础设置"
 
 #. module: auto_backup
-#: sql_constraint:db.backup:0
+#: model:ir.model.constraint,message:auto_backup.constraint_db_backup_name_unique
 msgid "Cannot duplicate a configuration."
 msgstr "无法复制配置。"
 
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__changeset_change_ids
+msgid "Changeset Changes"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__changeset_ids
+msgid "Changesets"
+msgstr ""
+
 #. module: auto_backup
 #: model:ir.model.fields,help:auto_backup.field_db_backup__backup_format
 msgid "Choose the format for this backup."
@@ -101,23 +111,33 @@ msgid "Choose the storage method for this backup."
 msgstr "选择这个备份的存储方法."
 
 #. module: auto_backup
-#: code:addons/auto_backup/models/db_backup.py:265
+#: code:addons/auto_backup/models/db_backup.py:0
 #, python-format
 msgid "Cleanup of old database backups failed."
 msgstr "清除旧数据库备份失败."
 
 #. module: auto_backup
-#: code:addons/auto_backup/models/db_backup.py:137
+#: code:addons/auto_backup/models/db_backup.py:0
 #, python-format
 msgid "Connection Test Failed!"
 msgstr "连接测试失败!"
 
 #. module: auto_backup
-#: code:addons/auto_backup/models/db_backup.py:132
+#: code:addons/auto_backup/models/db_backup.py:0
 #, python-format
 msgid "Connection Test Succeeded!"
 msgstr "连接测试成功!"
 
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__count_pending_changeset_changes
+msgid "Count Pending Changeset Changes"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__count_pending_changesets
+msgid "Count Pending Changesets"
+msgstr ""
+
 #. module: auto_backup
 #: model:ir.model.fields,field_description:auto_backup.field_db_backup__create_uid
 msgid "Created by"
@@ -134,14 +154,14 @@ msgid "Database Backup"
 msgstr "数据库备份"
 
 #. module: auto_backup
-#: code:addons/auto_backup/models/db_backup.py:219
+#: code:addons/auto_backup/models/db_backup.py:0
 #: model:mail.message.subtype,description:auto_backup.mail_message_subtype_failure
 #, python-format
 msgid "Database backup failed."
 msgstr "数据库备份失败。"
 
 #. module: auto_backup
-#: code:addons/auto_backup/models/db_backup.py:227
+#: code:addons/auto_backup/models/db_backup.py:0
 #: model:mail.message.subtype,description:auto_backup.mail_message_subtype_success
 #, python-format
 msgid "Database backup succeeded."
@@ -158,7 +178,7 @@ msgid "Display Name"
 msgstr "显示名称"
 
 #. module: auto_backup
-#: code:addons/auto_backup/models/db_backup.py:123
+#: code:addons/auto_backup/models/db_backup.py:0
 #, python-format
 msgid ""
 "Do not save backups on your filestore, or you will backup your backups too!"
@@ -205,7 +225,7 @@ msgid "Help"
 msgstr "帮助"
 
 #. module: auto_backup
-#: sql_constraint:db.backup:0
+#: model:ir.model.constraint,message:auto_backup.constraint_db_backup_days_to_keep_positive
 msgid "I cannot remove backups from the future. Ask Doc for that."
 msgstr "我无法从将来删除备份。向Doc询问。"
 
@@ -214,18 +234,15 @@ msgstr "我无法从将来删除备份。向Doc询问。"
 msgid "ID"
 msgstr "ID"
 
-#. module: auto_backup
-#: model:ir.model.fields,help:auto_backup.field_db_backup__message_unread
-msgid "If checked new messages require your attention."
-msgstr "如果检查了新消息,需要您的注意。"
-
 #. module: auto_backup
 #: model:ir.model.fields,help:auto_backup.field_db_backup__message_needaction
+#: model:ir.model.fields,help:auto_backup.field_db_backup__message_unread
 msgid "If checked, new messages require your attention."
 msgstr "如果勾选此项,则需要注意新消息。"
 
 #. module: auto_backup
 #: model:ir.model.fields,help:auto_backup.field_db_backup__message_has_error
+#: model:ir.model.fields,help:auto_backup.field_db_backup__message_has_sms_error
 msgid "If checked, some messages have a delivery error."
 msgstr "如果勾选此项,有些消息会有传递错误。"
 
@@ -250,7 +267,7 @@ msgid "Last Updated on"
 msgstr "最后更新时间"
 
 #. module: auto_backup
-#: selection:db.backup,method:0
+#: model:ir.model.fields.selection,name:auto_backup.selection__db_backup__method__local
 msgid "Local disk"
 msgstr "本地磁盘"
 
@@ -286,8 +303,8 @@ msgstr "行动数量"
 
 #. module: auto_backup
 #: model:ir.model.fields,field_description:auto_backup.field_db_backup__message_has_error_counter
-msgid "Number of error"
-msgstr "错误数量"
+msgid "Number of errors"
+msgstr ""
 
 #. module: auto_backup
 #: model:ir.model.fields,help:auto_backup.field_db_backup__message_needaction_counter
@@ -317,7 +334,7 @@ msgid "Private key location"
 msgstr "私钥位置"
 
 #. module: auto_backup
-#: selection:db.backup,method:0
+#: model:ir.model.fields.selection,name:auto_backup.selection__db_backup__method__sftp
 msgid "Remote SFTP server"
 msgstr "远程SFTP服务器"
 
@@ -341,6 +358,11 @@ msgstr "SFTP服务器"
 msgid "SFTP Settings"
 msgstr "SFTP设置"
 
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__message_has_sms_error
+msgid "SMS Delivery error"
+msgstr ""
+
 #. module: auto_backup
 #: model_terms:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
 msgid "Search the action named 'Backup scheduler'."
@@ -350,7 +372,14 @@ msgstr "在安排的动作搜索“备份计划”。"
 #: model_terms:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
 msgid ""
 "Set the scheduler to active and fill in how often you want backups generated."
-msgstr "将安排的动作设置为活动状态,并填写备份间隔时间,间隔时间单位,间隔次数,执行时间等数据库具体备份方案。"
+msgstr ""
+"将安排的动作设置为活动状态,并填写备份间隔时间,间隔时间单位,间隔次数,执行"
+"时间等数据库具体备份方案。"
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__smart_search
+msgid "Smart Search"
+msgstr ""
 
 #. module: auto_backup
 #: model:ir.model.fields,help:auto_backup.field_db_backup__name
@@ -406,6 +435,11 @@ msgstr ""
 "请注意你的 SFTP服务器网络安全!数据库备份文件将备份到你的SFTP服务器,文件保存"
 "在设置的目录下面。"
 
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__user_can_see_changeset
+msgid "User Can See Changeset"
+msgstr ""
+
 #. module: auto_backup
 #: model:ir.model.fields,field_description:auto_backup.field_db_backup__sftp_user
 msgid "Username in the SFTP Server"
@@ -432,7 +466,7 @@ msgid "john"
 msgstr "约翰"
 
 #. module: auto_backup
-#: selection:db.backup,backup_format:0
+#: model:ir.model.fields.selection,name:auto_backup.selection__db_backup__backup_format__dump
 msgid "pg_dump custom format (without filestore)"
 msgstr "pg_dump自定义格式(没有文件存储)"
 
@@ -442,6 +476,12 @@ msgid "sftp.example.com"
 msgstr "sftp.example.com"
 
 #. module: auto_backup
-#: selection:db.backup,backup_format:0
+#: model:ir.model.fields.selection,name:auto_backup.selection__db_backup__backup_format__zip
 msgid "zip (includes filestore)"
 msgstr "zip(包括文件存储)"
+
+#~ msgid "If checked new messages require your attention."
+#~ msgstr "如果检查了新消息,需要您的注意。"
+
+#~ msgid "Number of error"
+#~ msgstr "错误数量"
diff --git a/auto_backup/i18n/zh_TW.po b/auto_backup/i18n/zh_TW.po
index 7a6caa564e9..3acf6797f58 100644
--- a/auto_backup/i18n/zh_TW.po
+++ b/auto_backup/i18n/zh_TW.po
@@ -85,10 +85,20 @@ msgid "Basic backup configuration"
 msgstr ""
 
 #. module: auto_backup
-#: sql_constraint:db.backup:0
+#: model:ir.model.constraint,message:auto_backup.constraint_db_backup_name_unique
 msgid "Cannot duplicate a configuration."
 msgstr ""
 
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__changeset_change_ids
+msgid "Changeset Changes"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__changeset_ids
+msgid "Changesets"
+msgstr ""
+
 #. module: auto_backup
 #: model:ir.model.fields,help:auto_backup.field_db_backup__backup_format
 msgid "Choose the format for this backup."
@@ -100,23 +110,33 @@ msgid "Choose the storage method for this backup."
 msgstr ""
 
 #. module: auto_backup
-#: code:addons/auto_backup/models/db_backup.py:265
+#: code:addons/auto_backup/models/db_backup.py:0
 #, python-format
 msgid "Cleanup of old database backups failed."
 msgstr ""
 
 #. module: auto_backup
-#: code:addons/auto_backup/models/db_backup.py:137
+#: code:addons/auto_backup/models/db_backup.py:0
 #, python-format
 msgid "Connection Test Failed!"
 msgstr ""
 
 #. module: auto_backup
-#: code:addons/auto_backup/models/db_backup.py:132
+#: code:addons/auto_backup/models/db_backup.py:0
 #, python-format
 msgid "Connection Test Succeeded!"
 msgstr ""
 
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__count_pending_changeset_changes
+msgid "Count Pending Changeset Changes"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__count_pending_changesets
+msgid "Count Pending Changesets"
+msgstr ""
+
 #. module: auto_backup
 #: model:ir.model.fields,field_description:auto_backup.field_db_backup__create_uid
 msgid "Created by"
@@ -133,14 +153,14 @@ msgid "Database Backup"
 msgstr ""
 
 #. module: auto_backup
-#: code:addons/auto_backup/models/db_backup.py:219
+#: code:addons/auto_backup/models/db_backup.py:0
 #: model:mail.message.subtype,description:auto_backup.mail_message_subtype_failure
 #, python-format
 msgid "Database backup failed."
 msgstr ""
 
 #. module: auto_backup
-#: code:addons/auto_backup/models/db_backup.py:227
+#: code:addons/auto_backup/models/db_backup.py:0
 #: model:mail.message.subtype,description:auto_backup.mail_message_subtype_success
 #, python-format
 msgid "Database backup succeeded."
@@ -157,7 +177,7 @@ msgid "Display Name"
 msgstr "顯示名稱"
 
 #. module: auto_backup
-#: code:addons/auto_backup/models/db_backup.py:123
+#: code:addons/auto_backup/models/db_backup.py:0
 #, python-format
 msgid ""
 "Do not save backups on your filestore, or you will backup your backups too!"
@@ -204,7 +224,7 @@ msgid "Help"
 msgstr ""
 
 #. module: auto_backup
-#: sql_constraint:db.backup:0
+#: model:ir.model.constraint,message:auto_backup.constraint_db_backup_days_to_keep_positive
 msgid "I cannot remove backups from the future. Ask Doc for that."
 msgstr ""
 
@@ -213,18 +233,15 @@ msgstr ""
 msgid "ID"
 msgstr "ID"
 
-#. module: auto_backup
-#: model:ir.model.fields,help:auto_backup.field_db_backup__message_unread
-msgid "If checked new messages require your attention."
-msgstr ""
-
 #. module: auto_backup
 #: model:ir.model.fields,help:auto_backup.field_db_backup__message_needaction
+#: model:ir.model.fields,help:auto_backup.field_db_backup__message_unread
 msgid "If checked, new messages require your attention."
 msgstr ""
 
 #. module: auto_backup
 #: model:ir.model.fields,help:auto_backup.field_db_backup__message_has_error
+#: model:ir.model.fields,help:auto_backup.field_db_backup__message_has_sms_error
 msgid "If checked, some messages have a delivery error."
 msgstr ""
 
@@ -249,7 +266,7 @@ msgid "Last Updated on"
 msgstr "最後更新於"
 
 #. module: auto_backup
-#: selection:db.backup,method:0
+#: model:ir.model.fields.selection,name:auto_backup.selection__db_backup__method__local
 msgid "Local disk"
 msgstr ""
 
@@ -285,7 +302,7 @@ msgstr ""
 
 #. module: auto_backup
 #: model:ir.model.fields,field_description:auto_backup.field_db_backup__message_has_error_counter
-msgid "Number of error"
+msgid "Number of errors"
 msgstr ""
 
 #. module: auto_backup
@@ -316,7 +333,7 @@ msgid "Private key location"
 msgstr ""
 
 #. module: auto_backup
-#: selection:db.backup,method:0
+#: model:ir.model.fields.selection,name:auto_backup.selection__db_backup__method__sftp
 msgid "Remote SFTP server"
 msgstr ""
 
@@ -340,6 +357,11 @@ msgstr ""
 msgid "SFTP Settings"
 msgstr ""
 
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__message_has_sms_error
+msgid "SMS Delivery error"
+msgstr ""
+
 #. module: auto_backup
 #: model_terms:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
 msgid "Search the action named 'Backup scheduler'."
@@ -351,6 +373,11 @@ msgid ""
 "Set the scheduler to active and fill in how often you want backups generated."
 msgstr ""
 
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__smart_search
+msgid "Smart Search"
+msgstr ""
+
 #. module: auto_backup
 #: model:ir.model.fields,help:auto_backup.field_db_backup__name
 msgid "Summary of this backup process"
@@ -403,6 +430,11 @@ msgid ""
 "you specify."
 msgstr ""
 
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__user_can_see_changeset
+msgid "User Can See Changeset"
+msgstr ""
+
 #. module: auto_backup
 #: model:ir.model.fields,field_description:auto_backup.field_db_backup__sftp_user
 msgid "Username in the SFTP Server"
@@ -429,7 +461,7 @@ msgid "john"
 msgstr ""
 
 #. module: auto_backup
-#: selection:db.backup,backup_format:0
+#: model:ir.model.fields.selection,name:auto_backup.selection__db_backup__backup_format__dump
 msgid "pg_dump custom format (without filestore)"
 msgstr ""
 
@@ -439,6 +471,6 @@ msgid "sftp.example.com"
 msgstr ""
 
 #. module: auto_backup
-#: selection:db.backup,backup_format:0
+#: model:ir.model.fields.selection,name:auto_backup.selection__db_backup__backup_format__zip
 msgid "zip (includes filestore)"
 msgstr ""
diff --git a/auto_backup/static/description/index.html b/auto_backup/static/description/index.html
index 17cec612f45..89938633751 100644
--- a/auto_backup/static/description/index.html
+++ b/auto_backup/static/description/index.html
@@ -3,7 +3,7 @@
 <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
 <head>
 <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
-<meta name="generator" content="Docutils: http://docutils.sourceforge.net/" />
+<meta name="generator" content="Docutils 0.15.1: http://docutils.sourceforge.net/" />
 <title>Database Auto-Backup</title>
 <style type="text/css">
 
diff --git a/auto_backup/tests/test_db_backup.py b/auto_backup/tests/test_db_backup.py
index f2188642952..4bf4de18b87 100644
--- a/auto_backup/tests/test_db_backup.py
+++ b/auto_backup/tests/test_db_backup.py
@@ -7,10 +7,10 @@
 import os
 from contextlib import contextmanager
 from datetime import datetime, timedelta
+from unittest.mock import PropertyMock, patch
 
-import mock
-
-from odoo import exceptions, tools
+from odoo import tools
+from odoo.exceptions import UserError
 from odoo.tests import common
 
 try:
@@ -20,6 +20,7 @@
 
 
 model = "odoo.addons.auto_backup.models.db_backup"
+class_name = "%s.DbBackup" % model
 
 
 class TestConnectionException(pysftp.ConnectionException):
@@ -36,9 +37,9 @@ def setUp(self):
     def mock_assets(self):
         """ It provides mocked core assets """
         self.path_join_val = "/this/is/a/path"
-        with mock.patch("%s.db" % model) as db:
-            with mock.patch("%s.os" % model) as os:
-                with mock.patch("%s.shutil" % model) as shutil:
+        with patch("%s.db" % model) as db:
+            with patch("%s.os" % model) as os:
+                with patch("%s.shutil" % model) as shutil:
                     os.path.join.return_value = self.path_join_val
                     yield {
                         "db": db,
@@ -47,22 +48,16 @@ def mock_assets(self):
                     }
 
     @contextmanager
-    def patch_filtered_sftp(self, record, mocks=None):
+    def patch_filtered_sftp(self, record):
         """ It patches filtered record and provides a mock """
-        if mocks is None:
-            mocks = ["sftp_connection"]
-        mocks = {m: mock.DEFAULT for m in mocks}
-        with mock.patch.object(record, "filtered") as filtered:
-            with mock.patch.object(record, "backup_log"):
-                with mock.patch.multiple(record, **mocks):
-                    filtered.side_effect = [], [record]
+        with patch("%s.filtered" % class_name) as filtered:
+            filtered.side_effect = [], [record]
+            with patch("%s.backup_log" % class_name):
+                with patch("%s.sftp_connection" % class_name):
                     yield filtered
 
     def new_record(self, method="sftp"):
-        vals = {
-            "name": u"Têst backup",
-            "method": method,
-        }
+        vals = {"name": u"Têst backup", "method": method, "days_to_keep": 1}
         if method == "sftp":
             vals.update(
                 {
@@ -93,7 +88,7 @@ def test_compute_name_sftp(self):
     def test_check_folder(self):
         """ It should not allow recursive backups """
         rec_id = self.new_record("local")
-        with self.assertRaises(exceptions.ValidationError):
+        with self.assertRaises(UserError):
             rec_id.write(
                 {
                     "folder": "%s/another/path"
@@ -101,22 +96,24 @@ def test_check_folder(self):
                 }
             )
 
-    @mock.patch("%s._" % model)
+    @patch("%s._" % model)
     def test_action_sftp_test_connection_success(self, _):
         """ It should raise connection succeeded warning """
-        rec_id = self.new_record()
-        with mock.patch.object(rec_id, "sftp_connection"):
-            with self.assertRaises(exceptions.Warning):
+        with patch("%s.sftp_connection" % class_name, new_callable=PropertyMock):
+            rec_id = self.new_record()
+            with self.assertRaises(UserError):
                 rec_id.action_sftp_test_connection()
-            _.assert_called_once_with("Connection Test Succeeded!")
+        _.assert_called_once_with("Connection Test Succeeded!")
 
-    @mock.patch("%s._" % model)
+    @patch("%s._" % model)
     def test_action_sftp_test_connection_fail(self, _):
         """ It should raise connection fail warning """
-        rec_id = self.new_record()
-        with mock.patch.object(rec_id, "sftp_connection") as conn:
-            conn().__enter__.side_effect = TestConnectionException
-            with self.assertRaises(exceptions.Warning):
+        with patch(
+            "%s.sftp_connection" % class_name, new_callable=PropertyMock
+        ) as conn:
+            rec_id = self.new_record()
+            conn().side_effect = TestConnectionException
+            with self.assertRaises(UserError):
                 rec_id.action_sftp_test_connection()
             _.assert_called_once_with("Connection Test Failed!")
 
@@ -131,10 +128,11 @@ def test_action_backup_local(self):
     def test_action_backup_local_cleanup(self):
         """ Backup local database and cleanup old databases """
         rec_id = self.new_record("local")
-        rec_id.days_to_keep = 1
         old_date = datetime.now() - timedelta(days=3)
         filename = rec_id.filename(old_date)
-        rec_id.action_backup()
+        with patch("%s.datetime" % model) as mock_date:
+            mock_date.now.return_value = old_date
+            rec_id.action_backup()
         generated_backup = [f for f in os.listdir(rec_id.folder) if f >= filename]
         self.assertEqual(2, len(generated_backup))
 
@@ -148,45 +146,48 @@ def test_action_backup_sftp_mkdirs(self):
         rec_id = self.new_record()
         with self.mock_assets():
             with self.patch_filtered_sftp(rec_id):
-                conn = rec_id.sftp_connection().__enter__()
-                rec_id.action_backup()
-                conn.makedirs.assert_called_once_with(rec_id.folder)
+                with patch("%s.cleanup" % class_name, new_callable=PropertyMock):
+                    conn = rec_id.sftp_connection().__enter__()
+                    rec_id.action_backup()
+                    conn.makedirs.assert_called_once_with(rec_id.folder)
 
     def test_action_backup_sftp_mkdirs_conn_exception(self):
         """ It should guard from ConnectionException on remote.mkdirs """
         rec_id = self.new_record()
         with self.mock_assets():
             with self.patch_filtered_sftp(rec_id):
-                conn = rec_id.sftp_connection().__enter__()
-                conn.makedirs.side_effect = TestConnectionException
-                rec_id.action_backup()
-                # No error was raised, test pass
-                self.assertTrue(True)
+                with patch("%s.cleanup" % class_name, new_callable=PropertyMock):
+                    conn = rec_id.sftp_connection().__enter__()
+                    conn.makedirs.side_effect = TestConnectionException
+                    rec_id.action_backup()
+                    # No error was raised, test pass
+                    self.assertTrue(True)
 
     def test_action_backup_sftp_remote_open(self):
         """ It should open remote file w/ proper args """
         rec_id = self.new_record()
         with self.mock_assets() as assets:
             with self.patch_filtered_sftp(rec_id):
-                conn = rec_id.sftp_connection().__enter__()
-                rec_id.action_backup()
-                conn.open.assert_called_once_with(assets["os"].path.join(), "wb")
+                with patch("%s.cleanup" % class_name, new_callable=PropertyMock):
+                    conn = rec_id.sftp_connection().__enter__()
+                    rec_id.action_backup()
+                    conn.open.assert_called_once_with(assets["os"].path.join(), "wb")
 
     def test_action_backup_all_search(self):
         """ It should search all records """
         rec_id = self.new_record()
-        with mock.patch.object(rec_id, "search"):
+        with patch("%s.search" % class_name, new_callable=PropertyMock):
             rec_id.action_backup_all()
             rec_id.search.assert_called_once_with([])
 
     def test_action_backup_all_return(self):
         """ It should return result of backup operation """
         rec_id = self.new_record()
-        with mock.patch.object(rec_id, "search"):
+        with patch("%s.search" % class_name, new_callable=PropertyMock):
             res = rec_id.action_backup_all()
             self.assertEqual(rec_id.search().action_backup(), res)
 
-    @mock.patch("%s.pysftp" % model)
+    @patch("%s.pysftp" % model)
     def test_sftp_connection_init_passwd(self, pysftp):
         """ It should initiate SFTP connection w/ proper args and pass """
         rec_id = self.new_record()
@@ -198,7 +199,7 @@ def test_sftp_connection_init_passwd(self, pysftp):
             password=rec_id.sftp_password,
         )
 
-    @mock.patch("%s.pysftp" % model)
+    @patch("%s.pysftp" % model)
     def test_sftp_connection_init_key(self, pysftp):
         """ It should initiate SFTP connection w/ proper args and key """
         rec_id = self.new_record()
@@ -212,7 +213,7 @@ def test_sftp_connection_init_key(self, pysftp):
             private_key_pass=rec_id.sftp_password,
         )
 
-    @mock.patch("%s.pysftp" % model)
+    @patch("%s.pysftp" % model)
     def test_sftp_connection_return(self, pysftp):
         """ It should return new sftp connection """
         rec_id = self.new_record()

From 9bdbf3c3d3d5cf95f593bab2b7c0c93b1c715c29 Mon Sep 17 00:00:00 2001
From: Sergio Zanchetta <primes2h@gmail.com>
Date: Wed, 22 Dec 2021 13:56:56 +0000
Subject: [PATCH 27/52] Translated using Weblate (Italian)

Currently translated at 80.2% (69 of 86 strings)

Translation: server-tools-14.0/server-tools-14.0-auto_backup
Translate-URL: https://translation.odoo-community.org/projects/server-tools-14-0/server-tools-14-0-auto_backup/it/

Translated using Weblate (Italian)

Currently translated at 86.0% (74 of 86 strings)

Translation: server-tools-14.0/server-tools-14.0-auto_backup
Translate-URL: https://translation.odoo-community.org/projects/server-tools-14-0/server-tools-14-0-auto_backup/it/

Translated using Weblate (Italian)

Currently translated at 89.5% (77 of 86 strings)

Translation: server-tools-14.0/server-tools-14.0-auto_backup
Translate-URL: https://translation.odoo-community.org/projects/server-tools-14-0/server-tools-14-0-auto_backup/it/

Translated using Weblate (Italian)

Currently translated at 94.1% (81 of 86 strings)

Translation: server-tools-14.0/server-tools-14.0-auto_backup
Translate-URL: https://translation.odoo-community.org/projects/server-tools-14-0/server-tools-14-0-auto_backup/it/
---
 auto_backup/i18n/it.po | 141 ++++++++++++++++++++---------------------
 1 file changed, 70 insertions(+), 71 deletions(-)

diff --git a/auto_backup/i18n/it.po b/auto_backup/i18n/it.po
index d8090eabf56..ec4733f17b6 100644
--- a/auto_backup/i18n/it.po
+++ b/auto_backup/i18n/it.po
@@ -9,14 +9,15 @@ msgstr ""
 "Project-Id-Version: Odoo Server 11.0\n"
 "Report-Msgid-Bugs-To: \n"
 "POT-Creation-Date: 2018-03-03 10:08+0000\n"
-"PO-Revision-Date: 2018-03-03 10:08+0000\n"
-"Last-Translator: OCA Transbot <transbot@odoo-community.org>, 2018\n"
+"PO-Revision-Date: 2022-01-01 23:39+0000\n"
+"Last-Translator: Sergio Zanchetta <primes2h@gmail.com>\n"
 "Language-Team: Italian (https://www.transifex.com/oca/teams/23907/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"
+"Plural-Forms: nplurals=2; plural=n != 1;\n"
+"X-Generator: Weblate 4.3.2\n"
 
 #. module: auto_backup
 #: model_terms:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
@@ -26,17 +27,17 @@ msgstr "/home/odoo/.ssh/id_rsa"
 #. module: auto_backup
 #: model:ir.model.fields,help:auto_backup.field_db_backup__folder
 msgid "Absolute path for storing the backups"
-msgstr "Percorso assoluto per il salvataggio del DB"
+msgstr "Percorso assoluto per archiviare i backup"
 
 #. module: auto_backup
 #: model:ir.model.fields,field_description:auto_backup.field_db_backup__message_needaction
 msgid "Action Needed"
-msgstr ""
+msgstr "Azione richiesta"
 
 #. module: auto_backup
 #: model:ir.model.fields,field_description:auto_backup.field_db_backup__message_attachment_count
 msgid "Attachment Count"
-msgstr ""
+msgstr "Numero allegati"
 
 #. module: auto_backup
 #: model:ir.actions.act_window,name:auto_backup.action_backup_conf_form
@@ -47,30 +48,29 @@ msgstr "Backup automatici"
 #. module: auto_backup
 #: model_terms:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
 msgid "Automatic backups of the database can be scheduled as follows:"
-msgstr "Il backup automatico del DB è pianificato come segue:"
+msgstr "Il backup automatico del database può essere programmato come segue:"
 
 #. module: auto_backup
 #: model:mail.message.subtype,name:auto_backup.mail_message_subtype_failure
 msgid "Backup Failed"
-msgstr "Backup Fallito"
+msgstr "Backup non riuscito"
 
 #. module: auto_backup
 #: model:ir.model.fields,field_description:auto_backup.field_db_backup__backup_format
-#, fuzzy
 msgid "Backup Format"
-msgstr "Backup Fallito"
+msgstr "Formato backup"
 
 #. module: auto_backup
 #: model:ir.actions.server,name:auto_backup.ir_cron_backup_scheduler_0_ir_actions_server
 #: model:ir.cron,cron_name:auto_backup.ir_cron_backup_scheduler_0
 #: model:ir.cron,name:auto_backup.ir_cron_backup_scheduler_0
 msgid "Backup Scheduler"
-msgstr ""
+msgstr "Pianificatore backup"
 
 #. module: auto_backup
 #: model:mail.message.subtype,name:auto_backup.mail_message_subtype_success
 msgid "Backup Successful"
-msgstr "Backup Riuscito"
+msgstr "Backup riuscito"
 
 #. module: auto_backup
 #: model:ir.model.fields,help:auto_backup.field_db_backup__days_to_keep
@@ -78,13 +78,13 @@ msgid ""
 "Backups older than this will be deleted automatically. Set 0 to disable "
 "autodeletion."
 msgstr ""
-"I Backup antecedenti questo numero di giorni saranno eliminati "
-"automaticamente. Impostare a 0 per disattivare l'eliminazione automatica."
+"I backup più vecchi verranno eliminati automaticamente. Per disattivare "
+"l'eliminazione automatica impostare a 0."
 
 #. module: auto_backup
 #: model_terms:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
 msgid "Basic backup configuration"
-msgstr "Configurazione di base del Backup"
+msgstr "Configurazione base del backup"
 
 #. module: auto_backup
 #: model:ir.model.constraint,message:auto_backup.constraint_db_backup_name_unique
@@ -103,32 +103,31 @@ msgstr ""
 
 #. module: auto_backup
 #: model:ir.model.fields,help:auto_backup.field_db_backup__backup_format
-#, fuzzy
 msgid "Choose the format for this backup."
-msgstr "Scegliere il tipo di archiviazione per questo metodo di backup. "
+msgstr "Scegliere il formato del backup."
 
 #. module: auto_backup
 #: model:ir.model.fields,help:auto_backup.field_db_backup__method
 msgid "Choose the storage method for this backup."
-msgstr "Scegliere il tipo di archiviazione per questo metodo di backup. "
+msgstr "Scegliere il metodo di archiviazione per il backup."
 
 #. module: auto_backup
 #: code:addons/auto_backup/models/db_backup.py:0
 #, python-format
 msgid "Cleanup of old database backups failed."
-msgstr "Eliminazione dei vecchi backup di database non riuscita."
+msgstr "Pulizia dei vecchi backup del database non riuscita."
 
 #. module: auto_backup
 #: code:addons/auto_backup/models/db_backup.py:0
 #, python-format
 msgid "Connection Test Failed!"
-msgstr "Test connessione Fallito!"
+msgstr "Prova di connessione non riuscita."
 
 #. module: auto_backup
 #: code:addons/auto_backup/models/db_backup.py:0
 #, python-format
 msgid "Connection Test Succeeded!"
-msgstr "Test connessione avvenuto con successo!"
+msgstr "Prova di connessione superata."
 
 #. module: auto_backup
 #: model:ir.model.fields,field_description:auto_backup.field_db_backup__count_pending_changeset_changes
@@ -153,31 +152,31 @@ msgstr "Creato il"
 #. module: auto_backup
 #: model:ir.model,name:auto_backup.model_db_backup
 msgid "Database Backup"
-msgstr ""
+msgstr "Backup database"
 
 #. module: auto_backup
 #: code:addons/auto_backup/models/db_backup.py:0
 #: model:mail.message.subtype,description:auto_backup.mail_message_subtype_failure
 #, python-format
 msgid "Database backup failed."
-msgstr "Backup del Database non riuscito."
+msgstr "Backup del database non riuscito."
 
 #. module: auto_backup
 #: code:addons/auto_backup/models/db_backup.py:0
 #: model:mail.message.subtype,description:auto_backup.mail_message_subtype_success
 #, python-format
 msgid "Database backup succeeded."
-msgstr "Backup del Database riuscito."
+msgstr "Backup del database riuscito."
 
 #. module: auto_backup
 #: model:ir.model.fields,field_description:auto_backup.field_db_backup__days_to_keep
 msgid "Days To Keep"
-msgstr ""
+msgstr "Giorni di conservazione"
 
 #. module: auto_backup
 #: model:ir.model.fields,field_description:auto_backup.field_db_backup__display_name
 msgid "Display Name"
-msgstr "Nome da visualizzare"
+msgstr "Nome visualizzato"
 
 #. module: auto_backup
 #: code:addons/auto_backup/models/db_backup.py:0
@@ -185,18 +184,18 @@ msgstr "Nome da visualizzare"
 msgid ""
 "Do not save backups on your filestore, or you will backup your backups too!"
 msgstr ""
-"Non salvare i backup nel proprio filestore altrimenti verrà eseguita una "
-"copia di backup anche dei propri backup!"
+"Non salvare i backup nel filestore altrimenti verrà anche effettuato un "
+"backup degli stessi backup."
 
 #. module: auto_backup
 #: model_terms:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
 msgid "Execute backup"
-msgstr ""
+msgstr "Esegui backup"
 
 #. module: auto_backup
 #: model:ir.actions.server,name:auto_backup.action_server_backup
 msgid "Execute backup(s)"
-msgstr "Esegui backup(s)"
+msgstr "Esegui backup"
 
 #. module: auto_backup
 #: model:ir.model.fields,field_description:auto_backup.field_db_backup__folder
@@ -206,24 +205,24 @@ msgstr "Cartella"
 #. module: auto_backup
 #: model:ir.model.fields,field_description:auto_backup.field_db_backup__message_follower_ids
 msgid "Followers"
-msgstr ""
+msgstr "Chi sta seguendo"
 
 #. module: auto_backup
 #: model:ir.model.fields,field_description:auto_backup.field_db_backup__message_channel_ids
 msgid "Followers (Channels)"
-msgstr ""
+msgstr "Chi sta seguendo (canali)"
 
 #. module: auto_backup
 #: model:ir.model.fields,field_description:auto_backup.field_db_backup__message_partner_ids
 msgid "Followers (Partners)"
-msgstr ""
+msgstr "Chi sta seguendo (partner)"
 
 #. module: auto_backup
 #: model_terms:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
 msgid "Go to Settings / Technical / Automation / Scheduled Actions."
 msgstr ""
-"Andare in  Configurazione / Funzioni Tecniche / Automazione / Azioni "
-"Programmate."
+"Andare in Configurazione / Funzioni Tecniche / Automazione / Azioni "
+"programmate."
 
 #. module: auto_backup
 #: model_terms:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
@@ -233,7 +232,7 @@ msgstr "Aiuto"
 #. module: auto_backup
 #: model:ir.model.constraint,message:auto_backup.constraint_db_backup_days_to_keep_positive
 msgid "I cannot remove backups from the future. Ask Doc for that."
-msgstr "Impossibile rimuovere backup dal futuro. Cercare nella Documentazione."
+msgstr "Impossibile rimuovere backup dal futuro, per quello chiedere a Doc."
 
 #. module: auto_backup
 #: model:ir.model.fields,field_description:auto_backup.field_db_backup__id
@@ -244,18 +243,18 @@ msgstr "ID"
 #: model:ir.model.fields,help:auto_backup.field_db_backup__message_needaction
 #: model:ir.model.fields,help:auto_backup.field_db_backup__message_unread
 msgid "If checked, new messages require your attention."
-msgstr ""
+msgstr "Se selezionata, nuovi messaggi richiedono attenzione."
 
 #. module: auto_backup
 #: model:ir.model.fields,help:auto_backup.field_db_backup__message_has_error
 #: model:ir.model.fields,help:auto_backup.field_db_backup__message_has_sms_error
 msgid "If checked, some messages have a delivery error."
-msgstr ""
+msgstr "Se selezionata, alcuni messaggi presentano un errore di consegna."
 
 #. module: auto_backup
 #: model:ir.model.fields,field_description:auto_backup.field_db_backup__message_is_follower
 msgid "Is Follower"
-msgstr ""
+msgstr "Sta seguendo"
 
 #. module: auto_backup
 #: model:ir.model.fields,field_description:auto_backup.field_db_backup____last_update
@@ -280,17 +279,17 @@ msgstr "Disco locale"
 #. module: auto_backup
 #: model:ir.model.fields,field_description:auto_backup.field_db_backup__message_main_attachment_id
 msgid "Main Attachment"
-msgstr ""
+msgstr "Allegato principale"
 
 #. module: auto_backup
 #: model:ir.model.fields,field_description:auto_backup.field_db_backup__message_has_error
 msgid "Message Delivery error"
-msgstr ""
+msgstr "Errore di consegna messaggio"
 
 #. module: auto_backup
 #: model:ir.model.fields,field_description:auto_backup.field_db_backup__message_ids
 msgid "Messages"
-msgstr ""
+msgstr "Messaggi"
 
 #. module: auto_backup
 #: model:ir.model.fields,field_description:auto_backup.field_db_backup__method
@@ -305,27 +304,27 @@ msgstr "Nome"
 #. module: auto_backup
 #: model:ir.model.fields,field_description:auto_backup.field_db_backup__message_needaction_counter
 msgid "Number of Actions"
-msgstr ""
+msgstr "Numero di azioni"
 
 #. module: auto_backup
 #: model:ir.model.fields,field_description:auto_backup.field_db_backup__message_has_error_counter
 msgid "Number of errors"
-msgstr ""
+msgstr "Numero di errori"
 
 #. module: auto_backup
 #: model:ir.model.fields,help:auto_backup.field_db_backup__message_needaction_counter
 msgid "Number of messages which requires an action"
-msgstr ""
+msgstr "Numero di messaggi che richiedono un'azione"
 
 #. module: auto_backup
 #: model:ir.model.fields,help:auto_backup.field_db_backup__message_has_error_counter
 msgid "Number of messages with delivery error"
-msgstr ""
+msgstr "Numero di messaggi con errore di consegna"
 
 #. module: auto_backup
 #: model:ir.model.fields,help:auto_backup.field_db_backup__message_unread_counter
 msgid "Number of unread messages"
-msgstr ""
+msgstr "Numero di messaggi non letti"
 
 #. module: auto_backup
 #: model:ir.model.fields,help:auto_backup.field_db_backup__sftp_private_key
@@ -333,8 +332,8 @@ msgid ""
 "Path to the private key file. Only the Odoo user should have read "
 "permissions for that file."
 msgstr ""
-"Percorso al file della chiave privata. Soltanto l'utente Odoo dovrebbe avere "
-"il permesso in lettura di questo file."
+"Percorso file della chiave privata. Il permesso in lettura per il file deve "
+"essere assegnato solo all'utente Odoo."
 
 #. module: auto_backup
 #: model:ir.model.fields,field_description:auto_backup.field_db_backup__sftp_private_key
@@ -369,42 +368,41 @@ msgstr "Impostazioni SFTP"
 #. module: auto_backup
 #: model:ir.model.fields,field_description:auto_backup.field_db_backup__message_has_sms_error
 msgid "SMS Delivery error"
-msgstr ""
+msgstr "Errore di consegna SMS"
 
 #. module: auto_backup
 #: model_terms:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
 msgid "Search the action named 'Backup scheduler'."
-msgstr "Cerca l'azione denominata 'Pianificazione del backup'."
+msgstr "Cercare l'azione chiamata \"Pianificazione backup\"."
 
 #. module: auto_backup
 #: model_terms:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
 msgid ""
 "Set the scheduler to active and fill in how often you want backups generated."
 msgstr ""
-"Impostare lo scheduler per attivare e compilare la frequenza con cui si "
-"desidera generare il backup."
+"Impostare il pianificatore su attivo e inserire la frequenza di generazione "
+"dei backup desiderata."
 
 #. module: auto_backup
 #: model:ir.model.fields,field_description:auto_backup.field_db_backup__smart_search
 msgid "Smart Search"
-msgstr ""
+msgstr "Ricerca intelligente"
 
 #. module: auto_backup
 #: model:ir.model.fields,help:auto_backup.field_db_backup__name
 msgid "Summary of this backup process"
-msgstr "Riepilogo di questo processo di backup"
+msgstr "Riepilogo del processo di backup"
 
 #. module: auto_backup
 #: model_terms:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
 msgid "Test SFTP Connection"
-msgstr "Prova Connessione SFTP"
+msgstr "Prova connessione SFTP"
 
 #. module: auto_backup
 #: model:ir.model.fields,help:auto_backup.field_db_backup__sftp_host
 msgid ""
 "The host name or IP address from your remote server. For example 192.168.0.1"
-msgstr ""
-"Il nome host o l'indirizzo IP del tuo server remoto. Per esempio 192.168.0.1"
+msgstr "Nome host o indirizzo IP del server remoto. Ad esempio 192.168.0.1"
 
 #. module: auto_backup
 #: model:ir.model.fields,help:auto_backup.field_db_backup__sftp_password
@@ -412,13 +410,13 @@ msgid ""
 "The password for the SFTP connection. If you specify a private key file, "
 "then this is the password to decrypt it."
 msgstr ""
-"La password per la connessione SFTP. Se viene specificato un file per la "
-"chiave privata, allora questo è la password per decodificarla."
+"Password per la connessione SFTP. Se viene specificato un file per la chiave "
+"privata, corrisponde alla password per decodificarla."
 
 #. module: auto_backup
 #: model:ir.model.fields,help:auto_backup.field_db_backup__sftp_port
 msgid "The port on the FTP server that accepts SSH/SFTP calls."
-msgstr "La porta sul server FTP che accetta chiamate SSH/SFTP."
+msgstr "Porta del server FTP che accetta chiamate SSH/SFTP."
 
 #. module: auto_backup
 #: model:ir.model.fields,help:auto_backup.field_db_backup__sftp_user
@@ -426,17 +424,18 @@ msgid ""
 "The username where the SFTP connection should be made with. This is the user "
 "on the external server."
 msgstr ""
-"Il nome utente per la connessione SFTP. Questo è l'utente sul server esterno."
+"Nome utente con il quale deve essere creata la connessione SFTP. Corrisponde "
+"all'utente sul server esterno."
 
 #. module: auto_backup
 #: model:ir.model.fields,field_description:auto_backup.field_db_backup__message_unread
 msgid "Unread Messages"
-msgstr ""
+msgstr "Messaggi non letti"
 
 #. module: auto_backup
 #: model:ir.model.fields,field_description:auto_backup.field_db_backup__message_unread_counter
 msgid "Unread Messages Counter"
-msgstr ""
+msgstr "Numero messaggi non letti"
 
 #. module: auto_backup
 #: model_terms:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
@@ -444,8 +443,8 @@ msgid ""
 "Use SFTP with caution! This writes files to external servers under the path "
 "you specify."
 msgstr ""
-"Usare SFTP con cautela! Questa modalità scrive file nel percorso specificato "
-"su server esterni."
+"Usare SFTP con cautela, nei server esterni vengono scritti file nel percorso "
+"specificato."
 
 #. module: auto_backup
 #: model:ir.model.fields,field_description:auto_backup.field_db_backup__user_can_see_changeset
@@ -455,7 +454,7 @@ msgstr ""
 #. module: auto_backup
 #: model:ir.model.fields,field_description:auto_backup.field_db_backup__sftp_user
 msgid "Username in the SFTP Server"
-msgstr "Nome utente presso il Server SFTP"
+msgstr "Nome utente nel server SFTP"
 
 #. module: auto_backup
 #: model_terms:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
@@ -465,12 +464,12 @@ msgstr "Avviso:"
 #. module: auto_backup
 #: model:ir.model.fields,field_description:auto_backup.field_db_backup__website_message_ids
 msgid "Website Messages"
-msgstr ""
+msgstr "Messaggi sito web"
 
 #. module: auto_backup
 #: model:ir.model.fields,help:auto_backup.field_db_backup__website_message_ids
 msgid "Website communication history"
-msgstr ""
+msgstr "Cronologia comunicazioni sito web"
 
 #. module: auto_backup
 #: model_terms:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
@@ -480,7 +479,7 @@ msgstr "john"
 #. module: auto_backup
 #: model:ir.model.fields.selection,name:auto_backup.selection__db_backup__backup_format__dump
 msgid "pg_dump custom format (without filestore)"
-msgstr ""
+msgstr "Formato personalizzato pg_dump (senza filestore)"
 
 #. module: auto_backup
 #: model_terms:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
@@ -490,4 +489,4 @@ msgstr "sftp.example.com"
 #. module: auto_backup
 #: model:ir.model.fields.selection,name:auto_backup.selection__db_backup__backup_format__zip
 msgid "zip (includes filestore)"
-msgstr ""
+msgstr "zip (include filestore)"

From 816f2a59dc6a682e050b437cba07db24a6745521 Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?Dept=2E=20T=C3=A9cnico?= <tecnico@extrememicro.es>
Date: Mon, 14 Feb 2022 09:15:27 +0000
Subject: [PATCH 28/52] Translated using Weblate (Catalan)

Currently translated at 9.3% (8 of 86 strings)

Translation: server-tools-14.0/server-tools-14.0-auto_backup
Translate-URL: https://translation.odoo-community.org/projects/server-tools-14-0/server-tools-14-0-auto_backup/ca/
---
 auto_backup/i18n/ca.po | 10 ++++++----
 1 file changed, 6 insertions(+), 4 deletions(-)

diff --git a/auto_backup/i18n/ca.po b/auto_backup/i18n/ca.po
index a6a0279b118..e011cfe1f16 100644
--- a/auto_backup/i18n/ca.po
+++ b/auto_backup/i18n/ca.po
@@ -9,19 +9,21 @@ msgstr ""
 "Project-Id-Version: Odoo Server 11.0\n"
 "Report-Msgid-Bugs-To: \n"
 "POT-Creation-Date: 2018-03-03 10:08+0000\n"
-"PO-Revision-Date: 2018-03-03 10:08+0000\n"
-"Last-Translator: OCA Transbot <transbot@odoo-community.org>, 2018\n"
+"PO-Revision-Date: 2022-02-14 11:16+0000\n"
+"Last-Translator: Dept. Técnico <tecnico@extrememicro.es>\n"
 "Language-Team: Catalan (https://www.transifex.com/oca/teams/23907/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"
+"Plural-Forms: nplurals=2; plural=n != 1;\n"
+"X-Generator: Weblate 4.3.2\n"
 
 #. module: auto_backup
 #: model_terms:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+#, fuzzy
 msgid "/home/odoo/.ssh/id_rsa"
-msgstr ""
+msgstr "/home/odoo/.ssh/id_rsa"
 
 #. module: auto_backup
 #: model:ir.model.fields,help:auto_backup.field_db_backup__folder

From 3b3936c9ca176c8f931a77aeb3453d9503c3e157 Mon Sep 17 00:00:00 2001
From: Ignacio Buioli <ibuioli@gmail.com>
Date: Thu, 17 Mar 2022 01:40:47 +0000
Subject: [PATCH 29/52] Translated using Weblate (Spanish (Argentina))

Currently translated at 100.0% (86 of 86 strings)

Translation: server-tools-14.0/server-tools-14.0-auto_backup
Translate-URL: https://translation.odoo-community.org/projects/server-tools-14-0/server-tools-14-0-auto_backup/es_AR/
---
 auto_backup/i18n/es_AR.po | 166 +++++++++++++++++++++-----------------
 1 file changed, 93 insertions(+), 73 deletions(-)

diff --git a/auto_backup/i18n/es_AR.po b/auto_backup/i18n/es_AR.po
index a1baa8ac917..3054dda53df 100644
--- a/auto_backup/i18n/es_AR.po
+++ b/auto_backup/i18n/es_AR.po
@@ -9,68 +9,71 @@ msgstr ""
 "Project-Id-Version: Odoo Server 10.0\n"
 "Report-Msgid-Bugs-To: \n"
 "POT-Creation-Date: 2017-02-18 02:29+0000\n"
-"PO-Revision-Date: 2017-02-18 02:29+0000\n"
-"Last-Translator: OCA Transbot <transbot@odoo-community.org>, 2016\n"
-"Language-Team: Spanish (Argentina) (https://www.transifex.com/oca/"
-"teams/23907/es_AR/)\n"
+"PO-Revision-Date: 2022-03-17 04:17+0000\n"
+"Last-Translator: Ignacio Buioli <ibuioli@gmail.com>\n"
+"Language-Team: Spanish (Argentina) (https://www.transifex.com/oca/teams/"
+"23907/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"
+"Plural-Forms: nplurals=2; plural=n != 1;\n"
+"X-Generator: Weblate 4.3.2\n"
 
 #. module: auto_backup
 #: model_terms:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
 msgid "/home/odoo/.ssh/id_rsa"
-msgstr ""
+msgstr "/home/odoo/.ssh/id_rsa"
 
 #. module: auto_backup
 #: model:ir.model.fields,help:auto_backup.field_db_backup__folder
 msgid "Absolute path for storing the backups"
-msgstr ""
+msgstr "Ruta absoluta para almacenar las Copias de Seguridad"
 
 #. module: auto_backup
 #: model:ir.model.fields,field_description:auto_backup.field_db_backup__message_needaction
 msgid "Action Needed"
-msgstr ""
+msgstr "Acción Requerida"
 
 #. module: auto_backup
 #: model:ir.model.fields,field_description:auto_backup.field_db_backup__message_attachment_count
 msgid "Attachment Count"
-msgstr ""
+msgstr "Cuenta de Adjuntos"
 
 #. module: auto_backup
 #: model:ir.actions.act_window,name:auto_backup.action_backup_conf_form
 #: model:ir.ui.menu,name:auto_backup.backup_conf_menu
 msgid "Automated Backups"
-msgstr ""
+msgstr "Copias de Seguridad Automatizadas"
 
 #. module: auto_backup
 #: model_terms:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
 msgid "Automatic backups of the database can be scheduled as follows:"
 msgstr ""
+"Las copias de seguridad automática de la base de datos puede planificarse de "
+"la siguiente manera:"
 
 #. module: auto_backup
 #: model:mail.message.subtype,name:auto_backup.mail_message_subtype_failure
 msgid "Backup Failed"
-msgstr ""
+msgstr "Copia de Seguridad Falló"
 
 #. module: auto_backup
 #: model:ir.model.fields,field_description:auto_backup.field_db_backup__backup_format
 msgid "Backup Format"
-msgstr ""
+msgstr "Formato de Copia de Seguridad"
 
 #. module: auto_backup
 #: model:ir.actions.server,name:auto_backup.ir_cron_backup_scheduler_0_ir_actions_server
 #: model:ir.cron,cron_name:auto_backup.ir_cron_backup_scheduler_0
 #: model:ir.cron,name:auto_backup.ir_cron_backup_scheduler_0
 msgid "Backup Scheduler"
-msgstr ""
+msgstr "Planificador de Copia de Seguridad"
 
 #. module: auto_backup
 #: model:mail.message.subtype,name:auto_backup.mail_message_subtype_success
 msgid "Backup Successful"
-msgstr ""
+msgstr "Copia de Seguridad Satisfactoria"
 
 #. module: auto_backup
 #: model:ir.model.fields,help:auto_backup.field_db_backup__days_to_keep
@@ -78,64 +81,66 @@ msgid ""
 "Backups older than this will be deleted automatically. Set 0 to disable "
 "autodeletion."
 msgstr ""
+"Las Copias de Seguridad antiguas se eliminarán automáticamente. Coloque 0 "
+"para deshabilitar la eliminación automática."
 
 #. module: auto_backup
 #: model_terms:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
 msgid "Basic backup configuration"
-msgstr ""
+msgstr "Configuración básica de la copia de seguridad"
 
 #. module: auto_backup
 #: model:ir.model.constraint,message:auto_backup.constraint_db_backup_name_unique
 msgid "Cannot duplicate a configuration."
-msgstr ""
+msgstr "No se puede duplicar una configuración."
 
 #. module: auto_backup
 #: model:ir.model.fields,field_description:auto_backup.field_db_backup__changeset_change_ids
 msgid "Changeset Changes"
-msgstr ""
+msgstr "Cambios en el Conjunto de Cambios"
 
 #. module: auto_backup
 #: model:ir.model.fields,field_description:auto_backup.field_db_backup__changeset_ids
 msgid "Changesets"
-msgstr ""
+msgstr "Conjunto de Cambios"
 
 #. module: auto_backup
 #: model:ir.model.fields,help:auto_backup.field_db_backup__backup_format
 msgid "Choose the format for this backup."
-msgstr ""
+msgstr "Elija el formato para esta copia de seguridad."
 
 #. module: auto_backup
 #: model:ir.model.fields,help:auto_backup.field_db_backup__method
 msgid "Choose the storage method for this backup."
-msgstr ""
+msgstr "Elija el método de almacenamiento para esta copia de seguridad."
 
 #. module: auto_backup
 #: code:addons/auto_backup/models/db_backup.py:0
 #, python-format
 msgid "Cleanup of old database backups failed."
-msgstr ""
+msgstr "La limpieza de una base de datos antigua falló."
 
 #. module: auto_backup
 #: code:addons/auto_backup/models/db_backup.py:0
 #, python-format
 msgid "Connection Test Failed!"
-msgstr ""
+msgstr "¡La Prueba de Conexión Falló!"
 
 #. module: auto_backup
 #: code:addons/auto_backup/models/db_backup.py:0
 #, python-format
 msgid "Connection Test Succeeded!"
-msgstr ""
+msgstr "¡Prueba de Conexión Exitosa!"
 
 #. module: auto_backup
 #: model:ir.model.fields,field_description:auto_backup.field_db_backup__count_pending_changeset_changes
 msgid "Count Pending Changeset Changes"
-msgstr ""
+msgstr "Contar los Cambios Pendientes del Conjunto de Cambios"
 
 #. module: auto_backup
 #: model:ir.model.fields,field_description:auto_backup.field_db_backup__count_pending_changesets
 msgid "Count Pending Changesets"
-msgstr ""
+msgstr "Contar Conjunto de Cambios Pendientes"
 
 #. module: auto_backup
 #: model:ir.model.fields,field_description:auto_backup.field_db_backup__create_uid
@@ -150,26 +155,26 @@ msgstr "Creado en"
 #. module: auto_backup
 #: model:ir.model,name:auto_backup.model_db_backup
 msgid "Database Backup"
-msgstr ""
+msgstr "Copia de Seguridad de la Base de Datos"
 
 #. module: auto_backup
 #: code:addons/auto_backup/models/db_backup.py:0
 #: model:mail.message.subtype,description:auto_backup.mail_message_subtype_failure
 #, python-format
 msgid "Database backup failed."
-msgstr ""
+msgstr "La copia de seguridad de la base de datos falló."
 
 #. module: auto_backup
 #: code:addons/auto_backup/models/db_backup.py:0
 #: model:mail.message.subtype,description:auto_backup.mail_message_subtype_success
 #, python-format
 msgid "Database backup succeeded."
-msgstr ""
+msgstr "La copia de seguridad de la base de datos se realizó exitosamente."
 
 #. module: auto_backup
 #: model:ir.model.fields,field_description:auto_backup.field_db_backup__days_to_keep
 msgid "Days To Keep"
-msgstr ""
+msgstr "Días a Mantener"
 
 #. module: auto_backup
 #: model:ir.model.fields,field_description:auto_backup.field_db_backup__display_name
@@ -182,51 +187,54 @@ msgstr "Mostrar Nombre"
 msgid ""
 "Do not save backups on your filestore, or you will backup your backups too!"
 msgstr ""
+"¡No almacene sus copias en su filestore, o hará copias de sus copias también!"
 
 #. module: auto_backup
 #: model_terms:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
 msgid "Execute backup"
-msgstr ""
+msgstr "Ejecutar Copia de Seguridad"
 
 #. module: auto_backup
 #: model:ir.actions.server,name:auto_backup.action_server_backup
 msgid "Execute backup(s)"
-msgstr ""
+msgstr "Ejecutar copia(s) de seguridad"
 
 #. module: auto_backup
 #: model:ir.model.fields,field_description:auto_backup.field_db_backup__folder
 msgid "Folder"
-msgstr ""
+msgstr "Carpeta"
 
 #. module: auto_backup
 #: model:ir.model.fields,field_description:auto_backup.field_db_backup__message_follower_ids
 msgid "Followers"
-msgstr ""
+msgstr "Seguidores"
 
 #. module: auto_backup
 #: model:ir.model.fields,field_description:auto_backup.field_db_backup__message_channel_ids
 msgid "Followers (Channels)"
-msgstr ""
+msgstr "Seguidores (Canales)"
 
 #. module: auto_backup
 #: model:ir.model.fields,field_description:auto_backup.field_db_backup__message_partner_ids
 msgid "Followers (Partners)"
-msgstr ""
+msgstr "Seguidores (Contactos)"
 
 #. module: auto_backup
 #: model_terms:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
 msgid "Go to Settings / Technical / Automation / Scheduled Actions."
-msgstr ""
+msgstr "Ir a Ajustes / Técnico / Automatización / Acciones planificadas."
 
 #. module: auto_backup
 #: model_terms:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
 msgid "Help"
-msgstr ""
+msgstr "Ayuda"
 
 #. module: auto_backup
 #: model:ir.model.constraint,message:auto_backup.constraint_db_backup_days_to_keep_positive
 msgid "I cannot remove backups from the future. Ask Doc for that."
 msgstr ""
+"No puedo eliminar una copia de seguridad del futuro. Pregunte a su Doctor "
+"por eso."
 
 #. module: auto_backup
 #: model:ir.model.fields,field_description:auto_backup.field_db_backup__id
@@ -237,18 +245,18 @@ msgstr "ID"
 #: model:ir.model.fields,help:auto_backup.field_db_backup__message_needaction
 #: model:ir.model.fields,help:auto_backup.field_db_backup__message_unread
 msgid "If checked, new messages require your attention."
-msgstr ""
+msgstr "Si está marcado, los nuevos mensajes requieren su atención."
 
 #. module: auto_backup
 #: model:ir.model.fields,help:auto_backup.field_db_backup__message_has_error
 #: model:ir.model.fields,help:auto_backup.field_db_backup__message_has_sms_error
 msgid "If checked, some messages have a delivery error."
-msgstr ""
+msgstr "Si está marcado, algunos mensajes tienen error de entrega."
 
 #. module: auto_backup
 #: model:ir.model.fields,field_description:auto_backup.field_db_backup__message_is_follower
 msgid "Is Follower"
-msgstr ""
+msgstr "Es Seguidor"
 
 #. module: auto_backup
 #: model:ir.model.fields,field_description:auto_backup.field_db_backup____last_update
@@ -268,27 +276,27 @@ msgstr "Última actualización el"
 #. module: auto_backup
 #: model:ir.model.fields.selection,name:auto_backup.selection__db_backup__method__local
 msgid "Local disk"
-msgstr ""
+msgstr "Disco local"
 
 #. module: auto_backup
 #: model:ir.model.fields,field_description:auto_backup.field_db_backup__message_main_attachment_id
 msgid "Main Attachment"
-msgstr ""
+msgstr "Adjunto Principal"
 
 #. module: auto_backup
 #: model:ir.model.fields,field_description:auto_backup.field_db_backup__message_has_error
 msgid "Message Delivery error"
-msgstr ""
+msgstr "Error de Entrega de Mensaje"
 
 #. module: auto_backup
 #: model:ir.model.fields,field_description:auto_backup.field_db_backup__message_ids
 msgid "Messages"
-msgstr ""
+msgstr "Mensajes"
 
 #. module: auto_backup
 #: model:ir.model.fields,field_description:auto_backup.field_db_backup__method
 msgid "Method"
-msgstr ""
+msgstr "Método"
 
 #. module: auto_backup
 #: model:ir.model.fields,field_description:auto_backup.field_db_backup__name
@@ -298,27 +306,27 @@ msgstr "Nombre"
 #. module: auto_backup
 #: model:ir.model.fields,field_description:auto_backup.field_db_backup__message_needaction_counter
 msgid "Number of Actions"
-msgstr ""
+msgstr "Número de Acciones"
 
 #. module: auto_backup
 #: model:ir.model.fields,field_description:auto_backup.field_db_backup__message_has_error_counter
 msgid "Number of errors"
-msgstr ""
+msgstr "Número de errores"
 
 #. module: auto_backup
 #: model:ir.model.fields,help:auto_backup.field_db_backup__message_needaction_counter
 msgid "Number of messages which requires an action"
-msgstr ""
+msgstr "Número de mensajes que requieren una acción"
 
 #. module: auto_backup
 #: model:ir.model.fields,help:auto_backup.field_db_backup__message_has_error_counter
 msgid "Number of messages with delivery error"
-msgstr ""
+msgstr "Número de mensajes con error de entrega"
 
 #. module: auto_backup
 #: model:ir.model.fields,help:auto_backup.field_db_backup__message_unread_counter
 msgid "Number of unread messages"
-msgstr ""
+msgstr "Número de mensajes sin leer"
 
 #. module: auto_backup
 #: model:ir.model.fields,help:auto_backup.field_db_backup__sftp_private_key
@@ -326,73 +334,79 @@ msgid ""
 "Path to the private key file. Only the Odoo user should have read "
 "permissions for that file."
 msgstr ""
+"Ruta al archivo de la private key. Solo el usuario Odoo debe poder tener "
+"permisos de lectura a ese archivo."
 
 #. module: auto_backup
 #: model:ir.model.fields,field_description:auto_backup.field_db_backup__sftp_private_key
 msgid "Private key location"
-msgstr ""
+msgstr "Ubicación de la Private Key"
 
 #. module: auto_backup
 #: model:ir.model.fields.selection,name:auto_backup.selection__db_backup__method__sftp
 msgid "Remote SFTP server"
-msgstr ""
+msgstr "Servidor SFTP remoto"
 
 #. module: auto_backup
 #: model:ir.model.fields,field_description:auto_backup.field_db_backup__sftp_password
 msgid "SFTP Password"
-msgstr ""
+msgstr "Contraseña SFTP"
 
 #. module: auto_backup
 #: model:ir.model.fields,field_description:auto_backup.field_db_backup__sftp_port
 msgid "SFTP Port"
-msgstr ""
+msgstr "Puerto SFTP"
 
 #. module: auto_backup
 #: model:ir.model.fields,field_description:auto_backup.field_db_backup__sftp_host
 msgid "SFTP Server"
-msgstr ""
+msgstr "Servidor SFTP"
 
 #. module: auto_backup
 #: model_terms:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
 msgid "SFTP Settings"
-msgstr ""
+msgstr "Configuración SFTP"
 
 #. module: auto_backup
 #: model:ir.model.fields,field_description:auto_backup.field_db_backup__message_has_sms_error
 msgid "SMS Delivery error"
-msgstr ""
+msgstr "Error de entrega de SMS"
 
 #. module: auto_backup
 #: model_terms:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
 msgid "Search the action named 'Backup scheduler'."
-msgstr ""
+msgstr "Busque la acción llamada 'Planificador de Copia de Seguridad'."
 
 #. module: auto_backup
 #: model_terms:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
 msgid ""
 "Set the scheduler to active and fill in how often you want backups generated."
 msgstr ""
+"Configure el planificador como activo y complete que tan frecuente quiere "
+"generar las copias de seguridad."
 
 #. module: auto_backup
 #: model:ir.model.fields,field_description:auto_backup.field_db_backup__smart_search
 msgid "Smart Search"
-msgstr ""
+msgstr "Búsqueda Inteligente"
 
 #. module: auto_backup
 #: model:ir.model.fields,help:auto_backup.field_db_backup__name
 msgid "Summary of this backup process"
-msgstr ""
+msgstr "Resumen del proceso de esta copia de seguridad"
 
 #. module: auto_backup
 #: model_terms:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
 msgid "Test SFTP Connection"
-msgstr ""
+msgstr "Probar Conexión SFTP"
 
 #. module: auto_backup
 #: model:ir.model.fields,help:auto_backup.field_db_backup__sftp_host
 msgid ""
 "The host name or IP address from your remote server. For example 192.168.0.1"
 msgstr ""
+"El nombre del host o la dirección IP de su servidor remoto. Por ejemplo 192."
+"168.0.1"
 
 #. module: auto_backup
 #: model:ir.model.fields,help:auto_backup.field_db_backup__sftp_password
@@ -400,11 +414,13 @@ msgid ""
 "The password for the SFTP connection. If you specify a private key file, "
 "then this is the password to decrypt it."
 msgstr ""
+"La contraseña para la conexión SFTP. Si especifica un archivo private key, "
+"entonces esta es la contraseña para desencriptarlo."
 
 #. module: auto_backup
 #: model:ir.model.fields,help:auto_backup.field_db_backup__sftp_port
 msgid "The port on the FTP server that accepts SSH/SFTP calls."
-msgstr ""
+msgstr "El puerto en el servidor FTP que acepta llamadas SSH/SFTP."
 
 #. module: auto_backup
 #: model:ir.model.fields,help:auto_backup.field_db_backup__sftp_user
@@ -412,16 +428,18 @@ msgid ""
 "The username where the SFTP connection should be made with. This is the user "
 "on the external server."
 msgstr ""
+"El nombre de usuario con el que se debe realizar la conexión SFTP. Este es "
+"el usuario en el servidor externo."
 
 #. module: auto_backup
 #: model:ir.model.fields,field_description:auto_backup.field_db_backup__message_unread
 msgid "Unread Messages"
-msgstr ""
+msgstr "Mensajes Sin Leer"
 
 #. module: auto_backup
 #: model:ir.model.fields,field_description:auto_backup.field_db_backup__message_unread_counter
 msgid "Unread Messages Counter"
-msgstr ""
+msgstr "Contador de Mensajes Sin Leer"
 
 #. module: auto_backup
 #: model_terms:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
@@ -429,48 +447,50 @@ msgid ""
 "Use SFTP with caution! This writes files to external servers under the path "
 "you specify."
 msgstr ""
+"¡Use SFTP con precaución! Esto escribe archivos en servidores externos en la "
+"ruta que especifique."
 
 #. module: auto_backup
 #: model:ir.model.fields,field_description:auto_backup.field_db_backup__user_can_see_changeset
 msgid "User Can See Changeset"
-msgstr ""
+msgstr "El usuario puede ver el Conjunto de Cambios"
 
 #. module: auto_backup
 #: model:ir.model.fields,field_description:auto_backup.field_db_backup__sftp_user
 msgid "Username in the SFTP Server"
-msgstr ""
+msgstr "Nombre de Usuario en el Servidor SFTP"
 
 #. module: auto_backup
 #: model_terms:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
 msgid "Warning:"
-msgstr ""
+msgstr "Advertencia:"
 
 #. module: auto_backup
 #: model:ir.model.fields,field_description:auto_backup.field_db_backup__website_message_ids
 msgid "Website Messages"
-msgstr ""
+msgstr "Mensajes del Sitio Web"
 
 #. module: auto_backup
 #: model:ir.model.fields,help:auto_backup.field_db_backup__website_message_ids
 msgid "Website communication history"
-msgstr ""
+msgstr "Historial de comunicación del sitio web"
 
 #. module: auto_backup
 #: model_terms:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
 msgid "john"
-msgstr ""
+msgstr "juan"
 
 #. module: auto_backup
 #: model:ir.model.fields.selection,name:auto_backup.selection__db_backup__backup_format__dump
 msgid "pg_dump custom format (without filestore)"
-msgstr ""
+msgstr "pg_dump formato personalizado (sin filestore)"
 
 #. module: auto_backup
 #: model_terms:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
 msgid "sftp.example.com"
-msgstr ""
+msgstr "sftp.ejemplo.com"
 
 #. module: auto_backup
 #: model:ir.model.fields.selection,name:auto_backup.selection__db_backup__backup_format__zip
 msgid "zip (includes filestore)"
-msgstr ""
+msgstr "zip (incluye filestore)"

From 5ff318abfcdbfa278186bce02cd0478f799a2a57 Mon Sep 17 00:00:00 2001
From: Riccardo Bellanova <bellanova@webmonks.it>
Date: Thu, 17 Mar 2022 15:41:56 +0000
Subject: [PATCH 30/52] Translated using Weblate (Italian)

Currently translated at 94.1% (81 of 86 strings)

Translation: server-tools-14.0/server-tools-14.0-auto_backup
Translate-URL: https://translation.odoo-community.org/projects/server-tools-14-0/server-tools-14-0-auto_backup/it/
---
 auto_backup/i18n/it.po              |  6 ++---
 auto_backup/tests/test_db_backup.py | 40 ++++++++++++++---------------
 2 files changed, 23 insertions(+), 23 deletions(-)

diff --git a/auto_backup/i18n/it.po b/auto_backup/i18n/it.po
index ec4733f17b6..28e8510b2e2 100644
--- a/auto_backup/i18n/it.po
+++ b/auto_backup/i18n/it.po
@@ -9,8 +9,8 @@ msgstr ""
 "Project-Id-Version: Odoo Server 11.0\n"
 "Report-Msgid-Bugs-To: \n"
 "POT-Creation-Date: 2018-03-03 10:08+0000\n"
-"PO-Revision-Date: 2022-01-01 23:39+0000\n"
-"Last-Translator: Sergio Zanchetta <primes2h@gmail.com>\n"
+"PO-Revision-Date: 2022-03-17 18:31+0000\n"
+"Last-Translator: Riccardo Bellanova <bellanova@webmonks.it>\n"
 "Language-Team: Italian (https://www.transifex.com/oca/teams/23907/it/)\n"
 "Language: it\n"
 "MIME-Version: 1.0\n"
@@ -48,7 +48,7 @@ msgstr "Backup automatici"
 #. module: auto_backup
 #: model_terms:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
 msgid "Automatic backups of the database can be scheduled as follows:"
-msgstr "Il backup automatico del database può essere programmato come segue:"
+msgstr "Il backup automatico dei database può essere programmato come segue:"
 
 #. module: auto_backup
 #: model:mail.message.subtype,name:auto_backup.mail_message_subtype_failure
diff --git a/auto_backup/tests/test_db_backup.py b/auto_backup/tests/test_db_backup.py
index 4bf4de18b87..99479980641 100644
--- a/auto_backup/tests/test_db_backup.py
+++ b/auto_backup/tests/test_db_backup.py
@@ -35,7 +35,7 @@ def setUp(self):
 
     @contextmanager
     def mock_assets(self):
-        """ It provides mocked core assets """
+        """It provides mocked core assets"""
         self.path_join_val = "/this/is/a/path"
         with patch("%s.db" % model) as db:
             with patch("%s.os" % model) as os:
@@ -49,7 +49,7 @@ def mock_assets(self):
 
     @contextmanager
     def patch_filtered_sftp(self, record):
-        """ It patches filtered record and provides a mock """
+        """It patches filtered record and provides a mock"""
         with patch("%s.filtered" % class_name) as filtered:
             filtered.side_effect = [], [record]
             with patch("%s.backup_log" % class_name):
@@ -57,7 +57,7 @@ def patch_filtered_sftp(self, record):
                     yield filtered
 
     def new_record(self, method="sftp"):
-        vals = {"name": u"Têst backup", "method": method, "days_to_keep": 1}
+        vals = {"name": "Têst backup", "method": method, "days_to_keep": 1}
         if method == "sftp":
             vals.update(
                 {
@@ -72,7 +72,7 @@ def new_record(self, method="sftp"):
         return self.Model.create(vals)
 
     def test_compute_name_sftp(self):
-        """ It should create proper SFTP URI """
+        """It should create proper SFTP URI"""
         rec_id = self.new_record()
         self.assertEqual(
             "sftp://%(user)s@%(host)s:%(port)s%(folder)s"
@@ -86,7 +86,7 @@ def test_compute_name_sftp(self):
         )
 
     def test_check_folder(self):
-        """ It should not allow recursive backups """
+        """It should not allow recursive backups"""
         rec_id = self.new_record("local")
         with self.assertRaises(UserError):
             rec_id.write(
@@ -98,7 +98,7 @@ def test_check_folder(self):
 
     @patch("%s._" % model)
     def test_action_sftp_test_connection_success(self, _):
-        """ It should raise connection succeeded warning """
+        """It should raise connection succeeded warning"""
         with patch("%s.sftp_connection" % class_name, new_callable=PropertyMock):
             rec_id = self.new_record()
             with self.assertRaises(UserError):
@@ -107,7 +107,7 @@ def test_action_sftp_test_connection_success(self, _):
 
     @patch("%s._" % model)
     def test_action_sftp_test_connection_fail(self, _):
-        """ It should raise connection fail warning """
+        """It should raise connection fail warning"""
         with patch(
             "%s.sftp_connection" % class_name, new_callable=PropertyMock
         ) as conn:
@@ -118,7 +118,7 @@ def test_action_sftp_test_connection_fail(self, _):
             _.assert_called_once_with("Connection Test Failed!")
 
     def test_action_backup_local(self):
-        """ It should backup local database """
+        """It should backup local database"""
         rec_id = self.new_record("local")
         filename = rec_id.filename(datetime.now())
         rec_id.action_backup()
@@ -126,7 +126,7 @@ def test_action_backup_local(self):
         self.assertEqual(1, len(generated_backup))
 
     def test_action_backup_local_cleanup(self):
-        """ Backup local database and cleanup old databases """
+        """Backup local database and cleanup old databases"""
         rec_id = self.new_record("local")
         old_date = datetime.now() - timedelta(days=3)
         filename = rec_id.filename(old_date)
@@ -142,7 +142,7 @@ def test_action_backup_local_cleanup(self):
         self.assertEqual(1, len(generated_backup))
 
     def test_action_backup_sftp_mkdirs(self):
-        """ It should create remote dirs """
+        """It should create remote dirs"""
         rec_id = self.new_record()
         with self.mock_assets():
             with self.patch_filtered_sftp(rec_id):
@@ -152,7 +152,7 @@ def test_action_backup_sftp_mkdirs(self):
                     conn.makedirs.assert_called_once_with(rec_id.folder)
 
     def test_action_backup_sftp_mkdirs_conn_exception(self):
-        """ It should guard from ConnectionException on remote.mkdirs """
+        """It should guard from ConnectionException on remote.mkdirs"""
         rec_id = self.new_record()
         with self.mock_assets():
             with self.patch_filtered_sftp(rec_id):
@@ -164,7 +164,7 @@ def test_action_backup_sftp_mkdirs_conn_exception(self):
                     self.assertTrue(True)
 
     def test_action_backup_sftp_remote_open(self):
-        """ It should open remote file w/ proper args """
+        """It should open remote file w/ proper args"""
         rec_id = self.new_record()
         with self.mock_assets() as assets:
             with self.patch_filtered_sftp(rec_id):
@@ -174,14 +174,14 @@ def test_action_backup_sftp_remote_open(self):
                     conn.open.assert_called_once_with(assets["os"].path.join(), "wb")
 
     def test_action_backup_all_search(self):
-        """ It should search all records """
+        """It should search all records"""
         rec_id = self.new_record()
         with patch("%s.search" % class_name, new_callable=PropertyMock):
             rec_id.action_backup_all()
             rec_id.search.assert_called_once_with([])
 
     def test_action_backup_all_return(self):
-        """ It should return result of backup operation """
+        """It should return result of backup operation"""
         rec_id = self.new_record()
         with patch("%s.search" % class_name, new_callable=PropertyMock):
             res = rec_id.action_backup_all()
@@ -189,7 +189,7 @@ def test_action_backup_all_return(self):
 
     @patch("%s.pysftp" % model)
     def test_sftp_connection_init_passwd(self, pysftp):
-        """ It should initiate SFTP connection w/ proper args and pass """
+        """It should initiate SFTP connection w/ proper args and pass"""
         rec_id = self.new_record()
         rec_id.sftp_connection()
         pysftp.Connection.assert_called_once_with(
@@ -201,7 +201,7 @@ def test_sftp_connection_init_passwd(self, pysftp):
 
     @patch("%s.pysftp" % model)
     def test_sftp_connection_init_key(self, pysftp):
-        """ It should initiate SFTP connection w/ proper args and key """
+        """It should initiate SFTP connection w/ proper args and key"""
         rec_id = self.new_record()
         rec_id.write({"sftp_private_key": "pkey", "sftp_password": "pkeypass"})
         rec_id.sftp_connection()
@@ -215,7 +215,7 @@ def test_sftp_connection_init_key(self, pysftp):
 
     @patch("%s.pysftp" % model)
     def test_sftp_connection_return(self, pysftp):
-        """ It should return new sftp connection """
+        """It should return new sftp connection"""
         rec_id = self.new_record()
         res = rec_id.sftp_connection()
         self.assertEqual(
@@ -224,19 +224,19 @@ def test_sftp_connection_return(self, pysftp):
         )
 
     def test_filename_default(self):
-        """ It should not error and should return a .dump.zip file str """
+        """It should not error and should return a .dump.zip file str"""
         now = datetime.now()
         res = self.Model.filename(now)
         self.assertTrue(res.endswith(".dump.zip"))
 
     def test_filename_zip(self):
-        """ It should return a dump.zip filename"""
+        """It should return a dump.zip filename"""
         now = datetime.now()
         res = self.Model.filename(now, ext="zip")
         self.assertTrue(res.endswith(".dump.zip"))
 
     def test_filename_dump(self):
-        """ It should return a dump filename"""
+        """It should return a dump filename"""
         now = datetime.now()
         res = self.Model.filename(now, ext="dump")
         self.assertTrue(res.endswith(".dump"))

From 4a1cc7da2c063ded6a1ec82e5d13271897489fde Mon Sep 17 00:00:00 2001
From: Bole <bole@dajmi5.com>
Date: Mon, 22 Aug 2022 10:22:57 +0000
Subject: [PATCH 31/52] Translated using Weblate (Croatian)

Currently translated at 50.0% (43 of 86 strings)

Translation: server-tools-14.0/server-tools-14.0-auto_backup
Translate-URL: https://translation.odoo-community.org/projects/server-tools-14-0/server-tools-14-0-auto_backup/hr/
---
 auto_backup/i18n/hr.po | 8 +++++---
 1 file changed, 5 insertions(+), 3 deletions(-)

diff --git a/auto_backup/i18n/hr.po b/auto_backup/i18n/hr.po
index 07dbd8ec5dc..328eef1813f 100644
--- a/auto_backup/i18n/hr.po
+++ b/auto_backup/i18n/hr.po
@@ -9,7 +9,7 @@ msgstr ""
 "Project-Id-Version: Odoo Server 11.0\n"
 "Report-Msgid-Bugs-To: \n"
 "POT-Creation-Date: 2018-03-03 10:08+0000\n"
-"PO-Revision-Date: 2019-11-13 17:34+0000\n"
+"PO-Revision-Date: 2022-08-22 13:07+0000\n"
 "Last-Translator: Bole <bole@dajmi5.com>\n"
 "Language-Team: Croatian (https://www.transifex.com/oca/teams/23907/hr/)\n"
 "Language: hr\n"
@@ -18,7 +18,7 @@ msgstr ""
 "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"
-"X-Generator: Weblate 3.8\n"
+"X-Generator: Weblate 4.3.2\n"
 
 #. module: auto_backup
 #: model_terms:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
@@ -79,6 +79,8 @@ msgid ""
 "Backups older than this will be deleted automatically. Set 0 to disable "
 "autodeletion."
 msgstr ""
+"Pričuvne kopije starije od ovog se automatski brišu. Postavite na 0 za "
+"onemogućavanje brisanja."
 
 #. module: auto_backup
 #: model_terms:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
@@ -189,7 +191,7 @@ msgstr ""
 #. module: auto_backup
 #: model_terms:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
 msgid "Execute backup"
-msgstr ""
+msgstr "Kreiraj pričuvnu kopiju"
 
 #. module: auto_backup
 #: model:ir.actions.server,name:auto_backup.action_server_backup

From 5dd97ef56cfa3a64e78ac7ba5d319f1142dd2547 Mon Sep 17 00:00:00 2001
From: Anh Vu <vuna2004@gmail.com>
Date: Wed, 21 Sep 2022 07:18:59 +0700
Subject: [PATCH 32/52] [15][MIG] :tada: Migrate auto_backup

---
 auto_backup/README.rst                    |  13 +-
 auto_backup/__manifest__.py               |   2 +-
 auto_backup/i18n/auto_backup.pot          |  52 +------
 auto_backup/i18n/ca.po                    |  10 +-
 auto_backup/i18n/es_AR.po                 | 166 ++++++++++------------
 auto_backup/i18n/hr.po                    |   8 +-
 auto_backup/i18n/it.po                    |  44 +++---
 auto_backup/models/db_backup.py           |  14 +-
 auto_backup/readme/CONTRIBUTORS.rst       |   1 +
 auto_backup/readme/INSTALL.rst            |   2 +-
 auto_backup/static/description/index.html |   9 +-
 auto_backup/tests/test_db_backup.py       |  10 +-
 12 files changed, 140 insertions(+), 191 deletions(-)

diff --git a/auto_backup/README.rst b/auto_backup/README.rst
index 1acb6e2252a..0d228851ef4 100644
--- a/auto_backup/README.rst
+++ b/auto_backup/README.rst
@@ -14,13 +14,13 @@ Database Auto-Backup
     :target: http://www.gnu.org/licenses/agpl-3.0-standalone.html
     :alt: License: AGPL-3
 .. |badge3| image:: https://img.shields.io/badge/github-OCA%2Fserver--tools-lightgray.png?logo=github
-    :target: https://github.com/OCA/server-tools/tree/14.0/auto_backup
+    :target: https://github.com/OCA/server-tools/tree/15.0/auto_backup
     :alt: OCA/server-tools
 .. |badge4| image:: https://img.shields.io/badge/weblate-Translate%20me-F47D42.png
-    :target: https://translation.odoo-community.org/projects/server-tools-14-0/server-tools-14-0-auto_backup
+    :target: https://translation.odoo-community.org/projects/server-tools-15-0/server-tools-15-0-auto_backup
     :alt: Translate me on Weblate
 .. |badge5| image:: https://img.shields.io/badge/runbot-Try%20me-875A7B.png
-    :target: https://runbot.odoo-community.org/runbot/149/14.0
+    :target: https://runbot.odoo-community.org/runbot/149/15.0
     :alt: Try me on Runbot
 
 |badge1| |badge2| |badge3| |badge4| |badge5| 
@@ -37,7 +37,7 @@ Installation
 
 Before installing this module, you need to execute::
 
-    pip3 install pysftp==0.2.8
+    pip3 install pysftp==0.2.9
 
 Configuration
 =============
@@ -112,7 +112,7 @@ Bug Tracker
 Bugs are tracked on `GitHub Issues <https://github.com/OCA/server-tools/issues>`_.
 In case of trouble, please check there if your issue has already been reported.
 If you spotted it first, help us smashing it by providing a detailed and welcomed
-`feedback <https://github.com/OCA/server-tools/issues/new?body=module:%20auto_backup%0Aversion:%2014.0%0A%0A**Steps%20to%20reproduce**%0A-%20...%0A%0A**Current%20behavior**%0A%0A**Expected%20behavior**>`_.
+`feedback <https://github.com/OCA/server-tools/issues/new?body=module:%20auto_backup%0Aversion:%2015.0%0A%0A**Steps%20to%20reproduce**%0A-%20...%0A%0A**Current%20behavior**%0A%0A**Expected%20behavior**>`_.
 
 Do not contact contributors directly about support or help with technical issues.
 
@@ -138,6 +138,7 @@ Contributors
 * Andrea Stirpe <a.stirpe@onestein.nl>
 * Aitor Bouzas <aitor.bouzas@adaptivecity.com>
 * Simone Vanin <simone.vanin@agilebg.com>
+* Vu Nguyen Anh <vuna2004@gmail.com>
 
 Maintainers
 ~~~~~~~~~~~
@@ -152,6 +153,6 @@ OCA, or the Odoo Community Association, is a nonprofit organization whose
 mission is to support the collaborative development of Odoo features and
 promote its widespread use.
 
-This module is part of the `OCA/server-tools <https://github.com/OCA/server-tools/tree/14.0/auto_backup>`_ project on GitHub.
+This module is part of the `OCA/server-tools <https://github.com/OCA/server-tools/tree/15.0/auto_backup>`_ project on GitHub.
 
 You are welcome to contribute. To learn how please visit https://odoo-community.org/page/Contribute.
diff --git a/auto_backup/__manifest__.py b/auto_backup/__manifest__.py
index 587cc1ce5ad..35ad1b5c9ab 100644
--- a/auto_backup/__manifest__.py
+++ b/auto_backup/__manifest__.py
@@ -6,7 +6,7 @@
 {
     "name": "Database Auto-Backup",
     "summary": "Backups database",
-    "version": "14.0.1.0.0",
+    "version": "15.0.1.0.0",
     "author": "Yenthe Van Ginneken, "
     "Agile Business Group, "
     "Grupo ESOC Ingenieria de Servicios, "
diff --git a/auto_backup/i18n/auto_backup.pot b/auto_backup/i18n/auto_backup.pot
index a3443303937..b810b99edbc 100644
--- a/auto_backup/i18n/auto_backup.pot
+++ b/auto_backup/i18n/auto_backup.pot
@@ -4,7 +4,7 @@
 #
 msgid ""
 msgstr ""
-"Project-Id-Version: Odoo Server 14.0\n"
+"Project-Id-Version: Odoo Server 15.0\n"
 "Report-Msgid-Bugs-To: \n"
 "Last-Translator: \n"
 "Language-Team: \n"
@@ -83,16 +83,6 @@ msgstr ""
 msgid "Cannot duplicate a configuration."
 msgstr ""
 
-#. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup__changeset_change_ids
-msgid "Changeset Changes"
-msgstr ""
-
-#. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup__changeset_ids
-msgid "Changesets"
-msgstr ""
-
 #. module: auto_backup
 #: model:ir.model.fields,help:auto_backup.field_db_backup__backup_format
 msgid "Choose the format for this backup."
@@ -121,16 +111,6 @@ msgstr ""
 msgid "Connection Test Succeeded!"
 msgstr ""
 
-#. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup__count_pending_changeset_changes
-msgid "Count Pending Changeset Changes"
-msgstr ""
-
-#. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup__count_pending_changesets
-msgid "Count Pending Changesets"
-msgstr ""
-
 #. module: auto_backup
 #: model:ir.model.fields,field_description:auto_backup.field_db_backup__create_uid
 msgid "Created by"
@@ -197,11 +177,6 @@ msgstr ""
 msgid "Followers"
 msgstr ""
 
-#. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup__message_channel_ids
-msgid "Followers (Channels)"
-msgstr ""
-
 #. module: auto_backup
 #: model:ir.model.fields,field_description:auto_backup.field_db_backup__message_partner_ids
 msgid "Followers (Partners)"
@@ -212,6 +187,11 @@ msgstr ""
 msgid "Go to Settings / Technical / Automation / Scheduled Actions."
 msgstr ""
 
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__has_message
+msgid "Has Message"
+msgstr ""
+
 #. module: auto_backup
 #: model_terms:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
 msgid "Help"
@@ -368,11 +348,6 @@ msgid ""
 "generated."
 msgstr ""
 
-#. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup__smart_search
-msgid "Smart Search"
-msgstr ""
-
 #. module: auto_backup
 #: model:ir.model.fields,help:auto_backup.field_db_backup__name
 msgid "Summary of this backup process"
@@ -425,11 +400,6 @@ msgid ""
 "you specify."
 msgstr ""
 
-#. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup__user_can_see_changeset
-msgid "User Can See Changeset"
-msgstr ""
-
 #. module: auto_backup
 #: model:ir.model.fields,field_description:auto_backup.field_db_backup__sftp_user
 msgid "Username in the SFTP Server"
@@ -440,16 +410,6 @@ msgstr ""
 msgid "Warning:"
 msgstr ""
 
-#. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup__website_message_ids
-msgid "Website Messages"
-msgstr ""
-
-#. module: auto_backup
-#: model:ir.model.fields,help:auto_backup.field_db_backup__website_message_ids
-msgid "Website communication history"
-msgstr ""
-
 #. module: auto_backup
 #: model_terms:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
 msgid "john"
diff --git a/auto_backup/i18n/ca.po b/auto_backup/i18n/ca.po
index e011cfe1f16..a6a0279b118 100644
--- a/auto_backup/i18n/ca.po
+++ b/auto_backup/i18n/ca.po
@@ -9,21 +9,19 @@ msgstr ""
 "Project-Id-Version: Odoo Server 11.0\n"
 "Report-Msgid-Bugs-To: \n"
 "POT-Creation-Date: 2018-03-03 10:08+0000\n"
-"PO-Revision-Date: 2022-02-14 11:16+0000\n"
-"Last-Translator: Dept. Técnico <tecnico@extrememicro.es>\n"
+"PO-Revision-Date: 2018-03-03 10:08+0000\n"
+"Last-Translator: OCA Transbot <transbot@odoo-community.org>, 2018\n"
 "Language-Team: Catalan (https://www.transifex.com/oca/teams/23907/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"
-"X-Generator: Weblate 4.3.2\n"
+"Plural-Forms: nplurals=2; plural=(n != 1);\n"
 
 #. module: auto_backup
 #: model_terms:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
-#, fuzzy
 msgid "/home/odoo/.ssh/id_rsa"
-msgstr "/home/odoo/.ssh/id_rsa"
+msgstr ""
 
 #. module: auto_backup
 #: model:ir.model.fields,help:auto_backup.field_db_backup__folder
diff --git a/auto_backup/i18n/es_AR.po b/auto_backup/i18n/es_AR.po
index 3054dda53df..a1baa8ac917 100644
--- a/auto_backup/i18n/es_AR.po
+++ b/auto_backup/i18n/es_AR.po
@@ -9,71 +9,68 @@ msgstr ""
 "Project-Id-Version: Odoo Server 10.0\n"
 "Report-Msgid-Bugs-To: \n"
 "POT-Creation-Date: 2017-02-18 02:29+0000\n"
-"PO-Revision-Date: 2022-03-17 04:17+0000\n"
-"Last-Translator: Ignacio Buioli <ibuioli@gmail.com>\n"
-"Language-Team: Spanish (Argentina) (https://www.transifex.com/oca/teams/"
-"23907/es_AR/)\n"
+"PO-Revision-Date: 2017-02-18 02:29+0000\n"
+"Last-Translator: OCA Transbot <transbot@odoo-community.org>, 2016\n"
+"Language-Team: Spanish (Argentina) (https://www.transifex.com/oca/"
+"teams/23907/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"
-"X-Generator: Weblate 4.3.2\n"
+"Plural-Forms: nplurals=2; plural=(n != 1);\n"
 
 #. module: auto_backup
 #: model_terms:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
 msgid "/home/odoo/.ssh/id_rsa"
-msgstr "/home/odoo/.ssh/id_rsa"
+msgstr ""
 
 #. module: auto_backup
 #: model:ir.model.fields,help:auto_backup.field_db_backup__folder
 msgid "Absolute path for storing the backups"
-msgstr "Ruta absoluta para almacenar las Copias de Seguridad"
+msgstr ""
 
 #. module: auto_backup
 #: model:ir.model.fields,field_description:auto_backup.field_db_backup__message_needaction
 msgid "Action Needed"
-msgstr "Acción Requerida"
+msgstr ""
 
 #. module: auto_backup
 #: model:ir.model.fields,field_description:auto_backup.field_db_backup__message_attachment_count
 msgid "Attachment Count"
-msgstr "Cuenta de Adjuntos"
+msgstr ""
 
 #. module: auto_backup
 #: model:ir.actions.act_window,name:auto_backup.action_backup_conf_form
 #: model:ir.ui.menu,name:auto_backup.backup_conf_menu
 msgid "Automated Backups"
-msgstr "Copias de Seguridad Automatizadas"
+msgstr ""
 
 #. module: auto_backup
 #: model_terms:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
 msgid "Automatic backups of the database can be scheduled as follows:"
 msgstr ""
-"Las copias de seguridad automática de la base de datos puede planificarse de "
-"la siguiente manera:"
 
 #. module: auto_backup
 #: model:mail.message.subtype,name:auto_backup.mail_message_subtype_failure
 msgid "Backup Failed"
-msgstr "Copia de Seguridad Falló"
+msgstr ""
 
 #. module: auto_backup
 #: model:ir.model.fields,field_description:auto_backup.field_db_backup__backup_format
 msgid "Backup Format"
-msgstr "Formato de Copia de Seguridad"
+msgstr ""
 
 #. module: auto_backup
 #: model:ir.actions.server,name:auto_backup.ir_cron_backup_scheduler_0_ir_actions_server
 #: model:ir.cron,cron_name:auto_backup.ir_cron_backup_scheduler_0
 #: model:ir.cron,name:auto_backup.ir_cron_backup_scheduler_0
 msgid "Backup Scheduler"
-msgstr "Planificador de Copia de Seguridad"
+msgstr ""
 
 #. module: auto_backup
 #: model:mail.message.subtype,name:auto_backup.mail_message_subtype_success
 msgid "Backup Successful"
-msgstr "Copia de Seguridad Satisfactoria"
+msgstr ""
 
 #. module: auto_backup
 #: model:ir.model.fields,help:auto_backup.field_db_backup__days_to_keep
@@ -81,66 +78,64 @@ msgid ""
 "Backups older than this will be deleted automatically. Set 0 to disable "
 "autodeletion."
 msgstr ""
-"Las Copias de Seguridad antiguas se eliminarán automáticamente. Coloque 0 "
-"para deshabilitar la eliminación automática."
 
 #. module: auto_backup
 #: model_terms:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
 msgid "Basic backup configuration"
-msgstr "Configuración básica de la copia de seguridad"
+msgstr ""
 
 #. module: auto_backup
 #: model:ir.model.constraint,message:auto_backup.constraint_db_backup_name_unique
 msgid "Cannot duplicate a configuration."
-msgstr "No se puede duplicar una configuración."
+msgstr ""
 
 #. module: auto_backup
 #: model:ir.model.fields,field_description:auto_backup.field_db_backup__changeset_change_ids
 msgid "Changeset Changes"
-msgstr "Cambios en el Conjunto de Cambios"
+msgstr ""
 
 #. module: auto_backup
 #: model:ir.model.fields,field_description:auto_backup.field_db_backup__changeset_ids
 msgid "Changesets"
-msgstr "Conjunto de Cambios"
+msgstr ""
 
 #. module: auto_backup
 #: model:ir.model.fields,help:auto_backup.field_db_backup__backup_format
 msgid "Choose the format for this backup."
-msgstr "Elija el formato para esta copia de seguridad."
+msgstr ""
 
 #. module: auto_backup
 #: model:ir.model.fields,help:auto_backup.field_db_backup__method
 msgid "Choose the storage method for this backup."
-msgstr "Elija el método de almacenamiento para esta copia de seguridad."
+msgstr ""
 
 #. module: auto_backup
 #: code:addons/auto_backup/models/db_backup.py:0
 #, python-format
 msgid "Cleanup of old database backups failed."
-msgstr "La limpieza de una base de datos antigua falló."
+msgstr ""
 
 #. module: auto_backup
 #: code:addons/auto_backup/models/db_backup.py:0
 #, python-format
 msgid "Connection Test Failed!"
-msgstr "¡La Prueba de Conexión Falló!"
+msgstr ""
 
 #. module: auto_backup
 #: code:addons/auto_backup/models/db_backup.py:0
 #, python-format
 msgid "Connection Test Succeeded!"
-msgstr "¡Prueba de Conexión Exitosa!"
+msgstr ""
 
 #. module: auto_backup
 #: model:ir.model.fields,field_description:auto_backup.field_db_backup__count_pending_changeset_changes
 msgid "Count Pending Changeset Changes"
-msgstr "Contar los Cambios Pendientes del Conjunto de Cambios"
+msgstr ""
 
 #. module: auto_backup
 #: model:ir.model.fields,field_description:auto_backup.field_db_backup__count_pending_changesets
 msgid "Count Pending Changesets"
-msgstr "Contar Conjunto de Cambios Pendientes"
+msgstr ""
 
 #. module: auto_backup
 #: model:ir.model.fields,field_description:auto_backup.field_db_backup__create_uid
@@ -155,26 +150,26 @@ msgstr "Creado en"
 #. module: auto_backup
 #: model:ir.model,name:auto_backup.model_db_backup
 msgid "Database Backup"
-msgstr "Copia de Seguridad de la Base de Datos"
+msgstr ""
 
 #. module: auto_backup
 #: code:addons/auto_backup/models/db_backup.py:0
 #: model:mail.message.subtype,description:auto_backup.mail_message_subtype_failure
 #, python-format
 msgid "Database backup failed."
-msgstr "La copia de seguridad de la base de datos falló."
+msgstr ""
 
 #. module: auto_backup
 #: code:addons/auto_backup/models/db_backup.py:0
 #: model:mail.message.subtype,description:auto_backup.mail_message_subtype_success
 #, python-format
 msgid "Database backup succeeded."
-msgstr "La copia de seguridad de la base de datos se realizó exitosamente."
+msgstr ""
 
 #. module: auto_backup
 #: model:ir.model.fields,field_description:auto_backup.field_db_backup__days_to_keep
 msgid "Days To Keep"
-msgstr "Días a Mantener"
+msgstr ""
 
 #. module: auto_backup
 #: model:ir.model.fields,field_description:auto_backup.field_db_backup__display_name
@@ -187,54 +182,51 @@ msgstr "Mostrar Nombre"
 msgid ""
 "Do not save backups on your filestore, or you will backup your backups too!"
 msgstr ""
-"¡No almacene sus copias en su filestore, o hará copias de sus copias también!"
 
 #. module: auto_backup
 #: model_terms:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
 msgid "Execute backup"
-msgstr "Ejecutar Copia de Seguridad"
+msgstr ""
 
 #. module: auto_backup
 #: model:ir.actions.server,name:auto_backup.action_server_backup
 msgid "Execute backup(s)"
-msgstr "Ejecutar copia(s) de seguridad"
+msgstr ""
 
 #. module: auto_backup
 #: model:ir.model.fields,field_description:auto_backup.field_db_backup__folder
 msgid "Folder"
-msgstr "Carpeta"
+msgstr ""
 
 #. module: auto_backup
 #: model:ir.model.fields,field_description:auto_backup.field_db_backup__message_follower_ids
 msgid "Followers"
-msgstr "Seguidores"
+msgstr ""
 
 #. module: auto_backup
 #: model:ir.model.fields,field_description:auto_backup.field_db_backup__message_channel_ids
 msgid "Followers (Channels)"
-msgstr "Seguidores (Canales)"
+msgstr ""
 
 #. module: auto_backup
 #: model:ir.model.fields,field_description:auto_backup.field_db_backup__message_partner_ids
 msgid "Followers (Partners)"
-msgstr "Seguidores (Contactos)"
+msgstr ""
 
 #. module: auto_backup
 #: model_terms:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
 msgid "Go to Settings / Technical / Automation / Scheduled Actions."
-msgstr "Ir a Ajustes / Técnico / Automatización / Acciones planificadas."
+msgstr ""
 
 #. module: auto_backup
 #: model_terms:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
 msgid "Help"
-msgstr "Ayuda"
+msgstr ""
 
 #. module: auto_backup
 #: model:ir.model.constraint,message:auto_backup.constraint_db_backup_days_to_keep_positive
 msgid "I cannot remove backups from the future. Ask Doc for that."
 msgstr ""
-"No puedo eliminar una copia de seguridad del futuro. Pregunte a su Doctor "
-"por eso."
 
 #. module: auto_backup
 #: model:ir.model.fields,field_description:auto_backup.field_db_backup__id
@@ -245,18 +237,18 @@ msgstr "ID"
 #: model:ir.model.fields,help:auto_backup.field_db_backup__message_needaction
 #: model:ir.model.fields,help:auto_backup.field_db_backup__message_unread
 msgid "If checked, new messages require your attention."
-msgstr "Si está marcado, los nuevos mensajes requieren su atención."
+msgstr ""
 
 #. module: auto_backup
 #: model:ir.model.fields,help:auto_backup.field_db_backup__message_has_error
 #: model:ir.model.fields,help:auto_backup.field_db_backup__message_has_sms_error
 msgid "If checked, some messages have a delivery error."
-msgstr "Si está marcado, algunos mensajes tienen error de entrega."
+msgstr ""
 
 #. module: auto_backup
 #: model:ir.model.fields,field_description:auto_backup.field_db_backup__message_is_follower
 msgid "Is Follower"
-msgstr "Es Seguidor"
+msgstr ""
 
 #. module: auto_backup
 #: model:ir.model.fields,field_description:auto_backup.field_db_backup____last_update
@@ -276,27 +268,27 @@ msgstr "Última actualización el"
 #. module: auto_backup
 #: model:ir.model.fields.selection,name:auto_backup.selection__db_backup__method__local
 msgid "Local disk"
-msgstr "Disco local"
+msgstr ""
 
 #. module: auto_backup
 #: model:ir.model.fields,field_description:auto_backup.field_db_backup__message_main_attachment_id
 msgid "Main Attachment"
-msgstr "Adjunto Principal"
+msgstr ""
 
 #. module: auto_backup
 #: model:ir.model.fields,field_description:auto_backup.field_db_backup__message_has_error
 msgid "Message Delivery error"
-msgstr "Error de Entrega de Mensaje"
+msgstr ""
 
 #. module: auto_backup
 #: model:ir.model.fields,field_description:auto_backup.field_db_backup__message_ids
 msgid "Messages"
-msgstr "Mensajes"
+msgstr ""
 
 #. module: auto_backup
 #: model:ir.model.fields,field_description:auto_backup.field_db_backup__method
 msgid "Method"
-msgstr "Método"
+msgstr ""
 
 #. module: auto_backup
 #: model:ir.model.fields,field_description:auto_backup.field_db_backup__name
@@ -306,27 +298,27 @@ msgstr "Nombre"
 #. module: auto_backup
 #: model:ir.model.fields,field_description:auto_backup.field_db_backup__message_needaction_counter
 msgid "Number of Actions"
-msgstr "Número de Acciones"
+msgstr ""
 
 #. module: auto_backup
 #: model:ir.model.fields,field_description:auto_backup.field_db_backup__message_has_error_counter
 msgid "Number of errors"
-msgstr "Número de errores"
+msgstr ""
 
 #. module: auto_backup
 #: model:ir.model.fields,help:auto_backup.field_db_backup__message_needaction_counter
 msgid "Number of messages which requires an action"
-msgstr "Número de mensajes que requieren una acción"
+msgstr ""
 
 #. module: auto_backup
 #: model:ir.model.fields,help:auto_backup.field_db_backup__message_has_error_counter
 msgid "Number of messages with delivery error"
-msgstr "Número de mensajes con error de entrega"
+msgstr ""
 
 #. module: auto_backup
 #: model:ir.model.fields,help:auto_backup.field_db_backup__message_unread_counter
 msgid "Number of unread messages"
-msgstr "Número de mensajes sin leer"
+msgstr ""
 
 #. module: auto_backup
 #: model:ir.model.fields,help:auto_backup.field_db_backup__sftp_private_key
@@ -334,79 +326,73 @@ msgid ""
 "Path to the private key file. Only the Odoo user should have read "
 "permissions for that file."
 msgstr ""
-"Ruta al archivo de la private key. Solo el usuario Odoo debe poder tener "
-"permisos de lectura a ese archivo."
 
 #. module: auto_backup
 #: model:ir.model.fields,field_description:auto_backup.field_db_backup__sftp_private_key
 msgid "Private key location"
-msgstr "Ubicación de la Private Key"
+msgstr ""
 
 #. module: auto_backup
 #: model:ir.model.fields.selection,name:auto_backup.selection__db_backup__method__sftp
 msgid "Remote SFTP server"
-msgstr "Servidor SFTP remoto"
+msgstr ""
 
 #. module: auto_backup
 #: model:ir.model.fields,field_description:auto_backup.field_db_backup__sftp_password
 msgid "SFTP Password"
-msgstr "Contraseña SFTP"
+msgstr ""
 
 #. module: auto_backup
 #: model:ir.model.fields,field_description:auto_backup.field_db_backup__sftp_port
 msgid "SFTP Port"
-msgstr "Puerto SFTP"
+msgstr ""
 
 #. module: auto_backup
 #: model:ir.model.fields,field_description:auto_backup.field_db_backup__sftp_host
 msgid "SFTP Server"
-msgstr "Servidor SFTP"
+msgstr ""
 
 #. module: auto_backup
 #: model_terms:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
 msgid "SFTP Settings"
-msgstr "Configuración SFTP"
+msgstr ""
 
 #. module: auto_backup
 #: model:ir.model.fields,field_description:auto_backup.field_db_backup__message_has_sms_error
 msgid "SMS Delivery error"
-msgstr "Error de entrega de SMS"
+msgstr ""
 
 #. module: auto_backup
 #: model_terms:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
 msgid "Search the action named 'Backup scheduler'."
-msgstr "Busque la acción llamada 'Planificador de Copia de Seguridad'."
+msgstr ""
 
 #. module: auto_backup
 #: model_terms:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
 msgid ""
 "Set the scheduler to active and fill in how often you want backups generated."
 msgstr ""
-"Configure el planificador como activo y complete que tan frecuente quiere "
-"generar las copias de seguridad."
 
 #. module: auto_backup
 #: model:ir.model.fields,field_description:auto_backup.field_db_backup__smart_search
 msgid "Smart Search"
-msgstr "Búsqueda Inteligente"
+msgstr ""
 
 #. module: auto_backup
 #: model:ir.model.fields,help:auto_backup.field_db_backup__name
 msgid "Summary of this backup process"
-msgstr "Resumen del proceso de esta copia de seguridad"
+msgstr ""
 
 #. module: auto_backup
 #: model_terms:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
 msgid "Test SFTP Connection"
-msgstr "Probar Conexión SFTP"
+msgstr ""
 
 #. module: auto_backup
 #: model:ir.model.fields,help:auto_backup.field_db_backup__sftp_host
 msgid ""
 "The host name or IP address from your remote server. For example 192.168.0.1"
 msgstr ""
-"El nombre del host o la dirección IP de su servidor remoto. Por ejemplo 192."
-"168.0.1"
 
 #. module: auto_backup
 #: model:ir.model.fields,help:auto_backup.field_db_backup__sftp_password
@@ -414,13 +400,11 @@ msgid ""
 "The password for the SFTP connection. If you specify a private key file, "
 "then this is the password to decrypt it."
 msgstr ""
-"La contraseña para la conexión SFTP. Si especifica un archivo private key, "
-"entonces esta es la contraseña para desencriptarlo."
 
 #. module: auto_backup
 #: model:ir.model.fields,help:auto_backup.field_db_backup__sftp_port
 msgid "The port on the FTP server that accepts SSH/SFTP calls."
-msgstr "El puerto en el servidor FTP que acepta llamadas SSH/SFTP."
+msgstr ""
 
 #. module: auto_backup
 #: model:ir.model.fields,help:auto_backup.field_db_backup__sftp_user
@@ -428,18 +412,16 @@ msgid ""
 "The username where the SFTP connection should be made with. This is the user "
 "on the external server."
 msgstr ""
-"El nombre de usuario con el que se debe realizar la conexión SFTP. Este es "
-"el usuario en el servidor externo."
 
 #. module: auto_backup
 #: model:ir.model.fields,field_description:auto_backup.field_db_backup__message_unread
 msgid "Unread Messages"
-msgstr "Mensajes Sin Leer"
+msgstr ""
 
 #. module: auto_backup
 #: model:ir.model.fields,field_description:auto_backup.field_db_backup__message_unread_counter
 msgid "Unread Messages Counter"
-msgstr "Contador de Mensajes Sin Leer"
+msgstr ""
 
 #. module: auto_backup
 #: model_terms:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
@@ -447,50 +429,48 @@ msgid ""
 "Use SFTP with caution! This writes files to external servers under the path "
 "you specify."
 msgstr ""
-"¡Use SFTP con precaución! Esto escribe archivos en servidores externos en la "
-"ruta que especifique."
 
 #. module: auto_backup
 #: model:ir.model.fields,field_description:auto_backup.field_db_backup__user_can_see_changeset
 msgid "User Can See Changeset"
-msgstr "El usuario puede ver el Conjunto de Cambios"
+msgstr ""
 
 #. module: auto_backup
 #: model:ir.model.fields,field_description:auto_backup.field_db_backup__sftp_user
 msgid "Username in the SFTP Server"
-msgstr "Nombre de Usuario en el Servidor SFTP"
+msgstr ""
 
 #. module: auto_backup
 #: model_terms:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
 msgid "Warning:"
-msgstr "Advertencia:"
+msgstr ""
 
 #. module: auto_backup
 #: model:ir.model.fields,field_description:auto_backup.field_db_backup__website_message_ids
 msgid "Website Messages"
-msgstr "Mensajes del Sitio Web"
+msgstr ""
 
 #. module: auto_backup
 #: model:ir.model.fields,help:auto_backup.field_db_backup__website_message_ids
 msgid "Website communication history"
-msgstr "Historial de comunicación del sitio web"
+msgstr ""
 
 #. module: auto_backup
 #: model_terms:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
 msgid "john"
-msgstr "juan"
+msgstr ""
 
 #. module: auto_backup
 #: model:ir.model.fields.selection,name:auto_backup.selection__db_backup__backup_format__dump
 msgid "pg_dump custom format (without filestore)"
-msgstr "pg_dump formato personalizado (sin filestore)"
+msgstr ""
 
 #. module: auto_backup
 #: model_terms:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
 msgid "sftp.example.com"
-msgstr "sftp.ejemplo.com"
+msgstr ""
 
 #. module: auto_backup
 #: model:ir.model.fields.selection,name:auto_backup.selection__db_backup__backup_format__zip
 msgid "zip (includes filestore)"
-msgstr "zip (incluye filestore)"
+msgstr ""
diff --git a/auto_backup/i18n/hr.po b/auto_backup/i18n/hr.po
index 328eef1813f..07dbd8ec5dc 100644
--- a/auto_backup/i18n/hr.po
+++ b/auto_backup/i18n/hr.po
@@ -9,7 +9,7 @@ msgstr ""
 "Project-Id-Version: Odoo Server 11.0\n"
 "Report-Msgid-Bugs-To: \n"
 "POT-Creation-Date: 2018-03-03 10:08+0000\n"
-"PO-Revision-Date: 2022-08-22 13:07+0000\n"
+"PO-Revision-Date: 2019-11-13 17:34+0000\n"
 "Last-Translator: Bole <bole@dajmi5.com>\n"
 "Language-Team: Croatian (https://www.transifex.com/oca/teams/23907/hr/)\n"
 "Language: hr\n"
@@ -18,7 +18,7 @@ msgstr ""
 "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"
-"X-Generator: Weblate 4.3.2\n"
+"X-Generator: Weblate 3.8\n"
 
 #. module: auto_backup
 #: model_terms:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
@@ -79,8 +79,6 @@ msgid ""
 "Backups older than this will be deleted automatically. Set 0 to disable "
 "autodeletion."
 msgstr ""
-"Pričuvne kopije starije od ovog se automatski brišu. Postavite na 0 za "
-"onemogućavanje brisanja."
 
 #. module: auto_backup
 #: model_terms:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
@@ -191,7 +189,7 @@ msgstr ""
 #. module: auto_backup
 #: model_terms:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
 msgid "Execute backup"
-msgstr "Kreiraj pričuvnu kopiju"
+msgstr ""
 
 #. module: auto_backup
 #: model:ir.actions.server,name:auto_backup.action_server_backup
diff --git a/auto_backup/i18n/it.po b/auto_backup/i18n/it.po
index 28e8510b2e2..b857de52f88 100644
--- a/auto_backup/i18n/it.po
+++ b/auto_backup/i18n/it.po
@@ -9,8 +9,8 @@ msgstr ""
 "Project-Id-Version: Odoo Server 11.0\n"
 "Report-Msgid-Bugs-To: \n"
 "POT-Creation-Date: 2018-03-03 10:08+0000\n"
-"PO-Revision-Date: 2022-03-17 18:31+0000\n"
-"Last-Translator: Riccardo Bellanova <bellanova@webmonks.it>\n"
+"PO-Revision-Date: 2021-12-22 23:39+0000\n"
+"Last-Translator: Sergio Zanchetta <primes2h@gmail.com>\n"
 "Language-Team: Italian (https://www.transifex.com/oca/teams/23907/it/)\n"
 "Language: it\n"
 "MIME-Version: 1.0\n"
@@ -27,7 +27,7 @@ msgstr "/home/odoo/.ssh/id_rsa"
 #. module: auto_backup
 #: model:ir.model.fields,help:auto_backup.field_db_backup__folder
 msgid "Absolute path for storing the backups"
-msgstr "Percorso assoluto per archiviare i backup"
+msgstr "Percorso assoluto per conservare i backup"
 
 #. module: auto_backup
 #: model:ir.model.fields,field_description:auto_backup.field_db_backup__message_needaction
@@ -48,7 +48,7 @@ msgstr "Backup automatici"
 #. module: auto_backup
 #: model_terms:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
 msgid "Automatic backups of the database can be scheduled as follows:"
-msgstr "Il backup automatico dei database può essere programmato come segue:"
+msgstr "Il backup automatico del DB è pianificato come segue:"
 
 #. module: auto_backup
 #: model:mail.message.subtype,name:auto_backup.mail_message_subtype_failure
@@ -74,17 +74,18 @@ msgstr "Backup riuscito"
 
 #. module: auto_backup
 #: model:ir.model.fields,help:auto_backup.field_db_backup__days_to_keep
+#, fuzzy
 msgid ""
 "Backups older than this will be deleted automatically. Set 0 to disable "
 "autodeletion."
 msgstr ""
-"I backup più vecchi verranno eliminati automaticamente. Per disattivare "
-"l'eliminazione automatica impostare a 0."
+"I Backup antecedenti questo numero di giorni saranno eliminati "
+"automaticamente. Impostare a 0 per disattivare l'eliminazione automatica."
 
 #. module: auto_backup
 #: model_terms:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
 msgid "Basic backup configuration"
-msgstr "Configurazione base del backup"
+msgstr "Configurazione di base del backup"
 
 #. module: auto_backup
 #: model:ir.model.constraint,message:auto_backup.constraint_db_backup_name_unique
@@ -103,11 +104,13 @@ msgstr ""
 
 #. module: auto_backup
 #: model:ir.model.fields,help:auto_backup.field_db_backup__backup_format
+#, fuzzy
 msgid "Choose the format for this backup."
-msgstr "Scegliere il formato del backup."
+msgstr "Scegliere il tipo di archiviazione per questo metodo di backup. "
 
 #. module: auto_backup
 #: model:ir.model.fields,help:auto_backup.field_db_backup__method
+#, fuzzy
 msgid "Choose the storage method for this backup."
 msgstr "Scegliere il metodo di archiviazione per il backup."
 
@@ -171,7 +174,7 @@ msgstr "Backup del database riuscito."
 #. module: auto_backup
 #: model:ir.model.fields,field_description:auto_backup.field_db_backup__days_to_keep
 msgid "Days To Keep"
-msgstr "Giorni di conservazione"
+msgstr ""
 
 #. module: auto_backup
 #: model:ir.model.fields,field_description:auto_backup.field_db_backup__display_name
@@ -184,8 +187,8 @@ msgstr "Nome visualizzato"
 msgid ""
 "Do not save backups on your filestore, or you will backup your backups too!"
 msgstr ""
-"Non salvare i backup nel filestore altrimenti verrà anche effettuato un "
-"backup degli stessi backup."
+"Non salvare i backup nel proprio filestore altrimenti verrà effettuato anche "
+"un backup degli stessi backup."
 
 #. module: auto_backup
 #: model_terms:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
@@ -219,10 +222,11 @@ msgstr "Chi sta seguendo (partner)"
 
 #. module: auto_backup
 #: model_terms:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+#, fuzzy
 msgid "Go to Settings / Technical / Automation / Scheduled Actions."
 msgstr ""
-"Andare in Configurazione / Funzioni Tecniche / Automazione / Azioni "
-"programmate."
+"Andare in  Configurazione / Funzioni Tecniche / Automazione / Azioni "
+"Programmate."
 
 #. module: auto_backup
 #: model_terms:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
@@ -372,16 +376,18 @@ msgstr "Errore di consegna SMS"
 
 #. module: auto_backup
 #: model_terms:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+#, fuzzy
 msgid "Search the action named 'Backup scheduler'."
-msgstr "Cercare l'azione chiamata \"Pianificazione backup\"."
+msgstr "Cerca l'azione denominata 'Pianificazione del backup'."
 
 #. module: auto_backup
 #: model_terms:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
+#, fuzzy
 msgid ""
 "Set the scheduler to active and fill in how often you want backups generated."
 msgstr ""
-"Impostare il pianificatore su attivo e inserire la frequenza di generazione "
-"dei backup desiderata."
+"Impostare lo scheduler per attivare e compilare la frequenza con cui si "
+"desidera generare il backup."
 
 #. module: auto_backup
 #: model:ir.model.fields,field_description:auto_backup.field_db_backup__smart_search
@@ -391,7 +397,7 @@ msgstr "Ricerca intelligente"
 #. module: auto_backup
 #: model:ir.model.fields,help:auto_backup.field_db_backup__name
 msgid "Summary of this backup process"
-msgstr "Riepilogo del processo di backup"
+msgstr "Riepilogo di questo processo di backup"
 
 #. module: auto_backup
 #: model_terms:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
@@ -402,7 +408,7 @@ msgstr "Prova connessione SFTP"
 #: model:ir.model.fields,help:auto_backup.field_db_backup__sftp_host
 msgid ""
 "The host name or IP address from your remote server. For example 192.168.0.1"
-msgstr "Nome host o indirizzo IP del server remoto. Ad esempio 192.168.0.1"
+msgstr "Nome host o indirizzo IP del server remoto. Per esempio 192.168.0.1"
 
 #. module: auto_backup
 #: model:ir.model.fields,help:auto_backup.field_db_backup__sftp_password
@@ -479,7 +485,7 @@ msgstr "john"
 #. module: auto_backup
 #: model:ir.model.fields.selection,name:auto_backup.selection__db_backup__backup_format__dump
 msgid "pg_dump custom format (without filestore)"
-msgstr "Formato personalizzato pg_dump (senza filestore)"
+msgstr "formato personalizzato pg_dump (senza filestore)"
 
 #. module: auto_backup
 #: model_terms:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
diff --git a/auto_backup/models/db_backup.py b/auto_backup/models/db_backup.py
index cb7b517d3c8..b8625ceb323 100644
--- a/auto_backup/models/db_backup.py
+++ b/auto_backup/models/db_backup.py
@@ -139,9 +139,9 @@ def action_sftp_test_connection(self):
             pysftp.CredentialException,
             pysftp.ConnectionException,
             pysftp.SSHException,
-        ):
+        ) as exc:
             _logger.info("Connection Test Failed!", exc_info=True)
-            raise UserError(_("Connection Test Failed!"))
+            raise UserError(_("Connection Test Failed!")) from exc
 
     def action_backup(self):
         """Run selected backups."""
@@ -155,8 +155,8 @@ def action_backup(self):
                 # Directory must exist
                 try:
                     os.makedirs(rec.folder)
-                except OSError:
-                    pass
+                except OSError as exc:
+                    _logger.exception("Action backup - OSError: %s" % exc)
 
                 with open(os.path.join(rec.folder, filename), "wb") as destiny:
                     # Copy the cached backup
@@ -187,8 +187,10 @@ def action_backup(self):
                             # Directory must exist
                             try:
                                 remote.makedirs(rec.folder)
-                            except pysftp.ConnectionException:
-                                pass
+                            except pysftp.ConnectionException as exc:
+                                _logger.exception(
+                                    "pysftp ConnectionException: %s" % exc
+                                )
 
                             # Copy cached backup to remote server
                             with remote.open(
diff --git a/auto_backup/readme/CONTRIBUTORS.rst b/auto_backup/readme/CONTRIBUTORS.rst
index 552ecb558ed..e7cdbc74afa 100644
--- a/auto_backup/readme/CONTRIBUTORS.rst
+++ b/auto_backup/readme/CONTRIBUTORS.rst
@@ -5,3 +5,4 @@
 * Andrea Stirpe <a.stirpe@onestein.nl>
 * Aitor Bouzas <aitor.bouzas@adaptivecity.com>
 * Simone Vanin <simone.vanin@agilebg.com>
+* Vu Nguyen Anh <vuna2004@gmail.com>
diff --git a/auto_backup/readme/INSTALL.rst b/auto_backup/readme/INSTALL.rst
index 219bc85d0a2..3093fb989f2 100644
--- a/auto_backup/readme/INSTALL.rst
+++ b/auto_backup/readme/INSTALL.rst
@@ -1,3 +1,3 @@
 Before installing this module, you need to execute::
 
-    pip3 install pysftp==0.2.8
+    pip3 install pysftp==0.2.9
diff --git a/auto_backup/static/description/index.html b/auto_backup/static/description/index.html
index 89938633751..dc0a5f5dd4e 100644
--- a/auto_backup/static/description/index.html
+++ b/auto_backup/static/description/index.html
@@ -367,7 +367,7 @@ <h1 class="title">Database Auto-Backup</h1>
 !! This file is generated by oca-gen-addon-readme !!
 !! changes will be overwritten.                   !!
 !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! -->
-<p><a class="reference external" href="https://odoo-community.org/page/development-status"><img alt="Beta" src="https://img.shields.io/badge/maturity-Beta-yellow.png" /></a> <a class="reference external" href="http://www.gnu.org/licenses/agpl-3.0-standalone.html"><img alt="License: AGPL-3" src="https://img.shields.io/badge/licence-AGPL--3-blue.png" /></a> <a class="reference external" href="https://github.com/OCA/server-tools/tree/14.0/auto_backup"><img alt="OCA/server-tools" src="https://img.shields.io/badge/github-OCA%2Fserver--tools-lightgray.png?logo=github" /></a> <a class="reference external" href="https://translation.odoo-community.org/projects/server-tools-14-0/server-tools-14-0-auto_backup"><img alt="Translate me on Weblate" src="https://img.shields.io/badge/weblate-Translate%20me-F47D42.png" /></a> <a class="reference external" href="https://runbot.odoo-community.org/runbot/149/14.0"><img alt="Try me on Runbot" src="https://img.shields.io/badge/runbot-Try%20me-875A7B.png" /></a></p>
+<p><a class="reference external" href="https://odoo-community.org/page/development-status"><img alt="Beta" src="https://img.shields.io/badge/maturity-Beta-yellow.png" /></a> <a class="reference external" href="http://www.gnu.org/licenses/agpl-3.0-standalone.html"><img alt="License: AGPL-3" src="https://img.shields.io/badge/licence-AGPL--3-blue.png" /></a> <a class="reference external" href="https://github.com/OCA/server-tools/tree/15.0/auto_backup"><img alt="OCA/server-tools" src="https://img.shields.io/badge/github-OCA%2Fserver--tools-lightgray.png?logo=github" /></a> <a class="reference external" href="https://translation.odoo-community.org/projects/server-tools-15-0/server-tools-15-0-auto_backup"><img alt="Translate me on Weblate" src="https://img.shields.io/badge/weblate-Translate%20me-F47D42.png" /></a> <a class="reference external" href="https://runbot.odoo-community.org/runbot/149/15.0"><img alt="Try me on Runbot" src="https://img.shields.io/badge/runbot-Try%20me-875A7B.png" /></a></p>
 <p>A tool for all your back-ups, internal and external!</p>
 <p><strong>Table of contents</strong></p>
 <div class="contents local topic" id="contents">
@@ -404,7 +404,7 @@ <h1 class="title">Database Auto-Backup</h1>
 <h1><a class="toc-backref" href="#id1">Installation</a></h1>
 <p>Before installing this module, you need to execute:</p>
 <pre class="literal-block">
-pip3 install pysftp==0.2.8
+pip3 install pysftp==0.2.9
 </pre>
 </div>
 <div class="section" id="configuration">
@@ -470,7 +470,7 @@ <h1><a class="toc-backref" href="#id12">Bug Tracker</a></h1>
 <p>Bugs are tracked on <a class="reference external" href="https://github.com/OCA/server-tools/issues">GitHub Issues</a>.
 In case of trouble, please check there if your issue has already been reported.
 If you spotted it first, help us smashing it by providing a detailed and welcomed
-<a class="reference external" href="https://github.com/OCA/server-tools/issues/new?body=module:%20auto_backup%0Aversion:%2014.0%0A%0A**Steps%20to%20reproduce**%0A-%20...%0A%0A**Current%20behavior**%0A%0A**Expected%20behavior**">feedback</a>.</p>
+<a class="reference external" href="https://github.com/OCA/server-tools/issues/new?body=module:%20auto_backup%0Aversion:%2015.0%0A%0A**Steps%20to%20reproduce**%0A-%20...%0A%0A**Current%20behavior**%0A%0A**Expected%20behavior**">feedback</a>.</p>
 <p>Do not contact contributors directly about support or help with technical issues.</p>
 </div>
 <div class="section" id="credits">
@@ -495,6 +495,7 @@ <h2><a class="toc-backref" href="#id15">Contributors</a></h2>
 <li>Andrea Stirpe &lt;<a class="reference external" href="mailto:a.stirpe&#64;onestein.nl">a.stirpe&#64;onestein.nl</a>&gt;</li>
 <li>Aitor Bouzas &lt;<a class="reference external" href="mailto:aitor.bouzas&#64;adaptivecity.com">aitor.bouzas&#64;adaptivecity.com</a>&gt;</li>
 <li>Simone Vanin &lt;<a class="reference external" href="mailto:simone.vanin&#64;agilebg.com">simone.vanin&#64;agilebg.com</a>&gt;</li>
+<li>Vu Nguyen Anh &lt;<a class="reference external" href="mailto:vuna2004&#64;gmail.com">vuna2004&#64;gmail.com</a>&gt;</li>
 </ul>
 </div>
 <div class="section" id="maintainers">
@@ -504,7 +505,7 @@ <h2><a class="toc-backref" href="#id16">Maintainers</a></h2>
 <p>OCA, or the Odoo Community Association, is a nonprofit organization whose
 mission is to support the collaborative development of Odoo features and
 promote its widespread use.</p>
-<p>This module is part of the <a class="reference external" href="https://github.com/OCA/server-tools/tree/14.0/auto_backup">OCA/server-tools</a> project on GitHub.</p>
+<p>This module is part of the <a class="reference external" href="https://github.com/OCA/server-tools/tree/15.0/auto_backup">OCA/server-tools</a> project on GitHub.</p>
 <p>You are welcome to contribute. To learn how please visit <a class="reference external" href="https://odoo-community.org/page/Contribute">https://odoo-community.org/page/Contribute</a>.</p>
 </div>
 </div>
diff --git a/auto_backup/tests/test_db_backup.py b/auto_backup/tests/test_db_backup.py
index 99479980641..5c77e725729 100644
--- a/auto_backup/tests/test_db_backup.py
+++ b/auto_backup/tests/test_db_backup.py
@@ -4,6 +4,7 @@
 # Copyright 2016 LasLabs Inc.
 # License AGPL-3.0 or later (https://www.gnu.org/licenses/agpl).
 
+import logging
 import os
 from contextlib import contextmanager
 from datetime import datetime, timedelta
@@ -13,10 +14,11 @@
 from odoo.exceptions import UserError
 from odoo.tests import common
 
+_logger = logging.getLogger(__name__)
 try:
     import pysftp
-except ImportError:
-    pass
+except ImportError:  # pragma: no cover
+    _logger.debug("Cannot import pysftp")
 
 
 model = "odoo.addons.auto_backup.models.db_backup"
@@ -230,13 +232,13 @@ def test_filename_default(self):
         self.assertTrue(res.endswith(".dump.zip"))
 
     def test_filename_zip(self):
-        """It should return a dump.zip filename"""
+        """It should return a dump.zip filenam"""
         now = datetime.now()
         res = self.Model.filename(now, ext="zip")
         self.assertTrue(res.endswith(".dump.zip"))
 
     def test_filename_dump(self):
-        """It should return a dump filename"""
+        """It should return a dump filenam"""
         now = datetime.now()
         res = self.Model.filename(now, ext="dump")
         self.assertTrue(res.endswith(".dump"))

From 8d0aedf0ed5b57aa31e38277f06f6a3287ba8143 Mon Sep 17 00:00:00 2001
From: Ignacio Buioli <ibuioli@gmail.com>
Date: Sun, 9 Oct 2022 19:35:52 +0000
Subject: [PATCH 33/52] Translated using Weblate (Spanish (Argentina))

Currently translated at 100.0% (86 of 86 strings)

Translation: server-tools-15.0/server-tools-15.0-auto_backup
Translate-URL: https://translation.odoo-community.org/projects/server-tools-15-0/server-tools-15-0-auto_backup/es_AR/
---
 auto_backup/i18n/es_AR.po | 166 +++++++++++++++++++++-----------------
 1 file changed, 93 insertions(+), 73 deletions(-)

diff --git a/auto_backup/i18n/es_AR.po b/auto_backup/i18n/es_AR.po
index a1baa8ac917..4652f163e02 100644
--- a/auto_backup/i18n/es_AR.po
+++ b/auto_backup/i18n/es_AR.po
@@ -9,68 +9,71 @@ msgstr ""
 "Project-Id-Version: Odoo Server 10.0\n"
 "Report-Msgid-Bugs-To: \n"
 "POT-Creation-Date: 2017-02-18 02:29+0000\n"
-"PO-Revision-Date: 2017-02-18 02:29+0000\n"
-"Last-Translator: OCA Transbot <transbot@odoo-community.org>, 2016\n"
-"Language-Team: Spanish (Argentina) (https://www.transifex.com/oca/"
-"teams/23907/es_AR/)\n"
+"PO-Revision-Date: 2022-10-09 22:35+0000\n"
+"Last-Translator: Ignacio Buioli <ibuioli@gmail.com>\n"
+"Language-Team: Spanish (Argentina) (https://www.transifex.com/oca/teams/"
+"23907/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"
+"Plural-Forms: nplurals=2; plural=n != 1;\n"
+"X-Generator: Weblate 4.3.2\n"
 
 #. module: auto_backup
 #: model_terms:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
 msgid "/home/odoo/.ssh/id_rsa"
-msgstr ""
+msgstr "/home/odoo/.ssh/id_rsa"
 
 #. module: auto_backup
 #: model:ir.model.fields,help:auto_backup.field_db_backup__folder
 msgid "Absolute path for storing the backups"
-msgstr ""
+msgstr "Ruta absoluta para almacenar las Copias de Seguridad"
 
 #. module: auto_backup
 #: model:ir.model.fields,field_description:auto_backup.field_db_backup__message_needaction
 msgid "Action Needed"
-msgstr ""
+msgstr "Acción Requerida"
 
 #. module: auto_backup
 #: model:ir.model.fields,field_description:auto_backup.field_db_backup__message_attachment_count
 msgid "Attachment Count"
-msgstr ""
+msgstr "Cuenta de Adjuntos"
 
 #. module: auto_backup
 #: model:ir.actions.act_window,name:auto_backup.action_backup_conf_form
 #: model:ir.ui.menu,name:auto_backup.backup_conf_menu
 msgid "Automated Backups"
-msgstr ""
+msgstr "Copias de Seguridad Automatizadas"
 
 #. module: auto_backup
 #: model_terms:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
 msgid "Automatic backups of the database can be scheduled as follows:"
 msgstr ""
+"Las copias de seguridad automática de la base de datos puede planificarse de "
+"la siguiente manera:"
 
 #. module: auto_backup
 #: model:mail.message.subtype,name:auto_backup.mail_message_subtype_failure
 msgid "Backup Failed"
-msgstr ""
+msgstr "Copia de Seguridad Falló"
 
 #. module: auto_backup
 #: model:ir.model.fields,field_description:auto_backup.field_db_backup__backup_format
 msgid "Backup Format"
-msgstr ""
+msgstr "Formato de Copia de Seguridad"
 
 #. module: auto_backup
 #: model:ir.actions.server,name:auto_backup.ir_cron_backup_scheduler_0_ir_actions_server
 #: model:ir.cron,cron_name:auto_backup.ir_cron_backup_scheduler_0
 #: model:ir.cron,name:auto_backup.ir_cron_backup_scheduler_0
 msgid "Backup Scheduler"
-msgstr ""
+msgstr "Planificador de Copia de Seguridad"
 
 #. module: auto_backup
 #: model:mail.message.subtype,name:auto_backup.mail_message_subtype_success
 msgid "Backup Successful"
-msgstr ""
+msgstr "Copia de Seguridad Satisfactoria"
 
 #. module: auto_backup
 #: model:ir.model.fields,help:auto_backup.field_db_backup__days_to_keep
@@ -78,64 +81,66 @@ msgid ""
 "Backups older than this will be deleted automatically. Set 0 to disable "
 "autodeletion."
 msgstr ""
+"Las Copias de Seguridad antiguas se eliminarán automáticamente. Coloque 0 "
+"para deshabilitar la eliminación automática."
 
 #. module: auto_backup
 #: model_terms:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
 msgid "Basic backup configuration"
-msgstr ""
+msgstr "Configuración básica de la copia de seguridad"
 
 #. module: auto_backup
 #: model:ir.model.constraint,message:auto_backup.constraint_db_backup_name_unique
 msgid "Cannot duplicate a configuration."
-msgstr ""
+msgstr "No se puede duplicar una configuración."
 
 #. module: auto_backup
 #: model:ir.model.fields,field_description:auto_backup.field_db_backup__changeset_change_ids
 msgid "Changeset Changes"
-msgstr ""
+msgstr "Cambios en el Conjunto de Cambios"
 
 #. module: auto_backup
 #: model:ir.model.fields,field_description:auto_backup.field_db_backup__changeset_ids
 msgid "Changesets"
-msgstr ""
+msgstr "Conjunto de Cambios"
 
 #. module: auto_backup
 #: model:ir.model.fields,help:auto_backup.field_db_backup__backup_format
 msgid "Choose the format for this backup."
-msgstr ""
+msgstr "Elija el formato para esta copia de seguridad."
 
 #. module: auto_backup
 #: model:ir.model.fields,help:auto_backup.field_db_backup__method
 msgid "Choose the storage method for this backup."
-msgstr ""
+msgstr "Elija el método de almacenamiento para esta copia de seguridad."
 
 #. module: auto_backup
 #: code:addons/auto_backup/models/db_backup.py:0
 #, python-format
 msgid "Cleanup of old database backups failed."
-msgstr ""
+msgstr "La limpieza de una base de datos antigua falló."
 
 #. module: auto_backup
 #: code:addons/auto_backup/models/db_backup.py:0
 #, python-format
 msgid "Connection Test Failed!"
-msgstr ""
+msgstr "¡La Prueba de Conexión Falló!"
 
 #. module: auto_backup
 #: code:addons/auto_backup/models/db_backup.py:0
 #, python-format
 msgid "Connection Test Succeeded!"
-msgstr ""
+msgstr "¡Prueba de Conexión Exitosa!"
 
 #. module: auto_backup
 #: model:ir.model.fields,field_description:auto_backup.field_db_backup__count_pending_changeset_changes
 msgid "Count Pending Changeset Changes"
-msgstr ""
+msgstr "Contar los Cambios Pendientes del Conjunto de Cambios"
 
 #. module: auto_backup
 #: model:ir.model.fields,field_description:auto_backup.field_db_backup__count_pending_changesets
 msgid "Count Pending Changesets"
-msgstr ""
+msgstr "Contar Conjunto de Cambios Pendientes"
 
 #. module: auto_backup
 #: model:ir.model.fields,field_description:auto_backup.field_db_backup__create_uid
@@ -150,26 +155,26 @@ msgstr "Creado en"
 #. module: auto_backup
 #: model:ir.model,name:auto_backup.model_db_backup
 msgid "Database Backup"
-msgstr ""
+msgstr "Copia de Seguridad de la Base de Datos"
 
 #. module: auto_backup
 #: code:addons/auto_backup/models/db_backup.py:0
 #: model:mail.message.subtype,description:auto_backup.mail_message_subtype_failure
 #, python-format
 msgid "Database backup failed."
-msgstr ""
+msgstr "La copia de seguridad de la base de datos falló."
 
 #. module: auto_backup
 #: code:addons/auto_backup/models/db_backup.py:0
 #: model:mail.message.subtype,description:auto_backup.mail_message_subtype_success
 #, python-format
 msgid "Database backup succeeded."
-msgstr ""
+msgstr "La copia de seguridad de la base de datos se realizó exitosamente."
 
 #. module: auto_backup
 #: model:ir.model.fields,field_description:auto_backup.field_db_backup__days_to_keep
 msgid "Days To Keep"
-msgstr ""
+msgstr "Días a Mantener"
 
 #. module: auto_backup
 #: model:ir.model.fields,field_description:auto_backup.field_db_backup__display_name
@@ -182,51 +187,54 @@ msgstr "Mostrar Nombre"
 msgid ""
 "Do not save backups on your filestore, or you will backup your backups too!"
 msgstr ""
+"¡No almacene sus copias en su filestore, o hará copias de sus copias también!"
 
 #. module: auto_backup
 #: model_terms:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
 msgid "Execute backup"
-msgstr ""
+msgstr "Ejecutar Copia de Seguridad"
 
 #. module: auto_backup
 #: model:ir.actions.server,name:auto_backup.action_server_backup
 msgid "Execute backup(s)"
-msgstr ""
+msgstr "Ejecutar copia(s) de seguridad"
 
 #. module: auto_backup
 #: model:ir.model.fields,field_description:auto_backup.field_db_backup__folder
 msgid "Folder"
-msgstr ""
+msgstr "Carpeta"
 
 #. module: auto_backup
 #: model:ir.model.fields,field_description:auto_backup.field_db_backup__message_follower_ids
 msgid "Followers"
-msgstr ""
+msgstr "Seguidores"
 
 #. module: auto_backup
 #: model:ir.model.fields,field_description:auto_backup.field_db_backup__message_channel_ids
 msgid "Followers (Channels)"
-msgstr ""
+msgstr "Seguidores (Canales)"
 
 #. module: auto_backup
 #: model:ir.model.fields,field_description:auto_backup.field_db_backup__message_partner_ids
 msgid "Followers (Partners)"
-msgstr ""
+msgstr "Seguidores (Contactos)"
 
 #. module: auto_backup
 #: model_terms:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
 msgid "Go to Settings / Technical / Automation / Scheduled Actions."
-msgstr ""
+msgstr "Ir a Ajustes / Técnico / Automatización / Acciones planificadas."
 
 #. module: auto_backup
 #: model_terms:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
 msgid "Help"
-msgstr ""
+msgstr "Ayuda"
 
 #. module: auto_backup
 #: model:ir.model.constraint,message:auto_backup.constraint_db_backup_days_to_keep_positive
 msgid "I cannot remove backups from the future. Ask Doc for that."
 msgstr ""
+"No puedo eliminar una copia de seguridad del futuro. Pregunte a su Doctor "
+"por eso."
 
 #. module: auto_backup
 #: model:ir.model.fields,field_description:auto_backup.field_db_backup__id
@@ -237,18 +245,18 @@ msgstr "ID"
 #: model:ir.model.fields,help:auto_backup.field_db_backup__message_needaction
 #: model:ir.model.fields,help:auto_backup.field_db_backup__message_unread
 msgid "If checked, new messages require your attention."
-msgstr ""
+msgstr "Si está marcado, los nuevos mensajes requieren su atención."
 
 #. module: auto_backup
 #: model:ir.model.fields,help:auto_backup.field_db_backup__message_has_error
 #: model:ir.model.fields,help:auto_backup.field_db_backup__message_has_sms_error
 msgid "If checked, some messages have a delivery error."
-msgstr ""
+msgstr "Si está marcado, algunos mensajes tienen error de entrega."
 
 #. module: auto_backup
 #: model:ir.model.fields,field_description:auto_backup.field_db_backup__message_is_follower
 msgid "Is Follower"
-msgstr ""
+msgstr "Es Seguidor"
 
 #. module: auto_backup
 #: model:ir.model.fields,field_description:auto_backup.field_db_backup____last_update
@@ -268,27 +276,27 @@ msgstr "Última actualización el"
 #. module: auto_backup
 #: model:ir.model.fields.selection,name:auto_backup.selection__db_backup__method__local
 msgid "Local disk"
-msgstr ""
+msgstr "Disco local"
 
 #. module: auto_backup
 #: model:ir.model.fields,field_description:auto_backup.field_db_backup__message_main_attachment_id
 msgid "Main Attachment"
-msgstr ""
+msgstr "Adjunto Principal"
 
 #. module: auto_backup
 #: model:ir.model.fields,field_description:auto_backup.field_db_backup__message_has_error
 msgid "Message Delivery error"
-msgstr ""
+msgstr "Error de Entrega de Mensaje"
 
 #. module: auto_backup
 #: model:ir.model.fields,field_description:auto_backup.field_db_backup__message_ids
 msgid "Messages"
-msgstr ""
+msgstr "Mensajes"
 
 #. module: auto_backup
 #: model:ir.model.fields,field_description:auto_backup.field_db_backup__method
 msgid "Method"
-msgstr ""
+msgstr "Método"
 
 #. module: auto_backup
 #: model:ir.model.fields,field_description:auto_backup.field_db_backup__name
@@ -298,27 +306,27 @@ msgstr "Nombre"
 #. module: auto_backup
 #: model:ir.model.fields,field_description:auto_backup.field_db_backup__message_needaction_counter
 msgid "Number of Actions"
-msgstr ""
+msgstr "Número de Acciones"
 
 #. module: auto_backup
 #: model:ir.model.fields,field_description:auto_backup.field_db_backup__message_has_error_counter
 msgid "Number of errors"
-msgstr ""
+msgstr "Número de errores"
 
 #. module: auto_backup
 #: model:ir.model.fields,help:auto_backup.field_db_backup__message_needaction_counter
 msgid "Number of messages which requires an action"
-msgstr ""
+msgstr "Número de mensajes que requieren una acción"
 
 #. module: auto_backup
 #: model:ir.model.fields,help:auto_backup.field_db_backup__message_has_error_counter
 msgid "Number of messages with delivery error"
-msgstr ""
+msgstr "Número de mensajes con error de entrega"
 
 #. module: auto_backup
 #: model:ir.model.fields,help:auto_backup.field_db_backup__message_unread_counter
 msgid "Number of unread messages"
-msgstr ""
+msgstr "Número de mensajes sin leer"
 
 #. module: auto_backup
 #: model:ir.model.fields,help:auto_backup.field_db_backup__sftp_private_key
@@ -326,73 +334,79 @@ msgid ""
 "Path to the private key file. Only the Odoo user should have read "
 "permissions for that file."
 msgstr ""
+"Ruta al archivo de la private key. Solo el usuario Odoo debe poder tener "
+"permisos de lectura a ese archivo."
 
 #. module: auto_backup
 #: model:ir.model.fields,field_description:auto_backup.field_db_backup__sftp_private_key
 msgid "Private key location"
-msgstr ""
+msgstr "Ubicación de la Private Key"
 
 #. module: auto_backup
 #: model:ir.model.fields.selection,name:auto_backup.selection__db_backup__method__sftp
 msgid "Remote SFTP server"
-msgstr ""
+msgstr "Servidor SFTP remoto"
 
 #. module: auto_backup
 #: model:ir.model.fields,field_description:auto_backup.field_db_backup__sftp_password
 msgid "SFTP Password"
-msgstr ""
+msgstr "Contraseña SFTP"
 
 #. module: auto_backup
 #: model:ir.model.fields,field_description:auto_backup.field_db_backup__sftp_port
 msgid "SFTP Port"
-msgstr ""
+msgstr "Puerto SFTP"
 
 #. module: auto_backup
 #: model:ir.model.fields,field_description:auto_backup.field_db_backup__sftp_host
 msgid "SFTP Server"
-msgstr ""
+msgstr "Servidor SFTP"
 
 #. module: auto_backup
 #: model_terms:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
 msgid "SFTP Settings"
-msgstr ""
+msgstr "Configuración SFTP"
 
 #. module: auto_backup
 #: model:ir.model.fields,field_description:auto_backup.field_db_backup__message_has_sms_error
 msgid "SMS Delivery error"
-msgstr ""
+msgstr "Error de entrega de SMS"
 
 #. module: auto_backup
 #: model_terms:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
 msgid "Search the action named 'Backup scheduler'."
-msgstr ""
+msgstr "Busque la acción llamada 'Planificador de Copia de Seguridad'."
 
 #. module: auto_backup
 #: model_terms:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
 msgid ""
 "Set the scheduler to active and fill in how often you want backups generated."
 msgstr ""
+"Configure el planificador como activo y complete que tan frecuente quiere "
+"generar las copias de seguridad."
 
 #. module: auto_backup
 #: model:ir.model.fields,field_description:auto_backup.field_db_backup__smart_search
 msgid "Smart Search"
-msgstr ""
+msgstr "Búsqueda Inteligente"
 
 #. module: auto_backup
 #: model:ir.model.fields,help:auto_backup.field_db_backup__name
 msgid "Summary of this backup process"
-msgstr ""
+msgstr "Resumen del proceso de esta copia de seguridad"
 
 #. module: auto_backup
 #: model_terms:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
 msgid "Test SFTP Connection"
-msgstr ""
+msgstr "Probar Conexión SFTP"
 
 #. module: auto_backup
 #: model:ir.model.fields,help:auto_backup.field_db_backup__sftp_host
 msgid ""
 "The host name or IP address from your remote server. For example 192.168.0.1"
 msgstr ""
+"El nombre del host o la dirección IP de su servidor remoto. Por ejemplo 192."
+"168.0.1"
 
 #. module: auto_backup
 #: model:ir.model.fields,help:auto_backup.field_db_backup__sftp_password
@@ -400,11 +414,13 @@ msgid ""
 "The password for the SFTP connection. If you specify a private key file, "
 "then this is the password to decrypt it."
 msgstr ""
+"La contraseña para la conexión SFTP. Si especifica un archivo private key, "
+"entonces esta es la contraseña para desencriptarlo."
 
 #. module: auto_backup
 #: model:ir.model.fields,help:auto_backup.field_db_backup__sftp_port
 msgid "The port on the FTP server that accepts SSH/SFTP calls."
-msgstr ""
+msgstr "El puerto en el servidor FTP que acepta llamadas SSH/SFTP."
 
 #. module: auto_backup
 #: model:ir.model.fields,help:auto_backup.field_db_backup__sftp_user
@@ -412,16 +428,18 @@ msgid ""
 "The username where the SFTP connection should be made with. This is the user "
 "on the external server."
 msgstr ""
+"El nombre de usuario con el que se debe realizar la conexión SFTP. Este es "
+"el usuario en el servidor externo."
 
 #. module: auto_backup
 #: model:ir.model.fields,field_description:auto_backup.field_db_backup__message_unread
 msgid "Unread Messages"
-msgstr ""
+msgstr "Mensajes Sin Leer"
 
 #. module: auto_backup
 #: model:ir.model.fields,field_description:auto_backup.field_db_backup__message_unread_counter
 msgid "Unread Messages Counter"
-msgstr ""
+msgstr "Contador de Mensajes Sin Leer"
 
 #. module: auto_backup
 #: model_terms:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
@@ -429,48 +447,50 @@ msgid ""
 "Use SFTP with caution! This writes files to external servers under the path "
 "you specify."
 msgstr ""
+"¡Use SFTP con precaución! Esto escribe archivos en servidores externos en la "
+"ruta que especifique."
 
 #. module: auto_backup
 #: model:ir.model.fields,field_description:auto_backup.field_db_backup__user_can_see_changeset
 msgid "User Can See Changeset"
-msgstr ""
+msgstr "El usuario puede ver el Conjunto de Cambios"
 
 #. module: auto_backup
 #: model:ir.model.fields,field_description:auto_backup.field_db_backup__sftp_user
 msgid "Username in the SFTP Server"
-msgstr ""
+msgstr "Nombre de Usuario en el Servidor SFTP"
 
 #. module: auto_backup
 #: model_terms:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
 msgid "Warning:"
-msgstr ""
+msgstr "Advertencia:"
 
 #. module: auto_backup
 #: model:ir.model.fields,field_description:auto_backup.field_db_backup__website_message_ids
 msgid "Website Messages"
-msgstr ""
+msgstr "Mensajes del Sitio Web"
 
 #. module: auto_backup
 #: model:ir.model.fields,help:auto_backup.field_db_backup__website_message_ids
 msgid "Website communication history"
-msgstr ""
+msgstr "Historial de comunicación del sitio web"
 
 #. module: auto_backup
 #: model_terms:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
 msgid "john"
-msgstr ""
+msgstr "juan"
 
 #. module: auto_backup
 #: model:ir.model.fields.selection,name:auto_backup.selection__db_backup__backup_format__dump
 msgid "pg_dump custom format (without filestore)"
-msgstr ""
+msgstr "pg_dump formato personalizado (sin filestore)"
 
 #. module: auto_backup
 #: model_terms:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
 msgid "sftp.example.com"
-msgstr ""
+msgstr "sftp.ejemplo.com"
 
 #. module: auto_backup
 #: model:ir.model.fields.selection,name:auto_backup.selection__db_backup__backup_format__zip
 msgid "zip (includes filestore)"
-msgstr ""
+msgstr "zip (incluye filestore)"

From 49fd083ef121824be547ed1c98af909c0d8fa67a Mon Sep 17 00:00:00 2001
From: mymage <stefano.consolaro@mymage.it>
Date: Wed, 28 Dec 2022 20:42:17 +0000
Subject: [PATCH 34/52] Translated using Weblate (Italian)

Currently translated at 86.0% (74 of 86 strings)

Translation: server-tools-15.0/server-tools-15.0-auto_backup
Translate-URL: https://translation.odoo-community.org/projects/server-tools-15-0/server-tools-15-0-auto_backup/it/
---
 auto_backup/i18n/it.po | 8 ++++----
 1 file changed, 4 insertions(+), 4 deletions(-)

diff --git a/auto_backup/i18n/it.po b/auto_backup/i18n/it.po
index b857de52f88..4a7d1864c6c 100644
--- a/auto_backup/i18n/it.po
+++ b/auto_backup/i18n/it.po
@@ -9,15 +9,15 @@ msgstr ""
 "Project-Id-Version: Odoo Server 11.0\n"
 "Report-Msgid-Bugs-To: \n"
 "POT-Creation-Date: 2018-03-03 10:08+0000\n"
-"PO-Revision-Date: 2021-12-22 23:39+0000\n"
-"Last-Translator: Sergio Zanchetta <primes2h@gmail.com>\n"
+"PO-Revision-Date: 2022-12-28 22:46+0000\n"
+"Last-Translator: mymage <stefano.consolaro@mymage.it>\n"
 "Language-Team: Italian (https://www.transifex.com/oca/teams/23907/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"
-"X-Generator: Weblate 4.3.2\n"
+"X-Generator: Weblate 4.14.1\n"
 
 #. module: auto_backup
 #: model_terms:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
@@ -253,7 +253,7 @@ msgstr "Se selezionata, nuovi messaggi richiedono attenzione."
 #: model:ir.model.fields,help:auto_backup.field_db_backup__message_has_error
 #: model:ir.model.fields,help:auto_backup.field_db_backup__message_has_sms_error
 msgid "If checked, some messages have a delivery error."
-msgstr "Se selezionata, alcuni messaggi presentano un errore di consegna."
+msgstr "Se selezionata, alcuni messaggi hanno un errore di consegna."
 
 #. module: auto_backup
 #: model:ir.model.fields,field_description:auto_backup.field_db_backup__message_is_follower

From 7a91eada44ab290973c37958dd2a3dea98dcced9 Mon Sep 17 00:00:00 2001
From: Francesco Foresti <francesco.foresti@ooops404.com>
Date: Fri, 30 Dec 2022 08:57:12 +0000
Subject: [PATCH 35/52] Translated using Weblate (Italian)

Currently translated at 86.0% (74 of 86 strings)

Translation: server-tools-15.0/server-tools-15.0-auto_backup
Translate-URL: https://translation.odoo-community.org/projects/server-tools-15-0/server-tools-15-0-auto_backup/it/
---
 auto_backup/i18n/it.po | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/auto_backup/i18n/it.po b/auto_backup/i18n/it.po
index 4a7d1864c6c..ac32d4bdf5a 100644
--- a/auto_backup/i18n/it.po
+++ b/auto_backup/i18n/it.po
@@ -9,8 +9,8 @@ msgstr ""
 "Project-Id-Version: Odoo Server 11.0\n"
 "Report-Msgid-Bugs-To: \n"
 "POT-Creation-Date: 2018-03-03 10:08+0000\n"
-"PO-Revision-Date: 2022-12-28 22:46+0000\n"
-"Last-Translator: mymage <stefano.consolaro@mymage.it>\n"
+"PO-Revision-Date: 2022-12-30 11:47+0000\n"
+"Last-Translator: Francesco Foresti <francesco.foresti@ooops404.com>\n"
 "Language-Team: Italian (https://www.transifex.com/oca/teams/23907/it/)\n"
 "Language: it\n"
 "MIME-Version: 1.0\n"
@@ -372,7 +372,7 @@ msgstr "Impostazioni SFTP"
 #. module: auto_backup
 #: model:ir.model.fields,field_description:auto_backup.field_db_backup__message_has_sms_error
 msgid "SMS Delivery error"
-msgstr "Errore di consegna SMS"
+msgstr "Errore consegna SMS"
 
 #. module: auto_backup
 #: model_terms:ir.ui.view,arch_db:auto_backup.view_backup_conf_form

From b90b5af8f0aa43ec191c004801956749524aa4b3 Mon Sep 17 00:00:00 2001
From: mymage <stefano.consolaro@mymage.it>
Date: Sun, 1 Jan 2023 12:04:29 +0000
Subject: [PATCH 36/52] Translated using Weblate (Italian)

Currently translated at 86.0% (74 of 86 strings)

Translation: server-tools-15.0/server-tools-15.0-auto_backup
Translate-URL: https://translation.odoo-community.org/projects/server-tools-15-0/server-tools-15-0-auto_backup/it/
---
 auto_backup/i18n/auto_backup.pot | 10 ++++++++++
 auto_backup/i18n/it.po           |  6 +++---
 2 files changed, 13 insertions(+), 3 deletions(-)

diff --git a/auto_backup/i18n/auto_backup.pot b/auto_backup/i18n/auto_backup.pot
index b810b99edbc..03af47e3b56 100644
--- a/auto_backup/i18n/auto_backup.pot
+++ b/auto_backup/i18n/auto_backup.pot
@@ -410,6 +410,16 @@ msgstr ""
 msgid "Warning:"
 msgstr ""
 
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__website_message_ids
+msgid "Website Messages"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,help:auto_backup.field_db_backup__website_message_ids
+msgid "Website communication history"
+msgstr ""
+
 #. module: auto_backup
 #: model_terms:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
 msgid "john"
diff --git a/auto_backup/i18n/it.po b/auto_backup/i18n/it.po
index ac32d4bdf5a..fd891143fa8 100644
--- a/auto_backup/i18n/it.po
+++ b/auto_backup/i18n/it.po
@@ -9,8 +9,8 @@ msgstr ""
 "Project-Id-Version: Odoo Server 11.0\n"
 "Report-Msgid-Bugs-To: \n"
 "POT-Creation-Date: 2018-03-03 10:08+0000\n"
-"PO-Revision-Date: 2022-12-30 11:47+0000\n"
-"Last-Translator: Francesco Foresti <francesco.foresti@ooops404.com>\n"
+"PO-Revision-Date: 2023-01-01 14:45+0000\n"
+"Last-Translator: mymage <stefano.consolaro@mymage.it>\n"
 "Language-Team: Italian (https://www.transifex.com/oca/teams/23907/it/)\n"
 "Language: it\n"
 "MIME-Version: 1.0\n"
@@ -48,7 +48,7 @@ msgstr "Backup automatici"
 #. module: auto_backup
 #: model_terms:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
 msgid "Automatic backups of the database can be scheduled as follows:"
-msgstr "Il backup automatico del DB è pianificato come segue:"
+msgstr "Il backup automatico del DiBa è pianificato come segue:"
 
 #. module: auto_backup
 #: model:mail.message.subtype,name:auto_backup.mail_message_subtype_failure

From 4868296031371fab407f6714ff1a4fb730a32bbb Mon Sep 17 00:00:00 2001
From: Weblate <noreply@weblate.org>
Date: Thu, 12 Jan 2023 07:55:31 +0000
Subject: [PATCH 37/52] Update translation files

Updated by "Update PO files to match POT (msgmerge)" hook in Weblate.

Translation: server-tools-15.0/server-tools-15.0-auto_backup
Translate-URL: https://translation.odoo-community.org/projects/server-tools-15-0/server-tools-15-0-auto_backup/
---
 auto_backup/i18n/am.po       | 40 +++------------------
 auto_backup/i18n/ar.po       | 40 +++------------------
 auto_backup/i18n/bg.po       | 40 +++------------------
 auto_backup/i18n/bs.po       | 40 +++------------------
 auto_backup/i18n/ca.po       | 40 +++------------------
 auto_backup/i18n/cs.po       | 40 +++------------------
 auto_backup/i18n/cs_CZ.po    | 40 +++------------------
 auto_backup/i18n/da.po       | 40 +++------------------
 auto_backup/i18n/de.po       | 40 +++------------------
 auto_backup/i18n/el_GR.po    | 40 +++------------------
 auto_backup/i18n/en_GB.po    | 40 +++------------------
 auto_backup/i18n/es.po       | 40 +++------------------
 auto_backup/i18n/es_AR.po    | 69 ++++++++++++++++--------------------
 auto_backup/i18n/es_CL.po    | 40 +++------------------
 auto_backup/i18n/es_CO.po    | 40 +++------------------
 auto_backup/i18n/es_CR.po    | 40 +++------------------
 auto_backup/i18n/es_DO.po    | 40 +++------------------
 auto_backup/i18n/es_EC.po    | 40 +++------------------
 auto_backup/i18n/es_ES.po    | 40 +++------------------
 auto_backup/i18n/es_MX.po    | 40 +++------------------
 auto_backup/i18n/es_PE.po    | 40 +++------------------
 auto_backup/i18n/es_PY.po    | 40 +++------------------
 auto_backup/i18n/es_VE.po    | 40 +++------------------
 auto_backup/i18n/et.po       | 40 +++------------------
 auto_backup/i18n/eu.po       | 40 +++------------------
 auto_backup/i18n/fa.po       | 40 +++------------------
 auto_backup/i18n/fi.po       | 40 +++------------------
 auto_backup/i18n/fr.po       | 40 +++------------------
 auto_backup/i18n/fr_CA.po    | 40 +++------------------
 auto_backup/i18n/fr_CH.po    | 40 +++------------------
 auto_backup/i18n/gl.po       | 40 +++------------------
 auto_backup/i18n/gl_ES.po    | 40 +++------------------
 auto_backup/i18n/he.po       | 40 +++------------------
 auto_backup/i18n/hr.po       | 40 +++------------------
 auto_backup/i18n/hr_HR.po    | 40 +++------------------
 auto_backup/i18n/hu.po       | 40 +++------------------
 auto_backup/i18n/id.po       | 40 +++------------------
 auto_backup/i18n/it.po       | 46 ++++++------------------
 auto_backup/i18n/ja.po       | 40 +++------------------
 auto_backup/i18n/ko.po       | 40 +++------------------
 auto_backup/i18n/lt.po       | 40 +++------------------
 auto_backup/i18n/lt_LT.po    | 40 +++------------------
 auto_backup/i18n/lv.po       | 40 +++------------------
 auto_backup/i18n/mk.po       | 40 +++------------------
 auto_backup/i18n/mn.po       | 40 +++------------------
 auto_backup/i18n/nb.po       | 40 +++------------------
 auto_backup/i18n/nb_NO.po    | 40 +++------------------
 auto_backup/i18n/nl.po       | 40 +++------------------
 auto_backup/i18n/nl_BE.po    | 40 +++------------------
 auto_backup/i18n/nl_NL.po    | 40 +++------------------
 auto_backup/i18n/pl.po       | 40 +++------------------
 auto_backup/i18n/pt.po       | 40 +++------------------
 auto_backup/i18n/pt_BR.po    | 40 +++------------------
 auto_backup/i18n/pt_PT.po    | 40 +++------------------
 auto_backup/i18n/ro.po       | 40 +++------------------
 auto_backup/i18n/ru.po       | 40 +++------------------
 auto_backup/i18n/sk.po       | 40 +++------------------
 auto_backup/i18n/sl.po       | 40 +++------------------
 auto_backup/i18n/sr.po       | 40 +++------------------
 auto_backup/i18n/sr@latin.po | 40 +++------------------
 auto_backup/i18n/sv.po       | 40 +++------------------
 auto_backup/i18n/th.po       | 40 +++------------------
 auto_backup/i18n/tr.po       | 40 +++------------------
 auto_backup/i18n/tr_TR.po    | 40 +++------------------
 auto_backup/i18n/uk.po       | 40 +++------------------
 auto_backup/i18n/vi.po       | 40 +++------------------
 auto_backup/i18n/vi_VN.po    | 40 +++------------------
 auto_backup/i18n/zh_CN.po    | 43 +++++-----------------
 auto_backup/i18n/zh_TW.po    | 40 +++------------------
 69 files changed, 379 insertions(+), 2419 deletions(-)

diff --git a/auto_backup/i18n/am.po b/auto_backup/i18n/am.po
index f2350032a2a..f1ad8fc1235 100644
--- a/auto_backup/i18n/am.po
+++ b/auto_backup/i18n/am.po
@@ -88,16 +88,6 @@ msgstr ""
 msgid "Cannot duplicate a configuration."
 msgstr ""
 
-#. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup__changeset_change_ids
-msgid "Changeset Changes"
-msgstr ""
-
-#. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup__changeset_ids
-msgid "Changesets"
-msgstr ""
-
 #. module: auto_backup
 #: model:ir.model.fields,help:auto_backup.field_db_backup__backup_format
 msgid "Choose the format for this backup."
@@ -126,16 +116,6 @@ msgstr ""
 msgid "Connection Test Succeeded!"
 msgstr ""
 
-#. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup__count_pending_changeset_changes
-msgid "Count Pending Changeset Changes"
-msgstr ""
-
-#. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup__count_pending_changesets
-msgid "Count Pending Changesets"
-msgstr ""
-
 #. module: auto_backup
 #: model:ir.model.fields,field_description:auto_backup.field_db_backup__create_uid
 msgid "Created by"
@@ -202,11 +182,6 @@ msgstr ""
 msgid "Followers"
 msgstr ""
 
-#. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup__message_channel_ids
-msgid "Followers (Channels)"
-msgstr ""
-
 #. module: auto_backup
 #: model:ir.model.fields,field_description:auto_backup.field_db_backup__message_partner_ids
 msgid "Followers (Partners)"
@@ -217,6 +192,11 @@ msgstr ""
 msgid "Go to Settings / Technical / Automation / Scheduled Actions."
 msgstr ""
 
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__has_message
+msgid "Has Message"
+msgstr ""
+
 #. module: auto_backup
 #: model_terms:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
 msgid "Help"
@@ -372,11 +352,6 @@ msgid ""
 "Set the scheduler to active and fill in how often you want backups generated."
 msgstr ""
 
-#. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup__smart_search
-msgid "Smart Search"
-msgstr ""
-
 #. module: auto_backup
 #: model:ir.model.fields,help:auto_backup.field_db_backup__name
 msgid "Summary of this backup process"
@@ -429,11 +404,6 @@ msgid ""
 "you specify."
 msgstr ""
 
-#. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup__user_can_see_changeset
-msgid "User Can See Changeset"
-msgstr ""
-
 #. module: auto_backup
 #: model:ir.model.fields,field_description:auto_backup.field_db_backup__sftp_user
 msgid "Username in the SFTP Server"
diff --git a/auto_backup/i18n/ar.po b/auto_backup/i18n/ar.po
index e2b140e7be3..7b96bec8146 100644
--- a/auto_backup/i18n/ar.po
+++ b/auto_backup/i18n/ar.po
@@ -89,16 +89,6 @@ msgstr ""
 msgid "Cannot duplicate a configuration."
 msgstr ""
 
-#. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup__changeset_change_ids
-msgid "Changeset Changes"
-msgstr ""
-
-#. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup__changeset_ids
-msgid "Changesets"
-msgstr ""
-
 #. module: auto_backup
 #: model:ir.model.fields,help:auto_backup.field_db_backup__backup_format
 msgid "Choose the format for this backup."
@@ -127,16 +117,6 @@ msgstr ""
 msgid "Connection Test Succeeded!"
 msgstr ""
 
-#. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup__count_pending_changeset_changes
-msgid "Count Pending Changeset Changes"
-msgstr ""
-
-#. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup__count_pending_changesets
-msgid "Count Pending Changesets"
-msgstr ""
-
 #. module: auto_backup
 #: model:ir.model.fields,field_description:auto_backup.field_db_backup__create_uid
 msgid "Created by"
@@ -203,11 +183,6 @@ msgstr ""
 msgid "Followers"
 msgstr ""
 
-#. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup__message_channel_ids
-msgid "Followers (Channels)"
-msgstr ""
-
 #. module: auto_backup
 #: model:ir.model.fields,field_description:auto_backup.field_db_backup__message_partner_ids
 msgid "Followers (Partners)"
@@ -218,6 +193,11 @@ msgstr ""
 msgid "Go to Settings / Technical / Automation / Scheduled Actions."
 msgstr ""
 
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__has_message
+msgid "Has Message"
+msgstr ""
+
 #. module: auto_backup
 #: model_terms:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
 msgid "Help"
@@ -373,11 +353,6 @@ msgid ""
 "Set the scheduler to active and fill in how often you want backups generated."
 msgstr ""
 
-#. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup__smart_search
-msgid "Smart Search"
-msgstr ""
-
 #. module: auto_backup
 #: model:ir.model.fields,help:auto_backup.field_db_backup__name
 msgid "Summary of this backup process"
@@ -430,11 +405,6 @@ msgid ""
 "you specify."
 msgstr ""
 
-#. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup__user_can_see_changeset
-msgid "User Can See Changeset"
-msgstr ""
-
 #. module: auto_backup
 #: model:ir.model.fields,field_description:auto_backup.field_db_backup__sftp_user
 msgid "Username in the SFTP Server"
diff --git a/auto_backup/i18n/bg.po b/auto_backup/i18n/bg.po
index aea9bae3753..848b69ebb7e 100644
--- a/auto_backup/i18n/bg.po
+++ b/auto_backup/i18n/bg.po
@@ -88,16 +88,6 @@ msgstr ""
 msgid "Cannot duplicate a configuration."
 msgstr ""
 
-#. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup__changeset_change_ids
-msgid "Changeset Changes"
-msgstr ""
-
-#. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup__changeset_ids
-msgid "Changesets"
-msgstr ""
-
 #. module: auto_backup
 #: model:ir.model.fields,help:auto_backup.field_db_backup__backup_format
 msgid "Choose the format for this backup."
@@ -126,16 +116,6 @@ msgstr ""
 msgid "Connection Test Succeeded!"
 msgstr ""
 
-#. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup__count_pending_changeset_changes
-msgid "Count Pending Changeset Changes"
-msgstr ""
-
-#. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup__count_pending_changesets
-msgid "Count Pending Changesets"
-msgstr ""
-
 #. module: auto_backup
 #: model:ir.model.fields,field_description:auto_backup.field_db_backup__create_uid
 msgid "Created by"
@@ -202,11 +182,6 @@ msgstr ""
 msgid "Followers"
 msgstr ""
 
-#. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup__message_channel_ids
-msgid "Followers (Channels)"
-msgstr ""
-
 #. module: auto_backup
 #: model:ir.model.fields,field_description:auto_backup.field_db_backup__message_partner_ids
 msgid "Followers (Partners)"
@@ -217,6 +192,11 @@ msgstr ""
 msgid "Go to Settings / Technical / Automation / Scheduled Actions."
 msgstr ""
 
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__has_message
+msgid "Has Message"
+msgstr ""
+
 #. module: auto_backup
 #: model_terms:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
 msgid "Help"
@@ -372,11 +352,6 @@ msgid ""
 "Set the scheduler to active and fill in how often you want backups generated."
 msgstr ""
 
-#. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup__smart_search
-msgid "Smart Search"
-msgstr ""
-
 #. module: auto_backup
 #: model:ir.model.fields,help:auto_backup.field_db_backup__name
 msgid "Summary of this backup process"
@@ -429,11 +404,6 @@ msgid ""
 "you specify."
 msgstr ""
 
-#. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup__user_can_see_changeset
-msgid "User Can See Changeset"
-msgstr ""
-
 #. module: auto_backup
 #: model:ir.model.fields,field_description:auto_backup.field_db_backup__sftp_user
 msgid "Username in the SFTP Server"
diff --git a/auto_backup/i18n/bs.po b/auto_backup/i18n/bs.po
index b403d0b43d2..83ff5de0ec8 100644
--- a/auto_backup/i18n/bs.po
+++ b/auto_backup/i18n/bs.po
@@ -89,16 +89,6 @@ msgstr ""
 msgid "Cannot duplicate a configuration."
 msgstr ""
 
-#. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup__changeset_change_ids
-msgid "Changeset Changes"
-msgstr ""
-
-#. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup__changeset_ids
-msgid "Changesets"
-msgstr ""
-
 #. module: auto_backup
 #: model:ir.model.fields,help:auto_backup.field_db_backup__backup_format
 msgid "Choose the format for this backup."
@@ -127,16 +117,6 @@ msgstr ""
 msgid "Connection Test Succeeded!"
 msgstr ""
 
-#. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup__count_pending_changeset_changes
-msgid "Count Pending Changeset Changes"
-msgstr ""
-
-#. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup__count_pending_changesets
-msgid "Count Pending Changesets"
-msgstr ""
-
 #. module: auto_backup
 #: model:ir.model.fields,field_description:auto_backup.field_db_backup__create_uid
 msgid "Created by"
@@ -203,11 +183,6 @@ msgstr ""
 msgid "Followers"
 msgstr ""
 
-#. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup__message_channel_ids
-msgid "Followers (Channels)"
-msgstr ""
-
 #. module: auto_backup
 #: model:ir.model.fields,field_description:auto_backup.field_db_backup__message_partner_ids
 msgid "Followers (Partners)"
@@ -218,6 +193,11 @@ msgstr ""
 msgid "Go to Settings / Technical / Automation / Scheduled Actions."
 msgstr ""
 
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__has_message
+msgid "Has Message"
+msgstr ""
+
 #. module: auto_backup
 #: model_terms:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
 msgid "Help"
@@ -373,11 +353,6 @@ msgid ""
 "Set the scheduler to active and fill in how often you want backups generated."
 msgstr ""
 
-#. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup__smart_search
-msgid "Smart Search"
-msgstr ""
-
 #. module: auto_backup
 #: model:ir.model.fields,help:auto_backup.field_db_backup__name
 msgid "Summary of this backup process"
@@ -430,11 +405,6 @@ msgid ""
 "you specify."
 msgstr ""
 
-#. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup__user_can_see_changeset
-msgid "User Can See Changeset"
-msgstr ""
-
 #. module: auto_backup
 #: model:ir.model.fields,field_description:auto_backup.field_db_backup__sftp_user
 msgid "Username in the SFTP Server"
diff --git a/auto_backup/i18n/ca.po b/auto_backup/i18n/ca.po
index a6a0279b118..c89770b83f5 100644
--- a/auto_backup/i18n/ca.po
+++ b/auto_backup/i18n/ca.po
@@ -88,16 +88,6 @@ msgstr ""
 msgid "Cannot duplicate a configuration."
 msgstr ""
 
-#. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup__changeset_change_ids
-msgid "Changeset Changes"
-msgstr ""
-
-#. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup__changeset_ids
-msgid "Changesets"
-msgstr ""
-
 #. module: auto_backup
 #: model:ir.model.fields,help:auto_backup.field_db_backup__backup_format
 msgid "Choose the format for this backup."
@@ -126,16 +116,6 @@ msgstr ""
 msgid "Connection Test Succeeded!"
 msgstr ""
 
-#. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup__count_pending_changeset_changes
-msgid "Count Pending Changeset Changes"
-msgstr ""
-
-#. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup__count_pending_changesets
-msgid "Count Pending Changesets"
-msgstr ""
-
 #. module: auto_backup
 #: model:ir.model.fields,field_description:auto_backup.field_db_backup__create_uid
 msgid "Created by"
@@ -202,11 +182,6 @@ msgstr ""
 msgid "Followers"
 msgstr ""
 
-#. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup__message_channel_ids
-msgid "Followers (Channels)"
-msgstr ""
-
 #. module: auto_backup
 #: model:ir.model.fields,field_description:auto_backup.field_db_backup__message_partner_ids
 msgid "Followers (Partners)"
@@ -217,6 +192,11 @@ msgstr ""
 msgid "Go to Settings / Technical / Automation / Scheduled Actions."
 msgstr ""
 
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__has_message
+msgid "Has Message"
+msgstr ""
+
 #. module: auto_backup
 #: model_terms:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
 msgid "Help"
@@ -372,11 +352,6 @@ msgid ""
 "Set the scheduler to active and fill in how often you want backups generated."
 msgstr ""
 
-#. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup__smart_search
-msgid "Smart Search"
-msgstr ""
-
 #. module: auto_backup
 #: model:ir.model.fields,help:auto_backup.field_db_backup__name
 msgid "Summary of this backup process"
@@ -429,11 +404,6 @@ msgid ""
 "you specify."
 msgstr ""
 
-#. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup__user_can_see_changeset
-msgid "User Can See Changeset"
-msgstr ""
-
 #. module: auto_backup
 #: model:ir.model.fields,field_description:auto_backup.field_db_backup__sftp_user
 msgid "Username in the SFTP Server"
diff --git a/auto_backup/i18n/cs.po b/auto_backup/i18n/cs.po
index daa184ccc2b..8207f628239 100644
--- a/auto_backup/i18n/cs.po
+++ b/auto_backup/i18n/cs.po
@@ -88,16 +88,6 @@ msgstr ""
 msgid "Cannot duplicate a configuration."
 msgstr ""
 
-#. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup__changeset_change_ids
-msgid "Changeset Changes"
-msgstr ""
-
-#. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup__changeset_ids
-msgid "Changesets"
-msgstr ""
-
 #. module: auto_backup
 #: model:ir.model.fields,help:auto_backup.field_db_backup__backup_format
 msgid "Choose the format for this backup."
@@ -126,16 +116,6 @@ msgstr ""
 msgid "Connection Test Succeeded!"
 msgstr ""
 
-#. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup__count_pending_changeset_changes
-msgid "Count Pending Changeset Changes"
-msgstr ""
-
-#. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup__count_pending_changesets
-msgid "Count Pending Changesets"
-msgstr ""
-
 #. module: auto_backup
 #: model:ir.model.fields,field_description:auto_backup.field_db_backup__create_uid
 msgid "Created by"
@@ -202,11 +182,6 @@ msgstr ""
 msgid "Followers"
 msgstr ""
 
-#. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup__message_channel_ids
-msgid "Followers (Channels)"
-msgstr ""
-
 #. module: auto_backup
 #: model:ir.model.fields,field_description:auto_backup.field_db_backup__message_partner_ids
 msgid "Followers (Partners)"
@@ -217,6 +192,11 @@ msgstr ""
 msgid "Go to Settings / Technical / Automation / Scheduled Actions."
 msgstr ""
 
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__has_message
+msgid "Has Message"
+msgstr ""
+
 #. module: auto_backup
 #: model_terms:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
 msgid "Help"
@@ -372,11 +352,6 @@ msgid ""
 "Set the scheduler to active and fill in how often you want backups generated."
 msgstr ""
 
-#. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup__smart_search
-msgid "Smart Search"
-msgstr ""
-
 #. module: auto_backup
 #: model:ir.model.fields,help:auto_backup.field_db_backup__name
 msgid "Summary of this backup process"
@@ -429,11 +404,6 @@ msgid ""
 "you specify."
 msgstr ""
 
-#. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup__user_can_see_changeset
-msgid "User Can See Changeset"
-msgstr ""
-
 #. module: auto_backup
 #: model:ir.model.fields,field_description:auto_backup.field_db_backup__sftp_user
 msgid "Username in the SFTP Server"
diff --git a/auto_backup/i18n/cs_CZ.po b/auto_backup/i18n/cs_CZ.po
index 22ff6507724..1b71c3f8aed 100644
--- a/auto_backup/i18n/cs_CZ.po
+++ b/auto_backup/i18n/cs_CZ.po
@@ -89,16 +89,6 @@ msgstr ""
 msgid "Cannot duplicate a configuration."
 msgstr ""
 
-#. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup__changeset_change_ids
-msgid "Changeset Changes"
-msgstr ""
-
-#. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup__changeset_ids
-msgid "Changesets"
-msgstr ""
-
 #. module: auto_backup
 #: model:ir.model.fields,help:auto_backup.field_db_backup__backup_format
 msgid "Choose the format for this backup."
@@ -127,16 +117,6 @@ msgstr ""
 msgid "Connection Test Succeeded!"
 msgstr ""
 
-#. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup__count_pending_changeset_changes
-msgid "Count Pending Changeset Changes"
-msgstr ""
-
-#. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup__count_pending_changesets
-msgid "Count Pending Changesets"
-msgstr ""
-
 #. module: auto_backup
 #: model:ir.model.fields,field_description:auto_backup.field_db_backup__create_uid
 msgid "Created by"
@@ -203,11 +183,6 @@ msgstr ""
 msgid "Followers"
 msgstr ""
 
-#. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup__message_channel_ids
-msgid "Followers (Channels)"
-msgstr ""
-
 #. module: auto_backup
 #: model:ir.model.fields,field_description:auto_backup.field_db_backup__message_partner_ids
 msgid "Followers (Partners)"
@@ -218,6 +193,11 @@ msgstr ""
 msgid "Go to Settings / Technical / Automation / Scheduled Actions."
 msgstr ""
 
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__has_message
+msgid "Has Message"
+msgstr ""
+
 #. module: auto_backup
 #: model_terms:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
 msgid "Help"
@@ -373,11 +353,6 @@ msgid ""
 "Set the scheduler to active and fill in how often you want backups generated."
 msgstr ""
 
-#. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup__smart_search
-msgid "Smart Search"
-msgstr ""
-
 #. module: auto_backup
 #: model:ir.model.fields,help:auto_backup.field_db_backup__name
 msgid "Summary of this backup process"
@@ -430,11 +405,6 @@ msgid ""
 "you specify."
 msgstr ""
 
-#. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup__user_can_see_changeset
-msgid "User Can See Changeset"
-msgstr ""
-
 #. module: auto_backup
 #: model:ir.model.fields,field_description:auto_backup.field_db_backup__sftp_user
 msgid "Username in the SFTP Server"
diff --git a/auto_backup/i18n/da.po b/auto_backup/i18n/da.po
index daab321c83e..4c5c869b6db 100644
--- a/auto_backup/i18n/da.po
+++ b/auto_backup/i18n/da.po
@@ -88,16 +88,6 @@ msgstr ""
 msgid "Cannot duplicate a configuration."
 msgstr ""
 
-#. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup__changeset_change_ids
-msgid "Changeset Changes"
-msgstr ""
-
-#. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup__changeset_ids
-msgid "Changesets"
-msgstr ""
-
 #. module: auto_backup
 #: model:ir.model.fields,help:auto_backup.field_db_backup__backup_format
 msgid "Choose the format for this backup."
@@ -126,16 +116,6 @@ msgstr ""
 msgid "Connection Test Succeeded!"
 msgstr ""
 
-#. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup__count_pending_changeset_changes
-msgid "Count Pending Changeset Changes"
-msgstr ""
-
-#. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup__count_pending_changesets
-msgid "Count Pending Changesets"
-msgstr ""
-
 #. module: auto_backup
 #: model:ir.model.fields,field_description:auto_backup.field_db_backup__create_uid
 msgid "Created by"
@@ -202,11 +182,6 @@ msgstr ""
 msgid "Followers"
 msgstr ""
 
-#. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup__message_channel_ids
-msgid "Followers (Channels)"
-msgstr ""
-
 #. module: auto_backup
 #: model:ir.model.fields,field_description:auto_backup.field_db_backup__message_partner_ids
 msgid "Followers (Partners)"
@@ -217,6 +192,11 @@ msgstr ""
 msgid "Go to Settings / Technical / Automation / Scheduled Actions."
 msgstr ""
 
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__has_message
+msgid "Has Message"
+msgstr ""
+
 #. module: auto_backup
 #: model_terms:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
 msgid "Help"
@@ -372,11 +352,6 @@ msgid ""
 "Set the scheduler to active and fill in how often you want backups generated."
 msgstr ""
 
-#. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup__smart_search
-msgid "Smart Search"
-msgstr ""
-
 #. module: auto_backup
 #: model:ir.model.fields,help:auto_backup.field_db_backup__name
 msgid "Summary of this backup process"
@@ -429,11 +404,6 @@ msgid ""
 "you specify."
 msgstr ""
 
-#. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup__user_can_see_changeset
-msgid "User Can See Changeset"
-msgstr ""
-
 #. module: auto_backup
 #: model:ir.model.fields,field_description:auto_backup.field_db_backup__sftp_user
 msgid "Username in the SFTP Server"
diff --git a/auto_backup/i18n/de.po b/auto_backup/i18n/de.po
index 32ce1b8556f..b350d618275 100644
--- a/auto_backup/i18n/de.po
+++ b/auto_backup/i18n/de.po
@@ -90,16 +90,6 @@ msgstr ""
 msgid "Cannot duplicate a configuration."
 msgstr ""
 
-#. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup__changeset_change_ids
-msgid "Changeset Changes"
-msgstr ""
-
-#. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup__changeset_ids
-msgid "Changesets"
-msgstr ""
-
 #. module: auto_backup
 #: model:ir.model.fields,help:auto_backup.field_db_backup__backup_format
 #, fuzzy
@@ -129,16 +119,6 @@ msgstr ""
 msgid "Connection Test Succeeded!"
 msgstr ""
 
-#. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup__count_pending_changeset_changes
-msgid "Count Pending Changeset Changes"
-msgstr ""
-
-#. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup__count_pending_changesets
-msgid "Count Pending Changesets"
-msgstr ""
-
 #. module: auto_backup
 #: model:ir.model.fields,field_description:auto_backup.field_db_backup__create_uid
 msgid "Created by"
@@ -205,11 +185,6 @@ msgstr "Ordner"
 msgid "Followers"
 msgstr ""
 
-#. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup__message_channel_ids
-msgid "Followers (Channels)"
-msgstr ""
-
 #. module: auto_backup
 #: model:ir.model.fields,field_description:auto_backup.field_db_backup__message_partner_ids
 msgid "Followers (Partners)"
@@ -221,6 +196,11 @@ msgid "Go to Settings / Technical / Automation / Scheduled Actions."
 msgstr ""
 "Gehen Sie zu Einstellungen / Technisch / Automation / Geplante Vorgänge"
 
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__has_message
+msgid "Has Message"
+msgstr ""
+
 #. module: auto_backup
 #: model_terms:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
 msgid "Help"
@@ -378,11 +358,6 @@ msgstr ""
 "Setzen Sie die Aktion auf aktiv und geben Sie an wie oft die Sicherungen "
 "erstellt werden soll."
 
-#. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup__smart_search
-msgid "Smart Search"
-msgstr ""
-
 #. module: auto_backup
 #: model:ir.model.fields,help:auto_backup.field_db_backup__name
 msgid "Summary of this backup process"
@@ -439,11 +414,6 @@ msgstr ""
 "Verwenden Sie SFTP mit Vorsicht! Dies schreibt Dateien auf externen Servern "
 "unter dem Pfad, den Sie angeben."
 
-#. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup__user_can_see_changeset
-msgid "User Can See Changeset"
-msgstr ""
-
 #. module: auto_backup
 #: model:ir.model.fields,field_description:auto_backup.field_db_backup__sftp_user
 msgid "Username in the SFTP Server"
diff --git a/auto_backup/i18n/el_GR.po b/auto_backup/i18n/el_GR.po
index 023b12c9b1d..b39ece987ad 100644
--- a/auto_backup/i18n/el_GR.po
+++ b/auto_backup/i18n/el_GR.po
@@ -89,16 +89,6 @@ msgstr ""
 msgid "Cannot duplicate a configuration."
 msgstr ""
 
-#. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup__changeset_change_ids
-msgid "Changeset Changes"
-msgstr ""
-
-#. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup__changeset_ids
-msgid "Changesets"
-msgstr ""
-
 #. module: auto_backup
 #: model:ir.model.fields,help:auto_backup.field_db_backup__backup_format
 msgid "Choose the format for this backup."
@@ -127,16 +117,6 @@ msgstr ""
 msgid "Connection Test Succeeded!"
 msgstr ""
 
-#. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup__count_pending_changeset_changes
-msgid "Count Pending Changeset Changes"
-msgstr ""
-
-#. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup__count_pending_changesets
-msgid "Count Pending Changesets"
-msgstr ""
-
 #. module: auto_backup
 #: model:ir.model.fields,field_description:auto_backup.field_db_backup__create_uid
 msgid "Created by"
@@ -203,11 +183,6 @@ msgstr ""
 msgid "Followers"
 msgstr ""
 
-#. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup__message_channel_ids
-msgid "Followers (Channels)"
-msgstr ""
-
 #. module: auto_backup
 #: model:ir.model.fields,field_description:auto_backup.field_db_backup__message_partner_ids
 msgid "Followers (Partners)"
@@ -218,6 +193,11 @@ msgstr ""
 msgid "Go to Settings / Technical / Automation / Scheduled Actions."
 msgstr ""
 
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__has_message
+msgid "Has Message"
+msgstr ""
+
 #. module: auto_backup
 #: model_terms:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
 msgid "Help"
@@ -373,11 +353,6 @@ msgid ""
 "Set the scheduler to active and fill in how often you want backups generated."
 msgstr ""
 
-#. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup__smart_search
-msgid "Smart Search"
-msgstr ""
-
 #. module: auto_backup
 #: model:ir.model.fields,help:auto_backup.field_db_backup__name
 msgid "Summary of this backup process"
@@ -430,11 +405,6 @@ msgid ""
 "you specify."
 msgstr ""
 
-#. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup__user_can_see_changeset
-msgid "User Can See Changeset"
-msgstr ""
-
 #. module: auto_backup
 #: model:ir.model.fields,field_description:auto_backup.field_db_backup__sftp_user
 msgid "Username in the SFTP Server"
diff --git a/auto_backup/i18n/en_GB.po b/auto_backup/i18n/en_GB.po
index 2fe2e18a782..87b665dd9b6 100644
--- a/auto_backup/i18n/en_GB.po
+++ b/auto_backup/i18n/en_GB.po
@@ -89,16 +89,6 @@ msgstr ""
 msgid "Cannot duplicate a configuration."
 msgstr ""
 
-#. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup__changeset_change_ids
-msgid "Changeset Changes"
-msgstr ""
-
-#. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup__changeset_ids
-msgid "Changesets"
-msgstr ""
-
 #. module: auto_backup
 #: model:ir.model.fields,help:auto_backup.field_db_backup__backup_format
 msgid "Choose the format for this backup."
@@ -127,16 +117,6 @@ msgstr ""
 msgid "Connection Test Succeeded!"
 msgstr ""
 
-#. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup__count_pending_changeset_changes
-msgid "Count Pending Changeset Changes"
-msgstr ""
-
-#. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup__count_pending_changesets
-msgid "Count Pending Changesets"
-msgstr ""
-
 #. module: auto_backup
 #: model:ir.model.fields,field_description:auto_backup.field_db_backup__create_uid
 msgid "Created by"
@@ -203,11 +183,6 @@ msgstr ""
 msgid "Followers"
 msgstr ""
 
-#. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup__message_channel_ids
-msgid "Followers (Channels)"
-msgstr ""
-
 #. module: auto_backup
 #: model:ir.model.fields,field_description:auto_backup.field_db_backup__message_partner_ids
 msgid "Followers (Partners)"
@@ -218,6 +193,11 @@ msgstr ""
 msgid "Go to Settings / Technical / Automation / Scheduled Actions."
 msgstr ""
 
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__has_message
+msgid "Has Message"
+msgstr ""
+
 #. module: auto_backup
 #: model_terms:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
 msgid "Help"
@@ -373,11 +353,6 @@ msgid ""
 "Set the scheduler to active and fill in how often you want backups generated."
 msgstr ""
 
-#. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup__smart_search
-msgid "Smart Search"
-msgstr ""
-
 #. module: auto_backup
 #: model:ir.model.fields,help:auto_backup.field_db_backup__name
 msgid "Summary of this backup process"
@@ -430,11 +405,6 @@ msgid ""
 "you specify."
 msgstr ""
 
-#. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup__user_can_see_changeset
-msgid "User Can See Changeset"
-msgstr ""
-
 #. module: auto_backup
 #: model:ir.model.fields,field_description:auto_backup.field_db_backup__sftp_user
 msgid "Username in the SFTP Server"
diff --git a/auto_backup/i18n/es.po b/auto_backup/i18n/es.po
index 341327f5621..7135b28d879 100644
--- a/auto_backup/i18n/es.po
+++ b/auto_backup/i18n/es.po
@@ -93,16 +93,6 @@ msgstr "Configuración básica de la copia de seguridad"
 msgid "Cannot duplicate a configuration."
 msgstr "No se puede duplicar una configuración."
 
-#. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup__changeset_change_ids
-msgid "Changeset Changes"
-msgstr ""
-
-#. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup__changeset_ids
-msgid "Changesets"
-msgstr ""
-
 #. module: auto_backup
 #: model:ir.model.fields,help:auto_backup.field_db_backup__backup_format
 #, fuzzy
@@ -134,16 +124,6 @@ msgstr "Error en la prueba de conexión!"
 msgid "Connection Test Succeeded!"
 msgstr "Prueba de conexión correcta!"
 
-#. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup__count_pending_changeset_changes
-msgid "Count Pending Changeset Changes"
-msgstr ""
-
-#. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup__count_pending_changesets
-msgid "Count Pending Changesets"
-msgstr ""
-
 #. module: auto_backup
 #: model:ir.model.fields,field_description:auto_backup.field_db_backup__create_uid
 msgid "Created by"
@@ -212,11 +192,6 @@ msgstr "Carpeta"
 msgid "Followers"
 msgstr ""
 
-#. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup__message_channel_ids
-msgid "Followers (Channels)"
-msgstr ""
-
 #. module: auto_backup
 #: model:ir.model.fields,field_description:auto_backup.field_db_backup__message_partner_ids
 msgid "Followers (Partners)"
@@ -227,6 +202,11 @@ msgstr ""
 msgid "Go to Settings / Technical / Automation / Scheduled Actions."
 msgstr "Ir a Configuración / Técnico / Automatización / Acciones Planificadas"
 
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__has_message
+msgid "Has Message"
+msgstr ""
+
 #. module: auto_backup
 #: model_terms:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
 msgid "Help"
@@ -388,11 +368,6 @@ msgstr ""
 "Ajuste el programador para activar y rellenar con qué frecuencia desea las "
 "copias de seguridad generadas."
 
-#. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup__smart_search
-msgid "Smart Search"
-msgstr ""
-
 #. module: auto_backup
 #: model:ir.model.fields,help:auto_backup.field_db_backup__name
 msgid "Summary of this backup process"
@@ -453,11 +428,6 @@ msgstr ""
 "Utilizar SFTP con precaución! Escribe archivos a servidores externos en la "
 "ruta que especifique."
 
-#. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup__user_can_see_changeset
-msgid "User Can See Changeset"
-msgstr ""
-
 #. module: auto_backup
 #: model:ir.model.fields,field_description:auto_backup.field_db_backup__sftp_user
 msgid "Username in the SFTP Server"
diff --git a/auto_backup/i18n/es_AR.po b/auto_backup/i18n/es_AR.po
index 4652f163e02..d071a335d30 100644
--- a/auto_backup/i18n/es_AR.po
+++ b/auto_backup/i18n/es_AR.po
@@ -11,8 +11,8 @@ msgstr ""
 "POT-Creation-Date: 2017-02-18 02:29+0000\n"
 "PO-Revision-Date: 2022-10-09 22:35+0000\n"
 "Last-Translator: Ignacio Buioli <ibuioli@gmail.com>\n"
-"Language-Team: Spanish (Argentina) (https://www.transifex.com/oca/teams/"
-"23907/es_AR/)\n"
+"Language-Team: Spanish (Argentina) (https://www.transifex.com/oca/"
+"teams/23907/es_AR/)\n"
 "Language: es_AR\n"
 "MIME-Version: 1.0\n"
 "Content-Type: text/plain; charset=UTF-8\n"
@@ -94,16 +94,6 @@ msgstr "Configuración básica de la copia de seguridad"
 msgid "Cannot duplicate a configuration."
 msgstr "No se puede duplicar una configuración."
 
-#. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup__changeset_change_ids
-msgid "Changeset Changes"
-msgstr "Cambios en el Conjunto de Cambios"
-
-#. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup__changeset_ids
-msgid "Changesets"
-msgstr "Conjunto de Cambios"
-
 #. module: auto_backup
 #: model:ir.model.fields,help:auto_backup.field_db_backup__backup_format
 msgid "Choose the format for this backup."
@@ -132,16 +122,6 @@ msgstr "¡La Prueba de Conexión Falló!"
 msgid "Connection Test Succeeded!"
 msgstr "¡Prueba de Conexión Exitosa!"
 
-#. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup__count_pending_changeset_changes
-msgid "Count Pending Changeset Changes"
-msgstr "Contar los Cambios Pendientes del Conjunto de Cambios"
-
-#. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup__count_pending_changesets
-msgid "Count Pending Changesets"
-msgstr "Contar Conjunto de Cambios Pendientes"
-
 #. module: auto_backup
 #: model:ir.model.fields,field_description:auto_backup.field_db_backup__create_uid
 msgid "Created by"
@@ -209,11 +189,6 @@ msgstr "Carpeta"
 msgid "Followers"
 msgstr "Seguidores"
 
-#. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup__message_channel_ids
-msgid "Followers (Channels)"
-msgstr "Seguidores (Canales)"
-
 #. module: auto_backup
 #: model:ir.model.fields,field_description:auto_backup.field_db_backup__message_partner_ids
 msgid "Followers (Partners)"
@@ -224,6 +199,11 @@ msgstr "Seguidores (Contactos)"
 msgid "Go to Settings / Technical / Automation / Scheduled Actions."
 msgstr "Ir a Ajustes / Técnico / Automatización / Acciones planificadas."
 
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__has_message
+msgid "Has Message"
+msgstr ""
+
 #. module: auto_backup
 #: model_terms:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
 msgid "Help"
@@ -385,11 +365,6 @@ msgstr ""
 "Configure el planificador como activo y complete que tan frecuente quiere "
 "generar las copias de seguridad."
 
-#. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup__smart_search
-msgid "Smart Search"
-msgstr "Búsqueda Inteligente"
-
 #. module: auto_backup
 #: model:ir.model.fields,help:auto_backup.field_db_backup__name
 msgid "Summary of this backup process"
@@ -405,8 +380,8 @@ msgstr "Probar Conexión SFTP"
 msgid ""
 "The host name or IP address from your remote server. For example 192.168.0.1"
 msgstr ""
-"El nombre del host o la dirección IP de su servidor remoto. Por ejemplo 192."
-"168.0.1"
+"El nombre del host o la dirección IP de su servidor remoto. Por ejemplo "
+"192.168.0.1"
 
 #. module: auto_backup
 #: model:ir.model.fields,help:auto_backup.field_db_backup__sftp_password
@@ -450,11 +425,6 @@ msgstr ""
 "¡Use SFTP con precaución! Esto escribe archivos en servidores externos en la "
 "ruta que especifique."
 
-#. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup__user_can_see_changeset
-msgid "User Can See Changeset"
-msgstr "El usuario puede ver el Conjunto de Cambios"
-
 #. module: auto_backup
 #: model:ir.model.fields,field_description:auto_backup.field_db_backup__sftp_user
 msgid "Username in the SFTP Server"
@@ -494,3 +464,24 @@ msgstr "sftp.ejemplo.com"
 #: model:ir.model.fields.selection,name:auto_backup.selection__db_backup__backup_format__zip
 msgid "zip (includes filestore)"
 msgstr "zip (incluye filestore)"
+
+#~ msgid "Changeset Changes"
+#~ msgstr "Cambios en el Conjunto de Cambios"
+
+#~ msgid "Changesets"
+#~ msgstr "Conjunto de Cambios"
+
+#~ msgid "Count Pending Changeset Changes"
+#~ msgstr "Contar los Cambios Pendientes del Conjunto de Cambios"
+
+#~ msgid "Count Pending Changesets"
+#~ msgstr "Contar Conjunto de Cambios Pendientes"
+
+#~ msgid "Followers (Channels)"
+#~ msgstr "Seguidores (Canales)"
+
+#~ msgid "Smart Search"
+#~ msgstr "Búsqueda Inteligente"
+
+#~ msgid "User Can See Changeset"
+#~ msgstr "El usuario puede ver el Conjunto de Cambios"
diff --git a/auto_backup/i18n/es_CL.po b/auto_backup/i18n/es_CL.po
index d61685e2d77..5e457b6d90b 100644
--- a/auto_backup/i18n/es_CL.po
+++ b/auto_backup/i18n/es_CL.po
@@ -89,16 +89,6 @@ msgstr ""
 msgid "Cannot duplicate a configuration."
 msgstr ""
 
-#. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup__changeset_change_ids
-msgid "Changeset Changes"
-msgstr ""
-
-#. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup__changeset_ids
-msgid "Changesets"
-msgstr ""
-
 #. module: auto_backup
 #: model:ir.model.fields,help:auto_backup.field_db_backup__backup_format
 msgid "Choose the format for this backup."
@@ -127,16 +117,6 @@ msgstr ""
 msgid "Connection Test Succeeded!"
 msgstr ""
 
-#. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup__count_pending_changeset_changes
-msgid "Count Pending Changeset Changes"
-msgstr ""
-
-#. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup__count_pending_changesets
-msgid "Count Pending Changesets"
-msgstr ""
-
 #. module: auto_backup
 #: model:ir.model.fields,field_description:auto_backup.field_db_backup__create_uid
 msgid "Created by"
@@ -203,11 +183,6 @@ msgstr ""
 msgid "Followers"
 msgstr ""
 
-#. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup__message_channel_ids
-msgid "Followers (Channels)"
-msgstr ""
-
 #. module: auto_backup
 #: model:ir.model.fields,field_description:auto_backup.field_db_backup__message_partner_ids
 msgid "Followers (Partners)"
@@ -218,6 +193,11 @@ msgstr ""
 msgid "Go to Settings / Technical / Automation / Scheduled Actions."
 msgstr ""
 
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__has_message
+msgid "Has Message"
+msgstr ""
+
 #. module: auto_backup
 #: model_terms:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
 msgid "Help"
@@ -373,11 +353,6 @@ msgid ""
 "Set the scheduler to active and fill in how often you want backups generated."
 msgstr ""
 
-#. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup__smart_search
-msgid "Smart Search"
-msgstr ""
-
 #. module: auto_backup
 #: model:ir.model.fields,help:auto_backup.field_db_backup__name
 msgid "Summary of this backup process"
@@ -430,11 +405,6 @@ msgid ""
 "you specify."
 msgstr ""
 
-#. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup__user_can_see_changeset
-msgid "User Can See Changeset"
-msgstr ""
-
 #. module: auto_backup
 #: model:ir.model.fields,field_description:auto_backup.field_db_backup__sftp_user
 msgid "Username in the SFTP Server"
diff --git a/auto_backup/i18n/es_CO.po b/auto_backup/i18n/es_CO.po
index 0f75464c2b0..7340dd322f2 100644
--- a/auto_backup/i18n/es_CO.po
+++ b/auto_backup/i18n/es_CO.po
@@ -89,16 +89,6 @@ msgstr ""
 msgid "Cannot duplicate a configuration."
 msgstr ""
 
-#. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup__changeset_change_ids
-msgid "Changeset Changes"
-msgstr ""
-
-#. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup__changeset_ids
-msgid "Changesets"
-msgstr ""
-
 #. module: auto_backup
 #: model:ir.model.fields,help:auto_backup.field_db_backup__backup_format
 msgid "Choose the format for this backup."
@@ -127,16 +117,6 @@ msgstr ""
 msgid "Connection Test Succeeded!"
 msgstr ""
 
-#. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup__count_pending_changeset_changes
-msgid "Count Pending Changeset Changes"
-msgstr ""
-
-#. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup__count_pending_changesets
-msgid "Count Pending Changesets"
-msgstr ""
-
 #. module: auto_backup
 #: model:ir.model.fields,field_description:auto_backup.field_db_backup__create_uid
 msgid "Created by"
@@ -203,11 +183,6 @@ msgstr ""
 msgid "Followers"
 msgstr ""
 
-#. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup__message_channel_ids
-msgid "Followers (Channels)"
-msgstr ""
-
 #. module: auto_backup
 #: model:ir.model.fields,field_description:auto_backup.field_db_backup__message_partner_ids
 msgid "Followers (Partners)"
@@ -218,6 +193,11 @@ msgstr ""
 msgid "Go to Settings / Technical / Automation / Scheduled Actions."
 msgstr ""
 
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__has_message
+msgid "Has Message"
+msgstr ""
+
 #. module: auto_backup
 #: model_terms:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
 msgid "Help"
@@ -373,11 +353,6 @@ msgid ""
 "Set the scheduler to active and fill in how often you want backups generated."
 msgstr ""
 
-#. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup__smart_search
-msgid "Smart Search"
-msgstr ""
-
 #. module: auto_backup
 #: model:ir.model.fields,help:auto_backup.field_db_backup__name
 msgid "Summary of this backup process"
@@ -430,11 +405,6 @@ msgid ""
 "you specify."
 msgstr ""
 
-#. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup__user_can_see_changeset
-msgid "User Can See Changeset"
-msgstr ""
-
 #. module: auto_backup
 #: model:ir.model.fields,field_description:auto_backup.field_db_backup__sftp_user
 msgid "Username in the SFTP Server"
diff --git a/auto_backup/i18n/es_CR.po b/auto_backup/i18n/es_CR.po
index 6741ad5feeb..53bfc73fb97 100644
--- a/auto_backup/i18n/es_CR.po
+++ b/auto_backup/i18n/es_CR.po
@@ -89,16 +89,6 @@ msgstr ""
 msgid "Cannot duplicate a configuration."
 msgstr ""
 
-#. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup__changeset_change_ids
-msgid "Changeset Changes"
-msgstr ""
-
-#. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup__changeset_ids
-msgid "Changesets"
-msgstr ""
-
 #. module: auto_backup
 #: model:ir.model.fields,help:auto_backup.field_db_backup__backup_format
 msgid "Choose the format for this backup."
@@ -127,16 +117,6 @@ msgstr ""
 msgid "Connection Test Succeeded!"
 msgstr ""
 
-#. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup__count_pending_changeset_changes
-msgid "Count Pending Changeset Changes"
-msgstr ""
-
-#. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup__count_pending_changesets
-msgid "Count Pending Changesets"
-msgstr ""
-
 #. module: auto_backup
 #: model:ir.model.fields,field_description:auto_backup.field_db_backup__create_uid
 msgid "Created by"
@@ -203,11 +183,6 @@ msgstr ""
 msgid "Followers"
 msgstr ""
 
-#. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup__message_channel_ids
-msgid "Followers (Channels)"
-msgstr ""
-
 #. module: auto_backup
 #: model:ir.model.fields,field_description:auto_backup.field_db_backup__message_partner_ids
 msgid "Followers (Partners)"
@@ -218,6 +193,11 @@ msgstr ""
 msgid "Go to Settings / Technical / Automation / Scheduled Actions."
 msgstr ""
 
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__has_message
+msgid "Has Message"
+msgstr ""
+
 #. module: auto_backup
 #: model_terms:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
 msgid "Help"
@@ -373,11 +353,6 @@ msgid ""
 "Set the scheduler to active and fill in how often you want backups generated."
 msgstr ""
 
-#. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup__smart_search
-msgid "Smart Search"
-msgstr ""
-
 #. module: auto_backup
 #: model:ir.model.fields,help:auto_backup.field_db_backup__name
 msgid "Summary of this backup process"
@@ -430,11 +405,6 @@ msgid ""
 "you specify."
 msgstr ""
 
-#. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup__user_can_see_changeset
-msgid "User Can See Changeset"
-msgstr ""
-
 #. module: auto_backup
 #: model:ir.model.fields,field_description:auto_backup.field_db_backup__sftp_user
 msgid "Username in the SFTP Server"
diff --git a/auto_backup/i18n/es_DO.po b/auto_backup/i18n/es_DO.po
index 6990be4d15b..2d208be0ea3 100644
--- a/auto_backup/i18n/es_DO.po
+++ b/auto_backup/i18n/es_DO.po
@@ -89,16 +89,6 @@ msgstr ""
 msgid "Cannot duplicate a configuration."
 msgstr ""
 
-#. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup__changeset_change_ids
-msgid "Changeset Changes"
-msgstr ""
-
-#. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup__changeset_ids
-msgid "Changesets"
-msgstr ""
-
 #. module: auto_backup
 #: model:ir.model.fields,help:auto_backup.field_db_backup__backup_format
 msgid "Choose the format for this backup."
@@ -127,16 +117,6 @@ msgstr ""
 msgid "Connection Test Succeeded!"
 msgstr ""
 
-#. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup__count_pending_changeset_changes
-msgid "Count Pending Changeset Changes"
-msgstr ""
-
-#. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup__count_pending_changesets
-msgid "Count Pending Changesets"
-msgstr ""
-
 #. module: auto_backup
 #: model:ir.model.fields,field_description:auto_backup.field_db_backup__create_uid
 msgid "Created by"
@@ -203,11 +183,6 @@ msgstr ""
 msgid "Followers"
 msgstr ""
 
-#. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup__message_channel_ids
-msgid "Followers (Channels)"
-msgstr ""
-
 #. module: auto_backup
 #: model:ir.model.fields,field_description:auto_backup.field_db_backup__message_partner_ids
 msgid "Followers (Partners)"
@@ -218,6 +193,11 @@ msgstr ""
 msgid "Go to Settings / Technical / Automation / Scheduled Actions."
 msgstr ""
 
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__has_message
+msgid "Has Message"
+msgstr ""
+
 #. module: auto_backup
 #: model_terms:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
 msgid "Help"
@@ -373,11 +353,6 @@ msgid ""
 "Set the scheduler to active and fill in how often you want backups generated."
 msgstr ""
 
-#. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup__smart_search
-msgid "Smart Search"
-msgstr ""
-
 #. module: auto_backup
 #: model:ir.model.fields,help:auto_backup.field_db_backup__name
 msgid "Summary of this backup process"
@@ -430,11 +405,6 @@ msgid ""
 "you specify."
 msgstr ""
 
-#. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup__user_can_see_changeset
-msgid "User Can See Changeset"
-msgstr ""
-
 #. module: auto_backup
 #: model:ir.model.fields,field_description:auto_backup.field_db_backup__sftp_user
 msgid "Username in the SFTP Server"
diff --git a/auto_backup/i18n/es_EC.po b/auto_backup/i18n/es_EC.po
index 29402992f29..4e1abdedd90 100644
--- a/auto_backup/i18n/es_EC.po
+++ b/auto_backup/i18n/es_EC.po
@@ -89,16 +89,6 @@ msgstr ""
 msgid "Cannot duplicate a configuration."
 msgstr ""
 
-#. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup__changeset_change_ids
-msgid "Changeset Changes"
-msgstr ""
-
-#. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup__changeset_ids
-msgid "Changesets"
-msgstr ""
-
 #. module: auto_backup
 #: model:ir.model.fields,help:auto_backup.field_db_backup__backup_format
 msgid "Choose the format for this backup."
@@ -127,16 +117,6 @@ msgstr ""
 msgid "Connection Test Succeeded!"
 msgstr ""
 
-#. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup__count_pending_changeset_changes
-msgid "Count Pending Changeset Changes"
-msgstr ""
-
-#. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup__count_pending_changesets
-msgid "Count Pending Changesets"
-msgstr ""
-
 #. module: auto_backup
 #: model:ir.model.fields,field_description:auto_backup.field_db_backup__create_uid
 msgid "Created by"
@@ -203,11 +183,6 @@ msgstr ""
 msgid "Followers"
 msgstr ""
 
-#. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup__message_channel_ids
-msgid "Followers (Channels)"
-msgstr ""
-
 #. module: auto_backup
 #: model:ir.model.fields,field_description:auto_backup.field_db_backup__message_partner_ids
 msgid "Followers (Partners)"
@@ -218,6 +193,11 @@ msgstr ""
 msgid "Go to Settings / Technical / Automation / Scheduled Actions."
 msgstr ""
 
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__has_message
+msgid "Has Message"
+msgstr ""
+
 #. module: auto_backup
 #: model_terms:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
 msgid "Help"
@@ -373,11 +353,6 @@ msgid ""
 "Set the scheduler to active and fill in how often you want backups generated."
 msgstr ""
 
-#. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup__smart_search
-msgid "Smart Search"
-msgstr ""
-
 #. module: auto_backup
 #: model:ir.model.fields,help:auto_backup.field_db_backup__name
 msgid "Summary of this backup process"
@@ -430,11 +405,6 @@ msgid ""
 "you specify."
 msgstr ""
 
-#. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup__user_can_see_changeset
-msgid "User Can See Changeset"
-msgstr ""
-
 #. module: auto_backup
 #: model:ir.model.fields,field_description:auto_backup.field_db_backup__sftp_user
 msgid "Username in the SFTP Server"
diff --git a/auto_backup/i18n/es_ES.po b/auto_backup/i18n/es_ES.po
index 269b88cf21f..750f80b23be 100644
--- a/auto_backup/i18n/es_ES.po
+++ b/auto_backup/i18n/es_ES.po
@@ -89,16 +89,6 @@ msgstr ""
 msgid "Cannot duplicate a configuration."
 msgstr ""
 
-#. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup__changeset_change_ids
-msgid "Changeset Changes"
-msgstr ""
-
-#. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup__changeset_ids
-msgid "Changesets"
-msgstr ""
-
 #. module: auto_backup
 #: model:ir.model.fields,help:auto_backup.field_db_backup__backup_format
 msgid "Choose the format for this backup."
@@ -127,16 +117,6 @@ msgstr ""
 msgid "Connection Test Succeeded!"
 msgstr ""
 
-#. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup__count_pending_changeset_changes
-msgid "Count Pending Changeset Changes"
-msgstr ""
-
-#. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup__count_pending_changesets
-msgid "Count Pending Changesets"
-msgstr ""
-
 #. module: auto_backup
 #: model:ir.model.fields,field_description:auto_backup.field_db_backup__create_uid
 msgid "Created by"
@@ -203,11 +183,6 @@ msgstr ""
 msgid "Followers"
 msgstr ""
 
-#. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup__message_channel_ids
-msgid "Followers (Channels)"
-msgstr ""
-
 #. module: auto_backup
 #: model:ir.model.fields,field_description:auto_backup.field_db_backup__message_partner_ids
 msgid "Followers (Partners)"
@@ -218,6 +193,11 @@ msgstr ""
 msgid "Go to Settings / Technical / Automation / Scheduled Actions."
 msgstr ""
 
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__has_message
+msgid "Has Message"
+msgstr ""
+
 #. module: auto_backup
 #: model_terms:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
 msgid "Help"
@@ -373,11 +353,6 @@ msgid ""
 "Set the scheduler to active and fill in how often you want backups generated."
 msgstr ""
 
-#. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup__smart_search
-msgid "Smart Search"
-msgstr ""
-
 #. module: auto_backup
 #: model:ir.model.fields,help:auto_backup.field_db_backup__name
 msgid "Summary of this backup process"
@@ -430,11 +405,6 @@ msgid ""
 "you specify."
 msgstr ""
 
-#. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup__user_can_see_changeset
-msgid "User Can See Changeset"
-msgstr ""
-
 #. module: auto_backup
 #: model:ir.model.fields,field_description:auto_backup.field_db_backup__sftp_user
 msgid "Username in the SFTP Server"
diff --git a/auto_backup/i18n/es_MX.po b/auto_backup/i18n/es_MX.po
index 54214aa9f1b..3720034fb6e 100644
--- a/auto_backup/i18n/es_MX.po
+++ b/auto_backup/i18n/es_MX.po
@@ -89,16 +89,6 @@ msgstr ""
 msgid "Cannot duplicate a configuration."
 msgstr ""
 
-#. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup__changeset_change_ids
-msgid "Changeset Changes"
-msgstr ""
-
-#. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup__changeset_ids
-msgid "Changesets"
-msgstr ""
-
 #. module: auto_backup
 #: model:ir.model.fields,help:auto_backup.field_db_backup__backup_format
 msgid "Choose the format for this backup."
@@ -127,16 +117,6 @@ msgstr ""
 msgid "Connection Test Succeeded!"
 msgstr ""
 
-#. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup__count_pending_changeset_changes
-msgid "Count Pending Changeset Changes"
-msgstr ""
-
-#. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup__count_pending_changesets
-msgid "Count Pending Changesets"
-msgstr ""
-
 #. module: auto_backup
 #: model:ir.model.fields,field_description:auto_backup.field_db_backup__create_uid
 msgid "Created by"
@@ -203,11 +183,6 @@ msgstr ""
 msgid "Followers"
 msgstr ""
 
-#. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup__message_channel_ids
-msgid "Followers (Channels)"
-msgstr ""
-
 #. module: auto_backup
 #: model:ir.model.fields,field_description:auto_backup.field_db_backup__message_partner_ids
 msgid "Followers (Partners)"
@@ -218,6 +193,11 @@ msgstr ""
 msgid "Go to Settings / Technical / Automation / Scheduled Actions."
 msgstr ""
 
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__has_message
+msgid "Has Message"
+msgstr ""
+
 #. module: auto_backup
 #: model_terms:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
 msgid "Help"
@@ -373,11 +353,6 @@ msgid ""
 "Set the scheduler to active and fill in how often you want backups generated."
 msgstr ""
 
-#. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup__smart_search
-msgid "Smart Search"
-msgstr ""
-
 #. module: auto_backup
 #: model:ir.model.fields,help:auto_backup.field_db_backup__name
 msgid "Summary of this backup process"
@@ -430,11 +405,6 @@ msgid ""
 "you specify."
 msgstr ""
 
-#. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup__user_can_see_changeset
-msgid "User Can See Changeset"
-msgstr ""
-
 #. module: auto_backup
 #: model:ir.model.fields,field_description:auto_backup.field_db_backup__sftp_user
 msgid "Username in the SFTP Server"
diff --git a/auto_backup/i18n/es_PE.po b/auto_backup/i18n/es_PE.po
index eb4ce1e7e29..fec1d3301cd 100644
--- a/auto_backup/i18n/es_PE.po
+++ b/auto_backup/i18n/es_PE.po
@@ -89,16 +89,6 @@ msgstr ""
 msgid "Cannot duplicate a configuration."
 msgstr ""
 
-#. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup__changeset_change_ids
-msgid "Changeset Changes"
-msgstr ""
-
-#. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup__changeset_ids
-msgid "Changesets"
-msgstr ""
-
 #. module: auto_backup
 #: model:ir.model.fields,help:auto_backup.field_db_backup__backup_format
 msgid "Choose the format for this backup."
@@ -127,16 +117,6 @@ msgstr ""
 msgid "Connection Test Succeeded!"
 msgstr ""
 
-#. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup__count_pending_changeset_changes
-msgid "Count Pending Changeset Changes"
-msgstr ""
-
-#. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup__count_pending_changesets
-msgid "Count Pending Changesets"
-msgstr ""
-
 #. module: auto_backup
 #: model:ir.model.fields,field_description:auto_backup.field_db_backup__create_uid
 msgid "Created by"
@@ -203,11 +183,6 @@ msgstr ""
 msgid "Followers"
 msgstr ""
 
-#. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup__message_channel_ids
-msgid "Followers (Channels)"
-msgstr ""
-
 #. module: auto_backup
 #: model:ir.model.fields,field_description:auto_backup.field_db_backup__message_partner_ids
 msgid "Followers (Partners)"
@@ -218,6 +193,11 @@ msgstr ""
 msgid "Go to Settings / Technical / Automation / Scheduled Actions."
 msgstr ""
 
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__has_message
+msgid "Has Message"
+msgstr ""
+
 #. module: auto_backup
 #: model_terms:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
 msgid "Help"
@@ -373,11 +353,6 @@ msgid ""
 "Set the scheduler to active and fill in how often you want backups generated."
 msgstr ""
 
-#. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup__smart_search
-msgid "Smart Search"
-msgstr ""
-
 #. module: auto_backup
 #: model:ir.model.fields,help:auto_backup.field_db_backup__name
 msgid "Summary of this backup process"
@@ -430,11 +405,6 @@ msgid ""
 "you specify."
 msgstr ""
 
-#. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup__user_can_see_changeset
-msgid "User Can See Changeset"
-msgstr ""
-
 #. module: auto_backup
 #: model:ir.model.fields,field_description:auto_backup.field_db_backup__sftp_user
 msgid "Username in the SFTP Server"
diff --git a/auto_backup/i18n/es_PY.po b/auto_backup/i18n/es_PY.po
index 864692c4eac..54fc724b48d 100644
--- a/auto_backup/i18n/es_PY.po
+++ b/auto_backup/i18n/es_PY.po
@@ -89,16 +89,6 @@ msgstr ""
 msgid "Cannot duplicate a configuration."
 msgstr ""
 
-#. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup__changeset_change_ids
-msgid "Changeset Changes"
-msgstr ""
-
-#. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup__changeset_ids
-msgid "Changesets"
-msgstr ""
-
 #. module: auto_backup
 #: model:ir.model.fields,help:auto_backup.field_db_backup__backup_format
 msgid "Choose the format for this backup."
@@ -127,16 +117,6 @@ msgstr ""
 msgid "Connection Test Succeeded!"
 msgstr ""
 
-#. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup__count_pending_changeset_changes
-msgid "Count Pending Changeset Changes"
-msgstr ""
-
-#. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup__count_pending_changesets
-msgid "Count Pending Changesets"
-msgstr ""
-
 #. module: auto_backup
 #: model:ir.model.fields,field_description:auto_backup.field_db_backup__create_uid
 msgid "Created by"
@@ -203,11 +183,6 @@ msgstr ""
 msgid "Followers"
 msgstr ""
 
-#. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup__message_channel_ids
-msgid "Followers (Channels)"
-msgstr ""
-
 #. module: auto_backup
 #: model:ir.model.fields,field_description:auto_backup.field_db_backup__message_partner_ids
 msgid "Followers (Partners)"
@@ -218,6 +193,11 @@ msgstr ""
 msgid "Go to Settings / Technical / Automation / Scheduled Actions."
 msgstr ""
 
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__has_message
+msgid "Has Message"
+msgstr ""
+
 #. module: auto_backup
 #: model_terms:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
 msgid "Help"
@@ -373,11 +353,6 @@ msgid ""
 "Set the scheduler to active and fill in how often you want backups generated."
 msgstr ""
 
-#. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup__smart_search
-msgid "Smart Search"
-msgstr ""
-
 #. module: auto_backup
 #: model:ir.model.fields,help:auto_backup.field_db_backup__name
 msgid "Summary of this backup process"
@@ -430,11 +405,6 @@ msgid ""
 "you specify."
 msgstr ""
 
-#. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup__user_can_see_changeset
-msgid "User Can See Changeset"
-msgstr ""
-
 #. module: auto_backup
 #: model:ir.model.fields,field_description:auto_backup.field_db_backup__sftp_user
 msgid "Username in the SFTP Server"
diff --git a/auto_backup/i18n/es_VE.po b/auto_backup/i18n/es_VE.po
index b1e538c3cb3..8ccf47d6da6 100644
--- a/auto_backup/i18n/es_VE.po
+++ b/auto_backup/i18n/es_VE.po
@@ -89,16 +89,6 @@ msgstr ""
 msgid "Cannot duplicate a configuration."
 msgstr ""
 
-#. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup__changeset_change_ids
-msgid "Changeset Changes"
-msgstr ""
-
-#. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup__changeset_ids
-msgid "Changesets"
-msgstr ""
-
 #. module: auto_backup
 #: model:ir.model.fields,help:auto_backup.field_db_backup__backup_format
 msgid "Choose the format for this backup."
@@ -127,16 +117,6 @@ msgstr ""
 msgid "Connection Test Succeeded!"
 msgstr ""
 
-#. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup__count_pending_changeset_changes
-msgid "Count Pending Changeset Changes"
-msgstr ""
-
-#. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup__count_pending_changesets
-msgid "Count Pending Changesets"
-msgstr ""
-
 #. module: auto_backup
 #: model:ir.model.fields,field_description:auto_backup.field_db_backup__create_uid
 msgid "Created by"
@@ -203,11 +183,6 @@ msgstr ""
 msgid "Followers"
 msgstr ""
 
-#. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup__message_channel_ids
-msgid "Followers (Channels)"
-msgstr ""
-
 #. module: auto_backup
 #: model:ir.model.fields,field_description:auto_backup.field_db_backup__message_partner_ids
 msgid "Followers (Partners)"
@@ -218,6 +193,11 @@ msgstr ""
 msgid "Go to Settings / Technical / Automation / Scheduled Actions."
 msgstr ""
 
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__has_message
+msgid "Has Message"
+msgstr ""
+
 #. module: auto_backup
 #: model_terms:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
 msgid "Help"
@@ -373,11 +353,6 @@ msgid ""
 "Set the scheduler to active and fill in how often you want backups generated."
 msgstr ""
 
-#. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup__smart_search
-msgid "Smart Search"
-msgstr ""
-
 #. module: auto_backup
 #: model:ir.model.fields,help:auto_backup.field_db_backup__name
 msgid "Summary of this backup process"
@@ -430,11 +405,6 @@ msgid ""
 "you specify."
 msgstr ""
 
-#. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup__user_can_see_changeset
-msgid "User Can See Changeset"
-msgstr ""
-
 #. module: auto_backup
 #: model:ir.model.fields,field_description:auto_backup.field_db_backup__sftp_user
 msgid "Username in the SFTP Server"
diff --git a/auto_backup/i18n/et.po b/auto_backup/i18n/et.po
index b3c38d28ba4..1570b9af2d8 100644
--- a/auto_backup/i18n/et.po
+++ b/auto_backup/i18n/et.po
@@ -88,16 +88,6 @@ msgstr ""
 msgid "Cannot duplicate a configuration."
 msgstr ""
 
-#. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup__changeset_change_ids
-msgid "Changeset Changes"
-msgstr ""
-
-#. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup__changeset_ids
-msgid "Changesets"
-msgstr ""
-
 #. module: auto_backup
 #: model:ir.model.fields,help:auto_backup.field_db_backup__backup_format
 msgid "Choose the format for this backup."
@@ -126,16 +116,6 @@ msgstr ""
 msgid "Connection Test Succeeded!"
 msgstr ""
 
-#. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup__count_pending_changeset_changes
-msgid "Count Pending Changeset Changes"
-msgstr ""
-
-#. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup__count_pending_changesets
-msgid "Count Pending Changesets"
-msgstr ""
-
 #. module: auto_backup
 #: model:ir.model.fields,field_description:auto_backup.field_db_backup__create_uid
 msgid "Created by"
@@ -202,11 +182,6 @@ msgstr ""
 msgid "Followers"
 msgstr ""
 
-#. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup__message_channel_ids
-msgid "Followers (Channels)"
-msgstr ""
-
 #. module: auto_backup
 #: model:ir.model.fields,field_description:auto_backup.field_db_backup__message_partner_ids
 msgid "Followers (Partners)"
@@ -217,6 +192,11 @@ msgstr ""
 msgid "Go to Settings / Technical / Automation / Scheduled Actions."
 msgstr ""
 
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__has_message
+msgid "Has Message"
+msgstr ""
+
 #. module: auto_backup
 #: model_terms:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
 msgid "Help"
@@ -372,11 +352,6 @@ msgid ""
 "Set the scheduler to active and fill in how often you want backups generated."
 msgstr ""
 
-#. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup__smart_search
-msgid "Smart Search"
-msgstr ""
-
 #. module: auto_backup
 #: model:ir.model.fields,help:auto_backup.field_db_backup__name
 msgid "Summary of this backup process"
@@ -429,11 +404,6 @@ msgid ""
 "you specify."
 msgstr ""
 
-#. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup__user_can_see_changeset
-msgid "User Can See Changeset"
-msgstr ""
-
 #. module: auto_backup
 #: model:ir.model.fields,field_description:auto_backup.field_db_backup__sftp_user
 msgid "Username in the SFTP Server"
diff --git a/auto_backup/i18n/eu.po b/auto_backup/i18n/eu.po
index f60b8652613..ac224c86399 100644
--- a/auto_backup/i18n/eu.po
+++ b/auto_backup/i18n/eu.po
@@ -88,16 +88,6 @@ msgstr ""
 msgid "Cannot duplicate a configuration."
 msgstr ""
 
-#. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup__changeset_change_ids
-msgid "Changeset Changes"
-msgstr ""
-
-#. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup__changeset_ids
-msgid "Changesets"
-msgstr ""
-
 #. module: auto_backup
 #: model:ir.model.fields,help:auto_backup.field_db_backup__backup_format
 msgid "Choose the format for this backup."
@@ -126,16 +116,6 @@ msgstr ""
 msgid "Connection Test Succeeded!"
 msgstr ""
 
-#. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup__count_pending_changeset_changes
-msgid "Count Pending Changeset Changes"
-msgstr ""
-
-#. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup__count_pending_changesets
-msgid "Count Pending Changesets"
-msgstr ""
-
 #. module: auto_backup
 #: model:ir.model.fields,field_description:auto_backup.field_db_backup__create_uid
 msgid "Created by"
@@ -202,11 +182,6 @@ msgstr ""
 msgid "Followers"
 msgstr ""
 
-#. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup__message_channel_ids
-msgid "Followers (Channels)"
-msgstr ""
-
 #. module: auto_backup
 #: model:ir.model.fields,field_description:auto_backup.field_db_backup__message_partner_ids
 msgid "Followers (Partners)"
@@ -217,6 +192,11 @@ msgstr ""
 msgid "Go to Settings / Technical / Automation / Scheduled Actions."
 msgstr ""
 
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__has_message
+msgid "Has Message"
+msgstr ""
+
 #. module: auto_backup
 #: model_terms:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
 msgid "Help"
@@ -372,11 +352,6 @@ msgid ""
 "Set the scheduler to active and fill in how often you want backups generated."
 msgstr ""
 
-#. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup__smart_search
-msgid "Smart Search"
-msgstr ""
-
 #. module: auto_backup
 #: model:ir.model.fields,help:auto_backup.field_db_backup__name
 msgid "Summary of this backup process"
@@ -429,11 +404,6 @@ msgid ""
 "you specify."
 msgstr ""
 
-#. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup__user_can_see_changeset
-msgid "User Can See Changeset"
-msgstr ""
-
 #. module: auto_backup
 #: model:ir.model.fields,field_description:auto_backup.field_db_backup__sftp_user
 msgid "Username in the SFTP Server"
diff --git a/auto_backup/i18n/fa.po b/auto_backup/i18n/fa.po
index f2b85af0685..ed004bd8c01 100644
--- a/auto_backup/i18n/fa.po
+++ b/auto_backup/i18n/fa.po
@@ -88,16 +88,6 @@ msgstr ""
 msgid "Cannot duplicate a configuration."
 msgstr ""
 
-#. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup__changeset_change_ids
-msgid "Changeset Changes"
-msgstr ""
-
-#. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup__changeset_ids
-msgid "Changesets"
-msgstr ""
-
 #. module: auto_backup
 #: model:ir.model.fields,help:auto_backup.field_db_backup__backup_format
 msgid "Choose the format for this backup."
@@ -126,16 +116,6 @@ msgstr ""
 msgid "Connection Test Succeeded!"
 msgstr ""
 
-#. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup__count_pending_changeset_changes
-msgid "Count Pending Changeset Changes"
-msgstr ""
-
-#. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup__count_pending_changesets
-msgid "Count Pending Changesets"
-msgstr ""
-
 #. module: auto_backup
 #: model:ir.model.fields,field_description:auto_backup.field_db_backup__create_uid
 msgid "Created by"
@@ -202,11 +182,6 @@ msgstr ""
 msgid "Followers"
 msgstr ""
 
-#. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup__message_channel_ids
-msgid "Followers (Channels)"
-msgstr ""
-
 #. module: auto_backup
 #: model:ir.model.fields,field_description:auto_backup.field_db_backup__message_partner_ids
 msgid "Followers (Partners)"
@@ -217,6 +192,11 @@ msgstr ""
 msgid "Go to Settings / Technical / Automation / Scheduled Actions."
 msgstr ""
 
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__has_message
+msgid "Has Message"
+msgstr ""
+
 #. module: auto_backup
 #: model_terms:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
 msgid "Help"
@@ -372,11 +352,6 @@ msgid ""
 "Set the scheduler to active and fill in how often you want backups generated."
 msgstr ""
 
-#. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup__smart_search
-msgid "Smart Search"
-msgstr ""
-
 #. module: auto_backup
 #: model:ir.model.fields,help:auto_backup.field_db_backup__name
 msgid "Summary of this backup process"
@@ -429,11 +404,6 @@ msgid ""
 "you specify."
 msgstr ""
 
-#. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup__user_can_see_changeset
-msgid "User Can See Changeset"
-msgstr ""
-
 #. module: auto_backup
 #: model:ir.model.fields,field_description:auto_backup.field_db_backup__sftp_user
 msgid "Username in the SFTP Server"
diff --git a/auto_backup/i18n/fi.po b/auto_backup/i18n/fi.po
index a53ff25190a..c8a3217dbea 100644
--- a/auto_backup/i18n/fi.po
+++ b/auto_backup/i18n/fi.po
@@ -88,16 +88,6 @@ msgstr ""
 msgid "Cannot duplicate a configuration."
 msgstr ""
 
-#. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup__changeset_change_ids
-msgid "Changeset Changes"
-msgstr ""
-
-#. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup__changeset_ids
-msgid "Changesets"
-msgstr ""
-
 #. module: auto_backup
 #: model:ir.model.fields,help:auto_backup.field_db_backup__backup_format
 msgid "Choose the format for this backup."
@@ -126,16 +116,6 @@ msgstr ""
 msgid "Connection Test Succeeded!"
 msgstr ""
 
-#. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup__count_pending_changeset_changes
-msgid "Count Pending Changeset Changes"
-msgstr ""
-
-#. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup__count_pending_changesets
-msgid "Count Pending Changesets"
-msgstr ""
-
 #. module: auto_backup
 #: model:ir.model.fields,field_description:auto_backup.field_db_backup__create_uid
 msgid "Created by"
@@ -202,11 +182,6 @@ msgstr ""
 msgid "Followers"
 msgstr ""
 
-#. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup__message_channel_ids
-msgid "Followers (Channels)"
-msgstr ""
-
 #. module: auto_backup
 #: model:ir.model.fields,field_description:auto_backup.field_db_backup__message_partner_ids
 msgid "Followers (Partners)"
@@ -217,6 +192,11 @@ msgstr ""
 msgid "Go to Settings / Technical / Automation / Scheduled Actions."
 msgstr ""
 
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__has_message
+msgid "Has Message"
+msgstr ""
+
 #. module: auto_backup
 #: model_terms:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
 msgid "Help"
@@ -372,11 +352,6 @@ msgid ""
 "Set the scheduler to active and fill in how often you want backups generated."
 msgstr ""
 
-#. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup__smart_search
-msgid "Smart Search"
-msgstr ""
-
 #. module: auto_backup
 #: model:ir.model.fields,help:auto_backup.field_db_backup__name
 msgid "Summary of this backup process"
@@ -429,11 +404,6 @@ msgid ""
 "you specify."
 msgstr ""
 
-#. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup__user_can_see_changeset
-msgid "User Can See Changeset"
-msgstr ""
-
 #. module: auto_backup
 #: model:ir.model.fields,field_description:auto_backup.field_db_backup__sftp_user
 msgid "Username in the SFTP Server"
diff --git a/auto_backup/i18n/fr.po b/auto_backup/i18n/fr.po
index d8a4ab5fe87..bacbb17f682 100644
--- a/auto_backup/i18n/fr.po
+++ b/auto_backup/i18n/fr.po
@@ -93,16 +93,6 @@ msgstr "Configuration basique de sauvegarde"
 msgid "Cannot duplicate a configuration."
 msgstr "Impossible de dupliquer une configuration."
 
-#. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup__changeset_change_ids
-msgid "Changeset Changes"
-msgstr ""
-
-#. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup__changeset_ids
-msgid "Changesets"
-msgstr ""
-
 #. module: auto_backup
 #: model:ir.model.fields,help:auto_backup.field_db_backup__backup_format
 #, fuzzy
@@ -132,16 +122,6 @@ msgstr "Échec du test de connexion !"
 msgid "Connection Test Succeeded!"
 msgstr "Test de connexion réussi !"
 
-#. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup__count_pending_changeset_changes
-msgid "Count Pending Changeset Changes"
-msgstr ""
-
-#. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup__count_pending_changesets
-msgid "Count Pending Changesets"
-msgstr ""
-
 #. module: auto_backup
 #: model:ir.model.fields,field_description:auto_backup.field_db_backup__create_uid
 msgid "Created by"
@@ -210,11 +190,6 @@ msgstr "Dossier"
 msgid "Followers"
 msgstr ""
 
-#. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup__message_channel_ids
-msgid "Followers (Channels)"
-msgstr ""
-
 #. module: auto_backup
 #: model:ir.model.fields,field_description:auto_backup.field_db_backup__message_partner_ids
 msgid "Followers (Partners)"
@@ -226,6 +201,11 @@ msgid "Go to Settings / Technical / Automation / Scheduled Actions."
 msgstr ""
 "Allez sur Configuration / Technique / Automatisation / Actions planifiées"
 
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__has_message
+msgid "Has Message"
+msgstr ""
+
 #. module: auto_backup
 #: model_terms:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
 msgid "Help"
@@ -383,11 +363,6 @@ msgid ""
 "Set the scheduler to active and fill in how often you want backups generated."
 msgstr ""
 
-#. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup__smart_search
-msgid "Smart Search"
-msgstr ""
-
 #. module: auto_backup
 #: model:ir.model.fields,help:auto_backup.field_db_backup__name
 msgid "Summary of this backup process"
@@ -440,11 +415,6 @@ msgid ""
 "you specify."
 msgstr ""
 
-#. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup__user_can_see_changeset
-msgid "User Can See Changeset"
-msgstr ""
-
 #. module: auto_backup
 #: model:ir.model.fields,field_description:auto_backup.field_db_backup__sftp_user
 msgid "Username in the SFTP Server"
diff --git a/auto_backup/i18n/fr_CA.po b/auto_backup/i18n/fr_CA.po
index e5c382ae953..5d493ed5503 100644
--- a/auto_backup/i18n/fr_CA.po
+++ b/auto_backup/i18n/fr_CA.po
@@ -89,16 +89,6 @@ msgstr ""
 msgid "Cannot duplicate a configuration."
 msgstr ""
 
-#. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup__changeset_change_ids
-msgid "Changeset Changes"
-msgstr ""
-
-#. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup__changeset_ids
-msgid "Changesets"
-msgstr ""
-
 #. module: auto_backup
 #: model:ir.model.fields,help:auto_backup.field_db_backup__backup_format
 msgid "Choose the format for this backup."
@@ -127,16 +117,6 @@ msgstr ""
 msgid "Connection Test Succeeded!"
 msgstr ""
 
-#. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup__count_pending_changeset_changes
-msgid "Count Pending Changeset Changes"
-msgstr ""
-
-#. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup__count_pending_changesets
-msgid "Count Pending Changesets"
-msgstr ""
-
 #. module: auto_backup
 #: model:ir.model.fields,field_description:auto_backup.field_db_backup__create_uid
 msgid "Created by"
@@ -203,11 +183,6 @@ msgstr ""
 msgid "Followers"
 msgstr ""
 
-#. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup__message_channel_ids
-msgid "Followers (Channels)"
-msgstr ""
-
 #. module: auto_backup
 #: model:ir.model.fields,field_description:auto_backup.field_db_backup__message_partner_ids
 msgid "Followers (Partners)"
@@ -218,6 +193,11 @@ msgstr ""
 msgid "Go to Settings / Technical / Automation / Scheduled Actions."
 msgstr ""
 
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__has_message
+msgid "Has Message"
+msgstr ""
+
 #. module: auto_backup
 #: model_terms:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
 msgid "Help"
@@ -373,11 +353,6 @@ msgid ""
 "Set the scheduler to active and fill in how often you want backups generated."
 msgstr ""
 
-#. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup__smart_search
-msgid "Smart Search"
-msgstr ""
-
 #. module: auto_backup
 #: model:ir.model.fields,help:auto_backup.field_db_backup__name
 msgid "Summary of this backup process"
@@ -430,11 +405,6 @@ msgid ""
 "you specify."
 msgstr ""
 
-#. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup__user_can_see_changeset
-msgid "User Can See Changeset"
-msgstr ""
-
 #. module: auto_backup
 #: model:ir.model.fields,field_description:auto_backup.field_db_backup__sftp_user
 msgid "Username in the SFTP Server"
diff --git a/auto_backup/i18n/fr_CH.po b/auto_backup/i18n/fr_CH.po
index 59b922d4637..73e43ef74a5 100644
--- a/auto_backup/i18n/fr_CH.po
+++ b/auto_backup/i18n/fr_CH.po
@@ -89,16 +89,6 @@ msgstr ""
 msgid "Cannot duplicate a configuration."
 msgstr ""
 
-#. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup__changeset_change_ids
-msgid "Changeset Changes"
-msgstr ""
-
-#. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup__changeset_ids
-msgid "Changesets"
-msgstr ""
-
 #. module: auto_backup
 #: model:ir.model.fields,help:auto_backup.field_db_backup__backup_format
 msgid "Choose the format for this backup."
@@ -127,16 +117,6 @@ msgstr ""
 msgid "Connection Test Succeeded!"
 msgstr ""
 
-#. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup__count_pending_changeset_changes
-msgid "Count Pending Changeset Changes"
-msgstr ""
-
-#. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup__count_pending_changesets
-msgid "Count Pending Changesets"
-msgstr ""
-
 #. module: auto_backup
 #: model:ir.model.fields,field_description:auto_backup.field_db_backup__create_uid
 msgid "Created by"
@@ -203,11 +183,6 @@ msgstr ""
 msgid "Followers"
 msgstr ""
 
-#. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup__message_channel_ids
-msgid "Followers (Channels)"
-msgstr ""
-
 #. module: auto_backup
 #: model:ir.model.fields,field_description:auto_backup.field_db_backup__message_partner_ids
 msgid "Followers (Partners)"
@@ -218,6 +193,11 @@ msgstr ""
 msgid "Go to Settings / Technical / Automation / Scheduled Actions."
 msgstr ""
 
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__has_message
+msgid "Has Message"
+msgstr ""
+
 #. module: auto_backup
 #: model_terms:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
 msgid "Help"
@@ -373,11 +353,6 @@ msgid ""
 "Set the scheduler to active and fill in how often you want backups generated."
 msgstr ""
 
-#. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup__smart_search
-msgid "Smart Search"
-msgstr ""
-
 #. module: auto_backup
 #: model:ir.model.fields,help:auto_backup.field_db_backup__name
 msgid "Summary of this backup process"
@@ -430,11 +405,6 @@ msgid ""
 "you specify."
 msgstr ""
 
-#. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup__user_can_see_changeset
-msgid "User Can See Changeset"
-msgstr ""
-
 #. module: auto_backup
 #: model:ir.model.fields,field_description:auto_backup.field_db_backup__sftp_user
 msgid "Username in the SFTP Server"
diff --git a/auto_backup/i18n/gl.po b/auto_backup/i18n/gl.po
index 8a99f29eaa7..9d1e652862b 100644
--- a/auto_backup/i18n/gl.po
+++ b/auto_backup/i18n/gl.po
@@ -88,16 +88,6 @@ msgstr ""
 msgid "Cannot duplicate a configuration."
 msgstr ""
 
-#. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup__changeset_change_ids
-msgid "Changeset Changes"
-msgstr ""
-
-#. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup__changeset_ids
-msgid "Changesets"
-msgstr ""
-
 #. module: auto_backup
 #: model:ir.model.fields,help:auto_backup.field_db_backup__backup_format
 msgid "Choose the format for this backup."
@@ -126,16 +116,6 @@ msgstr ""
 msgid "Connection Test Succeeded!"
 msgstr ""
 
-#. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup__count_pending_changeset_changes
-msgid "Count Pending Changeset Changes"
-msgstr ""
-
-#. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup__count_pending_changesets
-msgid "Count Pending Changesets"
-msgstr ""
-
 #. module: auto_backup
 #: model:ir.model.fields,field_description:auto_backup.field_db_backup__create_uid
 msgid "Created by"
@@ -202,11 +182,6 @@ msgstr ""
 msgid "Followers"
 msgstr ""
 
-#. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup__message_channel_ids
-msgid "Followers (Channels)"
-msgstr ""
-
 #. module: auto_backup
 #: model:ir.model.fields,field_description:auto_backup.field_db_backup__message_partner_ids
 msgid "Followers (Partners)"
@@ -217,6 +192,11 @@ msgstr ""
 msgid "Go to Settings / Technical / Automation / Scheduled Actions."
 msgstr ""
 
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__has_message
+msgid "Has Message"
+msgstr ""
+
 #. module: auto_backup
 #: model_terms:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
 msgid "Help"
@@ -372,11 +352,6 @@ msgid ""
 "Set the scheduler to active and fill in how often you want backups generated."
 msgstr ""
 
-#. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup__smart_search
-msgid "Smart Search"
-msgstr ""
-
 #. module: auto_backup
 #: model:ir.model.fields,help:auto_backup.field_db_backup__name
 msgid "Summary of this backup process"
@@ -429,11 +404,6 @@ msgid ""
 "you specify."
 msgstr ""
 
-#. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup__user_can_see_changeset
-msgid "User Can See Changeset"
-msgstr ""
-
 #. module: auto_backup
 #: model:ir.model.fields,field_description:auto_backup.field_db_backup__sftp_user
 msgid "Username in the SFTP Server"
diff --git a/auto_backup/i18n/gl_ES.po b/auto_backup/i18n/gl_ES.po
index b0ac1c57095..123548edeb2 100644
--- a/auto_backup/i18n/gl_ES.po
+++ b/auto_backup/i18n/gl_ES.po
@@ -89,16 +89,6 @@ msgstr ""
 msgid "Cannot duplicate a configuration."
 msgstr ""
 
-#. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup__changeset_change_ids
-msgid "Changeset Changes"
-msgstr ""
-
-#. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup__changeset_ids
-msgid "Changesets"
-msgstr ""
-
 #. module: auto_backup
 #: model:ir.model.fields,help:auto_backup.field_db_backup__backup_format
 msgid "Choose the format for this backup."
@@ -127,16 +117,6 @@ msgstr ""
 msgid "Connection Test Succeeded!"
 msgstr ""
 
-#. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup__count_pending_changeset_changes
-msgid "Count Pending Changeset Changes"
-msgstr ""
-
-#. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup__count_pending_changesets
-msgid "Count Pending Changesets"
-msgstr ""
-
 #. module: auto_backup
 #: model:ir.model.fields,field_description:auto_backup.field_db_backup__create_uid
 msgid "Created by"
@@ -203,11 +183,6 @@ msgstr ""
 msgid "Followers"
 msgstr ""
 
-#. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup__message_channel_ids
-msgid "Followers (Channels)"
-msgstr ""
-
 #. module: auto_backup
 #: model:ir.model.fields,field_description:auto_backup.field_db_backup__message_partner_ids
 msgid "Followers (Partners)"
@@ -218,6 +193,11 @@ msgstr ""
 msgid "Go to Settings / Technical / Automation / Scheduled Actions."
 msgstr ""
 
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__has_message
+msgid "Has Message"
+msgstr ""
+
 #. module: auto_backup
 #: model_terms:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
 msgid "Help"
@@ -373,11 +353,6 @@ msgid ""
 "Set the scheduler to active and fill in how often you want backups generated."
 msgstr ""
 
-#. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup__smart_search
-msgid "Smart Search"
-msgstr ""
-
 #. module: auto_backup
 #: model:ir.model.fields,help:auto_backup.field_db_backup__name
 msgid "Summary of this backup process"
@@ -430,11 +405,6 @@ msgid ""
 "you specify."
 msgstr ""
 
-#. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup__user_can_see_changeset
-msgid "User Can See Changeset"
-msgstr ""
-
 #. module: auto_backup
 #: model:ir.model.fields,field_description:auto_backup.field_db_backup__sftp_user
 msgid "Username in the SFTP Server"
diff --git a/auto_backup/i18n/he.po b/auto_backup/i18n/he.po
index b73fce00c43..f915e8eff2c 100644
--- a/auto_backup/i18n/he.po
+++ b/auto_backup/i18n/he.po
@@ -88,16 +88,6 @@ msgstr ""
 msgid "Cannot duplicate a configuration."
 msgstr ""
 
-#. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup__changeset_change_ids
-msgid "Changeset Changes"
-msgstr ""
-
-#. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup__changeset_ids
-msgid "Changesets"
-msgstr ""
-
 #. module: auto_backup
 #: model:ir.model.fields,help:auto_backup.field_db_backup__backup_format
 msgid "Choose the format for this backup."
@@ -126,16 +116,6 @@ msgstr ""
 msgid "Connection Test Succeeded!"
 msgstr ""
 
-#. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup__count_pending_changeset_changes
-msgid "Count Pending Changeset Changes"
-msgstr ""
-
-#. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup__count_pending_changesets
-msgid "Count Pending Changesets"
-msgstr ""
-
 #. module: auto_backup
 #: model:ir.model.fields,field_description:auto_backup.field_db_backup__create_uid
 msgid "Created by"
@@ -202,11 +182,6 @@ msgstr ""
 msgid "Followers"
 msgstr ""
 
-#. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup__message_channel_ids
-msgid "Followers (Channels)"
-msgstr ""
-
 #. module: auto_backup
 #: model:ir.model.fields,field_description:auto_backup.field_db_backup__message_partner_ids
 msgid "Followers (Partners)"
@@ -217,6 +192,11 @@ msgstr ""
 msgid "Go to Settings / Technical / Automation / Scheduled Actions."
 msgstr ""
 
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__has_message
+msgid "Has Message"
+msgstr ""
+
 #. module: auto_backup
 #: model_terms:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
 msgid "Help"
@@ -372,11 +352,6 @@ msgid ""
 "Set the scheduler to active and fill in how often you want backups generated."
 msgstr ""
 
-#. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup__smart_search
-msgid "Smart Search"
-msgstr ""
-
 #. module: auto_backup
 #: model:ir.model.fields,help:auto_backup.field_db_backup__name
 msgid "Summary of this backup process"
@@ -429,11 +404,6 @@ msgid ""
 "you specify."
 msgstr ""
 
-#. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup__user_can_see_changeset
-msgid "User Can See Changeset"
-msgstr ""
-
 #. module: auto_backup
 #: model:ir.model.fields,field_description:auto_backup.field_db_backup__sftp_user
 msgid "Username in the SFTP Server"
diff --git a/auto_backup/i18n/hr.po b/auto_backup/i18n/hr.po
index 07dbd8ec5dc..0a1533310a4 100644
--- a/auto_backup/i18n/hr.po
+++ b/auto_backup/i18n/hr.po
@@ -90,16 +90,6 @@ msgstr "Osnovne postavke backupa"
 msgid "Cannot duplicate a configuration."
 msgstr "Nije moguće dupliciranje postavki."
 
-#. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup__changeset_change_ids
-msgid "Changeset Changes"
-msgstr ""
-
-#. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup__changeset_ids
-msgid "Changesets"
-msgstr ""
-
 #. module: auto_backup
 #: model:ir.model.fields,help:auto_backup.field_db_backup__backup_format
 msgid "Choose the format for this backup."
@@ -128,16 +118,6 @@ msgstr "Provjera povezivanja nije uspjela!"
 msgid "Connection Test Succeeded!"
 msgstr "Provjera povezivanja uspješna!"
 
-#. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup__count_pending_changeset_changes
-msgid "Count Pending Changeset Changes"
-msgstr ""
-
-#. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup__count_pending_changesets
-msgid "Count Pending Changesets"
-msgstr ""
-
 #. module: auto_backup
 #: model:ir.model.fields,field_description:auto_backup.field_db_backup__create_uid
 msgid "Created by"
@@ -206,11 +186,6 @@ msgstr "Folder"
 msgid "Followers"
 msgstr ""
 
-#. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup__message_channel_ids
-msgid "Followers (Channels)"
-msgstr ""
-
 #. module: auto_backup
 #: model:ir.model.fields,field_description:auto_backup.field_db_backup__message_partner_ids
 msgid "Followers (Partners)"
@@ -221,6 +196,11 @@ msgstr ""
 msgid "Go to Settings / Technical / Automation / Scheduled Actions."
 msgstr ""
 
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__has_message
+msgid "Has Message"
+msgstr ""
+
 #. module: auto_backup
 #: model_terms:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
 msgid "Help"
@@ -376,11 +356,6 @@ msgid ""
 "Set the scheduler to active and fill in how often you want backups generated."
 msgstr ""
 
-#. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup__smart_search
-msgid "Smart Search"
-msgstr ""
-
 #. module: auto_backup
 #: model:ir.model.fields,help:auto_backup.field_db_backup__name
 msgid "Summary of this backup process"
@@ -433,11 +408,6 @@ msgid ""
 "you specify."
 msgstr ""
 
-#. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup__user_can_see_changeset
-msgid "User Can See Changeset"
-msgstr ""
-
 #. module: auto_backup
 #: model:ir.model.fields,field_description:auto_backup.field_db_backup__sftp_user
 msgid "Username in the SFTP Server"
diff --git a/auto_backup/i18n/hr_HR.po b/auto_backup/i18n/hr_HR.po
index 9e0939fb9a4..f0b947f11b7 100644
--- a/auto_backup/i18n/hr_HR.po
+++ b/auto_backup/i18n/hr_HR.po
@@ -90,16 +90,6 @@ msgstr ""
 msgid "Cannot duplicate a configuration."
 msgstr ""
 
-#. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup__changeset_change_ids
-msgid "Changeset Changes"
-msgstr ""
-
-#. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup__changeset_ids
-msgid "Changesets"
-msgstr ""
-
 #. module: auto_backup
 #: model:ir.model.fields,help:auto_backup.field_db_backup__backup_format
 msgid "Choose the format for this backup."
@@ -128,16 +118,6 @@ msgstr ""
 msgid "Connection Test Succeeded!"
 msgstr ""
 
-#. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup__count_pending_changeset_changes
-msgid "Count Pending Changeset Changes"
-msgstr ""
-
-#. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup__count_pending_changesets
-msgid "Count Pending Changesets"
-msgstr ""
-
 #. module: auto_backup
 #: model:ir.model.fields,field_description:auto_backup.field_db_backup__create_uid
 msgid "Created by"
@@ -204,11 +184,6 @@ msgstr ""
 msgid "Followers"
 msgstr ""
 
-#. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup__message_channel_ids
-msgid "Followers (Channels)"
-msgstr ""
-
 #. module: auto_backup
 #: model:ir.model.fields,field_description:auto_backup.field_db_backup__message_partner_ids
 msgid "Followers (Partners)"
@@ -219,6 +194,11 @@ msgstr ""
 msgid "Go to Settings / Technical / Automation / Scheduled Actions."
 msgstr ""
 
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__has_message
+msgid "Has Message"
+msgstr ""
+
 #. module: auto_backup
 #: model_terms:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
 msgid "Help"
@@ -374,11 +354,6 @@ msgid ""
 "Set the scheduler to active and fill in how often you want backups generated."
 msgstr ""
 
-#. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup__smart_search
-msgid "Smart Search"
-msgstr ""
-
 #. module: auto_backup
 #: model:ir.model.fields,help:auto_backup.field_db_backup__name
 msgid "Summary of this backup process"
@@ -431,11 +406,6 @@ msgid ""
 "you specify."
 msgstr ""
 
-#. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup__user_can_see_changeset
-msgid "User Can See Changeset"
-msgstr ""
-
 #. module: auto_backup
 #: model:ir.model.fields,field_description:auto_backup.field_db_backup__sftp_user
 msgid "Username in the SFTP Server"
diff --git a/auto_backup/i18n/hu.po b/auto_backup/i18n/hu.po
index e1db6d660f1..f744880c589 100644
--- a/auto_backup/i18n/hu.po
+++ b/auto_backup/i18n/hu.po
@@ -88,16 +88,6 @@ msgstr ""
 msgid "Cannot duplicate a configuration."
 msgstr ""
 
-#. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup__changeset_change_ids
-msgid "Changeset Changes"
-msgstr ""
-
-#. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup__changeset_ids
-msgid "Changesets"
-msgstr ""
-
 #. module: auto_backup
 #: model:ir.model.fields,help:auto_backup.field_db_backup__backup_format
 msgid "Choose the format for this backup."
@@ -126,16 +116,6 @@ msgstr ""
 msgid "Connection Test Succeeded!"
 msgstr ""
 
-#. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup__count_pending_changeset_changes
-msgid "Count Pending Changeset Changes"
-msgstr ""
-
-#. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup__count_pending_changesets
-msgid "Count Pending Changesets"
-msgstr ""
-
 #. module: auto_backup
 #: model:ir.model.fields,field_description:auto_backup.field_db_backup__create_uid
 msgid "Created by"
@@ -202,11 +182,6 @@ msgstr ""
 msgid "Followers"
 msgstr ""
 
-#. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup__message_channel_ids
-msgid "Followers (Channels)"
-msgstr ""
-
 #. module: auto_backup
 #: model:ir.model.fields,field_description:auto_backup.field_db_backup__message_partner_ids
 msgid "Followers (Partners)"
@@ -217,6 +192,11 @@ msgstr ""
 msgid "Go to Settings / Technical / Automation / Scheduled Actions."
 msgstr ""
 
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__has_message
+msgid "Has Message"
+msgstr ""
+
 #. module: auto_backup
 #: model_terms:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
 msgid "Help"
@@ -372,11 +352,6 @@ msgid ""
 "Set the scheduler to active and fill in how often you want backups generated."
 msgstr ""
 
-#. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup__smart_search
-msgid "Smart Search"
-msgstr ""
-
 #. module: auto_backup
 #: model:ir.model.fields,help:auto_backup.field_db_backup__name
 msgid "Summary of this backup process"
@@ -429,11 +404,6 @@ msgid ""
 "you specify."
 msgstr ""
 
-#. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup__user_can_see_changeset
-msgid "User Can See Changeset"
-msgstr ""
-
 #. module: auto_backup
 #: model:ir.model.fields,field_description:auto_backup.field_db_backup__sftp_user
 msgid "Username in the SFTP Server"
diff --git a/auto_backup/i18n/id.po b/auto_backup/i18n/id.po
index 941a1c4ef90..9fda971312e 100644
--- a/auto_backup/i18n/id.po
+++ b/auto_backup/i18n/id.po
@@ -88,16 +88,6 @@ msgstr ""
 msgid "Cannot duplicate a configuration."
 msgstr ""
 
-#. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup__changeset_change_ids
-msgid "Changeset Changes"
-msgstr ""
-
-#. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup__changeset_ids
-msgid "Changesets"
-msgstr ""
-
 #. module: auto_backup
 #: model:ir.model.fields,help:auto_backup.field_db_backup__backup_format
 msgid "Choose the format for this backup."
@@ -126,16 +116,6 @@ msgstr ""
 msgid "Connection Test Succeeded!"
 msgstr ""
 
-#. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup__count_pending_changeset_changes
-msgid "Count Pending Changeset Changes"
-msgstr ""
-
-#. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup__count_pending_changesets
-msgid "Count Pending Changesets"
-msgstr ""
-
 #. module: auto_backup
 #: model:ir.model.fields,field_description:auto_backup.field_db_backup__create_uid
 msgid "Created by"
@@ -202,11 +182,6 @@ msgstr ""
 msgid "Followers"
 msgstr ""
 
-#. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup__message_channel_ids
-msgid "Followers (Channels)"
-msgstr ""
-
 #. module: auto_backup
 #: model:ir.model.fields,field_description:auto_backup.field_db_backup__message_partner_ids
 msgid "Followers (Partners)"
@@ -217,6 +192,11 @@ msgstr ""
 msgid "Go to Settings / Technical / Automation / Scheduled Actions."
 msgstr ""
 
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__has_message
+msgid "Has Message"
+msgstr ""
+
 #. module: auto_backup
 #: model_terms:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
 msgid "Help"
@@ -372,11 +352,6 @@ msgid ""
 "Set the scheduler to active and fill in how often you want backups generated."
 msgstr ""
 
-#. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup__smart_search
-msgid "Smart Search"
-msgstr ""
-
 #. module: auto_backup
 #: model:ir.model.fields,help:auto_backup.field_db_backup__name
 msgid "Summary of this backup process"
@@ -429,11 +404,6 @@ msgid ""
 "you specify."
 msgstr ""
 
-#. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup__user_can_see_changeset
-msgid "User Can See Changeset"
-msgstr ""
-
 #. module: auto_backup
 #: model:ir.model.fields,field_description:auto_backup.field_db_backup__sftp_user
 msgid "Username in the SFTP Server"
diff --git a/auto_backup/i18n/it.po b/auto_backup/i18n/it.po
index fd891143fa8..c0eb747f3a4 100644
--- a/auto_backup/i18n/it.po
+++ b/auto_backup/i18n/it.po
@@ -92,16 +92,6 @@ msgstr "Configurazione di base del backup"
 msgid "Cannot duplicate a configuration."
 msgstr "Impossibile duplicare una configurazione."
 
-#. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup__changeset_change_ids
-msgid "Changeset Changes"
-msgstr ""
-
-#. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup__changeset_ids
-msgid "Changesets"
-msgstr ""
-
 #. module: auto_backup
 #: model:ir.model.fields,help:auto_backup.field_db_backup__backup_format
 #, fuzzy
@@ -132,16 +122,6 @@ msgstr "Prova di connessione non riuscita."
 msgid "Connection Test Succeeded!"
 msgstr "Prova di connessione superata."
 
-#. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup__count_pending_changeset_changes
-msgid "Count Pending Changeset Changes"
-msgstr ""
-
-#. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup__count_pending_changesets
-msgid "Count Pending Changesets"
-msgstr ""
-
 #. module: auto_backup
 #: model:ir.model.fields,field_description:auto_backup.field_db_backup__create_uid
 msgid "Created by"
@@ -210,11 +190,6 @@ msgstr "Cartella"
 msgid "Followers"
 msgstr "Chi sta seguendo"
 
-#. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup__message_channel_ids
-msgid "Followers (Channels)"
-msgstr "Chi sta seguendo (canali)"
-
 #. module: auto_backup
 #: model:ir.model.fields,field_description:auto_backup.field_db_backup__message_partner_ids
 msgid "Followers (Partners)"
@@ -228,6 +203,11 @@ msgstr ""
 "Andare in  Configurazione / Funzioni Tecniche / Automazione / Azioni "
 "Programmate."
 
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__has_message
+msgid "Has Message"
+msgstr ""
+
 #. module: auto_backup
 #: model_terms:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
 msgid "Help"
@@ -389,11 +369,6 @@ msgstr ""
 "Impostare lo scheduler per attivare e compilare la frequenza con cui si "
 "desidera generare il backup."
 
-#. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup__smart_search
-msgid "Smart Search"
-msgstr "Ricerca intelligente"
-
 #. module: auto_backup
 #: model:ir.model.fields,help:auto_backup.field_db_backup__name
 msgid "Summary of this backup process"
@@ -452,11 +427,6 @@ msgstr ""
 "Usare SFTP con cautela, nei server esterni vengono scritti file nel percorso "
 "specificato."
 
-#. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup__user_can_see_changeset
-msgid "User Can See Changeset"
-msgstr ""
-
 #. module: auto_backup
 #: model:ir.model.fields,field_description:auto_backup.field_db_backup__sftp_user
 msgid "Username in the SFTP Server"
@@ -496,3 +466,9 @@ msgstr "sftp.example.com"
 #: model:ir.model.fields.selection,name:auto_backup.selection__db_backup__backup_format__zip
 msgid "zip (includes filestore)"
 msgstr "zip (include filestore)"
+
+#~ msgid "Followers (Channels)"
+#~ msgstr "Chi sta seguendo (canali)"
+
+#~ msgid "Smart Search"
+#~ msgstr "Ricerca intelligente"
diff --git a/auto_backup/i18n/ja.po b/auto_backup/i18n/ja.po
index 24b54b87b69..a5eb7ce75d8 100644
--- a/auto_backup/i18n/ja.po
+++ b/auto_backup/i18n/ja.po
@@ -88,16 +88,6 @@ msgstr ""
 msgid "Cannot duplicate a configuration."
 msgstr ""
 
-#. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup__changeset_change_ids
-msgid "Changeset Changes"
-msgstr ""
-
-#. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup__changeset_ids
-msgid "Changesets"
-msgstr ""
-
 #. module: auto_backup
 #: model:ir.model.fields,help:auto_backup.field_db_backup__backup_format
 msgid "Choose the format for this backup."
@@ -126,16 +116,6 @@ msgstr ""
 msgid "Connection Test Succeeded!"
 msgstr ""
 
-#. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup__count_pending_changeset_changes
-msgid "Count Pending Changeset Changes"
-msgstr ""
-
-#. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup__count_pending_changesets
-msgid "Count Pending Changesets"
-msgstr ""
-
 #. module: auto_backup
 #: model:ir.model.fields,field_description:auto_backup.field_db_backup__create_uid
 msgid "Created by"
@@ -202,11 +182,6 @@ msgstr ""
 msgid "Followers"
 msgstr ""
 
-#. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup__message_channel_ids
-msgid "Followers (Channels)"
-msgstr ""
-
 #. module: auto_backup
 #: model:ir.model.fields,field_description:auto_backup.field_db_backup__message_partner_ids
 msgid "Followers (Partners)"
@@ -217,6 +192,11 @@ msgstr ""
 msgid "Go to Settings / Technical / Automation / Scheduled Actions."
 msgstr ""
 
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__has_message
+msgid "Has Message"
+msgstr ""
+
 #. module: auto_backup
 #: model_terms:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
 msgid "Help"
@@ -372,11 +352,6 @@ msgid ""
 "Set the scheduler to active and fill in how often you want backups generated."
 msgstr ""
 
-#. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup__smart_search
-msgid "Smart Search"
-msgstr ""
-
 #. module: auto_backup
 #: model:ir.model.fields,help:auto_backup.field_db_backup__name
 msgid "Summary of this backup process"
@@ -429,11 +404,6 @@ msgid ""
 "you specify."
 msgstr ""
 
-#. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup__user_can_see_changeset
-msgid "User Can See Changeset"
-msgstr ""
-
 #. module: auto_backup
 #: model:ir.model.fields,field_description:auto_backup.field_db_backup__sftp_user
 msgid "Username in the SFTP Server"
diff --git a/auto_backup/i18n/ko.po b/auto_backup/i18n/ko.po
index 1f000c11bd5..84e8bdb6064 100644
--- a/auto_backup/i18n/ko.po
+++ b/auto_backup/i18n/ko.po
@@ -88,16 +88,6 @@ msgstr ""
 msgid "Cannot duplicate a configuration."
 msgstr ""
 
-#. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup__changeset_change_ids
-msgid "Changeset Changes"
-msgstr ""
-
-#. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup__changeset_ids
-msgid "Changesets"
-msgstr ""
-
 #. module: auto_backup
 #: model:ir.model.fields,help:auto_backup.field_db_backup__backup_format
 msgid "Choose the format for this backup."
@@ -126,16 +116,6 @@ msgstr ""
 msgid "Connection Test Succeeded!"
 msgstr ""
 
-#. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup__count_pending_changeset_changes
-msgid "Count Pending Changeset Changes"
-msgstr ""
-
-#. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup__count_pending_changesets
-msgid "Count Pending Changesets"
-msgstr ""
-
 #. module: auto_backup
 #: model:ir.model.fields,field_description:auto_backup.field_db_backup__create_uid
 msgid "Created by"
@@ -202,11 +182,6 @@ msgstr ""
 msgid "Followers"
 msgstr ""
 
-#. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup__message_channel_ids
-msgid "Followers (Channels)"
-msgstr ""
-
 #. module: auto_backup
 #: model:ir.model.fields,field_description:auto_backup.field_db_backup__message_partner_ids
 msgid "Followers (Partners)"
@@ -217,6 +192,11 @@ msgstr ""
 msgid "Go to Settings / Technical / Automation / Scheduled Actions."
 msgstr ""
 
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__has_message
+msgid "Has Message"
+msgstr ""
+
 #. module: auto_backup
 #: model_terms:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
 msgid "Help"
@@ -372,11 +352,6 @@ msgid ""
 "Set the scheduler to active and fill in how often you want backups generated."
 msgstr ""
 
-#. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup__smart_search
-msgid "Smart Search"
-msgstr ""
-
 #. module: auto_backup
 #: model:ir.model.fields,help:auto_backup.field_db_backup__name
 msgid "Summary of this backup process"
@@ -429,11 +404,6 @@ msgid ""
 "you specify."
 msgstr ""
 
-#. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup__user_can_see_changeset
-msgid "User Can See Changeset"
-msgstr ""
-
 #. module: auto_backup
 #: model:ir.model.fields,field_description:auto_backup.field_db_backup__sftp_user
 msgid "Username in the SFTP Server"
diff --git a/auto_backup/i18n/lt.po b/auto_backup/i18n/lt.po
index 0b61ec0f92f..9428efad5b2 100644
--- a/auto_backup/i18n/lt.po
+++ b/auto_backup/i18n/lt.po
@@ -89,16 +89,6 @@ msgstr ""
 msgid "Cannot duplicate a configuration."
 msgstr ""
 
-#. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup__changeset_change_ids
-msgid "Changeset Changes"
-msgstr ""
-
-#. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup__changeset_ids
-msgid "Changesets"
-msgstr ""
-
 #. module: auto_backup
 #: model:ir.model.fields,help:auto_backup.field_db_backup__backup_format
 msgid "Choose the format for this backup."
@@ -127,16 +117,6 @@ msgstr ""
 msgid "Connection Test Succeeded!"
 msgstr ""
 
-#. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup__count_pending_changeset_changes
-msgid "Count Pending Changeset Changes"
-msgstr ""
-
-#. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup__count_pending_changesets
-msgid "Count Pending Changesets"
-msgstr ""
-
 #. module: auto_backup
 #: model:ir.model.fields,field_description:auto_backup.field_db_backup__create_uid
 msgid "Created by"
@@ -203,11 +183,6 @@ msgstr ""
 msgid "Followers"
 msgstr ""
 
-#. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup__message_channel_ids
-msgid "Followers (Channels)"
-msgstr ""
-
 #. module: auto_backup
 #: model:ir.model.fields,field_description:auto_backup.field_db_backup__message_partner_ids
 msgid "Followers (Partners)"
@@ -218,6 +193,11 @@ msgstr ""
 msgid "Go to Settings / Technical / Automation / Scheduled Actions."
 msgstr ""
 
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__has_message
+msgid "Has Message"
+msgstr ""
+
 #. module: auto_backup
 #: model_terms:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
 msgid "Help"
@@ -373,11 +353,6 @@ msgid ""
 "Set the scheduler to active and fill in how often you want backups generated."
 msgstr ""
 
-#. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup__smart_search
-msgid "Smart Search"
-msgstr ""
-
 #. module: auto_backup
 #: model:ir.model.fields,help:auto_backup.field_db_backup__name
 msgid "Summary of this backup process"
@@ -430,11 +405,6 @@ msgid ""
 "you specify."
 msgstr ""
 
-#. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup__user_can_see_changeset
-msgid "User Can See Changeset"
-msgstr ""
-
 #. module: auto_backup
 #: model:ir.model.fields,field_description:auto_backup.field_db_backup__sftp_user
 msgid "Username in the SFTP Server"
diff --git a/auto_backup/i18n/lt_LT.po b/auto_backup/i18n/lt_LT.po
index 3d6518ac5d8..0a8c6498473 100644
--- a/auto_backup/i18n/lt_LT.po
+++ b/auto_backup/i18n/lt_LT.po
@@ -90,16 +90,6 @@ msgstr ""
 msgid "Cannot duplicate a configuration."
 msgstr ""
 
-#. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup__changeset_change_ids
-msgid "Changeset Changes"
-msgstr ""
-
-#. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup__changeset_ids
-msgid "Changesets"
-msgstr ""
-
 #. module: auto_backup
 #: model:ir.model.fields,help:auto_backup.field_db_backup__backup_format
 msgid "Choose the format for this backup."
@@ -128,16 +118,6 @@ msgstr ""
 msgid "Connection Test Succeeded!"
 msgstr ""
 
-#. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup__count_pending_changeset_changes
-msgid "Count Pending Changeset Changes"
-msgstr ""
-
-#. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup__count_pending_changesets
-msgid "Count Pending Changesets"
-msgstr ""
-
 #. module: auto_backup
 #: model:ir.model.fields,field_description:auto_backup.field_db_backup__create_uid
 msgid "Created by"
@@ -204,11 +184,6 @@ msgstr ""
 msgid "Followers"
 msgstr ""
 
-#. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup__message_channel_ids
-msgid "Followers (Channels)"
-msgstr ""
-
 #. module: auto_backup
 #: model:ir.model.fields,field_description:auto_backup.field_db_backup__message_partner_ids
 msgid "Followers (Partners)"
@@ -219,6 +194,11 @@ msgstr ""
 msgid "Go to Settings / Technical / Automation / Scheduled Actions."
 msgstr ""
 
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__has_message
+msgid "Has Message"
+msgstr ""
+
 #. module: auto_backup
 #: model_terms:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
 msgid "Help"
@@ -374,11 +354,6 @@ msgid ""
 "Set the scheduler to active and fill in how often you want backups generated."
 msgstr ""
 
-#. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup__smart_search
-msgid "Smart Search"
-msgstr ""
-
 #. module: auto_backup
 #: model:ir.model.fields,help:auto_backup.field_db_backup__name
 msgid "Summary of this backup process"
@@ -431,11 +406,6 @@ msgid ""
 "you specify."
 msgstr ""
 
-#. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup__user_can_see_changeset
-msgid "User Can See Changeset"
-msgstr ""
-
 #. module: auto_backup
 #: model:ir.model.fields,field_description:auto_backup.field_db_backup__sftp_user
 msgid "Username in the SFTP Server"
diff --git a/auto_backup/i18n/lv.po b/auto_backup/i18n/lv.po
index 325a28095de..8d91191cc5a 100644
--- a/auto_backup/i18n/lv.po
+++ b/auto_backup/i18n/lv.po
@@ -89,16 +89,6 @@ msgstr ""
 msgid "Cannot duplicate a configuration."
 msgstr ""
 
-#. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup__changeset_change_ids
-msgid "Changeset Changes"
-msgstr ""
-
-#. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup__changeset_ids
-msgid "Changesets"
-msgstr ""
-
 #. module: auto_backup
 #: model:ir.model.fields,help:auto_backup.field_db_backup__backup_format
 msgid "Choose the format for this backup."
@@ -127,16 +117,6 @@ msgstr ""
 msgid "Connection Test Succeeded!"
 msgstr ""
 
-#. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup__count_pending_changeset_changes
-msgid "Count Pending Changeset Changes"
-msgstr ""
-
-#. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup__count_pending_changesets
-msgid "Count Pending Changesets"
-msgstr ""
-
 #. module: auto_backup
 #: model:ir.model.fields,field_description:auto_backup.field_db_backup__create_uid
 msgid "Created by"
@@ -203,11 +183,6 @@ msgstr ""
 msgid "Followers"
 msgstr ""
 
-#. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup__message_channel_ids
-msgid "Followers (Channels)"
-msgstr ""
-
 #. module: auto_backup
 #: model:ir.model.fields,field_description:auto_backup.field_db_backup__message_partner_ids
 msgid "Followers (Partners)"
@@ -218,6 +193,11 @@ msgstr ""
 msgid "Go to Settings / Technical / Automation / Scheduled Actions."
 msgstr ""
 
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__has_message
+msgid "Has Message"
+msgstr ""
+
 #. module: auto_backup
 #: model_terms:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
 msgid "Help"
@@ -373,11 +353,6 @@ msgid ""
 "Set the scheduler to active and fill in how often you want backups generated."
 msgstr ""
 
-#. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup__smart_search
-msgid "Smart Search"
-msgstr ""
-
 #. module: auto_backup
 #: model:ir.model.fields,help:auto_backup.field_db_backup__name
 msgid "Summary of this backup process"
@@ -430,11 +405,6 @@ msgid ""
 "you specify."
 msgstr ""
 
-#. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup__user_can_see_changeset
-msgid "User Can See Changeset"
-msgstr ""
-
 #. module: auto_backup
 #: model:ir.model.fields,field_description:auto_backup.field_db_backup__sftp_user
 msgid "Username in the SFTP Server"
diff --git a/auto_backup/i18n/mk.po b/auto_backup/i18n/mk.po
index a0b9f21c569..60e568ad272 100644
--- a/auto_backup/i18n/mk.po
+++ b/auto_backup/i18n/mk.po
@@ -88,16 +88,6 @@ msgstr ""
 msgid "Cannot duplicate a configuration."
 msgstr ""
 
-#. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup__changeset_change_ids
-msgid "Changeset Changes"
-msgstr ""
-
-#. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup__changeset_ids
-msgid "Changesets"
-msgstr ""
-
 #. module: auto_backup
 #: model:ir.model.fields,help:auto_backup.field_db_backup__backup_format
 msgid "Choose the format for this backup."
@@ -126,16 +116,6 @@ msgstr ""
 msgid "Connection Test Succeeded!"
 msgstr ""
 
-#. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup__count_pending_changeset_changes
-msgid "Count Pending Changeset Changes"
-msgstr ""
-
-#. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup__count_pending_changesets
-msgid "Count Pending Changesets"
-msgstr ""
-
 #. module: auto_backup
 #: model:ir.model.fields,field_description:auto_backup.field_db_backup__create_uid
 msgid "Created by"
@@ -202,11 +182,6 @@ msgstr ""
 msgid "Followers"
 msgstr ""
 
-#. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup__message_channel_ids
-msgid "Followers (Channels)"
-msgstr ""
-
 #. module: auto_backup
 #: model:ir.model.fields,field_description:auto_backup.field_db_backup__message_partner_ids
 msgid "Followers (Partners)"
@@ -217,6 +192,11 @@ msgstr ""
 msgid "Go to Settings / Technical / Automation / Scheduled Actions."
 msgstr ""
 
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__has_message
+msgid "Has Message"
+msgstr ""
+
 #. module: auto_backup
 #: model_terms:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
 msgid "Help"
@@ -372,11 +352,6 @@ msgid ""
 "Set the scheduler to active and fill in how often you want backups generated."
 msgstr ""
 
-#. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup__smart_search
-msgid "Smart Search"
-msgstr ""
-
 #. module: auto_backup
 #: model:ir.model.fields,help:auto_backup.field_db_backup__name
 msgid "Summary of this backup process"
@@ -429,11 +404,6 @@ msgid ""
 "you specify."
 msgstr ""
 
-#. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup__user_can_see_changeset
-msgid "User Can See Changeset"
-msgstr ""
-
 #. module: auto_backup
 #: model:ir.model.fields,field_description:auto_backup.field_db_backup__sftp_user
 msgid "Username in the SFTP Server"
diff --git a/auto_backup/i18n/mn.po b/auto_backup/i18n/mn.po
index 3aca3bb4ab9..582207c47b3 100644
--- a/auto_backup/i18n/mn.po
+++ b/auto_backup/i18n/mn.po
@@ -88,16 +88,6 @@ msgstr ""
 msgid "Cannot duplicate a configuration."
 msgstr ""
 
-#. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup__changeset_change_ids
-msgid "Changeset Changes"
-msgstr ""
-
-#. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup__changeset_ids
-msgid "Changesets"
-msgstr ""
-
 #. module: auto_backup
 #: model:ir.model.fields,help:auto_backup.field_db_backup__backup_format
 msgid "Choose the format for this backup."
@@ -126,16 +116,6 @@ msgstr ""
 msgid "Connection Test Succeeded!"
 msgstr ""
 
-#. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup__count_pending_changeset_changes
-msgid "Count Pending Changeset Changes"
-msgstr ""
-
-#. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup__count_pending_changesets
-msgid "Count Pending Changesets"
-msgstr ""
-
 #. module: auto_backup
 #: model:ir.model.fields,field_description:auto_backup.field_db_backup__create_uid
 msgid "Created by"
@@ -202,11 +182,6 @@ msgstr ""
 msgid "Followers"
 msgstr ""
 
-#. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup__message_channel_ids
-msgid "Followers (Channels)"
-msgstr ""
-
 #. module: auto_backup
 #: model:ir.model.fields,field_description:auto_backup.field_db_backup__message_partner_ids
 msgid "Followers (Partners)"
@@ -217,6 +192,11 @@ msgstr ""
 msgid "Go to Settings / Technical / Automation / Scheduled Actions."
 msgstr ""
 
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__has_message
+msgid "Has Message"
+msgstr ""
+
 #. module: auto_backup
 #: model_terms:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
 msgid "Help"
@@ -372,11 +352,6 @@ msgid ""
 "Set the scheduler to active and fill in how often you want backups generated."
 msgstr ""
 
-#. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup__smart_search
-msgid "Smart Search"
-msgstr ""
-
 #. module: auto_backup
 #: model:ir.model.fields,help:auto_backup.field_db_backup__name
 msgid "Summary of this backup process"
@@ -429,11 +404,6 @@ msgid ""
 "you specify."
 msgstr ""
 
-#. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup__user_can_see_changeset
-msgid "User Can See Changeset"
-msgstr ""
-
 #. module: auto_backup
 #: model:ir.model.fields,field_description:auto_backup.field_db_backup__sftp_user
 msgid "Username in the SFTP Server"
diff --git a/auto_backup/i18n/nb.po b/auto_backup/i18n/nb.po
index 16a0beb2de8..0379e9046b7 100644
--- a/auto_backup/i18n/nb.po
+++ b/auto_backup/i18n/nb.po
@@ -89,16 +89,6 @@ msgstr ""
 msgid "Cannot duplicate a configuration."
 msgstr ""
 
-#. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup__changeset_change_ids
-msgid "Changeset Changes"
-msgstr ""
-
-#. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup__changeset_ids
-msgid "Changesets"
-msgstr ""
-
 #. module: auto_backup
 #: model:ir.model.fields,help:auto_backup.field_db_backup__backup_format
 msgid "Choose the format for this backup."
@@ -127,16 +117,6 @@ msgstr ""
 msgid "Connection Test Succeeded!"
 msgstr ""
 
-#. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup__count_pending_changeset_changes
-msgid "Count Pending Changeset Changes"
-msgstr ""
-
-#. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup__count_pending_changesets
-msgid "Count Pending Changesets"
-msgstr ""
-
 #. module: auto_backup
 #: model:ir.model.fields,field_description:auto_backup.field_db_backup__create_uid
 msgid "Created by"
@@ -203,11 +183,6 @@ msgstr ""
 msgid "Followers"
 msgstr ""
 
-#. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup__message_channel_ids
-msgid "Followers (Channels)"
-msgstr ""
-
 #. module: auto_backup
 #: model:ir.model.fields,field_description:auto_backup.field_db_backup__message_partner_ids
 msgid "Followers (Partners)"
@@ -218,6 +193,11 @@ msgstr ""
 msgid "Go to Settings / Technical / Automation / Scheduled Actions."
 msgstr ""
 
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__has_message
+msgid "Has Message"
+msgstr ""
+
 #. module: auto_backup
 #: model_terms:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
 msgid "Help"
@@ -373,11 +353,6 @@ msgid ""
 "Set the scheduler to active and fill in how often you want backups generated."
 msgstr ""
 
-#. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup__smart_search
-msgid "Smart Search"
-msgstr ""
-
 #. module: auto_backup
 #: model:ir.model.fields,help:auto_backup.field_db_backup__name
 msgid "Summary of this backup process"
@@ -430,11 +405,6 @@ msgid ""
 "you specify."
 msgstr ""
 
-#. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup__user_can_see_changeset
-msgid "User Can See Changeset"
-msgstr ""
-
 #. module: auto_backup
 #: model:ir.model.fields,field_description:auto_backup.field_db_backup__sftp_user
 msgid "Username in the SFTP Server"
diff --git a/auto_backup/i18n/nb_NO.po b/auto_backup/i18n/nb_NO.po
index e50100dbf4e..7eaef8e9bc0 100644
--- a/auto_backup/i18n/nb_NO.po
+++ b/auto_backup/i18n/nb_NO.po
@@ -89,16 +89,6 @@ msgstr ""
 msgid "Cannot duplicate a configuration."
 msgstr ""
 
-#. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup__changeset_change_ids
-msgid "Changeset Changes"
-msgstr ""
-
-#. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup__changeset_ids
-msgid "Changesets"
-msgstr ""
-
 #. module: auto_backup
 #: model:ir.model.fields,help:auto_backup.field_db_backup__backup_format
 msgid "Choose the format for this backup."
@@ -127,16 +117,6 @@ msgstr ""
 msgid "Connection Test Succeeded!"
 msgstr ""
 
-#. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup__count_pending_changeset_changes
-msgid "Count Pending Changeset Changes"
-msgstr ""
-
-#. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup__count_pending_changesets
-msgid "Count Pending Changesets"
-msgstr ""
-
 #. module: auto_backup
 #: model:ir.model.fields,field_description:auto_backup.field_db_backup__create_uid
 msgid "Created by"
@@ -203,11 +183,6 @@ msgstr ""
 msgid "Followers"
 msgstr ""
 
-#. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup__message_channel_ids
-msgid "Followers (Channels)"
-msgstr ""
-
 #. module: auto_backup
 #: model:ir.model.fields,field_description:auto_backup.field_db_backup__message_partner_ids
 msgid "Followers (Partners)"
@@ -218,6 +193,11 @@ msgstr ""
 msgid "Go to Settings / Technical / Automation / Scheduled Actions."
 msgstr ""
 
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__has_message
+msgid "Has Message"
+msgstr ""
+
 #. module: auto_backup
 #: model_terms:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
 msgid "Help"
@@ -373,11 +353,6 @@ msgid ""
 "Set the scheduler to active and fill in how often you want backups generated."
 msgstr ""
 
-#. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup__smart_search
-msgid "Smart Search"
-msgstr ""
-
 #. module: auto_backup
 #: model:ir.model.fields,help:auto_backup.field_db_backup__name
 msgid "Summary of this backup process"
@@ -430,11 +405,6 @@ msgid ""
 "you specify."
 msgstr ""
 
-#. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup__user_can_see_changeset
-msgid "User Can See Changeset"
-msgstr ""
-
 #. module: auto_backup
 #: model:ir.model.fields,field_description:auto_backup.field_db_backup__sftp_user
 msgid "Username in the SFTP Server"
diff --git a/auto_backup/i18n/nl.po b/auto_backup/i18n/nl.po
index 3f9cffde2b6..9879bf25634 100644
--- a/auto_backup/i18n/nl.po
+++ b/auto_backup/i18n/nl.po
@@ -91,16 +91,6 @@ msgstr "Basis backup configuratie"
 msgid "Cannot duplicate a configuration."
 msgstr "Kan een configuratie niet dupliceren."
 
-#. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup__changeset_change_ids
-msgid "Changeset Changes"
-msgstr ""
-
-#. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup__changeset_ids
-msgid "Changesets"
-msgstr ""
-
 #. module: auto_backup
 #: model:ir.model.fields,help:auto_backup.field_db_backup__backup_format
 #, fuzzy
@@ -130,16 +120,6 @@ msgstr "Connectie test mislukt!"
 msgid "Connection Test Succeeded!"
 msgstr "Connectie test geslaagd!"
 
-#. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup__count_pending_changeset_changes
-msgid "Count Pending Changeset Changes"
-msgstr ""
-
-#. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup__count_pending_changesets
-msgid "Count Pending Changesets"
-msgstr ""
-
 #. module: auto_backup
 #: model:ir.model.fields,field_description:auto_backup.field_db_backup__create_uid
 msgid "Created by"
@@ -206,11 +186,6 @@ msgstr ""
 msgid "Followers"
 msgstr ""
 
-#. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup__message_channel_ids
-msgid "Followers (Channels)"
-msgstr ""
-
 #. module: auto_backup
 #: model:ir.model.fields,field_description:auto_backup.field_db_backup__message_partner_ids
 msgid "Followers (Partners)"
@@ -221,6 +196,11 @@ msgstr ""
 msgid "Go to Settings / Technical / Automation / Scheduled Actions."
 msgstr "Ga naar Instellingen / Technsich / Automatisering / Geplande acties"
 
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__has_message
+msgid "Has Message"
+msgstr ""
+
 #. module: auto_backup
 #: model_terms:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
 msgid "Help"
@@ -377,11 +357,6 @@ msgid ""
 msgstr ""
 "Zet de planner op actief en vul in hoe vaak de backup moet gemaakt worden."
 
-#. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup__smart_search
-msgid "Smart Search"
-msgstr ""
-
 #. module: auto_backup
 #: model:ir.model.fields,help:auto_backup.field_db_backup__name
 msgid "Summary of this backup process"
@@ -440,11 +415,6 @@ msgstr ""
 "Gebruik SFTP voorzichtig! Dit schrijft bestanden naar externe servers onder "
 "het pad dat u opgeeft."
 
-#. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup__user_can_see_changeset
-msgid "User Can See Changeset"
-msgstr ""
-
 #. module: auto_backup
 #: model:ir.model.fields,field_description:auto_backup.field_db_backup__sftp_user
 msgid "Username in the SFTP Server"
diff --git a/auto_backup/i18n/nl_BE.po b/auto_backup/i18n/nl_BE.po
index 991f7499121..2e93b078eb0 100644
--- a/auto_backup/i18n/nl_BE.po
+++ b/auto_backup/i18n/nl_BE.po
@@ -92,16 +92,6 @@ msgstr "Lokale backup configuratie"
 msgid "Cannot duplicate a configuration."
 msgstr "Lokale backup configuratie"
 
-#. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup__changeset_change_ids
-msgid "Changeset Changes"
-msgstr ""
-
-#. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup__changeset_ids
-msgid "Changesets"
-msgstr ""
-
 #. module: auto_backup
 #: model:ir.model.fields,help:auto_backup.field_db_backup__backup_format
 #, fuzzy
@@ -131,16 +121,6 @@ msgstr ""
 msgid "Connection Test Succeeded!"
 msgstr ""
 
-#. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup__count_pending_changeset_changes
-msgid "Count Pending Changeset Changes"
-msgstr ""
-
-#. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup__count_pending_changesets
-msgid "Count Pending Changesets"
-msgstr ""
-
 #. module: auto_backup
 #: model:ir.model.fields,field_description:auto_backup.field_db_backup__create_uid
 msgid "Created by"
@@ -208,11 +188,6 @@ msgstr ""
 msgid "Followers"
 msgstr ""
 
-#. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup__message_channel_ids
-msgid "Followers (Channels)"
-msgstr ""
-
 #. module: auto_backup
 #: model:ir.model.fields,field_description:auto_backup.field_db_backup__message_partner_ids
 msgid "Followers (Partners)"
@@ -223,6 +198,11 @@ msgstr ""
 msgid "Go to Settings / Technical / Automation / Scheduled Actions."
 msgstr "Ga naar Instellingen / Technsich / Automatisering / Geplande acties"
 
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__has_message
+msgid "Has Message"
+msgstr ""
+
 #. module: auto_backup
 #: model_terms:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
 msgid "Help"
@@ -383,11 +363,6 @@ msgid ""
 msgstr ""
 "Zet de planner op actief en vul in hoe vaak de backup moet gemaakt worden."
 
-#. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup__smart_search
-msgid "Smart Search"
-msgstr ""
-
 #. module: auto_backup
 #: model:ir.model.fields,help:auto_backup.field_db_backup__name
 msgid "Summary of this backup process"
@@ -448,11 +423,6 @@ msgstr ""
 "Gebruik SFTP voorzichtig! Dit schrijft bestanden naar externe servers onder "
 "het pad dat u opgeeft."
 
-#. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup__user_can_see_changeset
-msgid "User Can See Changeset"
-msgstr ""
-
 #. module: auto_backup
 #: model:ir.model.fields,field_description:auto_backup.field_db_backup__sftp_user
 #, fuzzy
diff --git a/auto_backup/i18n/nl_NL.po b/auto_backup/i18n/nl_NL.po
index 14063949236..b2724486d5d 100644
--- a/auto_backup/i18n/nl_NL.po
+++ b/auto_backup/i18n/nl_NL.po
@@ -89,16 +89,6 @@ msgstr ""
 msgid "Cannot duplicate a configuration."
 msgstr ""
 
-#. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup__changeset_change_ids
-msgid "Changeset Changes"
-msgstr ""
-
-#. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup__changeset_ids
-msgid "Changesets"
-msgstr ""
-
 #. module: auto_backup
 #: model:ir.model.fields,help:auto_backup.field_db_backup__backup_format
 msgid "Choose the format for this backup."
@@ -127,16 +117,6 @@ msgstr ""
 msgid "Connection Test Succeeded!"
 msgstr ""
 
-#. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup__count_pending_changeset_changes
-msgid "Count Pending Changeset Changes"
-msgstr ""
-
-#. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup__count_pending_changesets
-msgid "Count Pending Changesets"
-msgstr ""
-
 #. module: auto_backup
 #: model:ir.model.fields,field_description:auto_backup.field_db_backup__create_uid
 msgid "Created by"
@@ -203,11 +183,6 @@ msgstr ""
 msgid "Followers"
 msgstr ""
 
-#. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup__message_channel_ids
-msgid "Followers (Channels)"
-msgstr ""
-
 #. module: auto_backup
 #: model:ir.model.fields,field_description:auto_backup.field_db_backup__message_partner_ids
 msgid "Followers (Partners)"
@@ -218,6 +193,11 @@ msgstr ""
 msgid "Go to Settings / Technical / Automation / Scheduled Actions."
 msgstr ""
 
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__has_message
+msgid "Has Message"
+msgstr ""
+
 #. module: auto_backup
 #: model_terms:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
 msgid "Help"
@@ -373,11 +353,6 @@ msgid ""
 "Set the scheduler to active and fill in how often you want backups generated."
 msgstr ""
 
-#. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup__smart_search
-msgid "Smart Search"
-msgstr ""
-
 #. module: auto_backup
 #: model:ir.model.fields,help:auto_backup.field_db_backup__name
 msgid "Summary of this backup process"
@@ -430,11 +405,6 @@ msgid ""
 "you specify."
 msgstr ""
 
-#. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup__user_can_see_changeset
-msgid "User Can See Changeset"
-msgstr ""
-
 #. module: auto_backup
 #: model:ir.model.fields,field_description:auto_backup.field_db_backup__sftp_user
 msgid "Username in the SFTP Server"
diff --git a/auto_backup/i18n/pl.po b/auto_backup/i18n/pl.po
index af6a282c56e..31b13ba772f 100644
--- a/auto_backup/i18n/pl.po
+++ b/auto_backup/i18n/pl.po
@@ -90,16 +90,6 @@ msgstr ""
 msgid "Cannot duplicate a configuration."
 msgstr ""
 
-#. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup__changeset_change_ids
-msgid "Changeset Changes"
-msgstr ""
-
-#. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup__changeset_ids
-msgid "Changesets"
-msgstr ""
-
 #. module: auto_backup
 #: model:ir.model.fields,help:auto_backup.field_db_backup__backup_format
 msgid "Choose the format for this backup."
@@ -128,16 +118,6 @@ msgstr ""
 msgid "Connection Test Succeeded!"
 msgstr ""
 
-#. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup__count_pending_changeset_changes
-msgid "Count Pending Changeset Changes"
-msgstr ""
-
-#. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup__count_pending_changesets
-msgid "Count Pending Changesets"
-msgstr ""
-
 #. module: auto_backup
 #: model:ir.model.fields,field_description:auto_backup.field_db_backup__create_uid
 msgid "Created by"
@@ -204,11 +184,6 @@ msgstr ""
 msgid "Followers"
 msgstr ""
 
-#. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup__message_channel_ids
-msgid "Followers (Channels)"
-msgstr ""
-
 #. module: auto_backup
 #: model:ir.model.fields,field_description:auto_backup.field_db_backup__message_partner_ids
 msgid "Followers (Partners)"
@@ -219,6 +194,11 @@ msgstr ""
 msgid "Go to Settings / Technical / Automation / Scheduled Actions."
 msgstr ""
 
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__has_message
+msgid "Has Message"
+msgstr ""
+
 #. module: auto_backup
 #: model_terms:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
 msgid "Help"
@@ -374,11 +354,6 @@ msgid ""
 "Set the scheduler to active and fill in how often you want backups generated."
 msgstr ""
 
-#. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup__smart_search
-msgid "Smart Search"
-msgstr ""
-
 #. module: auto_backup
 #: model:ir.model.fields,help:auto_backup.field_db_backup__name
 msgid "Summary of this backup process"
@@ -431,11 +406,6 @@ msgid ""
 "you specify."
 msgstr ""
 
-#. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup__user_can_see_changeset
-msgid "User Can See Changeset"
-msgstr ""
-
 #. module: auto_backup
 #: model:ir.model.fields,field_description:auto_backup.field_db_backup__sftp_user
 msgid "Username in the SFTP Server"
diff --git a/auto_backup/i18n/pt.po b/auto_backup/i18n/pt.po
index 6846685a245..1abe70fbb56 100644
--- a/auto_backup/i18n/pt.po
+++ b/auto_backup/i18n/pt.po
@@ -88,16 +88,6 @@ msgstr ""
 msgid "Cannot duplicate a configuration."
 msgstr ""
 
-#. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup__changeset_change_ids
-msgid "Changeset Changes"
-msgstr ""
-
-#. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup__changeset_ids
-msgid "Changesets"
-msgstr ""
-
 #. module: auto_backup
 #: model:ir.model.fields,help:auto_backup.field_db_backup__backup_format
 msgid "Choose the format for this backup."
@@ -126,16 +116,6 @@ msgstr ""
 msgid "Connection Test Succeeded!"
 msgstr ""
 
-#. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup__count_pending_changeset_changes
-msgid "Count Pending Changeset Changes"
-msgstr ""
-
-#. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup__count_pending_changesets
-msgid "Count Pending Changesets"
-msgstr ""
-
 #. module: auto_backup
 #: model:ir.model.fields,field_description:auto_backup.field_db_backup__create_uid
 msgid "Created by"
@@ -202,11 +182,6 @@ msgstr ""
 msgid "Followers"
 msgstr ""
 
-#. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup__message_channel_ids
-msgid "Followers (Channels)"
-msgstr ""
-
 #. module: auto_backup
 #: model:ir.model.fields,field_description:auto_backup.field_db_backup__message_partner_ids
 msgid "Followers (Partners)"
@@ -217,6 +192,11 @@ msgstr ""
 msgid "Go to Settings / Technical / Automation / Scheduled Actions."
 msgstr ""
 
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__has_message
+msgid "Has Message"
+msgstr ""
+
 #. module: auto_backup
 #: model_terms:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
 msgid "Help"
@@ -372,11 +352,6 @@ msgid ""
 "Set the scheduler to active and fill in how often you want backups generated."
 msgstr ""
 
-#. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup__smart_search
-msgid "Smart Search"
-msgstr ""
-
 #. module: auto_backup
 #: model:ir.model.fields,help:auto_backup.field_db_backup__name
 msgid "Summary of this backup process"
@@ -429,11 +404,6 @@ msgid ""
 "you specify."
 msgstr ""
 
-#. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup__user_can_see_changeset
-msgid "User Can See Changeset"
-msgstr ""
-
 #. module: auto_backup
 #: model:ir.model.fields,field_description:auto_backup.field_db_backup__sftp_user
 msgid "Username in the SFTP Server"
diff --git a/auto_backup/i18n/pt_BR.po b/auto_backup/i18n/pt_BR.po
index 55e2831f633..a1bf7e04782 100644
--- a/auto_backup/i18n/pt_BR.po
+++ b/auto_backup/i18n/pt_BR.po
@@ -90,16 +90,6 @@ msgstr ""
 msgid "Cannot duplicate a configuration."
 msgstr ""
 
-#. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup__changeset_change_ids
-msgid "Changeset Changes"
-msgstr ""
-
-#. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup__changeset_ids
-msgid "Changesets"
-msgstr ""
-
 #. module: auto_backup
 #: model:ir.model.fields,help:auto_backup.field_db_backup__backup_format
 #, fuzzy
@@ -129,16 +119,6 @@ msgstr ""
 msgid "Connection Test Succeeded!"
 msgstr ""
 
-#. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup__count_pending_changeset_changes
-msgid "Count Pending Changeset Changes"
-msgstr ""
-
-#. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup__count_pending_changesets
-msgid "Count Pending Changesets"
-msgstr ""
-
 #. module: auto_backup
 #: model:ir.model.fields,field_description:auto_backup.field_db_backup__create_uid
 msgid "Created by"
@@ -206,11 +186,6 @@ msgstr "Pasta"
 msgid "Followers"
 msgstr ""
 
-#. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup__message_channel_ids
-msgid "Followers (Channels)"
-msgstr ""
-
 #. module: auto_backup
 #: model:ir.model.fields,field_description:auto_backup.field_db_backup__message_partner_ids
 msgid "Followers (Partners)"
@@ -221,6 +196,11 @@ msgstr ""
 msgid "Go to Settings / Technical / Automation / Scheduled Actions."
 msgstr ""
 
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__has_message
+msgid "Has Message"
+msgstr ""
+
 #. module: auto_backup
 #: model_terms:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
 msgid "Help"
@@ -376,11 +356,6 @@ msgid ""
 "Set the scheduler to active and fill in how often you want backups generated."
 msgstr ""
 
-#. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup__smart_search
-msgid "Smart Search"
-msgstr ""
-
 #. module: auto_backup
 #: model:ir.model.fields,help:auto_backup.field_db_backup__name
 msgid "Summary of this backup process"
@@ -433,11 +408,6 @@ msgid ""
 "you specify."
 msgstr ""
 
-#. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup__user_can_see_changeset
-msgid "User Can See Changeset"
-msgstr ""
-
 #. module: auto_backup
 #: model:ir.model.fields,field_description:auto_backup.field_db_backup__sftp_user
 msgid "Username in the SFTP Server"
diff --git a/auto_backup/i18n/pt_PT.po b/auto_backup/i18n/pt_PT.po
index dd592ea1b7f..de72283eb61 100644
--- a/auto_backup/i18n/pt_PT.po
+++ b/auto_backup/i18n/pt_PT.po
@@ -89,16 +89,6 @@ msgstr ""
 msgid "Cannot duplicate a configuration."
 msgstr ""
 
-#. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup__changeset_change_ids
-msgid "Changeset Changes"
-msgstr ""
-
-#. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup__changeset_ids
-msgid "Changesets"
-msgstr ""
-
 #. module: auto_backup
 #: model:ir.model.fields,help:auto_backup.field_db_backup__backup_format
 msgid "Choose the format for this backup."
@@ -127,16 +117,6 @@ msgstr ""
 msgid "Connection Test Succeeded!"
 msgstr ""
 
-#. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup__count_pending_changeset_changes
-msgid "Count Pending Changeset Changes"
-msgstr ""
-
-#. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup__count_pending_changesets
-msgid "Count Pending Changesets"
-msgstr ""
-
 #. module: auto_backup
 #: model:ir.model.fields,field_description:auto_backup.field_db_backup__create_uid
 msgid "Created by"
@@ -203,11 +183,6 @@ msgstr ""
 msgid "Followers"
 msgstr ""
 
-#. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup__message_channel_ids
-msgid "Followers (Channels)"
-msgstr ""
-
 #. module: auto_backup
 #: model:ir.model.fields,field_description:auto_backup.field_db_backup__message_partner_ids
 msgid "Followers (Partners)"
@@ -218,6 +193,11 @@ msgstr ""
 msgid "Go to Settings / Technical / Automation / Scheduled Actions."
 msgstr ""
 
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__has_message
+msgid "Has Message"
+msgstr ""
+
 #. module: auto_backup
 #: model_terms:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
 msgid "Help"
@@ -373,11 +353,6 @@ msgid ""
 "Set the scheduler to active and fill in how often you want backups generated."
 msgstr ""
 
-#. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup__smart_search
-msgid "Smart Search"
-msgstr ""
-
 #. module: auto_backup
 #: model:ir.model.fields,help:auto_backup.field_db_backup__name
 msgid "Summary of this backup process"
@@ -430,11 +405,6 @@ msgid ""
 "you specify."
 msgstr ""
 
-#. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup__user_can_see_changeset
-msgid "User Can See Changeset"
-msgstr ""
-
 #. module: auto_backup
 #: model:ir.model.fields,field_description:auto_backup.field_db_backup__sftp_user
 msgid "Username in the SFTP Server"
diff --git a/auto_backup/i18n/ro.po b/auto_backup/i18n/ro.po
index 58e08ba9165..e97d9a566b1 100644
--- a/auto_backup/i18n/ro.po
+++ b/auto_backup/i18n/ro.po
@@ -89,16 +89,6 @@ msgstr ""
 msgid "Cannot duplicate a configuration."
 msgstr ""
 
-#. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup__changeset_change_ids
-msgid "Changeset Changes"
-msgstr ""
-
-#. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup__changeset_ids
-msgid "Changesets"
-msgstr ""
-
 #. module: auto_backup
 #: model:ir.model.fields,help:auto_backup.field_db_backup__backup_format
 msgid "Choose the format for this backup."
@@ -127,16 +117,6 @@ msgstr ""
 msgid "Connection Test Succeeded!"
 msgstr ""
 
-#. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup__count_pending_changeset_changes
-msgid "Count Pending Changeset Changes"
-msgstr ""
-
-#. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup__count_pending_changesets
-msgid "Count Pending Changesets"
-msgstr ""
-
 #. module: auto_backup
 #: model:ir.model.fields,field_description:auto_backup.field_db_backup__create_uid
 msgid "Created by"
@@ -203,11 +183,6 @@ msgstr ""
 msgid "Followers"
 msgstr ""
 
-#. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup__message_channel_ids
-msgid "Followers (Channels)"
-msgstr ""
-
 #. module: auto_backup
 #: model:ir.model.fields,field_description:auto_backup.field_db_backup__message_partner_ids
 msgid "Followers (Partners)"
@@ -218,6 +193,11 @@ msgstr ""
 msgid "Go to Settings / Technical / Automation / Scheduled Actions."
 msgstr ""
 
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__has_message
+msgid "Has Message"
+msgstr ""
+
 #. module: auto_backup
 #: model_terms:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
 msgid "Help"
@@ -373,11 +353,6 @@ msgid ""
 "Set the scheduler to active and fill in how often you want backups generated."
 msgstr ""
 
-#. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup__smart_search
-msgid "Smart Search"
-msgstr ""
-
 #. module: auto_backup
 #: model:ir.model.fields,help:auto_backup.field_db_backup__name
 msgid "Summary of this backup process"
@@ -430,11 +405,6 @@ msgid ""
 "you specify."
 msgstr ""
 
-#. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup__user_can_see_changeset
-msgid "User Can See Changeset"
-msgstr ""
-
 #. module: auto_backup
 #: model:ir.model.fields,field_description:auto_backup.field_db_backup__sftp_user
 msgid "Username in the SFTP Server"
diff --git a/auto_backup/i18n/ru.po b/auto_backup/i18n/ru.po
index 25209d91ef1..4c7c8702a4a 100644
--- a/auto_backup/i18n/ru.po
+++ b/auto_backup/i18n/ru.po
@@ -90,16 +90,6 @@ msgstr ""
 msgid "Cannot duplicate a configuration."
 msgstr ""
 
-#. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup__changeset_change_ids
-msgid "Changeset Changes"
-msgstr ""
-
-#. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup__changeset_ids
-msgid "Changesets"
-msgstr ""
-
 #. module: auto_backup
 #: model:ir.model.fields,help:auto_backup.field_db_backup__backup_format
 msgid "Choose the format for this backup."
@@ -128,16 +118,6 @@ msgstr ""
 msgid "Connection Test Succeeded!"
 msgstr ""
 
-#. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup__count_pending_changeset_changes
-msgid "Count Pending Changeset Changes"
-msgstr ""
-
-#. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup__count_pending_changesets
-msgid "Count Pending Changesets"
-msgstr ""
-
 #. module: auto_backup
 #: model:ir.model.fields,field_description:auto_backup.field_db_backup__create_uid
 msgid "Created by"
@@ -204,11 +184,6 @@ msgstr ""
 msgid "Followers"
 msgstr ""
 
-#. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup__message_channel_ids
-msgid "Followers (Channels)"
-msgstr ""
-
 #. module: auto_backup
 #: model:ir.model.fields,field_description:auto_backup.field_db_backup__message_partner_ids
 msgid "Followers (Partners)"
@@ -219,6 +194,11 @@ msgstr ""
 msgid "Go to Settings / Technical / Automation / Scheduled Actions."
 msgstr ""
 
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__has_message
+msgid "Has Message"
+msgstr ""
+
 #. module: auto_backup
 #: model_terms:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
 msgid "Help"
@@ -374,11 +354,6 @@ msgid ""
 "Set the scheduler to active and fill in how often you want backups generated."
 msgstr ""
 
-#. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup__smart_search
-msgid "Smart Search"
-msgstr ""
-
 #. module: auto_backup
 #: model:ir.model.fields,help:auto_backup.field_db_backup__name
 msgid "Summary of this backup process"
@@ -431,11 +406,6 @@ msgid ""
 "you specify."
 msgstr ""
 
-#. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup__user_can_see_changeset
-msgid "User Can See Changeset"
-msgstr ""
-
 #. module: auto_backup
 #: model:ir.model.fields,field_description:auto_backup.field_db_backup__sftp_user
 msgid "Username in the SFTP Server"
diff --git a/auto_backup/i18n/sk.po b/auto_backup/i18n/sk.po
index 96be1edb2b1..9cc91c5dfec 100644
--- a/auto_backup/i18n/sk.po
+++ b/auto_backup/i18n/sk.po
@@ -88,16 +88,6 @@ msgstr ""
 msgid "Cannot duplicate a configuration."
 msgstr ""
 
-#. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup__changeset_change_ids
-msgid "Changeset Changes"
-msgstr ""
-
-#. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup__changeset_ids
-msgid "Changesets"
-msgstr ""
-
 #. module: auto_backup
 #: model:ir.model.fields,help:auto_backup.field_db_backup__backup_format
 msgid "Choose the format for this backup."
@@ -126,16 +116,6 @@ msgstr ""
 msgid "Connection Test Succeeded!"
 msgstr ""
 
-#. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup__count_pending_changeset_changes
-msgid "Count Pending Changeset Changes"
-msgstr ""
-
-#. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup__count_pending_changesets
-msgid "Count Pending Changesets"
-msgstr ""
-
 #. module: auto_backup
 #: model:ir.model.fields,field_description:auto_backup.field_db_backup__create_uid
 msgid "Created by"
@@ -202,11 +182,6 @@ msgstr ""
 msgid "Followers"
 msgstr ""
 
-#. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup__message_channel_ids
-msgid "Followers (Channels)"
-msgstr ""
-
 #. module: auto_backup
 #: model:ir.model.fields,field_description:auto_backup.field_db_backup__message_partner_ids
 msgid "Followers (Partners)"
@@ -217,6 +192,11 @@ msgstr ""
 msgid "Go to Settings / Technical / Automation / Scheduled Actions."
 msgstr ""
 
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__has_message
+msgid "Has Message"
+msgstr ""
+
 #. module: auto_backup
 #: model_terms:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
 msgid "Help"
@@ -372,11 +352,6 @@ msgid ""
 "Set the scheduler to active and fill in how often you want backups generated."
 msgstr ""
 
-#. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup__smart_search
-msgid "Smart Search"
-msgstr ""
-
 #. module: auto_backup
 #: model:ir.model.fields,help:auto_backup.field_db_backup__name
 msgid "Summary of this backup process"
@@ -429,11 +404,6 @@ msgid ""
 "you specify."
 msgstr ""
 
-#. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup__user_can_see_changeset
-msgid "User Can See Changeset"
-msgstr ""
-
 #. module: auto_backup
 #: model:ir.model.fields,field_description:auto_backup.field_db_backup__sftp_user
 msgid "Username in the SFTP Server"
diff --git a/auto_backup/i18n/sl.po b/auto_backup/i18n/sl.po
index 9e731448435..661c23a1e93 100644
--- a/auto_backup/i18n/sl.po
+++ b/auto_backup/i18n/sl.po
@@ -91,16 +91,6 @@ msgstr "Osnove nastavitve varnostnega kopiranja"
 msgid "Cannot duplicate a configuration."
 msgstr "Nastavitev ne morete podvojiti."
 
-#. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup__changeset_change_ids
-msgid "Changeset Changes"
-msgstr ""
-
-#. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup__changeset_ids
-msgid "Changesets"
-msgstr ""
-
 #. module: auto_backup
 #: model:ir.model.fields,help:auto_backup.field_db_backup__backup_format
 #, fuzzy
@@ -130,16 +120,6 @@ msgstr "Test povezave neuspešen!"
 msgid "Connection Test Succeeded!"
 msgstr "Test povezave uspel!"
 
-#. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup__count_pending_changeset_changes
-msgid "Count Pending Changeset Changes"
-msgstr ""
-
-#. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup__count_pending_changesets
-msgid "Count Pending Changesets"
-msgstr ""
-
 #. module: auto_backup
 #: model:ir.model.fields,field_description:auto_backup.field_db_backup__create_uid
 msgid "Created by"
@@ -208,11 +188,6 @@ msgstr "Mapa"
 msgid "Followers"
 msgstr ""
 
-#. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup__message_channel_ids
-msgid "Followers (Channels)"
-msgstr ""
-
 #. module: auto_backup
 #: model:ir.model.fields,field_description:auto_backup.field_db_backup__message_partner_ids
 msgid "Followers (Partners)"
@@ -223,6 +198,11 @@ msgstr ""
 msgid "Go to Settings / Technical / Automation / Scheduled Actions."
 msgstr "Pojdi na Nastavitve / Tehnično / Avtomatizacija / Planirana dejanja"
 
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__has_message
+msgid "Has Message"
+msgstr ""
+
 #. module: auto_backup
 #: model_terms:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
 msgid "Help"
@@ -382,11 +362,6 @@ msgstr ""
 "Nastavite razporejevalnik kot aktiven in izpolnite, kako pogosto želite "
 "ustvarjati varnostne kopije."
 
-#. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup__smart_search
-msgid "Smart Search"
-msgstr ""
-
 #. module: auto_backup
 #: model:ir.model.fields,help:auto_backup.field_db_backup__name
 msgid "Summary of this backup process"
@@ -443,11 +418,6 @@ msgstr ""
 "SFTP uporabljajte previdno! Datoteke se bodo zapisovale na zunanje strežnike "
 "v pot, ki jo sami določite."
 
-#. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup__user_can_see_changeset
-msgid "User Can See Changeset"
-msgstr ""
-
 #. module: auto_backup
 #: model:ir.model.fields,field_description:auto_backup.field_db_backup__sftp_user
 msgid "Username in the SFTP Server"
diff --git a/auto_backup/i18n/sr.po b/auto_backup/i18n/sr.po
index 2e3e33efacb..3e9f7625cf4 100644
--- a/auto_backup/i18n/sr.po
+++ b/auto_backup/i18n/sr.po
@@ -89,16 +89,6 @@ msgstr ""
 msgid "Cannot duplicate a configuration."
 msgstr ""
 
-#. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup__changeset_change_ids
-msgid "Changeset Changes"
-msgstr ""
-
-#. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup__changeset_ids
-msgid "Changesets"
-msgstr ""
-
 #. module: auto_backup
 #: model:ir.model.fields,help:auto_backup.field_db_backup__backup_format
 msgid "Choose the format for this backup."
@@ -127,16 +117,6 @@ msgstr ""
 msgid "Connection Test Succeeded!"
 msgstr ""
 
-#. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup__count_pending_changeset_changes
-msgid "Count Pending Changeset Changes"
-msgstr ""
-
-#. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup__count_pending_changesets
-msgid "Count Pending Changesets"
-msgstr ""
-
 #. module: auto_backup
 #: model:ir.model.fields,field_description:auto_backup.field_db_backup__create_uid
 msgid "Created by"
@@ -203,11 +183,6 @@ msgstr ""
 msgid "Followers"
 msgstr ""
 
-#. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup__message_channel_ids
-msgid "Followers (Channels)"
-msgstr ""
-
 #. module: auto_backup
 #: model:ir.model.fields,field_description:auto_backup.field_db_backup__message_partner_ids
 msgid "Followers (Partners)"
@@ -218,6 +193,11 @@ msgstr ""
 msgid "Go to Settings / Technical / Automation / Scheduled Actions."
 msgstr ""
 
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__has_message
+msgid "Has Message"
+msgstr ""
+
 #. module: auto_backup
 #: model_terms:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
 msgid "Help"
@@ -373,11 +353,6 @@ msgid ""
 "Set the scheduler to active and fill in how often you want backups generated."
 msgstr ""
 
-#. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup__smart_search
-msgid "Smart Search"
-msgstr ""
-
 #. module: auto_backup
 #: model:ir.model.fields,help:auto_backup.field_db_backup__name
 msgid "Summary of this backup process"
@@ -430,11 +405,6 @@ msgid ""
 "you specify."
 msgstr ""
 
-#. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup__user_can_see_changeset
-msgid "User Can See Changeset"
-msgstr ""
-
 #. module: auto_backup
 #: model:ir.model.fields,field_description:auto_backup.field_db_backup__sftp_user
 msgid "Username in the SFTP Server"
diff --git a/auto_backup/i18n/sr@latin.po b/auto_backup/i18n/sr@latin.po
index 33a67b49cee..947708f14ac 100644
--- a/auto_backup/i18n/sr@latin.po
+++ b/auto_backup/i18n/sr@latin.po
@@ -90,16 +90,6 @@ msgstr ""
 msgid "Cannot duplicate a configuration."
 msgstr ""
 
-#. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup__changeset_change_ids
-msgid "Changeset Changes"
-msgstr ""
-
-#. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup__changeset_ids
-msgid "Changesets"
-msgstr ""
-
 #. module: auto_backup
 #: model:ir.model.fields,help:auto_backup.field_db_backup__backup_format
 msgid "Choose the format for this backup."
@@ -128,16 +118,6 @@ msgstr ""
 msgid "Connection Test Succeeded!"
 msgstr ""
 
-#. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup__count_pending_changeset_changes
-msgid "Count Pending Changeset Changes"
-msgstr ""
-
-#. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup__count_pending_changesets
-msgid "Count Pending Changesets"
-msgstr ""
-
 #. module: auto_backup
 #: model:ir.model.fields,field_description:auto_backup.field_db_backup__create_uid
 msgid "Created by"
@@ -204,11 +184,6 @@ msgstr ""
 msgid "Followers"
 msgstr ""
 
-#. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup__message_channel_ids
-msgid "Followers (Channels)"
-msgstr ""
-
 #. module: auto_backup
 #: model:ir.model.fields,field_description:auto_backup.field_db_backup__message_partner_ids
 msgid "Followers (Partners)"
@@ -219,6 +194,11 @@ msgstr ""
 msgid "Go to Settings / Technical / Automation / Scheduled Actions."
 msgstr ""
 
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__has_message
+msgid "Has Message"
+msgstr ""
+
 #. module: auto_backup
 #: model_terms:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
 msgid "Help"
@@ -374,11 +354,6 @@ msgid ""
 "Set the scheduler to active and fill in how often you want backups generated."
 msgstr ""
 
-#. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup__smart_search
-msgid "Smart Search"
-msgstr ""
-
 #. module: auto_backup
 #: model:ir.model.fields,help:auto_backup.field_db_backup__name
 msgid "Summary of this backup process"
@@ -431,11 +406,6 @@ msgid ""
 "you specify."
 msgstr ""
 
-#. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup__user_can_see_changeset
-msgid "User Can See Changeset"
-msgstr ""
-
 #. module: auto_backup
 #: model:ir.model.fields,field_description:auto_backup.field_db_backup__sftp_user
 msgid "Username in the SFTP Server"
diff --git a/auto_backup/i18n/sv.po b/auto_backup/i18n/sv.po
index 6fa9f3f83de..d4ceab51803 100644
--- a/auto_backup/i18n/sv.po
+++ b/auto_backup/i18n/sv.po
@@ -88,16 +88,6 @@ msgstr ""
 msgid "Cannot duplicate a configuration."
 msgstr ""
 
-#. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup__changeset_change_ids
-msgid "Changeset Changes"
-msgstr ""
-
-#. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup__changeset_ids
-msgid "Changesets"
-msgstr ""
-
 #. module: auto_backup
 #: model:ir.model.fields,help:auto_backup.field_db_backup__backup_format
 msgid "Choose the format for this backup."
@@ -126,16 +116,6 @@ msgstr ""
 msgid "Connection Test Succeeded!"
 msgstr ""
 
-#. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup__count_pending_changeset_changes
-msgid "Count Pending Changeset Changes"
-msgstr ""
-
-#. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup__count_pending_changesets
-msgid "Count Pending Changesets"
-msgstr ""
-
 #. module: auto_backup
 #: model:ir.model.fields,field_description:auto_backup.field_db_backup__create_uid
 msgid "Created by"
@@ -202,11 +182,6 @@ msgstr ""
 msgid "Followers"
 msgstr ""
 
-#. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup__message_channel_ids
-msgid "Followers (Channels)"
-msgstr ""
-
 #. module: auto_backup
 #: model:ir.model.fields,field_description:auto_backup.field_db_backup__message_partner_ids
 msgid "Followers (Partners)"
@@ -217,6 +192,11 @@ msgstr ""
 msgid "Go to Settings / Technical / Automation / Scheduled Actions."
 msgstr ""
 
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__has_message
+msgid "Has Message"
+msgstr ""
+
 #. module: auto_backup
 #: model_terms:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
 msgid "Help"
@@ -372,11 +352,6 @@ msgid ""
 "Set the scheduler to active and fill in how often you want backups generated."
 msgstr ""
 
-#. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup__smart_search
-msgid "Smart Search"
-msgstr ""
-
 #. module: auto_backup
 #: model:ir.model.fields,help:auto_backup.field_db_backup__name
 msgid "Summary of this backup process"
@@ -429,11 +404,6 @@ msgid ""
 "you specify."
 msgstr ""
 
-#. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup__user_can_see_changeset
-msgid "User Can See Changeset"
-msgstr ""
-
 #. module: auto_backup
 #: model:ir.model.fields,field_description:auto_backup.field_db_backup__sftp_user
 msgid "Username in the SFTP Server"
diff --git a/auto_backup/i18n/th.po b/auto_backup/i18n/th.po
index c28b3686d9e..f5c8ecc5f5f 100644
--- a/auto_backup/i18n/th.po
+++ b/auto_backup/i18n/th.po
@@ -88,16 +88,6 @@ msgstr ""
 msgid "Cannot duplicate a configuration."
 msgstr ""
 
-#. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup__changeset_change_ids
-msgid "Changeset Changes"
-msgstr ""
-
-#. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup__changeset_ids
-msgid "Changesets"
-msgstr ""
-
 #. module: auto_backup
 #: model:ir.model.fields,help:auto_backup.field_db_backup__backup_format
 msgid "Choose the format for this backup."
@@ -126,16 +116,6 @@ msgstr ""
 msgid "Connection Test Succeeded!"
 msgstr ""
 
-#. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup__count_pending_changeset_changes
-msgid "Count Pending Changeset Changes"
-msgstr ""
-
-#. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup__count_pending_changesets
-msgid "Count Pending Changesets"
-msgstr ""
-
 #. module: auto_backup
 #: model:ir.model.fields,field_description:auto_backup.field_db_backup__create_uid
 msgid "Created by"
@@ -202,11 +182,6 @@ msgstr ""
 msgid "Followers"
 msgstr ""
 
-#. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup__message_channel_ids
-msgid "Followers (Channels)"
-msgstr ""
-
 #. module: auto_backup
 #: model:ir.model.fields,field_description:auto_backup.field_db_backup__message_partner_ids
 msgid "Followers (Partners)"
@@ -217,6 +192,11 @@ msgstr ""
 msgid "Go to Settings / Technical / Automation / Scheduled Actions."
 msgstr ""
 
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__has_message
+msgid "Has Message"
+msgstr ""
+
 #. module: auto_backup
 #: model_terms:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
 msgid "Help"
@@ -372,11 +352,6 @@ msgid ""
 "Set the scheduler to active and fill in how often you want backups generated."
 msgstr ""
 
-#. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup__smart_search
-msgid "Smart Search"
-msgstr ""
-
 #. module: auto_backup
 #: model:ir.model.fields,help:auto_backup.field_db_backup__name
 msgid "Summary of this backup process"
@@ -429,11 +404,6 @@ msgid ""
 "you specify."
 msgstr ""
 
-#. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup__user_can_see_changeset
-msgid "User Can See Changeset"
-msgstr ""
-
 #. module: auto_backup
 #: model:ir.model.fields,field_description:auto_backup.field_db_backup__sftp_user
 msgid "Username in the SFTP Server"
diff --git a/auto_backup/i18n/tr.po b/auto_backup/i18n/tr.po
index ca290e90c2c..3b80dec9c40 100644
--- a/auto_backup/i18n/tr.po
+++ b/auto_backup/i18n/tr.po
@@ -88,16 +88,6 @@ msgstr ""
 msgid "Cannot duplicate a configuration."
 msgstr ""
 
-#. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup__changeset_change_ids
-msgid "Changeset Changes"
-msgstr ""
-
-#. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup__changeset_ids
-msgid "Changesets"
-msgstr ""
-
 #. module: auto_backup
 #: model:ir.model.fields,help:auto_backup.field_db_backup__backup_format
 msgid "Choose the format for this backup."
@@ -126,16 +116,6 @@ msgstr ""
 msgid "Connection Test Succeeded!"
 msgstr ""
 
-#. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup__count_pending_changeset_changes
-msgid "Count Pending Changeset Changes"
-msgstr ""
-
-#. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup__count_pending_changesets
-msgid "Count Pending Changesets"
-msgstr ""
-
 #. module: auto_backup
 #: model:ir.model.fields,field_description:auto_backup.field_db_backup__create_uid
 msgid "Created by"
@@ -202,11 +182,6 @@ msgstr "Klasör"
 msgid "Followers"
 msgstr ""
 
-#. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup__message_channel_ids
-msgid "Followers (Channels)"
-msgstr ""
-
 #. module: auto_backup
 #: model:ir.model.fields,field_description:auto_backup.field_db_backup__message_partner_ids
 msgid "Followers (Partners)"
@@ -217,6 +192,11 @@ msgstr ""
 msgid "Go to Settings / Technical / Automation / Scheduled Actions."
 msgstr ""
 
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__has_message
+msgid "Has Message"
+msgstr ""
+
 #. module: auto_backup
 #: model_terms:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
 msgid "Help"
@@ -372,11 +352,6 @@ msgid ""
 "Set the scheduler to active and fill in how often you want backups generated."
 msgstr ""
 
-#. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup__smart_search
-msgid "Smart Search"
-msgstr ""
-
 #. module: auto_backup
 #: model:ir.model.fields,help:auto_backup.field_db_backup__name
 msgid "Summary of this backup process"
@@ -429,11 +404,6 @@ msgid ""
 "you specify."
 msgstr ""
 
-#. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup__user_can_see_changeset
-msgid "User Can See Changeset"
-msgstr ""
-
 #. module: auto_backup
 #: model:ir.model.fields,field_description:auto_backup.field_db_backup__sftp_user
 msgid "Username in the SFTP Server"
diff --git a/auto_backup/i18n/tr_TR.po b/auto_backup/i18n/tr_TR.po
index 5e4001f3107..c2bef3d36a7 100644
--- a/auto_backup/i18n/tr_TR.po
+++ b/auto_backup/i18n/tr_TR.po
@@ -89,16 +89,6 @@ msgstr ""
 msgid "Cannot duplicate a configuration."
 msgstr ""
 
-#. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup__changeset_change_ids
-msgid "Changeset Changes"
-msgstr ""
-
-#. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup__changeset_ids
-msgid "Changesets"
-msgstr ""
-
 #. module: auto_backup
 #: model:ir.model.fields,help:auto_backup.field_db_backup__backup_format
 msgid "Choose the format for this backup."
@@ -127,16 +117,6 @@ msgstr ""
 msgid "Connection Test Succeeded!"
 msgstr ""
 
-#. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup__count_pending_changeset_changes
-msgid "Count Pending Changeset Changes"
-msgstr ""
-
-#. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup__count_pending_changesets
-msgid "Count Pending Changesets"
-msgstr ""
-
 #. module: auto_backup
 #: model:ir.model.fields,field_description:auto_backup.field_db_backup__create_uid
 msgid "Created by"
@@ -203,11 +183,6 @@ msgstr ""
 msgid "Followers"
 msgstr ""
 
-#. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup__message_channel_ids
-msgid "Followers (Channels)"
-msgstr ""
-
 #. module: auto_backup
 #: model:ir.model.fields,field_description:auto_backup.field_db_backup__message_partner_ids
 msgid "Followers (Partners)"
@@ -218,6 +193,11 @@ msgstr ""
 msgid "Go to Settings / Technical / Automation / Scheduled Actions."
 msgstr ""
 
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__has_message
+msgid "Has Message"
+msgstr ""
+
 #. module: auto_backup
 #: model_terms:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
 msgid "Help"
@@ -373,11 +353,6 @@ msgid ""
 "Set the scheduler to active and fill in how often you want backups generated."
 msgstr ""
 
-#. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup__smart_search
-msgid "Smart Search"
-msgstr ""
-
 #. module: auto_backup
 #: model:ir.model.fields,help:auto_backup.field_db_backup__name
 msgid "Summary of this backup process"
@@ -430,11 +405,6 @@ msgid ""
 "you specify."
 msgstr ""
 
-#. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup__user_can_see_changeset
-msgid "User Can See Changeset"
-msgstr ""
-
 #. module: auto_backup
 #: model:ir.model.fields,field_description:auto_backup.field_db_backup__sftp_user
 msgid "Username in the SFTP Server"
diff --git a/auto_backup/i18n/uk.po b/auto_backup/i18n/uk.po
index d470f4a081e..78325f2ac7f 100644
--- a/auto_backup/i18n/uk.po
+++ b/auto_backup/i18n/uk.po
@@ -89,16 +89,6 @@ msgstr ""
 msgid "Cannot duplicate a configuration."
 msgstr ""
 
-#. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup__changeset_change_ids
-msgid "Changeset Changes"
-msgstr ""
-
-#. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup__changeset_ids
-msgid "Changesets"
-msgstr ""
-
 #. module: auto_backup
 #: model:ir.model.fields,help:auto_backup.field_db_backup__backup_format
 msgid "Choose the format for this backup."
@@ -127,16 +117,6 @@ msgstr ""
 msgid "Connection Test Succeeded!"
 msgstr ""
 
-#. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup__count_pending_changeset_changes
-msgid "Count Pending Changeset Changes"
-msgstr ""
-
-#. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup__count_pending_changesets
-msgid "Count Pending Changesets"
-msgstr ""
-
 #. module: auto_backup
 #: model:ir.model.fields,field_description:auto_backup.field_db_backup__create_uid
 msgid "Created by"
@@ -203,11 +183,6 @@ msgstr ""
 msgid "Followers"
 msgstr ""
 
-#. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup__message_channel_ids
-msgid "Followers (Channels)"
-msgstr ""
-
 #. module: auto_backup
 #: model:ir.model.fields,field_description:auto_backup.field_db_backup__message_partner_ids
 msgid "Followers (Partners)"
@@ -218,6 +193,11 @@ msgstr ""
 msgid "Go to Settings / Technical / Automation / Scheduled Actions."
 msgstr ""
 
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__has_message
+msgid "Has Message"
+msgstr ""
+
 #. module: auto_backup
 #: model_terms:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
 msgid "Help"
@@ -373,11 +353,6 @@ msgid ""
 "Set the scheduler to active and fill in how often you want backups generated."
 msgstr ""
 
-#. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup__smart_search
-msgid "Smart Search"
-msgstr ""
-
 #. module: auto_backup
 #: model:ir.model.fields,help:auto_backup.field_db_backup__name
 msgid "Summary of this backup process"
@@ -430,11 +405,6 @@ msgid ""
 "you specify."
 msgstr ""
 
-#. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup__user_can_see_changeset
-msgid "User Can See Changeset"
-msgstr ""
-
 #. module: auto_backup
 #: model:ir.model.fields,field_description:auto_backup.field_db_backup__sftp_user
 msgid "Username in the SFTP Server"
diff --git a/auto_backup/i18n/vi.po b/auto_backup/i18n/vi.po
index 325677ef2b6..94f694fec6d 100644
--- a/auto_backup/i18n/vi.po
+++ b/auto_backup/i18n/vi.po
@@ -88,16 +88,6 @@ msgstr ""
 msgid "Cannot duplicate a configuration."
 msgstr ""
 
-#. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup__changeset_change_ids
-msgid "Changeset Changes"
-msgstr ""
-
-#. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup__changeset_ids
-msgid "Changesets"
-msgstr ""
-
 #. module: auto_backup
 #: model:ir.model.fields,help:auto_backup.field_db_backup__backup_format
 msgid "Choose the format for this backup."
@@ -126,16 +116,6 @@ msgstr ""
 msgid "Connection Test Succeeded!"
 msgstr ""
 
-#. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup__count_pending_changeset_changes
-msgid "Count Pending Changeset Changes"
-msgstr ""
-
-#. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup__count_pending_changesets
-msgid "Count Pending Changesets"
-msgstr ""
-
 #. module: auto_backup
 #: model:ir.model.fields,field_description:auto_backup.field_db_backup__create_uid
 msgid "Created by"
@@ -202,11 +182,6 @@ msgstr ""
 msgid "Followers"
 msgstr ""
 
-#. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup__message_channel_ids
-msgid "Followers (Channels)"
-msgstr ""
-
 #. module: auto_backup
 #: model:ir.model.fields,field_description:auto_backup.field_db_backup__message_partner_ids
 msgid "Followers (Partners)"
@@ -217,6 +192,11 @@ msgstr ""
 msgid "Go to Settings / Technical / Automation / Scheduled Actions."
 msgstr ""
 
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__has_message
+msgid "Has Message"
+msgstr ""
+
 #. module: auto_backup
 #: model_terms:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
 msgid "Help"
@@ -372,11 +352,6 @@ msgid ""
 "Set the scheduler to active and fill in how often you want backups generated."
 msgstr ""
 
-#. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup__smart_search
-msgid "Smart Search"
-msgstr ""
-
 #. module: auto_backup
 #: model:ir.model.fields,help:auto_backup.field_db_backup__name
 msgid "Summary of this backup process"
@@ -429,11 +404,6 @@ msgid ""
 "you specify."
 msgstr ""
 
-#. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup__user_can_see_changeset
-msgid "User Can See Changeset"
-msgstr ""
-
 #. module: auto_backup
 #: model:ir.model.fields,field_description:auto_backup.field_db_backup__sftp_user
 msgid "Username in the SFTP Server"
diff --git a/auto_backup/i18n/vi_VN.po b/auto_backup/i18n/vi_VN.po
index b52d5f381cb..55b49f893fa 100644
--- a/auto_backup/i18n/vi_VN.po
+++ b/auto_backup/i18n/vi_VN.po
@@ -89,16 +89,6 @@ msgstr ""
 msgid "Cannot duplicate a configuration."
 msgstr ""
 
-#. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup__changeset_change_ids
-msgid "Changeset Changes"
-msgstr ""
-
-#. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup__changeset_ids
-msgid "Changesets"
-msgstr ""
-
 #. module: auto_backup
 #: model:ir.model.fields,help:auto_backup.field_db_backup__backup_format
 msgid "Choose the format for this backup."
@@ -127,16 +117,6 @@ msgstr ""
 msgid "Connection Test Succeeded!"
 msgstr ""
 
-#. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup__count_pending_changeset_changes
-msgid "Count Pending Changeset Changes"
-msgstr ""
-
-#. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup__count_pending_changesets
-msgid "Count Pending Changesets"
-msgstr ""
-
 #. module: auto_backup
 #: model:ir.model.fields,field_description:auto_backup.field_db_backup__create_uid
 msgid "Created by"
@@ -203,11 +183,6 @@ msgstr ""
 msgid "Followers"
 msgstr ""
 
-#. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup__message_channel_ids
-msgid "Followers (Channels)"
-msgstr ""
-
 #. module: auto_backup
 #: model:ir.model.fields,field_description:auto_backup.field_db_backup__message_partner_ids
 msgid "Followers (Partners)"
@@ -218,6 +193,11 @@ msgstr ""
 msgid "Go to Settings / Technical / Automation / Scheduled Actions."
 msgstr ""
 
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__has_message
+msgid "Has Message"
+msgstr ""
+
 #. module: auto_backup
 #: model_terms:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
 msgid "Help"
@@ -373,11 +353,6 @@ msgid ""
 "Set the scheduler to active and fill in how often you want backups generated."
 msgstr ""
 
-#. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup__smart_search
-msgid "Smart Search"
-msgstr ""
-
 #. module: auto_backup
 #: model:ir.model.fields,help:auto_backup.field_db_backup__name
 msgid "Summary of this backup process"
@@ -430,11 +405,6 @@ msgid ""
 "you specify."
 msgstr ""
 
-#. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup__user_can_see_changeset
-msgid "User Can See Changeset"
-msgstr ""
-
 #. module: auto_backup
 #: model:ir.model.fields,field_description:auto_backup.field_db_backup__sftp_user
 msgid "Username in the SFTP Server"
diff --git a/auto_backup/i18n/zh_CN.po b/auto_backup/i18n/zh_CN.po
index 2180a7997bc..8979b7d9901 100644
--- a/auto_backup/i18n/zh_CN.po
+++ b/auto_backup/i18n/zh_CN.po
@@ -90,16 +90,6 @@ msgstr "备份基础设置"
 msgid "Cannot duplicate a configuration."
 msgstr "无法复制配置。"
 
-#. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup__changeset_change_ids
-msgid "Changeset Changes"
-msgstr ""
-
-#. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup__changeset_ids
-msgid "Changesets"
-msgstr ""
-
 #. module: auto_backup
 #: model:ir.model.fields,help:auto_backup.field_db_backup__backup_format
 msgid "Choose the format for this backup."
@@ -128,16 +118,6 @@ msgstr "连接测试失败!"
 msgid "Connection Test Succeeded!"
 msgstr "连接测试成功!"
 
-#. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup__count_pending_changeset_changes
-msgid "Count Pending Changeset Changes"
-msgstr ""
-
-#. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup__count_pending_changesets
-msgid "Count Pending Changesets"
-msgstr ""
-
 #. module: auto_backup
 #: model:ir.model.fields,field_description:auto_backup.field_db_backup__create_uid
 msgid "Created by"
@@ -204,11 +184,6 @@ msgstr "文件夹"
 msgid "Followers"
 msgstr "关注者"
 
-#. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup__message_channel_ids
-msgid "Followers (Channels)"
-msgstr "关注者(频道)"
-
 #. module: auto_backup
 #: model:ir.model.fields,field_description:auto_backup.field_db_backup__message_partner_ids
 msgid "Followers (Partners)"
@@ -219,6 +194,11 @@ msgstr "关注者(业务伙伴)"
 msgid "Go to Settings / Technical / Automation / Scheduled Actions."
 msgstr "点击   设置 / 技术 / 自动化 / 安排的动作。"
 
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__has_message
+msgid "Has Message"
+msgstr ""
+
 #. module: auto_backup
 #: model_terms:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
 msgid "Help"
@@ -376,11 +356,6 @@ msgstr ""
 "将安排的动作设置为活动状态,并填写备份间隔时间,间隔时间单位,间隔次数,执行"
 "时间等数据库具体备份方案。"
 
-#. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup__smart_search
-msgid "Smart Search"
-msgstr ""
-
 #. module: auto_backup
 #: model:ir.model.fields,help:auto_backup.field_db_backup__name
 msgid "Summary of this backup process"
@@ -435,11 +410,6 @@ msgstr ""
 "请注意你的 SFTP服务器网络安全!数据库备份文件将备份到你的SFTP服务器,文件保存"
 "在设置的目录下面。"
 
-#. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup__user_can_see_changeset
-msgid "User Can See Changeset"
-msgstr ""
-
 #. module: auto_backup
 #: model:ir.model.fields,field_description:auto_backup.field_db_backup__sftp_user
 msgid "Username in the SFTP Server"
@@ -480,6 +450,9 @@ msgstr "sftp.example.com"
 msgid "zip (includes filestore)"
 msgstr "zip(包括文件存储)"
 
+#~ msgid "Followers (Channels)"
+#~ msgstr "关注者(频道)"
+
 #~ msgid "If checked new messages require your attention."
 #~ msgstr "如果检查了新消息,需要您的注意。"
 
diff --git a/auto_backup/i18n/zh_TW.po b/auto_backup/i18n/zh_TW.po
index 3acf6797f58..21dad26ff6e 100644
--- a/auto_backup/i18n/zh_TW.po
+++ b/auto_backup/i18n/zh_TW.po
@@ -89,16 +89,6 @@ msgstr ""
 msgid "Cannot duplicate a configuration."
 msgstr ""
 
-#. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup__changeset_change_ids
-msgid "Changeset Changes"
-msgstr ""
-
-#. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup__changeset_ids
-msgid "Changesets"
-msgstr ""
-
 #. module: auto_backup
 #: model:ir.model.fields,help:auto_backup.field_db_backup__backup_format
 msgid "Choose the format for this backup."
@@ -127,16 +117,6 @@ msgstr ""
 msgid "Connection Test Succeeded!"
 msgstr ""
 
-#. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup__count_pending_changeset_changes
-msgid "Count Pending Changeset Changes"
-msgstr ""
-
-#. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup__count_pending_changesets
-msgid "Count Pending Changesets"
-msgstr ""
-
 #. module: auto_backup
 #: model:ir.model.fields,field_description:auto_backup.field_db_backup__create_uid
 msgid "Created by"
@@ -203,11 +183,6 @@ msgstr ""
 msgid "Followers"
 msgstr ""
 
-#. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup__message_channel_ids
-msgid "Followers (Channels)"
-msgstr ""
-
 #. module: auto_backup
 #: model:ir.model.fields,field_description:auto_backup.field_db_backup__message_partner_ids
 msgid "Followers (Partners)"
@@ -218,6 +193,11 @@ msgstr ""
 msgid "Go to Settings / Technical / Automation / Scheduled Actions."
 msgstr ""
 
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__has_message
+msgid "Has Message"
+msgstr ""
+
 #. module: auto_backup
 #: model_terms:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
 msgid "Help"
@@ -373,11 +353,6 @@ msgid ""
 "Set the scheduler to active and fill in how often you want backups generated."
 msgstr ""
 
-#. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup__smart_search
-msgid "Smart Search"
-msgstr ""
-
 #. module: auto_backup
 #: model:ir.model.fields,help:auto_backup.field_db_backup__name
 msgid "Summary of this backup process"
@@ -430,11 +405,6 @@ msgid ""
 "you specify."
 msgstr ""
 
-#. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup__user_can_see_changeset
-msgid "User Can See Changeset"
-msgstr ""
-
 #. module: auto_backup
 #: model:ir.model.fields,field_description:auto_backup.field_db_backup__sftp_user
 msgid "Username in the SFTP Server"

From b1d46549ec17c1efb1db976b593e1d089601367f Mon Sep 17 00:00:00 2001
From: Ignacio Buioli <ibuioli@gmail.com>
Date: Sun, 15 Jan 2023 22:25:18 +0000
Subject: [PATCH 38/52] Translated using Weblate (Spanish (Argentina))

Currently translated at 100.0% (80 of 80 strings)

Translation: server-tools-15.0/server-tools-15.0-auto_backup
Translate-URL: https://translation.odoo-community.org/projects/server-tools-15-0/server-tools-15-0-auto_backup/es_AR/
---
 auto_backup/i18n/es_AR.po | 10 +++++-----
 1 file changed, 5 insertions(+), 5 deletions(-)

diff --git a/auto_backup/i18n/es_AR.po b/auto_backup/i18n/es_AR.po
index d071a335d30..6e60924a20b 100644
--- a/auto_backup/i18n/es_AR.po
+++ b/auto_backup/i18n/es_AR.po
@@ -9,16 +9,16 @@ msgstr ""
 "Project-Id-Version: Odoo Server 10.0\n"
 "Report-Msgid-Bugs-To: \n"
 "POT-Creation-Date: 2017-02-18 02:29+0000\n"
-"PO-Revision-Date: 2022-10-09 22:35+0000\n"
+"PO-Revision-Date: 2023-01-16 03:09+0000\n"
 "Last-Translator: Ignacio Buioli <ibuioli@gmail.com>\n"
-"Language-Team: Spanish (Argentina) (https://www.transifex.com/oca/"
-"teams/23907/es_AR/)\n"
+"Language-Team: Spanish (Argentina) (https://www.transifex.com/oca/teams/"
+"23907/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"
-"X-Generator: Weblate 4.3.2\n"
+"X-Generator: Weblate 4.14.1\n"
 
 #. module: auto_backup
 #: model_terms:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
@@ -202,7 +202,7 @@ msgstr "Ir a Ajustes / Técnico / Automatización / Acciones planificadas."
 #. module: auto_backup
 #: model:ir.model.fields,field_description:auto_backup.field_db_backup__has_message
 msgid "Has Message"
-msgstr ""
+msgstr "Tiene un Mensaje"
 
 #. module: auto_backup
 #: model_terms:ir.ui.view,arch_db:auto_backup.view_backup_conf_form

From a74b24d5578e765111ff815697a02c6451113feb Mon Sep 17 00:00:00 2001
From: Stefan Rijnhart <stefan@opener.am>
Date: Mon, 23 Jan 2023 13:14:44 +0100
Subject: [PATCH 39/52] [FIX] Pin cryptography to keep compatibility with
 Odoo's pyopenssl==19.0.0

Same as https://github.com/odoo/odoo/pull/99829
---
 auto_backup/__manifest__.py | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/auto_backup/__manifest__.py b/auto_backup/__manifest__.py
index 35ad1b5c9ab..1ca292e8d80 100644
--- a/auto_backup/__manifest__.py
+++ b/auto_backup/__manifest__.py
@@ -6,7 +6,7 @@
 {
     "name": "Database Auto-Backup",
     "summary": "Backups database",
-    "version": "15.0.1.0.0",
+    "version": "15.0.1.0.1",
     "author": "Yenthe Van Ginneken, "
     "Agile Business Group, "
     "Grupo ESOC Ingenieria de Servicios, "
@@ -24,5 +24,5 @@
         "view/db_backup_view.xml",
     ],
     "installable": True,
-    "external_dependencies": {"python": ["pysftp"]},
+    "external_dependencies": {"python": ["pysftp", "cryptography==2.6.1"]},
 }

From 302a07d014b8b67f50ccd8e135044dfb6c05c726 Mon Sep 17 00:00:00 2001
From: Francesco Foresti <francesco.foresti@ooops404.com>
Date: Thu, 9 Mar 2023 10:52:08 +0000
Subject: [PATCH 40/52] Translated using Weblate (Italian)

Currently translated at 90.0% (72 of 80 strings)

Translation: server-tools-15.0/server-tools-15.0-auto_backup
Translate-URL: https://translation.odoo-community.org/projects/server-tools-15-0/server-tools-15-0-auto_backup/it/
---
 auto_backup/i18n/it.po | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/auto_backup/i18n/it.po b/auto_backup/i18n/it.po
index c0eb747f3a4..fead6e93f6f 100644
--- a/auto_backup/i18n/it.po
+++ b/auto_backup/i18n/it.po
@@ -9,8 +9,8 @@ msgstr ""
 "Project-Id-Version: Odoo Server 11.0\n"
 "Report-Msgid-Bugs-To: \n"
 "POT-Creation-Date: 2018-03-03 10:08+0000\n"
-"PO-Revision-Date: 2023-01-01 14:45+0000\n"
-"Last-Translator: mymage <stefano.consolaro@mymage.it>\n"
+"PO-Revision-Date: 2023-03-09 13:23+0000\n"
+"Last-Translator: Francesco Foresti <francesco.foresti@ooops404.com>\n"
 "Language-Team: Italian (https://www.transifex.com/oca/teams/23907/it/)\n"
 "Language: it\n"
 "MIME-Version: 1.0\n"
@@ -188,7 +188,7 @@ msgstr "Cartella"
 #. module: auto_backup
 #: model:ir.model.fields,field_description:auto_backup.field_db_backup__message_follower_ids
 msgid "Followers"
-msgstr "Chi sta seguendo"
+msgstr "Seguito da"
 
 #. module: auto_backup
 #: model:ir.model.fields,field_description:auto_backup.field_db_backup__message_partner_ids

From 32a56df8b78b951184f57b3d7f1577a1ff27d5ba Mon Sep 17 00:00:00 2001
From: mymage <stefano.consolaro@mymage.it>
Date: Wed, 5 Apr 2023 09:17:29 +0000
Subject: [PATCH 41/52] Translated using Weblate (Italian)

Currently translated at 90.0% (72 of 80 strings)

Translation: server-tools-15.0/server-tools-15.0-auto_backup
Translate-URL: https://translation.odoo-community.org/projects/server-tools-15-0/server-tools-15-0-auto_backup/it/

Translated using Weblate (Italian)

Currently translated at 84.7% (72 of 85 strings)

Translation: server-tools-15.0/server-tools-15.0-auto_backup
Translate-URL: https://translation.odoo-community.org/projects/server-tools-15-0/server-tools-15-0-auto_backup/it/
---
 auto_backup/README.rst                    | 15 +++--
 auto_backup/i18n/am.po                    | 25 ++++++++
 auto_backup/i18n/ar.po                    | 25 ++++++++
 auto_backup/i18n/auto_backup.pot          | 25 ++++++++
 auto_backup/i18n/bg.po                    | 25 ++++++++
 auto_backup/i18n/bs.po                    | 25 ++++++++
 auto_backup/i18n/ca.po                    | 25 ++++++++
 auto_backup/i18n/cs.po                    | 25 ++++++++
 auto_backup/i18n/cs_CZ.po                 | 25 ++++++++
 auto_backup/i18n/da.po                    | 25 ++++++++
 auto_backup/i18n/de.po                    | 25 ++++++++
 auto_backup/i18n/el_GR.po                 | 25 ++++++++
 auto_backup/i18n/en_GB.po                 | 25 ++++++++
 auto_backup/i18n/es.po                    | 25 ++++++++
 auto_backup/i18n/es_AR.po                 | 44 ++++++++-----
 auto_backup/i18n/es_CL.po                 | 25 ++++++++
 auto_backup/i18n/es_CO.po                 | 25 ++++++++
 auto_backup/i18n/es_CR.po                 | 25 ++++++++
 auto_backup/i18n/es_DO.po                 | 25 ++++++++
 auto_backup/i18n/es_EC.po                 | 25 ++++++++
 auto_backup/i18n/es_ES.po                 | 25 ++++++++
 auto_backup/i18n/es_MX.po                 | 25 ++++++++
 auto_backup/i18n/es_PE.po                 | 25 ++++++++
 auto_backup/i18n/es_PY.po                 | 25 ++++++++
 auto_backup/i18n/es_VE.po                 | 25 ++++++++
 auto_backup/i18n/et.po                    | 25 ++++++++
 auto_backup/i18n/eu.po                    | 25 ++++++++
 auto_backup/i18n/fa.po                    | 25 ++++++++
 auto_backup/i18n/fi.po                    | 25 ++++++++
 auto_backup/i18n/fr.po                    | 25 ++++++++
 auto_backup/i18n/fr_CA.po                 | 25 ++++++++
 auto_backup/i18n/fr_CH.po                 | 25 ++++++++
 auto_backup/i18n/gl.po                    | 25 ++++++++
 auto_backup/i18n/gl_ES.po                 | 25 ++++++++
 auto_backup/i18n/he.po                    | 25 ++++++++
 auto_backup/i18n/hr.po                    | 25 ++++++++
 auto_backup/i18n/hr_HR.po                 | 25 ++++++++
 auto_backup/i18n/hu.po                    | 25 ++++++++
 auto_backup/i18n/id.po                    | 25 ++++++++
 auto_backup/i18n/it.po                    | 35 ++++++++--
 auto_backup/i18n/ja.po                    | 25 ++++++++
 auto_backup/i18n/ko.po                    | 25 ++++++++
 auto_backup/i18n/lt.po                    | 25 ++++++++
 auto_backup/i18n/lt_LT.po                 | 25 ++++++++
 auto_backup/i18n/lv.po                    | 25 ++++++++
 auto_backup/i18n/mk.po                    | 25 ++++++++
 auto_backup/i18n/mn.po                    | 25 ++++++++
 auto_backup/i18n/nb.po                    | 25 ++++++++
 auto_backup/i18n/nb_NO.po                 | 25 ++++++++
 auto_backup/i18n/nl.po                    | 25 ++++++++
 auto_backup/i18n/nl_BE.po                 | 25 ++++++++
 auto_backup/i18n/nl_NL.po                 | 25 ++++++++
 auto_backup/i18n/pl.po                    | 25 ++++++++
 auto_backup/i18n/pt.po                    | 25 ++++++++
 auto_backup/i18n/pt_BR.po                 | 25 ++++++++
 auto_backup/i18n/pt_PT.po                 | 25 ++++++++
 auto_backup/i18n/ro.po                    | 25 ++++++++
 auto_backup/i18n/ru.po                    | 25 ++++++++
 auto_backup/i18n/sk.po                    | 25 ++++++++
 auto_backup/i18n/sl.po                    | 25 ++++++++
 auto_backup/i18n/sr.po                    | 25 ++++++++
 auto_backup/i18n/sr@latin.po              | 25 ++++++++
 auto_backup/i18n/sv.po                    | 25 ++++++++
 auto_backup/i18n/th.po                    | 25 ++++++++
 auto_backup/i18n/tr.po                    | 25 ++++++++
 auto_backup/i18n/tr_TR.po                 | 25 ++++++++
 auto_backup/i18n/uk.po                    | 25 ++++++++
 auto_backup/i18n/vi.po                    | 25 ++++++++
 auto_backup/i18n/vi_VN.po                 | 25 ++++++++
 auto_backup/i18n/zh_CN.po                 | 25 ++++++++
 auto_backup/i18n/zh_TW.po                 | 25 ++++++++
 auto_backup/static/description/index.html | 78 ++++++++++++-----------
 72 files changed, 1806 insertions(+), 66 deletions(-)

diff --git a/auto_backup/README.rst b/auto_backup/README.rst
index 0d228851ef4..b895cb4bae4 100644
--- a/auto_backup/README.rst
+++ b/auto_backup/README.rst
@@ -2,10 +2,13 @@
 Database Auto-Backup
 ====================
 
-.. !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
+.. 
+   !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
    !! This file is generated by oca-gen-addon-readme !!
    !! changes will be overwritten.                   !!
    !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
+   !! source digest: sha256:0b54d31a1ddc45d57a4f9161672fabbd622f89cec222d30a11909f1e75b3806f
+   !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
 
 .. |badge1| image:: https://img.shields.io/badge/maturity-Beta-yellow.png
     :target: https://odoo-community.org/page/development-status
@@ -19,11 +22,11 @@ Database Auto-Backup
 .. |badge4| image:: https://img.shields.io/badge/weblate-Translate%20me-F47D42.png
     :target: https://translation.odoo-community.org/projects/server-tools-15-0/server-tools-15-0-auto_backup
     :alt: Translate me on Weblate
-.. |badge5| image:: https://img.shields.io/badge/runbot-Try%20me-875A7B.png
-    :target: https://runbot.odoo-community.org/runbot/149/15.0
-    :alt: Try me on Runbot
+.. |badge5| image:: https://img.shields.io/badge/runboat-Try%20me-875A7B.png
+    :target: https://runboat.odoo-community.org/builds?repo=OCA/server-tools&target_branch=15.0
+    :alt: Try me on Runboat
 
-|badge1| |badge2| |badge3| |badge4| |badge5| 
+|badge1| |badge2| |badge3| |badge4| |badge5|
 
 A tool for all your back-ups, internal and external!
 
@@ -111,7 +114,7 @@ Bug Tracker
 
 Bugs are tracked on `GitHub Issues <https://github.com/OCA/server-tools/issues>`_.
 In case of trouble, please check there if your issue has already been reported.
-If you spotted it first, help us smashing it by providing a detailed and welcomed
+If you spotted it first, help us to smash it by providing a detailed and welcomed
 `feedback <https://github.com/OCA/server-tools/issues/new?body=module:%20auto_backup%0Aversion:%2015.0%0A%0A**Steps%20to%20reproduce**%0A-%20...%0A%0A**Current%20behavior**%0A%0A**Expected%20behavior**>`_.
 
 Do not contact contributors directly about support or help with technical issues.
diff --git a/auto_backup/i18n/am.po b/auto_backup/i18n/am.po
index f1ad8fc1235..667343e7284 100644
--- a/auto_backup/i18n/am.po
+++ b/auto_backup/i18n/am.po
@@ -88,6 +88,16 @@ msgstr ""
 msgid "Cannot duplicate a configuration."
 msgstr ""
 
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__changeset_change_ids
+msgid "Changeset Changes"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__changeset_ids
+msgid "Changesets"
+msgstr ""
+
 #. module: auto_backup
 #: model:ir.model.fields,help:auto_backup.field_db_backup__backup_format
 msgid "Choose the format for this backup."
@@ -116,6 +126,16 @@ msgstr ""
 msgid "Connection Test Succeeded!"
 msgstr ""
 
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__count_pending_changeset_changes
+msgid "Count Pending Changeset Changes"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__count_pending_changesets
+msgid "Count Pending Changesets"
+msgstr ""
+
 #. module: auto_backup
 #: model:ir.model.fields,field_description:auto_backup.field_db_backup__create_uid
 msgid "Created by"
@@ -404,6 +424,11 @@ msgid ""
 "you specify."
 msgstr ""
 
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__user_can_see_changeset
+msgid "User Can See Changeset"
+msgstr ""
+
 #. module: auto_backup
 #: model:ir.model.fields,field_description:auto_backup.field_db_backup__sftp_user
 msgid "Username in the SFTP Server"
diff --git a/auto_backup/i18n/ar.po b/auto_backup/i18n/ar.po
index 7b96bec8146..03040e04ffd 100644
--- a/auto_backup/i18n/ar.po
+++ b/auto_backup/i18n/ar.po
@@ -89,6 +89,16 @@ msgstr ""
 msgid "Cannot duplicate a configuration."
 msgstr ""
 
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__changeset_change_ids
+msgid "Changeset Changes"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__changeset_ids
+msgid "Changesets"
+msgstr ""
+
 #. module: auto_backup
 #: model:ir.model.fields,help:auto_backup.field_db_backup__backup_format
 msgid "Choose the format for this backup."
@@ -117,6 +127,16 @@ msgstr ""
 msgid "Connection Test Succeeded!"
 msgstr ""
 
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__count_pending_changeset_changes
+msgid "Count Pending Changeset Changes"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__count_pending_changesets
+msgid "Count Pending Changesets"
+msgstr ""
+
 #. module: auto_backup
 #: model:ir.model.fields,field_description:auto_backup.field_db_backup__create_uid
 msgid "Created by"
@@ -405,6 +425,11 @@ msgid ""
 "you specify."
 msgstr ""
 
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__user_can_see_changeset
+msgid "User Can See Changeset"
+msgstr ""
+
 #. module: auto_backup
 #: model:ir.model.fields,field_description:auto_backup.field_db_backup__sftp_user
 msgid "Username in the SFTP Server"
diff --git a/auto_backup/i18n/auto_backup.pot b/auto_backup/i18n/auto_backup.pot
index 03af47e3b56..685927955eb 100644
--- a/auto_backup/i18n/auto_backup.pot
+++ b/auto_backup/i18n/auto_backup.pot
@@ -83,6 +83,16 @@ msgstr ""
 msgid "Cannot duplicate a configuration."
 msgstr ""
 
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__changeset_change_ids
+msgid "Changeset Changes"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__changeset_ids
+msgid "Changesets"
+msgstr ""
+
 #. module: auto_backup
 #: model:ir.model.fields,help:auto_backup.field_db_backup__backup_format
 msgid "Choose the format for this backup."
@@ -111,6 +121,16 @@ msgstr ""
 msgid "Connection Test Succeeded!"
 msgstr ""
 
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__count_pending_changeset_changes
+msgid "Count Pending Changeset Changes"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__count_pending_changesets
+msgid "Count Pending Changesets"
+msgstr ""
+
 #. module: auto_backup
 #: model:ir.model.fields,field_description:auto_backup.field_db_backup__create_uid
 msgid "Created by"
@@ -400,6 +420,11 @@ msgid ""
 "you specify."
 msgstr ""
 
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__user_can_see_changeset
+msgid "User Can See Changeset"
+msgstr ""
+
 #. module: auto_backup
 #: model:ir.model.fields,field_description:auto_backup.field_db_backup__sftp_user
 msgid "Username in the SFTP Server"
diff --git a/auto_backup/i18n/bg.po b/auto_backup/i18n/bg.po
index 848b69ebb7e..d8b808809f1 100644
--- a/auto_backup/i18n/bg.po
+++ b/auto_backup/i18n/bg.po
@@ -88,6 +88,16 @@ msgstr ""
 msgid "Cannot duplicate a configuration."
 msgstr ""
 
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__changeset_change_ids
+msgid "Changeset Changes"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__changeset_ids
+msgid "Changesets"
+msgstr ""
+
 #. module: auto_backup
 #: model:ir.model.fields,help:auto_backup.field_db_backup__backup_format
 msgid "Choose the format for this backup."
@@ -116,6 +126,16 @@ msgstr ""
 msgid "Connection Test Succeeded!"
 msgstr ""
 
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__count_pending_changeset_changes
+msgid "Count Pending Changeset Changes"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__count_pending_changesets
+msgid "Count Pending Changesets"
+msgstr ""
+
 #. module: auto_backup
 #: model:ir.model.fields,field_description:auto_backup.field_db_backup__create_uid
 msgid "Created by"
@@ -404,6 +424,11 @@ msgid ""
 "you specify."
 msgstr ""
 
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__user_can_see_changeset
+msgid "User Can See Changeset"
+msgstr ""
+
 #. module: auto_backup
 #: model:ir.model.fields,field_description:auto_backup.field_db_backup__sftp_user
 msgid "Username in the SFTP Server"
diff --git a/auto_backup/i18n/bs.po b/auto_backup/i18n/bs.po
index 83ff5de0ec8..105236351d0 100644
--- a/auto_backup/i18n/bs.po
+++ b/auto_backup/i18n/bs.po
@@ -89,6 +89,16 @@ msgstr ""
 msgid "Cannot duplicate a configuration."
 msgstr ""
 
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__changeset_change_ids
+msgid "Changeset Changes"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__changeset_ids
+msgid "Changesets"
+msgstr ""
+
 #. module: auto_backup
 #: model:ir.model.fields,help:auto_backup.field_db_backup__backup_format
 msgid "Choose the format for this backup."
@@ -117,6 +127,16 @@ msgstr ""
 msgid "Connection Test Succeeded!"
 msgstr ""
 
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__count_pending_changeset_changes
+msgid "Count Pending Changeset Changes"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__count_pending_changesets
+msgid "Count Pending Changesets"
+msgstr ""
+
 #. module: auto_backup
 #: model:ir.model.fields,field_description:auto_backup.field_db_backup__create_uid
 msgid "Created by"
@@ -405,6 +425,11 @@ msgid ""
 "you specify."
 msgstr ""
 
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__user_can_see_changeset
+msgid "User Can See Changeset"
+msgstr ""
+
 #. module: auto_backup
 #: model:ir.model.fields,field_description:auto_backup.field_db_backup__sftp_user
 msgid "Username in the SFTP Server"
diff --git a/auto_backup/i18n/ca.po b/auto_backup/i18n/ca.po
index c89770b83f5..e8bb3426e76 100644
--- a/auto_backup/i18n/ca.po
+++ b/auto_backup/i18n/ca.po
@@ -88,6 +88,16 @@ msgstr ""
 msgid "Cannot duplicate a configuration."
 msgstr ""
 
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__changeset_change_ids
+msgid "Changeset Changes"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__changeset_ids
+msgid "Changesets"
+msgstr ""
+
 #. module: auto_backup
 #: model:ir.model.fields,help:auto_backup.field_db_backup__backup_format
 msgid "Choose the format for this backup."
@@ -116,6 +126,16 @@ msgstr ""
 msgid "Connection Test Succeeded!"
 msgstr ""
 
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__count_pending_changeset_changes
+msgid "Count Pending Changeset Changes"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__count_pending_changesets
+msgid "Count Pending Changesets"
+msgstr ""
+
 #. module: auto_backup
 #: model:ir.model.fields,field_description:auto_backup.field_db_backup__create_uid
 msgid "Created by"
@@ -404,6 +424,11 @@ msgid ""
 "you specify."
 msgstr ""
 
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__user_can_see_changeset
+msgid "User Can See Changeset"
+msgstr ""
+
 #. module: auto_backup
 #: model:ir.model.fields,field_description:auto_backup.field_db_backup__sftp_user
 msgid "Username in the SFTP Server"
diff --git a/auto_backup/i18n/cs.po b/auto_backup/i18n/cs.po
index 8207f628239..8cf1d0af6e6 100644
--- a/auto_backup/i18n/cs.po
+++ b/auto_backup/i18n/cs.po
@@ -88,6 +88,16 @@ msgstr ""
 msgid "Cannot duplicate a configuration."
 msgstr ""
 
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__changeset_change_ids
+msgid "Changeset Changes"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__changeset_ids
+msgid "Changesets"
+msgstr ""
+
 #. module: auto_backup
 #: model:ir.model.fields,help:auto_backup.field_db_backup__backup_format
 msgid "Choose the format for this backup."
@@ -116,6 +126,16 @@ msgstr ""
 msgid "Connection Test Succeeded!"
 msgstr ""
 
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__count_pending_changeset_changes
+msgid "Count Pending Changeset Changes"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__count_pending_changesets
+msgid "Count Pending Changesets"
+msgstr ""
+
 #. module: auto_backup
 #: model:ir.model.fields,field_description:auto_backup.field_db_backup__create_uid
 msgid "Created by"
@@ -404,6 +424,11 @@ msgid ""
 "you specify."
 msgstr ""
 
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__user_can_see_changeset
+msgid "User Can See Changeset"
+msgstr ""
+
 #. module: auto_backup
 #: model:ir.model.fields,field_description:auto_backup.field_db_backup__sftp_user
 msgid "Username in the SFTP Server"
diff --git a/auto_backup/i18n/cs_CZ.po b/auto_backup/i18n/cs_CZ.po
index 1b71c3f8aed..da81fa428fd 100644
--- a/auto_backup/i18n/cs_CZ.po
+++ b/auto_backup/i18n/cs_CZ.po
@@ -89,6 +89,16 @@ msgstr ""
 msgid "Cannot duplicate a configuration."
 msgstr ""
 
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__changeset_change_ids
+msgid "Changeset Changes"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__changeset_ids
+msgid "Changesets"
+msgstr ""
+
 #. module: auto_backup
 #: model:ir.model.fields,help:auto_backup.field_db_backup__backup_format
 msgid "Choose the format for this backup."
@@ -117,6 +127,16 @@ msgstr ""
 msgid "Connection Test Succeeded!"
 msgstr ""
 
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__count_pending_changeset_changes
+msgid "Count Pending Changeset Changes"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__count_pending_changesets
+msgid "Count Pending Changesets"
+msgstr ""
+
 #. module: auto_backup
 #: model:ir.model.fields,field_description:auto_backup.field_db_backup__create_uid
 msgid "Created by"
@@ -405,6 +425,11 @@ msgid ""
 "you specify."
 msgstr ""
 
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__user_can_see_changeset
+msgid "User Can See Changeset"
+msgstr ""
+
 #. module: auto_backup
 #: model:ir.model.fields,field_description:auto_backup.field_db_backup__sftp_user
 msgid "Username in the SFTP Server"
diff --git a/auto_backup/i18n/da.po b/auto_backup/i18n/da.po
index 4c5c869b6db..499d6be6b73 100644
--- a/auto_backup/i18n/da.po
+++ b/auto_backup/i18n/da.po
@@ -88,6 +88,16 @@ msgstr ""
 msgid "Cannot duplicate a configuration."
 msgstr ""
 
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__changeset_change_ids
+msgid "Changeset Changes"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__changeset_ids
+msgid "Changesets"
+msgstr ""
+
 #. module: auto_backup
 #: model:ir.model.fields,help:auto_backup.field_db_backup__backup_format
 msgid "Choose the format for this backup."
@@ -116,6 +126,16 @@ msgstr ""
 msgid "Connection Test Succeeded!"
 msgstr ""
 
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__count_pending_changeset_changes
+msgid "Count Pending Changeset Changes"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__count_pending_changesets
+msgid "Count Pending Changesets"
+msgstr ""
+
 #. module: auto_backup
 #: model:ir.model.fields,field_description:auto_backup.field_db_backup__create_uid
 msgid "Created by"
@@ -404,6 +424,11 @@ msgid ""
 "you specify."
 msgstr ""
 
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__user_can_see_changeset
+msgid "User Can See Changeset"
+msgstr ""
+
 #. module: auto_backup
 #: model:ir.model.fields,field_description:auto_backup.field_db_backup__sftp_user
 msgid "Username in the SFTP Server"
diff --git a/auto_backup/i18n/de.po b/auto_backup/i18n/de.po
index b350d618275..164ee7dd025 100644
--- a/auto_backup/i18n/de.po
+++ b/auto_backup/i18n/de.po
@@ -90,6 +90,16 @@ msgstr ""
 msgid "Cannot duplicate a configuration."
 msgstr ""
 
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__changeset_change_ids
+msgid "Changeset Changes"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__changeset_ids
+msgid "Changesets"
+msgstr ""
+
 #. module: auto_backup
 #: model:ir.model.fields,help:auto_backup.field_db_backup__backup_format
 #, fuzzy
@@ -119,6 +129,16 @@ msgstr ""
 msgid "Connection Test Succeeded!"
 msgstr ""
 
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__count_pending_changeset_changes
+msgid "Count Pending Changeset Changes"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__count_pending_changesets
+msgid "Count Pending Changesets"
+msgstr ""
+
 #. module: auto_backup
 #: model:ir.model.fields,field_description:auto_backup.field_db_backup__create_uid
 msgid "Created by"
@@ -414,6 +434,11 @@ msgstr ""
 "Verwenden Sie SFTP mit Vorsicht! Dies schreibt Dateien auf externen Servern "
 "unter dem Pfad, den Sie angeben."
 
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__user_can_see_changeset
+msgid "User Can See Changeset"
+msgstr ""
+
 #. module: auto_backup
 #: model:ir.model.fields,field_description:auto_backup.field_db_backup__sftp_user
 msgid "Username in the SFTP Server"
diff --git a/auto_backup/i18n/el_GR.po b/auto_backup/i18n/el_GR.po
index b39ece987ad..68fecdc6ab4 100644
--- a/auto_backup/i18n/el_GR.po
+++ b/auto_backup/i18n/el_GR.po
@@ -89,6 +89,16 @@ msgstr ""
 msgid "Cannot duplicate a configuration."
 msgstr ""
 
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__changeset_change_ids
+msgid "Changeset Changes"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__changeset_ids
+msgid "Changesets"
+msgstr ""
+
 #. module: auto_backup
 #: model:ir.model.fields,help:auto_backup.field_db_backup__backup_format
 msgid "Choose the format for this backup."
@@ -117,6 +127,16 @@ msgstr ""
 msgid "Connection Test Succeeded!"
 msgstr ""
 
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__count_pending_changeset_changes
+msgid "Count Pending Changeset Changes"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__count_pending_changesets
+msgid "Count Pending Changesets"
+msgstr ""
+
 #. module: auto_backup
 #: model:ir.model.fields,field_description:auto_backup.field_db_backup__create_uid
 msgid "Created by"
@@ -405,6 +425,11 @@ msgid ""
 "you specify."
 msgstr ""
 
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__user_can_see_changeset
+msgid "User Can See Changeset"
+msgstr ""
+
 #. module: auto_backup
 #: model:ir.model.fields,field_description:auto_backup.field_db_backup__sftp_user
 msgid "Username in the SFTP Server"
diff --git a/auto_backup/i18n/en_GB.po b/auto_backup/i18n/en_GB.po
index 87b665dd9b6..57ed47ab503 100644
--- a/auto_backup/i18n/en_GB.po
+++ b/auto_backup/i18n/en_GB.po
@@ -89,6 +89,16 @@ msgstr ""
 msgid "Cannot duplicate a configuration."
 msgstr ""
 
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__changeset_change_ids
+msgid "Changeset Changes"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__changeset_ids
+msgid "Changesets"
+msgstr ""
+
 #. module: auto_backup
 #: model:ir.model.fields,help:auto_backup.field_db_backup__backup_format
 msgid "Choose the format for this backup."
@@ -117,6 +127,16 @@ msgstr ""
 msgid "Connection Test Succeeded!"
 msgstr ""
 
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__count_pending_changeset_changes
+msgid "Count Pending Changeset Changes"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__count_pending_changesets
+msgid "Count Pending Changesets"
+msgstr ""
+
 #. module: auto_backup
 #: model:ir.model.fields,field_description:auto_backup.field_db_backup__create_uid
 msgid "Created by"
@@ -405,6 +425,11 @@ msgid ""
 "you specify."
 msgstr ""
 
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__user_can_see_changeset
+msgid "User Can See Changeset"
+msgstr ""
+
 #. module: auto_backup
 #: model:ir.model.fields,field_description:auto_backup.field_db_backup__sftp_user
 msgid "Username in the SFTP Server"
diff --git a/auto_backup/i18n/es.po b/auto_backup/i18n/es.po
index 7135b28d879..39f63fcef22 100644
--- a/auto_backup/i18n/es.po
+++ b/auto_backup/i18n/es.po
@@ -93,6 +93,16 @@ msgstr "Configuración básica de la copia de seguridad"
 msgid "Cannot duplicate a configuration."
 msgstr "No se puede duplicar una configuración."
 
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__changeset_change_ids
+msgid "Changeset Changes"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__changeset_ids
+msgid "Changesets"
+msgstr ""
+
 #. module: auto_backup
 #: model:ir.model.fields,help:auto_backup.field_db_backup__backup_format
 #, fuzzy
@@ -124,6 +134,16 @@ msgstr "Error en la prueba de conexión!"
 msgid "Connection Test Succeeded!"
 msgstr "Prueba de conexión correcta!"
 
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__count_pending_changeset_changes
+msgid "Count Pending Changeset Changes"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__count_pending_changesets
+msgid "Count Pending Changesets"
+msgstr ""
+
 #. module: auto_backup
 #: model:ir.model.fields,field_description:auto_backup.field_db_backup__create_uid
 msgid "Created by"
@@ -428,6 +448,11 @@ msgstr ""
 "Utilizar SFTP con precaución! Escribe archivos a servidores externos en la "
 "ruta que especifique."
 
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__user_can_see_changeset
+msgid "User Can See Changeset"
+msgstr ""
+
 #. module: auto_backup
 #: model:ir.model.fields,field_description:auto_backup.field_db_backup__sftp_user
 msgid "Username in the SFTP Server"
diff --git a/auto_backup/i18n/es_AR.po b/auto_backup/i18n/es_AR.po
index 6e60924a20b..f1f3088022e 100644
--- a/auto_backup/i18n/es_AR.po
+++ b/auto_backup/i18n/es_AR.po
@@ -11,8 +11,8 @@ msgstr ""
 "POT-Creation-Date: 2017-02-18 02:29+0000\n"
 "PO-Revision-Date: 2023-01-16 03:09+0000\n"
 "Last-Translator: Ignacio Buioli <ibuioli@gmail.com>\n"
-"Language-Team: Spanish (Argentina) (https://www.transifex.com/oca/teams/"
-"23907/es_AR/)\n"
+"Language-Team: Spanish (Argentina) (https://www.transifex.com/oca/"
+"teams/23907/es_AR/)\n"
 "Language: es_AR\n"
 "MIME-Version: 1.0\n"
 "Content-Type: text/plain; charset=UTF-8\n"
@@ -94,6 +94,16 @@ msgstr "Configuración básica de la copia de seguridad"
 msgid "Cannot duplicate a configuration."
 msgstr "No se puede duplicar una configuración."
 
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__changeset_change_ids
+msgid "Changeset Changes"
+msgstr "Cambios en el Conjunto de Cambios"
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__changeset_ids
+msgid "Changesets"
+msgstr "Conjunto de Cambios"
+
 #. module: auto_backup
 #: model:ir.model.fields,help:auto_backup.field_db_backup__backup_format
 msgid "Choose the format for this backup."
@@ -122,6 +132,16 @@ msgstr "¡La Prueba de Conexión Falló!"
 msgid "Connection Test Succeeded!"
 msgstr "¡Prueba de Conexión Exitosa!"
 
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__count_pending_changeset_changes
+msgid "Count Pending Changeset Changes"
+msgstr "Contar los Cambios Pendientes del Conjunto de Cambios"
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__count_pending_changesets
+msgid "Count Pending Changesets"
+msgstr "Contar Conjunto de Cambios Pendientes"
+
 #. module: auto_backup
 #: model:ir.model.fields,field_description:auto_backup.field_db_backup__create_uid
 msgid "Created by"
@@ -425,6 +445,11 @@ msgstr ""
 "¡Use SFTP con precaución! Esto escribe archivos en servidores externos en la "
 "ruta que especifique."
 
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__user_can_see_changeset
+msgid "User Can See Changeset"
+msgstr "El usuario puede ver el Conjunto de Cambios"
+
 #. module: auto_backup
 #: model:ir.model.fields,field_description:auto_backup.field_db_backup__sftp_user
 msgid "Username in the SFTP Server"
@@ -465,23 +490,8 @@ msgstr "sftp.ejemplo.com"
 msgid "zip (includes filestore)"
 msgstr "zip (incluye filestore)"
 
-#~ msgid "Changeset Changes"
-#~ msgstr "Cambios en el Conjunto de Cambios"
-
-#~ msgid "Changesets"
-#~ msgstr "Conjunto de Cambios"
-
-#~ msgid "Count Pending Changeset Changes"
-#~ msgstr "Contar los Cambios Pendientes del Conjunto de Cambios"
-
-#~ msgid "Count Pending Changesets"
-#~ msgstr "Contar Conjunto de Cambios Pendientes"
-
 #~ msgid "Followers (Channels)"
 #~ msgstr "Seguidores (Canales)"
 
 #~ msgid "Smart Search"
 #~ msgstr "Búsqueda Inteligente"
-
-#~ msgid "User Can See Changeset"
-#~ msgstr "El usuario puede ver el Conjunto de Cambios"
diff --git a/auto_backup/i18n/es_CL.po b/auto_backup/i18n/es_CL.po
index 5e457b6d90b..844ecbddba7 100644
--- a/auto_backup/i18n/es_CL.po
+++ b/auto_backup/i18n/es_CL.po
@@ -89,6 +89,16 @@ msgstr ""
 msgid "Cannot duplicate a configuration."
 msgstr ""
 
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__changeset_change_ids
+msgid "Changeset Changes"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__changeset_ids
+msgid "Changesets"
+msgstr ""
+
 #. module: auto_backup
 #: model:ir.model.fields,help:auto_backup.field_db_backup__backup_format
 msgid "Choose the format for this backup."
@@ -117,6 +127,16 @@ msgstr ""
 msgid "Connection Test Succeeded!"
 msgstr ""
 
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__count_pending_changeset_changes
+msgid "Count Pending Changeset Changes"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__count_pending_changesets
+msgid "Count Pending Changesets"
+msgstr ""
+
 #. module: auto_backup
 #: model:ir.model.fields,field_description:auto_backup.field_db_backup__create_uid
 msgid "Created by"
@@ -405,6 +425,11 @@ msgid ""
 "you specify."
 msgstr ""
 
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__user_can_see_changeset
+msgid "User Can See Changeset"
+msgstr ""
+
 #. module: auto_backup
 #: model:ir.model.fields,field_description:auto_backup.field_db_backup__sftp_user
 msgid "Username in the SFTP Server"
diff --git a/auto_backup/i18n/es_CO.po b/auto_backup/i18n/es_CO.po
index 7340dd322f2..0247ef6d54f 100644
--- a/auto_backup/i18n/es_CO.po
+++ b/auto_backup/i18n/es_CO.po
@@ -89,6 +89,16 @@ msgstr ""
 msgid "Cannot duplicate a configuration."
 msgstr ""
 
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__changeset_change_ids
+msgid "Changeset Changes"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__changeset_ids
+msgid "Changesets"
+msgstr ""
+
 #. module: auto_backup
 #: model:ir.model.fields,help:auto_backup.field_db_backup__backup_format
 msgid "Choose the format for this backup."
@@ -117,6 +127,16 @@ msgstr ""
 msgid "Connection Test Succeeded!"
 msgstr ""
 
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__count_pending_changeset_changes
+msgid "Count Pending Changeset Changes"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__count_pending_changesets
+msgid "Count Pending Changesets"
+msgstr ""
+
 #. module: auto_backup
 #: model:ir.model.fields,field_description:auto_backup.field_db_backup__create_uid
 msgid "Created by"
@@ -405,6 +425,11 @@ msgid ""
 "you specify."
 msgstr ""
 
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__user_can_see_changeset
+msgid "User Can See Changeset"
+msgstr ""
+
 #. module: auto_backup
 #: model:ir.model.fields,field_description:auto_backup.field_db_backup__sftp_user
 msgid "Username in the SFTP Server"
diff --git a/auto_backup/i18n/es_CR.po b/auto_backup/i18n/es_CR.po
index 53bfc73fb97..418ec1e520a 100644
--- a/auto_backup/i18n/es_CR.po
+++ b/auto_backup/i18n/es_CR.po
@@ -89,6 +89,16 @@ msgstr ""
 msgid "Cannot duplicate a configuration."
 msgstr ""
 
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__changeset_change_ids
+msgid "Changeset Changes"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__changeset_ids
+msgid "Changesets"
+msgstr ""
+
 #. module: auto_backup
 #: model:ir.model.fields,help:auto_backup.field_db_backup__backup_format
 msgid "Choose the format for this backup."
@@ -117,6 +127,16 @@ msgstr ""
 msgid "Connection Test Succeeded!"
 msgstr ""
 
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__count_pending_changeset_changes
+msgid "Count Pending Changeset Changes"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__count_pending_changesets
+msgid "Count Pending Changesets"
+msgstr ""
+
 #. module: auto_backup
 #: model:ir.model.fields,field_description:auto_backup.field_db_backup__create_uid
 msgid "Created by"
@@ -405,6 +425,11 @@ msgid ""
 "you specify."
 msgstr ""
 
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__user_can_see_changeset
+msgid "User Can See Changeset"
+msgstr ""
+
 #. module: auto_backup
 #: model:ir.model.fields,field_description:auto_backup.field_db_backup__sftp_user
 msgid "Username in the SFTP Server"
diff --git a/auto_backup/i18n/es_DO.po b/auto_backup/i18n/es_DO.po
index 2d208be0ea3..a474daf481c 100644
--- a/auto_backup/i18n/es_DO.po
+++ b/auto_backup/i18n/es_DO.po
@@ -89,6 +89,16 @@ msgstr ""
 msgid "Cannot duplicate a configuration."
 msgstr ""
 
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__changeset_change_ids
+msgid "Changeset Changes"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__changeset_ids
+msgid "Changesets"
+msgstr ""
+
 #. module: auto_backup
 #: model:ir.model.fields,help:auto_backup.field_db_backup__backup_format
 msgid "Choose the format for this backup."
@@ -117,6 +127,16 @@ msgstr ""
 msgid "Connection Test Succeeded!"
 msgstr ""
 
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__count_pending_changeset_changes
+msgid "Count Pending Changeset Changes"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__count_pending_changesets
+msgid "Count Pending Changesets"
+msgstr ""
+
 #. module: auto_backup
 #: model:ir.model.fields,field_description:auto_backup.field_db_backup__create_uid
 msgid "Created by"
@@ -405,6 +425,11 @@ msgid ""
 "you specify."
 msgstr ""
 
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__user_can_see_changeset
+msgid "User Can See Changeset"
+msgstr ""
+
 #. module: auto_backup
 #: model:ir.model.fields,field_description:auto_backup.field_db_backup__sftp_user
 msgid "Username in the SFTP Server"
diff --git a/auto_backup/i18n/es_EC.po b/auto_backup/i18n/es_EC.po
index 4e1abdedd90..933092a5b35 100644
--- a/auto_backup/i18n/es_EC.po
+++ b/auto_backup/i18n/es_EC.po
@@ -89,6 +89,16 @@ msgstr ""
 msgid "Cannot duplicate a configuration."
 msgstr ""
 
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__changeset_change_ids
+msgid "Changeset Changes"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__changeset_ids
+msgid "Changesets"
+msgstr ""
+
 #. module: auto_backup
 #: model:ir.model.fields,help:auto_backup.field_db_backup__backup_format
 msgid "Choose the format for this backup."
@@ -117,6 +127,16 @@ msgstr ""
 msgid "Connection Test Succeeded!"
 msgstr ""
 
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__count_pending_changeset_changes
+msgid "Count Pending Changeset Changes"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__count_pending_changesets
+msgid "Count Pending Changesets"
+msgstr ""
+
 #. module: auto_backup
 #: model:ir.model.fields,field_description:auto_backup.field_db_backup__create_uid
 msgid "Created by"
@@ -405,6 +425,11 @@ msgid ""
 "you specify."
 msgstr ""
 
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__user_can_see_changeset
+msgid "User Can See Changeset"
+msgstr ""
+
 #. module: auto_backup
 #: model:ir.model.fields,field_description:auto_backup.field_db_backup__sftp_user
 msgid "Username in the SFTP Server"
diff --git a/auto_backup/i18n/es_ES.po b/auto_backup/i18n/es_ES.po
index 750f80b23be..b913663fc29 100644
--- a/auto_backup/i18n/es_ES.po
+++ b/auto_backup/i18n/es_ES.po
@@ -89,6 +89,16 @@ msgstr ""
 msgid "Cannot duplicate a configuration."
 msgstr ""
 
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__changeset_change_ids
+msgid "Changeset Changes"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__changeset_ids
+msgid "Changesets"
+msgstr ""
+
 #. module: auto_backup
 #: model:ir.model.fields,help:auto_backup.field_db_backup__backup_format
 msgid "Choose the format for this backup."
@@ -117,6 +127,16 @@ msgstr ""
 msgid "Connection Test Succeeded!"
 msgstr ""
 
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__count_pending_changeset_changes
+msgid "Count Pending Changeset Changes"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__count_pending_changesets
+msgid "Count Pending Changesets"
+msgstr ""
+
 #. module: auto_backup
 #: model:ir.model.fields,field_description:auto_backup.field_db_backup__create_uid
 msgid "Created by"
@@ -405,6 +425,11 @@ msgid ""
 "you specify."
 msgstr ""
 
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__user_can_see_changeset
+msgid "User Can See Changeset"
+msgstr ""
+
 #. module: auto_backup
 #: model:ir.model.fields,field_description:auto_backup.field_db_backup__sftp_user
 msgid "Username in the SFTP Server"
diff --git a/auto_backup/i18n/es_MX.po b/auto_backup/i18n/es_MX.po
index 3720034fb6e..39180e80241 100644
--- a/auto_backup/i18n/es_MX.po
+++ b/auto_backup/i18n/es_MX.po
@@ -89,6 +89,16 @@ msgstr ""
 msgid "Cannot duplicate a configuration."
 msgstr ""
 
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__changeset_change_ids
+msgid "Changeset Changes"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__changeset_ids
+msgid "Changesets"
+msgstr ""
+
 #. module: auto_backup
 #: model:ir.model.fields,help:auto_backup.field_db_backup__backup_format
 msgid "Choose the format for this backup."
@@ -117,6 +127,16 @@ msgstr ""
 msgid "Connection Test Succeeded!"
 msgstr ""
 
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__count_pending_changeset_changes
+msgid "Count Pending Changeset Changes"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__count_pending_changesets
+msgid "Count Pending Changesets"
+msgstr ""
+
 #. module: auto_backup
 #: model:ir.model.fields,field_description:auto_backup.field_db_backup__create_uid
 msgid "Created by"
@@ -405,6 +425,11 @@ msgid ""
 "you specify."
 msgstr ""
 
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__user_can_see_changeset
+msgid "User Can See Changeset"
+msgstr ""
+
 #. module: auto_backup
 #: model:ir.model.fields,field_description:auto_backup.field_db_backup__sftp_user
 msgid "Username in the SFTP Server"
diff --git a/auto_backup/i18n/es_PE.po b/auto_backup/i18n/es_PE.po
index fec1d3301cd..8b9870cf628 100644
--- a/auto_backup/i18n/es_PE.po
+++ b/auto_backup/i18n/es_PE.po
@@ -89,6 +89,16 @@ msgstr ""
 msgid "Cannot duplicate a configuration."
 msgstr ""
 
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__changeset_change_ids
+msgid "Changeset Changes"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__changeset_ids
+msgid "Changesets"
+msgstr ""
+
 #. module: auto_backup
 #: model:ir.model.fields,help:auto_backup.field_db_backup__backup_format
 msgid "Choose the format for this backup."
@@ -117,6 +127,16 @@ msgstr ""
 msgid "Connection Test Succeeded!"
 msgstr ""
 
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__count_pending_changeset_changes
+msgid "Count Pending Changeset Changes"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__count_pending_changesets
+msgid "Count Pending Changesets"
+msgstr ""
+
 #. module: auto_backup
 #: model:ir.model.fields,field_description:auto_backup.field_db_backup__create_uid
 msgid "Created by"
@@ -405,6 +425,11 @@ msgid ""
 "you specify."
 msgstr ""
 
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__user_can_see_changeset
+msgid "User Can See Changeset"
+msgstr ""
+
 #. module: auto_backup
 #: model:ir.model.fields,field_description:auto_backup.field_db_backup__sftp_user
 msgid "Username in the SFTP Server"
diff --git a/auto_backup/i18n/es_PY.po b/auto_backup/i18n/es_PY.po
index 54fc724b48d..cceedc1db24 100644
--- a/auto_backup/i18n/es_PY.po
+++ b/auto_backup/i18n/es_PY.po
@@ -89,6 +89,16 @@ msgstr ""
 msgid "Cannot duplicate a configuration."
 msgstr ""
 
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__changeset_change_ids
+msgid "Changeset Changes"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__changeset_ids
+msgid "Changesets"
+msgstr ""
+
 #. module: auto_backup
 #: model:ir.model.fields,help:auto_backup.field_db_backup__backup_format
 msgid "Choose the format for this backup."
@@ -117,6 +127,16 @@ msgstr ""
 msgid "Connection Test Succeeded!"
 msgstr ""
 
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__count_pending_changeset_changes
+msgid "Count Pending Changeset Changes"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__count_pending_changesets
+msgid "Count Pending Changesets"
+msgstr ""
+
 #. module: auto_backup
 #: model:ir.model.fields,field_description:auto_backup.field_db_backup__create_uid
 msgid "Created by"
@@ -405,6 +425,11 @@ msgid ""
 "you specify."
 msgstr ""
 
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__user_can_see_changeset
+msgid "User Can See Changeset"
+msgstr ""
+
 #. module: auto_backup
 #: model:ir.model.fields,field_description:auto_backup.field_db_backup__sftp_user
 msgid "Username in the SFTP Server"
diff --git a/auto_backup/i18n/es_VE.po b/auto_backup/i18n/es_VE.po
index 8ccf47d6da6..3daa94a27bd 100644
--- a/auto_backup/i18n/es_VE.po
+++ b/auto_backup/i18n/es_VE.po
@@ -89,6 +89,16 @@ msgstr ""
 msgid "Cannot duplicate a configuration."
 msgstr ""
 
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__changeset_change_ids
+msgid "Changeset Changes"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__changeset_ids
+msgid "Changesets"
+msgstr ""
+
 #. module: auto_backup
 #: model:ir.model.fields,help:auto_backup.field_db_backup__backup_format
 msgid "Choose the format for this backup."
@@ -117,6 +127,16 @@ msgstr ""
 msgid "Connection Test Succeeded!"
 msgstr ""
 
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__count_pending_changeset_changes
+msgid "Count Pending Changeset Changes"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__count_pending_changesets
+msgid "Count Pending Changesets"
+msgstr ""
+
 #. module: auto_backup
 #: model:ir.model.fields,field_description:auto_backup.field_db_backup__create_uid
 msgid "Created by"
@@ -405,6 +425,11 @@ msgid ""
 "you specify."
 msgstr ""
 
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__user_can_see_changeset
+msgid "User Can See Changeset"
+msgstr ""
+
 #. module: auto_backup
 #: model:ir.model.fields,field_description:auto_backup.field_db_backup__sftp_user
 msgid "Username in the SFTP Server"
diff --git a/auto_backup/i18n/et.po b/auto_backup/i18n/et.po
index 1570b9af2d8..feba83ebf06 100644
--- a/auto_backup/i18n/et.po
+++ b/auto_backup/i18n/et.po
@@ -88,6 +88,16 @@ msgstr ""
 msgid "Cannot duplicate a configuration."
 msgstr ""
 
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__changeset_change_ids
+msgid "Changeset Changes"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__changeset_ids
+msgid "Changesets"
+msgstr ""
+
 #. module: auto_backup
 #: model:ir.model.fields,help:auto_backup.field_db_backup__backup_format
 msgid "Choose the format for this backup."
@@ -116,6 +126,16 @@ msgstr ""
 msgid "Connection Test Succeeded!"
 msgstr ""
 
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__count_pending_changeset_changes
+msgid "Count Pending Changeset Changes"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__count_pending_changesets
+msgid "Count Pending Changesets"
+msgstr ""
+
 #. module: auto_backup
 #: model:ir.model.fields,field_description:auto_backup.field_db_backup__create_uid
 msgid "Created by"
@@ -404,6 +424,11 @@ msgid ""
 "you specify."
 msgstr ""
 
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__user_can_see_changeset
+msgid "User Can See Changeset"
+msgstr ""
+
 #. module: auto_backup
 #: model:ir.model.fields,field_description:auto_backup.field_db_backup__sftp_user
 msgid "Username in the SFTP Server"
diff --git a/auto_backup/i18n/eu.po b/auto_backup/i18n/eu.po
index ac224c86399..a903be9fa7d 100644
--- a/auto_backup/i18n/eu.po
+++ b/auto_backup/i18n/eu.po
@@ -88,6 +88,16 @@ msgstr ""
 msgid "Cannot duplicate a configuration."
 msgstr ""
 
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__changeset_change_ids
+msgid "Changeset Changes"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__changeset_ids
+msgid "Changesets"
+msgstr ""
+
 #. module: auto_backup
 #: model:ir.model.fields,help:auto_backup.field_db_backup__backup_format
 msgid "Choose the format for this backup."
@@ -116,6 +126,16 @@ msgstr ""
 msgid "Connection Test Succeeded!"
 msgstr ""
 
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__count_pending_changeset_changes
+msgid "Count Pending Changeset Changes"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__count_pending_changesets
+msgid "Count Pending Changesets"
+msgstr ""
+
 #. module: auto_backup
 #: model:ir.model.fields,field_description:auto_backup.field_db_backup__create_uid
 msgid "Created by"
@@ -404,6 +424,11 @@ msgid ""
 "you specify."
 msgstr ""
 
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__user_can_see_changeset
+msgid "User Can See Changeset"
+msgstr ""
+
 #. module: auto_backup
 #: model:ir.model.fields,field_description:auto_backup.field_db_backup__sftp_user
 msgid "Username in the SFTP Server"
diff --git a/auto_backup/i18n/fa.po b/auto_backup/i18n/fa.po
index ed004bd8c01..95afdd2ea93 100644
--- a/auto_backup/i18n/fa.po
+++ b/auto_backup/i18n/fa.po
@@ -88,6 +88,16 @@ msgstr ""
 msgid "Cannot duplicate a configuration."
 msgstr ""
 
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__changeset_change_ids
+msgid "Changeset Changes"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__changeset_ids
+msgid "Changesets"
+msgstr ""
+
 #. module: auto_backup
 #: model:ir.model.fields,help:auto_backup.field_db_backup__backup_format
 msgid "Choose the format for this backup."
@@ -116,6 +126,16 @@ msgstr ""
 msgid "Connection Test Succeeded!"
 msgstr ""
 
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__count_pending_changeset_changes
+msgid "Count Pending Changeset Changes"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__count_pending_changesets
+msgid "Count Pending Changesets"
+msgstr ""
+
 #. module: auto_backup
 #: model:ir.model.fields,field_description:auto_backup.field_db_backup__create_uid
 msgid "Created by"
@@ -404,6 +424,11 @@ msgid ""
 "you specify."
 msgstr ""
 
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__user_can_see_changeset
+msgid "User Can See Changeset"
+msgstr ""
+
 #. module: auto_backup
 #: model:ir.model.fields,field_description:auto_backup.field_db_backup__sftp_user
 msgid "Username in the SFTP Server"
diff --git a/auto_backup/i18n/fi.po b/auto_backup/i18n/fi.po
index c8a3217dbea..a61aca01b36 100644
--- a/auto_backup/i18n/fi.po
+++ b/auto_backup/i18n/fi.po
@@ -88,6 +88,16 @@ msgstr ""
 msgid "Cannot duplicate a configuration."
 msgstr ""
 
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__changeset_change_ids
+msgid "Changeset Changes"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__changeset_ids
+msgid "Changesets"
+msgstr ""
+
 #. module: auto_backup
 #: model:ir.model.fields,help:auto_backup.field_db_backup__backup_format
 msgid "Choose the format for this backup."
@@ -116,6 +126,16 @@ msgstr ""
 msgid "Connection Test Succeeded!"
 msgstr ""
 
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__count_pending_changeset_changes
+msgid "Count Pending Changeset Changes"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__count_pending_changesets
+msgid "Count Pending Changesets"
+msgstr ""
+
 #. module: auto_backup
 #: model:ir.model.fields,field_description:auto_backup.field_db_backup__create_uid
 msgid "Created by"
@@ -404,6 +424,11 @@ msgid ""
 "you specify."
 msgstr ""
 
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__user_can_see_changeset
+msgid "User Can See Changeset"
+msgstr ""
+
 #. module: auto_backup
 #: model:ir.model.fields,field_description:auto_backup.field_db_backup__sftp_user
 msgid "Username in the SFTP Server"
diff --git a/auto_backup/i18n/fr.po b/auto_backup/i18n/fr.po
index bacbb17f682..d37516baeb8 100644
--- a/auto_backup/i18n/fr.po
+++ b/auto_backup/i18n/fr.po
@@ -93,6 +93,16 @@ msgstr "Configuration basique de sauvegarde"
 msgid "Cannot duplicate a configuration."
 msgstr "Impossible de dupliquer une configuration."
 
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__changeset_change_ids
+msgid "Changeset Changes"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__changeset_ids
+msgid "Changesets"
+msgstr ""
+
 #. module: auto_backup
 #: model:ir.model.fields,help:auto_backup.field_db_backup__backup_format
 #, fuzzy
@@ -122,6 +132,16 @@ msgstr "Échec du test de connexion !"
 msgid "Connection Test Succeeded!"
 msgstr "Test de connexion réussi !"
 
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__count_pending_changeset_changes
+msgid "Count Pending Changeset Changes"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__count_pending_changesets
+msgid "Count Pending Changesets"
+msgstr ""
+
 #. module: auto_backup
 #: model:ir.model.fields,field_description:auto_backup.field_db_backup__create_uid
 msgid "Created by"
@@ -415,6 +435,11 @@ msgid ""
 "you specify."
 msgstr ""
 
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__user_can_see_changeset
+msgid "User Can See Changeset"
+msgstr ""
+
 #. module: auto_backup
 #: model:ir.model.fields,field_description:auto_backup.field_db_backup__sftp_user
 msgid "Username in the SFTP Server"
diff --git a/auto_backup/i18n/fr_CA.po b/auto_backup/i18n/fr_CA.po
index 5d493ed5503..a59a2d826d9 100644
--- a/auto_backup/i18n/fr_CA.po
+++ b/auto_backup/i18n/fr_CA.po
@@ -89,6 +89,16 @@ msgstr ""
 msgid "Cannot duplicate a configuration."
 msgstr ""
 
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__changeset_change_ids
+msgid "Changeset Changes"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__changeset_ids
+msgid "Changesets"
+msgstr ""
+
 #. module: auto_backup
 #: model:ir.model.fields,help:auto_backup.field_db_backup__backup_format
 msgid "Choose the format for this backup."
@@ -117,6 +127,16 @@ msgstr ""
 msgid "Connection Test Succeeded!"
 msgstr ""
 
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__count_pending_changeset_changes
+msgid "Count Pending Changeset Changes"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__count_pending_changesets
+msgid "Count Pending Changesets"
+msgstr ""
+
 #. module: auto_backup
 #: model:ir.model.fields,field_description:auto_backup.field_db_backup__create_uid
 msgid "Created by"
@@ -405,6 +425,11 @@ msgid ""
 "you specify."
 msgstr ""
 
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__user_can_see_changeset
+msgid "User Can See Changeset"
+msgstr ""
+
 #. module: auto_backup
 #: model:ir.model.fields,field_description:auto_backup.field_db_backup__sftp_user
 msgid "Username in the SFTP Server"
diff --git a/auto_backup/i18n/fr_CH.po b/auto_backup/i18n/fr_CH.po
index 73e43ef74a5..9c48d18b782 100644
--- a/auto_backup/i18n/fr_CH.po
+++ b/auto_backup/i18n/fr_CH.po
@@ -89,6 +89,16 @@ msgstr ""
 msgid "Cannot duplicate a configuration."
 msgstr ""
 
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__changeset_change_ids
+msgid "Changeset Changes"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__changeset_ids
+msgid "Changesets"
+msgstr ""
+
 #. module: auto_backup
 #: model:ir.model.fields,help:auto_backup.field_db_backup__backup_format
 msgid "Choose the format for this backup."
@@ -117,6 +127,16 @@ msgstr ""
 msgid "Connection Test Succeeded!"
 msgstr ""
 
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__count_pending_changeset_changes
+msgid "Count Pending Changeset Changes"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__count_pending_changesets
+msgid "Count Pending Changesets"
+msgstr ""
+
 #. module: auto_backup
 #: model:ir.model.fields,field_description:auto_backup.field_db_backup__create_uid
 msgid "Created by"
@@ -405,6 +425,11 @@ msgid ""
 "you specify."
 msgstr ""
 
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__user_can_see_changeset
+msgid "User Can See Changeset"
+msgstr ""
+
 #. module: auto_backup
 #: model:ir.model.fields,field_description:auto_backup.field_db_backup__sftp_user
 msgid "Username in the SFTP Server"
diff --git a/auto_backup/i18n/gl.po b/auto_backup/i18n/gl.po
index 9d1e652862b..1ae7c93b801 100644
--- a/auto_backup/i18n/gl.po
+++ b/auto_backup/i18n/gl.po
@@ -88,6 +88,16 @@ msgstr ""
 msgid "Cannot duplicate a configuration."
 msgstr ""
 
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__changeset_change_ids
+msgid "Changeset Changes"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__changeset_ids
+msgid "Changesets"
+msgstr ""
+
 #. module: auto_backup
 #: model:ir.model.fields,help:auto_backup.field_db_backup__backup_format
 msgid "Choose the format for this backup."
@@ -116,6 +126,16 @@ msgstr ""
 msgid "Connection Test Succeeded!"
 msgstr ""
 
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__count_pending_changeset_changes
+msgid "Count Pending Changeset Changes"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__count_pending_changesets
+msgid "Count Pending Changesets"
+msgstr ""
+
 #. module: auto_backup
 #: model:ir.model.fields,field_description:auto_backup.field_db_backup__create_uid
 msgid "Created by"
@@ -404,6 +424,11 @@ msgid ""
 "you specify."
 msgstr ""
 
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__user_can_see_changeset
+msgid "User Can See Changeset"
+msgstr ""
+
 #. module: auto_backup
 #: model:ir.model.fields,field_description:auto_backup.field_db_backup__sftp_user
 msgid "Username in the SFTP Server"
diff --git a/auto_backup/i18n/gl_ES.po b/auto_backup/i18n/gl_ES.po
index 123548edeb2..4085f3bac93 100644
--- a/auto_backup/i18n/gl_ES.po
+++ b/auto_backup/i18n/gl_ES.po
@@ -89,6 +89,16 @@ msgstr ""
 msgid "Cannot duplicate a configuration."
 msgstr ""
 
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__changeset_change_ids
+msgid "Changeset Changes"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__changeset_ids
+msgid "Changesets"
+msgstr ""
+
 #. module: auto_backup
 #: model:ir.model.fields,help:auto_backup.field_db_backup__backup_format
 msgid "Choose the format for this backup."
@@ -117,6 +127,16 @@ msgstr ""
 msgid "Connection Test Succeeded!"
 msgstr ""
 
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__count_pending_changeset_changes
+msgid "Count Pending Changeset Changes"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__count_pending_changesets
+msgid "Count Pending Changesets"
+msgstr ""
+
 #. module: auto_backup
 #: model:ir.model.fields,field_description:auto_backup.field_db_backup__create_uid
 msgid "Created by"
@@ -405,6 +425,11 @@ msgid ""
 "you specify."
 msgstr ""
 
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__user_can_see_changeset
+msgid "User Can See Changeset"
+msgstr ""
+
 #. module: auto_backup
 #: model:ir.model.fields,field_description:auto_backup.field_db_backup__sftp_user
 msgid "Username in the SFTP Server"
diff --git a/auto_backup/i18n/he.po b/auto_backup/i18n/he.po
index f915e8eff2c..b8d28cf1443 100644
--- a/auto_backup/i18n/he.po
+++ b/auto_backup/i18n/he.po
@@ -88,6 +88,16 @@ msgstr ""
 msgid "Cannot duplicate a configuration."
 msgstr ""
 
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__changeset_change_ids
+msgid "Changeset Changes"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__changeset_ids
+msgid "Changesets"
+msgstr ""
+
 #. module: auto_backup
 #: model:ir.model.fields,help:auto_backup.field_db_backup__backup_format
 msgid "Choose the format for this backup."
@@ -116,6 +126,16 @@ msgstr ""
 msgid "Connection Test Succeeded!"
 msgstr ""
 
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__count_pending_changeset_changes
+msgid "Count Pending Changeset Changes"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__count_pending_changesets
+msgid "Count Pending Changesets"
+msgstr ""
+
 #. module: auto_backup
 #: model:ir.model.fields,field_description:auto_backup.field_db_backup__create_uid
 msgid "Created by"
@@ -404,6 +424,11 @@ msgid ""
 "you specify."
 msgstr ""
 
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__user_can_see_changeset
+msgid "User Can See Changeset"
+msgstr ""
+
 #. module: auto_backup
 #: model:ir.model.fields,field_description:auto_backup.field_db_backup__sftp_user
 msgid "Username in the SFTP Server"
diff --git a/auto_backup/i18n/hr.po b/auto_backup/i18n/hr.po
index 0a1533310a4..9d8ea842673 100644
--- a/auto_backup/i18n/hr.po
+++ b/auto_backup/i18n/hr.po
@@ -90,6 +90,16 @@ msgstr "Osnovne postavke backupa"
 msgid "Cannot duplicate a configuration."
 msgstr "Nije moguće dupliciranje postavki."
 
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__changeset_change_ids
+msgid "Changeset Changes"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__changeset_ids
+msgid "Changesets"
+msgstr ""
+
 #. module: auto_backup
 #: model:ir.model.fields,help:auto_backup.field_db_backup__backup_format
 msgid "Choose the format for this backup."
@@ -118,6 +128,16 @@ msgstr "Provjera povezivanja nije uspjela!"
 msgid "Connection Test Succeeded!"
 msgstr "Provjera povezivanja uspješna!"
 
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__count_pending_changeset_changes
+msgid "Count Pending Changeset Changes"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__count_pending_changesets
+msgid "Count Pending Changesets"
+msgstr ""
+
 #. module: auto_backup
 #: model:ir.model.fields,field_description:auto_backup.field_db_backup__create_uid
 msgid "Created by"
@@ -408,6 +428,11 @@ msgid ""
 "you specify."
 msgstr ""
 
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__user_can_see_changeset
+msgid "User Can See Changeset"
+msgstr ""
+
 #. module: auto_backup
 #: model:ir.model.fields,field_description:auto_backup.field_db_backup__sftp_user
 msgid "Username in the SFTP Server"
diff --git a/auto_backup/i18n/hr_HR.po b/auto_backup/i18n/hr_HR.po
index f0b947f11b7..a3317dfcb9e 100644
--- a/auto_backup/i18n/hr_HR.po
+++ b/auto_backup/i18n/hr_HR.po
@@ -90,6 +90,16 @@ msgstr ""
 msgid "Cannot duplicate a configuration."
 msgstr ""
 
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__changeset_change_ids
+msgid "Changeset Changes"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__changeset_ids
+msgid "Changesets"
+msgstr ""
+
 #. module: auto_backup
 #: model:ir.model.fields,help:auto_backup.field_db_backup__backup_format
 msgid "Choose the format for this backup."
@@ -118,6 +128,16 @@ msgstr ""
 msgid "Connection Test Succeeded!"
 msgstr ""
 
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__count_pending_changeset_changes
+msgid "Count Pending Changeset Changes"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__count_pending_changesets
+msgid "Count Pending Changesets"
+msgstr ""
+
 #. module: auto_backup
 #: model:ir.model.fields,field_description:auto_backup.field_db_backup__create_uid
 msgid "Created by"
@@ -406,6 +426,11 @@ msgid ""
 "you specify."
 msgstr ""
 
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__user_can_see_changeset
+msgid "User Can See Changeset"
+msgstr ""
+
 #. module: auto_backup
 #: model:ir.model.fields,field_description:auto_backup.field_db_backup__sftp_user
 msgid "Username in the SFTP Server"
diff --git a/auto_backup/i18n/hu.po b/auto_backup/i18n/hu.po
index f744880c589..543939776e9 100644
--- a/auto_backup/i18n/hu.po
+++ b/auto_backup/i18n/hu.po
@@ -88,6 +88,16 @@ msgstr ""
 msgid "Cannot duplicate a configuration."
 msgstr ""
 
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__changeset_change_ids
+msgid "Changeset Changes"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__changeset_ids
+msgid "Changesets"
+msgstr ""
+
 #. module: auto_backup
 #: model:ir.model.fields,help:auto_backup.field_db_backup__backup_format
 msgid "Choose the format for this backup."
@@ -116,6 +126,16 @@ msgstr ""
 msgid "Connection Test Succeeded!"
 msgstr ""
 
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__count_pending_changeset_changes
+msgid "Count Pending Changeset Changes"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__count_pending_changesets
+msgid "Count Pending Changesets"
+msgstr ""
+
 #. module: auto_backup
 #: model:ir.model.fields,field_description:auto_backup.field_db_backup__create_uid
 msgid "Created by"
@@ -404,6 +424,11 @@ msgid ""
 "you specify."
 msgstr ""
 
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__user_can_see_changeset
+msgid "User Can See Changeset"
+msgstr ""
+
 #. module: auto_backup
 #: model:ir.model.fields,field_description:auto_backup.field_db_backup__sftp_user
 msgid "Username in the SFTP Server"
diff --git a/auto_backup/i18n/id.po b/auto_backup/i18n/id.po
index 9fda971312e..838ae36cfc3 100644
--- a/auto_backup/i18n/id.po
+++ b/auto_backup/i18n/id.po
@@ -88,6 +88,16 @@ msgstr ""
 msgid "Cannot duplicate a configuration."
 msgstr ""
 
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__changeset_change_ids
+msgid "Changeset Changes"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__changeset_ids
+msgid "Changesets"
+msgstr ""
+
 #. module: auto_backup
 #: model:ir.model.fields,help:auto_backup.field_db_backup__backup_format
 msgid "Choose the format for this backup."
@@ -116,6 +126,16 @@ msgstr ""
 msgid "Connection Test Succeeded!"
 msgstr ""
 
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__count_pending_changeset_changes
+msgid "Count Pending Changeset Changes"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__count_pending_changesets
+msgid "Count Pending Changesets"
+msgstr ""
+
 #. module: auto_backup
 #: model:ir.model.fields,field_description:auto_backup.field_db_backup__create_uid
 msgid "Created by"
@@ -404,6 +424,11 @@ msgid ""
 "you specify."
 msgstr ""
 
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__user_can_see_changeset
+msgid "User Can See Changeset"
+msgstr ""
+
 #. module: auto_backup
 #: model:ir.model.fields,field_description:auto_backup.field_db_backup__sftp_user
 msgid "Username in the SFTP Server"
diff --git a/auto_backup/i18n/it.po b/auto_backup/i18n/it.po
index fead6e93f6f..beb04aaa6e9 100644
--- a/auto_backup/i18n/it.po
+++ b/auto_backup/i18n/it.po
@@ -9,15 +9,15 @@ msgstr ""
 "Project-Id-Version: Odoo Server 11.0\n"
 "Report-Msgid-Bugs-To: \n"
 "POT-Creation-Date: 2018-03-03 10:08+0000\n"
-"PO-Revision-Date: 2023-03-09 13:23+0000\n"
-"Last-Translator: Francesco Foresti <francesco.foresti@ooops404.com>\n"
+"PO-Revision-Date: 2023-06-13 16:10+0000\n"
+"Last-Translator: mymage <stefano.consolaro@mymage.it>\n"
 "Language-Team: Italian (https://www.transifex.com/oca/teams/23907/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"
-"X-Generator: Weblate 4.14.1\n"
+"X-Generator: Weblate 4.17\n"
 
 #. module: auto_backup
 #: model_terms:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
@@ -92,6 +92,16 @@ msgstr "Configurazione di base del backup"
 msgid "Cannot duplicate a configuration."
 msgstr "Impossibile duplicare una configurazione."
 
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__changeset_change_ids
+msgid "Changeset Changes"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__changeset_ids
+msgid "Changesets"
+msgstr ""
+
 #. module: auto_backup
 #: model:ir.model.fields,help:auto_backup.field_db_backup__backup_format
 #, fuzzy
@@ -122,6 +132,16 @@ msgstr "Prova di connessione non riuscita."
 msgid "Connection Test Succeeded!"
 msgstr "Prova di connessione superata."
 
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__count_pending_changeset_changes
+msgid "Count Pending Changeset Changes"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__count_pending_changesets
+msgid "Count Pending Changesets"
+msgstr ""
+
 #. module: auto_backup
 #: model:ir.model.fields,field_description:auto_backup.field_db_backup__create_uid
 msgid "Created by"
@@ -193,7 +213,7 @@ msgstr "Seguito da"
 #. module: auto_backup
 #: model:ir.model.fields,field_description:auto_backup.field_db_backup__message_partner_ids
 msgid "Followers (Partners)"
-msgstr "Chi sta seguendo (partner)"
+msgstr "Seguito da (partner)"
 
 #. module: auto_backup
 #: model_terms:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
@@ -427,6 +447,11 @@ msgstr ""
 "Usare SFTP con cautela, nei server esterni vengono scritti file nel percorso "
 "specificato."
 
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__user_can_see_changeset
+msgid "User Can See Changeset"
+msgstr ""
+
 #. module: auto_backup
 #: model:ir.model.fields,field_description:auto_backup.field_db_backup__sftp_user
 msgid "Username in the SFTP Server"
@@ -435,7 +460,7 @@ msgstr "Nome utente nel server SFTP"
 #. module: auto_backup
 #: model_terms:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
 msgid "Warning:"
-msgstr "Avviso:"
+msgstr "Attenzione:"
 
 #. module: auto_backup
 #: model:ir.model.fields,field_description:auto_backup.field_db_backup__website_message_ids
diff --git a/auto_backup/i18n/ja.po b/auto_backup/i18n/ja.po
index a5eb7ce75d8..9acbb3837f5 100644
--- a/auto_backup/i18n/ja.po
+++ b/auto_backup/i18n/ja.po
@@ -88,6 +88,16 @@ msgstr ""
 msgid "Cannot duplicate a configuration."
 msgstr ""
 
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__changeset_change_ids
+msgid "Changeset Changes"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__changeset_ids
+msgid "Changesets"
+msgstr ""
+
 #. module: auto_backup
 #: model:ir.model.fields,help:auto_backup.field_db_backup__backup_format
 msgid "Choose the format for this backup."
@@ -116,6 +126,16 @@ msgstr ""
 msgid "Connection Test Succeeded!"
 msgstr ""
 
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__count_pending_changeset_changes
+msgid "Count Pending Changeset Changes"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__count_pending_changesets
+msgid "Count Pending Changesets"
+msgstr ""
+
 #. module: auto_backup
 #: model:ir.model.fields,field_description:auto_backup.field_db_backup__create_uid
 msgid "Created by"
@@ -404,6 +424,11 @@ msgid ""
 "you specify."
 msgstr ""
 
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__user_can_see_changeset
+msgid "User Can See Changeset"
+msgstr ""
+
 #. module: auto_backup
 #: model:ir.model.fields,field_description:auto_backup.field_db_backup__sftp_user
 msgid "Username in the SFTP Server"
diff --git a/auto_backup/i18n/ko.po b/auto_backup/i18n/ko.po
index 84e8bdb6064..88306cf8963 100644
--- a/auto_backup/i18n/ko.po
+++ b/auto_backup/i18n/ko.po
@@ -88,6 +88,16 @@ msgstr ""
 msgid "Cannot duplicate a configuration."
 msgstr ""
 
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__changeset_change_ids
+msgid "Changeset Changes"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__changeset_ids
+msgid "Changesets"
+msgstr ""
+
 #. module: auto_backup
 #: model:ir.model.fields,help:auto_backup.field_db_backup__backup_format
 msgid "Choose the format for this backup."
@@ -116,6 +126,16 @@ msgstr ""
 msgid "Connection Test Succeeded!"
 msgstr ""
 
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__count_pending_changeset_changes
+msgid "Count Pending Changeset Changes"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__count_pending_changesets
+msgid "Count Pending Changesets"
+msgstr ""
+
 #. module: auto_backup
 #: model:ir.model.fields,field_description:auto_backup.field_db_backup__create_uid
 msgid "Created by"
@@ -404,6 +424,11 @@ msgid ""
 "you specify."
 msgstr ""
 
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__user_can_see_changeset
+msgid "User Can See Changeset"
+msgstr ""
+
 #. module: auto_backup
 #: model:ir.model.fields,field_description:auto_backup.field_db_backup__sftp_user
 msgid "Username in the SFTP Server"
diff --git a/auto_backup/i18n/lt.po b/auto_backup/i18n/lt.po
index 9428efad5b2..01a160c1953 100644
--- a/auto_backup/i18n/lt.po
+++ b/auto_backup/i18n/lt.po
@@ -89,6 +89,16 @@ msgstr ""
 msgid "Cannot duplicate a configuration."
 msgstr ""
 
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__changeset_change_ids
+msgid "Changeset Changes"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__changeset_ids
+msgid "Changesets"
+msgstr ""
+
 #. module: auto_backup
 #: model:ir.model.fields,help:auto_backup.field_db_backup__backup_format
 msgid "Choose the format for this backup."
@@ -117,6 +127,16 @@ msgstr ""
 msgid "Connection Test Succeeded!"
 msgstr ""
 
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__count_pending_changeset_changes
+msgid "Count Pending Changeset Changes"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__count_pending_changesets
+msgid "Count Pending Changesets"
+msgstr ""
+
 #. module: auto_backup
 #: model:ir.model.fields,field_description:auto_backup.field_db_backup__create_uid
 msgid "Created by"
@@ -405,6 +425,11 @@ msgid ""
 "you specify."
 msgstr ""
 
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__user_can_see_changeset
+msgid "User Can See Changeset"
+msgstr ""
+
 #. module: auto_backup
 #: model:ir.model.fields,field_description:auto_backup.field_db_backup__sftp_user
 msgid "Username in the SFTP Server"
diff --git a/auto_backup/i18n/lt_LT.po b/auto_backup/i18n/lt_LT.po
index 0a8c6498473..92cec494ef7 100644
--- a/auto_backup/i18n/lt_LT.po
+++ b/auto_backup/i18n/lt_LT.po
@@ -90,6 +90,16 @@ msgstr ""
 msgid "Cannot duplicate a configuration."
 msgstr ""
 
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__changeset_change_ids
+msgid "Changeset Changes"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__changeset_ids
+msgid "Changesets"
+msgstr ""
+
 #. module: auto_backup
 #: model:ir.model.fields,help:auto_backup.field_db_backup__backup_format
 msgid "Choose the format for this backup."
@@ -118,6 +128,16 @@ msgstr ""
 msgid "Connection Test Succeeded!"
 msgstr ""
 
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__count_pending_changeset_changes
+msgid "Count Pending Changeset Changes"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__count_pending_changesets
+msgid "Count Pending Changesets"
+msgstr ""
+
 #. module: auto_backup
 #: model:ir.model.fields,field_description:auto_backup.field_db_backup__create_uid
 msgid "Created by"
@@ -406,6 +426,11 @@ msgid ""
 "you specify."
 msgstr ""
 
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__user_can_see_changeset
+msgid "User Can See Changeset"
+msgstr ""
+
 #. module: auto_backup
 #: model:ir.model.fields,field_description:auto_backup.field_db_backup__sftp_user
 msgid "Username in the SFTP Server"
diff --git a/auto_backup/i18n/lv.po b/auto_backup/i18n/lv.po
index 8d91191cc5a..4bfe68bbdc1 100644
--- a/auto_backup/i18n/lv.po
+++ b/auto_backup/i18n/lv.po
@@ -89,6 +89,16 @@ msgstr ""
 msgid "Cannot duplicate a configuration."
 msgstr ""
 
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__changeset_change_ids
+msgid "Changeset Changes"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__changeset_ids
+msgid "Changesets"
+msgstr ""
+
 #. module: auto_backup
 #: model:ir.model.fields,help:auto_backup.field_db_backup__backup_format
 msgid "Choose the format for this backup."
@@ -117,6 +127,16 @@ msgstr ""
 msgid "Connection Test Succeeded!"
 msgstr ""
 
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__count_pending_changeset_changes
+msgid "Count Pending Changeset Changes"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__count_pending_changesets
+msgid "Count Pending Changesets"
+msgstr ""
+
 #. module: auto_backup
 #: model:ir.model.fields,field_description:auto_backup.field_db_backup__create_uid
 msgid "Created by"
@@ -405,6 +425,11 @@ msgid ""
 "you specify."
 msgstr ""
 
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__user_can_see_changeset
+msgid "User Can See Changeset"
+msgstr ""
+
 #. module: auto_backup
 #: model:ir.model.fields,field_description:auto_backup.field_db_backup__sftp_user
 msgid "Username in the SFTP Server"
diff --git a/auto_backup/i18n/mk.po b/auto_backup/i18n/mk.po
index 60e568ad272..6ebfcf15fd7 100644
--- a/auto_backup/i18n/mk.po
+++ b/auto_backup/i18n/mk.po
@@ -88,6 +88,16 @@ msgstr ""
 msgid "Cannot duplicate a configuration."
 msgstr ""
 
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__changeset_change_ids
+msgid "Changeset Changes"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__changeset_ids
+msgid "Changesets"
+msgstr ""
+
 #. module: auto_backup
 #: model:ir.model.fields,help:auto_backup.field_db_backup__backup_format
 msgid "Choose the format for this backup."
@@ -116,6 +126,16 @@ msgstr ""
 msgid "Connection Test Succeeded!"
 msgstr ""
 
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__count_pending_changeset_changes
+msgid "Count Pending Changeset Changes"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__count_pending_changesets
+msgid "Count Pending Changesets"
+msgstr ""
+
 #. module: auto_backup
 #: model:ir.model.fields,field_description:auto_backup.field_db_backup__create_uid
 msgid "Created by"
@@ -404,6 +424,11 @@ msgid ""
 "you specify."
 msgstr ""
 
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__user_can_see_changeset
+msgid "User Can See Changeset"
+msgstr ""
+
 #. module: auto_backup
 #: model:ir.model.fields,field_description:auto_backup.field_db_backup__sftp_user
 msgid "Username in the SFTP Server"
diff --git a/auto_backup/i18n/mn.po b/auto_backup/i18n/mn.po
index 582207c47b3..d738357541b 100644
--- a/auto_backup/i18n/mn.po
+++ b/auto_backup/i18n/mn.po
@@ -88,6 +88,16 @@ msgstr ""
 msgid "Cannot duplicate a configuration."
 msgstr ""
 
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__changeset_change_ids
+msgid "Changeset Changes"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__changeset_ids
+msgid "Changesets"
+msgstr ""
+
 #. module: auto_backup
 #: model:ir.model.fields,help:auto_backup.field_db_backup__backup_format
 msgid "Choose the format for this backup."
@@ -116,6 +126,16 @@ msgstr ""
 msgid "Connection Test Succeeded!"
 msgstr ""
 
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__count_pending_changeset_changes
+msgid "Count Pending Changeset Changes"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__count_pending_changesets
+msgid "Count Pending Changesets"
+msgstr ""
+
 #. module: auto_backup
 #: model:ir.model.fields,field_description:auto_backup.field_db_backup__create_uid
 msgid "Created by"
@@ -404,6 +424,11 @@ msgid ""
 "you specify."
 msgstr ""
 
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__user_can_see_changeset
+msgid "User Can See Changeset"
+msgstr ""
+
 #. module: auto_backup
 #: model:ir.model.fields,field_description:auto_backup.field_db_backup__sftp_user
 msgid "Username in the SFTP Server"
diff --git a/auto_backup/i18n/nb.po b/auto_backup/i18n/nb.po
index 0379e9046b7..750d5a4a63e 100644
--- a/auto_backup/i18n/nb.po
+++ b/auto_backup/i18n/nb.po
@@ -89,6 +89,16 @@ msgstr ""
 msgid "Cannot duplicate a configuration."
 msgstr ""
 
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__changeset_change_ids
+msgid "Changeset Changes"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__changeset_ids
+msgid "Changesets"
+msgstr ""
+
 #. module: auto_backup
 #: model:ir.model.fields,help:auto_backup.field_db_backup__backup_format
 msgid "Choose the format for this backup."
@@ -117,6 +127,16 @@ msgstr ""
 msgid "Connection Test Succeeded!"
 msgstr ""
 
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__count_pending_changeset_changes
+msgid "Count Pending Changeset Changes"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__count_pending_changesets
+msgid "Count Pending Changesets"
+msgstr ""
+
 #. module: auto_backup
 #: model:ir.model.fields,field_description:auto_backup.field_db_backup__create_uid
 msgid "Created by"
@@ -405,6 +425,11 @@ msgid ""
 "you specify."
 msgstr ""
 
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__user_can_see_changeset
+msgid "User Can See Changeset"
+msgstr ""
+
 #. module: auto_backup
 #: model:ir.model.fields,field_description:auto_backup.field_db_backup__sftp_user
 msgid "Username in the SFTP Server"
diff --git a/auto_backup/i18n/nb_NO.po b/auto_backup/i18n/nb_NO.po
index 7eaef8e9bc0..d5ac742512b 100644
--- a/auto_backup/i18n/nb_NO.po
+++ b/auto_backup/i18n/nb_NO.po
@@ -89,6 +89,16 @@ msgstr ""
 msgid "Cannot duplicate a configuration."
 msgstr ""
 
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__changeset_change_ids
+msgid "Changeset Changes"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__changeset_ids
+msgid "Changesets"
+msgstr ""
+
 #. module: auto_backup
 #: model:ir.model.fields,help:auto_backup.field_db_backup__backup_format
 msgid "Choose the format for this backup."
@@ -117,6 +127,16 @@ msgstr ""
 msgid "Connection Test Succeeded!"
 msgstr ""
 
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__count_pending_changeset_changes
+msgid "Count Pending Changeset Changes"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__count_pending_changesets
+msgid "Count Pending Changesets"
+msgstr ""
+
 #. module: auto_backup
 #: model:ir.model.fields,field_description:auto_backup.field_db_backup__create_uid
 msgid "Created by"
@@ -405,6 +425,11 @@ msgid ""
 "you specify."
 msgstr ""
 
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__user_can_see_changeset
+msgid "User Can See Changeset"
+msgstr ""
+
 #. module: auto_backup
 #: model:ir.model.fields,field_description:auto_backup.field_db_backup__sftp_user
 msgid "Username in the SFTP Server"
diff --git a/auto_backup/i18n/nl.po b/auto_backup/i18n/nl.po
index 9879bf25634..260919e90a3 100644
--- a/auto_backup/i18n/nl.po
+++ b/auto_backup/i18n/nl.po
@@ -91,6 +91,16 @@ msgstr "Basis backup configuratie"
 msgid "Cannot duplicate a configuration."
 msgstr "Kan een configuratie niet dupliceren."
 
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__changeset_change_ids
+msgid "Changeset Changes"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__changeset_ids
+msgid "Changesets"
+msgstr ""
+
 #. module: auto_backup
 #: model:ir.model.fields,help:auto_backup.field_db_backup__backup_format
 #, fuzzy
@@ -120,6 +130,16 @@ msgstr "Connectie test mislukt!"
 msgid "Connection Test Succeeded!"
 msgstr "Connectie test geslaagd!"
 
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__count_pending_changeset_changes
+msgid "Count Pending Changeset Changes"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__count_pending_changesets
+msgid "Count Pending Changesets"
+msgstr ""
+
 #. module: auto_backup
 #: model:ir.model.fields,field_description:auto_backup.field_db_backup__create_uid
 msgid "Created by"
@@ -415,6 +435,11 @@ msgstr ""
 "Gebruik SFTP voorzichtig! Dit schrijft bestanden naar externe servers onder "
 "het pad dat u opgeeft."
 
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__user_can_see_changeset
+msgid "User Can See Changeset"
+msgstr ""
+
 #. module: auto_backup
 #: model:ir.model.fields,field_description:auto_backup.field_db_backup__sftp_user
 msgid "Username in the SFTP Server"
diff --git a/auto_backup/i18n/nl_BE.po b/auto_backup/i18n/nl_BE.po
index 2e93b078eb0..0c46e09a32a 100644
--- a/auto_backup/i18n/nl_BE.po
+++ b/auto_backup/i18n/nl_BE.po
@@ -92,6 +92,16 @@ msgstr "Lokale backup configuratie"
 msgid "Cannot duplicate a configuration."
 msgstr "Lokale backup configuratie"
 
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__changeset_change_ids
+msgid "Changeset Changes"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__changeset_ids
+msgid "Changesets"
+msgstr ""
+
 #. module: auto_backup
 #: model:ir.model.fields,help:auto_backup.field_db_backup__backup_format
 #, fuzzy
@@ -121,6 +131,16 @@ msgstr ""
 msgid "Connection Test Succeeded!"
 msgstr ""
 
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__count_pending_changeset_changes
+msgid "Count Pending Changeset Changes"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__count_pending_changesets
+msgid "Count Pending Changesets"
+msgstr ""
+
 #. module: auto_backup
 #: model:ir.model.fields,field_description:auto_backup.field_db_backup__create_uid
 msgid "Created by"
@@ -423,6 +443,11 @@ msgstr ""
 "Gebruik SFTP voorzichtig! Dit schrijft bestanden naar externe servers onder "
 "het pad dat u opgeeft."
 
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__user_can_see_changeset
+msgid "User Can See Changeset"
+msgstr ""
+
 #. module: auto_backup
 #: model:ir.model.fields,field_description:auto_backup.field_db_backup__sftp_user
 #, fuzzy
diff --git a/auto_backup/i18n/nl_NL.po b/auto_backup/i18n/nl_NL.po
index b2724486d5d..0f59bc6e2fe 100644
--- a/auto_backup/i18n/nl_NL.po
+++ b/auto_backup/i18n/nl_NL.po
@@ -89,6 +89,16 @@ msgstr ""
 msgid "Cannot duplicate a configuration."
 msgstr ""
 
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__changeset_change_ids
+msgid "Changeset Changes"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__changeset_ids
+msgid "Changesets"
+msgstr ""
+
 #. module: auto_backup
 #: model:ir.model.fields,help:auto_backup.field_db_backup__backup_format
 msgid "Choose the format for this backup."
@@ -117,6 +127,16 @@ msgstr ""
 msgid "Connection Test Succeeded!"
 msgstr ""
 
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__count_pending_changeset_changes
+msgid "Count Pending Changeset Changes"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__count_pending_changesets
+msgid "Count Pending Changesets"
+msgstr ""
+
 #. module: auto_backup
 #: model:ir.model.fields,field_description:auto_backup.field_db_backup__create_uid
 msgid "Created by"
@@ -405,6 +425,11 @@ msgid ""
 "you specify."
 msgstr ""
 
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__user_can_see_changeset
+msgid "User Can See Changeset"
+msgstr ""
+
 #. module: auto_backup
 #: model:ir.model.fields,field_description:auto_backup.field_db_backup__sftp_user
 msgid "Username in the SFTP Server"
diff --git a/auto_backup/i18n/pl.po b/auto_backup/i18n/pl.po
index 31b13ba772f..74d3b892972 100644
--- a/auto_backup/i18n/pl.po
+++ b/auto_backup/i18n/pl.po
@@ -90,6 +90,16 @@ msgstr ""
 msgid "Cannot duplicate a configuration."
 msgstr ""
 
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__changeset_change_ids
+msgid "Changeset Changes"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__changeset_ids
+msgid "Changesets"
+msgstr ""
+
 #. module: auto_backup
 #: model:ir.model.fields,help:auto_backup.field_db_backup__backup_format
 msgid "Choose the format for this backup."
@@ -118,6 +128,16 @@ msgstr ""
 msgid "Connection Test Succeeded!"
 msgstr ""
 
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__count_pending_changeset_changes
+msgid "Count Pending Changeset Changes"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__count_pending_changesets
+msgid "Count Pending Changesets"
+msgstr ""
+
 #. module: auto_backup
 #: model:ir.model.fields,field_description:auto_backup.field_db_backup__create_uid
 msgid "Created by"
@@ -406,6 +426,11 @@ msgid ""
 "you specify."
 msgstr ""
 
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__user_can_see_changeset
+msgid "User Can See Changeset"
+msgstr ""
+
 #. module: auto_backup
 #: model:ir.model.fields,field_description:auto_backup.field_db_backup__sftp_user
 msgid "Username in the SFTP Server"
diff --git a/auto_backup/i18n/pt.po b/auto_backup/i18n/pt.po
index 1abe70fbb56..6293d4ec67c 100644
--- a/auto_backup/i18n/pt.po
+++ b/auto_backup/i18n/pt.po
@@ -88,6 +88,16 @@ msgstr ""
 msgid "Cannot duplicate a configuration."
 msgstr ""
 
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__changeset_change_ids
+msgid "Changeset Changes"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__changeset_ids
+msgid "Changesets"
+msgstr ""
+
 #. module: auto_backup
 #: model:ir.model.fields,help:auto_backup.field_db_backup__backup_format
 msgid "Choose the format for this backup."
@@ -116,6 +126,16 @@ msgstr ""
 msgid "Connection Test Succeeded!"
 msgstr ""
 
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__count_pending_changeset_changes
+msgid "Count Pending Changeset Changes"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__count_pending_changesets
+msgid "Count Pending Changesets"
+msgstr ""
+
 #. module: auto_backup
 #: model:ir.model.fields,field_description:auto_backup.field_db_backup__create_uid
 msgid "Created by"
@@ -404,6 +424,11 @@ msgid ""
 "you specify."
 msgstr ""
 
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__user_can_see_changeset
+msgid "User Can See Changeset"
+msgstr ""
+
 #. module: auto_backup
 #: model:ir.model.fields,field_description:auto_backup.field_db_backup__sftp_user
 msgid "Username in the SFTP Server"
diff --git a/auto_backup/i18n/pt_BR.po b/auto_backup/i18n/pt_BR.po
index a1bf7e04782..3392b2f2e6d 100644
--- a/auto_backup/i18n/pt_BR.po
+++ b/auto_backup/i18n/pt_BR.po
@@ -90,6 +90,16 @@ msgstr ""
 msgid "Cannot duplicate a configuration."
 msgstr ""
 
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__changeset_change_ids
+msgid "Changeset Changes"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__changeset_ids
+msgid "Changesets"
+msgstr ""
+
 #. module: auto_backup
 #: model:ir.model.fields,help:auto_backup.field_db_backup__backup_format
 #, fuzzy
@@ -119,6 +129,16 @@ msgstr ""
 msgid "Connection Test Succeeded!"
 msgstr ""
 
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__count_pending_changeset_changes
+msgid "Count Pending Changeset Changes"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__count_pending_changesets
+msgid "Count Pending Changesets"
+msgstr ""
+
 #. module: auto_backup
 #: model:ir.model.fields,field_description:auto_backup.field_db_backup__create_uid
 msgid "Created by"
@@ -408,6 +428,11 @@ msgid ""
 "you specify."
 msgstr ""
 
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__user_can_see_changeset
+msgid "User Can See Changeset"
+msgstr ""
+
 #. module: auto_backup
 #: model:ir.model.fields,field_description:auto_backup.field_db_backup__sftp_user
 msgid "Username in the SFTP Server"
diff --git a/auto_backup/i18n/pt_PT.po b/auto_backup/i18n/pt_PT.po
index de72283eb61..fa3b40c4799 100644
--- a/auto_backup/i18n/pt_PT.po
+++ b/auto_backup/i18n/pt_PT.po
@@ -89,6 +89,16 @@ msgstr ""
 msgid "Cannot duplicate a configuration."
 msgstr ""
 
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__changeset_change_ids
+msgid "Changeset Changes"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__changeset_ids
+msgid "Changesets"
+msgstr ""
+
 #. module: auto_backup
 #: model:ir.model.fields,help:auto_backup.field_db_backup__backup_format
 msgid "Choose the format for this backup."
@@ -117,6 +127,16 @@ msgstr ""
 msgid "Connection Test Succeeded!"
 msgstr ""
 
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__count_pending_changeset_changes
+msgid "Count Pending Changeset Changes"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__count_pending_changesets
+msgid "Count Pending Changesets"
+msgstr ""
+
 #. module: auto_backup
 #: model:ir.model.fields,field_description:auto_backup.field_db_backup__create_uid
 msgid "Created by"
@@ -405,6 +425,11 @@ msgid ""
 "you specify."
 msgstr ""
 
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__user_can_see_changeset
+msgid "User Can See Changeset"
+msgstr ""
+
 #. module: auto_backup
 #: model:ir.model.fields,field_description:auto_backup.field_db_backup__sftp_user
 msgid "Username in the SFTP Server"
diff --git a/auto_backup/i18n/ro.po b/auto_backup/i18n/ro.po
index e97d9a566b1..eae43c34511 100644
--- a/auto_backup/i18n/ro.po
+++ b/auto_backup/i18n/ro.po
@@ -89,6 +89,16 @@ msgstr ""
 msgid "Cannot duplicate a configuration."
 msgstr ""
 
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__changeset_change_ids
+msgid "Changeset Changes"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__changeset_ids
+msgid "Changesets"
+msgstr ""
+
 #. module: auto_backup
 #: model:ir.model.fields,help:auto_backup.field_db_backup__backup_format
 msgid "Choose the format for this backup."
@@ -117,6 +127,16 @@ msgstr ""
 msgid "Connection Test Succeeded!"
 msgstr ""
 
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__count_pending_changeset_changes
+msgid "Count Pending Changeset Changes"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__count_pending_changesets
+msgid "Count Pending Changesets"
+msgstr ""
+
 #. module: auto_backup
 #: model:ir.model.fields,field_description:auto_backup.field_db_backup__create_uid
 msgid "Created by"
@@ -405,6 +425,11 @@ msgid ""
 "you specify."
 msgstr ""
 
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__user_can_see_changeset
+msgid "User Can See Changeset"
+msgstr ""
+
 #. module: auto_backup
 #: model:ir.model.fields,field_description:auto_backup.field_db_backup__sftp_user
 msgid "Username in the SFTP Server"
diff --git a/auto_backup/i18n/ru.po b/auto_backup/i18n/ru.po
index 4c7c8702a4a..af56d2fa70f 100644
--- a/auto_backup/i18n/ru.po
+++ b/auto_backup/i18n/ru.po
@@ -90,6 +90,16 @@ msgstr ""
 msgid "Cannot duplicate a configuration."
 msgstr ""
 
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__changeset_change_ids
+msgid "Changeset Changes"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__changeset_ids
+msgid "Changesets"
+msgstr ""
+
 #. module: auto_backup
 #: model:ir.model.fields,help:auto_backup.field_db_backup__backup_format
 msgid "Choose the format for this backup."
@@ -118,6 +128,16 @@ msgstr ""
 msgid "Connection Test Succeeded!"
 msgstr ""
 
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__count_pending_changeset_changes
+msgid "Count Pending Changeset Changes"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__count_pending_changesets
+msgid "Count Pending Changesets"
+msgstr ""
+
 #. module: auto_backup
 #: model:ir.model.fields,field_description:auto_backup.field_db_backup__create_uid
 msgid "Created by"
@@ -406,6 +426,11 @@ msgid ""
 "you specify."
 msgstr ""
 
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__user_can_see_changeset
+msgid "User Can See Changeset"
+msgstr ""
+
 #. module: auto_backup
 #: model:ir.model.fields,field_description:auto_backup.field_db_backup__sftp_user
 msgid "Username in the SFTP Server"
diff --git a/auto_backup/i18n/sk.po b/auto_backup/i18n/sk.po
index 9cc91c5dfec..2d706396fb5 100644
--- a/auto_backup/i18n/sk.po
+++ b/auto_backup/i18n/sk.po
@@ -88,6 +88,16 @@ msgstr ""
 msgid "Cannot duplicate a configuration."
 msgstr ""
 
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__changeset_change_ids
+msgid "Changeset Changes"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__changeset_ids
+msgid "Changesets"
+msgstr ""
+
 #. module: auto_backup
 #: model:ir.model.fields,help:auto_backup.field_db_backup__backup_format
 msgid "Choose the format for this backup."
@@ -116,6 +126,16 @@ msgstr ""
 msgid "Connection Test Succeeded!"
 msgstr ""
 
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__count_pending_changeset_changes
+msgid "Count Pending Changeset Changes"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__count_pending_changesets
+msgid "Count Pending Changesets"
+msgstr ""
+
 #. module: auto_backup
 #: model:ir.model.fields,field_description:auto_backup.field_db_backup__create_uid
 msgid "Created by"
@@ -404,6 +424,11 @@ msgid ""
 "you specify."
 msgstr ""
 
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__user_can_see_changeset
+msgid "User Can See Changeset"
+msgstr ""
+
 #. module: auto_backup
 #: model:ir.model.fields,field_description:auto_backup.field_db_backup__sftp_user
 msgid "Username in the SFTP Server"
diff --git a/auto_backup/i18n/sl.po b/auto_backup/i18n/sl.po
index 661c23a1e93..1250b9615c8 100644
--- a/auto_backup/i18n/sl.po
+++ b/auto_backup/i18n/sl.po
@@ -91,6 +91,16 @@ msgstr "Osnove nastavitve varnostnega kopiranja"
 msgid "Cannot duplicate a configuration."
 msgstr "Nastavitev ne morete podvojiti."
 
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__changeset_change_ids
+msgid "Changeset Changes"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__changeset_ids
+msgid "Changesets"
+msgstr ""
+
 #. module: auto_backup
 #: model:ir.model.fields,help:auto_backup.field_db_backup__backup_format
 #, fuzzy
@@ -120,6 +130,16 @@ msgstr "Test povezave neuspešen!"
 msgid "Connection Test Succeeded!"
 msgstr "Test povezave uspel!"
 
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__count_pending_changeset_changes
+msgid "Count Pending Changeset Changes"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__count_pending_changesets
+msgid "Count Pending Changesets"
+msgstr ""
+
 #. module: auto_backup
 #: model:ir.model.fields,field_description:auto_backup.field_db_backup__create_uid
 msgid "Created by"
@@ -418,6 +438,11 @@ msgstr ""
 "SFTP uporabljajte previdno! Datoteke se bodo zapisovale na zunanje strežnike "
 "v pot, ki jo sami določite."
 
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__user_can_see_changeset
+msgid "User Can See Changeset"
+msgstr ""
+
 #. module: auto_backup
 #: model:ir.model.fields,field_description:auto_backup.field_db_backup__sftp_user
 msgid "Username in the SFTP Server"
diff --git a/auto_backup/i18n/sr.po b/auto_backup/i18n/sr.po
index 3e9f7625cf4..50b39a5d51b 100644
--- a/auto_backup/i18n/sr.po
+++ b/auto_backup/i18n/sr.po
@@ -89,6 +89,16 @@ msgstr ""
 msgid "Cannot duplicate a configuration."
 msgstr ""
 
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__changeset_change_ids
+msgid "Changeset Changes"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__changeset_ids
+msgid "Changesets"
+msgstr ""
+
 #. module: auto_backup
 #: model:ir.model.fields,help:auto_backup.field_db_backup__backup_format
 msgid "Choose the format for this backup."
@@ -117,6 +127,16 @@ msgstr ""
 msgid "Connection Test Succeeded!"
 msgstr ""
 
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__count_pending_changeset_changes
+msgid "Count Pending Changeset Changes"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__count_pending_changesets
+msgid "Count Pending Changesets"
+msgstr ""
+
 #. module: auto_backup
 #: model:ir.model.fields,field_description:auto_backup.field_db_backup__create_uid
 msgid "Created by"
@@ -405,6 +425,11 @@ msgid ""
 "you specify."
 msgstr ""
 
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__user_can_see_changeset
+msgid "User Can See Changeset"
+msgstr ""
+
 #. module: auto_backup
 #: model:ir.model.fields,field_description:auto_backup.field_db_backup__sftp_user
 msgid "Username in the SFTP Server"
diff --git a/auto_backup/i18n/sr@latin.po b/auto_backup/i18n/sr@latin.po
index 947708f14ac..c9fbd8af9ac 100644
--- a/auto_backup/i18n/sr@latin.po
+++ b/auto_backup/i18n/sr@latin.po
@@ -90,6 +90,16 @@ msgstr ""
 msgid "Cannot duplicate a configuration."
 msgstr ""
 
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__changeset_change_ids
+msgid "Changeset Changes"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__changeset_ids
+msgid "Changesets"
+msgstr ""
+
 #. module: auto_backup
 #: model:ir.model.fields,help:auto_backup.field_db_backup__backup_format
 msgid "Choose the format for this backup."
@@ -118,6 +128,16 @@ msgstr ""
 msgid "Connection Test Succeeded!"
 msgstr ""
 
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__count_pending_changeset_changes
+msgid "Count Pending Changeset Changes"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__count_pending_changesets
+msgid "Count Pending Changesets"
+msgstr ""
+
 #. module: auto_backup
 #: model:ir.model.fields,field_description:auto_backup.field_db_backup__create_uid
 msgid "Created by"
@@ -406,6 +426,11 @@ msgid ""
 "you specify."
 msgstr ""
 
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__user_can_see_changeset
+msgid "User Can See Changeset"
+msgstr ""
+
 #. module: auto_backup
 #: model:ir.model.fields,field_description:auto_backup.field_db_backup__sftp_user
 msgid "Username in the SFTP Server"
diff --git a/auto_backup/i18n/sv.po b/auto_backup/i18n/sv.po
index d4ceab51803..a7c3a1ce6c2 100644
--- a/auto_backup/i18n/sv.po
+++ b/auto_backup/i18n/sv.po
@@ -88,6 +88,16 @@ msgstr ""
 msgid "Cannot duplicate a configuration."
 msgstr ""
 
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__changeset_change_ids
+msgid "Changeset Changes"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__changeset_ids
+msgid "Changesets"
+msgstr ""
+
 #. module: auto_backup
 #: model:ir.model.fields,help:auto_backup.field_db_backup__backup_format
 msgid "Choose the format for this backup."
@@ -116,6 +126,16 @@ msgstr ""
 msgid "Connection Test Succeeded!"
 msgstr ""
 
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__count_pending_changeset_changes
+msgid "Count Pending Changeset Changes"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__count_pending_changesets
+msgid "Count Pending Changesets"
+msgstr ""
+
 #. module: auto_backup
 #: model:ir.model.fields,field_description:auto_backup.field_db_backup__create_uid
 msgid "Created by"
@@ -404,6 +424,11 @@ msgid ""
 "you specify."
 msgstr ""
 
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__user_can_see_changeset
+msgid "User Can See Changeset"
+msgstr ""
+
 #. module: auto_backup
 #: model:ir.model.fields,field_description:auto_backup.field_db_backup__sftp_user
 msgid "Username in the SFTP Server"
diff --git a/auto_backup/i18n/th.po b/auto_backup/i18n/th.po
index f5c8ecc5f5f..7a321bf3300 100644
--- a/auto_backup/i18n/th.po
+++ b/auto_backup/i18n/th.po
@@ -88,6 +88,16 @@ msgstr ""
 msgid "Cannot duplicate a configuration."
 msgstr ""
 
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__changeset_change_ids
+msgid "Changeset Changes"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__changeset_ids
+msgid "Changesets"
+msgstr ""
+
 #. module: auto_backup
 #: model:ir.model.fields,help:auto_backup.field_db_backup__backup_format
 msgid "Choose the format for this backup."
@@ -116,6 +126,16 @@ msgstr ""
 msgid "Connection Test Succeeded!"
 msgstr ""
 
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__count_pending_changeset_changes
+msgid "Count Pending Changeset Changes"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__count_pending_changesets
+msgid "Count Pending Changesets"
+msgstr ""
+
 #. module: auto_backup
 #: model:ir.model.fields,field_description:auto_backup.field_db_backup__create_uid
 msgid "Created by"
@@ -404,6 +424,11 @@ msgid ""
 "you specify."
 msgstr ""
 
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__user_can_see_changeset
+msgid "User Can See Changeset"
+msgstr ""
+
 #. module: auto_backup
 #: model:ir.model.fields,field_description:auto_backup.field_db_backup__sftp_user
 msgid "Username in the SFTP Server"
diff --git a/auto_backup/i18n/tr.po b/auto_backup/i18n/tr.po
index 3b80dec9c40..da424319f10 100644
--- a/auto_backup/i18n/tr.po
+++ b/auto_backup/i18n/tr.po
@@ -88,6 +88,16 @@ msgstr ""
 msgid "Cannot duplicate a configuration."
 msgstr ""
 
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__changeset_change_ids
+msgid "Changeset Changes"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__changeset_ids
+msgid "Changesets"
+msgstr ""
+
 #. module: auto_backup
 #: model:ir.model.fields,help:auto_backup.field_db_backup__backup_format
 msgid "Choose the format for this backup."
@@ -116,6 +126,16 @@ msgstr ""
 msgid "Connection Test Succeeded!"
 msgstr ""
 
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__count_pending_changeset_changes
+msgid "Count Pending Changeset Changes"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__count_pending_changesets
+msgid "Count Pending Changesets"
+msgstr ""
+
 #. module: auto_backup
 #: model:ir.model.fields,field_description:auto_backup.field_db_backup__create_uid
 msgid "Created by"
@@ -404,6 +424,11 @@ msgid ""
 "you specify."
 msgstr ""
 
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__user_can_see_changeset
+msgid "User Can See Changeset"
+msgstr ""
+
 #. module: auto_backup
 #: model:ir.model.fields,field_description:auto_backup.field_db_backup__sftp_user
 msgid "Username in the SFTP Server"
diff --git a/auto_backup/i18n/tr_TR.po b/auto_backup/i18n/tr_TR.po
index c2bef3d36a7..ec992a9edad 100644
--- a/auto_backup/i18n/tr_TR.po
+++ b/auto_backup/i18n/tr_TR.po
@@ -89,6 +89,16 @@ msgstr ""
 msgid "Cannot duplicate a configuration."
 msgstr ""
 
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__changeset_change_ids
+msgid "Changeset Changes"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__changeset_ids
+msgid "Changesets"
+msgstr ""
+
 #. module: auto_backup
 #: model:ir.model.fields,help:auto_backup.field_db_backup__backup_format
 msgid "Choose the format for this backup."
@@ -117,6 +127,16 @@ msgstr ""
 msgid "Connection Test Succeeded!"
 msgstr ""
 
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__count_pending_changeset_changes
+msgid "Count Pending Changeset Changes"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__count_pending_changesets
+msgid "Count Pending Changesets"
+msgstr ""
+
 #. module: auto_backup
 #: model:ir.model.fields,field_description:auto_backup.field_db_backup__create_uid
 msgid "Created by"
@@ -405,6 +425,11 @@ msgid ""
 "you specify."
 msgstr ""
 
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__user_can_see_changeset
+msgid "User Can See Changeset"
+msgstr ""
+
 #. module: auto_backup
 #: model:ir.model.fields,field_description:auto_backup.field_db_backup__sftp_user
 msgid "Username in the SFTP Server"
diff --git a/auto_backup/i18n/uk.po b/auto_backup/i18n/uk.po
index 78325f2ac7f..4bdfd6ae6a0 100644
--- a/auto_backup/i18n/uk.po
+++ b/auto_backup/i18n/uk.po
@@ -89,6 +89,16 @@ msgstr ""
 msgid "Cannot duplicate a configuration."
 msgstr ""
 
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__changeset_change_ids
+msgid "Changeset Changes"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__changeset_ids
+msgid "Changesets"
+msgstr ""
+
 #. module: auto_backup
 #: model:ir.model.fields,help:auto_backup.field_db_backup__backup_format
 msgid "Choose the format for this backup."
@@ -117,6 +127,16 @@ msgstr ""
 msgid "Connection Test Succeeded!"
 msgstr ""
 
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__count_pending_changeset_changes
+msgid "Count Pending Changeset Changes"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__count_pending_changesets
+msgid "Count Pending Changesets"
+msgstr ""
+
 #. module: auto_backup
 #: model:ir.model.fields,field_description:auto_backup.field_db_backup__create_uid
 msgid "Created by"
@@ -405,6 +425,11 @@ msgid ""
 "you specify."
 msgstr ""
 
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__user_can_see_changeset
+msgid "User Can See Changeset"
+msgstr ""
+
 #. module: auto_backup
 #: model:ir.model.fields,field_description:auto_backup.field_db_backup__sftp_user
 msgid "Username in the SFTP Server"
diff --git a/auto_backup/i18n/vi.po b/auto_backup/i18n/vi.po
index 94f694fec6d..cc3d38ce67e 100644
--- a/auto_backup/i18n/vi.po
+++ b/auto_backup/i18n/vi.po
@@ -88,6 +88,16 @@ msgstr ""
 msgid "Cannot duplicate a configuration."
 msgstr ""
 
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__changeset_change_ids
+msgid "Changeset Changes"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__changeset_ids
+msgid "Changesets"
+msgstr ""
+
 #. module: auto_backup
 #: model:ir.model.fields,help:auto_backup.field_db_backup__backup_format
 msgid "Choose the format for this backup."
@@ -116,6 +126,16 @@ msgstr ""
 msgid "Connection Test Succeeded!"
 msgstr ""
 
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__count_pending_changeset_changes
+msgid "Count Pending Changeset Changes"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__count_pending_changesets
+msgid "Count Pending Changesets"
+msgstr ""
+
 #. module: auto_backup
 #: model:ir.model.fields,field_description:auto_backup.field_db_backup__create_uid
 msgid "Created by"
@@ -404,6 +424,11 @@ msgid ""
 "you specify."
 msgstr ""
 
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__user_can_see_changeset
+msgid "User Can See Changeset"
+msgstr ""
+
 #. module: auto_backup
 #: model:ir.model.fields,field_description:auto_backup.field_db_backup__sftp_user
 msgid "Username in the SFTP Server"
diff --git a/auto_backup/i18n/vi_VN.po b/auto_backup/i18n/vi_VN.po
index 55b49f893fa..e62cd5d34a5 100644
--- a/auto_backup/i18n/vi_VN.po
+++ b/auto_backup/i18n/vi_VN.po
@@ -89,6 +89,16 @@ msgstr ""
 msgid "Cannot duplicate a configuration."
 msgstr ""
 
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__changeset_change_ids
+msgid "Changeset Changes"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__changeset_ids
+msgid "Changesets"
+msgstr ""
+
 #. module: auto_backup
 #: model:ir.model.fields,help:auto_backup.field_db_backup__backup_format
 msgid "Choose the format for this backup."
@@ -117,6 +127,16 @@ msgstr ""
 msgid "Connection Test Succeeded!"
 msgstr ""
 
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__count_pending_changeset_changes
+msgid "Count Pending Changeset Changes"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__count_pending_changesets
+msgid "Count Pending Changesets"
+msgstr ""
+
 #. module: auto_backup
 #: model:ir.model.fields,field_description:auto_backup.field_db_backup__create_uid
 msgid "Created by"
@@ -405,6 +425,11 @@ msgid ""
 "you specify."
 msgstr ""
 
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__user_can_see_changeset
+msgid "User Can See Changeset"
+msgstr ""
+
 #. module: auto_backup
 #: model:ir.model.fields,field_description:auto_backup.field_db_backup__sftp_user
 msgid "Username in the SFTP Server"
diff --git a/auto_backup/i18n/zh_CN.po b/auto_backup/i18n/zh_CN.po
index 8979b7d9901..cdb7b1c6987 100644
--- a/auto_backup/i18n/zh_CN.po
+++ b/auto_backup/i18n/zh_CN.po
@@ -90,6 +90,16 @@ msgstr "备份基础设置"
 msgid "Cannot duplicate a configuration."
 msgstr "无法复制配置。"
 
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__changeset_change_ids
+msgid "Changeset Changes"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__changeset_ids
+msgid "Changesets"
+msgstr ""
+
 #. module: auto_backup
 #: model:ir.model.fields,help:auto_backup.field_db_backup__backup_format
 msgid "Choose the format for this backup."
@@ -118,6 +128,16 @@ msgstr "连接测试失败!"
 msgid "Connection Test Succeeded!"
 msgstr "连接测试成功!"
 
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__count_pending_changeset_changes
+msgid "Count Pending Changeset Changes"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__count_pending_changesets
+msgid "Count Pending Changesets"
+msgstr ""
+
 #. module: auto_backup
 #: model:ir.model.fields,field_description:auto_backup.field_db_backup__create_uid
 msgid "Created by"
@@ -410,6 +430,11 @@ msgstr ""
 "请注意你的 SFTP服务器网络安全!数据库备份文件将备份到你的SFTP服务器,文件保存"
 "在设置的目录下面。"
 
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__user_can_see_changeset
+msgid "User Can See Changeset"
+msgstr ""
+
 #. module: auto_backup
 #: model:ir.model.fields,field_description:auto_backup.field_db_backup__sftp_user
 msgid "Username in the SFTP Server"
diff --git a/auto_backup/i18n/zh_TW.po b/auto_backup/i18n/zh_TW.po
index 21dad26ff6e..450ccfe3c6b 100644
--- a/auto_backup/i18n/zh_TW.po
+++ b/auto_backup/i18n/zh_TW.po
@@ -89,6 +89,16 @@ msgstr ""
 msgid "Cannot duplicate a configuration."
 msgstr ""
 
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__changeset_change_ids
+msgid "Changeset Changes"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__changeset_ids
+msgid "Changesets"
+msgstr ""
+
 #. module: auto_backup
 #: model:ir.model.fields,help:auto_backup.field_db_backup__backup_format
 msgid "Choose the format for this backup."
@@ -117,6 +127,16 @@ msgstr ""
 msgid "Connection Test Succeeded!"
 msgstr ""
 
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__count_pending_changeset_changes
+msgid "Count Pending Changeset Changes"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__count_pending_changesets
+msgid "Count Pending Changesets"
+msgstr ""
+
 #. module: auto_backup
 #: model:ir.model.fields,field_description:auto_backup.field_db_backup__create_uid
 msgid "Created by"
@@ -405,6 +425,11 @@ msgid ""
 "you specify."
 msgstr ""
 
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__user_can_see_changeset
+msgid "User Can See Changeset"
+msgstr ""
+
 #. module: auto_backup
 #: model:ir.model.fields,field_description:auto_backup.field_db_backup__sftp_user
 msgid "Username in the SFTP Server"
diff --git a/auto_backup/static/description/index.html b/auto_backup/static/description/index.html
index dc0a5f5dd4e..11f0dc9fa59 100644
--- a/auto_backup/static/description/index.html
+++ b/auto_backup/static/description/index.html
@@ -1,20 +1,20 @@
-<?xml version="1.0" encoding="utf-8" ?>
+<?xml version="1.0" encoding="utf-8"?>
 <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
 <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
 <head>
 <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
-<meta name="generator" content="Docutils 0.15.1: http://docutils.sourceforge.net/" />
+<meta name="generator" content="Docutils: https://docutils.sourceforge.io/" />
 <title>Database Auto-Backup</title>
 <style type="text/css">
 
 /*
 :Author: David Goodger (goodger@python.org)
-:Id: $Id: html4css1.css 7952 2016-07-26 18:15:59Z milde $
+:Id: $Id: html4css1.css 8954 2022-01-20 10:10:25Z milde $
 :Copyright: This stylesheet has been placed in the public domain.
 
 Default cascading style sheet for the HTML output of Docutils.
 
-See http://docutils.sf.net/docs/howto/html-stylesheets.html for how to
+See https://docutils.sourceforge.io/docs/howto/html-stylesheets.html for how to
 customize this style sheet.
 */
 
@@ -366,63 +366,65 @@ <h1 class="title">Database Auto-Backup</h1>
 <!-- !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
 !! This file is generated by oca-gen-addon-readme !!
 !! changes will be overwritten.                   !!
+!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
+!! source digest: sha256:0b54d31a1ddc45d57a4f9161672fabbd622f89cec222d30a11909f1e75b3806f
 !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! -->
-<p><a class="reference external" href="https://odoo-community.org/page/development-status"><img alt="Beta" src="https://img.shields.io/badge/maturity-Beta-yellow.png" /></a> <a class="reference external" href="http://www.gnu.org/licenses/agpl-3.0-standalone.html"><img alt="License: AGPL-3" src="https://img.shields.io/badge/licence-AGPL--3-blue.png" /></a> <a class="reference external" href="https://github.com/OCA/server-tools/tree/15.0/auto_backup"><img alt="OCA/server-tools" src="https://img.shields.io/badge/github-OCA%2Fserver--tools-lightgray.png?logo=github" /></a> <a class="reference external" href="https://translation.odoo-community.org/projects/server-tools-15-0/server-tools-15-0-auto_backup"><img alt="Translate me on Weblate" src="https://img.shields.io/badge/weblate-Translate%20me-F47D42.png" /></a> <a class="reference external" href="https://runbot.odoo-community.org/runbot/149/15.0"><img alt="Try me on Runbot" src="https://img.shields.io/badge/runbot-Try%20me-875A7B.png" /></a></p>
+<p><a class="reference external image-reference" href="https://odoo-community.org/page/development-status"><img alt="Beta" src="https://img.shields.io/badge/maturity-Beta-yellow.png" /></a> <a class="reference external image-reference" href="http://www.gnu.org/licenses/agpl-3.0-standalone.html"><img alt="License: AGPL-3" src="https://img.shields.io/badge/licence-AGPL--3-blue.png" /></a> <a class="reference external image-reference" href="https://github.com/OCA/server-tools/tree/15.0/auto_backup"><img alt="OCA/server-tools" src="https://img.shields.io/badge/github-OCA%2Fserver--tools-lightgray.png?logo=github" /></a> <a class="reference external image-reference" href="https://translation.odoo-community.org/projects/server-tools-15-0/server-tools-15-0-auto_backup"><img alt="Translate me on Weblate" src="https://img.shields.io/badge/weblate-Translate%20me-F47D42.png" /></a> <a class="reference external image-reference" href="https://runboat.odoo-community.org/builds?repo=OCA/server-tools&amp;target_branch=15.0"><img alt="Try me on Runboat" src="https://img.shields.io/badge/runboat-Try%20me-875A7B.png" /></a></p>
 <p>A tool for all your back-ups, internal and external!</p>
 <p><strong>Table of contents</strong></p>
 <div class="contents local topic" id="contents">
 <ul class="simple">
-<li><a class="reference internal" href="#installation" id="id1">Installation</a></li>
-<li><a class="reference internal" href="#configuration" id="id2">Configuration</a></li>
-<li><a class="reference internal" href="#usage" id="id3">Usage</a><ul>
-<li><a class="reference internal" href="#connect-with-an-ftp-server" id="id4">Connect with an FTP Server</a><ul>
-<li><a class="reference internal" href="#keep-your-data-safe-through-an-ssh-tunnel" id="id5">Keep your data safe, through an SSH tunnel!</a></li>
+<li><a class="reference internal" href="#installation" id="toc-entry-1">Installation</a></li>
+<li><a class="reference internal" href="#configuration" id="toc-entry-2">Configuration</a></li>
+<li><a class="reference internal" href="#usage" id="toc-entry-3">Usage</a><ul>
+<li><a class="reference internal" href="#connect-with-an-ftp-server" id="toc-entry-4">Connect with an FTP Server</a><ul>
+<li><a class="reference internal" href="#keep-your-data-safe-through-an-ssh-tunnel" id="toc-entry-5">Keep your data safe, through an SSH tunnel!</a></li>
 </ul>
 </li>
-<li><a class="reference internal" href="#test-connection" id="id6">Test connection</a><ul>
-<li><a class="reference internal" href="#checks-your-credentials-in-one-click" id="id7">Checks your credentials in one click</a></li>
+<li><a class="reference internal" href="#test-connection" id="toc-entry-6">Test connection</a><ul>
+<li><a class="reference internal" href="#checks-your-credentials-in-one-click" id="toc-entry-7">Checks your credentials in one click</a></li>
 </ul>
 </li>
-<li><a class="reference internal" href="#e-mail-on-backup-failure" id="id8">E-mail on backup failure</a><ul>
-<li><a class="reference internal" href="#stay-informed-of-problems-automatically" id="id9">Stay informed of problems, automatically!</a></li>
+<li><a class="reference internal" href="#e-mail-on-backup-failure" id="toc-entry-8">E-mail on backup failure</a><ul>
+<li><a class="reference internal" href="#stay-informed-of-problems-automatically" id="toc-entry-9">Stay informed of problems, automatically!</a></li>
 </ul>
 </li>
-<li><a class="reference internal" href="#run-backups-when-you-want" id="id10">Run backups when you want</a></li>
+<li><a class="reference internal" href="#run-backups-when-you-want" id="toc-entry-10">Run backups when you want</a></li>
 </ul>
 </li>
-<li><a class="reference internal" href="#known-issues-roadmap" id="id11">Known issues / Roadmap</a></li>
-<li><a class="reference internal" href="#bug-tracker" id="id12">Bug Tracker</a></li>
-<li><a class="reference internal" href="#credits" id="id13">Credits</a><ul>
-<li><a class="reference internal" href="#authors" id="id14">Authors</a></li>
-<li><a class="reference internal" href="#contributors" id="id15">Contributors</a></li>
-<li><a class="reference internal" href="#maintainers" id="id16">Maintainers</a></li>
+<li><a class="reference internal" href="#known-issues-roadmap" id="toc-entry-11">Known issues / Roadmap</a></li>
+<li><a class="reference internal" href="#bug-tracker" id="toc-entry-12">Bug Tracker</a></li>
+<li><a class="reference internal" href="#credits" id="toc-entry-13">Credits</a><ul>
+<li><a class="reference internal" href="#authors" id="toc-entry-14">Authors</a></li>
+<li><a class="reference internal" href="#contributors" id="toc-entry-15">Contributors</a></li>
+<li><a class="reference internal" href="#maintainers" id="toc-entry-16">Maintainers</a></li>
 </ul>
 </li>
 </ul>
 </div>
 <div class="section" id="installation">
-<h1><a class="toc-backref" href="#id1">Installation</a></h1>
+<h1><a class="toc-backref" href="#toc-entry-1">Installation</a></h1>
 <p>Before installing this module, you need to execute:</p>
 <pre class="literal-block">
 pip3 install pysftp==0.2.9
 </pre>
 </div>
 <div class="section" id="configuration">
-<h1><a class="toc-backref" href="#id2">Configuration</a></h1>
+<h1><a class="toc-backref" href="#toc-entry-2">Configuration</a></h1>
 <p>Go to <em>Settings -&gt; Database Structure -&gt; Automated Backup</em> to
 create your configurations for each database that you needed
 to backups.</p>
 </div>
 <div class="section" id="usage">
-<h1><a class="toc-backref" href="#id3">Usage</a></h1>
+<h1><a class="toc-backref" href="#toc-entry-3">Usage</a></h1>
 <p>Keep your Odoo data safe with this module. Take automated back-ups,
 remove them automatically and even write them to an external server
 through an encrypted tunnel. You can even specify how long local backups
 and external backups should be kept, automatically!</p>
 <div class="section" id="connect-with-an-ftp-server">
-<h2><a class="toc-backref" href="#id4">Connect with an FTP Server</a></h2>
+<h2><a class="toc-backref" href="#toc-entry-4">Connect with an FTP Server</a></h2>
 <div class="section" id="keep-your-data-safe-through-an-ssh-tunnel">
-<h3><a class="toc-backref" href="#id5">Keep your data safe, through an SSH tunnel!</a></h3>
+<h3><a class="toc-backref" href="#toc-entry-5">Keep your data safe, through an SSH tunnel!</a></h3>
 <p>Want to go even further and write your backups to an external server?
 You can with this module! Specify the credentials to the server, specify
 a path and everything will be backed up automatically. This is done
@@ -431,9 +433,9 @@ <h3><a class="toc-backref" href="#id5">Keep your data safe, through an SSH tunne
 </div>
 </div>
 <div class="section" id="test-connection">
-<h2><a class="toc-backref" href="#id6">Test connection</a></h2>
+<h2><a class="toc-backref" href="#toc-entry-6">Test connection</a></h2>
 <div class="section" id="checks-your-credentials-in-one-click">
-<h3><a class="toc-backref" href="#id7">Checks your credentials in one click</a></h3>
+<h3><a class="toc-backref" href="#toc-entry-7">Checks your credentials in one click</a></h3>
 <p>Want to make sure if the connection details are correct and if Odoo can
 automatically write them to the remote server? Simply click on the ‘Test
 SFTP Connection’ button and you will get message telling you if
@@ -441,22 +443,22 @@ <h3><a class="toc-backref" href="#id7">Checks your credentials in one click</a><
 </div>
 </div>
 <div class="section" id="e-mail-on-backup-failure">
-<h2><a class="toc-backref" href="#id8">E-mail on backup failure</a></h2>
+<h2><a class="toc-backref" href="#toc-entry-8">E-mail on backup failure</a></h2>
 <div class="section" id="stay-informed-of-problems-automatically">
-<h3><a class="toc-backref" href="#id9">Stay informed of problems, automatically!</a></h3>
+<h3><a class="toc-backref" href="#toc-entry-9">Stay informed of problems, automatically!</a></h3>
 <p>Do you want to know if the database backup succeeded or failed? Subscribe to
 the corresponding backup setting notification type.</p>
 </div>
 </div>
 <div class="section" id="run-backups-when-you-want">
-<h2><a class="toc-backref" href="#id10">Run backups when you want</a></h2>
+<h2><a class="toc-backref" href="#toc-entry-10">Run backups when you want</a></h2>
 <p>From the backups configuration list, press <em>More &gt; Execute backup(s)</em> to
 manually execute the selected processes.</p>
 <a class="reference external image-reference" href="https://runbot.odoo-community.org/runbot/149/11.0"><img alt="Try me on Runbot" src="https://odoo-community.org/website/image/ir.attachment/5784_f2813bd/datas" /></a>
 </div>
 </div>
 <div class="section" id="known-issues-roadmap">
-<h1><a class="toc-backref" href="#id11">Known issues / Roadmap</a></h1>
+<h1><a class="toc-backref" href="#toc-entry-11">Known issues / Roadmap</a></h1>
 <ul class="simple">
 <li>On larger databases, it is possible that backups will die due to Odoo server
 settings. In order to circumvent this without frivolously changing settings,
@@ -466,17 +468,17 @@ <h1><a class="toc-backref" href="#id11">Known issues / Roadmap</a></h1>
 </ul>
 </div>
 <div class="section" id="bug-tracker">
-<h1><a class="toc-backref" href="#id12">Bug Tracker</a></h1>
+<h1><a class="toc-backref" href="#toc-entry-12">Bug Tracker</a></h1>
 <p>Bugs are tracked on <a class="reference external" href="https://github.com/OCA/server-tools/issues">GitHub Issues</a>.
 In case of trouble, please check there if your issue has already been reported.
-If you spotted it first, help us smashing it by providing a detailed and welcomed
+If you spotted it first, help us to smash it by providing a detailed and welcomed
 <a class="reference external" href="https://github.com/OCA/server-tools/issues/new?body=module:%20auto_backup%0Aversion:%2015.0%0A%0A**Steps%20to%20reproduce**%0A-%20...%0A%0A**Current%20behavior**%0A%0A**Expected%20behavior**">feedback</a>.</p>
 <p>Do not contact contributors directly about support or help with technical issues.</p>
 </div>
 <div class="section" id="credits">
-<h1><a class="toc-backref" href="#id13">Credits</a></h1>
+<h1><a class="toc-backref" href="#toc-entry-13">Credits</a></h1>
 <div class="section" id="authors">
-<h2><a class="toc-backref" href="#id14">Authors</a></h2>
+<h2><a class="toc-backref" href="#toc-entry-14">Authors</a></h2>
 <ul class="simple">
 <li>Yenthe Van Ginneken</li>
 <li>Agile Business Group</li>
@@ -486,7 +488,7 @@ <h2><a class="toc-backref" href="#id14">Authors</a></h2>
 </ul>
 </div>
 <div class="section" id="contributors">
-<h2><a class="toc-backref" href="#id15">Contributors</a></h2>
+<h2><a class="toc-backref" href="#toc-entry-15">Contributors</a></h2>
 <ul class="simple">
 <li>Yenthe Van Ginneken &lt;<a class="reference external" href="mailto:yenthe.vanginneken&#64;vanroey.be">yenthe.vanginneken&#64;vanroey.be</a>&gt;</li>
 <li>Alessio Gerace &lt;<a class="reference external" href="mailto:alessio.gerace&#64;agilebg.com">alessio.gerace&#64;agilebg.com</a>&gt;</li>
@@ -499,7 +501,7 @@ <h2><a class="toc-backref" href="#id15">Contributors</a></h2>
 </ul>
 </div>
 <div class="section" id="maintainers">
-<h2><a class="toc-backref" href="#id16">Maintainers</a></h2>
+<h2><a class="toc-backref" href="#toc-entry-16">Maintainers</a></h2>
 <p>This module is maintained by the OCA.</p>
 <a class="reference external image-reference" href="https://odoo-community.org"><img alt="Odoo Community Association" src="https://odoo-community.org/logo.png" /></a>
 <p>OCA, or the Odoo Community Association, is a nonprofit organization whose

From a1661c4b29abb8986be9dad57d391fcd3a8a9e43 Mon Sep 17 00:00:00 2001
From: tafaRU <alex.comba@agilebg.com>
Date: Mon, 11 Sep 2023 14:18:46 +0200
Subject: [PATCH 42/52] [IMP] auto_backup: pre-commit stuff

---
 auto_backup/README.rst                    | 13 +++++++------
 auto_backup/static/description/index.html |  9 +++++----
 2 files changed, 12 insertions(+), 10 deletions(-)

diff --git a/auto_backup/README.rst b/auto_backup/README.rst
index b895cb4bae4..686e843f0e2 100644
--- a/auto_backup/README.rst
+++ b/auto_backup/README.rst
@@ -7,7 +7,7 @@ Database Auto-Backup
    !! This file is generated by oca-gen-addon-readme !!
    !! changes will be overwritten.                   !!
    !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
-   !! source digest: sha256:0b54d31a1ddc45d57a4f9161672fabbd622f89cec222d30a11909f1e75b3806f
+   !! source digest: sha256:163fe86803c25bd1647c8a149b89b15db756b9f3551c73e29bc93c5d1d31a2ee
    !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
 
 .. |badge1| image:: https://img.shields.io/badge/maturity-Beta-yellow.png
@@ -17,13 +17,13 @@ Database Auto-Backup
     :target: http://www.gnu.org/licenses/agpl-3.0-standalone.html
     :alt: License: AGPL-3
 .. |badge3| image:: https://img.shields.io/badge/github-OCA%2Fserver--tools-lightgray.png?logo=github
-    :target: https://github.com/OCA/server-tools/tree/15.0/auto_backup
+    :target: https://github.com/OCA/server-tools/tree/16.0/auto_backup
     :alt: OCA/server-tools
 .. |badge4| image:: https://img.shields.io/badge/weblate-Translate%20me-F47D42.png
-    :target: https://translation.odoo-community.org/projects/server-tools-15-0/server-tools-15-0-auto_backup
+    :target: https://translation.odoo-community.org/projects/server-tools-16-0/server-tools-16-0-auto_backup
     :alt: Translate me on Weblate
 .. |badge5| image:: https://img.shields.io/badge/runboat-Try%20me-875A7B.png
-    :target: https://runboat.odoo-community.org/builds?repo=OCA/server-tools&target_branch=15.0
+    :target: https://runboat.odoo-community.org/builds?repo=OCA/server-tools&target_branch=16.0
     :alt: Try me on Runboat
 
 |badge1| |badge2| |badge3| |badge4| |badge5|
@@ -115,7 +115,7 @@ Bug Tracker
 Bugs are tracked on `GitHub Issues <https://github.com/OCA/server-tools/issues>`_.
 In case of trouble, please check there if your issue has already been reported.
 If you spotted it first, help us to smash it by providing a detailed and welcomed
-`feedback <https://github.com/OCA/server-tools/issues/new?body=module:%20auto_backup%0Aversion:%2015.0%0A%0A**Steps%20to%20reproduce**%0A-%20...%0A%0A**Current%20behavior**%0A%0A**Expected%20behavior**>`_.
+`feedback <https://github.com/OCA/server-tools/issues/new?body=module:%20auto_backup%0Aversion:%2016.0%0A%0A**Steps%20to%20reproduce**%0A-%20...%0A%0A**Current%20behavior**%0A%0A**Expected%20behavior**>`_.
 
 Do not contact contributors directly about support or help with technical issues.
 
@@ -142,6 +142,7 @@ Contributors
 * Aitor Bouzas <aitor.bouzas@adaptivecity.com>
 * Simone Vanin <simone.vanin@agilebg.com>
 * Vu Nguyen Anh <vuna2004@gmail.com>
+* Alex Comba <alex.comba@agilebg.com>
 
 Maintainers
 ~~~~~~~~~~~
@@ -156,6 +157,6 @@ OCA, or the Odoo Community Association, is a nonprofit organization whose
 mission is to support the collaborative development of Odoo features and
 promote its widespread use.
 
-This module is part of the `OCA/server-tools <https://github.com/OCA/server-tools/tree/15.0/auto_backup>`_ project on GitHub.
+This module is part of the `OCA/server-tools <https://github.com/OCA/server-tools/tree/16.0/auto_backup>`_ project on GitHub.
 
 You are welcome to contribute. To learn how please visit https://odoo-community.org/page/Contribute.
diff --git a/auto_backup/static/description/index.html b/auto_backup/static/description/index.html
index 11f0dc9fa59..4e790a8c450 100644
--- a/auto_backup/static/description/index.html
+++ b/auto_backup/static/description/index.html
@@ -367,9 +367,9 @@ <h1 class="title">Database Auto-Backup</h1>
 !! This file is generated by oca-gen-addon-readme !!
 !! changes will be overwritten.                   !!
 !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
-!! source digest: sha256:0b54d31a1ddc45d57a4f9161672fabbd622f89cec222d30a11909f1e75b3806f
+!! source digest: sha256:163fe86803c25bd1647c8a149b89b15db756b9f3551c73e29bc93c5d1d31a2ee
 !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! -->
-<p><a class="reference external image-reference" href="https://odoo-community.org/page/development-status"><img alt="Beta" src="https://img.shields.io/badge/maturity-Beta-yellow.png" /></a> <a class="reference external image-reference" href="http://www.gnu.org/licenses/agpl-3.0-standalone.html"><img alt="License: AGPL-3" src="https://img.shields.io/badge/licence-AGPL--3-blue.png" /></a> <a class="reference external image-reference" href="https://github.com/OCA/server-tools/tree/15.0/auto_backup"><img alt="OCA/server-tools" src="https://img.shields.io/badge/github-OCA%2Fserver--tools-lightgray.png?logo=github" /></a> <a class="reference external image-reference" href="https://translation.odoo-community.org/projects/server-tools-15-0/server-tools-15-0-auto_backup"><img alt="Translate me on Weblate" src="https://img.shields.io/badge/weblate-Translate%20me-F47D42.png" /></a> <a class="reference external image-reference" href="https://runboat.odoo-community.org/builds?repo=OCA/server-tools&amp;target_branch=15.0"><img alt="Try me on Runboat" src="https://img.shields.io/badge/runboat-Try%20me-875A7B.png" /></a></p>
+<p><a class="reference external image-reference" href="https://odoo-community.org/page/development-status"><img alt="Beta" src="https://img.shields.io/badge/maturity-Beta-yellow.png" /></a> <a class="reference external image-reference" href="http://www.gnu.org/licenses/agpl-3.0-standalone.html"><img alt="License: AGPL-3" src="https://img.shields.io/badge/licence-AGPL--3-blue.png" /></a> <a class="reference external image-reference" href="https://github.com/OCA/server-tools/tree/16.0/auto_backup"><img alt="OCA/server-tools" src="https://img.shields.io/badge/github-OCA%2Fserver--tools-lightgray.png?logo=github" /></a> <a class="reference external image-reference" href="https://translation.odoo-community.org/projects/server-tools-16-0/server-tools-16-0-auto_backup"><img alt="Translate me on Weblate" src="https://img.shields.io/badge/weblate-Translate%20me-F47D42.png" /></a> <a class="reference external image-reference" href="https://runboat.odoo-community.org/builds?repo=OCA/server-tools&amp;target_branch=16.0"><img alt="Try me on Runboat" src="https://img.shields.io/badge/runboat-Try%20me-875A7B.png" /></a></p>
 <p>A tool for all your back-ups, internal and external!</p>
 <p><strong>Table of contents</strong></p>
 <div class="contents local topic" id="contents">
@@ -472,7 +472,7 @@ <h1><a class="toc-backref" href="#toc-entry-12">Bug Tracker</a></h1>
 <p>Bugs are tracked on <a class="reference external" href="https://github.com/OCA/server-tools/issues">GitHub Issues</a>.
 In case of trouble, please check there if your issue has already been reported.
 If you spotted it first, help us to smash it by providing a detailed and welcomed
-<a class="reference external" href="https://github.com/OCA/server-tools/issues/new?body=module:%20auto_backup%0Aversion:%2015.0%0A%0A**Steps%20to%20reproduce**%0A-%20...%0A%0A**Current%20behavior**%0A%0A**Expected%20behavior**">feedback</a>.</p>
+<a class="reference external" href="https://github.com/OCA/server-tools/issues/new?body=module:%20auto_backup%0Aversion:%2016.0%0A%0A**Steps%20to%20reproduce**%0A-%20...%0A%0A**Current%20behavior**%0A%0A**Expected%20behavior**">feedback</a>.</p>
 <p>Do not contact contributors directly about support or help with technical issues.</p>
 </div>
 <div class="section" id="credits">
@@ -498,6 +498,7 @@ <h2><a class="toc-backref" href="#toc-entry-15">Contributors</a></h2>
 <li>Aitor Bouzas &lt;<a class="reference external" href="mailto:aitor.bouzas&#64;adaptivecity.com">aitor.bouzas&#64;adaptivecity.com</a>&gt;</li>
 <li>Simone Vanin &lt;<a class="reference external" href="mailto:simone.vanin&#64;agilebg.com">simone.vanin&#64;agilebg.com</a>&gt;</li>
 <li>Vu Nguyen Anh &lt;<a class="reference external" href="mailto:vuna2004&#64;gmail.com">vuna2004&#64;gmail.com</a>&gt;</li>
+<li>Alex Comba &lt;<a class="reference external" href="mailto:alex.comba&#64;agilebg.com">alex.comba&#64;agilebg.com</a>&gt;</li>
 </ul>
 </div>
 <div class="section" id="maintainers">
@@ -507,7 +508,7 @@ <h2><a class="toc-backref" href="#toc-entry-16">Maintainers</a></h2>
 <p>OCA, or the Odoo Community Association, is a nonprofit organization whose
 mission is to support the collaborative development of Odoo features and
 promote its widespread use.</p>
-<p>This module is part of the <a class="reference external" href="https://github.com/OCA/server-tools/tree/15.0/auto_backup">OCA/server-tools</a> project on GitHub.</p>
+<p>This module is part of the <a class="reference external" href="https://github.com/OCA/server-tools/tree/16.0/auto_backup">OCA/server-tools</a> project on GitHub.</p>
 <p>You are welcome to contribute. To learn how please visit <a class="reference external" href="https://odoo-community.org/page/Contribute">https://odoo-community.org/page/Contribute</a>.</p>
 </div>
 </div>

From 6174eea2aaa6562b078a2d850691b1ce1e93fc89 Mon Sep 17 00:00:00 2001
From: tafaRU <alex.comba@agilebg.com>
Date: Mon, 11 Sep 2023 14:21:02 +0200
Subject: [PATCH 43/52] [MIG] auto_backup: Migration to 16.0

---
 auto_backup/__manifest__.py         | 4 ++--
 auto_backup/readme/CONTRIBUTORS.rst | 1 +
 2 files changed, 3 insertions(+), 2 deletions(-)

diff --git a/auto_backup/__manifest__.py b/auto_backup/__manifest__.py
index 1ca292e8d80..8c731aa7f81 100644
--- a/auto_backup/__manifest__.py
+++ b/auto_backup/__manifest__.py
@@ -6,7 +6,7 @@
 {
     "name": "Database Auto-Backup",
     "summary": "Backups database",
-    "version": "15.0.1.0.1",
+    "version": "16.0.1.0.0",
     "author": "Yenthe Van Ginneken, "
     "Agile Business Group, "
     "Grupo ESOC Ingenieria de Servicios, "
@@ -24,5 +24,5 @@
         "view/db_backup_view.xml",
     ],
     "installable": True,
-    "external_dependencies": {"python": ["pysftp", "cryptography==2.6.1"]},
+    "external_dependencies": {"python": ["pysftp", "cryptography"]},
 }
diff --git a/auto_backup/readme/CONTRIBUTORS.rst b/auto_backup/readme/CONTRIBUTORS.rst
index e7cdbc74afa..bac3ca7b129 100644
--- a/auto_backup/readme/CONTRIBUTORS.rst
+++ b/auto_backup/readme/CONTRIBUTORS.rst
@@ -6,3 +6,4 @@
 * Aitor Bouzas <aitor.bouzas@adaptivecity.com>
 * Simone Vanin <simone.vanin@agilebg.com>
 * Vu Nguyen Anh <vuna2004@gmail.com>
+* Alex Comba <alex.comba@agilebg.com>

From 2ed5e94e5e2dab7a521934b39be27d684b38ee67 Mon Sep 17 00:00:00 2001
From: oca-ci <oca-ci@odoo-community.org>
Date: Fri, 1 Dec 2023 20:10:12 +0000
Subject: [PATCH 44/52] [UPD] Update auto_backup.pot

---
 auto_backup/i18n/auto_backup.pot | 57 ++++++++------------------------
 1 file changed, 13 insertions(+), 44 deletions(-)

diff --git a/auto_backup/i18n/auto_backup.pot b/auto_backup/i18n/auto_backup.pot
index 685927955eb..4226d8a8a68 100644
--- a/auto_backup/i18n/auto_backup.pot
+++ b/auto_backup/i18n/auto_backup.pot
@@ -4,7 +4,7 @@
 #
 msgid ""
 msgstr ""
-"Project-Id-Version: Odoo Server 15.0\n"
+"Project-Id-Version: Odoo Server 16.0\n"
 "Report-Msgid-Bugs-To: \n"
 "Last-Translator: \n"
 "Language-Team: \n"
@@ -57,7 +57,6 @@ msgstr ""
 #. module: auto_backup
 #: model:ir.actions.server,name:auto_backup.ir_cron_backup_scheduler_0_ir_actions_server
 #: model:ir.cron,cron_name:auto_backup.ir_cron_backup_scheduler_0
-#: model:ir.cron,name:auto_backup.ir_cron_backup_scheduler_0
 msgid "Backup Scheduler"
 msgstr ""
 
@@ -83,16 +82,6 @@ msgstr ""
 msgid "Cannot duplicate a configuration."
 msgstr ""
 
-#. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup__changeset_change_ids
-msgid "Changeset Changes"
-msgstr ""
-
-#. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup__changeset_ids
-msgid "Changesets"
-msgstr ""
-
 #. module: auto_backup
 #: model:ir.model.fields,help:auto_backup.field_db_backup__backup_format
 msgid "Choose the format for this backup."
@@ -104,33 +93,26 @@ msgid "Choose the storage method for this backup."
 msgstr ""
 
 #. module: auto_backup
+#. odoo-python
 #: code:addons/auto_backup/models/db_backup.py:0
 #, python-format
 msgid "Cleanup of old database backups failed."
 msgstr ""
 
 #. module: auto_backup
+#. odoo-python
 #: code:addons/auto_backup/models/db_backup.py:0
 #, python-format
 msgid "Connection Test Failed!"
 msgstr ""
 
 #. module: auto_backup
+#. odoo-python
 #: code:addons/auto_backup/models/db_backup.py:0
 #, python-format
 msgid "Connection Test Succeeded!"
 msgstr ""
 
-#. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup__count_pending_changeset_changes
-msgid "Count Pending Changeset Changes"
-msgstr ""
-
-#. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup__count_pending_changesets
-msgid "Count Pending Changesets"
-msgstr ""
-
 #. module: auto_backup
 #: model:ir.model.fields,field_description:auto_backup.field_db_backup__create_uid
 msgid "Created by"
@@ -147,6 +129,7 @@ msgid "Database Backup"
 msgstr ""
 
 #. module: auto_backup
+#. odoo-python
 #: code:addons/auto_backup/models/db_backup.py:0
 #: model:mail.message.subtype,description:auto_backup.mail_message_subtype_failure
 #, python-format
@@ -154,6 +137,7 @@ msgid "Database backup failed."
 msgstr ""
 
 #. module: auto_backup
+#. odoo-python
 #: code:addons/auto_backup/models/db_backup.py:0
 #: model:mail.message.subtype,description:auto_backup.mail_message_subtype_success
 #, python-format
@@ -171,6 +155,7 @@ msgid "Display Name"
 msgstr ""
 
 #. module: auto_backup
+#. odoo-python
 #: code:addons/auto_backup/models/db_backup.py:0
 #, python-format
 msgid ""
@@ -229,7 +214,6 @@ msgstr ""
 
 #. module: auto_backup
 #: model:ir.model.fields,help:auto_backup.field_db_backup__message_needaction
-#: model:ir.model.fields,help:auto_backup.field_db_backup__message_unread
 msgid "If checked, new messages require your attention."
 msgstr ""
 
@@ -301,7 +285,7 @@ msgstr ""
 
 #. module: auto_backup
 #: model:ir.model.fields,help:auto_backup.field_db_backup__message_needaction_counter
-msgid "Number of messages which requires an action"
+msgid "Number of messages requiring action"
 msgstr ""
 
 #. module: auto_backup
@@ -309,11 +293,6 @@ msgstr ""
 msgid "Number of messages with delivery error"
 msgstr ""
 
-#. module: auto_backup
-#: model:ir.model.fields,help:auto_backup.field_db_backup__message_unread_counter
-msgid "Number of unread messages"
-msgstr ""
-
 #. module: auto_backup
 #: model:ir.model.fields,help:auto_backup.field_db_backup__sftp_private_key
 msgid ""
@@ -368,6 +347,11 @@ msgid ""
 "generated."
 msgstr ""
 
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__smart_search
+msgid "Smart Search"
+msgstr ""
+
 #. module: auto_backup
 #: model:ir.model.fields,help:auto_backup.field_db_backup__name
 msgid "Summary of this backup process"
@@ -403,16 +387,6 @@ msgid ""
 " on the external server."
 msgstr ""
 
-#. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup__message_unread
-msgid "Unread Messages"
-msgstr ""
-
-#. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup__message_unread_counter
-msgid "Unread Messages Counter"
-msgstr ""
-
 #. module: auto_backup
 #: model_terms:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
 msgid ""
@@ -420,11 +394,6 @@ msgid ""
 "you specify."
 msgstr ""
 
-#. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup__user_can_see_changeset
-msgid "User Can See Changeset"
-msgstr ""
-
 #. module: auto_backup
 #: model:ir.model.fields,field_description:auto_backup.field_db_backup__sftp_user
 msgid "Username in the SFTP Server"

From 7f7ad13af4059b45a3c4361da1b90a1822cb645f Mon Sep 17 00:00:00 2001
From: Ivorra78 <informatica@totmaterial.es>
Date: Thu, 7 Dec 2023 15:55:50 +0000
Subject: [PATCH 45/52] Translated using Weblate (Spanish)

Currently translated at 100.0% (85 of 85 strings)

Translation: server-tools-16.0/server-tools-16.0-auto_backup
Translate-URL: https://translation.odoo-community.org/projects/server-tools-16-0/server-tools-16-0-auto_backup/es/
---
 auto_backup/i18n/es.po | 81 +++++++++++++++++++++---------------------
 1 file changed, 40 insertions(+), 41 deletions(-)

diff --git a/auto_backup/i18n/es.po b/auto_backup/i18n/es.po
index 39f63fcef22..42e1a2a7f6a 100644
--- a/auto_backup/i18n/es.po
+++ b/auto_backup/i18n/es.po
@@ -9,14 +9,15 @@ msgstr ""
 "Project-Id-Version: Odoo Server 11.0\n"
 "Report-Msgid-Bugs-To: \n"
 "POT-Creation-Date: 2018-03-03 10:08+0000\n"
-"PO-Revision-Date: 2018-03-03 10:08+0000\n"
-"Last-Translator: OCA Transbot <transbot@odoo-community.org>, 2018\n"
+"PO-Revision-Date: 2023-12-07 18:34+0000\n"
+"Last-Translator: Ivorra78 <informatica@totmaterial.es>\n"
 "Language-Team: Spanish (https://www.transifex.com/oca/teams/23907/es/)\n"
 "Language: es\n"
 "MIME-Version: 1.0\n"
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: \n"
-"Plural-Forms: nplurals=2; plural=(n != 1);\n"
+"Plural-Forms: nplurals=2; plural=n != 1;\n"
+"X-Generator: Weblate 4.17\n"
 
 #. module: auto_backup
 #: model_terms:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
@@ -31,12 +32,12 @@ msgstr "Ruta absoluta para almacenar las copias de seguridad"
 #. module: auto_backup
 #: model:ir.model.fields,field_description:auto_backup.field_db_backup__message_needaction
 msgid "Action Needed"
-msgstr ""
+msgstr "Necesita Acción"
 
 #. module: auto_backup
 #: model:ir.model.fields,field_description:auto_backup.field_db_backup__message_attachment_count
 msgid "Attachment Count"
-msgstr ""
+msgstr "Recuento de Archivos Adjuntos"
 
 #. module: auto_backup
 #: model:ir.actions.act_window,name:auto_backup.action_backup_conf_form
@@ -58,16 +59,15 @@ msgstr "Error de copia de seguridad"
 
 #. module: auto_backup
 #: model:ir.model.fields,field_description:auto_backup.field_db_backup__backup_format
-#, fuzzy
 msgid "Backup Format"
-msgstr "Error de copia de seguridad"
+msgstr "Formato de copia de Seguridad"
 
 #. module: auto_backup
 #: model:ir.actions.server,name:auto_backup.ir_cron_backup_scheduler_0_ir_actions_server
 #: model:ir.cron,cron_name:auto_backup.ir_cron_backup_scheduler_0
 #: model:ir.cron,name:auto_backup.ir_cron_backup_scheduler_0
 msgid "Backup Scheduler"
-msgstr ""
+msgstr "Planificador de Copia de Seguridad"
 
 #. module: auto_backup
 #: model:mail.message.subtype,name:auto_backup.mail_message_subtype_success
@@ -96,18 +96,17 @@ msgstr "No se puede duplicar una configuración."
 #. module: auto_backup
 #: model:ir.model.fields,field_description:auto_backup.field_db_backup__changeset_change_ids
 msgid "Changeset Changes"
-msgstr ""
+msgstr "Cambios en el conjunto de modificaciones"
 
 #. module: auto_backup
 #: model:ir.model.fields,field_description:auto_backup.field_db_backup__changeset_ids
 msgid "Changesets"
-msgstr ""
+msgstr "Conjuntos de cambios"
 
 #. module: auto_backup
 #: model:ir.model.fields,help:auto_backup.field_db_backup__backup_format
-#, fuzzy
 msgid "Choose the format for this backup."
-msgstr "Elija el método de almacenamiento para esta copia de seguridad."
+msgstr "Elija el formato para esta copia de seguridad."
 
 #. module: auto_backup
 #: model:ir.model.fields,help:auto_backup.field_db_backup__method
@@ -137,12 +136,12 @@ msgstr "Prueba de conexión correcta!"
 #. module: auto_backup
 #: model:ir.model.fields,field_description:auto_backup.field_db_backup__count_pending_changeset_changes
 msgid "Count Pending Changeset Changes"
-msgstr ""
+msgstr "Contar los cambios del conjunto de cambios pendientes"
 
 #. module: auto_backup
 #: model:ir.model.fields,field_description:auto_backup.field_db_backup__count_pending_changesets
 msgid "Count Pending Changesets"
-msgstr ""
+msgstr "Contar Conjuntos de Cambios Pendientes"
 
 #. module: auto_backup
 #: model:ir.model.fields,field_description:auto_backup.field_db_backup__create_uid
@@ -157,7 +156,7 @@ msgstr "Creado el"
 #. module: auto_backup
 #: model:ir.model,name:auto_backup.model_db_backup
 msgid "Database Backup"
-msgstr ""
+msgstr "Copia de seguridad de la base de datos"
 
 #. module: auto_backup
 #: code:addons/auto_backup/models/db_backup.py:0
@@ -171,12 +170,12 @@ msgstr "La copia de seguridad de la base de datos ha fallado."
 #: model:mail.message.subtype,description:auto_backup.mail_message_subtype_success
 #, python-format
 msgid "Database backup succeeded."
-msgstr "La copia de seguridad de la base de datos se realizo correctamente"
+msgstr "La copia de seguridad de la base de datos se realizo correctamente."
 
 #. module: auto_backup
 #: model:ir.model.fields,field_description:auto_backup.field_db_backup__days_to_keep
 msgid "Days To Keep"
-msgstr ""
+msgstr "Días Para Guardar"
 
 #. module: auto_backup
 #: model:ir.model.fields,field_description:auto_backup.field_db_backup__display_name
@@ -195,7 +194,7 @@ msgstr ""
 #. module: auto_backup
 #: model_terms:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
 msgid "Execute backup"
-msgstr ""
+msgstr "Ejecutar copia de seguridad"
 
 #. module: auto_backup
 #: model:ir.actions.server,name:auto_backup.action_server_backup
@@ -210,22 +209,22 @@ msgstr "Carpeta"
 #. module: auto_backup
 #: model:ir.model.fields,field_description:auto_backup.field_db_backup__message_follower_ids
 msgid "Followers"
-msgstr ""
+msgstr "Seguidores/as"
 
 #. module: auto_backup
 #: model:ir.model.fields,field_description:auto_backup.field_db_backup__message_partner_ids
 msgid "Followers (Partners)"
-msgstr ""
+msgstr "Seguidores/as (Socios)"
 
 #. module: auto_backup
 #: model_terms:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
 msgid "Go to Settings / Technical / Automation / Scheduled Actions."
-msgstr "Ir a Configuración / Técnico / Automatización / Acciones Planificadas"
+msgstr "Ir a Configuración / Técnico / Automatización / Acciones Planificadas."
 
 #. module: auto_backup
 #: model:ir.model.fields,field_description:auto_backup.field_db_backup__has_message
 msgid "Has Message"
-msgstr ""
+msgstr "Tiene Mensaje"
 
 #. module: auto_backup
 #: model_terms:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
@@ -248,18 +247,18 @@ msgstr "ID"
 #: model:ir.model.fields,help:auto_backup.field_db_backup__message_needaction
 #: model:ir.model.fields,help:auto_backup.field_db_backup__message_unread
 msgid "If checked, new messages require your attention."
-msgstr ""
+msgstr "Si está marcado. nuevos mensajes requieren su atención."
 
 #. module: auto_backup
 #: model:ir.model.fields,help:auto_backup.field_db_backup__message_has_error
 #: model:ir.model.fields,help:auto_backup.field_db_backup__message_has_sms_error
 msgid "If checked, some messages have a delivery error."
-msgstr ""
+msgstr "Si esta marcado, algunos mensajes tienen un error de entrega."
 
 #. module: auto_backup
 #: model:ir.model.fields,field_description:auto_backup.field_db_backup__message_is_follower
 msgid "Is Follower"
-msgstr ""
+msgstr "Es Seguidor"
 
 #. module: auto_backup
 #: model:ir.model.fields,field_description:auto_backup.field_db_backup____last_update
@@ -284,17 +283,17 @@ msgstr "Disco local"
 #. module: auto_backup
 #: model:ir.model.fields,field_description:auto_backup.field_db_backup__message_main_attachment_id
 msgid "Main Attachment"
-msgstr ""
+msgstr "Archivo Adjunto Principal"
 
 #. module: auto_backup
 #: model:ir.model.fields,field_description:auto_backup.field_db_backup__message_has_error
 msgid "Message Delivery error"
-msgstr ""
+msgstr "Error en Entrega de Mensaje"
 
 #. module: auto_backup
 #: model:ir.model.fields,field_description:auto_backup.field_db_backup__message_ids
 msgid "Messages"
-msgstr ""
+msgstr "Mensajes"
 
 #. module: auto_backup
 #: model:ir.model.fields,field_description:auto_backup.field_db_backup__method
@@ -309,27 +308,27 @@ msgstr "Nombre"
 #. module: auto_backup
 #: model:ir.model.fields,field_description:auto_backup.field_db_backup__message_needaction_counter
 msgid "Number of Actions"
-msgstr ""
+msgstr "Número de Acciones"
 
 #. module: auto_backup
 #: model:ir.model.fields,field_description:auto_backup.field_db_backup__message_has_error_counter
 msgid "Number of errors"
-msgstr ""
+msgstr "Número de Errores"
 
 #. module: auto_backup
 #: model:ir.model.fields,help:auto_backup.field_db_backup__message_needaction_counter
 msgid "Number of messages which requires an action"
-msgstr ""
+msgstr "Número de mensajes que requieren un acción"
 
 #. module: auto_backup
 #: model:ir.model.fields,help:auto_backup.field_db_backup__message_has_error_counter
 msgid "Number of messages with delivery error"
-msgstr ""
+msgstr "Número de mensajes con error de entrega"
 
 #. module: auto_backup
 #: model:ir.model.fields,help:auto_backup.field_db_backup__message_unread_counter
 msgid "Number of unread messages"
-msgstr ""
+msgstr "Número de mensajes no leídos"
 
 #. module: auto_backup
 #: model:ir.model.fields,help:auto_backup.field_db_backup__sftp_private_key
@@ -373,7 +372,7 @@ msgstr "Configuración de SFTP"
 #. module: auto_backup
 #: model:ir.model.fields,field_description:auto_backup.field_db_backup__message_has_sms_error
 msgid "SMS Delivery error"
-msgstr ""
+msgstr "Error en la entrega de SMS"
 
 #. module: auto_backup
 #: model_terms:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
@@ -432,12 +431,12 @@ msgstr ""
 #. module: auto_backup
 #: model:ir.model.fields,field_description:auto_backup.field_db_backup__message_unread
 msgid "Unread Messages"
-msgstr ""
+msgstr "Mensajes No Leídos"
 
 #. module: auto_backup
 #: model:ir.model.fields,field_description:auto_backup.field_db_backup__message_unread_counter
 msgid "Unread Messages Counter"
-msgstr ""
+msgstr "Contador de Mensajes no Leídos"
 
 #. module: auto_backup
 #: model_terms:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
@@ -451,7 +450,7 @@ msgstr ""
 #. module: auto_backup
 #: model:ir.model.fields,field_description:auto_backup.field_db_backup__user_can_see_changeset
 msgid "User Can See Changeset"
-msgstr ""
+msgstr "El Usuario Puede Ver el Conjunto de Cambios"
 
 #. module: auto_backup
 #: model:ir.model.fields,field_description:auto_backup.field_db_backup__sftp_user
@@ -466,12 +465,12 @@ msgstr "Advertencia:"
 #. module: auto_backup
 #: model:ir.model.fields,field_description:auto_backup.field_db_backup__website_message_ids
 msgid "Website Messages"
-msgstr ""
+msgstr "Mensajes del Sitio Web"
 
 #. module: auto_backup
 #: model:ir.model.fields,help:auto_backup.field_db_backup__website_message_ids
 msgid "Website communication history"
-msgstr ""
+msgstr "Historial de la comunicación del sitio web"
 
 #. module: auto_backup
 #: model_terms:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
@@ -481,7 +480,7 @@ msgstr "john"
 #. module: auto_backup
 #: model:ir.model.fields.selection,name:auto_backup.selection__db_backup__backup_format__dump
 msgid "pg_dump custom format (without filestore)"
-msgstr ""
+msgstr "pg_dump formato personalizado (sin almacén de archivos)"
 
 #. module: auto_backup
 #: model_terms:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
@@ -491,4 +490,4 @@ msgstr "sftp.example.com"
 #. module: auto_backup
 #: model:ir.model.fields.selection,name:auto_backup.selection__db_backup__backup_format__zip
 msgid "zip (includes filestore)"
-msgstr ""
+msgstr "zip (incluye almacén de archivos)"

From fb8bf89b2afe7ce05ca7f48f896244133051f41c Mon Sep 17 00:00:00 2001
From: mymage <stefano.consolaro@mymage.it>
Date: Sun, 24 Dec 2023 16:47:21 +0000
Subject: [PATCH 46/52] Translated using Weblate (Italian)

Currently translated at 87.0% (74 of 85 strings)

Translation: server-tools-16.0/server-tools-16.0-auto_backup
Translate-URL: https://translation.odoo-community.org/projects/server-tools-16-0/server-tools-16-0-auto_backup/it/

Translated using Weblate (Italian)

Currently translated at 100.0% (85 of 85 strings)

Translation: server-tools-16.0/server-tools-16.0-auto_backup
Translate-URL: https://translation.odoo-community.org/projects/server-tools-16-0/server-tools-16-0-auto_backup/it/

Translated using Weblate (Italian)

Currently translated at 100.0% (85 of 85 strings)

Translation: server-tools-16.0/server-tools-16.0-auto_backup
Translate-URL: https://translation.odoo-community.org/projects/server-tools-16-0/server-tools-16-0-auto_backup/it/

Translated using Weblate (Italian)

Currently translated at 100.0% (85 of 85 strings)

Translation: server-tools-16.0/server-tools-16.0-auto_backup
Translate-URL: https://translation.odoo-community.org/projects/server-tools-16-0/server-tools-16-0-auto_backup/it/
---
 auto_backup/i18n/it.po | 44 ++++++++++++++++++------------------------
 1 file changed, 19 insertions(+), 25 deletions(-)

diff --git a/auto_backup/i18n/it.po b/auto_backup/i18n/it.po
index beb04aaa6e9..217d14fa54a 100644
--- a/auto_backup/i18n/it.po
+++ b/auto_backup/i18n/it.po
@@ -9,7 +9,7 @@ msgstr ""
 "Project-Id-Version: Odoo Server 11.0\n"
 "Report-Msgid-Bugs-To: \n"
 "POT-Creation-Date: 2018-03-03 10:08+0000\n"
-"PO-Revision-Date: 2023-06-13 16:10+0000\n"
+"PO-Revision-Date: 2024-01-22 10:42+0000\n"
 "Last-Translator: mymage <stefano.consolaro@mymage.it>\n"
 "Language-Team: Italian (https://www.transifex.com/oca/teams/23907/it/)\n"
 "Language: it\n"
@@ -74,12 +74,11 @@ msgstr "Backup riuscito"
 
 #. module: auto_backup
 #: model:ir.model.fields,help:auto_backup.field_db_backup__days_to_keep
-#, fuzzy
 msgid ""
 "Backups older than this will be deleted automatically. Set 0 to disable "
 "autodeletion."
 msgstr ""
-"I Backup antecedenti questo numero di giorni saranno eliminati "
+"I backup antecedenti questo numero di giorni saranno eliminati "
 "automaticamente. Impostare a 0 per disattivare l'eliminazione automatica."
 
 #. module: auto_backup
@@ -95,24 +94,22 @@ msgstr "Impossibile duplicare una configurazione."
 #. module: auto_backup
 #: model:ir.model.fields,field_description:auto_backup.field_db_backup__changeset_change_ids
 msgid "Changeset Changes"
-msgstr ""
+msgstr "Modifiche dell'insieme di modifiche"
 
 #. module: auto_backup
 #: model:ir.model.fields,field_description:auto_backup.field_db_backup__changeset_ids
 msgid "Changesets"
-msgstr ""
+msgstr "Insieme di modifiche"
 
 #. module: auto_backup
 #: model:ir.model.fields,help:auto_backup.field_db_backup__backup_format
-#, fuzzy
 msgid "Choose the format for this backup."
-msgstr "Scegliere il tipo di archiviazione per questo metodo di backup. "
+msgstr "Scegliere il tipo di archiviazione per questo metodo di backup."
 
 #. module: auto_backup
 #: model:ir.model.fields,help:auto_backup.field_db_backup__method
-#, fuzzy
 msgid "Choose the storage method for this backup."
-msgstr "Scegliere il metodo di archiviazione per il backup."
+msgstr "Scegliere il metodo di archiviazione per questo backup."
 
 #. module: auto_backup
 #: code:addons/auto_backup/models/db_backup.py:0
@@ -124,23 +121,23 @@ msgstr "Pulizia dei vecchi backup del database non riuscita."
 #: code:addons/auto_backup/models/db_backup.py:0
 #, python-format
 msgid "Connection Test Failed!"
-msgstr "Prova di connessione non riuscita."
+msgstr "Prova di connessione non riuscita!"
 
 #. module: auto_backup
 #: code:addons/auto_backup/models/db_backup.py:0
 #, python-format
 msgid "Connection Test Succeeded!"
-msgstr "Prova di connessione superata."
+msgstr "Test connessione avvenuto con successo!"
 
 #. module: auto_backup
 #: model:ir.model.fields,field_description:auto_backup.field_db_backup__count_pending_changeset_changes
 msgid "Count Pending Changeset Changes"
-msgstr ""
+msgstr "Conteggio modifiche dell'insieme di modifiche in attesa"
 
 #. module: auto_backup
 #: model:ir.model.fields,field_description:auto_backup.field_db_backup__count_pending_changesets
 msgid "Count Pending Changesets"
-msgstr ""
+msgstr "Conteggio insieme di modifiche in attesa"
 
 #. module: auto_backup
 #: model:ir.model.fields,field_description:auto_backup.field_db_backup__create_uid
@@ -174,7 +171,7 @@ msgstr "Backup del database riuscito."
 #. module: auto_backup
 #: model:ir.model.fields,field_description:auto_backup.field_db_backup__days_to_keep
 msgid "Days To Keep"
-msgstr ""
+msgstr "Giorni di conservazione"
 
 #. module: auto_backup
 #: model:ir.model.fields,field_description:auto_backup.field_db_backup__display_name
@@ -188,7 +185,7 @@ msgid ""
 "Do not save backups on your filestore, or you will backup your backups too!"
 msgstr ""
 "Non salvare i backup nel proprio filestore altrimenti verrà effettuato anche "
-"un backup degli stessi backup."
+"un backup degli stessi backup!"
 
 #. module: auto_backup
 #: model_terms:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
@@ -217,16 +214,15 @@ msgstr "Seguito da (partner)"
 
 #. module: auto_backup
 #: model_terms:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
-#, fuzzy
 msgid "Go to Settings / Technical / Automation / Scheduled Actions."
 msgstr ""
-"Andare in  Configurazione / Funzioni Tecniche / Automazione / Azioni "
+"Andare in Configurazione / Funzioni Tecniche / Automazione / Azioni "
 "Programmate."
 
 #. module: auto_backup
 #: model:ir.model.fields,field_description:auto_backup.field_db_backup__has_message
 msgid "Has Message"
-msgstr ""
+msgstr "Ha un messaggio"
 
 #. module: auto_backup
 #: model_terms:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
@@ -258,7 +254,7 @@ msgstr "Se selezionata, alcuni messaggi hanno un errore di consegna."
 #. module: auto_backup
 #: model:ir.model.fields,field_description:auto_backup.field_db_backup__message_is_follower
 msgid "Is Follower"
-msgstr "Sta seguendo"
+msgstr "Segue"
 
 #. module: auto_backup
 #: model:ir.model.fields,field_description:auto_backup.field_db_backup____last_update
@@ -376,18 +372,16 @@ msgstr "Errore consegna SMS"
 
 #. module: auto_backup
 #: model_terms:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
-#, fuzzy
 msgid "Search the action named 'Backup scheduler'."
-msgstr "Cerca l'azione denominata 'Pianificazione del backup'."
+msgstr "Cercare l'azione chiamata \"Schedulatore backup\"."
 
 #. module: auto_backup
 #: model_terms:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
-#, fuzzy
 msgid ""
 "Set the scheduler to active and fill in how often you want backups generated."
 msgstr ""
-"Impostare lo scheduler per attivare e compilare la frequenza con cui si "
-"desidera generare il backup."
+"Impostare lo schedulatore su attivo e inserire la frequenza di generazione "
+"dei backup desiderata."
 
 #. module: auto_backup
 #: model:ir.model.fields,help:auto_backup.field_db_backup__name
@@ -450,7 +444,7 @@ msgstr ""
 #. module: auto_backup
 #: model:ir.model.fields,field_description:auto_backup.field_db_backup__user_can_see_changeset
 msgid "User Can See Changeset"
-msgstr ""
+msgstr "L'utente pò vedere l'insieme delle modifiche"
 
 #. module: auto_backup
 #: model:ir.model.fields,field_description:auto_backup.field_db_backup__sftp_user

From d2279a2ecbd4cf094b9b94a6743fda8960b0d23e Mon Sep 17 00:00:00 2001
From: oca-ci <oca-ci@odoo-community.org>
Date: Fri, 24 May 2024 16:16:56 +0000
Subject: [PATCH 47/52] [UPD] Update auto_backup.pot

---
 auto_backup/i18n/auto_backup.pot | 45 ++++++++++++++++++++++++++++++++
 1 file changed, 45 insertions(+)

diff --git a/auto_backup/i18n/auto_backup.pot b/auto_backup/i18n/auto_backup.pot
index 4226d8a8a68..39b3838089d 100644
--- a/auto_backup/i18n/auto_backup.pot
+++ b/auto_backup/i18n/auto_backup.pot
@@ -82,6 +82,16 @@ msgstr ""
 msgid "Cannot duplicate a configuration."
 msgstr ""
 
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__changeset_change_ids
+msgid "Changeset Changes"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__changeset_ids
+msgid "Changesets"
+msgstr ""
+
 #. module: auto_backup
 #: model:ir.model.fields,help:auto_backup.field_db_backup__backup_format
 msgid "Choose the format for this backup."
@@ -113,6 +123,21 @@ msgstr ""
 msgid "Connection Test Succeeded!"
 msgstr ""
 
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__count_changesets
+msgid "Count Changesets"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__count_pending_changeset_changes
+msgid "Count Pending Changeset Changes"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__count_pending_changesets
+msgid "Count Pending Changesets"
+msgstr ""
+
 #. module: auto_backup
 #: model:ir.model.fields,field_description:auto_backup.field_db_backup__create_uid
 msgid "Created by"
@@ -368,6 +393,21 @@ msgid ""
 "The host name or IP address from your remote server. For example 192.168.0.1"
 msgstr ""
 
+#. module: auto_backup
+#: model:ir.model.fields,help:auto_backup.field_db_backup__count_pending_changeset_changes
+msgid "The number of pending changes of this record"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,help:auto_backup.field_db_backup__count_pending_changesets
+msgid "The number of pending changesets of this record"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,help:auto_backup.field_db_backup__count_changesets
+msgid "The overall number of changesets of this record"
+msgstr ""
+
 #. module: auto_backup
 #: model:ir.model.fields,help:auto_backup.field_db_backup__sftp_password
 msgid ""
@@ -394,6 +434,11 @@ msgid ""
 "you specify."
 msgstr ""
 
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__user_can_see_changeset
+msgid "User Can See Changeset"
+msgstr ""
+
 #. module: auto_backup
 #: model:ir.model.fields,field_description:auto_backup.field_db_backup__sftp_user
 msgid "Username in the SFTP Server"

From 407450ca7533e89f8e7624af81465119f9063411 Mon Sep 17 00:00:00 2001
From: Weblate <noreply@weblate.org>
Date: Fri, 24 May 2024 16:24:29 +0000
Subject: [PATCH 48/52] Update translation files

Updated by "Update PO files to match POT (msgmerge)" hook in Weblate.

Translation: server-tools-16.0/server-tools-16.0-auto_backup
Translate-URL: https://translation.odoo-community.org/projects/server-tools-16-0/server-tools-16-0-auto_backup/
---
 auto_backup/i18n/am.po       | 50 +++++++++++++++++----------
 auto_backup/i18n/ar.po       | 50 +++++++++++++++++----------
 auto_backup/i18n/bg.po       | 50 +++++++++++++++++----------
 auto_backup/i18n/bs.po       | 50 +++++++++++++++++----------
 auto_backup/i18n/ca.po       | 50 +++++++++++++++++----------
 auto_backup/i18n/cs.po       | 50 +++++++++++++++++----------
 auto_backup/i18n/cs_CZ.po    | 50 +++++++++++++++++----------
 auto_backup/i18n/da.po       | 50 +++++++++++++++++----------
 auto_backup/i18n/de.po       | 50 +++++++++++++++++----------
 auto_backup/i18n/el_GR.po    | 50 +++++++++++++++++----------
 auto_backup/i18n/en_GB.po    | 50 +++++++++++++++++----------
 auto_backup/i18n/es.po       | 64 ++++++++++++++++++++++++----------
 auto_backup/i18n/es_AR.po    | 67 ++++++++++++++++++++++++------------
 auto_backup/i18n/es_CL.po    | 50 +++++++++++++++++----------
 auto_backup/i18n/es_CO.po    | 50 +++++++++++++++++----------
 auto_backup/i18n/es_CR.po    | 50 +++++++++++++++++----------
 auto_backup/i18n/es_DO.po    | 50 +++++++++++++++++----------
 auto_backup/i18n/es_EC.po    | 50 +++++++++++++++++----------
 auto_backup/i18n/es_ES.po    | 50 +++++++++++++++++----------
 auto_backup/i18n/es_MX.po    | 50 +++++++++++++++++----------
 auto_backup/i18n/es_PE.po    | 50 +++++++++++++++++----------
 auto_backup/i18n/es_PY.po    | 50 +++++++++++++++++----------
 auto_backup/i18n/es_VE.po    | 50 +++++++++++++++++----------
 auto_backup/i18n/et.po       | 50 +++++++++++++++++----------
 auto_backup/i18n/eu.po       | 50 +++++++++++++++++----------
 auto_backup/i18n/fa.po       | 50 +++++++++++++++++----------
 auto_backup/i18n/fi.po       | 50 +++++++++++++++++----------
 auto_backup/i18n/fr.po       | 50 +++++++++++++++++----------
 auto_backup/i18n/fr_CA.po    | 50 +++++++++++++++++----------
 auto_backup/i18n/fr_CH.po    | 50 +++++++++++++++++----------
 auto_backup/i18n/gl.po       | 50 +++++++++++++++++----------
 auto_backup/i18n/gl_ES.po    | 50 +++++++++++++++++----------
 auto_backup/i18n/he.po       | 50 +++++++++++++++++----------
 auto_backup/i18n/hr.po       | 50 +++++++++++++++++----------
 auto_backup/i18n/hr_HR.po    | 50 +++++++++++++++++----------
 auto_backup/i18n/hu.po       | 50 +++++++++++++++++----------
 auto_backup/i18n/id.po       | 50 +++++++++++++++++----------
 auto_backup/i18n/it.po       | 67 ++++++++++++++++++++++++------------
 auto_backup/i18n/ja.po       | 50 +++++++++++++++++----------
 auto_backup/i18n/ko.po       | 50 +++++++++++++++++----------
 auto_backup/i18n/lt.po       | 50 +++++++++++++++++----------
 auto_backup/i18n/lt_LT.po    | 50 +++++++++++++++++----------
 auto_backup/i18n/lv.po       | 50 +++++++++++++++++----------
 auto_backup/i18n/mk.po       | 50 +++++++++++++++++----------
 auto_backup/i18n/mn.po       | 50 +++++++++++++++++----------
 auto_backup/i18n/nb.po       | 50 +++++++++++++++++----------
 auto_backup/i18n/nb_NO.po    | 50 +++++++++++++++++----------
 auto_backup/i18n/nl.po       | 50 +++++++++++++++++----------
 auto_backup/i18n/nl_BE.po    | 50 +++++++++++++++++----------
 auto_backup/i18n/nl_NL.po    | 50 +++++++++++++++++----------
 auto_backup/i18n/pl.po       | 50 +++++++++++++++++----------
 auto_backup/i18n/pt.po       | 50 +++++++++++++++++----------
 auto_backup/i18n/pt_BR.po    | 50 +++++++++++++++++----------
 auto_backup/i18n/pt_PT.po    | 50 +++++++++++++++++----------
 auto_backup/i18n/ro.po       | 50 +++++++++++++++++----------
 auto_backup/i18n/ru.po       | 50 +++++++++++++++++----------
 auto_backup/i18n/sk.po       | 50 +++++++++++++++++----------
 auto_backup/i18n/sl.po       | 50 +++++++++++++++++----------
 auto_backup/i18n/sr.po       | 50 +++++++++++++++++----------
 auto_backup/i18n/sr@latin.po | 50 +++++++++++++++++----------
 auto_backup/i18n/sv.po       | 50 +++++++++++++++++----------
 auto_backup/i18n/th.po       | 50 +++++++++++++++++----------
 auto_backup/i18n/tr.po       | 50 +++++++++++++++++----------
 auto_backup/i18n/tr_TR.po    | 50 +++++++++++++++++----------
 auto_backup/i18n/uk.po       | 50 +++++++++++++++++----------
 auto_backup/i18n/vi.po       | 50 +++++++++++++++++----------
 auto_backup/i18n/vi_VN.po    | 50 +++++++++++++++++----------
 auto_backup/i18n/zh_CN.po    | 64 ++++++++++++++++++++++++----------
 auto_backup/i18n/zh_TW.po    | 50 +++++++++++++++++----------
 69 files changed, 2260 insertions(+), 1252 deletions(-)

diff --git a/auto_backup/i18n/am.po b/auto_backup/i18n/am.po
index 667343e7284..df3f119e663 100644
--- a/auto_backup/i18n/am.po
+++ b/auto_backup/i18n/am.po
@@ -62,7 +62,6 @@ msgstr ""
 #. module: auto_backup
 #: model:ir.actions.server,name:auto_backup.ir_cron_backup_scheduler_0_ir_actions_server
 #: model:ir.cron,cron_name:auto_backup.ir_cron_backup_scheduler_0
-#: model:ir.cron,name:auto_backup.ir_cron_backup_scheduler_0
 msgid "Backup Scheduler"
 msgstr ""
 
@@ -109,23 +108,31 @@ msgid "Choose the storage method for this backup."
 msgstr ""
 
 #. module: auto_backup
+#. odoo-python
 #: code:addons/auto_backup/models/db_backup.py:0
 #, python-format
 msgid "Cleanup of old database backups failed."
 msgstr ""
 
 #. module: auto_backup
+#. odoo-python
 #: code:addons/auto_backup/models/db_backup.py:0
 #, python-format
 msgid "Connection Test Failed!"
 msgstr ""
 
 #. module: auto_backup
+#. odoo-python
 #: code:addons/auto_backup/models/db_backup.py:0
 #, python-format
 msgid "Connection Test Succeeded!"
 msgstr ""
 
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__count_changesets
+msgid "Count Changesets"
+msgstr ""
+
 #. module: auto_backup
 #: model:ir.model.fields,field_description:auto_backup.field_db_backup__count_pending_changeset_changes
 msgid "Count Pending Changeset Changes"
@@ -152,6 +159,7 @@ msgid "Database Backup"
 msgstr ""
 
 #. module: auto_backup
+#. odoo-python
 #: code:addons/auto_backup/models/db_backup.py:0
 #: model:mail.message.subtype,description:auto_backup.mail_message_subtype_failure
 #, python-format
@@ -159,6 +167,7 @@ msgid "Database backup failed."
 msgstr ""
 
 #. module: auto_backup
+#. odoo-python
 #: code:addons/auto_backup/models/db_backup.py:0
 #: model:mail.message.subtype,description:auto_backup.mail_message_subtype_success
 #, python-format
@@ -176,6 +185,7 @@ msgid "Display Name"
 msgstr ""
 
 #. module: auto_backup
+#. odoo-python
 #: code:addons/auto_backup/models/db_backup.py:0
 #, python-format
 msgid ""
@@ -234,7 +244,6 @@ msgstr "ID"
 
 #. module: auto_backup
 #: model:ir.model.fields,help:auto_backup.field_db_backup__message_needaction
-#: model:ir.model.fields,help:auto_backup.field_db_backup__message_unread
 msgid "If checked, new messages require your attention."
 msgstr ""
 
@@ -306,7 +315,7 @@ msgstr ""
 
 #. module: auto_backup
 #: model:ir.model.fields,help:auto_backup.field_db_backup__message_needaction_counter
-msgid "Number of messages which requires an action"
+msgid "Number of messages requiring action"
 msgstr ""
 
 #. module: auto_backup
@@ -314,11 +323,6 @@ msgstr ""
 msgid "Number of messages with delivery error"
 msgstr ""
 
-#. module: auto_backup
-#: model:ir.model.fields,help:auto_backup.field_db_backup__message_unread_counter
-msgid "Number of unread messages"
-msgstr ""
-
 #. module: auto_backup
 #: model:ir.model.fields,help:auto_backup.field_db_backup__sftp_private_key
 msgid ""
@@ -372,6 +376,11 @@ msgid ""
 "Set the scheduler to active and fill in how often you want backups generated."
 msgstr ""
 
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__smart_search
+msgid "Smart Search"
+msgstr ""
+
 #. module: auto_backup
 #: model:ir.model.fields,help:auto_backup.field_db_backup__name
 msgid "Summary of this backup process"
@@ -388,6 +397,21 @@ msgid ""
 "The host name or IP address from your remote server. For example 192.168.0.1"
 msgstr ""
 
+#. module: auto_backup
+#: model:ir.model.fields,help:auto_backup.field_db_backup__count_pending_changeset_changes
+msgid "The number of pending changes of this record"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,help:auto_backup.field_db_backup__count_pending_changesets
+msgid "The number of pending changesets of this record"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,help:auto_backup.field_db_backup__count_changesets
+msgid "The overall number of changesets of this record"
+msgstr ""
+
 #. module: auto_backup
 #: model:ir.model.fields,help:auto_backup.field_db_backup__sftp_password
 msgid ""
@@ -407,16 +431,6 @@ msgid ""
 "on the external server."
 msgstr ""
 
-#. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup__message_unread
-msgid "Unread Messages"
-msgstr ""
-
-#. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup__message_unread_counter
-msgid "Unread Messages Counter"
-msgstr ""
-
 #. module: auto_backup
 #: model_terms:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
 msgid ""
diff --git a/auto_backup/i18n/ar.po b/auto_backup/i18n/ar.po
index 03040e04ffd..fdadf748590 100644
--- a/auto_backup/i18n/ar.po
+++ b/auto_backup/i18n/ar.po
@@ -63,7 +63,6 @@ msgstr ""
 #. module: auto_backup
 #: model:ir.actions.server,name:auto_backup.ir_cron_backup_scheduler_0_ir_actions_server
 #: model:ir.cron,cron_name:auto_backup.ir_cron_backup_scheduler_0
-#: model:ir.cron,name:auto_backup.ir_cron_backup_scheduler_0
 msgid "Backup Scheduler"
 msgstr ""
 
@@ -110,23 +109,31 @@ msgid "Choose the storage method for this backup."
 msgstr ""
 
 #. module: auto_backup
+#. odoo-python
 #: code:addons/auto_backup/models/db_backup.py:0
 #, python-format
 msgid "Cleanup of old database backups failed."
 msgstr ""
 
 #. module: auto_backup
+#. odoo-python
 #: code:addons/auto_backup/models/db_backup.py:0
 #, python-format
 msgid "Connection Test Failed!"
 msgstr ""
 
 #. module: auto_backup
+#. odoo-python
 #: code:addons/auto_backup/models/db_backup.py:0
 #, python-format
 msgid "Connection Test Succeeded!"
 msgstr ""
 
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__count_changesets
+msgid "Count Changesets"
+msgstr ""
+
 #. module: auto_backup
 #: model:ir.model.fields,field_description:auto_backup.field_db_backup__count_pending_changeset_changes
 msgid "Count Pending Changeset Changes"
@@ -153,6 +160,7 @@ msgid "Database Backup"
 msgstr ""
 
 #. module: auto_backup
+#. odoo-python
 #: code:addons/auto_backup/models/db_backup.py:0
 #: model:mail.message.subtype,description:auto_backup.mail_message_subtype_failure
 #, python-format
@@ -160,6 +168,7 @@ msgid "Database backup failed."
 msgstr ""
 
 #. module: auto_backup
+#. odoo-python
 #: code:addons/auto_backup/models/db_backup.py:0
 #: model:mail.message.subtype,description:auto_backup.mail_message_subtype_success
 #, python-format
@@ -177,6 +186,7 @@ msgid "Display Name"
 msgstr "اسم العرض"
 
 #. module: auto_backup
+#. odoo-python
 #: code:addons/auto_backup/models/db_backup.py:0
 #, python-format
 msgid ""
@@ -235,7 +245,6 @@ msgstr "المعرف"
 
 #. module: auto_backup
 #: model:ir.model.fields,help:auto_backup.field_db_backup__message_needaction
-#: model:ir.model.fields,help:auto_backup.field_db_backup__message_unread
 msgid "If checked, new messages require your attention."
 msgstr ""
 
@@ -307,7 +316,7 @@ msgstr ""
 
 #. module: auto_backup
 #: model:ir.model.fields,help:auto_backup.field_db_backup__message_needaction_counter
-msgid "Number of messages which requires an action"
+msgid "Number of messages requiring action"
 msgstr ""
 
 #. module: auto_backup
@@ -315,11 +324,6 @@ msgstr ""
 msgid "Number of messages with delivery error"
 msgstr ""
 
-#. module: auto_backup
-#: model:ir.model.fields,help:auto_backup.field_db_backup__message_unread_counter
-msgid "Number of unread messages"
-msgstr ""
-
 #. module: auto_backup
 #: model:ir.model.fields,help:auto_backup.field_db_backup__sftp_private_key
 msgid ""
@@ -373,6 +377,11 @@ msgid ""
 "Set the scheduler to active and fill in how often you want backups generated."
 msgstr ""
 
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__smart_search
+msgid "Smart Search"
+msgstr ""
+
 #. module: auto_backup
 #: model:ir.model.fields,help:auto_backup.field_db_backup__name
 msgid "Summary of this backup process"
@@ -389,6 +398,21 @@ msgid ""
 "The host name or IP address from your remote server. For example 192.168.0.1"
 msgstr ""
 
+#. module: auto_backup
+#: model:ir.model.fields,help:auto_backup.field_db_backup__count_pending_changeset_changes
+msgid "The number of pending changes of this record"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,help:auto_backup.field_db_backup__count_pending_changesets
+msgid "The number of pending changesets of this record"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,help:auto_backup.field_db_backup__count_changesets
+msgid "The overall number of changesets of this record"
+msgstr ""
+
 #. module: auto_backup
 #: model:ir.model.fields,help:auto_backup.field_db_backup__sftp_password
 msgid ""
@@ -408,16 +432,6 @@ msgid ""
 "on the external server."
 msgstr ""
 
-#. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup__message_unread
-msgid "Unread Messages"
-msgstr ""
-
-#. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup__message_unread_counter
-msgid "Unread Messages Counter"
-msgstr ""
-
 #. module: auto_backup
 #: model_terms:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
 msgid ""
diff --git a/auto_backup/i18n/bg.po b/auto_backup/i18n/bg.po
index d8b808809f1..1b07ecf425d 100644
--- a/auto_backup/i18n/bg.po
+++ b/auto_backup/i18n/bg.po
@@ -62,7 +62,6 @@ msgstr ""
 #. module: auto_backup
 #: model:ir.actions.server,name:auto_backup.ir_cron_backup_scheduler_0_ir_actions_server
 #: model:ir.cron,cron_name:auto_backup.ir_cron_backup_scheduler_0
-#: model:ir.cron,name:auto_backup.ir_cron_backup_scheduler_0
 msgid "Backup Scheduler"
 msgstr ""
 
@@ -109,23 +108,31 @@ msgid "Choose the storage method for this backup."
 msgstr ""
 
 #. module: auto_backup
+#. odoo-python
 #: code:addons/auto_backup/models/db_backup.py:0
 #, python-format
 msgid "Cleanup of old database backups failed."
 msgstr ""
 
 #. module: auto_backup
+#. odoo-python
 #: code:addons/auto_backup/models/db_backup.py:0
 #, python-format
 msgid "Connection Test Failed!"
 msgstr ""
 
 #. module: auto_backup
+#. odoo-python
 #: code:addons/auto_backup/models/db_backup.py:0
 #, python-format
 msgid "Connection Test Succeeded!"
 msgstr ""
 
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__count_changesets
+msgid "Count Changesets"
+msgstr ""
+
 #. module: auto_backup
 #: model:ir.model.fields,field_description:auto_backup.field_db_backup__count_pending_changeset_changes
 msgid "Count Pending Changeset Changes"
@@ -152,6 +159,7 @@ msgid "Database Backup"
 msgstr ""
 
 #. module: auto_backup
+#. odoo-python
 #: code:addons/auto_backup/models/db_backup.py:0
 #: model:mail.message.subtype,description:auto_backup.mail_message_subtype_failure
 #, python-format
@@ -159,6 +167,7 @@ msgid "Database backup failed."
 msgstr ""
 
 #. module: auto_backup
+#. odoo-python
 #: code:addons/auto_backup/models/db_backup.py:0
 #: model:mail.message.subtype,description:auto_backup.mail_message_subtype_success
 #, python-format
@@ -176,6 +185,7 @@ msgid "Display Name"
 msgstr "Име за показване"
 
 #. module: auto_backup
+#. odoo-python
 #: code:addons/auto_backup/models/db_backup.py:0
 #, python-format
 msgid ""
@@ -234,7 +244,6 @@ msgstr "ID"
 
 #. module: auto_backup
 #: model:ir.model.fields,help:auto_backup.field_db_backup__message_needaction
-#: model:ir.model.fields,help:auto_backup.field_db_backup__message_unread
 msgid "If checked, new messages require your attention."
 msgstr ""
 
@@ -306,7 +315,7 @@ msgstr ""
 
 #. module: auto_backup
 #: model:ir.model.fields,help:auto_backup.field_db_backup__message_needaction_counter
-msgid "Number of messages which requires an action"
+msgid "Number of messages requiring action"
 msgstr ""
 
 #. module: auto_backup
@@ -314,11 +323,6 @@ msgstr ""
 msgid "Number of messages with delivery error"
 msgstr ""
 
-#. module: auto_backup
-#: model:ir.model.fields,help:auto_backup.field_db_backup__message_unread_counter
-msgid "Number of unread messages"
-msgstr ""
-
 #. module: auto_backup
 #: model:ir.model.fields,help:auto_backup.field_db_backup__sftp_private_key
 msgid ""
@@ -372,6 +376,11 @@ msgid ""
 "Set the scheduler to active and fill in how often you want backups generated."
 msgstr ""
 
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__smart_search
+msgid "Smart Search"
+msgstr ""
+
 #. module: auto_backup
 #: model:ir.model.fields,help:auto_backup.field_db_backup__name
 msgid "Summary of this backup process"
@@ -388,6 +397,21 @@ msgid ""
 "The host name or IP address from your remote server. For example 192.168.0.1"
 msgstr ""
 
+#. module: auto_backup
+#: model:ir.model.fields,help:auto_backup.field_db_backup__count_pending_changeset_changes
+msgid "The number of pending changes of this record"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,help:auto_backup.field_db_backup__count_pending_changesets
+msgid "The number of pending changesets of this record"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,help:auto_backup.field_db_backup__count_changesets
+msgid "The overall number of changesets of this record"
+msgstr ""
+
 #. module: auto_backup
 #: model:ir.model.fields,help:auto_backup.field_db_backup__sftp_password
 msgid ""
@@ -407,16 +431,6 @@ msgid ""
 "on the external server."
 msgstr ""
 
-#. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup__message_unread
-msgid "Unread Messages"
-msgstr ""
-
-#. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup__message_unread_counter
-msgid "Unread Messages Counter"
-msgstr ""
-
 #. module: auto_backup
 #: model_terms:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
 msgid ""
diff --git a/auto_backup/i18n/bs.po b/auto_backup/i18n/bs.po
index 105236351d0..1a92e5a64cd 100644
--- a/auto_backup/i18n/bs.po
+++ b/auto_backup/i18n/bs.po
@@ -63,7 +63,6 @@ msgstr ""
 #. module: auto_backup
 #: model:ir.actions.server,name:auto_backup.ir_cron_backup_scheduler_0_ir_actions_server
 #: model:ir.cron,cron_name:auto_backup.ir_cron_backup_scheduler_0
-#: model:ir.cron,name:auto_backup.ir_cron_backup_scheduler_0
 msgid "Backup Scheduler"
 msgstr ""
 
@@ -110,23 +109,31 @@ msgid "Choose the storage method for this backup."
 msgstr ""
 
 #. module: auto_backup
+#. odoo-python
 #: code:addons/auto_backup/models/db_backup.py:0
 #, python-format
 msgid "Cleanup of old database backups failed."
 msgstr ""
 
 #. module: auto_backup
+#. odoo-python
 #: code:addons/auto_backup/models/db_backup.py:0
 #, python-format
 msgid "Connection Test Failed!"
 msgstr ""
 
 #. module: auto_backup
+#. odoo-python
 #: code:addons/auto_backup/models/db_backup.py:0
 #, python-format
 msgid "Connection Test Succeeded!"
 msgstr ""
 
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__count_changesets
+msgid "Count Changesets"
+msgstr ""
+
 #. module: auto_backup
 #: model:ir.model.fields,field_description:auto_backup.field_db_backup__count_pending_changeset_changes
 msgid "Count Pending Changeset Changes"
@@ -153,6 +160,7 @@ msgid "Database Backup"
 msgstr ""
 
 #. module: auto_backup
+#. odoo-python
 #: code:addons/auto_backup/models/db_backup.py:0
 #: model:mail.message.subtype,description:auto_backup.mail_message_subtype_failure
 #, python-format
@@ -160,6 +168,7 @@ msgid "Database backup failed."
 msgstr ""
 
 #. module: auto_backup
+#. odoo-python
 #: code:addons/auto_backup/models/db_backup.py:0
 #: model:mail.message.subtype,description:auto_backup.mail_message_subtype_success
 #, python-format
@@ -177,6 +186,7 @@ msgid "Display Name"
 msgstr "Prikaži naziv"
 
 #. module: auto_backup
+#. odoo-python
 #: code:addons/auto_backup/models/db_backup.py:0
 #, python-format
 msgid ""
@@ -235,7 +245,6 @@ msgstr "ID"
 
 #. module: auto_backup
 #: model:ir.model.fields,help:auto_backup.field_db_backup__message_needaction
-#: model:ir.model.fields,help:auto_backup.field_db_backup__message_unread
 msgid "If checked, new messages require your attention."
 msgstr ""
 
@@ -307,7 +316,7 @@ msgstr ""
 
 #. module: auto_backup
 #: model:ir.model.fields,help:auto_backup.field_db_backup__message_needaction_counter
-msgid "Number of messages which requires an action"
+msgid "Number of messages requiring action"
 msgstr ""
 
 #. module: auto_backup
@@ -315,11 +324,6 @@ msgstr ""
 msgid "Number of messages with delivery error"
 msgstr ""
 
-#. module: auto_backup
-#: model:ir.model.fields,help:auto_backup.field_db_backup__message_unread_counter
-msgid "Number of unread messages"
-msgstr ""
-
 #. module: auto_backup
 #: model:ir.model.fields,help:auto_backup.field_db_backup__sftp_private_key
 msgid ""
@@ -373,6 +377,11 @@ msgid ""
 "Set the scheduler to active and fill in how often you want backups generated."
 msgstr ""
 
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__smart_search
+msgid "Smart Search"
+msgstr ""
+
 #. module: auto_backup
 #: model:ir.model.fields,help:auto_backup.field_db_backup__name
 msgid "Summary of this backup process"
@@ -389,6 +398,21 @@ msgid ""
 "The host name or IP address from your remote server. For example 192.168.0.1"
 msgstr ""
 
+#. module: auto_backup
+#: model:ir.model.fields,help:auto_backup.field_db_backup__count_pending_changeset_changes
+msgid "The number of pending changes of this record"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,help:auto_backup.field_db_backup__count_pending_changesets
+msgid "The number of pending changesets of this record"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,help:auto_backup.field_db_backup__count_changesets
+msgid "The overall number of changesets of this record"
+msgstr ""
+
 #. module: auto_backup
 #: model:ir.model.fields,help:auto_backup.field_db_backup__sftp_password
 msgid ""
@@ -408,16 +432,6 @@ msgid ""
 "on the external server."
 msgstr ""
 
-#. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup__message_unread
-msgid "Unread Messages"
-msgstr ""
-
-#. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup__message_unread_counter
-msgid "Unread Messages Counter"
-msgstr ""
-
 #. module: auto_backup
 #: model_terms:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
 msgid ""
diff --git a/auto_backup/i18n/ca.po b/auto_backup/i18n/ca.po
index e8bb3426e76..57e627aa95a 100644
--- a/auto_backup/i18n/ca.po
+++ b/auto_backup/i18n/ca.po
@@ -62,7 +62,6 @@ msgstr ""
 #. module: auto_backup
 #: model:ir.actions.server,name:auto_backup.ir_cron_backup_scheduler_0_ir_actions_server
 #: model:ir.cron,cron_name:auto_backup.ir_cron_backup_scheduler_0
-#: model:ir.cron,name:auto_backup.ir_cron_backup_scheduler_0
 msgid "Backup Scheduler"
 msgstr ""
 
@@ -109,23 +108,31 @@ msgid "Choose the storage method for this backup."
 msgstr ""
 
 #. module: auto_backup
+#. odoo-python
 #: code:addons/auto_backup/models/db_backup.py:0
 #, python-format
 msgid "Cleanup of old database backups failed."
 msgstr ""
 
 #. module: auto_backup
+#. odoo-python
 #: code:addons/auto_backup/models/db_backup.py:0
 #, python-format
 msgid "Connection Test Failed!"
 msgstr ""
 
 #. module: auto_backup
+#. odoo-python
 #: code:addons/auto_backup/models/db_backup.py:0
 #, python-format
 msgid "Connection Test Succeeded!"
 msgstr ""
 
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__count_changesets
+msgid "Count Changesets"
+msgstr ""
+
 #. module: auto_backup
 #: model:ir.model.fields,field_description:auto_backup.field_db_backup__count_pending_changeset_changes
 msgid "Count Pending Changeset Changes"
@@ -152,6 +159,7 @@ msgid "Database Backup"
 msgstr ""
 
 #. module: auto_backup
+#. odoo-python
 #: code:addons/auto_backup/models/db_backup.py:0
 #: model:mail.message.subtype,description:auto_backup.mail_message_subtype_failure
 #, python-format
@@ -159,6 +167,7 @@ msgid "Database backup failed."
 msgstr ""
 
 #. module: auto_backup
+#. odoo-python
 #: code:addons/auto_backup/models/db_backup.py:0
 #: model:mail.message.subtype,description:auto_backup.mail_message_subtype_success
 #, python-format
@@ -176,6 +185,7 @@ msgid "Display Name"
 msgstr "Nom a mostrar"
 
 #. module: auto_backup
+#. odoo-python
 #: code:addons/auto_backup/models/db_backup.py:0
 #, python-format
 msgid ""
@@ -234,7 +244,6 @@ msgstr "ID"
 
 #. module: auto_backup
 #: model:ir.model.fields,help:auto_backup.field_db_backup__message_needaction
-#: model:ir.model.fields,help:auto_backup.field_db_backup__message_unread
 msgid "If checked, new messages require your attention."
 msgstr ""
 
@@ -306,7 +315,7 @@ msgstr ""
 
 #. module: auto_backup
 #: model:ir.model.fields,help:auto_backup.field_db_backup__message_needaction_counter
-msgid "Number of messages which requires an action"
+msgid "Number of messages requiring action"
 msgstr ""
 
 #. module: auto_backup
@@ -314,11 +323,6 @@ msgstr ""
 msgid "Number of messages with delivery error"
 msgstr ""
 
-#. module: auto_backup
-#: model:ir.model.fields,help:auto_backup.field_db_backup__message_unread_counter
-msgid "Number of unread messages"
-msgstr ""
-
 #. module: auto_backup
 #: model:ir.model.fields,help:auto_backup.field_db_backup__sftp_private_key
 msgid ""
@@ -372,6 +376,11 @@ msgid ""
 "Set the scheduler to active and fill in how often you want backups generated."
 msgstr ""
 
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__smart_search
+msgid "Smart Search"
+msgstr ""
+
 #. module: auto_backup
 #: model:ir.model.fields,help:auto_backup.field_db_backup__name
 msgid "Summary of this backup process"
@@ -388,6 +397,21 @@ msgid ""
 "The host name or IP address from your remote server. For example 192.168.0.1"
 msgstr ""
 
+#. module: auto_backup
+#: model:ir.model.fields,help:auto_backup.field_db_backup__count_pending_changeset_changes
+msgid "The number of pending changes of this record"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,help:auto_backup.field_db_backup__count_pending_changesets
+msgid "The number of pending changesets of this record"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,help:auto_backup.field_db_backup__count_changesets
+msgid "The overall number of changesets of this record"
+msgstr ""
+
 #. module: auto_backup
 #: model:ir.model.fields,help:auto_backup.field_db_backup__sftp_password
 msgid ""
@@ -407,16 +431,6 @@ msgid ""
 "on the external server."
 msgstr ""
 
-#. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup__message_unread
-msgid "Unread Messages"
-msgstr ""
-
-#. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup__message_unread_counter
-msgid "Unread Messages Counter"
-msgstr ""
-
 #. module: auto_backup
 #: model_terms:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
 msgid ""
diff --git a/auto_backup/i18n/cs.po b/auto_backup/i18n/cs.po
index 8cf1d0af6e6..df068df2fb7 100644
--- a/auto_backup/i18n/cs.po
+++ b/auto_backup/i18n/cs.po
@@ -62,7 +62,6 @@ msgstr ""
 #. module: auto_backup
 #: model:ir.actions.server,name:auto_backup.ir_cron_backup_scheduler_0_ir_actions_server
 #: model:ir.cron,cron_name:auto_backup.ir_cron_backup_scheduler_0
-#: model:ir.cron,name:auto_backup.ir_cron_backup_scheduler_0
 msgid "Backup Scheduler"
 msgstr ""
 
@@ -109,23 +108,31 @@ msgid "Choose the storage method for this backup."
 msgstr ""
 
 #. module: auto_backup
+#. odoo-python
 #: code:addons/auto_backup/models/db_backup.py:0
 #, python-format
 msgid "Cleanup of old database backups failed."
 msgstr ""
 
 #. module: auto_backup
+#. odoo-python
 #: code:addons/auto_backup/models/db_backup.py:0
 #, python-format
 msgid "Connection Test Failed!"
 msgstr ""
 
 #. module: auto_backup
+#. odoo-python
 #: code:addons/auto_backup/models/db_backup.py:0
 #, python-format
 msgid "Connection Test Succeeded!"
 msgstr ""
 
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__count_changesets
+msgid "Count Changesets"
+msgstr ""
+
 #. module: auto_backup
 #: model:ir.model.fields,field_description:auto_backup.field_db_backup__count_pending_changeset_changes
 msgid "Count Pending Changeset Changes"
@@ -152,6 +159,7 @@ msgid "Database Backup"
 msgstr ""
 
 #. module: auto_backup
+#. odoo-python
 #: code:addons/auto_backup/models/db_backup.py:0
 #: model:mail.message.subtype,description:auto_backup.mail_message_subtype_failure
 #, python-format
@@ -159,6 +167,7 @@ msgid "Database backup failed."
 msgstr ""
 
 #. module: auto_backup
+#. odoo-python
 #: code:addons/auto_backup/models/db_backup.py:0
 #: model:mail.message.subtype,description:auto_backup.mail_message_subtype_success
 #, python-format
@@ -176,6 +185,7 @@ msgid "Display Name"
 msgstr "Zobrazovaný název"
 
 #. module: auto_backup
+#. odoo-python
 #: code:addons/auto_backup/models/db_backup.py:0
 #, python-format
 msgid ""
@@ -234,7 +244,6 @@ msgstr "ID"
 
 #. module: auto_backup
 #: model:ir.model.fields,help:auto_backup.field_db_backup__message_needaction
-#: model:ir.model.fields,help:auto_backup.field_db_backup__message_unread
 msgid "If checked, new messages require your attention."
 msgstr ""
 
@@ -306,7 +315,7 @@ msgstr ""
 
 #. module: auto_backup
 #: model:ir.model.fields,help:auto_backup.field_db_backup__message_needaction_counter
-msgid "Number of messages which requires an action"
+msgid "Number of messages requiring action"
 msgstr ""
 
 #. module: auto_backup
@@ -314,11 +323,6 @@ msgstr ""
 msgid "Number of messages with delivery error"
 msgstr ""
 
-#. module: auto_backup
-#: model:ir.model.fields,help:auto_backup.field_db_backup__message_unread_counter
-msgid "Number of unread messages"
-msgstr ""
-
 #. module: auto_backup
 #: model:ir.model.fields,help:auto_backup.field_db_backup__sftp_private_key
 msgid ""
@@ -372,6 +376,11 @@ msgid ""
 "Set the scheduler to active and fill in how often you want backups generated."
 msgstr ""
 
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__smart_search
+msgid "Smart Search"
+msgstr ""
+
 #. module: auto_backup
 #: model:ir.model.fields,help:auto_backup.field_db_backup__name
 msgid "Summary of this backup process"
@@ -388,6 +397,21 @@ msgid ""
 "The host name or IP address from your remote server. For example 192.168.0.1"
 msgstr ""
 
+#. module: auto_backup
+#: model:ir.model.fields,help:auto_backup.field_db_backup__count_pending_changeset_changes
+msgid "The number of pending changes of this record"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,help:auto_backup.field_db_backup__count_pending_changesets
+msgid "The number of pending changesets of this record"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,help:auto_backup.field_db_backup__count_changesets
+msgid "The overall number of changesets of this record"
+msgstr ""
+
 #. module: auto_backup
 #: model:ir.model.fields,help:auto_backup.field_db_backup__sftp_password
 msgid ""
@@ -407,16 +431,6 @@ msgid ""
 "on the external server."
 msgstr ""
 
-#. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup__message_unread
-msgid "Unread Messages"
-msgstr ""
-
-#. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup__message_unread_counter
-msgid "Unread Messages Counter"
-msgstr ""
-
 #. module: auto_backup
 #: model_terms:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
 msgid ""
diff --git a/auto_backup/i18n/cs_CZ.po b/auto_backup/i18n/cs_CZ.po
index da81fa428fd..0cacf7e7259 100644
--- a/auto_backup/i18n/cs_CZ.po
+++ b/auto_backup/i18n/cs_CZ.po
@@ -63,7 +63,6 @@ msgstr ""
 #. module: auto_backup
 #: model:ir.actions.server,name:auto_backup.ir_cron_backup_scheduler_0_ir_actions_server
 #: model:ir.cron,cron_name:auto_backup.ir_cron_backup_scheduler_0
-#: model:ir.cron,name:auto_backup.ir_cron_backup_scheduler_0
 msgid "Backup Scheduler"
 msgstr ""
 
@@ -110,23 +109,31 @@ msgid "Choose the storage method for this backup."
 msgstr ""
 
 #. module: auto_backup
+#. odoo-python
 #: code:addons/auto_backup/models/db_backup.py:0
 #, python-format
 msgid "Cleanup of old database backups failed."
 msgstr ""
 
 #. module: auto_backup
+#. odoo-python
 #: code:addons/auto_backup/models/db_backup.py:0
 #, python-format
 msgid "Connection Test Failed!"
 msgstr ""
 
 #. module: auto_backup
+#. odoo-python
 #: code:addons/auto_backup/models/db_backup.py:0
 #, python-format
 msgid "Connection Test Succeeded!"
 msgstr ""
 
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__count_changesets
+msgid "Count Changesets"
+msgstr ""
+
 #. module: auto_backup
 #: model:ir.model.fields,field_description:auto_backup.field_db_backup__count_pending_changeset_changes
 msgid "Count Pending Changeset Changes"
@@ -153,6 +160,7 @@ msgid "Database Backup"
 msgstr ""
 
 #. module: auto_backup
+#. odoo-python
 #: code:addons/auto_backup/models/db_backup.py:0
 #: model:mail.message.subtype,description:auto_backup.mail_message_subtype_failure
 #, python-format
@@ -160,6 +168,7 @@ msgid "Database backup failed."
 msgstr ""
 
 #. module: auto_backup
+#. odoo-python
 #: code:addons/auto_backup/models/db_backup.py:0
 #: model:mail.message.subtype,description:auto_backup.mail_message_subtype_success
 #, python-format
@@ -177,6 +186,7 @@ msgid "Display Name"
 msgstr "Zobrazit název"
 
 #. module: auto_backup
+#. odoo-python
 #: code:addons/auto_backup/models/db_backup.py:0
 #, python-format
 msgid ""
@@ -235,7 +245,6 @@ msgstr "ID"
 
 #. module: auto_backup
 #: model:ir.model.fields,help:auto_backup.field_db_backup__message_needaction
-#: model:ir.model.fields,help:auto_backup.field_db_backup__message_unread
 msgid "If checked, new messages require your attention."
 msgstr ""
 
@@ -307,7 +316,7 @@ msgstr ""
 
 #. module: auto_backup
 #: model:ir.model.fields,help:auto_backup.field_db_backup__message_needaction_counter
-msgid "Number of messages which requires an action"
+msgid "Number of messages requiring action"
 msgstr ""
 
 #. module: auto_backup
@@ -315,11 +324,6 @@ msgstr ""
 msgid "Number of messages with delivery error"
 msgstr ""
 
-#. module: auto_backup
-#: model:ir.model.fields,help:auto_backup.field_db_backup__message_unread_counter
-msgid "Number of unread messages"
-msgstr ""
-
 #. module: auto_backup
 #: model:ir.model.fields,help:auto_backup.field_db_backup__sftp_private_key
 msgid ""
@@ -373,6 +377,11 @@ msgid ""
 "Set the scheduler to active and fill in how often you want backups generated."
 msgstr ""
 
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__smart_search
+msgid "Smart Search"
+msgstr ""
+
 #. module: auto_backup
 #: model:ir.model.fields,help:auto_backup.field_db_backup__name
 msgid "Summary of this backup process"
@@ -389,6 +398,21 @@ msgid ""
 "The host name or IP address from your remote server. For example 192.168.0.1"
 msgstr ""
 
+#. module: auto_backup
+#: model:ir.model.fields,help:auto_backup.field_db_backup__count_pending_changeset_changes
+msgid "The number of pending changes of this record"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,help:auto_backup.field_db_backup__count_pending_changesets
+msgid "The number of pending changesets of this record"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,help:auto_backup.field_db_backup__count_changesets
+msgid "The overall number of changesets of this record"
+msgstr ""
+
 #. module: auto_backup
 #: model:ir.model.fields,help:auto_backup.field_db_backup__sftp_password
 msgid ""
@@ -408,16 +432,6 @@ msgid ""
 "on the external server."
 msgstr ""
 
-#. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup__message_unread
-msgid "Unread Messages"
-msgstr ""
-
-#. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup__message_unread_counter
-msgid "Unread Messages Counter"
-msgstr ""
-
 #. module: auto_backup
 #: model_terms:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
 msgid ""
diff --git a/auto_backup/i18n/da.po b/auto_backup/i18n/da.po
index 499d6be6b73..b0f6baa2a17 100644
--- a/auto_backup/i18n/da.po
+++ b/auto_backup/i18n/da.po
@@ -62,7 +62,6 @@ msgstr ""
 #. module: auto_backup
 #: model:ir.actions.server,name:auto_backup.ir_cron_backup_scheduler_0_ir_actions_server
 #: model:ir.cron,cron_name:auto_backup.ir_cron_backup_scheduler_0
-#: model:ir.cron,name:auto_backup.ir_cron_backup_scheduler_0
 msgid "Backup Scheduler"
 msgstr ""
 
@@ -109,23 +108,31 @@ msgid "Choose the storage method for this backup."
 msgstr ""
 
 #. module: auto_backup
+#. odoo-python
 #: code:addons/auto_backup/models/db_backup.py:0
 #, python-format
 msgid "Cleanup of old database backups failed."
 msgstr ""
 
 #. module: auto_backup
+#. odoo-python
 #: code:addons/auto_backup/models/db_backup.py:0
 #, python-format
 msgid "Connection Test Failed!"
 msgstr ""
 
 #. module: auto_backup
+#. odoo-python
 #: code:addons/auto_backup/models/db_backup.py:0
 #, python-format
 msgid "Connection Test Succeeded!"
 msgstr ""
 
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__count_changesets
+msgid "Count Changesets"
+msgstr ""
+
 #. module: auto_backup
 #: model:ir.model.fields,field_description:auto_backup.field_db_backup__count_pending_changeset_changes
 msgid "Count Pending Changeset Changes"
@@ -152,6 +159,7 @@ msgid "Database Backup"
 msgstr ""
 
 #. module: auto_backup
+#. odoo-python
 #: code:addons/auto_backup/models/db_backup.py:0
 #: model:mail.message.subtype,description:auto_backup.mail_message_subtype_failure
 #, python-format
@@ -159,6 +167,7 @@ msgid "Database backup failed."
 msgstr ""
 
 #. module: auto_backup
+#. odoo-python
 #: code:addons/auto_backup/models/db_backup.py:0
 #: model:mail.message.subtype,description:auto_backup.mail_message_subtype_success
 #, python-format
@@ -176,6 +185,7 @@ msgid "Display Name"
 msgstr "Vist navn"
 
 #. module: auto_backup
+#. odoo-python
 #: code:addons/auto_backup/models/db_backup.py:0
 #, python-format
 msgid ""
@@ -234,7 +244,6 @@ msgstr "Id"
 
 #. module: auto_backup
 #: model:ir.model.fields,help:auto_backup.field_db_backup__message_needaction
-#: model:ir.model.fields,help:auto_backup.field_db_backup__message_unread
 msgid "If checked, new messages require your attention."
 msgstr ""
 
@@ -306,7 +315,7 @@ msgstr ""
 
 #. module: auto_backup
 #: model:ir.model.fields,help:auto_backup.field_db_backup__message_needaction_counter
-msgid "Number of messages which requires an action"
+msgid "Number of messages requiring action"
 msgstr ""
 
 #. module: auto_backup
@@ -314,11 +323,6 @@ msgstr ""
 msgid "Number of messages with delivery error"
 msgstr ""
 
-#. module: auto_backup
-#: model:ir.model.fields,help:auto_backup.field_db_backup__message_unread_counter
-msgid "Number of unread messages"
-msgstr ""
-
 #. module: auto_backup
 #: model:ir.model.fields,help:auto_backup.field_db_backup__sftp_private_key
 msgid ""
@@ -372,6 +376,11 @@ msgid ""
 "Set the scheduler to active and fill in how often you want backups generated."
 msgstr ""
 
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__smart_search
+msgid "Smart Search"
+msgstr ""
+
 #. module: auto_backup
 #: model:ir.model.fields,help:auto_backup.field_db_backup__name
 msgid "Summary of this backup process"
@@ -388,6 +397,21 @@ msgid ""
 "The host name or IP address from your remote server. For example 192.168.0.1"
 msgstr ""
 
+#. module: auto_backup
+#: model:ir.model.fields,help:auto_backup.field_db_backup__count_pending_changeset_changes
+msgid "The number of pending changes of this record"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,help:auto_backup.field_db_backup__count_pending_changesets
+msgid "The number of pending changesets of this record"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,help:auto_backup.field_db_backup__count_changesets
+msgid "The overall number of changesets of this record"
+msgstr ""
+
 #. module: auto_backup
 #: model:ir.model.fields,help:auto_backup.field_db_backup__sftp_password
 msgid ""
@@ -407,16 +431,6 @@ msgid ""
 "on the external server."
 msgstr ""
 
-#. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup__message_unread
-msgid "Unread Messages"
-msgstr ""
-
-#. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup__message_unread_counter
-msgid "Unread Messages Counter"
-msgstr ""
-
 #. module: auto_backup
 #: model_terms:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
 msgid ""
diff --git a/auto_backup/i18n/de.po b/auto_backup/i18n/de.po
index 164ee7dd025..a52ee2463fe 100644
--- a/auto_backup/i18n/de.po
+++ b/auto_backup/i18n/de.po
@@ -64,7 +64,6 @@ msgstr "Backup fehlgeschlagen"
 #. module: auto_backup
 #: model:ir.actions.server,name:auto_backup.ir_cron_backup_scheduler_0_ir_actions_server
 #: model:ir.cron,cron_name:auto_backup.ir_cron_backup_scheduler_0
-#: model:ir.cron,name:auto_backup.ir_cron_backup_scheduler_0
 msgid "Backup Scheduler"
 msgstr ""
 
@@ -112,23 +111,31 @@ msgid "Choose the storage method for this backup."
 msgstr ""
 
 #. module: auto_backup
+#. odoo-python
 #: code:addons/auto_backup/models/db_backup.py:0
 #, python-format
 msgid "Cleanup of old database backups failed."
 msgstr ""
 
 #. module: auto_backup
+#. odoo-python
 #: code:addons/auto_backup/models/db_backup.py:0
 #, python-format
 msgid "Connection Test Failed!"
 msgstr ""
 
 #. module: auto_backup
+#. odoo-python
 #: code:addons/auto_backup/models/db_backup.py:0
 #, python-format
 msgid "Connection Test Succeeded!"
 msgstr ""
 
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__count_changesets
+msgid "Count Changesets"
+msgstr ""
+
 #. module: auto_backup
 #: model:ir.model.fields,field_description:auto_backup.field_db_backup__count_pending_changeset_changes
 msgid "Count Pending Changeset Changes"
@@ -155,6 +162,7 @@ msgid "Database Backup"
 msgstr ""
 
 #. module: auto_backup
+#. odoo-python
 #: code:addons/auto_backup/models/db_backup.py:0
 #: model:mail.message.subtype,description:auto_backup.mail_message_subtype_failure
 #, python-format
@@ -162,6 +170,7 @@ msgid "Database backup failed."
 msgstr ""
 
 #. module: auto_backup
+#. odoo-python
 #: code:addons/auto_backup/models/db_backup.py:0
 #: model:mail.message.subtype,description:auto_backup.mail_message_subtype_success
 #, python-format
@@ -179,6 +188,7 @@ msgid "Display Name"
 msgstr "Anzeigename"
 
 #. module: auto_backup
+#. odoo-python
 #: code:addons/auto_backup/models/db_backup.py:0
 #, python-format
 msgid ""
@@ -238,7 +248,6 @@ msgstr "ID"
 
 #. module: auto_backup
 #: model:ir.model.fields,help:auto_backup.field_db_backup__message_needaction
-#: model:ir.model.fields,help:auto_backup.field_db_backup__message_unread
 msgid "If checked, new messages require your attention."
 msgstr ""
 
@@ -310,7 +319,7 @@ msgstr ""
 
 #. module: auto_backup
 #: model:ir.model.fields,help:auto_backup.field_db_backup__message_needaction_counter
-msgid "Number of messages which requires an action"
+msgid "Number of messages requiring action"
 msgstr ""
 
 #. module: auto_backup
@@ -318,11 +327,6 @@ msgstr ""
 msgid "Number of messages with delivery error"
 msgstr ""
 
-#. module: auto_backup
-#: model:ir.model.fields,help:auto_backup.field_db_backup__message_unread_counter
-msgid "Number of unread messages"
-msgstr ""
-
 #. module: auto_backup
 #: model:ir.model.fields,help:auto_backup.field_db_backup__sftp_private_key
 msgid ""
@@ -378,6 +382,11 @@ msgstr ""
 "Setzen Sie die Aktion auf aktiv und geben Sie an wie oft die Sicherungen "
 "erstellt werden soll."
 
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__smart_search
+msgid "Smart Search"
+msgstr ""
+
 #. module: auto_backup
 #: model:ir.model.fields,help:auto_backup.field_db_backup__name
 msgid "Summary of this backup process"
@@ -394,6 +403,21 @@ msgid ""
 "The host name or IP address from your remote server. For example 192.168.0.1"
 msgstr ""
 
+#. module: auto_backup
+#: model:ir.model.fields,help:auto_backup.field_db_backup__count_pending_changeset_changes
+msgid "The number of pending changes of this record"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,help:auto_backup.field_db_backup__count_pending_changesets
+msgid "The number of pending changesets of this record"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,help:auto_backup.field_db_backup__count_changesets
+msgid "The overall number of changesets of this record"
+msgstr ""
+
 #. module: auto_backup
 #: model:ir.model.fields,help:auto_backup.field_db_backup__sftp_password
 msgid ""
@@ -415,16 +439,6 @@ msgstr ""
 "Der Benutzername mit dem die SFTP-Verbindung mit hergestellt werden soll. "
 "Dies ist der Benutzer auf dem externen Server."
 
-#. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup__message_unread
-msgid "Unread Messages"
-msgstr ""
-
-#. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup__message_unread_counter
-msgid "Unread Messages Counter"
-msgstr ""
-
 #. module: auto_backup
 #: model_terms:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
 msgid ""
diff --git a/auto_backup/i18n/el_GR.po b/auto_backup/i18n/el_GR.po
index 68fecdc6ab4..ae95a20f679 100644
--- a/auto_backup/i18n/el_GR.po
+++ b/auto_backup/i18n/el_GR.po
@@ -63,7 +63,6 @@ msgstr ""
 #. module: auto_backup
 #: model:ir.actions.server,name:auto_backup.ir_cron_backup_scheduler_0_ir_actions_server
 #: model:ir.cron,cron_name:auto_backup.ir_cron_backup_scheduler_0
-#: model:ir.cron,name:auto_backup.ir_cron_backup_scheduler_0
 msgid "Backup Scheduler"
 msgstr ""
 
@@ -110,23 +109,31 @@ msgid "Choose the storage method for this backup."
 msgstr ""
 
 #. module: auto_backup
+#. odoo-python
 #: code:addons/auto_backup/models/db_backup.py:0
 #, python-format
 msgid "Cleanup of old database backups failed."
 msgstr ""
 
 #. module: auto_backup
+#. odoo-python
 #: code:addons/auto_backup/models/db_backup.py:0
 #, python-format
 msgid "Connection Test Failed!"
 msgstr ""
 
 #. module: auto_backup
+#. odoo-python
 #: code:addons/auto_backup/models/db_backup.py:0
 #, python-format
 msgid "Connection Test Succeeded!"
 msgstr ""
 
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__count_changesets
+msgid "Count Changesets"
+msgstr ""
+
 #. module: auto_backup
 #: model:ir.model.fields,field_description:auto_backup.field_db_backup__count_pending_changeset_changes
 msgid "Count Pending Changeset Changes"
@@ -153,6 +160,7 @@ msgid "Database Backup"
 msgstr ""
 
 #. module: auto_backup
+#. odoo-python
 #: code:addons/auto_backup/models/db_backup.py:0
 #: model:mail.message.subtype,description:auto_backup.mail_message_subtype_failure
 #, python-format
@@ -160,6 +168,7 @@ msgid "Database backup failed."
 msgstr ""
 
 #. module: auto_backup
+#. odoo-python
 #: code:addons/auto_backup/models/db_backup.py:0
 #: model:mail.message.subtype,description:auto_backup.mail_message_subtype_success
 #, python-format
@@ -177,6 +186,7 @@ msgid "Display Name"
 msgstr ""
 
 #. module: auto_backup
+#. odoo-python
 #: code:addons/auto_backup/models/db_backup.py:0
 #, python-format
 msgid ""
@@ -235,7 +245,6 @@ msgstr "ID"
 
 #. module: auto_backup
 #: model:ir.model.fields,help:auto_backup.field_db_backup__message_needaction
-#: model:ir.model.fields,help:auto_backup.field_db_backup__message_unread
 msgid "If checked, new messages require your attention."
 msgstr ""
 
@@ -307,7 +316,7 @@ msgstr ""
 
 #. module: auto_backup
 #: model:ir.model.fields,help:auto_backup.field_db_backup__message_needaction_counter
-msgid "Number of messages which requires an action"
+msgid "Number of messages requiring action"
 msgstr ""
 
 #. module: auto_backup
@@ -315,11 +324,6 @@ msgstr ""
 msgid "Number of messages with delivery error"
 msgstr ""
 
-#. module: auto_backup
-#: model:ir.model.fields,help:auto_backup.field_db_backup__message_unread_counter
-msgid "Number of unread messages"
-msgstr ""
-
 #. module: auto_backup
 #: model:ir.model.fields,help:auto_backup.field_db_backup__sftp_private_key
 msgid ""
@@ -373,6 +377,11 @@ msgid ""
 "Set the scheduler to active and fill in how often you want backups generated."
 msgstr ""
 
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__smart_search
+msgid "Smart Search"
+msgstr ""
+
 #. module: auto_backup
 #: model:ir.model.fields,help:auto_backup.field_db_backup__name
 msgid "Summary of this backup process"
@@ -389,6 +398,21 @@ msgid ""
 "The host name or IP address from your remote server. For example 192.168.0.1"
 msgstr ""
 
+#. module: auto_backup
+#: model:ir.model.fields,help:auto_backup.field_db_backup__count_pending_changeset_changes
+msgid "The number of pending changes of this record"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,help:auto_backup.field_db_backup__count_pending_changesets
+msgid "The number of pending changesets of this record"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,help:auto_backup.field_db_backup__count_changesets
+msgid "The overall number of changesets of this record"
+msgstr ""
+
 #. module: auto_backup
 #: model:ir.model.fields,help:auto_backup.field_db_backup__sftp_password
 msgid ""
@@ -408,16 +432,6 @@ msgid ""
 "on the external server."
 msgstr ""
 
-#. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup__message_unread
-msgid "Unread Messages"
-msgstr ""
-
-#. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup__message_unread_counter
-msgid "Unread Messages Counter"
-msgstr ""
-
 #. module: auto_backup
 #: model_terms:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
 msgid ""
diff --git a/auto_backup/i18n/en_GB.po b/auto_backup/i18n/en_GB.po
index 57ed47ab503..039e3eb7a5c 100644
--- a/auto_backup/i18n/en_GB.po
+++ b/auto_backup/i18n/en_GB.po
@@ -63,7 +63,6 @@ msgstr ""
 #. module: auto_backup
 #: model:ir.actions.server,name:auto_backup.ir_cron_backup_scheduler_0_ir_actions_server
 #: model:ir.cron,cron_name:auto_backup.ir_cron_backup_scheduler_0
-#: model:ir.cron,name:auto_backup.ir_cron_backup_scheduler_0
 msgid "Backup Scheduler"
 msgstr ""
 
@@ -110,23 +109,31 @@ msgid "Choose the storage method for this backup."
 msgstr ""
 
 #. module: auto_backup
+#. odoo-python
 #: code:addons/auto_backup/models/db_backup.py:0
 #, python-format
 msgid "Cleanup of old database backups failed."
 msgstr ""
 
 #. module: auto_backup
+#. odoo-python
 #: code:addons/auto_backup/models/db_backup.py:0
 #, python-format
 msgid "Connection Test Failed!"
 msgstr ""
 
 #. module: auto_backup
+#. odoo-python
 #: code:addons/auto_backup/models/db_backup.py:0
 #, python-format
 msgid "Connection Test Succeeded!"
 msgstr ""
 
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__count_changesets
+msgid "Count Changesets"
+msgstr ""
+
 #. module: auto_backup
 #: model:ir.model.fields,field_description:auto_backup.field_db_backup__count_pending_changeset_changes
 msgid "Count Pending Changeset Changes"
@@ -153,6 +160,7 @@ msgid "Database Backup"
 msgstr ""
 
 #. module: auto_backup
+#. odoo-python
 #: code:addons/auto_backup/models/db_backup.py:0
 #: model:mail.message.subtype,description:auto_backup.mail_message_subtype_failure
 #, python-format
@@ -160,6 +168,7 @@ msgid "Database backup failed."
 msgstr ""
 
 #. module: auto_backup
+#. odoo-python
 #: code:addons/auto_backup/models/db_backup.py:0
 #: model:mail.message.subtype,description:auto_backup.mail_message_subtype_success
 #, python-format
@@ -177,6 +186,7 @@ msgid "Display Name"
 msgstr "Display Name"
 
 #. module: auto_backup
+#. odoo-python
 #: code:addons/auto_backup/models/db_backup.py:0
 #, python-format
 msgid ""
@@ -235,7 +245,6 @@ msgstr "ID"
 
 #. module: auto_backup
 #: model:ir.model.fields,help:auto_backup.field_db_backup__message_needaction
-#: model:ir.model.fields,help:auto_backup.field_db_backup__message_unread
 msgid "If checked, new messages require your attention."
 msgstr ""
 
@@ -307,7 +316,7 @@ msgstr ""
 
 #. module: auto_backup
 #: model:ir.model.fields,help:auto_backup.field_db_backup__message_needaction_counter
-msgid "Number of messages which requires an action"
+msgid "Number of messages requiring action"
 msgstr ""
 
 #. module: auto_backup
@@ -315,11 +324,6 @@ msgstr ""
 msgid "Number of messages with delivery error"
 msgstr ""
 
-#. module: auto_backup
-#: model:ir.model.fields,help:auto_backup.field_db_backup__message_unread_counter
-msgid "Number of unread messages"
-msgstr ""
-
 #. module: auto_backup
 #: model:ir.model.fields,help:auto_backup.field_db_backup__sftp_private_key
 msgid ""
@@ -373,6 +377,11 @@ msgid ""
 "Set the scheduler to active and fill in how often you want backups generated."
 msgstr ""
 
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__smart_search
+msgid "Smart Search"
+msgstr ""
+
 #. module: auto_backup
 #: model:ir.model.fields,help:auto_backup.field_db_backup__name
 msgid "Summary of this backup process"
@@ -389,6 +398,21 @@ msgid ""
 "The host name or IP address from your remote server. For example 192.168.0.1"
 msgstr ""
 
+#. module: auto_backup
+#: model:ir.model.fields,help:auto_backup.field_db_backup__count_pending_changeset_changes
+msgid "The number of pending changes of this record"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,help:auto_backup.field_db_backup__count_pending_changesets
+msgid "The number of pending changesets of this record"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,help:auto_backup.field_db_backup__count_changesets
+msgid "The overall number of changesets of this record"
+msgstr ""
+
 #. module: auto_backup
 #: model:ir.model.fields,help:auto_backup.field_db_backup__sftp_password
 msgid ""
@@ -408,16 +432,6 @@ msgid ""
 "on the external server."
 msgstr ""
 
-#. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup__message_unread
-msgid "Unread Messages"
-msgstr ""
-
-#. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup__message_unread_counter
-msgid "Unread Messages Counter"
-msgstr ""
-
 #. module: auto_backup
 #: model_terms:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
 msgid ""
diff --git a/auto_backup/i18n/es.po b/auto_backup/i18n/es.po
index 42e1a2a7f6a..c97635afe8c 100644
--- a/auto_backup/i18n/es.po
+++ b/auto_backup/i18n/es.po
@@ -65,7 +65,6 @@ msgstr "Formato de copia de Seguridad"
 #. module: auto_backup
 #: model:ir.actions.server,name:auto_backup.ir_cron_backup_scheduler_0_ir_actions_server
 #: model:ir.cron,cron_name:auto_backup.ir_cron_backup_scheduler_0
-#: model:ir.cron,name:auto_backup.ir_cron_backup_scheduler_0
 msgid "Backup Scheduler"
 msgstr "Planificador de Copia de Seguridad"
 
@@ -114,6 +113,7 @@ msgid "Choose the storage method for this backup."
 msgstr "Elija el método de almacenamiento para esta copia de seguridad."
 
 #. module: auto_backup
+#. odoo-python
 #: code:addons/auto_backup/models/db_backup.py:0
 #, python-format
 msgid "Cleanup of old database backups failed."
@@ -122,17 +122,24 @@ msgstr ""
 "fallado."
 
 #. module: auto_backup
+#. odoo-python
 #: code:addons/auto_backup/models/db_backup.py:0
 #, python-format
 msgid "Connection Test Failed!"
 msgstr "Error en la prueba de conexión!"
 
 #. module: auto_backup
+#. odoo-python
 #: code:addons/auto_backup/models/db_backup.py:0
 #, python-format
 msgid "Connection Test Succeeded!"
 msgstr "Prueba de conexión correcta!"
 
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__count_changesets
+msgid "Count Changesets"
+msgstr ""
+
 #. module: auto_backup
 #: model:ir.model.fields,field_description:auto_backup.field_db_backup__count_pending_changeset_changes
 msgid "Count Pending Changeset Changes"
@@ -159,6 +166,7 @@ msgid "Database Backup"
 msgstr "Copia de seguridad de la base de datos"
 
 #. module: auto_backup
+#. odoo-python
 #: code:addons/auto_backup/models/db_backup.py:0
 #: model:mail.message.subtype,description:auto_backup.mail_message_subtype_failure
 #, python-format
@@ -166,6 +174,7 @@ msgid "Database backup failed."
 msgstr "La copia de seguridad de la base de datos ha fallado."
 
 #. module: auto_backup
+#. odoo-python
 #: code:addons/auto_backup/models/db_backup.py:0
 #: model:mail.message.subtype,description:auto_backup.mail_message_subtype_success
 #, python-format
@@ -183,6 +192,7 @@ msgid "Display Name"
 msgstr "Nombre a mostrar"
 
 #. module: auto_backup
+#. odoo-python
 #: code:addons/auto_backup/models/db_backup.py:0
 #, python-format
 msgid ""
@@ -245,7 +255,6 @@ msgstr "ID"
 
 #. module: auto_backup
 #: model:ir.model.fields,help:auto_backup.field_db_backup__message_needaction
-#: model:ir.model.fields,help:auto_backup.field_db_backup__message_unread
 msgid "If checked, new messages require your attention."
 msgstr "Si está marcado. nuevos mensajes requieren su atención."
 
@@ -317,19 +326,14 @@ msgstr "Número de Errores"
 
 #. module: auto_backup
 #: model:ir.model.fields,help:auto_backup.field_db_backup__message_needaction_counter
-msgid "Number of messages which requires an action"
-msgstr "Número de mensajes que requieren un acción"
+msgid "Number of messages requiring action"
+msgstr ""
 
 #. module: auto_backup
 #: model:ir.model.fields,help:auto_backup.field_db_backup__message_has_error_counter
 msgid "Number of messages with delivery error"
 msgstr "Número de mensajes con error de entrega"
 
-#. module: auto_backup
-#: model:ir.model.fields,help:auto_backup.field_db_backup__message_unread_counter
-msgid "Number of unread messages"
-msgstr "Número de mensajes no leídos"
-
 #. module: auto_backup
 #: model:ir.model.fields,help:auto_backup.field_db_backup__sftp_private_key
 msgid ""
@@ -387,6 +391,11 @@ msgstr ""
 "Ajuste el programador para activar y rellenar con qué frecuencia desea las "
 "copias de seguridad generadas."
 
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__smart_search
+msgid "Smart Search"
+msgstr ""
+
 #. module: auto_backup
 #: model:ir.model.fields,help:auto_backup.field_db_backup__name
 msgid "Summary of this backup process"
@@ -405,6 +414,21 @@ msgstr ""
 "El nombre del host o la dirección IP de su servidor remoto. Por ejemplo "
 "192.168.0.1"
 
+#. module: auto_backup
+#: model:ir.model.fields,help:auto_backup.field_db_backup__count_pending_changeset_changes
+msgid "The number of pending changes of this record"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,help:auto_backup.field_db_backup__count_pending_changesets
+msgid "The number of pending changesets of this record"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,help:auto_backup.field_db_backup__count_changesets
+msgid "The overall number of changesets of this record"
+msgstr ""
+
 #. module: auto_backup
 #: model:ir.model.fields,help:auto_backup.field_db_backup__sftp_password
 msgid ""
@@ -428,16 +452,6 @@ msgstr ""
 "El nombre de usuario donde la conexión SFTP se debe hacer con. Este es el "
 "usuario en el servidor externo."
 
-#. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup__message_unread
-msgid "Unread Messages"
-msgstr "Mensajes No Leídos"
-
-#. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup__message_unread_counter
-msgid "Unread Messages Counter"
-msgstr "Contador de Mensajes no Leídos"
-
 #. module: auto_backup
 #: model_terms:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
 msgid ""
@@ -491,3 +505,15 @@ msgstr "sftp.example.com"
 #: model:ir.model.fields.selection,name:auto_backup.selection__db_backup__backup_format__zip
 msgid "zip (includes filestore)"
 msgstr "zip (incluye almacén de archivos)"
+
+#~ msgid "Number of messages which requires an action"
+#~ msgstr "Número de mensajes que requieren un acción"
+
+#~ msgid "Number of unread messages"
+#~ msgstr "Número de mensajes no leídos"
+
+#~ msgid "Unread Messages"
+#~ msgstr "Mensajes No Leídos"
+
+#~ msgid "Unread Messages Counter"
+#~ msgstr "Contador de Mensajes no Leídos"
diff --git a/auto_backup/i18n/es_AR.po b/auto_backup/i18n/es_AR.po
index f1f3088022e..079c18612e7 100644
--- a/auto_backup/i18n/es_AR.po
+++ b/auto_backup/i18n/es_AR.po
@@ -66,7 +66,6 @@ msgstr "Formato de Copia de Seguridad"
 #. module: auto_backup
 #: model:ir.actions.server,name:auto_backup.ir_cron_backup_scheduler_0_ir_actions_server
 #: model:ir.cron,cron_name:auto_backup.ir_cron_backup_scheduler_0
-#: model:ir.cron,name:auto_backup.ir_cron_backup_scheduler_0
 msgid "Backup Scheduler"
 msgstr "Planificador de Copia de Seguridad"
 
@@ -115,23 +114,31 @@ msgid "Choose the storage method for this backup."
 msgstr "Elija el método de almacenamiento para esta copia de seguridad."
 
 #. module: auto_backup
+#. odoo-python
 #: code:addons/auto_backup/models/db_backup.py:0
 #, python-format
 msgid "Cleanup of old database backups failed."
 msgstr "La limpieza de una base de datos antigua falló."
 
 #. module: auto_backup
+#. odoo-python
 #: code:addons/auto_backup/models/db_backup.py:0
 #, python-format
 msgid "Connection Test Failed!"
 msgstr "¡La Prueba de Conexión Falló!"
 
 #. module: auto_backup
+#. odoo-python
 #: code:addons/auto_backup/models/db_backup.py:0
 #, python-format
 msgid "Connection Test Succeeded!"
 msgstr "¡Prueba de Conexión Exitosa!"
 
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__count_changesets
+msgid "Count Changesets"
+msgstr ""
+
 #. module: auto_backup
 #: model:ir.model.fields,field_description:auto_backup.field_db_backup__count_pending_changeset_changes
 msgid "Count Pending Changeset Changes"
@@ -158,6 +165,7 @@ msgid "Database Backup"
 msgstr "Copia de Seguridad de la Base de Datos"
 
 #. module: auto_backup
+#. odoo-python
 #: code:addons/auto_backup/models/db_backup.py:0
 #: model:mail.message.subtype,description:auto_backup.mail_message_subtype_failure
 #, python-format
@@ -165,6 +173,7 @@ msgid "Database backup failed."
 msgstr "La copia de seguridad de la base de datos falló."
 
 #. module: auto_backup
+#. odoo-python
 #: code:addons/auto_backup/models/db_backup.py:0
 #: model:mail.message.subtype,description:auto_backup.mail_message_subtype_success
 #, python-format
@@ -182,6 +191,7 @@ msgid "Display Name"
 msgstr "Mostrar Nombre"
 
 #. module: auto_backup
+#. odoo-python
 #: code:addons/auto_backup/models/db_backup.py:0
 #, python-format
 msgid ""
@@ -243,7 +253,6 @@ msgstr "ID"
 
 #. module: auto_backup
 #: model:ir.model.fields,help:auto_backup.field_db_backup__message_needaction
-#: model:ir.model.fields,help:auto_backup.field_db_backup__message_unread
 msgid "If checked, new messages require your attention."
 msgstr "Si está marcado, los nuevos mensajes requieren su atención."
 
@@ -315,19 +324,14 @@ msgstr "Número de errores"
 
 #. module: auto_backup
 #: model:ir.model.fields,help:auto_backup.field_db_backup__message_needaction_counter
-msgid "Number of messages which requires an action"
-msgstr "Número de mensajes que requieren una acción"
+msgid "Number of messages requiring action"
+msgstr ""
 
 #. module: auto_backup
 #: model:ir.model.fields,help:auto_backup.field_db_backup__message_has_error_counter
 msgid "Number of messages with delivery error"
 msgstr "Número de mensajes con error de entrega"
 
-#. module: auto_backup
-#: model:ir.model.fields,help:auto_backup.field_db_backup__message_unread_counter
-msgid "Number of unread messages"
-msgstr "Número de mensajes sin leer"
-
 #. module: auto_backup
 #: model:ir.model.fields,help:auto_backup.field_db_backup__sftp_private_key
 msgid ""
@@ -385,6 +389,11 @@ msgstr ""
 "Configure el planificador como activo y complete que tan frecuente quiere "
 "generar las copias de seguridad."
 
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__smart_search
+msgid "Smart Search"
+msgstr "Búsqueda Inteligente"
+
 #. module: auto_backup
 #: model:ir.model.fields,help:auto_backup.field_db_backup__name
 msgid "Summary of this backup process"
@@ -403,6 +412,21 @@ msgstr ""
 "El nombre del host o la dirección IP de su servidor remoto. Por ejemplo "
 "192.168.0.1"
 
+#. module: auto_backup
+#: model:ir.model.fields,help:auto_backup.field_db_backup__count_pending_changeset_changes
+msgid "The number of pending changes of this record"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,help:auto_backup.field_db_backup__count_pending_changesets
+msgid "The number of pending changesets of this record"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,help:auto_backup.field_db_backup__count_changesets
+msgid "The overall number of changesets of this record"
+msgstr ""
+
 #. module: auto_backup
 #: model:ir.model.fields,help:auto_backup.field_db_backup__sftp_password
 msgid ""
@@ -426,16 +450,6 @@ msgstr ""
 "El nombre de usuario con el que se debe realizar la conexión SFTP. Este es "
 "el usuario en el servidor externo."
 
-#. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup__message_unread
-msgid "Unread Messages"
-msgstr "Mensajes Sin Leer"
-
-#. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup__message_unread_counter
-msgid "Unread Messages Counter"
-msgstr "Contador de Mensajes Sin Leer"
-
 #. module: auto_backup
 #: model_terms:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
 msgid ""
@@ -490,8 +504,17 @@ msgstr "sftp.ejemplo.com"
 msgid "zip (includes filestore)"
 msgstr "zip (incluye filestore)"
 
+#~ msgid "Number of messages which requires an action"
+#~ msgstr "Número de mensajes que requieren una acción"
+
+#~ msgid "Number of unread messages"
+#~ msgstr "Número de mensajes sin leer"
+
+#~ msgid "Unread Messages"
+#~ msgstr "Mensajes Sin Leer"
+
+#~ msgid "Unread Messages Counter"
+#~ msgstr "Contador de Mensajes Sin Leer"
+
 #~ msgid "Followers (Channels)"
 #~ msgstr "Seguidores (Canales)"
-
-#~ msgid "Smart Search"
-#~ msgstr "Búsqueda Inteligente"
diff --git a/auto_backup/i18n/es_CL.po b/auto_backup/i18n/es_CL.po
index 844ecbddba7..1fffe943ff3 100644
--- a/auto_backup/i18n/es_CL.po
+++ b/auto_backup/i18n/es_CL.po
@@ -63,7 +63,6 @@ msgstr ""
 #. module: auto_backup
 #: model:ir.actions.server,name:auto_backup.ir_cron_backup_scheduler_0_ir_actions_server
 #: model:ir.cron,cron_name:auto_backup.ir_cron_backup_scheduler_0
-#: model:ir.cron,name:auto_backup.ir_cron_backup_scheduler_0
 msgid "Backup Scheduler"
 msgstr ""
 
@@ -110,23 +109,31 @@ msgid "Choose the storage method for this backup."
 msgstr ""
 
 #. module: auto_backup
+#. odoo-python
 #: code:addons/auto_backup/models/db_backup.py:0
 #, python-format
 msgid "Cleanup of old database backups failed."
 msgstr ""
 
 #. module: auto_backup
+#. odoo-python
 #: code:addons/auto_backup/models/db_backup.py:0
 #, python-format
 msgid "Connection Test Failed!"
 msgstr ""
 
 #. module: auto_backup
+#. odoo-python
 #: code:addons/auto_backup/models/db_backup.py:0
 #, python-format
 msgid "Connection Test Succeeded!"
 msgstr ""
 
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__count_changesets
+msgid "Count Changesets"
+msgstr ""
+
 #. module: auto_backup
 #: model:ir.model.fields,field_description:auto_backup.field_db_backup__count_pending_changeset_changes
 msgid "Count Pending Changeset Changes"
@@ -153,6 +160,7 @@ msgid "Database Backup"
 msgstr ""
 
 #. module: auto_backup
+#. odoo-python
 #: code:addons/auto_backup/models/db_backup.py:0
 #: model:mail.message.subtype,description:auto_backup.mail_message_subtype_failure
 #, python-format
@@ -160,6 +168,7 @@ msgid "Database backup failed."
 msgstr ""
 
 #. module: auto_backup
+#. odoo-python
 #: code:addons/auto_backup/models/db_backup.py:0
 #: model:mail.message.subtype,description:auto_backup.mail_message_subtype_success
 #, python-format
@@ -177,6 +186,7 @@ msgid "Display Name"
 msgstr "Nombre mostrado"
 
 #. module: auto_backup
+#. odoo-python
 #: code:addons/auto_backup/models/db_backup.py:0
 #, python-format
 msgid ""
@@ -235,7 +245,6 @@ msgstr "ID (identificación)"
 
 #. module: auto_backup
 #: model:ir.model.fields,help:auto_backup.field_db_backup__message_needaction
-#: model:ir.model.fields,help:auto_backup.field_db_backup__message_unread
 msgid "If checked, new messages require your attention."
 msgstr ""
 
@@ -307,7 +316,7 @@ msgstr ""
 
 #. module: auto_backup
 #: model:ir.model.fields,help:auto_backup.field_db_backup__message_needaction_counter
-msgid "Number of messages which requires an action"
+msgid "Number of messages requiring action"
 msgstr ""
 
 #. module: auto_backup
@@ -315,11 +324,6 @@ msgstr ""
 msgid "Number of messages with delivery error"
 msgstr ""
 
-#. module: auto_backup
-#: model:ir.model.fields,help:auto_backup.field_db_backup__message_unread_counter
-msgid "Number of unread messages"
-msgstr ""
-
 #. module: auto_backup
 #: model:ir.model.fields,help:auto_backup.field_db_backup__sftp_private_key
 msgid ""
@@ -373,6 +377,11 @@ msgid ""
 "Set the scheduler to active and fill in how often you want backups generated."
 msgstr ""
 
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__smart_search
+msgid "Smart Search"
+msgstr ""
+
 #. module: auto_backup
 #: model:ir.model.fields,help:auto_backup.field_db_backup__name
 msgid "Summary of this backup process"
@@ -389,6 +398,21 @@ msgid ""
 "The host name or IP address from your remote server. For example 192.168.0.1"
 msgstr ""
 
+#. module: auto_backup
+#: model:ir.model.fields,help:auto_backup.field_db_backup__count_pending_changeset_changes
+msgid "The number of pending changes of this record"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,help:auto_backup.field_db_backup__count_pending_changesets
+msgid "The number of pending changesets of this record"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,help:auto_backup.field_db_backup__count_changesets
+msgid "The overall number of changesets of this record"
+msgstr ""
+
 #. module: auto_backup
 #: model:ir.model.fields,help:auto_backup.field_db_backup__sftp_password
 msgid ""
@@ -408,16 +432,6 @@ msgid ""
 "on the external server."
 msgstr ""
 
-#. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup__message_unread
-msgid "Unread Messages"
-msgstr ""
-
-#. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup__message_unread_counter
-msgid "Unread Messages Counter"
-msgstr ""
-
 #. module: auto_backup
 #: model_terms:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
 msgid ""
diff --git a/auto_backup/i18n/es_CO.po b/auto_backup/i18n/es_CO.po
index 0247ef6d54f..7b133a6e35c 100644
--- a/auto_backup/i18n/es_CO.po
+++ b/auto_backup/i18n/es_CO.po
@@ -63,7 +63,6 @@ msgstr ""
 #. module: auto_backup
 #: model:ir.actions.server,name:auto_backup.ir_cron_backup_scheduler_0_ir_actions_server
 #: model:ir.cron,cron_name:auto_backup.ir_cron_backup_scheduler_0
-#: model:ir.cron,name:auto_backup.ir_cron_backup_scheduler_0
 msgid "Backup Scheduler"
 msgstr ""
 
@@ -110,23 +109,31 @@ msgid "Choose the storage method for this backup."
 msgstr ""
 
 #. module: auto_backup
+#. odoo-python
 #: code:addons/auto_backup/models/db_backup.py:0
 #, python-format
 msgid "Cleanup of old database backups failed."
 msgstr ""
 
 #. module: auto_backup
+#. odoo-python
 #: code:addons/auto_backup/models/db_backup.py:0
 #, python-format
 msgid "Connection Test Failed!"
 msgstr ""
 
 #. module: auto_backup
+#. odoo-python
 #: code:addons/auto_backup/models/db_backup.py:0
 #, python-format
 msgid "Connection Test Succeeded!"
 msgstr ""
 
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__count_changesets
+msgid "Count Changesets"
+msgstr ""
+
 #. module: auto_backup
 #: model:ir.model.fields,field_description:auto_backup.field_db_backup__count_pending_changeset_changes
 msgid "Count Pending Changeset Changes"
@@ -153,6 +160,7 @@ msgid "Database Backup"
 msgstr ""
 
 #. module: auto_backup
+#. odoo-python
 #: code:addons/auto_backup/models/db_backup.py:0
 #: model:mail.message.subtype,description:auto_backup.mail_message_subtype_failure
 #, python-format
@@ -160,6 +168,7 @@ msgid "Database backup failed."
 msgstr ""
 
 #. module: auto_backup
+#. odoo-python
 #: code:addons/auto_backup/models/db_backup.py:0
 #: model:mail.message.subtype,description:auto_backup.mail_message_subtype_success
 #, python-format
@@ -177,6 +186,7 @@ msgid "Display Name"
 msgstr "Nombre Público"
 
 #. module: auto_backup
+#. odoo-python
 #: code:addons/auto_backup/models/db_backup.py:0
 #, python-format
 msgid ""
@@ -235,7 +245,6 @@ msgstr "ID"
 
 #. module: auto_backup
 #: model:ir.model.fields,help:auto_backup.field_db_backup__message_needaction
-#: model:ir.model.fields,help:auto_backup.field_db_backup__message_unread
 msgid "If checked, new messages require your attention."
 msgstr ""
 
@@ -307,7 +316,7 @@ msgstr ""
 
 #. module: auto_backup
 #: model:ir.model.fields,help:auto_backup.field_db_backup__message_needaction_counter
-msgid "Number of messages which requires an action"
+msgid "Number of messages requiring action"
 msgstr ""
 
 #. module: auto_backup
@@ -315,11 +324,6 @@ msgstr ""
 msgid "Number of messages with delivery error"
 msgstr ""
 
-#. module: auto_backup
-#: model:ir.model.fields,help:auto_backup.field_db_backup__message_unread_counter
-msgid "Number of unread messages"
-msgstr ""
-
 #. module: auto_backup
 #: model:ir.model.fields,help:auto_backup.field_db_backup__sftp_private_key
 msgid ""
@@ -373,6 +377,11 @@ msgid ""
 "Set the scheduler to active and fill in how often you want backups generated."
 msgstr ""
 
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__smart_search
+msgid "Smart Search"
+msgstr ""
+
 #. module: auto_backup
 #: model:ir.model.fields,help:auto_backup.field_db_backup__name
 msgid "Summary of this backup process"
@@ -389,6 +398,21 @@ msgid ""
 "The host name or IP address from your remote server. For example 192.168.0.1"
 msgstr ""
 
+#. module: auto_backup
+#: model:ir.model.fields,help:auto_backup.field_db_backup__count_pending_changeset_changes
+msgid "The number of pending changes of this record"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,help:auto_backup.field_db_backup__count_pending_changesets
+msgid "The number of pending changesets of this record"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,help:auto_backup.field_db_backup__count_changesets
+msgid "The overall number of changesets of this record"
+msgstr ""
+
 #. module: auto_backup
 #: model:ir.model.fields,help:auto_backup.field_db_backup__sftp_password
 msgid ""
@@ -408,16 +432,6 @@ msgid ""
 "on the external server."
 msgstr ""
 
-#. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup__message_unread
-msgid "Unread Messages"
-msgstr ""
-
-#. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup__message_unread_counter
-msgid "Unread Messages Counter"
-msgstr ""
-
 #. module: auto_backup
 #: model_terms:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
 msgid ""
diff --git a/auto_backup/i18n/es_CR.po b/auto_backup/i18n/es_CR.po
index 418ec1e520a..7355c77057c 100644
--- a/auto_backup/i18n/es_CR.po
+++ b/auto_backup/i18n/es_CR.po
@@ -63,7 +63,6 @@ msgstr ""
 #. module: auto_backup
 #: model:ir.actions.server,name:auto_backup.ir_cron_backup_scheduler_0_ir_actions_server
 #: model:ir.cron,cron_name:auto_backup.ir_cron_backup_scheduler_0
-#: model:ir.cron,name:auto_backup.ir_cron_backup_scheduler_0
 msgid "Backup Scheduler"
 msgstr ""
 
@@ -110,23 +109,31 @@ msgid "Choose the storage method for this backup."
 msgstr ""
 
 #. module: auto_backup
+#. odoo-python
 #: code:addons/auto_backup/models/db_backup.py:0
 #, python-format
 msgid "Cleanup of old database backups failed."
 msgstr ""
 
 #. module: auto_backup
+#. odoo-python
 #: code:addons/auto_backup/models/db_backup.py:0
 #, python-format
 msgid "Connection Test Failed!"
 msgstr ""
 
 #. module: auto_backup
+#. odoo-python
 #: code:addons/auto_backup/models/db_backup.py:0
 #, python-format
 msgid "Connection Test Succeeded!"
 msgstr ""
 
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__count_changesets
+msgid "Count Changesets"
+msgstr ""
+
 #. module: auto_backup
 #: model:ir.model.fields,field_description:auto_backup.field_db_backup__count_pending_changeset_changes
 msgid "Count Pending Changeset Changes"
@@ -153,6 +160,7 @@ msgid "Database Backup"
 msgstr ""
 
 #. module: auto_backup
+#. odoo-python
 #: code:addons/auto_backup/models/db_backup.py:0
 #: model:mail.message.subtype,description:auto_backup.mail_message_subtype_failure
 #, python-format
@@ -160,6 +168,7 @@ msgid "Database backup failed."
 msgstr ""
 
 #. module: auto_backup
+#. odoo-python
 #: code:addons/auto_backup/models/db_backup.py:0
 #: model:mail.message.subtype,description:auto_backup.mail_message_subtype_success
 #, python-format
@@ -177,6 +186,7 @@ msgid "Display Name"
 msgstr ""
 
 #. module: auto_backup
+#. odoo-python
 #: code:addons/auto_backup/models/db_backup.py:0
 #, python-format
 msgid ""
@@ -235,7 +245,6 @@ msgstr "ID"
 
 #. module: auto_backup
 #: model:ir.model.fields,help:auto_backup.field_db_backup__message_needaction
-#: model:ir.model.fields,help:auto_backup.field_db_backup__message_unread
 msgid "If checked, new messages require your attention."
 msgstr ""
 
@@ -307,7 +316,7 @@ msgstr ""
 
 #. module: auto_backup
 #: model:ir.model.fields,help:auto_backup.field_db_backup__message_needaction_counter
-msgid "Number of messages which requires an action"
+msgid "Number of messages requiring action"
 msgstr ""
 
 #. module: auto_backup
@@ -315,11 +324,6 @@ msgstr ""
 msgid "Number of messages with delivery error"
 msgstr ""
 
-#. module: auto_backup
-#: model:ir.model.fields,help:auto_backup.field_db_backup__message_unread_counter
-msgid "Number of unread messages"
-msgstr ""
-
 #. module: auto_backup
 #: model:ir.model.fields,help:auto_backup.field_db_backup__sftp_private_key
 msgid ""
@@ -373,6 +377,11 @@ msgid ""
 "Set the scheduler to active and fill in how often you want backups generated."
 msgstr ""
 
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__smart_search
+msgid "Smart Search"
+msgstr ""
+
 #. module: auto_backup
 #: model:ir.model.fields,help:auto_backup.field_db_backup__name
 msgid "Summary of this backup process"
@@ -389,6 +398,21 @@ msgid ""
 "The host name or IP address from your remote server. For example 192.168.0.1"
 msgstr ""
 
+#. module: auto_backup
+#: model:ir.model.fields,help:auto_backup.field_db_backup__count_pending_changeset_changes
+msgid "The number of pending changes of this record"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,help:auto_backup.field_db_backup__count_pending_changesets
+msgid "The number of pending changesets of this record"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,help:auto_backup.field_db_backup__count_changesets
+msgid "The overall number of changesets of this record"
+msgstr ""
+
 #. module: auto_backup
 #: model:ir.model.fields,help:auto_backup.field_db_backup__sftp_password
 msgid ""
@@ -408,16 +432,6 @@ msgid ""
 "on the external server."
 msgstr ""
 
-#. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup__message_unread
-msgid "Unread Messages"
-msgstr ""
-
-#. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup__message_unread_counter
-msgid "Unread Messages Counter"
-msgstr ""
-
 #. module: auto_backup
 #: model_terms:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
 msgid ""
diff --git a/auto_backup/i18n/es_DO.po b/auto_backup/i18n/es_DO.po
index a474daf481c..b04d83fbf0b 100644
--- a/auto_backup/i18n/es_DO.po
+++ b/auto_backup/i18n/es_DO.po
@@ -63,7 +63,6 @@ msgstr ""
 #. module: auto_backup
 #: model:ir.actions.server,name:auto_backup.ir_cron_backup_scheduler_0_ir_actions_server
 #: model:ir.cron,cron_name:auto_backup.ir_cron_backup_scheduler_0
-#: model:ir.cron,name:auto_backup.ir_cron_backup_scheduler_0
 msgid "Backup Scheduler"
 msgstr ""
 
@@ -110,23 +109,31 @@ msgid "Choose the storage method for this backup."
 msgstr ""
 
 #. module: auto_backup
+#. odoo-python
 #: code:addons/auto_backup/models/db_backup.py:0
 #, python-format
 msgid "Cleanup of old database backups failed."
 msgstr ""
 
 #. module: auto_backup
+#. odoo-python
 #: code:addons/auto_backup/models/db_backup.py:0
 #, python-format
 msgid "Connection Test Failed!"
 msgstr ""
 
 #. module: auto_backup
+#. odoo-python
 #: code:addons/auto_backup/models/db_backup.py:0
 #, python-format
 msgid "Connection Test Succeeded!"
 msgstr ""
 
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__count_changesets
+msgid "Count Changesets"
+msgstr ""
+
 #. module: auto_backup
 #: model:ir.model.fields,field_description:auto_backup.field_db_backup__count_pending_changeset_changes
 msgid "Count Pending Changeset Changes"
@@ -153,6 +160,7 @@ msgid "Database Backup"
 msgstr ""
 
 #. module: auto_backup
+#. odoo-python
 #: code:addons/auto_backup/models/db_backup.py:0
 #: model:mail.message.subtype,description:auto_backup.mail_message_subtype_failure
 #, python-format
@@ -160,6 +168,7 @@ msgid "Database backup failed."
 msgstr ""
 
 #. module: auto_backup
+#. odoo-python
 #: code:addons/auto_backup/models/db_backup.py:0
 #: model:mail.message.subtype,description:auto_backup.mail_message_subtype_success
 #, python-format
@@ -177,6 +186,7 @@ msgid "Display Name"
 msgstr "Nombre mostrado"
 
 #. module: auto_backup
+#. odoo-python
 #: code:addons/auto_backup/models/db_backup.py:0
 #, python-format
 msgid ""
@@ -235,7 +245,6 @@ msgstr "ID (identificación)"
 
 #. module: auto_backup
 #: model:ir.model.fields,help:auto_backup.field_db_backup__message_needaction
-#: model:ir.model.fields,help:auto_backup.field_db_backup__message_unread
 msgid "If checked, new messages require your attention."
 msgstr ""
 
@@ -307,7 +316,7 @@ msgstr ""
 
 #. module: auto_backup
 #: model:ir.model.fields,help:auto_backup.field_db_backup__message_needaction_counter
-msgid "Number of messages which requires an action"
+msgid "Number of messages requiring action"
 msgstr ""
 
 #. module: auto_backup
@@ -315,11 +324,6 @@ msgstr ""
 msgid "Number of messages with delivery error"
 msgstr ""
 
-#. module: auto_backup
-#: model:ir.model.fields,help:auto_backup.field_db_backup__message_unread_counter
-msgid "Number of unread messages"
-msgstr ""
-
 #. module: auto_backup
 #: model:ir.model.fields,help:auto_backup.field_db_backup__sftp_private_key
 msgid ""
@@ -373,6 +377,11 @@ msgid ""
 "Set the scheduler to active and fill in how often you want backups generated."
 msgstr ""
 
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__smart_search
+msgid "Smart Search"
+msgstr ""
+
 #. module: auto_backup
 #: model:ir.model.fields,help:auto_backup.field_db_backup__name
 msgid "Summary of this backup process"
@@ -389,6 +398,21 @@ msgid ""
 "The host name or IP address from your remote server. For example 192.168.0.1"
 msgstr ""
 
+#. module: auto_backup
+#: model:ir.model.fields,help:auto_backup.field_db_backup__count_pending_changeset_changes
+msgid "The number of pending changes of this record"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,help:auto_backup.field_db_backup__count_pending_changesets
+msgid "The number of pending changesets of this record"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,help:auto_backup.field_db_backup__count_changesets
+msgid "The overall number of changesets of this record"
+msgstr ""
+
 #. module: auto_backup
 #: model:ir.model.fields,help:auto_backup.field_db_backup__sftp_password
 msgid ""
@@ -408,16 +432,6 @@ msgid ""
 "on the external server."
 msgstr ""
 
-#. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup__message_unread
-msgid "Unread Messages"
-msgstr ""
-
-#. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup__message_unread_counter
-msgid "Unread Messages Counter"
-msgstr ""
-
 #. module: auto_backup
 #: model_terms:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
 msgid ""
diff --git a/auto_backup/i18n/es_EC.po b/auto_backup/i18n/es_EC.po
index 933092a5b35..adc5b9d3605 100644
--- a/auto_backup/i18n/es_EC.po
+++ b/auto_backup/i18n/es_EC.po
@@ -63,7 +63,6 @@ msgstr ""
 #. module: auto_backup
 #: model:ir.actions.server,name:auto_backup.ir_cron_backup_scheduler_0_ir_actions_server
 #: model:ir.cron,cron_name:auto_backup.ir_cron_backup_scheduler_0
-#: model:ir.cron,name:auto_backup.ir_cron_backup_scheduler_0
 msgid "Backup Scheduler"
 msgstr ""
 
@@ -110,23 +109,31 @@ msgid "Choose the storage method for this backup."
 msgstr ""
 
 #. module: auto_backup
+#. odoo-python
 #: code:addons/auto_backup/models/db_backup.py:0
 #, python-format
 msgid "Cleanup of old database backups failed."
 msgstr ""
 
 #. module: auto_backup
+#. odoo-python
 #: code:addons/auto_backup/models/db_backup.py:0
 #, python-format
 msgid "Connection Test Failed!"
 msgstr ""
 
 #. module: auto_backup
+#. odoo-python
 #: code:addons/auto_backup/models/db_backup.py:0
 #, python-format
 msgid "Connection Test Succeeded!"
 msgstr ""
 
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__count_changesets
+msgid "Count Changesets"
+msgstr ""
+
 #. module: auto_backup
 #: model:ir.model.fields,field_description:auto_backup.field_db_backup__count_pending_changeset_changes
 msgid "Count Pending Changeset Changes"
@@ -153,6 +160,7 @@ msgid "Database Backup"
 msgstr ""
 
 #. module: auto_backup
+#. odoo-python
 #: code:addons/auto_backup/models/db_backup.py:0
 #: model:mail.message.subtype,description:auto_backup.mail_message_subtype_failure
 #, python-format
@@ -160,6 +168,7 @@ msgid "Database backup failed."
 msgstr ""
 
 #. module: auto_backup
+#. odoo-python
 #: code:addons/auto_backup/models/db_backup.py:0
 #: model:mail.message.subtype,description:auto_backup.mail_message_subtype_success
 #, python-format
@@ -177,6 +186,7 @@ msgid "Display Name"
 msgstr "Nombre mostrado"
 
 #. module: auto_backup
+#. odoo-python
 #: code:addons/auto_backup/models/db_backup.py:0
 #, python-format
 msgid ""
@@ -235,7 +245,6 @@ msgstr "ID"
 
 #. module: auto_backup
 #: model:ir.model.fields,help:auto_backup.field_db_backup__message_needaction
-#: model:ir.model.fields,help:auto_backup.field_db_backup__message_unread
 msgid "If checked, new messages require your attention."
 msgstr ""
 
@@ -307,7 +316,7 @@ msgstr ""
 
 #. module: auto_backup
 #: model:ir.model.fields,help:auto_backup.field_db_backup__message_needaction_counter
-msgid "Number of messages which requires an action"
+msgid "Number of messages requiring action"
 msgstr ""
 
 #. module: auto_backup
@@ -315,11 +324,6 @@ msgstr ""
 msgid "Number of messages with delivery error"
 msgstr ""
 
-#. module: auto_backup
-#: model:ir.model.fields,help:auto_backup.field_db_backup__message_unread_counter
-msgid "Number of unread messages"
-msgstr ""
-
 #. module: auto_backup
 #: model:ir.model.fields,help:auto_backup.field_db_backup__sftp_private_key
 msgid ""
@@ -373,6 +377,11 @@ msgid ""
 "Set the scheduler to active and fill in how often you want backups generated."
 msgstr ""
 
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__smart_search
+msgid "Smart Search"
+msgstr ""
+
 #. module: auto_backup
 #: model:ir.model.fields,help:auto_backup.field_db_backup__name
 msgid "Summary of this backup process"
@@ -389,6 +398,21 @@ msgid ""
 "The host name or IP address from your remote server. For example 192.168.0.1"
 msgstr ""
 
+#. module: auto_backup
+#: model:ir.model.fields,help:auto_backup.field_db_backup__count_pending_changeset_changes
+msgid "The number of pending changes of this record"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,help:auto_backup.field_db_backup__count_pending_changesets
+msgid "The number of pending changesets of this record"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,help:auto_backup.field_db_backup__count_changesets
+msgid "The overall number of changesets of this record"
+msgstr ""
+
 #. module: auto_backup
 #: model:ir.model.fields,help:auto_backup.field_db_backup__sftp_password
 msgid ""
@@ -408,16 +432,6 @@ msgid ""
 "on the external server."
 msgstr ""
 
-#. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup__message_unread
-msgid "Unread Messages"
-msgstr ""
-
-#. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup__message_unread_counter
-msgid "Unread Messages Counter"
-msgstr ""
-
 #. module: auto_backup
 #: model_terms:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
 msgid ""
diff --git a/auto_backup/i18n/es_ES.po b/auto_backup/i18n/es_ES.po
index b913663fc29..fabea90bfe9 100644
--- a/auto_backup/i18n/es_ES.po
+++ b/auto_backup/i18n/es_ES.po
@@ -63,7 +63,6 @@ msgstr ""
 #. module: auto_backup
 #: model:ir.actions.server,name:auto_backup.ir_cron_backup_scheduler_0_ir_actions_server
 #: model:ir.cron,cron_name:auto_backup.ir_cron_backup_scheduler_0
-#: model:ir.cron,name:auto_backup.ir_cron_backup_scheduler_0
 msgid "Backup Scheduler"
 msgstr ""
 
@@ -110,23 +109,31 @@ msgid "Choose the storage method for this backup."
 msgstr ""
 
 #. module: auto_backup
+#. odoo-python
 #: code:addons/auto_backup/models/db_backup.py:0
 #, python-format
 msgid "Cleanup of old database backups failed."
 msgstr ""
 
 #. module: auto_backup
+#. odoo-python
 #: code:addons/auto_backup/models/db_backup.py:0
 #, python-format
 msgid "Connection Test Failed!"
 msgstr ""
 
 #. module: auto_backup
+#. odoo-python
 #: code:addons/auto_backup/models/db_backup.py:0
 #, python-format
 msgid "Connection Test Succeeded!"
 msgstr ""
 
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__count_changesets
+msgid "Count Changesets"
+msgstr ""
+
 #. module: auto_backup
 #: model:ir.model.fields,field_description:auto_backup.field_db_backup__count_pending_changeset_changes
 msgid "Count Pending Changeset Changes"
@@ -153,6 +160,7 @@ msgid "Database Backup"
 msgstr ""
 
 #. module: auto_backup
+#. odoo-python
 #: code:addons/auto_backup/models/db_backup.py:0
 #: model:mail.message.subtype,description:auto_backup.mail_message_subtype_failure
 #, python-format
@@ -160,6 +168,7 @@ msgid "Database backup failed."
 msgstr ""
 
 #. module: auto_backup
+#. odoo-python
 #: code:addons/auto_backup/models/db_backup.py:0
 #: model:mail.message.subtype,description:auto_backup.mail_message_subtype_success
 #, python-format
@@ -177,6 +186,7 @@ msgid "Display Name"
 msgstr "Nombre para mostrar"
 
 #. module: auto_backup
+#. odoo-python
 #: code:addons/auto_backup/models/db_backup.py:0
 #, python-format
 msgid ""
@@ -235,7 +245,6 @@ msgstr "ID"
 
 #. module: auto_backup
 #: model:ir.model.fields,help:auto_backup.field_db_backup__message_needaction
-#: model:ir.model.fields,help:auto_backup.field_db_backup__message_unread
 msgid "If checked, new messages require your attention."
 msgstr ""
 
@@ -307,7 +316,7 @@ msgstr ""
 
 #. module: auto_backup
 #: model:ir.model.fields,help:auto_backup.field_db_backup__message_needaction_counter
-msgid "Number of messages which requires an action"
+msgid "Number of messages requiring action"
 msgstr ""
 
 #. module: auto_backup
@@ -315,11 +324,6 @@ msgstr ""
 msgid "Number of messages with delivery error"
 msgstr ""
 
-#. module: auto_backup
-#: model:ir.model.fields,help:auto_backup.field_db_backup__message_unread_counter
-msgid "Number of unread messages"
-msgstr ""
-
 #. module: auto_backup
 #: model:ir.model.fields,help:auto_backup.field_db_backup__sftp_private_key
 msgid ""
@@ -373,6 +377,11 @@ msgid ""
 "Set the scheduler to active and fill in how often you want backups generated."
 msgstr ""
 
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__smart_search
+msgid "Smart Search"
+msgstr ""
+
 #. module: auto_backup
 #: model:ir.model.fields,help:auto_backup.field_db_backup__name
 msgid "Summary of this backup process"
@@ -389,6 +398,21 @@ msgid ""
 "The host name or IP address from your remote server. For example 192.168.0.1"
 msgstr ""
 
+#. module: auto_backup
+#: model:ir.model.fields,help:auto_backup.field_db_backup__count_pending_changeset_changes
+msgid "The number of pending changes of this record"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,help:auto_backup.field_db_backup__count_pending_changesets
+msgid "The number of pending changesets of this record"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,help:auto_backup.field_db_backup__count_changesets
+msgid "The overall number of changesets of this record"
+msgstr ""
+
 #. module: auto_backup
 #: model:ir.model.fields,help:auto_backup.field_db_backup__sftp_password
 msgid ""
@@ -408,16 +432,6 @@ msgid ""
 "on the external server."
 msgstr ""
 
-#. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup__message_unread
-msgid "Unread Messages"
-msgstr ""
-
-#. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup__message_unread_counter
-msgid "Unread Messages Counter"
-msgstr ""
-
 #. module: auto_backup
 #: model_terms:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
 msgid ""
diff --git a/auto_backup/i18n/es_MX.po b/auto_backup/i18n/es_MX.po
index 39180e80241..fdfec39a0a0 100644
--- a/auto_backup/i18n/es_MX.po
+++ b/auto_backup/i18n/es_MX.po
@@ -63,7 +63,6 @@ msgstr ""
 #. module: auto_backup
 #: model:ir.actions.server,name:auto_backup.ir_cron_backup_scheduler_0_ir_actions_server
 #: model:ir.cron,cron_name:auto_backup.ir_cron_backup_scheduler_0
-#: model:ir.cron,name:auto_backup.ir_cron_backup_scheduler_0
 msgid "Backup Scheduler"
 msgstr ""
 
@@ -110,23 +109,31 @@ msgid "Choose the storage method for this backup."
 msgstr ""
 
 #. module: auto_backup
+#. odoo-python
 #: code:addons/auto_backup/models/db_backup.py:0
 #, python-format
 msgid "Cleanup of old database backups failed."
 msgstr ""
 
 #. module: auto_backup
+#. odoo-python
 #: code:addons/auto_backup/models/db_backup.py:0
 #, python-format
 msgid "Connection Test Failed!"
 msgstr ""
 
 #. module: auto_backup
+#. odoo-python
 #: code:addons/auto_backup/models/db_backup.py:0
 #, python-format
 msgid "Connection Test Succeeded!"
 msgstr ""
 
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__count_changesets
+msgid "Count Changesets"
+msgstr ""
+
 #. module: auto_backup
 #: model:ir.model.fields,field_description:auto_backup.field_db_backup__count_pending_changeset_changes
 msgid "Count Pending Changeset Changes"
@@ -153,6 +160,7 @@ msgid "Database Backup"
 msgstr ""
 
 #. module: auto_backup
+#. odoo-python
 #: code:addons/auto_backup/models/db_backup.py:0
 #: model:mail.message.subtype,description:auto_backup.mail_message_subtype_failure
 #, python-format
@@ -160,6 +168,7 @@ msgid "Database backup failed."
 msgstr ""
 
 #. module: auto_backup
+#. odoo-python
 #: code:addons/auto_backup/models/db_backup.py:0
 #: model:mail.message.subtype,description:auto_backup.mail_message_subtype_success
 #, python-format
@@ -177,6 +186,7 @@ msgid "Display Name"
 msgstr "Nombre desplegado"
 
 #. module: auto_backup
+#. odoo-python
 #: code:addons/auto_backup/models/db_backup.py:0
 #, python-format
 msgid ""
@@ -235,7 +245,6 @@ msgstr "ID"
 
 #. module: auto_backup
 #: model:ir.model.fields,help:auto_backup.field_db_backup__message_needaction
-#: model:ir.model.fields,help:auto_backup.field_db_backup__message_unread
 msgid "If checked, new messages require your attention."
 msgstr ""
 
@@ -307,7 +316,7 @@ msgstr ""
 
 #. module: auto_backup
 #: model:ir.model.fields,help:auto_backup.field_db_backup__message_needaction_counter
-msgid "Number of messages which requires an action"
+msgid "Number of messages requiring action"
 msgstr ""
 
 #. module: auto_backup
@@ -315,11 +324,6 @@ msgstr ""
 msgid "Number of messages with delivery error"
 msgstr ""
 
-#. module: auto_backup
-#: model:ir.model.fields,help:auto_backup.field_db_backup__message_unread_counter
-msgid "Number of unread messages"
-msgstr ""
-
 #. module: auto_backup
 #: model:ir.model.fields,help:auto_backup.field_db_backup__sftp_private_key
 msgid ""
@@ -373,6 +377,11 @@ msgid ""
 "Set the scheduler to active and fill in how often you want backups generated."
 msgstr ""
 
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__smart_search
+msgid "Smart Search"
+msgstr ""
+
 #. module: auto_backup
 #: model:ir.model.fields,help:auto_backup.field_db_backup__name
 msgid "Summary of this backup process"
@@ -389,6 +398,21 @@ msgid ""
 "The host name or IP address from your remote server. For example 192.168.0.1"
 msgstr ""
 
+#. module: auto_backup
+#: model:ir.model.fields,help:auto_backup.field_db_backup__count_pending_changeset_changes
+msgid "The number of pending changes of this record"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,help:auto_backup.field_db_backup__count_pending_changesets
+msgid "The number of pending changesets of this record"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,help:auto_backup.field_db_backup__count_changesets
+msgid "The overall number of changesets of this record"
+msgstr ""
+
 #. module: auto_backup
 #: model:ir.model.fields,help:auto_backup.field_db_backup__sftp_password
 msgid ""
@@ -408,16 +432,6 @@ msgid ""
 "on the external server."
 msgstr ""
 
-#. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup__message_unread
-msgid "Unread Messages"
-msgstr ""
-
-#. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup__message_unread_counter
-msgid "Unread Messages Counter"
-msgstr ""
-
 #. module: auto_backup
 #: model_terms:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
 msgid ""
diff --git a/auto_backup/i18n/es_PE.po b/auto_backup/i18n/es_PE.po
index 8b9870cf628..4fa7f13d753 100644
--- a/auto_backup/i18n/es_PE.po
+++ b/auto_backup/i18n/es_PE.po
@@ -63,7 +63,6 @@ msgstr ""
 #. module: auto_backup
 #: model:ir.actions.server,name:auto_backup.ir_cron_backup_scheduler_0_ir_actions_server
 #: model:ir.cron,cron_name:auto_backup.ir_cron_backup_scheduler_0
-#: model:ir.cron,name:auto_backup.ir_cron_backup_scheduler_0
 msgid "Backup Scheduler"
 msgstr ""
 
@@ -110,23 +109,31 @@ msgid "Choose the storage method for this backup."
 msgstr ""
 
 #. module: auto_backup
+#. odoo-python
 #: code:addons/auto_backup/models/db_backup.py:0
 #, python-format
 msgid "Cleanup of old database backups failed."
 msgstr ""
 
 #. module: auto_backup
+#. odoo-python
 #: code:addons/auto_backup/models/db_backup.py:0
 #, python-format
 msgid "Connection Test Failed!"
 msgstr ""
 
 #. module: auto_backup
+#. odoo-python
 #: code:addons/auto_backup/models/db_backup.py:0
 #, python-format
 msgid "Connection Test Succeeded!"
 msgstr ""
 
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__count_changesets
+msgid "Count Changesets"
+msgstr ""
+
 #. module: auto_backup
 #: model:ir.model.fields,field_description:auto_backup.field_db_backup__count_pending_changeset_changes
 msgid "Count Pending Changeset Changes"
@@ -153,6 +160,7 @@ msgid "Database Backup"
 msgstr ""
 
 #. module: auto_backup
+#. odoo-python
 #: code:addons/auto_backup/models/db_backup.py:0
 #: model:mail.message.subtype,description:auto_backup.mail_message_subtype_failure
 #, python-format
@@ -160,6 +168,7 @@ msgid "Database backup failed."
 msgstr ""
 
 #. module: auto_backup
+#. odoo-python
 #: code:addons/auto_backup/models/db_backup.py:0
 #: model:mail.message.subtype,description:auto_backup.mail_message_subtype_success
 #, python-format
@@ -177,6 +186,7 @@ msgid "Display Name"
 msgstr "Nombre a Mostrar"
 
 #. module: auto_backup
+#. odoo-python
 #: code:addons/auto_backup/models/db_backup.py:0
 #, python-format
 msgid ""
@@ -235,7 +245,6 @@ msgstr "ID"
 
 #. module: auto_backup
 #: model:ir.model.fields,help:auto_backup.field_db_backup__message_needaction
-#: model:ir.model.fields,help:auto_backup.field_db_backup__message_unread
 msgid "If checked, new messages require your attention."
 msgstr ""
 
@@ -307,7 +316,7 @@ msgstr ""
 
 #. module: auto_backup
 #: model:ir.model.fields,help:auto_backup.field_db_backup__message_needaction_counter
-msgid "Number of messages which requires an action"
+msgid "Number of messages requiring action"
 msgstr ""
 
 #. module: auto_backup
@@ -315,11 +324,6 @@ msgstr ""
 msgid "Number of messages with delivery error"
 msgstr ""
 
-#. module: auto_backup
-#: model:ir.model.fields,help:auto_backup.field_db_backup__message_unread_counter
-msgid "Number of unread messages"
-msgstr ""
-
 #. module: auto_backup
 #: model:ir.model.fields,help:auto_backup.field_db_backup__sftp_private_key
 msgid ""
@@ -373,6 +377,11 @@ msgid ""
 "Set the scheduler to active and fill in how often you want backups generated."
 msgstr ""
 
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__smart_search
+msgid "Smart Search"
+msgstr ""
+
 #. module: auto_backup
 #: model:ir.model.fields,help:auto_backup.field_db_backup__name
 msgid "Summary of this backup process"
@@ -389,6 +398,21 @@ msgid ""
 "The host name or IP address from your remote server. For example 192.168.0.1"
 msgstr ""
 
+#. module: auto_backup
+#: model:ir.model.fields,help:auto_backup.field_db_backup__count_pending_changeset_changes
+msgid "The number of pending changes of this record"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,help:auto_backup.field_db_backup__count_pending_changesets
+msgid "The number of pending changesets of this record"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,help:auto_backup.field_db_backup__count_changesets
+msgid "The overall number of changesets of this record"
+msgstr ""
+
 #. module: auto_backup
 #: model:ir.model.fields,help:auto_backup.field_db_backup__sftp_password
 msgid ""
@@ -408,16 +432,6 @@ msgid ""
 "on the external server."
 msgstr ""
 
-#. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup__message_unread
-msgid "Unread Messages"
-msgstr ""
-
-#. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup__message_unread_counter
-msgid "Unread Messages Counter"
-msgstr ""
-
 #. module: auto_backup
 #: model_terms:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
 msgid ""
diff --git a/auto_backup/i18n/es_PY.po b/auto_backup/i18n/es_PY.po
index cceedc1db24..212e1b12e18 100644
--- a/auto_backup/i18n/es_PY.po
+++ b/auto_backup/i18n/es_PY.po
@@ -63,7 +63,6 @@ msgstr ""
 #. module: auto_backup
 #: model:ir.actions.server,name:auto_backup.ir_cron_backup_scheduler_0_ir_actions_server
 #: model:ir.cron,cron_name:auto_backup.ir_cron_backup_scheduler_0
-#: model:ir.cron,name:auto_backup.ir_cron_backup_scheduler_0
 msgid "Backup Scheduler"
 msgstr ""
 
@@ -110,23 +109,31 @@ msgid "Choose the storage method for this backup."
 msgstr ""
 
 #. module: auto_backup
+#. odoo-python
 #: code:addons/auto_backup/models/db_backup.py:0
 #, python-format
 msgid "Cleanup of old database backups failed."
 msgstr ""
 
 #. module: auto_backup
+#. odoo-python
 #: code:addons/auto_backup/models/db_backup.py:0
 #, python-format
 msgid "Connection Test Failed!"
 msgstr ""
 
 #. module: auto_backup
+#. odoo-python
 #: code:addons/auto_backup/models/db_backup.py:0
 #, python-format
 msgid "Connection Test Succeeded!"
 msgstr ""
 
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__count_changesets
+msgid "Count Changesets"
+msgstr ""
+
 #. module: auto_backup
 #: model:ir.model.fields,field_description:auto_backup.field_db_backup__count_pending_changeset_changes
 msgid "Count Pending Changeset Changes"
@@ -153,6 +160,7 @@ msgid "Database Backup"
 msgstr ""
 
 #. module: auto_backup
+#. odoo-python
 #: code:addons/auto_backup/models/db_backup.py:0
 #: model:mail.message.subtype,description:auto_backup.mail_message_subtype_failure
 #, python-format
@@ -160,6 +168,7 @@ msgid "Database backup failed."
 msgstr ""
 
 #. module: auto_backup
+#. odoo-python
 #: code:addons/auto_backup/models/db_backup.py:0
 #: model:mail.message.subtype,description:auto_backup.mail_message_subtype_success
 #, python-format
@@ -177,6 +186,7 @@ msgid "Display Name"
 msgstr ""
 
 #. module: auto_backup
+#. odoo-python
 #: code:addons/auto_backup/models/db_backup.py:0
 #, python-format
 msgid ""
@@ -235,7 +245,6 @@ msgstr "ID"
 
 #. module: auto_backup
 #: model:ir.model.fields,help:auto_backup.field_db_backup__message_needaction
-#: model:ir.model.fields,help:auto_backup.field_db_backup__message_unread
 msgid "If checked, new messages require your attention."
 msgstr ""
 
@@ -307,7 +316,7 @@ msgstr ""
 
 #. module: auto_backup
 #: model:ir.model.fields,help:auto_backup.field_db_backup__message_needaction_counter
-msgid "Number of messages which requires an action"
+msgid "Number of messages requiring action"
 msgstr ""
 
 #. module: auto_backup
@@ -315,11 +324,6 @@ msgstr ""
 msgid "Number of messages with delivery error"
 msgstr ""
 
-#. module: auto_backup
-#: model:ir.model.fields,help:auto_backup.field_db_backup__message_unread_counter
-msgid "Number of unread messages"
-msgstr ""
-
 #. module: auto_backup
 #: model:ir.model.fields,help:auto_backup.field_db_backup__sftp_private_key
 msgid ""
@@ -373,6 +377,11 @@ msgid ""
 "Set the scheduler to active and fill in how often you want backups generated."
 msgstr ""
 
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__smart_search
+msgid "Smart Search"
+msgstr ""
+
 #. module: auto_backup
 #: model:ir.model.fields,help:auto_backup.field_db_backup__name
 msgid "Summary of this backup process"
@@ -389,6 +398,21 @@ msgid ""
 "The host name or IP address from your remote server. For example 192.168.0.1"
 msgstr ""
 
+#. module: auto_backup
+#: model:ir.model.fields,help:auto_backup.field_db_backup__count_pending_changeset_changes
+msgid "The number of pending changes of this record"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,help:auto_backup.field_db_backup__count_pending_changesets
+msgid "The number of pending changesets of this record"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,help:auto_backup.field_db_backup__count_changesets
+msgid "The overall number of changesets of this record"
+msgstr ""
+
 #. module: auto_backup
 #: model:ir.model.fields,help:auto_backup.field_db_backup__sftp_password
 msgid ""
@@ -408,16 +432,6 @@ msgid ""
 "on the external server."
 msgstr ""
 
-#. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup__message_unread
-msgid "Unread Messages"
-msgstr ""
-
-#. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup__message_unread_counter
-msgid "Unread Messages Counter"
-msgstr ""
-
 #. module: auto_backup
 #: model_terms:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
 msgid ""
diff --git a/auto_backup/i18n/es_VE.po b/auto_backup/i18n/es_VE.po
index 3daa94a27bd..62f68256cb1 100644
--- a/auto_backup/i18n/es_VE.po
+++ b/auto_backup/i18n/es_VE.po
@@ -63,7 +63,6 @@ msgstr ""
 #. module: auto_backup
 #: model:ir.actions.server,name:auto_backup.ir_cron_backup_scheduler_0_ir_actions_server
 #: model:ir.cron,cron_name:auto_backup.ir_cron_backup_scheduler_0
-#: model:ir.cron,name:auto_backup.ir_cron_backup_scheduler_0
 msgid "Backup Scheduler"
 msgstr ""
 
@@ -110,23 +109,31 @@ msgid "Choose the storage method for this backup."
 msgstr ""
 
 #. module: auto_backup
+#. odoo-python
 #: code:addons/auto_backup/models/db_backup.py:0
 #, python-format
 msgid "Cleanup of old database backups failed."
 msgstr ""
 
 #. module: auto_backup
+#. odoo-python
 #: code:addons/auto_backup/models/db_backup.py:0
 #, python-format
 msgid "Connection Test Failed!"
 msgstr ""
 
 #. module: auto_backup
+#. odoo-python
 #: code:addons/auto_backup/models/db_backup.py:0
 #, python-format
 msgid "Connection Test Succeeded!"
 msgstr ""
 
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__count_changesets
+msgid "Count Changesets"
+msgstr ""
+
 #. module: auto_backup
 #: model:ir.model.fields,field_description:auto_backup.field_db_backup__count_pending_changeset_changes
 msgid "Count Pending Changeset Changes"
@@ -153,6 +160,7 @@ msgid "Database Backup"
 msgstr ""
 
 #. module: auto_backup
+#. odoo-python
 #: code:addons/auto_backup/models/db_backup.py:0
 #: model:mail.message.subtype,description:auto_backup.mail_message_subtype_failure
 #, python-format
@@ -160,6 +168,7 @@ msgid "Database backup failed."
 msgstr ""
 
 #. module: auto_backup
+#. odoo-python
 #: code:addons/auto_backup/models/db_backup.py:0
 #: model:mail.message.subtype,description:auto_backup.mail_message_subtype_success
 #, python-format
@@ -177,6 +186,7 @@ msgid "Display Name"
 msgstr "Mostrar nombre"
 
 #. module: auto_backup
+#. odoo-python
 #: code:addons/auto_backup/models/db_backup.py:0
 #, python-format
 msgid ""
@@ -235,7 +245,6 @@ msgstr "ID"
 
 #. module: auto_backup
 #: model:ir.model.fields,help:auto_backup.field_db_backup__message_needaction
-#: model:ir.model.fields,help:auto_backup.field_db_backup__message_unread
 msgid "If checked, new messages require your attention."
 msgstr ""
 
@@ -307,7 +316,7 @@ msgstr ""
 
 #. module: auto_backup
 #: model:ir.model.fields,help:auto_backup.field_db_backup__message_needaction_counter
-msgid "Number of messages which requires an action"
+msgid "Number of messages requiring action"
 msgstr ""
 
 #. module: auto_backup
@@ -315,11 +324,6 @@ msgstr ""
 msgid "Number of messages with delivery error"
 msgstr ""
 
-#. module: auto_backup
-#: model:ir.model.fields,help:auto_backup.field_db_backup__message_unread_counter
-msgid "Number of unread messages"
-msgstr ""
-
 #. module: auto_backup
 #: model:ir.model.fields,help:auto_backup.field_db_backup__sftp_private_key
 msgid ""
@@ -373,6 +377,11 @@ msgid ""
 "Set the scheduler to active and fill in how often you want backups generated."
 msgstr ""
 
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__smart_search
+msgid "Smart Search"
+msgstr ""
+
 #. module: auto_backup
 #: model:ir.model.fields,help:auto_backup.field_db_backup__name
 msgid "Summary of this backup process"
@@ -389,6 +398,21 @@ msgid ""
 "The host name or IP address from your remote server. For example 192.168.0.1"
 msgstr ""
 
+#. module: auto_backup
+#: model:ir.model.fields,help:auto_backup.field_db_backup__count_pending_changeset_changes
+msgid "The number of pending changes of this record"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,help:auto_backup.field_db_backup__count_pending_changesets
+msgid "The number of pending changesets of this record"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,help:auto_backup.field_db_backup__count_changesets
+msgid "The overall number of changesets of this record"
+msgstr ""
+
 #. module: auto_backup
 #: model:ir.model.fields,help:auto_backup.field_db_backup__sftp_password
 msgid ""
@@ -408,16 +432,6 @@ msgid ""
 "on the external server."
 msgstr ""
 
-#. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup__message_unread
-msgid "Unread Messages"
-msgstr ""
-
-#. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup__message_unread_counter
-msgid "Unread Messages Counter"
-msgstr ""
-
 #. module: auto_backup
 #: model_terms:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
 msgid ""
diff --git a/auto_backup/i18n/et.po b/auto_backup/i18n/et.po
index feba83ebf06..6315c40e5de 100644
--- a/auto_backup/i18n/et.po
+++ b/auto_backup/i18n/et.po
@@ -62,7 +62,6 @@ msgstr ""
 #. module: auto_backup
 #: model:ir.actions.server,name:auto_backup.ir_cron_backup_scheduler_0_ir_actions_server
 #: model:ir.cron,cron_name:auto_backup.ir_cron_backup_scheduler_0
-#: model:ir.cron,name:auto_backup.ir_cron_backup_scheduler_0
 msgid "Backup Scheduler"
 msgstr ""
 
@@ -109,23 +108,31 @@ msgid "Choose the storage method for this backup."
 msgstr ""
 
 #. module: auto_backup
+#. odoo-python
 #: code:addons/auto_backup/models/db_backup.py:0
 #, python-format
 msgid "Cleanup of old database backups failed."
 msgstr ""
 
 #. module: auto_backup
+#. odoo-python
 #: code:addons/auto_backup/models/db_backup.py:0
 #, python-format
 msgid "Connection Test Failed!"
 msgstr ""
 
 #. module: auto_backup
+#. odoo-python
 #: code:addons/auto_backup/models/db_backup.py:0
 #, python-format
 msgid "Connection Test Succeeded!"
 msgstr ""
 
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__count_changesets
+msgid "Count Changesets"
+msgstr ""
+
 #. module: auto_backup
 #: model:ir.model.fields,field_description:auto_backup.field_db_backup__count_pending_changeset_changes
 msgid "Count Pending Changeset Changes"
@@ -152,6 +159,7 @@ msgid "Database Backup"
 msgstr ""
 
 #. module: auto_backup
+#. odoo-python
 #: code:addons/auto_backup/models/db_backup.py:0
 #: model:mail.message.subtype,description:auto_backup.mail_message_subtype_failure
 #, python-format
@@ -159,6 +167,7 @@ msgid "Database backup failed."
 msgstr ""
 
 #. module: auto_backup
+#. odoo-python
 #: code:addons/auto_backup/models/db_backup.py:0
 #: model:mail.message.subtype,description:auto_backup.mail_message_subtype_success
 #, python-format
@@ -176,6 +185,7 @@ msgid "Display Name"
 msgstr "Näidatav nimi"
 
 #. module: auto_backup
+#. odoo-python
 #: code:addons/auto_backup/models/db_backup.py:0
 #, python-format
 msgid ""
@@ -234,7 +244,6 @@ msgstr "ID"
 
 #. module: auto_backup
 #: model:ir.model.fields,help:auto_backup.field_db_backup__message_needaction
-#: model:ir.model.fields,help:auto_backup.field_db_backup__message_unread
 msgid "If checked, new messages require your attention."
 msgstr ""
 
@@ -306,7 +315,7 @@ msgstr ""
 
 #. module: auto_backup
 #: model:ir.model.fields,help:auto_backup.field_db_backup__message_needaction_counter
-msgid "Number of messages which requires an action"
+msgid "Number of messages requiring action"
 msgstr ""
 
 #. module: auto_backup
@@ -314,11 +323,6 @@ msgstr ""
 msgid "Number of messages with delivery error"
 msgstr ""
 
-#. module: auto_backup
-#: model:ir.model.fields,help:auto_backup.field_db_backup__message_unread_counter
-msgid "Number of unread messages"
-msgstr ""
-
 #. module: auto_backup
 #: model:ir.model.fields,help:auto_backup.field_db_backup__sftp_private_key
 msgid ""
@@ -372,6 +376,11 @@ msgid ""
 "Set the scheduler to active and fill in how often you want backups generated."
 msgstr ""
 
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__smart_search
+msgid "Smart Search"
+msgstr ""
+
 #. module: auto_backup
 #: model:ir.model.fields,help:auto_backup.field_db_backup__name
 msgid "Summary of this backup process"
@@ -388,6 +397,21 @@ msgid ""
 "The host name or IP address from your remote server. For example 192.168.0.1"
 msgstr ""
 
+#. module: auto_backup
+#: model:ir.model.fields,help:auto_backup.field_db_backup__count_pending_changeset_changes
+msgid "The number of pending changes of this record"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,help:auto_backup.field_db_backup__count_pending_changesets
+msgid "The number of pending changesets of this record"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,help:auto_backup.field_db_backup__count_changesets
+msgid "The overall number of changesets of this record"
+msgstr ""
+
 #. module: auto_backup
 #: model:ir.model.fields,help:auto_backup.field_db_backup__sftp_password
 msgid ""
@@ -407,16 +431,6 @@ msgid ""
 "on the external server."
 msgstr ""
 
-#. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup__message_unread
-msgid "Unread Messages"
-msgstr ""
-
-#. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup__message_unread_counter
-msgid "Unread Messages Counter"
-msgstr ""
-
 #. module: auto_backup
 #: model_terms:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
 msgid ""
diff --git a/auto_backup/i18n/eu.po b/auto_backup/i18n/eu.po
index a903be9fa7d..d36145222c5 100644
--- a/auto_backup/i18n/eu.po
+++ b/auto_backup/i18n/eu.po
@@ -62,7 +62,6 @@ msgstr ""
 #. module: auto_backup
 #: model:ir.actions.server,name:auto_backup.ir_cron_backup_scheduler_0_ir_actions_server
 #: model:ir.cron,cron_name:auto_backup.ir_cron_backup_scheduler_0
-#: model:ir.cron,name:auto_backup.ir_cron_backup_scheduler_0
 msgid "Backup Scheduler"
 msgstr ""
 
@@ -109,23 +108,31 @@ msgid "Choose the storage method for this backup."
 msgstr ""
 
 #. module: auto_backup
+#. odoo-python
 #: code:addons/auto_backup/models/db_backup.py:0
 #, python-format
 msgid "Cleanup of old database backups failed."
 msgstr ""
 
 #. module: auto_backup
+#. odoo-python
 #: code:addons/auto_backup/models/db_backup.py:0
 #, python-format
 msgid "Connection Test Failed!"
 msgstr ""
 
 #. module: auto_backup
+#. odoo-python
 #: code:addons/auto_backup/models/db_backup.py:0
 #, python-format
 msgid "Connection Test Succeeded!"
 msgstr ""
 
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__count_changesets
+msgid "Count Changesets"
+msgstr ""
+
 #. module: auto_backup
 #: model:ir.model.fields,field_description:auto_backup.field_db_backup__count_pending_changeset_changes
 msgid "Count Pending Changeset Changes"
@@ -152,6 +159,7 @@ msgid "Database Backup"
 msgstr ""
 
 #. module: auto_backup
+#. odoo-python
 #: code:addons/auto_backup/models/db_backup.py:0
 #: model:mail.message.subtype,description:auto_backup.mail_message_subtype_failure
 #, python-format
@@ -159,6 +167,7 @@ msgid "Database backup failed."
 msgstr ""
 
 #. module: auto_backup
+#. odoo-python
 #: code:addons/auto_backup/models/db_backup.py:0
 #: model:mail.message.subtype,description:auto_backup.mail_message_subtype_success
 #, python-format
@@ -176,6 +185,7 @@ msgid "Display Name"
 msgstr "Izena erakutsi"
 
 #. module: auto_backup
+#. odoo-python
 #: code:addons/auto_backup/models/db_backup.py:0
 #, python-format
 msgid ""
@@ -234,7 +244,6 @@ msgstr "ID"
 
 #. module: auto_backup
 #: model:ir.model.fields,help:auto_backup.field_db_backup__message_needaction
-#: model:ir.model.fields,help:auto_backup.field_db_backup__message_unread
 msgid "If checked, new messages require your attention."
 msgstr ""
 
@@ -306,7 +315,7 @@ msgstr ""
 
 #. module: auto_backup
 #: model:ir.model.fields,help:auto_backup.field_db_backup__message_needaction_counter
-msgid "Number of messages which requires an action"
+msgid "Number of messages requiring action"
 msgstr ""
 
 #. module: auto_backup
@@ -314,11 +323,6 @@ msgstr ""
 msgid "Number of messages with delivery error"
 msgstr ""
 
-#. module: auto_backup
-#: model:ir.model.fields,help:auto_backup.field_db_backup__message_unread_counter
-msgid "Number of unread messages"
-msgstr ""
-
 #. module: auto_backup
 #: model:ir.model.fields,help:auto_backup.field_db_backup__sftp_private_key
 msgid ""
@@ -372,6 +376,11 @@ msgid ""
 "Set the scheduler to active and fill in how often you want backups generated."
 msgstr ""
 
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__smart_search
+msgid "Smart Search"
+msgstr ""
+
 #. module: auto_backup
 #: model:ir.model.fields,help:auto_backup.field_db_backup__name
 msgid "Summary of this backup process"
@@ -388,6 +397,21 @@ msgid ""
 "The host name or IP address from your remote server. For example 192.168.0.1"
 msgstr ""
 
+#. module: auto_backup
+#: model:ir.model.fields,help:auto_backup.field_db_backup__count_pending_changeset_changes
+msgid "The number of pending changes of this record"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,help:auto_backup.field_db_backup__count_pending_changesets
+msgid "The number of pending changesets of this record"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,help:auto_backup.field_db_backup__count_changesets
+msgid "The overall number of changesets of this record"
+msgstr ""
+
 #. module: auto_backup
 #: model:ir.model.fields,help:auto_backup.field_db_backup__sftp_password
 msgid ""
@@ -407,16 +431,6 @@ msgid ""
 "on the external server."
 msgstr ""
 
-#. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup__message_unread
-msgid "Unread Messages"
-msgstr ""
-
-#. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup__message_unread_counter
-msgid "Unread Messages Counter"
-msgstr ""
-
 #. module: auto_backup
 #: model_terms:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
 msgid ""
diff --git a/auto_backup/i18n/fa.po b/auto_backup/i18n/fa.po
index 95afdd2ea93..5ec12983996 100644
--- a/auto_backup/i18n/fa.po
+++ b/auto_backup/i18n/fa.po
@@ -62,7 +62,6 @@ msgstr ""
 #. module: auto_backup
 #: model:ir.actions.server,name:auto_backup.ir_cron_backup_scheduler_0_ir_actions_server
 #: model:ir.cron,cron_name:auto_backup.ir_cron_backup_scheduler_0
-#: model:ir.cron,name:auto_backup.ir_cron_backup_scheduler_0
 msgid "Backup Scheduler"
 msgstr ""
 
@@ -109,23 +108,31 @@ msgid "Choose the storage method for this backup."
 msgstr ""
 
 #. module: auto_backup
+#. odoo-python
 #: code:addons/auto_backup/models/db_backup.py:0
 #, python-format
 msgid "Cleanup of old database backups failed."
 msgstr ""
 
 #. module: auto_backup
+#. odoo-python
 #: code:addons/auto_backup/models/db_backup.py:0
 #, python-format
 msgid "Connection Test Failed!"
 msgstr ""
 
 #. module: auto_backup
+#. odoo-python
 #: code:addons/auto_backup/models/db_backup.py:0
 #, python-format
 msgid "Connection Test Succeeded!"
 msgstr ""
 
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__count_changesets
+msgid "Count Changesets"
+msgstr ""
+
 #. module: auto_backup
 #: model:ir.model.fields,field_description:auto_backup.field_db_backup__count_pending_changeset_changes
 msgid "Count Pending Changeset Changes"
@@ -152,6 +159,7 @@ msgid "Database Backup"
 msgstr ""
 
 #. module: auto_backup
+#. odoo-python
 #: code:addons/auto_backup/models/db_backup.py:0
 #: model:mail.message.subtype,description:auto_backup.mail_message_subtype_failure
 #, python-format
@@ -159,6 +167,7 @@ msgid "Database backup failed."
 msgstr ""
 
 #. module: auto_backup
+#. odoo-python
 #: code:addons/auto_backup/models/db_backup.py:0
 #: model:mail.message.subtype,description:auto_backup.mail_message_subtype_success
 #, python-format
@@ -176,6 +185,7 @@ msgid "Display Name"
 msgstr "نام نمایشی"
 
 #. module: auto_backup
+#. odoo-python
 #: code:addons/auto_backup/models/db_backup.py:0
 #, python-format
 msgid ""
@@ -234,7 +244,6 @@ msgstr "شناسه"
 
 #. module: auto_backup
 #: model:ir.model.fields,help:auto_backup.field_db_backup__message_needaction
-#: model:ir.model.fields,help:auto_backup.field_db_backup__message_unread
 msgid "If checked, new messages require your attention."
 msgstr ""
 
@@ -306,7 +315,7 @@ msgstr ""
 
 #. module: auto_backup
 #: model:ir.model.fields,help:auto_backup.field_db_backup__message_needaction_counter
-msgid "Number of messages which requires an action"
+msgid "Number of messages requiring action"
 msgstr ""
 
 #. module: auto_backup
@@ -314,11 +323,6 @@ msgstr ""
 msgid "Number of messages with delivery error"
 msgstr ""
 
-#. module: auto_backup
-#: model:ir.model.fields,help:auto_backup.field_db_backup__message_unread_counter
-msgid "Number of unread messages"
-msgstr ""
-
 #. module: auto_backup
 #: model:ir.model.fields,help:auto_backup.field_db_backup__sftp_private_key
 msgid ""
@@ -372,6 +376,11 @@ msgid ""
 "Set the scheduler to active and fill in how often you want backups generated."
 msgstr ""
 
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__smart_search
+msgid "Smart Search"
+msgstr ""
+
 #. module: auto_backup
 #: model:ir.model.fields,help:auto_backup.field_db_backup__name
 msgid "Summary of this backup process"
@@ -388,6 +397,21 @@ msgid ""
 "The host name or IP address from your remote server. For example 192.168.0.1"
 msgstr ""
 
+#. module: auto_backup
+#: model:ir.model.fields,help:auto_backup.field_db_backup__count_pending_changeset_changes
+msgid "The number of pending changes of this record"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,help:auto_backup.field_db_backup__count_pending_changesets
+msgid "The number of pending changesets of this record"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,help:auto_backup.field_db_backup__count_changesets
+msgid "The overall number of changesets of this record"
+msgstr ""
+
 #. module: auto_backup
 #: model:ir.model.fields,help:auto_backup.field_db_backup__sftp_password
 msgid ""
@@ -407,16 +431,6 @@ msgid ""
 "on the external server."
 msgstr ""
 
-#. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup__message_unread
-msgid "Unread Messages"
-msgstr ""
-
-#. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup__message_unread_counter
-msgid "Unread Messages Counter"
-msgstr ""
-
 #. module: auto_backup
 #: model_terms:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
 msgid ""
diff --git a/auto_backup/i18n/fi.po b/auto_backup/i18n/fi.po
index a61aca01b36..306b03fc357 100644
--- a/auto_backup/i18n/fi.po
+++ b/auto_backup/i18n/fi.po
@@ -62,7 +62,6 @@ msgstr ""
 #. module: auto_backup
 #: model:ir.actions.server,name:auto_backup.ir_cron_backup_scheduler_0_ir_actions_server
 #: model:ir.cron,cron_name:auto_backup.ir_cron_backup_scheduler_0
-#: model:ir.cron,name:auto_backup.ir_cron_backup_scheduler_0
 msgid "Backup Scheduler"
 msgstr ""
 
@@ -109,23 +108,31 @@ msgid "Choose the storage method for this backup."
 msgstr ""
 
 #. module: auto_backup
+#. odoo-python
 #: code:addons/auto_backup/models/db_backup.py:0
 #, python-format
 msgid "Cleanup of old database backups failed."
 msgstr ""
 
 #. module: auto_backup
+#. odoo-python
 #: code:addons/auto_backup/models/db_backup.py:0
 #, python-format
 msgid "Connection Test Failed!"
 msgstr ""
 
 #. module: auto_backup
+#. odoo-python
 #: code:addons/auto_backup/models/db_backup.py:0
 #, python-format
 msgid "Connection Test Succeeded!"
 msgstr ""
 
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__count_changesets
+msgid "Count Changesets"
+msgstr ""
+
 #. module: auto_backup
 #: model:ir.model.fields,field_description:auto_backup.field_db_backup__count_pending_changeset_changes
 msgid "Count Pending Changeset Changes"
@@ -152,6 +159,7 @@ msgid "Database Backup"
 msgstr ""
 
 #. module: auto_backup
+#. odoo-python
 #: code:addons/auto_backup/models/db_backup.py:0
 #: model:mail.message.subtype,description:auto_backup.mail_message_subtype_failure
 #, python-format
@@ -159,6 +167,7 @@ msgid "Database backup failed."
 msgstr ""
 
 #. module: auto_backup
+#. odoo-python
 #: code:addons/auto_backup/models/db_backup.py:0
 #: model:mail.message.subtype,description:auto_backup.mail_message_subtype_success
 #, python-format
@@ -176,6 +185,7 @@ msgid "Display Name"
 msgstr "Nimi"
 
 #. module: auto_backup
+#. odoo-python
 #: code:addons/auto_backup/models/db_backup.py:0
 #, python-format
 msgid ""
@@ -234,7 +244,6 @@ msgstr "ID"
 
 #. module: auto_backup
 #: model:ir.model.fields,help:auto_backup.field_db_backup__message_needaction
-#: model:ir.model.fields,help:auto_backup.field_db_backup__message_unread
 msgid "If checked, new messages require your attention."
 msgstr ""
 
@@ -306,7 +315,7 @@ msgstr ""
 
 #. module: auto_backup
 #: model:ir.model.fields,help:auto_backup.field_db_backup__message_needaction_counter
-msgid "Number of messages which requires an action"
+msgid "Number of messages requiring action"
 msgstr ""
 
 #. module: auto_backup
@@ -314,11 +323,6 @@ msgstr ""
 msgid "Number of messages with delivery error"
 msgstr ""
 
-#. module: auto_backup
-#: model:ir.model.fields,help:auto_backup.field_db_backup__message_unread_counter
-msgid "Number of unread messages"
-msgstr ""
-
 #. module: auto_backup
 #: model:ir.model.fields,help:auto_backup.field_db_backup__sftp_private_key
 msgid ""
@@ -372,6 +376,11 @@ msgid ""
 "Set the scheduler to active and fill in how often you want backups generated."
 msgstr ""
 
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__smart_search
+msgid "Smart Search"
+msgstr ""
+
 #. module: auto_backup
 #: model:ir.model.fields,help:auto_backup.field_db_backup__name
 msgid "Summary of this backup process"
@@ -388,6 +397,21 @@ msgid ""
 "The host name or IP address from your remote server. For example 192.168.0.1"
 msgstr ""
 
+#. module: auto_backup
+#: model:ir.model.fields,help:auto_backup.field_db_backup__count_pending_changeset_changes
+msgid "The number of pending changes of this record"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,help:auto_backup.field_db_backup__count_pending_changesets
+msgid "The number of pending changesets of this record"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,help:auto_backup.field_db_backup__count_changesets
+msgid "The overall number of changesets of this record"
+msgstr ""
+
 #. module: auto_backup
 #: model:ir.model.fields,help:auto_backup.field_db_backup__sftp_password
 msgid ""
@@ -407,16 +431,6 @@ msgid ""
 "on the external server."
 msgstr ""
 
-#. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup__message_unread
-msgid "Unread Messages"
-msgstr ""
-
-#. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup__message_unread_counter
-msgid "Unread Messages Counter"
-msgstr ""
-
 #. module: auto_backup
 #: model_terms:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
 msgid ""
diff --git a/auto_backup/i18n/fr.po b/auto_backup/i18n/fr.po
index d37516baeb8..50a13eef8a5 100644
--- a/auto_backup/i18n/fr.po
+++ b/auto_backup/i18n/fr.po
@@ -65,7 +65,6 @@ msgstr "Échec de la saugarde"
 #. module: auto_backup
 #: model:ir.actions.server,name:auto_backup.ir_cron_backup_scheduler_0_ir_actions_server
 #: model:ir.cron,cron_name:auto_backup.ir_cron_backup_scheduler_0
-#: model:ir.cron,name:auto_backup.ir_cron_backup_scheduler_0
 msgid "Backup Scheduler"
 msgstr ""
 
@@ -115,23 +114,31 @@ msgid "Choose the storage method for this backup."
 msgstr "Choisissez la méthode de stockage pour cette sauvegarde."
 
 #. module: auto_backup
+#. odoo-python
 #: code:addons/auto_backup/models/db_backup.py:0
 #, python-format
 msgid "Cleanup of old database backups failed."
 msgstr "Échec du nettoyage des anciennes sauvegardes de la base de données."
 
 #. module: auto_backup
+#. odoo-python
 #: code:addons/auto_backup/models/db_backup.py:0
 #, python-format
 msgid "Connection Test Failed!"
 msgstr "Échec du test de connexion !"
 
 #. module: auto_backup
+#. odoo-python
 #: code:addons/auto_backup/models/db_backup.py:0
 #, python-format
 msgid "Connection Test Succeeded!"
 msgstr "Test de connexion réussi !"
 
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__count_changesets
+msgid "Count Changesets"
+msgstr ""
+
 #. module: auto_backup
 #: model:ir.model.fields,field_description:auto_backup.field_db_backup__count_pending_changeset_changes
 msgid "Count Pending Changeset Changes"
@@ -158,6 +165,7 @@ msgid "Database Backup"
 msgstr ""
 
 #. module: auto_backup
+#. odoo-python
 #: code:addons/auto_backup/models/db_backup.py:0
 #: model:mail.message.subtype,description:auto_backup.mail_message_subtype_failure
 #, python-format
@@ -165,6 +173,7 @@ msgid "Database backup failed."
 msgstr "Échec de la sauvegarde de la base de données"
 
 #. module: auto_backup
+#. odoo-python
 #: code:addons/auto_backup/models/db_backup.py:0
 #: model:mail.message.subtype,description:auto_backup.mail_message_subtype_success
 #, python-format
@@ -182,6 +191,7 @@ msgid "Display Name"
 msgstr "Nom affiché"
 
 #. module: auto_backup
+#. odoo-python
 #: code:addons/auto_backup/models/db_backup.py:0
 #, python-format
 msgid ""
@@ -243,7 +253,6 @@ msgstr "ID"
 
 #. module: auto_backup
 #: model:ir.model.fields,help:auto_backup.field_db_backup__message_needaction
-#: model:ir.model.fields,help:auto_backup.field_db_backup__message_unread
 msgid "If checked, new messages require your attention."
 msgstr ""
 
@@ -315,7 +324,7 @@ msgstr ""
 
 #. module: auto_backup
 #: model:ir.model.fields,help:auto_backup.field_db_backup__message_needaction_counter
-msgid "Number of messages which requires an action"
+msgid "Number of messages requiring action"
 msgstr ""
 
 #. module: auto_backup
@@ -323,11 +332,6 @@ msgstr ""
 msgid "Number of messages with delivery error"
 msgstr ""
 
-#. module: auto_backup
-#: model:ir.model.fields,help:auto_backup.field_db_backup__message_unread_counter
-msgid "Number of unread messages"
-msgstr ""
-
 #. module: auto_backup
 #: model:ir.model.fields,help:auto_backup.field_db_backup__sftp_private_key
 msgid ""
@@ -383,6 +387,11 @@ msgid ""
 "Set the scheduler to active and fill in how often you want backups generated."
 msgstr ""
 
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__smart_search
+msgid "Smart Search"
+msgstr ""
+
 #. module: auto_backup
 #: model:ir.model.fields,help:auto_backup.field_db_backup__name
 msgid "Summary of this backup process"
@@ -399,6 +408,21 @@ msgid ""
 "The host name or IP address from your remote server. For example 192.168.0.1"
 msgstr ""
 
+#. module: auto_backup
+#: model:ir.model.fields,help:auto_backup.field_db_backup__count_pending_changeset_changes
+msgid "The number of pending changes of this record"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,help:auto_backup.field_db_backup__count_pending_changesets
+msgid "The number of pending changesets of this record"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,help:auto_backup.field_db_backup__count_changesets
+msgid "The overall number of changesets of this record"
+msgstr ""
+
 #. module: auto_backup
 #: model:ir.model.fields,help:auto_backup.field_db_backup__sftp_password
 msgid ""
@@ -418,16 +442,6 @@ msgid ""
 "on the external server."
 msgstr ""
 
-#. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup__message_unread
-msgid "Unread Messages"
-msgstr ""
-
-#. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup__message_unread_counter
-msgid "Unread Messages Counter"
-msgstr ""
-
 #. module: auto_backup
 #: model_terms:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
 msgid ""
diff --git a/auto_backup/i18n/fr_CA.po b/auto_backup/i18n/fr_CA.po
index a59a2d826d9..bced7aeee68 100644
--- a/auto_backup/i18n/fr_CA.po
+++ b/auto_backup/i18n/fr_CA.po
@@ -63,7 +63,6 @@ msgstr ""
 #. module: auto_backup
 #: model:ir.actions.server,name:auto_backup.ir_cron_backup_scheduler_0_ir_actions_server
 #: model:ir.cron,cron_name:auto_backup.ir_cron_backup_scheduler_0
-#: model:ir.cron,name:auto_backup.ir_cron_backup_scheduler_0
 msgid "Backup Scheduler"
 msgstr ""
 
@@ -110,23 +109,31 @@ msgid "Choose the storage method for this backup."
 msgstr ""
 
 #. module: auto_backup
+#. odoo-python
 #: code:addons/auto_backup/models/db_backup.py:0
 #, python-format
 msgid "Cleanup of old database backups failed."
 msgstr ""
 
 #. module: auto_backup
+#. odoo-python
 #: code:addons/auto_backup/models/db_backup.py:0
 #, python-format
 msgid "Connection Test Failed!"
 msgstr ""
 
 #. module: auto_backup
+#. odoo-python
 #: code:addons/auto_backup/models/db_backup.py:0
 #, python-format
 msgid "Connection Test Succeeded!"
 msgstr ""
 
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__count_changesets
+msgid "Count Changesets"
+msgstr ""
+
 #. module: auto_backup
 #: model:ir.model.fields,field_description:auto_backup.field_db_backup__count_pending_changeset_changes
 msgid "Count Pending Changeset Changes"
@@ -153,6 +160,7 @@ msgid "Database Backup"
 msgstr ""
 
 #. module: auto_backup
+#. odoo-python
 #: code:addons/auto_backup/models/db_backup.py:0
 #: model:mail.message.subtype,description:auto_backup.mail_message_subtype_failure
 #, python-format
@@ -160,6 +168,7 @@ msgid "Database backup failed."
 msgstr ""
 
 #. module: auto_backup
+#. odoo-python
 #: code:addons/auto_backup/models/db_backup.py:0
 #: model:mail.message.subtype,description:auto_backup.mail_message_subtype_success
 #, python-format
@@ -177,6 +186,7 @@ msgid "Display Name"
 msgstr "Afficher le nom"
 
 #. module: auto_backup
+#. odoo-python
 #: code:addons/auto_backup/models/db_backup.py:0
 #, python-format
 msgid ""
@@ -235,7 +245,6 @@ msgstr "Identifiant"
 
 #. module: auto_backup
 #: model:ir.model.fields,help:auto_backup.field_db_backup__message_needaction
-#: model:ir.model.fields,help:auto_backup.field_db_backup__message_unread
 msgid "If checked, new messages require your attention."
 msgstr ""
 
@@ -307,7 +316,7 @@ msgstr ""
 
 #. module: auto_backup
 #: model:ir.model.fields,help:auto_backup.field_db_backup__message_needaction_counter
-msgid "Number of messages which requires an action"
+msgid "Number of messages requiring action"
 msgstr ""
 
 #. module: auto_backup
@@ -315,11 +324,6 @@ msgstr ""
 msgid "Number of messages with delivery error"
 msgstr ""
 
-#. module: auto_backup
-#: model:ir.model.fields,help:auto_backup.field_db_backup__message_unread_counter
-msgid "Number of unread messages"
-msgstr ""
-
 #. module: auto_backup
 #: model:ir.model.fields,help:auto_backup.field_db_backup__sftp_private_key
 msgid ""
@@ -373,6 +377,11 @@ msgid ""
 "Set the scheduler to active and fill in how often you want backups generated."
 msgstr ""
 
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__smart_search
+msgid "Smart Search"
+msgstr ""
+
 #. module: auto_backup
 #: model:ir.model.fields,help:auto_backup.field_db_backup__name
 msgid "Summary of this backup process"
@@ -389,6 +398,21 @@ msgid ""
 "The host name or IP address from your remote server. For example 192.168.0.1"
 msgstr ""
 
+#. module: auto_backup
+#: model:ir.model.fields,help:auto_backup.field_db_backup__count_pending_changeset_changes
+msgid "The number of pending changes of this record"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,help:auto_backup.field_db_backup__count_pending_changesets
+msgid "The number of pending changesets of this record"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,help:auto_backup.field_db_backup__count_changesets
+msgid "The overall number of changesets of this record"
+msgstr ""
+
 #. module: auto_backup
 #: model:ir.model.fields,help:auto_backup.field_db_backup__sftp_password
 msgid ""
@@ -408,16 +432,6 @@ msgid ""
 "on the external server."
 msgstr ""
 
-#. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup__message_unread
-msgid "Unread Messages"
-msgstr ""
-
-#. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup__message_unread_counter
-msgid "Unread Messages Counter"
-msgstr ""
-
 #. module: auto_backup
 #: model_terms:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
 msgid ""
diff --git a/auto_backup/i18n/fr_CH.po b/auto_backup/i18n/fr_CH.po
index 9c48d18b782..5722d7ad278 100644
--- a/auto_backup/i18n/fr_CH.po
+++ b/auto_backup/i18n/fr_CH.po
@@ -63,7 +63,6 @@ msgstr ""
 #. module: auto_backup
 #: model:ir.actions.server,name:auto_backup.ir_cron_backup_scheduler_0_ir_actions_server
 #: model:ir.cron,cron_name:auto_backup.ir_cron_backup_scheduler_0
-#: model:ir.cron,name:auto_backup.ir_cron_backup_scheduler_0
 msgid "Backup Scheduler"
 msgstr ""
 
@@ -110,23 +109,31 @@ msgid "Choose the storage method for this backup."
 msgstr ""
 
 #. module: auto_backup
+#. odoo-python
 #: code:addons/auto_backup/models/db_backup.py:0
 #, python-format
 msgid "Cleanup of old database backups failed."
 msgstr ""
 
 #. module: auto_backup
+#. odoo-python
 #: code:addons/auto_backup/models/db_backup.py:0
 #, python-format
 msgid "Connection Test Failed!"
 msgstr ""
 
 #. module: auto_backup
+#. odoo-python
 #: code:addons/auto_backup/models/db_backup.py:0
 #, python-format
 msgid "Connection Test Succeeded!"
 msgstr ""
 
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__count_changesets
+msgid "Count Changesets"
+msgstr ""
+
 #. module: auto_backup
 #: model:ir.model.fields,field_description:auto_backup.field_db_backup__count_pending_changeset_changes
 msgid "Count Pending Changeset Changes"
@@ -153,6 +160,7 @@ msgid "Database Backup"
 msgstr ""
 
 #. module: auto_backup
+#. odoo-python
 #: code:addons/auto_backup/models/db_backup.py:0
 #: model:mail.message.subtype,description:auto_backup.mail_message_subtype_failure
 #, python-format
@@ -160,6 +168,7 @@ msgid "Database backup failed."
 msgstr ""
 
 #. module: auto_backup
+#. odoo-python
 #: code:addons/auto_backup/models/db_backup.py:0
 #: model:mail.message.subtype,description:auto_backup.mail_message_subtype_success
 #, python-format
@@ -177,6 +186,7 @@ msgid "Display Name"
 msgstr "Nom affiché"
 
 #. module: auto_backup
+#. odoo-python
 #: code:addons/auto_backup/models/db_backup.py:0
 #, python-format
 msgid ""
@@ -235,7 +245,6 @@ msgstr "ID"
 
 #. module: auto_backup
 #: model:ir.model.fields,help:auto_backup.field_db_backup__message_needaction
-#: model:ir.model.fields,help:auto_backup.field_db_backup__message_unread
 msgid "If checked, new messages require your attention."
 msgstr ""
 
@@ -307,7 +316,7 @@ msgstr ""
 
 #. module: auto_backup
 #: model:ir.model.fields,help:auto_backup.field_db_backup__message_needaction_counter
-msgid "Number of messages which requires an action"
+msgid "Number of messages requiring action"
 msgstr ""
 
 #. module: auto_backup
@@ -315,11 +324,6 @@ msgstr ""
 msgid "Number of messages with delivery error"
 msgstr ""
 
-#. module: auto_backup
-#: model:ir.model.fields,help:auto_backup.field_db_backup__message_unread_counter
-msgid "Number of unread messages"
-msgstr ""
-
 #. module: auto_backup
 #: model:ir.model.fields,help:auto_backup.field_db_backup__sftp_private_key
 msgid ""
@@ -373,6 +377,11 @@ msgid ""
 "Set the scheduler to active and fill in how often you want backups generated."
 msgstr ""
 
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__smart_search
+msgid "Smart Search"
+msgstr ""
+
 #. module: auto_backup
 #: model:ir.model.fields,help:auto_backup.field_db_backup__name
 msgid "Summary of this backup process"
@@ -389,6 +398,21 @@ msgid ""
 "The host name or IP address from your remote server. For example 192.168.0.1"
 msgstr ""
 
+#. module: auto_backup
+#: model:ir.model.fields,help:auto_backup.field_db_backup__count_pending_changeset_changes
+msgid "The number of pending changes of this record"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,help:auto_backup.field_db_backup__count_pending_changesets
+msgid "The number of pending changesets of this record"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,help:auto_backup.field_db_backup__count_changesets
+msgid "The overall number of changesets of this record"
+msgstr ""
+
 #. module: auto_backup
 #: model:ir.model.fields,help:auto_backup.field_db_backup__sftp_password
 msgid ""
@@ -408,16 +432,6 @@ msgid ""
 "on the external server."
 msgstr ""
 
-#. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup__message_unread
-msgid "Unread Messages"
-msgstr ""
-
-#. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup__message_unread_counter
-msgid "Unread Messages Counter"
-msgstr ""
-
 #. module: auto_backup
 #: model_terms:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
 msgid ""
diff --git a/auto_backup/i18n/gl.po b/auto_backup/i18n/gl.po
index 1ae7c93b801..a8acb1cdcf3 100644
--- a/auto_backup/i18n/gl.po
+++ b/auto_backup/i18n/gl.po
@@ -62,7 +62,6 @@ msgstr ""
 #. module: auto_backup
 #: model:ir.actions.server,name:auto_backup.ir_cron_backup_scheduler_0_ir_actions_server
 #: model:ir.cron,cron_name:auto_backup.ir_cron_backup_scheduler_0
-#: model:ir.cron,name:auto_backup.ir_cron_backup_scheduler_0
 msgid "Backup Scheduler"
 msgstr ""
 
@@ -109,23 +108,31 @@ msgid "Choose the storage method for this backup."
 msgstr ""
 
 #. module: auto_backup
+#. odoo-python
 #: code:addons/auto_backup/models/db_backup.py:0
 #, python-format
 msgid "Cleanup of old database backups failed."
 msgstr ""
 
 #. module: auto_backup
+#. odoo-python
 #: code:addons/auto_backup/models/db_backup.py:0
 #, python-format
 msgid "Connection Test Failed!"
 msgstr ""
 
 #. module: auto_backup
+#. odoo-python
 #: code:addons/auto_backup/models/db_backup.py:0
 #, python-format
 msgid "Connection Test Succeeded!"
 msgstr ""
 
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__count_changesets
+msgid "Count Changesets"
+msgstr ""
+
 #. module: auto_backup
 #: model:ir.model.fields,field_description:auto_backup.field_db_backup__count_pending_changeset_changes
 msgid "Count Pending Changeset Changes"
@@ -152,6 +159,7 @@ msgid "Database Backup"
 msgstr ""
 
 #. module: auto_backup
+#. odoo-python
 #: code:addons/auto_backup/models/db_backup.py:0
 #: model:mail.message.subtype,description:auto_backup.mail_message_subtype_failure
 #, python-format
@@ -159,6 +167,7 @@ msgid "Database backup failed."
 msgstr ""
 
 #. module: auto_backup
+#. odoo-python
 #: code:addons/auto_backup/models/db_backup.py:0
 #: model:mail.message.subtype,description:auto_backup.mail_message_subtype_success
 #, python-format
@@ -176,6 +185,7 @@ msgid "Display Name"
 msgstr ""
 
 #. module: auto_backup
+#. odoo-python
 #: code:addons/auto_backup/models/db_backup.py:0
 #, python-format
 msgid ""
@@ -234,7 +244,6 @@ msgstr "ID"
 
 #. module: auto_backup
 #: model:ir.model.fields,help:auto_backup.field_db_backup__message_needaction
-#: model:ir.model.fields,help:auto_backup.field_db_backup__message_unread
 msgid "If checked, new messages require your attention."
 msgstr ""
 
@@ -306,7 +315,7 @@ msgstr ""
 
 #. module: auto_backup
 #: model:ir.model.fields,help:auto_backup.field_db_backup__message_needaction_counter
-msgid "Number of messages which requires an action"
+msgid "Number of messages requiring action"
 msgstr ""
 
 #. module: auto_backup
@@ -314,11 +323,6 @@ msgstr ""
 msgid "Number of messages with delivery error"
 msgstr ""
 
-#. module: auto_backup
-#: model:ir.model.fields,help:auto_backup.field_db_backup__message_unread_counter
-msgid "Number of unread messages"
-msgstr ""
-
 #. module: auto_backup
 #: model:ir.model.fields,help:auto_backup.field_db_backup__sftp_private_key
 msgid ""
@@ -372,6 +376,11 @@ msgid ""
 "Set the scheduler to active and fill in how often you want backups generated."
 msgstr ""
 
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__smart_search
+msgid "Smart Search"
+msgstr ""
+
 #. module: auto_backup
 #: model:ir.model.fields,help:auto_backup.field_db_backup__name
 msgid "Summary of this backup process"
@@ -388,6 +397,21 @@ msgid ""
 "The host name or IP address from your remote server. For example 192.168.0.1"
 msgstr ""
 
+#. module: auto_backup
+#: model:ir.model.fields,help:auto_backup.field_db_backup__count_pending_changeset_changes
+msgid "The number of pending changes of this record"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,help:auto_backup.field_db_backup__count_pending_changesets
+msgid "The number of pending changesets of this record"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,help:auto_backup.field_db_backup__count_changesets
+msgid "The overall number of changesets of this record"
+msgstr ""
+
 #. module: auto_backup
 #: model:ir.model.fields,help:auto_backup.field_db_backup__sftp_password
 msgid ""
@@ -407,16 +431,6 @@ msgid ""
 "on the external server."
 msgstr ""
 
-#. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup__message_unread
-msgid "Unread Messages"
-msgstr ""
-
-#. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup__message_unread_counter
-msgid "Unread Messages Counter"
-msgstr ""
-
 #. module: auto_backup
 #: model_terms:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
 msgid ""
diff --git a/auto_backup/i18n/gl_ES.po b/auto_backup/i18n/gl_ES.po
index 4085f3bac93..6ab2fe58bdc 100644
--- a/auto_backup/i18n/gl_ES.po
+++ b/auto_backup/i18n/gl_ES.po
@@ -63,7 +63,6 @@ msgstr ""
 #. module: auto_backup
 #: model:ir.actions.server,name:auto_backup.ir_cron_backup_scheduler_0_ir_actions_server
 #: model:ir.cron,cron_name:auto_backup.ir_cron_backup_scheduler_0
-#: model:ir.cron,name:auto_backup.ir_cron_backup_scheduler_0
 msgid "Backup Scheduler"
 msgstr ""
 
@@ -110,23 +109,31 @@ msgid "Choose the storage method for this backup."
 msgstr ""
 
 #. module: auto_backup
+#. odoo-python
 #: code:addons/auto_backup/models/db_backup.py:0
 #, python-format
 msgid "Cleanup of old database backups failed."
 msgstr ""
 
 #. module: auto_backup
+#. odoo-python
 #: code:addons/auto_backup/models/db_backup.py:0
 #, python-format
 msgid "Connection Test Failed!"
 msgstr ""
 
 #. module: auto_backup
+#. odoo-python
 #: code:addons/auto_backup/models/db_backup.py:0
 #, python-format
 msgid "Connection Test Succeeded!"
 msgstr ""
 
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__count_changesets
+msgid "Count Changesets"
+msgstr ""
+
 #. module: auto_backup
 #: model:ir.model.fields,field_description:auto_backup.field_db_backup__count_pending_changeset_changes
 msgid "Count Pending Changeset Changes"
@@ -153,6 +160,7 @@ msgid "Database Backup"
 msgstr ""
 
 #. module: auto_backup
+#. odoo-python
 #: code:addons/auto_backup/models/db_backup.py:0
 #: model:mail.message.subtype,description:auto_backup.mail_message_subtype_failure
 #, python-format
@@ -160,6 +168,7 @@ msgid "Database backup failed."
 msgstr ""
 
 #. module: auto_backup
+#. odoo-python
 #: code:addons/auto_backup/models/db_backup.py:0
 #: model:mail.message.subtype,description:auto_backup.mail_message_subtype_success
 #, python-format
@@ -177,6 +186,7 @@ msgid "Display Name"
 msgstr ""
 
 #. module: auto_backup
+#. odoo-python
 #: code:addons/auto_backup/models/db_backup.py:0
 #, python-format
 msgid ""
@@ -235,7 +245,6 @@ msgstr "ID"
 
 #. module: auto_backup
 #: model:ir.model.fields,help:auto_backup.field_db_backup__message_needaction
-#: model:ir.model.fields,help:auto_backup.field_db_backup__message_unread
 msgid "If checked, new messages require your attention."
 msgstr ""
 
@@ -307,7 +316,7 @@ msgstr ""
 
 #. module: auto_backup
 #: model:ir.model.fields,help:auto_backup.field_db_backup__message_needaction_counter
-msgid "Number of messages which requires an action"
+msgid "Number of messages requiring action"
 msgstr ""
 
 #. module: auto_backup
@@ -315,11 +324,6 @@ msgstr ""
 msgid "Number of messages with delivery error"
 msgstr ""
 
-#. module: auto_backup
-#: model:ir.model.fields,help:auto_backup.field_db_backup__message_unread_counter
-msgid "Number of unread messages"
-msgstr ""
-
 #. module: auto_backup
 #: model:ir.model.fields,help:auto_backup.field_db_backup__sftp_private_key
 msgid ""
@@ -373,6 +377,11 @@ msgid ""
 "Set the scheduler to active and fill in how often you want backups generated."
 msgstr ""
 
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__smart_search
+msgid "Smart Search"
+msgstr ""
+
 #. module: auto_backup
 #: model:ir.model.fields,help:auto_backup.field_db_backup__name
 msgid "Summary of this backup process"
@@ -389,6 +398,21 @@ msgid ""
 "The host name or IP address from your remote server. For example 192.168.0.1"
 msgstr ""
 
+#. module: auto_backup
+#: model:ir.model.fields,help:auto_backup.field_db_backup__count_pending_changeset_changes
+msgid "The number of pending changes of this record"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,help:auto_backup.field_db_backup__count_pending_changesets
+msgid "The number of pending changesets of this record"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,help:auto_backup.field_db_backup__count_changesets
+msgid "The overall number of changesets of this record"
+msgstr ""
+
 #. module: auto_backup
 #: model:ir.model.fields,help:auto_backup.field_db_backup__sftp_password
 msgid ""
@@ -408,16 +432,6 @@ msgid ""
 "on the external server."
 msgstr ""
 
-#. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup__message_unread
-msgid "Unread Messages"
-msgstr ""
-
-#. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup__message_unread_counter
-msgid "Unread Messages Counter"
-msgstr ""
-
 #. module: auto_backup
 #: model_terms:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
 msgid ""
diff --git a/auto_backup/i18n/he.po b/auto_backup/i18n/he.po
index b8d28cf1443..bac25439a09 100644
--- a/auto_backup/i18n/he.po
+++ b/auto_backup/i18n/he.po
@@ -62,7 +62,6 @@ msgstr ""
 #. module: auto_backup
 #: model:ir.actions.server,name:auto_backup.ir_cron_backup_scheduler_0_ir_actions_server
 #: model:ir.cron,cron_name:auto_backup.ir_cron_backup_scheduler_0
-#: model:ir.cron,name:auto_backup.ir_cron_backup_scheduler_0
 msgid "Backup Scheduler"
 msgstr ""
 
@@ -109,23 +108,31 @@ msgid "Choose the storage method for this backup."
 msgstr ""
 
 #. module: auto_backup
+#. odoo-python
 #: code:addons/auto_backup/models/db_backup.py:0
 #, python-format
 msgid "Cleanup of old database backups failed."
 msgstr ""
 
 #. module: auto_backup
+#. odoo-python
 #: code:addons/auto_backup/models/db_backup.py:0
 #, python-format
 msgid "Connection Test Failed!"
 msgstr ""
 
 #. module: auto_backup
+#. odoo-python
 #: code:addons/auto_backup/models/db_backup.py:0
 #, python-format
 msgid "Connection Test Succeeded!"
 msgstr ""
 
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__count_changesets
+msgid "Count Changesets"
+msgstr ""
+
 #. module: auto_backup
 #: model:ir.model.fields,field_description:auto_backup.field_db_backup__count_pending_changeset_changes
 msgid "Count Pending Changeset Changes"
@@ -152,6 +159,7 @@ msgid "Database Backup"
 msgstr ""
 
 #. module: auto_backup
+#. odoo-python
 #: code:addons/auto_backup/models/db_backup.py:0
 #: model:mail.message.subtype,description:auto_backup.mail_message_subtype_failure
 #, python-format
@@ -159,6 +167,7 @@ msgid "Database backup failed."
 msgstr ""
 
 #. module: auto_backup
+#. odoo-python
 #: code:addons/auto_backup/models/db_backup.py:0
 #: model:mail.message.subtype,description:auto_backup.mail_message_subtype_success
 #, python-format
@@ -176,6 +185,7 @@ msgid "Display Name"
 msgstr "השם המוצג"
 
 #. module: auto_backup
+#. odoo-python
 #: code:addons/auto_backup/models/db_backup.py:0
 #, python-format
 msgid ""
@@ -234,7 +244,6 @@ msgstr "מזהה"
 
 #. module: auto_backup
 #: model:ir.model.fields,help:auto_backup.field_db_backup__message_needaction
-#: model:ir.model.fields,help:auto_backup.field_db_backup__message_unread
 msgid "If checked, new messages require your attention."
 msgstr ""
 
@@ -306,7 +315,7 @@ msgstr ""
 
 #. module: auto_backup
 #: model:ir.model.fields,help:auto_backup.field_db_backup__message_needaction_counter
-msgid "Number of messages which requires an action"
+msgid "Number of messages requiring action"
 msgstr ""
 
 #. module: auto_backup
@@ -314,11 +323,6 @@ msgstr ""
 msgid "Number of messages with delivery error"
 msgstr ""
 
-#. module: auto_backup
-#: model:ir.model.fields,help:auto_backup.field_db_backup__message_unread_counter
-msgid "Number of unread messages"
-msgstr ""
-
 #. module: auto_backup
 #: model:ir.model.fields,help:auto_backup.field_db_backup__sftp_private_key
 msgid ""
@@ -372,6 +376,11 @@ msgid ""
 "Set the scheduler to active and fill in how often you want backups generated."
 msgstr ""
 
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__smart_search
+msgid "Smart Search"
+msgstr ""
+
 #. module: auto_backup
 #: model:ir.model.fields,help:auto_backup.field_db_backup__name
 msgid "Summary of this backup process"
@@ -388,6 +397,21 @@ msgid ""
 "The host name or IP address from your remote server. For example 192.168.0.1"
 msgstr ""
 
+#. module: auto_backup
+#: model:ir.model.fields,help:auto_backup.field_db_backup__count_pending_changeset_changes
+msgid "The number of pending changes of this record"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,help:auto_backup.field_db_backup__count_pending_changesets
+msgid "The number of pending changesets of this record"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,help:auto_backup.field_db_backup__count_changesets
+msgid "The overall number of changesets of this record"
+msgstr ""
+
 #. module: auto_backup
 #: model:ir.model.fields,help:auto_backup.field_db_backup__sftp_password
 msgid ""
@@ -407,16 +431,6 @@ msgid ""
 "on the external server."
 msgstr ""
 
-#. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup__message_unread
-msgid "Unread Messages"
-msgstr ""
-
-#. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup__message_unread_counter
-msgid "Unread Messages Counter"
-msgstr ""
-
 #. module: auto_backup
 #: model_terms:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
 msgid ""
diff --git a/auto_backup/i18n/hr.po b/auto_backup/i18n/hr.po
index 9d8ea842673..9589fe05eb4 100644
--- a/auto_backup/i18n/hr.po
+++ b/auto_backup/i18n/hr.po
@@ -64,7 +64,6 @@ msgstr "Format backupa"
 #. module: auto_backup
 #: model:ir.actions.server,name:auto_backup.ir_cron_backup_scheduler_0_ir_actions_server
 #: model:ir.cron,cron_name:auto_backup.ir_cron_backup_scheduler_0
-#: model:ir.cron,name:auto_backup.ir_cron_backup_scheduler_0
 msgid "Backup Scheduler"
 msgstr "Zakazivanje backupa"
 
@@ -111,23 +110,31 @@ msgid "Choose the storage method for this backup."
 msgstr "Odaberite metodu pohrane za ovaj backup."
 
 #. module: auto_backup
+#. odoo-python
 #: code:addons/auto_backup/models/db_backup.py:0
 #, python-format
 msgid "Cleanup of old database backups failed."
 msgstr "Čišćenje starih backup datoteka nije uspjelo."
 
 #. module: auto_backup
+#. odoo-python
 #: code:addons/auto_backup/models/db_backup.py:0
 #, python-format
 msgid "Connection Test Failed!"
 msgstr "Provjera povezivanja nije uspjela!"
 
 #. module: auto_backup
+#. odoo-python
 #: code:addons/auto_backup/models/db_backup.py:0
 #, python-format
 msgid "Connection Test Succeeded!"
 msgstr "Provjera povezivanja uspješna!"
 
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__count_changesets
+msgid "Count Changesets"
+msgstr ""
+
 #. module: auto_backup
 #: model:ir.model.fields,field_description:auto_backup.field_db_backup__count_pending_changeset_changes
 msgid "Count Pending Changeset Changes"
@@ -154,6 +161,7 @@ msgid "Database Backup"
 msgstr "Backup baze"
 
 #. module: auto_backup
+#. odoo-python
 #: code:addons/auto_backup/models/db_backup.py:0
 #: model:mail.message.subtype,description:auto_backup.mail_message_subtype_failure
 #, python-format
@@ -161,6 +169,7 @@ msgid "Database backup failed."
 msgstr "Backup baze nije uspio."
 
 #. module: auto_backup
+#. odoo-python
 #: code:addons/auto_backup/models/db_backup.py:0
 #: model:mail.message.subtype,description:auto_backup.mail_message_subtype_success
 #, python-format
@@ -178,6 +187,7 @@ msgid "Display Name"
 msgstr "Prikaži naziv"
 
 #. module: auto_backup
+#. odoo-python
 #: code:addons/auto_backup/models/db_backup.py:0
 #, python-format
 msgid ""
@@ -238,7 +248,6 @@ msgstr "ID"
 
 #. module: auto_backup
 #: model:ir.model.fields,help:auto_backup.field_db_backup__message_needaction
-#: model:ir.model.fields,help:auto_backup.field_db_backup__message_unread
 msgid "If checked, new messages require your attention."
 msgstr ""
 
@@ -310,7 +319,7 @@ msgstr ""
 
 #. module: auto_backup
 #: model:ir.model.fields,help:auto_backup.field_db_backup__message_needaction_counter
-msgid "Number of messages which requires an action"
+msgid "Number of messages requiring action"
 msgstr ""
 
 #. module: auto_backup
@@ -318,11 +327,6 @@ msgstr ""
 msgid "Number of messages with delivery error"
 msgstr ""
 
-#. module: auto_backup
-#: model:ir.model.fields,help:auto_backup.field_db_backup__message_unread_counter
-msgid "Number of unread messages"
-msgstr ""
-
 #. module: auto_backup
 #: model:ir.model.fields,help:auto_backup.field_db_backup__sftp_private_key
 msgid ""
@@ -376,6 +380,11 @@ msgid ""
 "Set the scheduler to active and fill in how often you want backups generated."
 msgstr ""
 
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__smart_search
+msgid "Smart Search"
+msgstr ""
+
 #. module: auto_backup
 #: model:ir.model.fields,help:auto_backup.field_db_backup__name
 msgid "Summary of this backup process"
@@ -392,6 +401,21 @@ msgid ""
 "The host name or IP address from your remote server. For example 192.168.0.1"
 msgstr ""
 
+#. module: auto_backup
+#: model:ir.model.fields,help:auto_backup.field_db_backup__count_pending_changeset_changes
+msgid "The number of pending changes of this record"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,help:auto_backup.field_db_backup__count_pending_changesets
+msgid "The number of pending changesets of this record"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,help:auto_backup.field_db_backup__count_changesets
+msgid "The overall number of changesets of this record"
+msgstr ""
+
 #. module: auto_backup
 #: model:ir.model.fields,help:auto_backup.field_db_backup__sftp_password
 msgid ""
@@ -411,16 +435,6 @@ msgid ""
 "on the external server."
 msgstr ""
 
-#. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup__message_unread
-msgid "Unread Messages"
-msgstr ""
-
-#. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup__message_unread_counter
-msgid "Unread Messages Counter"
-msgstr ""
-
 #. module: auto_backup
 #: model_terms:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
 msgid ""
diff --git a/auto_backup/i18n/hr_HR.po b/auto_backup/i18n/hr_HR.po
index a3317dfcb9e..e18b1229db5 100644
--- a/auto_backup/i18n/hr_HR.po
+++ b/auto_backup/i18n/hr_HR.po
@@ -64,7 +64,6 @@ msgstr ""
 #. module: auto_backup
 #: model:ir.actions.server,name:auto_backup.ir_cron_backup_scheduler_0_ir_actions_server
 #: model:ir.cron,cron_name:auto_backup.ir_cron_backup_scheduler_0
-#: model:ir.cron,name:auto_backup.ir_cron_backup_scheduler_0
 msgid "Backup Scheduler"
 msgstr ""
 
@@ -111,23 +110,31 @@ msgid "Choose the storage method for this backup."
 msgstr ""
 
 #. module: auto_backup
+#. odoo-python
 #: code:addons/auto_backup/models/db_backup.py:0
 #, python-format
 msgid "Cleanup of old database backups failed."
 msgstr ""
 
 #. module: auto_backup
+#. odoo-python
 #: code:addons/auto_backup/models/db_backup.py:0
 #, python-format
 msgid "Connection Test Failed!"
 msgstr ""
 
 #. module: auto_backup
+#. odoo-python
 #: code:addons/auto_backup/models/db_backup.py:0
 #, python-format
 msgid "Connection Test Succeeded!"
 msgstr ""
 
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__count_changesets
+msgid "Count Changesets"
+msgstr ""
+
 #. module: auto_backup
 #: model:ir.model.fields,field_description:auto_backup.field_db_backup__count_pending_changeset_changes
 msgid "Count Pending Changeset Changes"
@@ -154,6 +161,7 @@ msgid "Database Backup"
 msgstr ""
 
 #. module: auto_backup
+#. odoo-python
 #: code:addons/auto_backup/models/db_backup.py:0
 #: model:mail.message.subtype,description:auto_backup.mail_message_subtype_failure
 #, python-format
@@ -161,6 +169,7 @@ msgid "Database backup failed."
 msgstr ""
 
 #. module: auto_backup
+#. odoo-python
 #: code:addons/auto_backup/models/db_backup.py:0
 #: model:mail.message.subtype,description:auto_backup.mail_message_subtype_success
 #, python-format
@@ -178,6 +187,7 @@ msgid "Display Name"
 msgstr "Naziv"
 
 #. module: auto_backup
+#. odoo-python
 #: code:addons/auto_backup/models/db_backup.py:0
 #, python-format
 msgid ""
@@ -236,7 +246,6 @@ msgstr "ID"
 
 #. module: auto_backup
 #: model:ir.model.fields,help:auto_backup.field_db_backup__message_needaction
-#: model:ir.model.fields,help:auto_backup.field_db_backup__message_unread
 msgid "If checked, new messages require your attention."
 msgstr ""
 
@@ -308,7 +317,7 @@ msgstr ""
 
 #. module: auto_backup
 #: model:ir.model.fields,help:auto_backup.field_db_backup__message_needaction_counter
-msgid "Number of messages which requires an action"
+msgid "Number of messages requiring action"
 msgstr ""
 
 #. module: auto_backup
@@ -316,11 +325,6 @@ msgstr ""
 msgid "Number of messages with delivery error"
 msgstr ""
 
-#. module: auto_backup
-#: model:ir.model.fields,help:auto_backup.field_db_backup__message_unread_counter
-msgid "Number of unread messages"
-msgstr ""
-
 #. module: auto_backup
 #: model:ir.model.fields,help:auto_backup.field_db_backup__sftp_private_key
 msgid ""
@@ -374,6 +378,11 @@ msgid ""
 "Set the scheduler to active and fill in how often you want backups generated."
 msgstr ""
 
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__smart_search
+msgid "Smart Search"
+msgstr ""
+
 #. module: auto_backup
 #: model:ir.model.fields,help:auto_backup.field_db_backup__name
 msgid "Summary of this backup process"
@@ -390,6 +399,21 @@ msgid ""
 "The host name or IP address from your remote server. For example 192.168.0.1"
 msgstr ""
 
+#. module: auto_backup
+#: model:ir.model.fields,help:auto_backup.field_db_backup__count_pending_changeset_changes
+msgid "The number of pending changes of this record"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,help:auto_backup.field_db_backup__count_pending_changesets
+msgid "The number of pending changesets of this record"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,help:auto_backup.field_db_backup__count_changesets
+msgid "The overall number of changesets of this record"
+msgstr ""
+
 #. module: auto_backup
 #: model:ir.model.fields,help:auto_backup.field_db_backup__sftp_password
 msgid ""
@@ -409,16 +433,6 @@ msgid ""
 "on the external server."
 msgstr ""
 
-#. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup__message_unread
-msgid "Unread Messages"
-msgstr ""
-
-#. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup__message_unread_counter
-msgid "Unread Messages Counter"
-msgstr ""
-
 #. module: auto_backup
 #: model_terms:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
 msgid ""
diff --git a/auto_backup/i18n/hu.po b/auto_backup/i18n/hu.po
index 543939776e9..fb247ace15b 100644
--- a/auto_backup/i18n/hu.po
+++ b/auto_backup/i18n/hu.po
@@ -62,7 +62,6 @@ msgstr ""
 #. module: auto_backup
 #: model:ir.actions.server,name:auto_backup.ir_cron_backup_scheduler_0_ir_actions_server
 #: model:ir.cron,cron_name:auto_backup.ir_cron_backup_scheduler_0
-#: model:ir.cron,name:auto_backup.ir_cron_backup_scheduler_0
 msgid "Backup Scheduler"
 msgstr ""
 
@@ -109,23 +108,31 @@ msgid "Choose the storage method for this backup."
 msgstr ""
 
 #. module: auto_backup
+#. odoo-python
 #: code:addons/auto_backup/models/db_backup.py:0
 #, python-format
 msgid "Cleanup of old database backups failed."
 msgstr ""
 
 #. module: auto_backup
+#. odoo-python
 #: code:addons/auto_backup/models/db_backup.py:0
 #, python-format
 msgid "Connection Test Failed!"
 msgstr ""
 
 #. module: auto_backup
+#. odoo-python
 #: code:addons/auto_backup/models/db_backup.py:0
 #, python-format
 msgid "Connection Test Succeeded!"
 msgstr ""
 
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__count_changesets
+msgid "Count Changesets"
+msgstr ""
+
 #. module: auto_backup
 #: model:ir.model.fields,field_description:auto_backup.field_db_backup__count_pending_changeset_changes
 msgid "Count Pending Changeset Changes"
@@ -152,6 +159,7 @@ msgid "Database Backup"
 msgstr ""
 
 #. module: auto_backup
+#. odoo-python
 #: code:addons/auto_backup/models/db_backup.py:0
 #: model:mail.message.subtype,description:auto_backup.mail_message_subtype_failure
 #, python-format
@@ -159,6 +167,7 @@ msgid "Database backup failed."
 msgstr ""
 
 #. module: auto_backup
+#. odoo-python
 #: code:addons/auto_backup/models/db_backup.py:0
 #: model:mail.message.subtype,description:auto_backup.mail_message_subtype_success
 #, python-format
@@ -176,6 +185,7 @@ msgid "Display Name"
 msgstr "Név megjelenítése"
 
 #. module: auto_backup
+#. odoo-python
 #: code:addons/auto_backup/models/db_backup.py:0
 #, python-format
 msgid ""
@@ -234,7 +244,6 @@ msgstr "Azonosító ID"
 
 #. module: auto_backup
 #: model:ir.model.fields,help:auto_backup.field_db_backup__message_needaction
-#: model:ir.model.fields,help:auto_backup.field_db_backup__message_unread
 msgid "If checked, new messages require your attention."
 msgstr ""
 
@@ -306,7 +315,7 @@ msgstr ""
 
 #. module: auto_backup
 #: model:ir.model.fields,help:auto_backup.field_db_backup__message_needaction_counter
-msgid "Number of messages which requires an action"
+msgid "Number of messages requiring action"
 msgstr ""
 
 #. module: auto_backup
@@ -314,11 +323,6 @@ msgstr ""
 msgid "Number of messages with delivery error"
 msgstr ""
 
-#. module: auto_backup
-#: model:ir.model.fields,help:auto_backup.field_db_backup__message_unread_counter
-msgid "Number of unread messages"
-msgstr ""
-
 #. module: auto_backup
 #: model:ir.model.fields,help:auto_backup.field_db_backup__sftp_private_key
 msgid ""
@@ -372,6 +376,11 @@ msgid ""
 "Set the scheduler to active and fill in how often you want backups generated."
 msgstr ""
 
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__smart_search
+msgid "Smart Search"
+msgstr ""
+
 #. module: auto_backup
 #: model:ir.model.fields,help:auto_backup.field_db_backup__name
 msgid "Summary of this backup process"
@@ -388,6 +397,21 @@ msgid ""
 "The host name or IP address from your remote server. For example 192.168.0.1"
 msgstr ""
 
+#. module: auto_backup
+#: model:ir.model.fields,help:auto_backup.field_db_backup__count_pending_changeset_changes
+msgid "The number of pending changes of this record"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,help:auto_backup.field_db_backup__count_pending_changesets
+msgid "The number of pending changesets of this record"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,help:auto_backup.field_db_backup__count_changesets
+msgid "The overall number of changesets of this record"
+msgstr ""
+
 #. module: auto_backup
 #: model:ir.model.fields,help:auto_backup.field_db_backup__sftp_password
 msgid ""
@@ -407,16 +431,6 @@ msgid ""
 "on the external server."
 msgstr ""
 
-#. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup__message_unread
-msgid "Unread Messages"
-msgstr ""
-
-#. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup__message_unread_counter
-msgid "Unread Messages Counter"
-msgstr ""
-
 #. module: auto_backup
 #: model_terms:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
 msgid ""
diff --git a/auto_backup/i18n/id.po b/auto_backup/i18n/id.po
index 838ae36cfc3..87613800f1b 100644
--- a/auto_backup/i18n/id.po
+++ b/auto_backup/i18n/id.po
@@ -62,7 +62,6 @@ msgstr ""
 #. module: auto_backup
 #: model:ir.actions.server,name:auto_backup.ir_cron_backup_scheduler_0_ir_actions_server
 #: model:ir.cron,cron_name:auto_backup.ir_cron_backup_scheduler_0
-#: model:ir.cron,name:auto_backup.ir_cron_backup_scheduler_0
 msgid "Backup Scheduler"
 msgstr ""
 
@@ -109,23 +108,31 @@ msgid "Choose the storage method for this backup."
 msgstr ""
 
 #. module: auto_backup
+#. odoo-python
 #: code:addons/auto_backup/models/db_backup.py:0
 #, python-format
 msgid "Cleanup of old database backups failed."
 msgstr ""
 
 #. module: auto_backup
+#. odoo-python
 #: code:addons/auto_backup/models/db_backup.py:0
 #, python-format
 msgid "Connection Test Failed!"
 msgstr ""
 
 #. module: auto_backup
+#. odoo-python
 #: code:addons/auto_backup/models/db_backup.py:0
 #, python-format
 msgid "Connection Test Succeeded!"
 msgstr ""
 
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__count_changesets
+msgid "Count Changesets"
+msgstr ""
+
 #. module: auto_backup
 #: model:ir.model.fields,field_description:auto_backup.field_db_backup__count_pending_changeset_changes
 msgid "Count Pending Changeset Changes"
@@ -152,6 +159,7 @@ msgid "Database Backup"
 msgstr ""
 
 #. module: auto_backup
+#. odoo-python
 #: code:addons/auto_backup/models/db_backup.py:0
 #: model:mail.message.subtype,description:auto_backup.mail_message_subtype_failure
 #, python-format
@@ -159,6 +167,7 @@ msgid "Database backup failed."
 msgstr ""
 
 #. module: auto_backup
+#. odoo-python
 #: code:addons/auto_backup/models/db_backup.py:0
 #: model:mail.message.subtype,description:auto_backup.mail_message_subtype_success
 #, python-format
@@ -176,6 +185,7 @@ msgid "Display Name"
 msgstr "Nama Tampilan"
 
 #. module: auto_backup
+#. odoo-python
 #: code:addons/auto_backup/models/db_backup.py:0
 #, python-format
 msgid ""
@@ -234,7 +244,6 @@ msgstr "ID"
 
 #. module: auto_backup
 #: model:ir.model.fields,help:auto_backup.field_db_backup__message_needaction
-#: model:ir.model.fields,help:auto_backup.field_db_backup__message_unread
 msgid "If checked, new messages require your attention."
 msgstr ""
 
@@ -306,7 +315,7 @@ msgstr ""
 
 #. module: auto_backup
 #: model:ir.model.fields,help:auto_backup.field_db_backup__message_needaction_counter
-msgid "Number of messages which requires an action"
+msgid "Number of messages requiring action"
 msgstr ""
 
 #. module: auto_backup
@@ -314,11 +323,6 @@ msgstr ""
 msgid "Number of messages with delivery error"
 msgstr ""
 
-#. module: auto_backup
-#: model:ir.model.fields,help:auto_backup.field_db_backup__message_unread_counter
-msgid "Number of unread messages"
-msgstr ""
-
 #. module: auto_backup
 #: model:ir.model.fields,help:auto_backup.field_db_backup__sftp_private_key
 msgid ""
@@ -372,6 +376,11 @@ msgid ""
 "Set the scheduler to active and fill in how often you want backups generated."
 msgstr ""
 
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__smart_search
+msgid "Smart Search"
+msgstr ""
+
 #. module: auto_backup
 #: model:ir.model.fields,help:auto_backup.field_db_backup__name
 msgid "Summary of this backup process"
@@ -388,6 +397,21 @@ msgid ""
 "The host name or IP address from your remote server. For example 192.168.0.1"
 msgstr ""
 
+#. module: auto_backup
+#: model:ir.model.fields,help:auto_backup.field_db_backup__count_pending_changeset_changes
+msgid "The number of pending changes of this record"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,help:auto_backup.field_db_backup__count_pending_changesets
+msgid "The number of pending changesets of this record"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,help:auto_backup.field_db_backup__count_changesets
+msgid "The overall number of changesets of this record"
+msgstr ""
+
 #. module: auto_backup
 #: model:ir.model.fields,help:auto_backup.field_db_backup__sftp_password
 msgid ""
@@ -407,16 +431,6 @@ msgid ""
 "on the external server."
 msgstr ""
 
-#. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup__message_unread
-msgid "Unread Messages"
-msgstr ""
-
-#. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup__message_unread_counter
-msgid "Unread Messages Counter"
-msgstr ""
-
 #. module: auto_backup
 #: model_terms:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
 msgid ""
diff --git a/auto_backup/i18n/it.po b/auto_backup/i18n/it.po
index 217d14fa54a..d4367cd35ff 100644
--- a/auto_backup/i18n/it.po
+++ b/auto_backup/i18n/it.po
@@ -63,7 +63,6 @@ msgstr "Formato backup"
 #. module: auto_backup
 #: model:ir.actions.server,name:auto_backup.ir_cron_backup_scheduler_0_ir_actions_server
 #: model:ir.cron,cron_name:auto_backup.ir_cron_backup_scheduler_0
-#: model:ir.cron,name:auto_backup.ir_cron_backup_scheduler_0
 msgid "Backup Scheduler"
 msgstr "Pianificatore backup"
 
@@ -112,23 +111,31 @@ msgid "Choose the storage method for this backup."
 msgstr "Scegliere il metodo di archiviazione per questo backup."
 
 #. module: auto_backup
+#. odoo-python
 #: code:addons/auto_backup/models/db_backup.py:0
 #, python-format
 msgid "Cleanup of old database backups failed."
 msgstr "Pulizia dei vecchi backup del database non riuscita."
 
 #. module: auto_backup
+#. odoo-python
 #: code:addons/auto_backup/models/db_backup.py:0
 #, python-format
 msgid "Connection Test Failed!"
 msgstr "Prova di connessione non riuscita!"
 
 #. module: auto_backup
+#. odoo-python
 #: code:addons/auto_backup/models/db_backup.py:0
 #, python-format
 msgid "Connection Test Succeeded!"
 msgstr "Test connessione avvenuto con successo!"
 
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__count_changesets
+msgid "Count Changesets"
+msgstr ""
+
 #. module: auto_backup
 #: model:ir.model.fields,field_description:auto_backup.field_db_backup__count_pending_changeset_changes
 msgid "Count Pending Changeset Changes"
@@ -155,6 +162,7 @@ msgid "Database Backup"
 msgstr "Backup database"
 
 #. module: auto_backup
+#. odoo-python
 #: code:addons/auto_backup/models/db_backup.py:0
 #: model:mail.message.subtype,description:auto_backup.mail_message_subtype_failure
 #, python-format
@@ -162,6 +170,7 @@ msgid "Database backup failed."
 msgstr "Backup del database non riuscito."
 
 #. module: auto_backup
+#. odoo-python
 #: code:addons/auto_backup/models/db_backup.py:0
 #: model:mail.message.subtype,description:auto_backup.mail_message_subtype_success
 #, python-format
@@ -179,6 +188,7 @@ msgid "Display Name"
 msgstr "Nome visualizzato"
 
 #. module: auto_backup
+#. odoo-python
 #: code:addons/auto_backup/models/db_backup.py:0
 #, python-format
 msgid ""
@@ -241,7 +251,6 @@ msgstr "ID"
 
 #. module: auto_backup
 #: model:ir.model.fields,help:auto_backup.field_db_backup__message_needaction
-#: model:ir.model.fields,help:auto_backup.field_db_backup__message_unread
 msgid "If checked, new messages require your attention."
 msgstr "Se selezionata, nuovi messaggi richiedono attenzione."
 
@@ -313,19 +322,14 @@ msgstr "Numero di errori"
 
 #. module: auto_backup
 #: model:ir.model.fields,help:auto_backup.field_db_backup__message_needaction_counter
-msgid "Number of messages which requires an action"
-msgstr "Numero di messaggi che richiedono un'azione"
+msgid "Number of messages requiring action"
+msgstr ""
 
 #. module: auto_backup
 #: model:ir.model.fields,help:auto_backup.field_db_backup__message_has_error_counter
 msgid "Number of messages with delivery error"
 msgstr "Numero di messaggi con errore di consegna"
 
-#. module: auto_backup
-#: model:ir.model.fields,help:auto_backup.field_db_backup__message_unread_counter
-msgid "Number of unread messages"
-msgstr "Numero di messaggi non letti"
-
 #. module: auto_backup
 #: model:ir.model.fields,help:auto_backup.field_db_backup__sftp_private_key
 msgid ""
@@ -383,6 +387,11 @@ msgstr ""
 "Impostare lo schedulatore su attivo e inserire la frequenza di generazione "
 "dei backup desiderata."
 
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__smart_search
+msgid "Smart Search"
+msgstr "Ricerca intelligente"
+
 #. module: auto_backup
 #: model:ir.model.fields,help:auto_backup.field_db_backup__name
 msgid "Summary of this backup process"
@@ -399,6 +408,21 @@ msgid ""
 "The host name or IP address from your remote server. For example 192.168.0.1"
 msgstr "Nome host o indirizzo IP del server remoto. Per esempio 192.168.0.1"
 
+#. module: auto_backup
+#: model:ir.model.fields,help:auto_backup.field_db_backup__count_pending_changeset_changes
+msgid "The number of pending changes of this record"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,help:auto_backup.field_db_backup__count_pending_changesets
+msgid "The number of pending changesets of this record"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,help:auto_backup.field_db_backup__count_changesets
+msgid "The overall number of changesets of this record"
+msgstr ""
+
 #. module: auto_backup
 #: model:ir.model.fields,help:auto_backup.field_db_backup__sftp_password
 msgid ""
@@ -422,16 +446,6 @@ msgstr ""
 "Nome utente con il quale deve essere creata la connessione SFTP. Corrisponde "
 "all'utente sul server esterno."
 
-#. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup__message_unread
-msgid "Unread Messages"
-msgstr "Messaggi non letti"
-
-#. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup__message_unread_counter
-msgid "Unread Messages Counter"
-msgstr "Numero messaggi non letti"
-
 #. module: auto_backup
 #: model_terms:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
 msgid ""
@@ -486,8 +500,17 @@ msgstr "sftp.example.com"
 msgid "zip (includes filestore)"
 msgstr "zip (include filestore)"
 
+#~ msgid "Number of messages which requires an action"
+#~ msgstr "Numero di messaggi che richiedono un'azione"
+
+#~ msgid "Number of unread messages"
+#~ msgstr "Numero di messaggi non letti"
+
+#~ msgid "Unread Messages"
+#~ msgstr "Messaggi non letti"
+
+#~ msgid "Unread Messages Counter"
+#~ msgstr "Numero messaggi non letti"
+
 #~ msgid "Followers (Channels)"
 #~ msgstr "Chi sta seguendo (canali)"
-
-#~ msgid "Smart Search"
-#~ msgstr "Ricerca intelligente"
diff --git a/auto_backup/i18n/ja.po b/auto_backup/i18n/ja.po
index 9acbb3837f5..9f9f85ff896 100644
--- a/auto_backup/i18n/ja.po
+++ b/auto_backup/i18n/ja.po
@@ -62,7 +62,6 @@ msgstr ""
 #. module: auto_backup
 #: model:ir.actions.server,name:auto_backup.ir_cron_backup_scheduler_0_ir_actions_server
 #: model:ir.cron,cron_name:auto_backup.ir_cron_backup_scheduler_0
-#: model:ir.cron,name:auto_backup.ir_cron_backup_scheduler_0
 msgid "Backup Scheduler"
 msgstr ""
 
@@ -109,23 +108,31 @@ msgid "Choose the storage method for this backup."
 msgstr ""
 
 #. module: auto_backup
+#. odoo-python
 #: code:addons/auto_backup/models/db_backup.py:0
 #, python-format
 msgid "Cleanup of old database backups failed."
 msgstr ""
 
 #. module: auto_backup
+#. odoo-python
 #: code:addons/auto_backup/models/db_backup.py:0
 #, python-format
 msgid "Connection Test Failed!"
 msgstr ""
 
 #. module: auto_backup
+#. odoo-python
 #: code:addons/auto_backup/models/db_backup.py:0
 #, python-format
 msgid "Connection Test Succeeded!"
 msgstr ""
 
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__count_changesets
+msgid "Count Changesets"
+msgstr ""
+
 #. module: auto_backup
 #: model:ir.model.fields,field_description:auto_backup.field_db_backup__count_pending_changeset_changes
 msgid "Count Pending Changeset Changes"
@@ -152,6 +159,7 @@ msgid "Database Backup"
 msgstr ""
 
 #. module: auto_backup
+#. odoo-python
 #: code:addons/auto_backup/models/db_backup.py:0
 #: model:mail.message.subtype,description:auto_backup.mail_message_subtype_failure
 #, python-format
@@ -159,6 +167,7 @@ msgid "Database backup failed."
 msgstr ""
 
 #. module: auto_backup
+#. odoo-python
 #: code:addons/auto_backup/models/db_backup.py:0
 #: model:mail.message.subtype,description:auto_backup.mail_message_subtype_success
 #, python-format
@@ -176,6 +185,7 @@ msgid "Display Name"
 msgstr "表示名"
 
 #. module: auto_backup
+#. odoo-python
 #: code:addons/auto_backup/models/db_backup.py:0
 #, python-format
 msgid ""
@@ -234,7 +244,6 @@ msgstr "ID"
 
 #. module: auto_backup
 #: model:ir.model.fields,help:auto_backup.field_db_backup__message_needaction
-#: model:ir.model.fields,help:auto_backup.field_db_backup__message_unread
 msgid "If checked, new messages require your attention."
 msgstr ""
 
@@ -306,7 +315,7 @@ msgstr ""
 
 #. module: auto_backup
 #: model:ir.model.fields,help:auto_backup.field_db_backup__message_needaction_counter
-msgid "Number of messages which requires an action"
+msgid "Number of messages requiring action"
 msgstr ""
 
 #. module: auto_backup
@@ -314,11 +323,6 @@ msgstr ""
 msgid "Number of messages with delivery error"
 msgstr ""
 
-#. module: auto_backup
-#: model:ir.model.fields,help:auto_backup.field_db_backup__message_unread_counter
-msgid "Number of unread messages"
-msgstr ""
-
 #. module: auto_backup
 #: model:ir.model.fields,help:auto_backup.field_db_backup__sftp_private_key
 msgid ""
@@ -372,6 +376,11 @@ msgid ""
 "Set the scheduler to active and fill in how often you want backups generated."
 msgstr ""
 
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__smart_search
+msgid "Smart Search"
+msgstr ""
+
 #. module: auto_backup
 #: model:ir.model.fields,help:auto_backup.field_db_backup__name
 msgid "Summary of this backup process"
@@ -388,6 +397,21 @@ msgid ""
 "The host name or IP address from your remote server. For example 192.168.0.1"
 msgstr ""
 
+#. module: auto_backup
+#: model:ir.model.fields,help:auto_backup.field_db_backup__count_pending_changeset_changes
+msgid "The number of pending changes of this record"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,help:auto_backup.field_db_backup__count_pending_changesets
+msgid "The number of pending changesets of this record"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,help:auto_backup.field_db_backup__count_changesets
+msgid "The overall number of changesets of this record"
+msgstr ""
+
 #. module: auto_backup
 #: model:ir.model.fields,help:auto_backup.field_db_backup__sftp_password
 msgid ""
@@ -407,16 +431,6 @@ msgid ""
 "on the external server."
 msgstr ""
 
-#. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup__message_unread
-msgid "Unread Messages"
-msgstr ""
-
-#. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup__message_unread_counter
-msgid "Unread Messages Counter"
-msgstr ""
-
 #. module: auto_backup
 #: model_terms:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
 msgid ""
diff --git a/auto_backup/i18n/ko.po b/auto_backup/i18n/ko.po
index 88306cf8963..64a4a8e5344 100644
--- a/auto_backup/i18n/ko.po
+++ b/auto_backup/i18n/ko.po
@@ -62,7 +62,6 @@ msgstr ""
 #. module: auto_backup
 #: model:ir.actions.server,name:auto_backup.ir_cron_backup_scheduler_0_ir_actions_server
 #: model:ir.cron,cron_name:auto_backup.ir_cron_backup_scheduler_0
-#: model:ir.cron,name:auto_backup.ir_cron_backup_scheduler_0
 msgid "Backup Scheduler"
 msgstr ""
 
@@ -109,23 +108,31 @@ msgid "Choose the storage method for this backup."
 msgstr ""
 
 #. module: auto_backup
+#. odoo-python
 #: code:addons/auto_backup/models/db_backup.py:0
 #, python-format
 msgid "Cleanup of old database backups failed."
 msgstr ""
 
 #. module: auto_backup
+#. odoo-python
 #: code:addons/auto_backup/models/db_backup.py:0
 #, python-format
 msgid "Connection Test Failed!"
 msgstr ""
 
 #. module: auto_backup
+#. odoo-python
 #: code:addons/auto_backup/models/db_backup.py:0
 #, python-format
 msgid "Connection Test Succeeded!"
 msgstr ""
 
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__count_changesets
+msgid "Count Changesets"
+msgstr ""
+
 #. module: auto_backup
 #: model:ir.model.fields,field_description:auto_backup.field_db_backup__count_pending_changeset_changes
 msgid "Count Pending Changeset Changes"
@@ -152,6 +159,7 @@ msgid "Database Backup"
 msgstr ""
 
 #. module: auto_backup
+#. odoo-python
 #: code:addons/auto_backup/models/db_backup.py:0
 #: model:mail.message.subtype,description:auto_backup.mail_message_subtype_failure
 #, python-format
@@ -159,6 +167,7 @@ msgid "Database backup failed."
 msgstr ""
 
 #. module: auto_backup
+#. odoo-python
 #: code:addons/auto_backup/models/db_backup.py:0
 #: model:mail.message.subtype,description:auto_backup.mail_message_subtype_success
 #, python-format
@@ -176,6 +185,7 @@ msgid "Display Name"
 msgstr "표시 이름"
 
 #. module: auto_backup
+#. odoo-python
 #: code:addons/auto_backup/models/db_backup.py:0
 #, python-format
 msgid ""
@@ -234,7 +244,6 @@ msgstr "ID"
 
 #. module: auto_backup
 #: model:ir.model.fields,help:auto_backup.field_db_backup__message_needaction
-#: model:ir.model.fields,help:auto_backup.field_db_backup__message_unread
 msgid "If checked, new messages require your attention."
 msgstr ""
 
@@ -306,7 +315,7 @@ msgstr ""
 
 #. module: auto_backup
 #: model:ir.model.fields,help:auto_backup.field_db_backup__message_needaction_counter
-msgid "Number of messages which requires an action"
+msgid "Number of messages requiring action"
 msgstr ""
 
 #. module: auto_backup
@@ -314,11 +323,6 @@ msgstr ""
 msgid "Number of messages with delivery error"
 msgstr ""
 
-#. module: auto_backup
-#: model:ir.model.fields,help:auto_backup.field_db_backup__message_unread_counter
-msgid "Number of unread messages"
-msgstr ""
-
 #. module: auto_backup
 #: model:ir.model.fields,help:auto_backup.field_db_backup__sftp_private_key
 msgid ""
@@ -372,6 +376,11 @@ msgid ""
 "Set the scheduler to active and fill in how often you want backups generated."
 msgstr ""
 
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__smart_search
+msgid "Smart Search"
+msgstr ""
+
 #. module: auto_backup
 #: model:ir.model.fields,help:auto_backup.field_db_backup__name
 msgid "Summary of this backup process"
@@ -388,6 +397,21 @@ msgid ""
 "The host name or IP address from your remote server. For example 192.168.0.1"
 msgstr ""
 
+#. module: auto_backup
+#: model:ir.model.fields,help:auto_backup.field_db_backup__count_pending_changeset_changes
+msgid "The number of pending changes of this record"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,help:auto_backup.field_db_backup__count_pending_changesets
+msgid "The number of pending changesets of this record"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,help:auto_backup.field_db_backup__count_changesets
+msgid "The overall number of changesets of this record"
+msgstr ""
+
 #. module: auto_backup
 #: model:ir.model.fields,help:auto_backup.field_db_backup__sftp_password
 msgid ""
@@ -407,16 +431,6 @@ msgid ""
 "on the external server."
 msgstr ""
 
-#. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup__message_unread
-msgid "Unread Messages"
-msgstr ""
-
-#. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup__message_unread_counter
-msgid "Unread Messages Counter"
-msgstr ""
-
 #. module: auto_backup
 #: model_terms:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
 msgid ""
diff --git a/auto_backup/i18n/lt.po b/auto_backup/i18n/lt.po
index 01a160c1953..3057c760b76 100644
--- a/auto_backup/i18n/lt.po
+++ b/auto_backup/i18n/lt.po
@@ -63,7 +63,6 @@ msgstr ""
 #. module: auto_backup
 #: model:ir.actions.server,name:auto_backup.ir_cron_backup_scheduler_0_ir_actions_server
 #: model:ir.cron,cron_name:auto_backup.ir_cron_backup_scheduler_0
-#: model:ir.cron,name:auto_backup.ir_cron_backup_scheduler_0
 msgid "Backup Scheduler"
 msgstr ""
 
@@ -110,23 +109,31 @@ msgid "Choose the storage method for this backup."
 msgstr ""
 
 #. module: auto_backup
+#. odoo-python
 #: code:addons/auto_backup/models/db_backup.py:0
 #, python-format
 msgid "Cleanup of old database backups failed."
 msgstr ""
 
 #. module: auto_backup
+#. odoo-python
 #: code:addons/auto_backup/models/db_backup.py:0
 #, python-format
 msgid "Connection Test Failed!"
 msgstr ""
 
 #. module: auto_backup
+#. odoo-python
 #: code:addons/auto_backup/models/db_backup.py:0
 #, python-format
 msgid "Connection Test Succeeded!"
 msgstr ""
 
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__count_changesets
+msgid "Count Changesets"
+msgstr ""
+
 #. module: auto_backup
 #: model:ir.model.fields,field_description:auto_backup.field_db_backup__count_pending_changeset_changes
 msgid "Count Pending Changeset Changes"
@@ -153,6 +160,7 @@ msgid "Database Backup"
 msgstr ""
 
 #. module: auto_backup
+#. odoo-python
 #: code:addons/auto_backup/models/db_backup.py:0
 #: model:mail.message.subtype,description:auto_backup.mail_message_subtype_failure
 #, python-format
@@ -160,6 +168,7 @@ msgid "Database backup failed."
 msgstr ""
 
 #. module: auto_backup
+#. odoo-python
 #: code:addons/auto_backup/models/db_backup.py:0
 #: model:mail.message.subtype,description:auto_backup.mail_message_subtype_success
 #, python-format
@@ -177,6 +186,7 @@ msgid "Display Name"
 msgstr "Vaizduojamas pavadinimas"
 
 #. module: auto_backup
+#. odoo-python
 #: code:addons/auto_backup/models/db_backup.py:0
 #, python-format
 msgid ""
@@ -235,7 +245,6 @@ msgstr "ID"
 
 #. module: auto_backup
 #: model:ir.model.fields,help:auto_backup.field_db_backup__message_needaction
-#: model:ir.model.fields,help:auto_backup.field_db_backup__message_unread
 msgid "If checked, new messages require your attention."
 msgstr ""
 
@@ -307,7 +316,7 @@ msgstr ""
 
 #. module: auto_backup
 #: model:ir.model.fields,help:auto_backup.field_db_backup__message_needaction_counter
-msgid "Number of messages which requires an action"
+msgid "Number of messages requiring action"
 msgstr ""
 
 #. module: auto_backup
@@ -315,11 +324,6 @@ msgstr ""
 msgid "Number of messages with delivery error"
 msgstr ""
 
-#. module: auto_backup
-#: model:ir.model.fields,help:auto_backup.field_db_backup__message_unread_counter
-msgid "Number of unread messages"
-msgstr ""
-
 #. module: auto_backup
 #: model:ir.model.fields,help:auto_backup.field_db_backup__sftp_private_key
 msgid ""
@@ -373,6 +377,11 @@ msgid ""
 "Set the scheduler to active and fill in how often you want backups generated."
 msgstr ""
 
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__smart_search
+msgid "Smart Search"
+msgstr ""
+
 #. module: auto_backup
 #: model:ir.model.fields,help:auto_backup.field_db_backup__name
 msgid "Summary of this backup process"
@@ -389,6 +398,21 @@ msgid ""
 "The host name or IP address from your remote server. For example 192.168.0.1"
 msgstr ""
 
+#. module: auto_backup
+#: model:ir.model.fields,help:auto_backup.field_db_backup__count_pending_changeset_changes
+msgid "The number of pending changes of this record"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,help:auto_backup.field_db_backup__count_pending_changesets
+msgid "The number of pending changesets of this record"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,help:auto_backup.field_db_backup__count_changesets
+msgid "The overall number of changesets of this record"
+msgstr ""
+
 #. module: auto_backup
 #: model:ir.model.fields,help:auto_backup.field_db_backup__sftp_password
 msgid ""
@@ -408,16 +432,6 @@ msgid ""
 "on the external server."
 msgstr ""
 
-#. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup__message_unread
-msgid "Unread Messages"
-msgstr ""
-
-#. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup__message_unread_counter
-msgid "Unread Messages Counter"
-msgstr ""
-
 #. module: auto_backup
 #: model_terms:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
 msgid ""
diff --git a/auto_backup/i18n/lt_LT.po b/auto_backup/i18n/lt_LT.po
index 92cec494ef7..9eae155b831 100644
--- a/auto_backup/i18n/lt_LT.po
+++ b/auto_backup/i18n/lt_LT.po
@@ -64,7 +64,6 @@ msgstr ""
 #. module: auto_backup
 #: model:ir.actions.server,name:auto_backup.ir_cron_backup_scheduler_0_ir_actions_server
 #: model:ir.cron,cron_name:auto_backup.ir_cron_backup_scheduler_0
-#: model:ir.cron,name:auto_backup.ir_cron_backup_scheduler_0
 msgid "Backup Scheduler"
 msgstr ""
 
@@ -111,23 +110,31 @@ msgid "Choose the storage method for this backup."
 msgstr ""
 
 #. module: auto_backup
+#. odoo-python
 #: code:addons/auto_backup/models/db_backup.py:0
 #, python-format
 msgid "Cleanup of old database backups failed."
 msgstr ""
 
 #. module: auto_backup
+#. odoo-python
 #: code:addons/auto_backup/models/db_backup.py:0
 #, python-format
 msgid "Connection Test Failed!"
 msgstr ""
 
 #. module: auto_backup
+#. odoo-python
 #: code:addons/auto_backup/models/db_backup.py:0
 #, python-format
 msgid "Connection Test Succeeded!"
 msgstr ""
 
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__count_changesets
+msgid "Count Changesets"
+msgstr ""
+
 #. module: auto_backup
 #: model:ir.model.fields,field_description:auto_backup.field_db_backup__count_pending_changeset_changes
 msgid "Count Pending Changeset Changes"
@@ -154,6 +161,7 @@ msgid "Database Backup"
 msgstr ""
 
 #. module: auto_backup
+#. odoo-python
 #: code:addons/auto_backup/models/db_backup.py:0
 #: model:mail.message.subtype,description:auto_backup.mail_message_subtype_failure
 #, python-format
@@ -161,6 +169,7 @@ msgid "Database backup failed."
 msgstr ""
 
 #. module: auto_backup
+#. odoo-python
 #: code:addons/auto_backup/models/db_backup.py:0
 #: model:mail.message.subtype,description:auto_backup.mail_message_subtype_success
 #, python-format
@@ -178,6 +187,7 @@ msgid "Display Name"
 msgstr ""
 
 #. module: auto_backup
+#. odoo-python
 #: code:addons/auto_backup/models/db_backup.py:0
 #, python-format
 msgid ""
@@ -236,7 +246,6 @@ msgstr "ID"
 
 #. module: auto_backup
 #: model:ir.model.fields,help:auto_backup.field_db_backup__message_needaction
-#: model:ir.model.fields,help:auto_backup.field_db_backup__message_unread
 msgid "If checked, new messages require your attention."
 msgstr ""
 
@@ -308,7 +317,7 @@ msgstr ""
 
 #. module: auto_backup
 #: model:ir.model.fields,help:auto_backup.field_db_backup__message_needaction_counter
-msgid "Number of messages which requires an action"
+msgid "Number of messages requiring action"
 msgstr ""
 
 #. module: auto_backup
@@ -316,11 +325,6 @@ msgstr ""
 msgid "Number of messages with delivery error"
 msgstr ""
 
-#. module: auto_backup
-#: model:ir.model.fields,help:auto_backup.field_db_backup__message_unread_counter
-msgid "Number of unread messages"
-msgstr ""
-
 #. module: auto_backup
 #: model:ir.model.fields,help:auto_backup.field_db_backup__sftp_private_key
 msgid ""
@@ -374,6 +378,11 @@ msgid ""
 "Set the scheduler to active and fill in how often you want backups generated."
 msgstr ""
 
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__smart_search
+msgid "Smart Search"
+msgstr ""
+
 #. module: auto_backup
 #: model:ir.model.fields,help:auto_backup.field_db_backup__name
 msgid "Summary of this backup process"
@@ -390,6 +399,21 @@ msgid ""
 "The host name or IP address from your remote server. For example 192.168.0.1"
 msgstr ""
 
+#. module: auto_backup
+#: model:ir.model.fields,help:auto_backup.field_db_backup__count_pending_changeset_changes
+msgid "The number of pending changes of this record"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,help:auto_backup.field_db_backup__count_pending_changesets
+msgid "The number of pending changesets of this record"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,help:auto_backup.field_db_backup__count_changesets
+msgid "The overall number of changesets of this record"
+msgstr ""
+
 #. module: auto_backup
 #: model:ir.model.fields,help:auto_backup.field_db_backup__sftp_password
 msgid ""
@@ -409,16 +433,6 @@ msgid ""
 "on the external server."
 msgstr ""
 
-#. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup__message_unread
-msgid "Unread Messages"
-msgstr ""
-
-#. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup__message_unread_counter
-msgid "Unread Messages Counter"
-msgstr ""
-
 #. module: auto_backup
 #: model_terms:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
 msgid ""
diff --git a/auto_backup/i18n/lv.po b/auto_backup/i18n/lv.po
index 4bfe68bbdc1..b04b428a813 100644
--- a/auto_backup/i18n/lv.po
+++ b/auto_backup/i18n/lv.po
@@ -63,7 +63,6 @@ msgstr ""
 #. module: auto_backup
 #: model:ir.actions.server,name:auto_backup.ir_cron_backup_scheduler_0_ir_actions_server
 #: model:ir.cron,cron_name:auto_backup.ir_cron_backup_scheduler_0
-#: model:ir.cron,name:auto_backup.ir_cron_backup_scheduler_0
 msgid "Backup Scheduler"
 msgstr ""
 
@@ -110,23 +109,31 @@ msgid "Choose the storage method for this backup."
 msgstr ""
 
 #. module: auto_backup
+#. odoo-python
 #: code:addons/auto_backup/models/db_backup.py:0
 #, python-format
 msgid "Cleanup of old database backups failed."
 msgstr ""
 
 #. module: auto_backup
+#. odoo-python
 #: code:addons/auto_backup/models/db_backup.py:0
 #, python-format
 msgid "Connection Test Failed!"
 msgstr ""
 
 #. module: auto_backup
+#. odoo-python
 #: code:addons/auto_backup/models/db_backup.py:0
 #, python-format
 msgid "Connection Test Succeeded!"
 msgstr ""
 
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__count_changesets
+msgid "Count Changesets"
+msgstr ""
+
 #. module: auto_backup
 #: model:ir.model.fields,field_description:auto_backup.field_db_backup__count_pending_changeset_changes
 msgid "Count Pending Changeset Changes"
@@ -153,6 +160,7 @@ msgid "Database Backup"
 msgstr ""
 
 #. module: auto_backup
+#. odoo-python
 #: code:addons/auto_backup/models/db_backup.py:0
 #: model:mail.message.subtype,description:auto_backup.mail_message_subtype_failure
 #, python-format
@@ -160,6 +168,7 @@ msgid "Database backup failed."
 msgstr ""
 
 #. module: auto_backup
+#. odoo-python
 #: code:addons/auto_backup/models/db_backup.py:0
 #: model:mail.message.subtype,description:auto_backup.mail_message_subtype_success
 #, python-format
@@ -177,6 +186,7 @@ msgid "Display Name"
 msgstr ""
 
 #. module: auto_backup
+#. odoo-python
 #: code:addons/auto_backup/models/db_backup.py:0
 #, python-format
 msgid ""
@@ -235,7 +245,6 @@ msgstr "ID"
 
 #. module: auto_backup
 #: model:ir.model.fields,help:auto_backup.field_db_backup__message_needaction
-#: model:ir.model.fields,help:auto_backup.field_db_backup__message_unread
 msgid "If checked, new messages require your attention."
 msgstr ""
 
@@ -307,7 +316,7 @@ msgstr ""
 
 #. module: auto_backup
 #: model:ir.model.fields,help:auto_backup.field_db_backup__message_needaction_counter
-msgid "Number of messages which requires an action"
+msgid "Number of messages requiring action"
 msgstr ""
 
 #. module: auto_backup
@@ -315,11 +324,6 @@ msgstr ""
 msgid "Number of messages with delivery error"
 msgstr ""
 
-#. module: auto_backup
-#: model:ir.model.fields,help:auto_backup.field_db_backup__message_unread_counter
-msgid "Number of unread messages"
-msgstr ""
-
 #. module: auto_backup
 #: model:ir.model.fields,help:auto_backup.field_db_backup__sftp_private_key
 msgid ""
@@ -373,6 +377,11 @@ msgid ""
 "Set the scheduler to active and fill in how often you want backups generated."
 msgstr ""
 
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__smart_search
+msgid "Smart Search"
+msgstr ""
+
 #. module: auto_backup
 #: model:ir.model.fields,help:auto_backup.field_db_backup__name
 msgid "Summary of this backup process"
@@ -389,6 +398,21 @@ msgid ""
 "The host name or IP address from your remote server. For example 192.168.0.1"
 msgstr ""
 
+#. module: auto_backup
+#: model:ir.model.fields,help:auto_backup.field_db_backup__count_pending_changeset_changes
+msgid "The number of pending changes of this record"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,help:auto_backup.field_db_backup__count_pending_changesets
+msgid "The number of pending changesets of this record"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,help:auto_backup.field_db_backup__count_changesets
+msgid "The overall number of changesets of this record"
+msgstr ""
+
 #. module: auto_backup
 #: model:ir.model.fields,help:auto_backup.field_db_backup__sftp_password
 msgid ""
@@ -408,16 +432,6 @@ msgid ""
 "on the external server."
 msgstr ""
 
-#. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup__message_unread
-msgid "Unread Messages"
-msgstr ""
-
-#. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup__message_unread_counter
-msgid "Unread Messages Counter"
-msgstr ""
-
 #. module: auto_backup
 #: model_terms:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
 msgid ""
diff --git a/auto_backup/i18n/mk.po b/auto_backup/i18n/mk.po
index 6ebfcf15fd7..9dc8878eb26 100644
--- a/auto_backup/i18n/mk.po
+++ b/auto_backup/i18n/mk.po
@@ -62,7 +62,6 @@ msgstr ""
 #. module: auto_backup
 #: model:ir.actions.server,name:auto_backup.ir_cron_backup_scheduler_0_ir_actions_server
 #: model:ir.cron,cron_name:auto_backup.ir_cron_backup_scheduler_0
-#: model:ir.cron,name:auto_backup.ir_cron_backup_scheduler_0
 msgid "Backup Scheduler"
 msgstr ""
 
@@ -109,23 +108,31 @@ msgid "Choose the storage method for this backup."
 msgstr ""
 
 #. module: auto_backup
+#. odoo-python
 #: code:addons/auto_backup/models/db_backup.py:0
 #, python-format
 msgid "Cleanup of old database backups failed."
 msgstr ""
 
 #. module: auto_backup
+#. odoo-python
 #: code:addons/auto_backup/models/db_backup.py:0
 #, python-format
 msgid "Connection Test Failed!"
 msgstr ""
 
 #. module: auto_backup
+#. odoo-python
 #: code:addons/auto_backup/models/db_backup.py:0
 #, python-format
 msgid "Connection Test Succeeded!"
 msgstr ""
 
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__count_changesets
+msgid "Count Changesets"
+msgstr ""
+
 #. module: auto_backup
 #: model:ir.model.fields,field_description:auto_backup.field_db_backup__count_pending_changeset_changes
 msgid "Count Pending Changeset Changes"
@@ -152,6 +159,7 @@ msgid "Database Backup"
 msgstr ""
 
 #. module: auto_backup
+#. odoo-python
 #: code:addons/auto_backup/models/db_backup.py:0
 #: model:mail.message.subtype,description:auto_backup.mail_message_subtype_failure
 #, python-format
@@ -159,6 +167,7 @@ msgid "Database backup failed."
 msgstr ""
 
 #. module: auto_backup
+#. odoo-python
 #: code:addons/auto_backup/models/db_backup.py:0
 #: model:mail.message.subtype,description:auto_backup.mail_message_subtype_success
 #, python-format
@@ -176,6 +185,7 @@ msgid "Display Name"
 msgstr "Прикажи име"
 
 #. module: auto_backup
+#. odoo-python
 #: code:addons/auto_backup/models/db_backup.py:0
 #, python-format
 msgid ""
@@ -234,7 +244,6 @@ msgstr "ID"
 
 #. module: auto_backup
 #: model:ir.model.fields,help:auto_backup.field_db_backup__message_needaction
-#: model:ir.model.fields,help:auto_backup.field_db_backup__message_unread
 msgid "If checked, new messages require your attention."
 msgstr ""
 
@@ -306,7 +315,7 @@ msgstr ""
 
 #. module: auto_backup
 #: model:ir.model.fields,help:auto_backup.field_db_backup__message_needaction_counter
-msgid "Number of messages which requires an action"
+msgid "Number of messages requiring action"
 msgstr ""
 
 #. module: auto_backup
@@ -314,11 +323,6 @@ msgstr ""
 msgid "Number of messages with delivery error"
 msgstr ""
 
-#. module: auto_backup
-#: model:ir.model.fields,help:auto_backup.field_db_backup__message_unread_counter
-msgid "Number of unread messages"
-msgstr ""
-
 #. module: auto_backup
 #: model:ir.model.fields,help:auto_backup.field_db_backup__sftp_private_key
 msgid ""
@@ -372,6 +376,11 @@ msgid ""
 "Set the scheduler to active and fill in how often you want backups generated."
 msgstr ""
 
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__smart_search
+msgid "Smart Search"
+msgstr ""
+
 #. module: auto_backup
 #: model:ir.model.fields,help:auto_backup.field_db_backup__name
 msgid "Summary of this backup process"
@@ -388,6 +397,21 @@ msgid ""
 "The host name or IP address from your remote server. For example 192.168.0.1"
 msgstr ""
 
+#. module: auto_backup
+#: model:ir.model.fields,help:auto_backup.field_db_backup__count_pending_changeset_changes
+msgid "The number of pending changes of this record"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,help:auto_backup.field_db_backup__count_pending_changesets
+msgid "The number of pending changesets of this record"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,help:auto_backup.field_db_backup__count_changesets
+msgid "The overall number of changesets of this record"
+msgstr ""
+
 #. module: auto_backup
 #: model:ir.model.fields,help:auto_backup.field_db_backup__sftp_password
 msgid ""
@@ -407,16 +431,6 @@ msgid ""
 "on the external server."
 msgstr ""
 
-#. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup__message_unread
-msgid "Unread Messages"
-msgstr ""
-
-#. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup__message_unread_counter
-msgid "Unread Messages Counter"
-msgstr ""
-
 #. module: auto_backup
 #: model_terms:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
 msgid ""
diff --git a/auto_backup/i18n/mn.po b/auto_backup/i18n/mn.po
index d738357541b..44e188b2aaa 100644
--- a/auto_backup/i18n/mn.po
+++ b/auto_backup/i18n/mn.po
@@ -62,7 +62,6 @@ msgstr ""
 #. module: auto_backup
 #: model:ir.actions.server,name:auto_backup.ir_cron_backup_scheduler_0_ir_actions_server
 #: model:ir.cron,cron_name:auto_backup.ir_cron_backup_scheduler_0
-#: model:ir.cron,name:auto_backup.ir_cron_backup_scheduler_0
 msgid "Backup Scheduler"
 msgstr ""
 
@@ -109,23 +108,31 @@ msgid "Choose the storage method for this backup."
 msgstr ""
 
 #. module: auto_backup
+#. odoo-python
 #: code:addons/auto_backup/models/db_backup.py:0
 #, python-format
 msgid "Cleanup of old database backups failed."
 msgstr ""
 
 #. module: auto_backup
+#. odoo-python
 #: code:addons/auto_backup/models/db_backup.py:0
 #, python-format
 msgid "Connection Test Failed!"
 msgstr ""
 
 #. module: auto_backup
+#. odoo-python
 #: code:addons/auto_backup/models/db_backup.py:0
 #, python-format
 msgid "Connection Test Succeeded!"
 msgstr ""
 
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__count_changesets
+msgid "Count Changesets"
+msgstr ""
+
 #. module: auto_backup
 #: model:ir.model.fields,field_description:auto_backup.field_db_backup__count_pending_changeset_changes
 msgid "Count Pending Changeset Changes"
@@ -152,6 +159,7 @@ msgid "Database Backup"
 msgstr ""
 
 #. module: auto_backup
+#. odoo-python
 #: code:addons/auto_backup/models/db_backup.py:0
 #: model:mail.message.subtype,description:auto_backup.mail_message_subtype_failure
 #, python-format
@@ -159,6 +167,7 @@ msgid "Database backup failed."
 msgstr ""
 
 #. module: auto_backup
+#. odoo-python
 #: code:addons/auto_backup/models/db_backup.py:0
 #: model:mail.message.subtype,description:auto_backup.mail_message_subtype_success
 #, python-format
@@ -176,6 +185,7 @@ msgid "Display Name"
 msgstr "Дэлгэцийн Нэр"
 
 #. module: auto_backup
+#. odoo-python
 #: code:addons/auto_backup/models/db_backup.py:0
 #, python-format
 msgid ""
@@ -234,7 +244,6 @@ msgstr "ID"
 
 #. module: auto_backup
 #: model:ir.model.fields,help:auto_backup.field_db_backup__message_needaction
-#: model:ir.model.fields,help:auto_backup.field_db_backup__message_unread
 msgid "If checked, new messages require your attention."
 msgstr ""
 
@@ -306,7 +315,7 @@ msgstr ""
 
 #. module: auto_backup
 #: model:ir.model.fields,help:auto_backup.field_db_backup__message_needaction_counter
-msgid "Number of messages which requires an action"
+msgid "Number of messages requiring action"
 msgstr ""
 
 #. module: auto_backup
@@ -314,11 +323,6 @@ msgstr ""
 msgid "Number of messages with delivery error"
 msgstr ""
 
-#. module: auto_backup
-#: model:ir.model.fields,help:auto_backup.field_db_backup__message_unread_counter
-msgid "Number of unread messages"
-msgstr ""
-
 #. module: auto_backup
 #: model:ir.model.fields,help:auto_backup.field_db_backup__sftp_private_key
 msgid ""
@@ -372,6 +376,11 @@ msgid ""
 "Set the scheduler to active and fill in how often you want backups generated."
 msgstr ""
 
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__smart_search
+msgid "Smart Search"
+msgstr ""
+
 #. module: auto_backup
 #: model:ir.model.fields,help:auto_backup.field_db_backup__name
 msgid "Summary of this backup process"
@@ -388,6 +397,21 @@ msgid ""
 "The host name or IP address from your remote server. For example 192.168.0.1"
 msgstr ""
 
+#. module: auto_backup
+#: model:ir.model.fields,help:auto_backup.field_db_backup__count_pending_changeset_changes
+msgid "The number of pending changes of this record"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,help:auto_backup.field_db_backup__count_pending_changesets
+msgid "The number of pending changesets of this record"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,help:auto_backup.field_db_backup__count_changesets
+msgid "The overall number of changesets of this record"
+msgstr ""
+
 #. module: auto_backup
 #: model:ir.model.fields,help:auto_backup.field_db_backup__sftp_password
 msgid ""
@@ -407,16 +431,6 @@ msgid ""
 "on the external server."
 msgstr ""
 
-#. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup__message_unread
-msgid "Unread Messages"
-msgstr ""
-
-#. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup__message_unread_counter
-msgid "Unread Messages Counter"
-msgstr ""
-
 #. module: auto_backup
 #: model_terms:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
 msgid ""
diff --git a/auto_backup/i18n/nb.po b/auto_backup/i18n/nb.po
index 750d5a4a63e..5130a60d2b6 100644
--- a/auto_backup/i18n/nb.po
+++ b/auto_backup/i18n/nb.po
@@ -63,7 +63,6 @@ msgstr ""
 #. module: auto_backup
 #: model:ir.actions.server,name:auto_backup.ir_cron_backup_scheduler_0_ir_actions_server
 #: model:ir.cron,cron_name:auto_backup.ir_cron_backup_scheduler_0
-#: model:ir.cron,name:auto_backup.ir_cron_backup_scheduler_0
 msgid "Backup Scheduler"
 msgstr ""
 
@@ -110,23 +109,31 @@ msgid "Choose the storage method for this backup."
 msgstr ""
 
 #. module: auto_backup
+#. odoo-python
 #: code:addons/auto_backup/models/db_backup.py:0
 #, python-format
 msgid "Cleanup of old database backups failed."
 msgstr ""
 
 #. module: auto_backup
+#. odoo-python
 #: code:addons/auto_backup/models/db_backup.py:0
 #, python-format
 msgid "Connection Test Failed!"
 msgstr ""
 
 #. module: auto_backup
+#. odoo-python
 #: code:addons/auto_backup/models/db_backup.py:0
 #, python-format
 msgid "Connection Test Succeeded!"
 msgstr ""
 
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__count_changesets
+msgid "Count Changesets"
+msgstr ""
+
 #. module: auto_backup
 #: model:ir.model.fields,field_description:auto_backup.field_db_backup__count_pending_changeset_changes
 msgid "Count Pending Changeset Changes"
@@ -153,6 +160,7 @@ msgid "Database Backup"
 msgstr ""
 
 #. module: auto_backup
+#. odoo-python
 #: code:addons/auto_backup/models/db_backup.py:0
 #: model:mail.message.subtype,description:auto_backup.mail_message_subtype_failure
 #, python-format
@@ -160,6 +168,7 @@ msgid "Database backup failed."
 msgstr ""
 
 #. module: auto_backup
+#. odoo-python
 #: code:addons/auto_backup/models/db_backup.py:0
 #: model:mail.message.subtype,description:auto_backup.mail_message_subtype_success
 #, python-format
@@ -177,6 +186,7 @@ msgid "Display Name"
 msgstr "Visnings navn"
 
 #. module: auto_backup
+#. odoo-python
 #: code:addons/auto_backup/models/db_backup.py:0
 #, python-format
 msgid ""
@@ -235,7 +245,6 @@ msgstr "ID"
 
 #. module: auto_backup
 #: model:ir.model.fields,help:auto_backup.field_db_backup__message_needaction
-#: model:ir.model.fields,help:auto_backup.field_db_backup__message_unread
 msgid "If checked, new messages require your attention."
 msgstr ""
 
@@ -307,7 +316,7 @@ msgstr ""
 
 #. module: auto_backup
 #: model:ir.model.fields,help:auto_backup.field_db_backup__message_needaction_counter
-msgid "Number of messages which requires an action"
+msgid "Number of messages requiring action"
 msgstr ""
 
 #. module: auto_backup
@@ -315,11 +324,6 @@ msgstr ""
 msgid "Number of messages with delivery error"
 msgstr ""
 
-#. module: auto_backup
-#: model:ir.model.fields,help:auto_backup.field_db_backup__message_unread_counter
-msgid "Number of unread messages"
-msgstr ""
-
 #. module: auto_backup
 #: model:ir.model.fields,help:auto_backup.field_db_backup__sftp_private_key
 msgid ""
@@ -373,6 +377,11 @@ msgid ""
 "Set the scheduler to active and fill in how often you want backups generated."
 msgstr ""
 
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__smart_search
+msgid "Smart Search"
+msgstr ""
+
 #. module: auto_backup
 #: model:ir.model.fields,help:auto_backup.field_db_backup__name
 msgid "Summary of this backup process"
@@ -389,6 +398,21 @@ msgid ""
 "The host name or IP address from your remote server. For example 192.168.0.1"
 msgstr ""
 
+#. module: auto_backup
+#: model:ir.model.fields,help:auto_backup.field_db_backup__count_pending_changeset_changes
+msgid "The number of pending changes of this record"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,help:auto_backup.field_db_backup__count_pending_changesets
+msgid "The number of pending changesets of this record"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,help:auto_backup.field_db_backup__count_changesets
+msgid "The overall number of changesets of this record"
+msgstr ""
+
 #. module: auto_backup
 #: model:ir.model.fields,help:auto_backup.field_db_backup__sftp_password
 msgid ""
@@ -408,16 +432,6 @@ msgid ""
 "on the external server."
 msgstr ""
 
-#. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup__message_unread
-msgid "Unread Messages"
-msgstr ""
-
-#. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup__message_unread_counter
-msgid "Unread Messages Counter"
-msgstr ""
-
 #. module: auto_backup
 #: model_terms:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
 msgid ""
diff --git a/auto_backup/i18n/nb_NO.po b/auto_backup/i18n/nb_NO.po
index d5ac742512b..f7267fbafb4 100644
--- a/auto_backup/i18n/nb_NO.po
+++ b/auto_backup/i18n/nb_NO.po
@@ -63,7 +63,6 @@ msgstr ""
 #. module: auto_backup
 #: model:ir.actions.server,name:auto_backup.ir_cron_backup_scheduler_0_ir_actions_server
 #: model:ir.cron,cron_name:auto_backup.ir_cron_backup_scheduler_0
-#: model:ir.cron,name:auto_backup.ir_cron_backup_scheduler_0
 msgid "Backup Scheduler"
 msgstr ""
 
@@ -110,23 +109,31 @@ msgid "Choose the storage method for this backup."
 msgstr ""
 
 #. module: auto_backup
+#. odoo-python
 #: code:addons/auto_backup/models/db_backup.py:0
 #, python-format
 msgid "Cleanup of old database backups failed."
 msgstr ""
 
 #. module: auto_backup
+#. odoo-python
 #: code:addons/auto_backup/models/db_backup.py:0
 #, python-format
 msgid "Connection Test Failed!"
 msgstr ""
 
 #. module: auto_backup
+#. odoo-python
 #: code:addons/auto_backup/models/db_backup.py:0
 #, python-format
 msgid "Connection Test Succeeded!"
 msgstr ""
 
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__count_changesets
+msgid "Count Changesets"
+msgstr ""
+
 #. module: auto_backup
 #: model:ir.model.fields,field_description:auto_backup.field_db_backup__count_pending_changeset_changes
 msgid "Count Pending Changeset Changes"
@@ -153,6 +160,7 @@ msgid "Database Backup"
 msgstr ""
 
 #. module: auto_backup
+#. odoo-python
 #: code:addons/auto_backup/models/db_backup.py:0
 #: model:mail.message.subtype,description:auto_backup.mail_message_subtype_failure
 #, python-format
@@ -160,6 +168,7 @@ msgid "Database backup failed."
 msgstr ""
 
 #. module: auto_backup
+#. odoo-python
 #: code:addons/auto_backup/models/db_backup.py:0
 #: model:mail.message.subtype,description:auto_backup.mail_message_subtype_success
 #, python-format
@@ -177,6 +186,7 @@ msgid "Display Name"
 msgstr "Vis navn"
 
 #. module: auto_backup
+#. odoo-python
 #: code:addons/auto_backup/models/db_backup.py:0
 #, python-format
 msgid ""
@@ -235,7 +245,6 @@ msgstr "ID"
 
 #. module: auto_backup
 #: model:ir.model.fields,help:auto_backup.field_db_backup__message_needaction
-#: model:ir.model.fields,help:auto_backup.field_db_backup__message_unread
 msgid "If checked, new messages require your attention."
 msgstr ""
 
@@ -307,7 +316,7 @@ msgstr ""
 
 #. module: auto_backup
 #: model:ir.model.fields,help:auto_backup.field_db_backup__message_needaction_counter
-msgid "Number of messages which requires an action"
+msgid "Number of messages requiring action"
 msgstr ""
 
 #. module: auto_backup
@@ -315,11 +324,6 @@ msgstr ""
 msgid "Number of messages with delivery error"
 msgstr ""
 
-#. module: auto_backup
-#: model:ir.model.fields,help:auto_backup.field_db_backup__message_unread_counter
-msgid "Number of unread messages"
-msgstr ""
-
 #. module: auto_backup
 #: model:ir.model.fields,help:auto_backup.field_db_backup__sftp_private_key
 msgid ""
@@ -373,6 +377,11 @@ msgid ""
 "Set the scheduler to active and fill in how often you want backups generated."
 msgstr ""
 
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__smart_search
+msgid "Smart Search"
+msgstr ""
+
 #. module: auto_backup
 #: model:ir.model.fields,help:auto_backup.field_db_backup__name
 msgid "Summary of this backup process"
@@ -389,6 +398,21 @@ msgid ""
 "The host name or IP address from your remote server. For example 192.168.0.1"
 msgstr ""
 
+#. module: auto_backup
+#: model:ir.model.fields,help:auto_backup.field_db_backup__count_pending_changeset_changes
+msgid "The number of pending changes of this record"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,help:auto_backup.field_db_backup__count_pending_changesets
+msgid "The number of pending changesets of this record"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,help:auto_backup.field_db_backup__count_changesets
+msgid "The overall number of changesets of this record"
+msgstr ""
+
 #. module: auto_backup
 #: model:ir.model.fields,help:auto_backup.field_db_backup__sftp_password
 msgid ""
@@ -408,16 +432,6 @@ msgid ""
 "on the external server."
 msgstr ""
 
-#. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup__message_unread
-msgid "Unread Messages"
-msgstr ""
-
-#. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup__message_unread_counter
-msgid "Unread Messages Counter"
-msgstr ""
-
 #. module: auto_backup
 #: model_terms:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
 msgid ""
diff --git a/auto_backup/i18n/nl.po b/auto_backup/i18n/nl.po
index 260919e90a3..48239e06bd5 100644
--- a/auto_backup/i18n/nl.po
+++ b/auto_backup/i18n/nl.po
@@ -63,7 +63,6 @@ msgstr "Backup mislukt"
 #. module: auto_backup
 #: model:ir.actions.server,name:auto_backup.ir_cron_backup_scheduler_0_ir_actions_server
 #: model:ir.cron,cron_name:auto_backup.ir_cron_backup_scheduler_0
-#: model:ir.cron,name:auto_backup.ir_cron_backup_scheduler_0
 msgid "Backup Scheduler"
 msgstr "Backup planner"
 
@@ -113,23 +112,31 @@ msgid "Choose the storage method for this backup."
 msgstr "Kies een opslag methode voor deze backup."
 
 #. module: auto_backup
+#. odoo-python
 #: code:addons/auto_backup/models/db_backup.py:0
 #, python-format
 msgid "Cleanup of old database backups failed."
 msgstr "Opruimen oude database backups is mislukt."
 
 #. module: auto_backup
+#. odoo-python
 #: code:addons/auto_backup/models/db_backup.py:0
 #, python-format
 msgid "Connection Test Failed!"
 msgstr "Connectie test mislukt!"
 
 #. module: auto_backup
+#. odoo-python
 #: code:addons/auto_backup/models/db_backup.py:0
 #, python-format
 msgid "Connection Test Succeeded!"
 msgstr "Connectie test geslaagd!"
 
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__count_changesets
+msgid "Count Changesets"
+msgstr ""
+
 #. module: auto_backup
 #: model:ir.model.fields,field_description:auto_backup.field_db_backup__count_pending_changeset_changes
 msgid "Count Pending Changeset Changes"
@@ -156,6 +163,7 @@ msgid "Database Backup"
 msgstr "Database backup"
 
 #. module: auto_backup
+#. odoo-python
 #: code:addons/auto_backup/models/db_backup.py:0
 #: model:mail.message.subtype,description:auto_backup.mail_message_subtype_failure
 #, python-format
@@ -163,6 +171,7 @@ msgid "Database backup failed."
 msgstr "Database backup mislukt."
 
 #. module: auto_backup
+#. odoo-python
 #: code:addons/auto_backup/models/db_backup.py:0
 #: model:mail.message.subtype,description:auto_backup.mail_message_subtype_success
 #, python-format
@@ -180,6 +189,7 @@ msgid "Display Name"
 msgstr "Weergave naam"
 
 #. module: auto_backup
+#. odoo-python
 #: code:addons/auto_backup/models/db_backup.py:0
 #, python-format
 msgid ""
@@ -238,7 +248,6 @@ msgstr "ID"
 
 #. module: auto_backup
 #: model:ir.model.fields,help:auto_backup.field_db_backup__message_needaction
-#: model:ir.model.fields,help:auto_backup.field_db_backup__message_unread
 msgid "If checked, new messages require your attention."
 msgstr ""
 
@@ -310,7 +319,7 @@ msgstr ""
 
 #. module: auto_backup
 #: model:ir.model.fields,help:auto_backup.field_db_backup__message_needaction_counter
-msgid "Number of messages which requires an action"
+msgid "Number of messages requiring action"
 msgstr ""
 
 #. module: auto_backup
@@ -318,11 +327,6 @@ msgstr ""
 msgid "Number of messages with delivery error"
 msgstr ""
 
-#. module: auto_backup
-#: model:ir.model.fields,help:auto_backup.field_db_backup__message_unread_counter
-msgid "Number of unread messages"
-msgstr ""
-
 #. module: auto_backup
 #: model:ir.model.fields,help:auto_backup.field_db_backup__sftp_private_key
 msgid ""
@@ -377,6 +381,11 @@ msgid ""
 msgstr ""
 "Zet de planner op actief en vul in hoe vaak de backup moet gemaakt worden."
 
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__smart_search
+msgid "Smart Search"
+msgstr ""
+
 #. module: auto_backup
 #: model:ir.model.fields,help:auto_backup.field_db_backup__name
 msgid "Summary of this backup process"
@@ -393,6 +402,21 @@ msgid ""
 "The host name or IP address from your remote server. For example 192.168.0.1"
 msgstr "Het IP adres van uw externe server. Bijvoorbeeld: 192.168.0.1"
 
+#. module: auto_backup
+#: model:ir.model.fields,help:auto_backup.field_db_backup__count_pending_changeset_changes
+msgid "The number of pending changes of this record"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,help:auto_backup.field_db_backup__count_pending_changesets
+msgid "The number of pending changesets of this record"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,help:auto_backup.field_db_backup__count_changesets
+msgid "The overall number of changesets of this record"
+msgstr ""
+
 #. module: auto_backup
 #: model:ir.model.fields,help:auto_backup.field_db_backup__sftp_password
 msgid ""
@@ -416,16 +440,6 @@ msgstr ""
 "De gebruikersnaam waar de SFTP connectie mee gemaakt moet worden. Dit is de "
 "gebruiker op de externe server."
 
-#. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup__message_unread
-msgid "Unread Messages"
-msgstr ""
-
-#. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup__message_unread_counter
-msgid "Unread Messages Counter"
-msgstr ""
-
 #. module: auto_backup
 #: model_terms:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
 msgid ""
diff --git a/auto_backup/i18n/nl_BE.po b/auto_backup/i18n/nl_BE.po
index 0c46e09a32a..17e1153c277 100644
--- a/auto_backup/i18n/nl_BE.po
+++ b/auto_backup/i18n/nl_BE.po
@@ -64,7 +64,6 @@ msgstr "Backup folder"
 #. module: auto_backup
 #: model:ir.actions.server,name:auto_backup.ir_cron_backup_scheduler_0_ir_actions_server
 #: model:ir.cron,cron_name:auto_backup.ir_cron_backup_scheduler_0
-#: model:ir.cron,name:auto_backup.ir_cron_backup_scheduler_0
 msgid "Backup Scheduler"
 msgstr ""
 
@@ -114,23 +113,31 @@ msgid "Choose the storage method for this backup."
 msgstr ""
 
 #. module: auto_backup
+#. odoo-python
 #: code:addons/auto_backup/models/db_backup.py:0
 #, python-format
 msgid "Cleanup of old database backups failed."
 msgstr ""
 
 #. module: auto_backup
+#. odoo-python
 #: code:addons/auto_backup/models/db_backup.py:0
 #, python-format
 msgid "Connection Test Failed!"
 msgstr ""
 
 #. module: auto_backup
+#. odoo-python
 #: code:addons/auto_backup/models/db_backup.py:0
 #, python-format
 msgid "Connection Test Succeeded!"
 msgstr ""
 
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__count_changesets
+msgid "Count Changesets"
+msgstr ""
+
 #. module: auto_backup
 #: model:ir.model.fields,field_description:auto_backup.field_db_backup__count_pending_changeset_changes
 msgid "Count Pending Changeset Changes"
@@ -158,6 +165,7 @@ msgid "Database Backup"
 msgstr "Database"
 
 #. module: auto_backup
+#. odoo-python
 #: code:addons/auto_backup/models/db_backup.py:0
 #: model:mail.message.subtype,description:auto_backup.mail_message_subtype_failure
 #, python-format
@@ -165,6 +173,7 @@ msgid "Database backup failed."
 msgstr ""
 
 #. module: auto_backup
+#. odoo-python
 #: code:addons/auto_backup/models/db_backup.py:0
 #: model:mail.message.subtype,description:auto_backup.mail_message_subtype_success
 #, python-format
@@ -182,6 +191,7 @@ msgid "Display Name"
 msgstr ""
 
 #. module: auto_backup
+#. odoo-python
 #: code:addons/auto_backup/models/db_backup.py:0
 #, python-format
 msgid ""
@@ -240,7 +250,6 @@ msgstr "ID"
 
 #. module: auto_backup
 #: model:ir.model.fields,help:auto_backup.field_db_backup__message_needaction
-#: model:ir.model.fields,help:auto_backup.field_db_backup__message_unread
 msgid "If checked, new messages require your attention."
 msgstr ""
 
@@ -313,7 +322,7 @@ msgstr ""
 
 #. module: auto_backup
 #: model:ir.model.fields,help:auto_backup.field_db_backup__message_needaction_counter
-msgid "Number of messages which requires an action"
+msgid "Number of messages requiring action"
 msgstr ""
 
 #. module: auto_backup
@@ -321,11 +330,6 @@ msgstr ""
 msgid "Number of messages with delivery error"
 msgstr ""
 
-#. module: auto_backup
-#: model:ir.model.fields,help:auto_backup.field_db_backup__message_unread_counter
-msgid "Number of unread messages"
-msgstr ""
-
 #. module: auto_backup
 #: model:ir.model.fields,help:auto_backup.field_db_backup__sftp_private_key
 msgid ""
@@ -383,6 +387,11 @@ msgid ""
 msgstr ""
 "Zet de planner op actief en vul in hoe vaak de backup moet gemaakt worden."
 
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__smart_search
+msgid "Smart Search"
+msgstr ""
+
 #. module: auto_backup
 #: model:ir.model.fields,help:auto_backup.field_db_backup__name
 msgid "Summary of this backup process"
@@ -400,6 +409,21 @@ msgid ""
 "The host name or IP address from your remote server. For example 192.168.0.1"
 msgstr "Het IP adres van uw externe server. Bijvoorbeeld: 192.168.0.1"
 
+#. module: auto_backup
+#: model:ir.model.fields,help:auto_backup.field_db_backup__count_pending_changeset_changes
+msgid "The number of pending changes of this record"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,help:auto_backup.field_db_backup__count_pending_changesets
+msgid "The number of pending changesets of this record"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,help:auto_backup.field_db_backup__count_changesets
+msgid "The overall number of changesets of this record"
+msgstr ""
+
 #. module: auto_backup
 #: model:ir.model.fields,help:auto_backup.field_db_backup__sftp_password
 #, fuzzy
@@ -424,16 +448,6 @@ msgstr ""
 "De gebruikersnaam waar de SFTP connectie mee gemaakt moet worden. Dit is de "
 "gebruiker op de externe server."
 
-#. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup__message_unread
-msgid "Unread Messages"
-msgstr ""
-
-#. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup__message_unread_counter
-msgid "Unread Messages Counter"
-msgstr ""
-
 #. module: auto_backup
 #: model_terms:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
 msgid ""
diff --git a/auto_backup/i18n/nl_NL.po b/auto_backup/i18n/nl_NL.po
index 0f59bc6e2fe..02737159d45 100644
--- a/auto_backup/i18n/nl_NL.po
+++ b/auto_backup/i18n/nl_NL.po
@@ -63,7 +63,6 @@ msgstr ""
 #. module: auto_backup
 #: model:ir.actions.server,name:auto_backup.ir_cron_backup_scheduler_0_ir_actions_server
 #: model:ir.cron,cron_name:auto_backup.ir_cron_backup_scheduler_0
-#: model:ir.cron,name:auto_backup.ir_cron_backup_scheduler_0
 msgid "Backup Scheduler"
 msgstr ""
 
@@ -110,23 +109,31 @@ msgid "Choose the storage method for this backup."
 msgstr ""
 
 #. module: auto_backup
+#. odoo-python
 #: code:addons/auto_backup/models/db_backup.py:0
 #, python-format
 msgid "Cleanup of old database backups failed."
 msgstr ""
 
 #. module: auto_backup
+#. odoo-python
 #: code:addons/auto_backup/models/db_backup.py:0
 #, python-format
 msgid "Connection Test Failed!"
 msgstr ""
 
 #. module: auto_backup
+#. odoo-python
 #: code:addons/auto_backup/models/db_backup.py:0
 #, python-format
 msgid "Connection Test Succeeded!"
 msgstr ""
 
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__count_changesets
+msgid "Count Changesets"
+msgstr ""
+
 #. module: auto_backup
 #: model:ir.model.fields,field_description:auto_backup.field_db_backup__count_pending_changeset_changes
 msgid "Count Pending Changeset Changes"
@@ -153,6 +160,7 @@ msgid "Database Backup"
 msgstr ""
 
 #. module: auto_backup
+#. odoo-python
 #: code:addons/auto_backup/models/db_backup.py:0
 #: model:mail.message.subtype,description:auto_backup.mail_message_subtype_failure
 #, python-format
@@ -160,6 +168,7 @@ msgid "Database backup failed."
 msgstr ""
 
 #. module: auto_backup
+#. odoo-python
 #: code:addons/auto_backup/models/db_backup.py:0
 #: model:mail.message.subtype,description:auto_backup.mail_message_subtype_success
 #, python-format
@@ -177,6 +186,7 @@ msgid "Display Name"
 msgstr "Weergavenaam"
 
 #. module: auto_backup
+#. odoo-python
 #: code:addons/auto_backup/models/db_backup.py:0
 #, python-format
 msgid ""
@@ -235,7 +245,6 @@ msgstr "ID"
 
 #. module: auto_backup
 #: model:ir.model.fields,help:auto_backup.field_db_backup__message_needaction
-#: model:ir.model.fields,help:auto_backup.field_db_backup__message_unread
 msgid "If checked, new messages require your attention."
 msgstr ""
 
@@ -307,7 +316,7 @@ msgstr ""
 
 #. module: auto_backup
 #: model:ir.model.fields,help:auto_backup.field_db_backup__message_needaction_counter
-msgid "Number of messages which requires an action"
+msgid "Number of messages requiring action"
 msgstr ""
 
 #. module: auto_backup
@@ -315,11 +324,6 @@ msgstr ""
 msgid "Number of messages with delivery error"
 msgstr ""
 
-#. module: auto_backup
-#: model:ir.model.fields,help:auto_backup.field_db_backup__message_unread_counter
-msgid "Number of unread messages"
-msgstr ""
-
 #. module: auto_backup
 #: model:ir.model.fields,help:auto_backup.field_db_backup__sftp_private_key
 msgid ""
@@ -373,6 +377,11 @@ msgid ""
 "Set the scheduler to active and fill in how often you want backups generated."
 msgstr ""
 
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__smart_search
+msgid "Smart Search"
+msgstr ""
+
 #. module: auto_backup
 #: model:ir.model.fields,help:auto_backup.field_db_backup__name
 msgid "Summary of this backup process"
@@ -389,6 +398,21 @@ msgid ""
 "The host name or IP address from your remote server. For example 192.168.0.1"
 msgstr ""
 
+#. module: auto_backup
+#: model:ir.model.fields,help:auto_backup.field_db_backup__count_pending_changeset_changes
+msgid "The number of pending changes of this record"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,help:auto_backup.field_db_backup__count_pending_changesets
+msgid "The number of pending changesets of this record"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,help:auto_backup.field_db_backup__count_changesets
+msgid "The overall number of changesets of this record"
+msgstr ""
+
 #. module: auto_backup
 #: model:ir.model.fields,help:auto_backup.field_db_backup__sftp_password
 msgid ""
@@ -408,16 +432,6 @@ msgid ""
 "on the external server."
 msgstr ""
 
-#. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup__message_unread
-msgid "Unread Messages"
-msgstr ""
-
-#. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup__message_unread_counter
-msgid "Unread Messages Counter"
-msgstr ""
-
 #. module: auto_backup
 #: model_terms:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
 msgid ""
diff --git a/auto_backup/i18n/pl.po b/auto_backup/i18n/pl.po
index 74d3b892972..5d88ee93ebb 100644
--- a/auto_backup/i18n/pl.po
+++ b/auto_backup/i18n/pl.po
@@ -64,7 +64,6 @@ msgstr ""
 #. module: auto_backup
 #: model:ir.actions.server,name:auto_backup.ir_cron_backup_scheduler_0_ir_actions_server
 #: model:ir.cron,cron_name:auto_backup.ir_cron_backup_scheduler_0
-#: model:ir.cron,name:auto_backup.ir_cron_backup_scheduler_0
 msgid "Backup Scheduler"
 msgstr ""
 
@@ -111,23 +110,31 @@ msgid "Choose the storage method for this backup."
 msgstr ""
 
 #. module: auto_backup
+#. odoo-python
 #: code:addons/auto_backup/models/db_backup.py:0
 #, python-format
 msgid "Cleanup of old database backups failed."
 msgstr ""
 
 #. module: auto_backup
+#. odoo-python
 #: code:addons/auto_backup/models/db_backup.py:0
 #, python-format
 msgid "Connection Test Failed!"
 msgstr ""
 
 #. module: auto_backup
+#. odoo-python
 #: code:addons/auto_backup/models/db_backup.py:0
 #, python-format
 msgid "Connection Test Succeeded!"
 msgstr ""
 
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__count_changesets
+msgid "Count Changesets"
+msgstr ""
+
 #. module: auto_backup
 #: model:ir.model.fields,field_description:auto_backup.field_db_backup__count_pending_changeset_changes
 msgid "Count Pending Changeset Changes"
@@ -154,6 +161,7 @@ msgid "Database Backup"
 msgstr ""
 
 #. module: auto_backup
+#. odoo-python
 #: code:addons/auto_backup/models/db_backup.py:0
 #: model:mail.message.subtype,description:auto_backup.mail_message_subtype_failure
 #, python-format
@@ -161,6 +169,7 @@ msgid "Database backup failed."
 msgstr ""
 
 #. module: auto_backup
+#. odoo-python
 #: code:addons/auto_backup/models/db_backup.py:0
 #: model:mail.message.subtype,description:auto_backup.mail_message_subtype_success
 #, python-format
@@ -178,6 +187,7 @@ msgid "Display Name"
 msgstr "Wyświetlana nazwa "
 
 #. module: auto_backup
+#. odoo-python
 #: code:addons/auto_backup/models/db_backup.py:0
 #, python-format
 msgid ""
@@ -236,7 +246,6 @@ msgstr "ID"
 
 #. module: auto_backup
 #: model:ir.model.fields,help:auto_backup.field_db_backup__message_needaction
-#: model:ir.model.fields,help:auto_backup.field_db_backup__message_unread
 msgid "If checked, new messages require your attention."
 msgstr ""
 
@@ -308,7 +317,7 @@ msgstr ""
 
 #. module: auto_backup
 #: model:ir.model.fields,help:auto_backup.field_db_backup__message_needaction_counter
-msgid "Number of messages which requires an action"
+msgid "Number of messages requiring action"
 msgstr ""
 
 #. module: auto_backup
@@ -316,11 +325,6 @@ msgstr ""
 msgid "Number of messages with delivery error"
 msgstr ""
 
-#. module: auto_backup
-#: model:ir.model.fields,help:auto_backup.field_db_backup__message_unread_counter
-msgid "Number of unread messages"
-msgstr ""
-
 #. module: auto_backup
 #: model:ir.model.fields,help:auto_backup.field_db_backup__sftp_private_key
 msgid ""
@@ -374,6 +378,11 @@ msgid ""
 "Set the scheduler to active and fill in how often you want backups generated."
 msgstr ""
 
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__smart_search
+msgid "Smart Search"
+msgstr ""
+
 #. module: auto_backup
 #: model:ir.model.fields,help:auto_backup.field_db_backup__name
 msgid "Summary of this backup process"
@@ -390,6 +399,21 @@ msgid ""
 "The host name or IP address from your remote server. For example 192.168.0.1"
 msgstr ""
 
+#. module: auto_backup
+#: model:ir.model.fields,help:auto_backup.field_db_backup__count_pending_changeset_changes
+msgid "The number of pending changes of this record"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,help:auto_backup.field_db_backup__count_pending_changesets
+msgid "The number of pending changesets of this record"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,help:auto_backup.field_db_backup__count_changesets
+msgid "The overall number of changesets of this record"
+msgstr ""
+
 #. module: auto_backup
 #: model:ir.model.fields,help:auto_backup.field_db_backup__sftp_password
 msgid ""
@@ -409,16 +433,6 @@ msgid ""
 "on the external server."
 msgstr ""
 
-#. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup__message_unread
-msgid "Unread Messages"
-msgstr ""
-
-#. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup__message_unread_counter
-msgid "Unread Messages Counter"
-msgstr ""
-
 #. module: auto_backup
 #: model_terms:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
 msgid ""
diff --git a/auto_backup/i18n/pt.po b/auto_backup/i18n/pt.po
index 6293d4ec67c..beb003a7b28 100644
--- a/auto_backup/i18n/pt.po
+++ b/auto_backup/i18n/pt.po
@@ -62,7 +62,6 @@ msgstr ""
 #. module: auto_backup
 #: model:ir.actions.server,name:auto_backup.ir_cron_backup_scheduler_0_ir_actions_server
 #: model:ir.cron,cron_name:auto_backup.ir_cron_backup_scheduler_0
-#: model:ir.cron,name:auto_backup.ir_cron_backup_scheduler_0
 msgid "Backup Scheduler"
 msgstr ""
 
@@ -109,23 +108,31 @@ msgid "Choose the storage method for this backup."
 msgstr ""
 
 #. module: auto_backup
+#. odoo-python
 #: code:addons/auto_backup/models/db_backup.py:0
 #, python-format
 msgid "Cleanup of old database backups failed."
 msgstr ""
 
 #. module: auto_backup
+#. odoo-python
 #: code:addons/auto_backup/models/db_backup.py:0
 #, python-format
 msgid "Connection Test Failed!"
 msgstr ""
 
 #. module: auto_backup
+#. odoo-python
 #: code:addons/auto_backup/models/db_backup.py:0
 #, python-format
 msgid "Connection Test Succeeded!"
 msgstr ""
 
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__count_changesets
+msgid "Count Changesets"
+msgstr ""
+
 #. module: auto_backup
 #: model:ir.model.fields,field_description:auto_backup.field_db_backup__count_pending_changeset_changes
 msgid "Count Pending Changeset Changes"
@@ -152,6 +159,7 @@ msgid "Database Backup"
 msgstr ""
 
 #. module: auto_backup
+#. odoo-python
 #: code:addons/auto_backup/models/db_backup.py:0
 #: model:mail.message.subtype,description:auto_backup.mail_message_subtype_failure
 #, python-format
@@ -159,6 +167,7 @@ msgid "Database backup failed."
 msgstr ""
 
 #. module: auto_backup
+#. odoo-python
 #: code:addons/auto_backup/models/db_backup.py:0
 #: model:mail.message.subtype,description:auto_backup.mail_message_subtype_success
 #, python-format
@@ -176,6 +185,7 @@ msgid "Display Name"
 msgstr "Nome a Apresentar"
 
 #. module: auto_backup
+#. odoo-python
 #: code:addons/auto_backup/models/db_backup.py:0
 #, python-format
 msgid ""
@@ -234,7 +244,6 @@ msgstr "ID"
 
 #. module: auto_backup
 #: model:ir.model.fields,help:auto_backup.field_db_backup__message_needaction
-#: model:ir.model.fields,help:auto_backup.field_db_backup__message_unread
 msgid "If checked, new messages require your attention."
 msgstr ""
 
@@ -306,7 +315,7 @@ msgstr ""
 
 #. module: auto_backup
 #: model:ir.model.fields,help:auto_backup.field_db_backup__message_needaction_counter
-msgid "Number of messages which requires an action"
+msgid "Number of messages requiring action"
 msgstr ""
 
 #. module: auto_backup
@@ -314,11 +323,6 @@ msgstr ""
 msgid "Number of messages with delivery error"
 msgstr ""
 
-#. module: auto_backup
-#: model:ir.model.fields,help:auto_backup.field_db_backup__message_unread_counter
-msgid "Number of unread messages"
-msgstr ""
-
 #. module: auto_backup
 #: model:ir.model.fields,help:auto_backup.field_db_backup__sftp_private_key
 msgid ""
@@ -372,6 +376,11 @@ msgid ""
 "Set the scheduler to active and fill in how often you want backups generated."
 msgstr ""
 
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__smart_search
+msgid "Smart Search"
+msgstr ""
+
 #. module: auto_backup
 #: model:ir.model.fields,help:auto_backup.field_db_backup__name
 msgid "Summary of this backup process"
@@ -388,6 +397,21 @@ msgid ""
 "The host name or IP address from your remote server. For example 192.168.0.1"
 msgstr ""
 
+#. module: auto_backup
+#: model:ir.model.fields,help:auto_backup.field_db_backup__count_pending_changeset_changes
+msgid "The number of pending changes of this record"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,help:auto_backup.field_db_backup__count_pending_changesets
+msgid "The number of pending changesets of this record"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,help:auto_backup.field_db_backup__count_changesets
+msgid "The overall number of changesets of this record"
+msgstr ""
+
 #. module: auto_backup
 #: model:ir.model.fields,help:auto_backup.field_db_backup__sftp_password
 msgid ""
@@ -407,16 +431,6 @@ msgid ""
 "on the external server."
 msgstr ""
 
-#. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup__message_unread
-msgid "Unread Messages"
-msgstr ""
-
-#. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup__message_unread_counter
-msgid "Unread Messages Counter"
-msgstr ""
-
 #. module: auto_backup
 #: model_terms:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
 msgid ""
diff --git a/auto_backup/i18n/pt_BR.po b/auto_backup/i18n/pt_BR.po
index 3392b2f2e6d..23d441f84c8 100644
--- a/auto_backup/i18n/pt_BR.po
+++ b/auto_backup/i18n/pt_BR.po
@@ -64,7 +64,6 @@ msgstr ""
 #. module: auto_backup
 #: model:ir.actions.server,name:auto_backup.ir_cron_backup_scheduler_0_ir_actions_server
 #: model:ir.cron,cron_name:auto_backup.ir_cron_backup_scheduler_0
-#: model:ir.cron,name:auto_backup.ir_cron_backup_scheduler_0
 msgid "Backup Scheduler"
 msgstr ""
 
@@ -112,23 +111,31 @@ msgid "Choose the storage method for this backup."
 msgstr ""
 
 #. module: auto_backup
+#. odoo-python
 #: code:addons/auto_backup/models/db_backup.py:0
 #, python-format
 msgid "Cleanup of old database backups failed."
 msgstr ""
 
 #. module: auto_backup
+#. odoo-python
 #: code:addons/auto_backup/models/db_backup.py:0
 #, python-format
 msgid "Connection Test Failed!"
 msgstr ""
 
 #. module: auto_backup
+#. odoo-python
 #: code:addons/auto_backup/models/db_backup.py:0
 #, python-format
 msgid "Connection Test Succeeded!"
 msgstr ""
 
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__count_changesets
+msgid "Count Changesets"
+msgstr ""
+
 #. module: auto_backup
 #: model:ir.model.fields,field_description:auto_backup.field_db_backup__count_pending_changeset_changes
 msgid "Count Pending Changeset Changes"
@@ -156,6 +163,7 @@ msgid "Database Backup"
 msgstr "Backups Automáticos"
 
 #. module: auto_backup
+#. odoo-python
 #: code:addons/auto_backup/models/db_backup.py:0
 #: model:mail.message.subtype,description:auto_backup.mail_message_subtype_failure
 #, python-format
@@ -163,6 +171,7 @@ msgid "Database backup failed."
 msgstr ""
 
 #. module: auto_backup
+#. odoo-python
 #: code:addons/auto_backup/models/db_backup.py:0
 #: model:mail.message.subtype,description:auto_backup.mail_message_subtype_success
 #, python-format
@@ -180,6 +189,7 @@ msgid "Display Name"
 msgstr "Nome para Mostrar"
 
 #. module: auto_backup
+#. odoo-python
 #: code:addons/auto_backup/models/db_backup.py:0
 #, python-format
 msgid ""
@@ -238,7 +248,6 @@ msgstr "Identificação"
 
 #. module: auto_backup
 #: model:ir.model.fields,help:auto_backup.field_db_backup__message_needaction
-#: model:ir.model.fields,help:auto_backup.field_db_backup__message_unread
 msgid "If checked, new messages require your attention."
 msgstr ""
 
@@ -310,7 +319,7 @@ msgstr ""
 
 #. module: auto_backup
 #: model:ir.model.fields,help:auto_backup.field_db_backup__message_needaction_counter
-msgid "Number of messages which requires an action"
+msgid "Number of messages requiring action"
 msgstr ""
 
 #. module: auto_backup
@@ -318,11 +327,6 @@ msgstr ""
 msgid "Number of messages with delivery error"
 msgstr ""
 
-#. module: auto_backup
-#: model:ir.model.fields,help:auto_backup.field_db_backup__message_unread_counter
-msgid "Number of unread messages"
-msgstr ""
-
 #. module: auto_backup
 #: model:ir.model.fields,help:auto_backup.field_db_backup__sftp_private_key
 msgid ""
@@ -376,6 +380,11 @@ msgid ""
 "Set the scheduler to active and fill in how often you want backups generated."
 msgstr ""
 
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__smart_search
+msgid "Smart Search"
+msgstr ""
+
 #. module: auto_backup
 #: model:ir.model.fields,help:auto_backup.field_db_backup__name
 msgid "Summary of this backup process"
@@ -392,6 +401,21 @@ msgid ""
 "The host name or IP address from your remote server. For example 192.168.0.1"
 msgstr ""
 
+#. module: auto_backup
+#: model:ir.model.fields,help:auto_backup.field_db_backup__count_pending_changeset_changes
+msgid "The number of pending changes of this record"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,help:auto_backup.field_db_backup__count_pending_changesets
+msgid "The number of pending changesets of this record"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,help:auto_backup.field_db_backup__count_changesets
+msgid "The overall number of changesets of this record"
+msgstr ""
+
 #. module: auto_backup
 #: model:ir.model.fields,help:auto_backup.field_db_backup__sftp_password
 msgid ""
@@ -411,16 +435,6 @@ msgid ""
 "on the external server."
 msgstr ""
 
-#. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup__message_unread
-msgid "Unread Messages"
-msgstr ""
-
-#. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup__message_unread_counter
-msgid "Unread Messages Counter"
-msgstr ""
-
 #. module: auto_backup
 #: model_terms:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
 msgid ""
diff --git a/auto_backup/i18n/pt_PT.po b/auto_backup/i18n/pt_PT.po
index fa3b40c4799..17a11e1898d 100644
--- a/auto_backup/i18n/pt_PT.po
+++ b/auto_backup/i18n/pt_PT.po
@@ -63,7 +63,6 @@ msgstr ""
 #. module: auto_backup
 #: model:ir.actions.server,name:auto_backup.ir_cron_backup_scheduler_0_ir_actions_server
 #: model:ir.cron,cron_name:auto_backup.ir_cron_backup_scheduler_0
-#: model:ir.cron,name:auto_backup.ir_cron_backup_scheduler_0
 msgid "Backup Scheduler"
 msgstr ""
 
@@ -110,23 +109,31 @@ msgid "Choose the storage method for this backup."
 msgstr ""
 
 #. module: auto_backup
+#. odoo-python
 #: code:addons/auto_backup/models/db_backup.py:0
 #, python-format
 msgid "Cleanup of old database backups failed."
 msgstr ""
 
 #. module: auto_backup
+#. odoo-python
 #: code:addons/auto_backup/models/db_backup.py:0
 #, python-format
 msgid "Connection Test Failed!"
 msgstr ""
 
 #. module: auto_backup
+#. odoo-python
 #: code:addons/auto_backup/models/db_backup.py:0
 #, python-format
 msgid "Connection Test Succeeded!"
 msgstr ""
 
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__count_changesets
+msgid "Count Changesets"
+msgstr ""
+
 #. module: auto_backup
 #: model:ir.model.fields,field_description:auto_backup.field_db_backup__count_pending_changeset_changes
 msgid "Count Pending Changeset Changes"
@@ -153,6 +160,7 @@ msgid "Database Backup"
 msgstr ""
 
 #. module: auto_backup
+#. odoo-python
 #: code:addons/auto_backup/models/db_backup.py:0
 #: model:mail.message.subtype,description:auto_backup.mail_message_subtype_failure
 #, python-format
@@ -160,6 +168,7 @@ msgid "Database backup failed."
 msgstr ""
 
 #. module: auto_backup
+#. odoo-python
 #: code:addons/auto_backup/models/db_backup.py:0
 #: model:mail.message.subtype,description:auto_backup.mail_message_subtype_success
 #, python-format
@@ -177,6 +186,7 @@ msgid "Display Name"
 msgstr "Nome a Apresentar"
 
 #. module: auto_backup
+#. odoo-python
 #: code:addons/auto_backup/models/db_backup.py:0
 #, python-format
 msgid ""
@@ -235,7 +245,6 @@ msgstr "ID"
 
 #. module: auto_backup
 #: model:ir.model.fields,help:auto_backup.field_db_backup__message_needaction
-#: model:ir.model.fields,help:auto_backup.field_db_backup__message_unread
 msgid "If checked, new messages require your attention."
 msgstr ""
 
@@ -307,7 +316,7 @@ msgstr ""
 
 #. module: auto_backup
 #: model:ir.model.fields,help:auto_backup.field_db_backup__message_needaction_counter
-msgid "Number of messages which requires an action"
+msgid "Number of messages requiring action"
 msgstr ""
 
 #. module: auto_backup
@@ -315,11 +324,6 @@ msgstr ""
 msgid "Number of messages with delivery error"
 msgstr ""
 
-#. module: auto_backup
-#: model:ir.model.fields,help:auto_backup.field_db_backup__message_unread_counter
-msgid "Number of unread messages"
-msgstr ""
-
 #. module: auto_backup
 #: model:ir.model.fields,help:auto_backup.field_db_backup__sftp_private_key
 msgid ""
@@ -373,6 +377,11 @@ msgid ""
 "Set the scheduler to active and fill in how often you want backups generated."
 msgstr ""
 
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__smart_search
+msgid "Smart Search"
+msgstr ""
+
 #. module: auto_backup
 #: model:ir.model.fields,help:auto_backup.field_db_backup__name
 msgid "Summary of this backup process"
@@ -389,6 +398,21 @@ msgid ""
 "The host name or IP address from your remote server. For example 192.168.0.1"
 msgstr ""
 
+#. module: auto_backup
+#: model:ir.model.fields,help:auto_backup.field_db_backup__count_pending_changeset_changes
+msgid "The number of pending changes of this record"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,help:auto_backup.field_db_backup__count_pending_changesets
+msgid "The number of pending changesets of this record"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,help:auto_backup.field_db_backup__count_changesets
+msgid "The overall number of changesets of this record"
+msgstr ""
+
 #. module: auto_backup
 #: model:ir.model.fields,help:auto_backup.field_db_backup__sftp_password
 msgid ""
@@ -408,16 +432,6 @@ msgid ""
 "on the external server."
 msgstr ""
 
-#. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup__message_unread
-msgid "Unread Messages"
-msgstr ""
-
-#. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup__message_unread_counter
-msgid "Unread Messages Counter"
-msgstr ""
-
 #. module: auto_backup
 #: model_terms:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
 msgid ""
diff --git a/auto_backup/i18n/ro.po b/auto_backup/i18n/ro.po
index eae43c34511..c7eb441a517 100644
--- a/auto_backup/i18n/ro.po
+++ b/auto_backup/i18n/ro.po
@@ -63,7 +63,6 @@ msgstr ""
 #. module: auto_backup
 #: model:ir.actions.server,name:auto_backup.ir_cron_backup_scheduler_0_ir_actions_server
 #: model:ir.cron,cron_name:auto_backup.ir_cron_backup_scheduler_0
-#: model:ir.cron,name:auto_backup.ir_cron_backup_scheduler_0
 msgid "Backup Scheduler"
 msgstr ""
 
@@ -110,23 +109,31 @@ msgid "Choose the storage method for this backup."
 msgstr ""
 
 #. module: auto_backup
+#. odoo-python
 #: code:addons/auto_backup/models/db_backup.py:0
 #, python-format
 msgid "Cleanup of old database backups failed."
 msgstr ""
 
 #. module: auto_backup
+#. odoo-python
 #: code:addons/auto_backup/models/db_backup.py:0
 #, python-format
 msgid "Connection Test Failed!"
 msgstr ""
 
 #. module: auto_backup
+#. odoo-python
 #: code:addons/auto_backup/models/db_backup.py:0
 #, python-format
 msgid "Connection Test Succeeded!"
 msgstr ""
 
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__count_changesets
+msgid "Count Changesets"
+msgstr ""
+
 #. module: auto_backup
 #: model:ir.model.fields,field_description:auto_backup.field_db_backup__count_pending_changeset_changes
 msgid "Count Pending Changeset Changes"
@@ -153,6 +160,7 @@ msgid "Database Backup"
 msgstr ""
 
 #. module: auto_backup
+#. odoo-python
 #: code:addons/auto_backup/models/db_backup.py:0
 #: model:mail.message.subtype,description:auto_backup.mail_message_subtype_failure
 #, python-format
@@ -160,6 +168,7 @@ msgid "Database backup failed."
 msgstr ""
 
 #. module: auto_backup
+#. odoo-python
 #: code:addons/auto_backup/models/db_backup.py:0
 #: model:mail.message.subtype,description:auto_backup.mail_message_subtype_success
 #, python-format
@@ -177,6 +186,7 @@ msgid "Display Name"
 msgstr "Nume Afişat"
 
 #. module: auto_backup
+#. odoo-python
 #: code:addons/auto_backup/models/db_backup.py:0
 #, python-format
 msgid ""
@@ -235,7 +245,6 @@ msgstr "ID"
 
 #. module: auto_backup
 #: model:ir.model.fields,help:auto_backup.field_db_backup__message_needaction
-#: model:ir.model.fields,help:auto_backup.field_db_backup__message_unread
 msgid "If checked, new messages require your attention."
 msgstr ""
 
@@ -307,7 +316,7 @@ msgstr ""
 
 #. module: auto_backup
 #: model:ir.model.fields,help:auto_backup.field_db_backup__message_needaction_counter
-msgid "Number of messages which requires an action"
+msgid "Number of messages requiring action"
 msgstr ""
 
 #. module: auto_backup
@@ -315,11 +324,6 @@ msgstr ""
 msgid "Number of messages with delivery error"
 msgstr ""
 
-#. module: auto_backup
-#: model:ir.model.fields,help:auto_backup.field_db_backup__message_unread_counter
-msgid "Number of unread messages"
-msgstr ""
-
 #. module: auto_backup
 #: model:ir.model.fields,help:auto_backup.field_db_backup__sftp_private_key
 msgid ""
@@ -373,6 +377,11 @@ msgid ""
 "Set the scheduler to active and fill in how often you want backups generated."
 msgstr ""
 
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__smart_search
+msgid "Smart Search"
+msgstr ""
+
 #. module: auto_backup
 #: model:ir.model.fields,help:auto_backup.field_db_backup__name
 msgid "Summary of this backup process"
@@ -389,6 +398,21 @@ msgid ""
 "The host name or IP address from your remote server. For example 192.168.0.1"
 msgstr ""
 
+#. module: auto_backup
+#: model:ir.model.fields,help:auto_backup.field_db_backup__count_pending_changeset_changes
+msgid "The number of pending changes of this record"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,help:auto_backup.field_db_backup__count_pending_changesets
+msgid "The number of pending changesets of this record"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,help:auto_backup.field_db_backup__count_changesets
+msgid "The overall number of changesets of this record"
+msgstr ""
+
 #. module: auto_backup
 #: model:ir.model.fields,help:auto_backup.field_db_backup__sftp_password
 msgid ""
@@ -408,16 +432,6 @@ msgid ""
 "on the external server."
 msgstr ""
 
-#. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup__message_unread
-msgid "Unread Messages"
-msgstr ""
-
-#. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup__message_unread_counter
-msgid "Unread Messages Counter"
-msgstr ""
-
 #. module: auto_backup
 #: model_terms:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
 msgid ""
diff --git a/auto_backup/i18n/ru.po b/auto_backup/i18n/ru.po
index af56d2fa70f..e80932e8216 100644
--- a/auto_backup/i18n/ru.po
+++ b/auto_backup/i18n/ru.po
@@ -64,7 +64,6 @@ msgstr ""
 #. module: auto_backup
 #: model:ir.actions.server,name:auto_backup.ir_cron_backup_scheduler_0_ir_actions_server
 #: model:ir.cron,cron_name:auto_backup.ir_cron_backup_scheduler_0
-#: model:ir.cron,name:auto_backup.ir_cron_backup_scheduler_0
 msgid "Backup Scheduler"
 msgstr ""
 
@@ -111,23 +110,31 @@ msgid "Choose the storage method for this backup."
 msgstr ""
 
 #. module: auto_backup
+#. odoo-python
 #: code:addons/auto_backup/models/db_backup.py:0
 #, python-format
 msgid "Cleanup of old database backups failed."
 msgstr ""
 
 #. module: auto_backup
+#. odoo-python
 #: code:addons/auto_backup/models/db_backup.py:0
 #, python-format
 msgid "Connection Test Failed!"
 msgstr ""
 
 #. module: auto_backup
+#. odoo-python
 #: code:addons/auto_backup/models/db_backup.py:0
 #, python-format
 msgid "Connection Test Succeeded!"
 msgstr ""
 
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__count_changesets
+msgid "Count Changesets"
+msgstr ""
+
 #. module: auto_backup
 #: model:ir.model.fields,field_description:auto_backup.field_db_backup__count_pending_changeset_changes
 msgid "Count Pending Changeset Changes"
@@ -154,6 +161,7 @@ msgid "Database Backup"
 msgstr ""
 
 #. module: auto_backup
+#. odoo-python
 #: code:addons/auto_backup/models/db_backup.py:0
 #: model:mail.message.subtype,description:auto_backup.mail_message_subtype_failure
 #, python-format
@@ -161,6 +169,7 @@ msgid "Database backup failed."
 msgstr ""
 
 #. module: auto_backup
+#. odoo-python
 #: code:addons/auto_backup/models/db_backup.py:0
 #: model:mail.message.subtype,description:auto_backup.mail_message_subtype_success
 #, python-format
@@ -178,6 +187,7 @@ msgid "Display Name"
 msgstr ""
 
 #. module: auto_backup
+#. odoo-python
 #: code:addons/auto_backup/models/db_backup.py:0
 #, python-format
 msgid ""
@@ -236,7 +246,6 @@ msgstr "ID"
 
 #. module: auto_backup
 #: model:ir.model.fields,help:auto_backup.field_db_backup__message_needaction
-#: model:ir.model.fields,help:auto_backup.field_db_backup__message_unread
 msgid "If checked, new messages require your attention."
 msgstr ""
 
@@ -308,7 +317,7 @@ msgstr ""
 
 #. module: auto_backup
 #: model:ir.model.fields,help:auto_backup.field_db_backup__message_needaction_counter
-msgid "Number of messages which requires an action"
+msgid "Number of messages requiring action"
 msgstr ""
 
 #. module: auto_backup
@@ -316,11 +325,6 @@ msgstr ""
 msgid "Number of messages with delivery error"
 msgstr ""
 
-#. module: auto_backup
-#: model:ir.model.fields,help:auto_backup.field_db_backup__message_unread_counter
-msgid "Number of unread messages"
-msgstr ""
-
 #. module: auto_backup
 #: model:ir.model.fields,help:auto_backup.field_db_backup__sftp_private_key
 msgid ""
@@ -374,6 +378,11 @@ msgid ""
 "Set the scheduler to active and fill in how often you want backups generated."
 msgstr ""
 
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__smart_search
+msgid "Smart Search"
+msgstr ""
+
 #. module: auto_backup
 #: model:ir.model.fields,help:auto_backup.field_db_backup__name
 msgid "Summary of this backup process"
@@ -390,6 +399,21 @@ msgid ""
 "The host name or IP address from your remote server. For example 192.168.0.1"
 msgstr ""
 
+#. module: auto_backup
+#: model:ir.model.fields,help:auto_backup.field_db_backup__count_pending_changeset_changes
+msgid "The number of pending changes of this record"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,help:auto_backup.field_db_backup__count_pending_changesets
+msgid "The number of pending changesets of this record"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,help:auto_backup.field_db_backup__count_changesets
+msgid "The overall number of changesets of this record"
+msgstr ""
+
 #. module: auto_backup
 #: model:ir.model.fields,help:auto_backup.field_db_backup__sftp_password
 msgid ""
@@ -409,16 +433,6 @@ msgid ""
 "on the external server."
 msgstr ""
 
-#. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup__message_unread
-msgid "Unread Messages"
-msgstr ""
-
-#. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup__message_unread_counter
-msgid "Unread Messages Counter"
-msgstr ""
-
 #. module: auto_backup
 #: model_terms:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
 msgid ""
diff --git a/auto_backup/i18n/sk.po b/auto_backup/i18n/sk.po
index 2d706396fb5..c1cd18e4dd2 100644
--- a/auto_backup/i18n/sk.po
+++ b/auto_backup/i18n/sk.po
@@ -62,7 +62,6 @@ msgstr ""
 #. module: auto_backup
 #: model:ir.actions.server,name:auto_backup.ir_cron_backup_scheduler_0_ir_actions_server
 #: model:ir.cron,cron_name:auto_backup.ir_cron_backup_scheduler_0
-#: model:ir.cron,name:auto_backup.ir_cron_backup_scheduler_0
 msgid "Backup Scheduler"
 msgstr ""
 
@@ -109,23 +108,31 @@ msgid "Choose the storage method for this backup."
 msgstr ""
 
 #. module: auto_backup
+#. odoo-python
 #: code:addons/auto_backup/models/db_backup.py:0
 #, python-format
 msgid "Cleanup of old database backups failed."
 msgstr ""
 
 #. module: auto_backup
+#. odoo-python
 #: code:addons/auto_backup/models/db_backup.py:0
 #, python-format
 msgid "Connection Test Failed!"
 msgstr ""
 
 #. module: auto_backup
+#. odoo-python
 #: code:addons/auto_backup/models/db_backup.py:0
 #, python-format
 msgid "Connection Test Succeeded!"
 msgstr ""
 
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__count_changesets
+msgid "Count Changesets"
+msgstr ""
+
 #. module: auto_backup
 #: model:ir.model.fields,field_description:auto_backup.field_db_backup__count_pending_changeset_changes
 msgid "Count Pending Changeset Changes"
@@ -152,6 +159,7 @@ msgid "Database Backup"
 msgstr ""
 
 #. module: auto_backup
+#. odoo-python
 #: code:addons/auto_backup/models/db_backup.py:0
 #: model:mail.message.subtype,description:auto_backup.mail_message_subtype_failure
 #, python-format
@@ -159,6 +167,7 @@ msgid "Database backup failed."
 msgstr ""
 
 #. module: auto_backup
+#. odoo-python
 #: code:addons/auto_backup/models/db_backup.py:0
 #: model:mail.message.subtype,description:auto_backup.mail_message_subtype_success
 #, python-format
@@ -176,6 +185,7 @@ msgid "Display Name"
 msgstr "Zobraziť meno"
 
 #. module: auto_backup
+#. odoo-python
 #: code:addons/auto_backup/models/db_backup.py:0
 #, python-format
 msgid ""
@@ -234,7 +244,6 @@ msgstr "ID"
 
 #. module: auto_backup
 #: model:ir.model.fields,help:auto_backup.field_db_backup__message_needaction
-#: model:ir.model.fields,help:auto_backup.field_db_backup__message_unread
 msgid "If checked, new messages require your attention."
 msgstr ""
 
@@ -306,7 +315,7 @@ msgstr ""
 
 #. module: auto_backup
 #: model:ir.model.fields,help:auto_backup.field_db_backup__message_needaction_counter
-msgid "Number of messages which requires an action"
+msgid "Number of messages requiring action"
 msgstr ""
 
 #. module: auto_backup
@@ -314,11 +323,6 @@ msgstr ""
 msgid "Number of messages with delivery error"
 msgstr ""
 
-#. module: auto_backup
-#: model:ir.model.fields,help:auto_backup.field_db_backup__message_unread_counter
-msgid "Number of unread messages"
-msgstr ""
-
 #. module: auto_backup
 #: model:ir.model.fields,help:auto_backup.field_db_backup__sftp_private_key
 msgid ""
@@ -372,6 +376,11 @@ msgid ""
 "Set the scheduler to active and fill in how often you want backups generated."
 msgstr ""
 
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__smart_search
+msgid "Smart Search"
+msgstr ""
+
 #. module: auto_backup
 #: model:ir.model.fields,help:auto_backup.field_db_backup__name
 msgid "Summary of this backup process"
@@ -388,6 +397,21 @@ msgid ""
 "The host name or IP address from your remote server. For example 192.168.0.1"
 msgstr ""
 
+#. module: auto_backup
+#: model:ir.model.fields,help:auto_backup.field_db_backup__count_pending_changeset_changes
+msgid "The number of pending changes of this record"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,help:auto_backup.field_db_backup__count_pending_changesets
+msgid "The number of pending changesets of this record"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,help:auto_backup.field_db_backup__count_changesets
+msgid "The overall number of changesets of this record"
+msgstr ""
+
 #. module: auto_backup
 #: model:ir.model.fields,help:auto_backup.field_db_backup__sftp_password
 msgid ""
@@ -407,16 +431,6 @@ msgid ""
 "on the external server."
 msgstr ""
 
-#. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup__message_unread
-msgid "Unread Messages"
-msgstr ""
-
-#. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup__message_unread_counter
-msgid "Unread Messages Counter"
-msgstr ""
-
 #. module: auto_backup
 #: model_terms:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
 msgid ""
diff --git a/auto_backup/i18n/sl.po b/auto_backup/i18n/sl.po
index 1250b9615c8..5f2f81fed75 100644
--- a/auto_backup/i18n/sl.po
+++ b/auto_backup/i18n/sl.po
@@ -63,7 +63,6 @@ msgstr ""
 #. module: auto_backup
 #: model:ir.actions.server,name:auto_backup.ir_cron_backup_scheduler_0_ir_actions_server
 #: model:ir.cron,cron_name:auto_backup.ir_cron_backup_scheduler_0
-#: model:ir.cron,name:auto_backup.ir_cron_backup_scheduler_0
 msgid "Backup Scheduler"
 msgstr ""
 
@@ -113,23 +112,31 @@ msgid "Choose the storage method for this backup."
 msgstr "Izberite metodo shranjevanja za to varnostno kopiranje."
 
 #. module: auto_backup
+#. odoo-python
 #: code:addons/auto_backup/models/db_backup.py:0
 #, python-format
 msgid "Cleanup of old database backups failed."
 msgstr "Brisanje starih varnostnih kopij podatkovnih baz neuspešno."
 
 #. module: auto_backup
+#. odoo-python
 #: code:addons/auto_backup/models/db_backup.py:0
 #, python-format
 msgid "Connection Test Failed!"
 msgstr "Test povezave neuspešen!"
 
 #. module: auto_backup
+#. odoo-python
 #: code:addons/auto_backup/models/db_backup.py:0
 #, python-format
 msgid "Connection Test Succeeded!"
 msgstr "Test povezave uspel!"
 
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__count_changesets
+msgid "Count Changesets"
+msgstr ""
+
 #. module: auto_backup
 #: model:ir.model.fields,field_description:auto_backup.field_db_backup__count_pending_changeset_changes
 msgid "Count Pending Changeset Changes"
@@ -156,6 +163,7 @@ msgid "Database Backup"
 msgstr ""
 
 #. module: auto_backup
+#. odoo-python
 #: code:addons/auto_backup/models/db_backup.py:0
 #: model:mail.message.subtype,description:auto_backup.mail_message_subtype_failure
 #, python-format
@@ -163,6 +171,7 @@ msgid "Database backup failed."
 msgstr "Varnostno kopiranje podatkovne baze neuspešno."
 
 #. module: auto_backup
+#. odoo-python
 #: code:addons/auto_backup/models/db_backup.py:0
 #: model:mail.message.subtype,description:auto_backup.mail_message_subtype_success
 #, python-format
@@ -180,6 +189,7 @@ msgid "Display Name"
 msgstr "Prikazni naziv"
 
 #. module: auto_backup
+#. odoo-python
 #: code:addons/auto_backup/models/db_backup.py:0
 #, python-format
 msgid ""
@@ -240,7 +250,6 @@ msgstr "ID"
 
 #. module: auto_backup
 #: model:ir.model.fields,help:auto_backup.field_db_backup__message_needaction
-#: model:ir.model.fields,help:auto_backup.field_db_backup__message_unread
 msgid "If checked, new messages require your attention."
 msgstr ""
 
@@ -312,7 +321,7 @@ msgstr ""
 
 #. module: auto_backup
 #: model:ir.model.fields,help:auto_backup.field_db_backup__message_needaction_counter
-msgid "Number of messages which requires an action"
+msgid "Number of messages requiring action"
 msgstr ""
 
 #. module: auto_backup
@@ -320,11 +329,6 @@ msgstr ""
 msgid "Number of messages with delivery error"
 msgstr ""
 
-#. module: auto_backup
-#: model:ir.model.fields,help:auto_backup.field_db_backup__message_unread_counter
-msgid "Number of unread messages"
-msgstr ""
-
 #. module: auto_backup
 #: model:ir.model.fields,help:auto_backup.field_db_backup__sftp_private_key
 msgid ""
@@ -382,6 +386,11 @@ msgstr ""
 "Nastavite razporejevalnik kot aktiven in izpolnite, kako pogosto želite "
 "ustvarjati varnostne kopije."
 
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__smart_search
+msgid "Smart Search"
+msgstr ""
+
 #. module: auto_backup
 #: model:ir.model.fields,help:auto_backup.field_db_backup__name
 msgid "Summary of this backup process"
@@ -398,6 +407,21 @@ msgid ""
 "The host name or IP address from your remote server. For example 192.168.0.1"
 msgstr "IP naslov ali 'hostname' oddaljenega strežnika. Npr. 192.168.0.1"
 
+#. module: auto_backup
+#: model:ir.model.fields,help:auto_backup.field_db_backup__count_pending_changeset_changes
+msgid "The number of pending changes of this record"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,help:auto_backup.field_db_backup__count_pending_changesets
+msgid "The number of pending changesets of this record"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,help:auto_backup.field_db_backup__count_changesets
+msgid "The overall number of changesets of this record"
+msgstr ""
+
 #. module: auto_backup
 #: model:ir.model.fields,help:auto_backup.field_db_backup__sftp_password
 msgid ""
@@ -419,16 +443,6 @@ msgid ""
 "on the external server."
 msgstr "Uporabniško ime SFTP povezave. To je uporabnik zunanjega strežnika."
 
-#. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup__message_unread
-msgid "Unread Messages"
-msgstr ""
-
-#. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup__message_unread_counter
-msgid "Unread Messages Counter"
-msgstr ""
-
 #. module: auto_backup
 #: model_terms:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
 msgid ""
diff --git a/auto_backup/i18n/sr.po b/auto_backup/i18n/sr.po
index 50b39a5d51b..9a383eb1613 100644
--- a/auto_backup/i18n/sr.po
+++ b/auto_backup/i18n/sr.po
@@ -63,7 +63,6 @@ msgstr ""
 #. module: auto_backup
 #: model:ir.actions.server,name:auto_backup.ir_cron_backup_scheduler_0_ir_actions_server
 #: model:ir.cron,cron_name:auto_backup.ir_cron_backup_scheduler_0
-#: model:ir.cron,name:auto_backup.ir_cron_backup_scheduler_0
 msgid "Backup Scheduler"
 msgstr ""
 
@@ -110,23 +109,31 @@ msgid "Choose the storage method for this backup."
 msgstr ""
 
 #. module: auto_backup
+#. odoo-python
 #: code:addons/auto_backup/models/db_backup.py:0
 #, python-format
 msgid "Cleanup of old database backups failed."
 msgstr ""
 
 #. module: auto_backup
+#. odoo-python
 #: code:addons/auto_backup/models/db_backup.py:0
 #, python-format
 msgid "Connection Test Failed!"
 msgstr ""
 
 #. module: auto_backup
+#. odoo-python
 #: code:addons/auto_backup/models/db_backup.py:0
 #, python-format
 msgid "Connection Test Succeeded!"
 msgstr ""
 
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__count_changesets
+msgid "Count Changesets"
+msgstr ""
+
 #. module: auto_backup
 #: model:ir.model.fields,field_description:auto_backup.field_db_backup__count_pending_changeset_changes
 msgid "Count Pending Changeset Changes"
@@ -153,6 +160,7 @@ msgid "Database Backup"
 msgstr ""
 
 #. module: auto_backup
+#. odoo-python
 #: code:addons/auto_backup/models/db_backup.py:0
 #: model:mail.message.subtype,description:auto_backup.mail_message_subtype_failure
 #, python-format
@@ -160,6 +168,7 @@ msgid "Database backup failed."
 msgstr ""
 
 #. module: auto_backup
+#. odoo-python
 #: code:addons/auto_backup/models/db_backup.py:0
 #: model:mail.message.subtype,description:auto_backup.mail_message_subtype_success
 #, python-format
@@ -177,6 +186,7 @@ msgid "Display Name"
 msgstr ""
 
 #. module: auto_backup
+#. odoo-python
 #: code:addons/auto_backup/models/db_backup.py:0
 #, python-format
 msgid ""
@@ -235,7 +245,6 @@ msgstr "ID"
 
 #. module: auto_backup
 #: model:ir.model.fields,help:auto_backup.field_db_backup__message_needaction
-#: model:ir.model.fields,help:auto_backup.field_db_backup__message_unread
 msgid "If checked, new messages require your attention."
 msgstr ""
 
@@ -307,7 +316,7 @@ msgstr ""
 
 #. module: auto_backup
 #: model:ir.model.fields,help:auto_backup.field_db_backup__message_needaction_counter
-msgid "Number of messages which requires an action"
+msgid "Number of messages requiring action"
 msgstr ""
 
 #. module: auto_backup
@@ -315,11 +324,6 @@ msgstr ""
 msgid "Number of messages with delivery error"
 msgstr ""
 
-#. module: auto_backup
-#: model:ir.model.fields,help:auto_backup.field_db_backup__message_unread_counter
-msgid "Number of unread messages"
-msgstr ""
-
 #. module: auto_backup
 #: model:ir.model.fields,help:auto_backup.field_db_backup__sftp_private_key
 msgid ""
@@ -373,6 +377,11 @@ msgid ""
 "Set the scheduler to active and fill in how often you want backups generated."
 msgstr ""
 
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__smart_search
+msgid "Smart Search"
+msgstr ""
+
 #. module: auto_backup
 #: model:ir.model.fields,help:auto_backup.field_db_backup__name
 msgid "Summary of this backup process"
@@ -389,6 +398,21 @@ msgid ""
 "The host name or IP address from your remote server. For example 192.168.0.1"
 msgstr ""
 
+#. module: auto_backup
+#: model:ir.model.fields,help:auto_backup.field_db_backup__count_pending_changeset_changes
+msgid "The number of pending changes of this record"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,help:auto_backup.field_db_backup__count_pending_changesets
+msgid "The number of pending changesets of this record"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,help:auto_backup.field_db_backup__count_changesets
+msgid "The overall number of changesets of this record"
+msgstr ""
+
 #. module: auto_backup
 #: model:ir.model.fields,help:auto_backup.field_db_backup__sftp_password
 msgid ""
@@ -408,16 +432,6 @@ msgid ""
 "on the external server."
 msgstr ""
 
-#. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup__message_unread
-msgid "Unread Messages"
-msgstr ""
-
-#. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup__message_unread_counter
-msgid "Unread Messages Counter"
-msgstr ""
-
 #. module: auto_backup
 #: model_terms:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
 msgid ""
diff --git a/auto_backup/i18n/sr@latin.po b/auto_backup/i18n/sr@latin.po
index c9fbd8af9ac..afd648adba9 100644
--- a/auto_backup/i18n/sr@latin.po
+++ b/auto_backup/i18n/sr@latin.po
@@ -64,7 +64,6 @@ msgstr ""
 #. module: auto_backup
 #: model:ir.actions.server,name:auto_backup.ir_cron_backup_scheduler_0_ir_actions_server
 #: model:ir.cron,cron_name:auto_backup.ir_cron_backup_scheduler_0
-#: model:ir.cron,name:auto_backup.ir_cron_backup_scheduler_0
 msgid "Backup Scheduler"
 msgstr ""
 
@@ -111,23 +110,31 @@ msgid "Choose the storage method for this backup."
 msgstr ""
 
 #. module: auto_backup
+#. odoo-python
 #: code:addons/auto_backup/models/db_backup.py:0
 #, python-format
 msgid "Cleanup of old database backups failed."
 msgstr ""
 
 #. module: auto_backup
+#. odoo-python
 #: code:addons/auto_backup/models/db_backup.py:0
 #, python-format
 msgid "Connection Test Failed!"
 msgstr ""
 
 #. module: auto_backup
+#. odoo-python
 #: code:addons/auto_backup/models/db_backup.py:0
 #, python-format
 msgid "Connection Test Succeeded!"
 msgstr ""
 
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__count_changesets
+msgid "Count Changesets"
+msgstr ""
+
 #. module: auto_backup
 #: model:ir.model.fields,field_description:auto_backup.field_db_backup__count_pending_changeset_changes
 msgid "Count Pending Changeset Changes"
@@ -154,6 +161,7 @@ msgid "Database Backup"
 msgstr ""
 
 #. module: auto_backup
+#. odoo-python
 #: code:addons/auto_backup/models/db_backup.py:0
 #: model:mail.message.subtype,description:auto_backup.mail_message_subtype_failure
 #, python-format
@@ -161,6 +169,7 @@ msgid "Database backup failed."
 msgstr ""
 
 #. module: auto_backup
+#. odoo-python
 #: code:addons/auto_backup/models/db_backup.py:0
 #: model:mail.message.subtype,description:auto_backup.mail_message_subtype_success
 #, python-format
@@ -178,6 +187,7 @@ msgid "Display Name"
 msgstr "Ime za prikaz"
 
 #. module: auto_backup
+#. odoo-python
 #: code:addons/auto_backup/models/db_backup.py:0
 #, python-format
 msgid ""
@@ -236,7 +246,6 @@ msgstr "ID"
 
 #. module: auto_backup
 #: model:ir.model.fields,help:auto_backup.field_db_backup__message_needaction
-#: model:ir.model.fields,help:auto_backup.field_db_backup__message_unread
 msgid "If checked, new messages require your attention."
 msgstr ""
 
@@ -308,7 +317,7 @@ msgstr ""
 
 #. module: auto_backup
 #: model:ir.model.fields,help:auto_backup.field_db_backup__message_needaction_counter
-msgid "Number of messages which requires an action"
+msgid "Number of messages requiring action"
 msgstr ""
 
 #. module: auto_backup
@@ -316,11 +325,6 @@ msgstr ""
 msgid "Number of messages with delivery error"
 msgstr ""
 
-#. module: auto_backup
-#: model:ir.model.fields,help:auto_backup.field_db_backup__message_unread_counter
-msgid "Number of unread messages"
-msgstr ""
-
 #. module: auto_backup
 #: model:ir.model.fields,help:auto_backup.field_db_backup__sftp_private_key
 msgid ""
@@ -374,6 +378,11 @@ msgid ""
 "Set the scheduler to active and fill in how often you want backups generated."
 msgstr ""
 
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__smart_search
+msgid "Smart Search"
+msgstr ""
+
 #. module: auto_backup
 #: model:ir.model.fields,help:auto_backup.field_db_backup__name
 msgid "Summary of this backup process"
@@ -390,6 +399,21 @@ msgid ""
 "The host name or IP address from your remote server. For example 192.168.0.1"
 msgstr ""
 
+#. module: auto_backup
+#: model:ir.model.fields,help:auto_backup.field_db_backup__count_pending_changeset_changes
+msgid "The number of pending changes of this record"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,help:auto_backup.field_db_backup__count_pending_changesets
+msgid "The number of pending changesets of this record"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,help:auto_backup.field_db_backup__count_changesets
+msgid "The overall number of changesets of this record"
+msgstr ""
+
 #. module: auto_backup
 #: model:ir.model.fields,help:auto_backup.field_db_backup__sftp_password
 msgid ""
@@ -409,16 +433,6 @@ msgid ""
 "on the external server."
 msgstr ""
 
-#. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup__message_unread
-msgid "Unread Messages"
-msgstr ""
-
-#. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup__message_unread_counter
-msgid "Unread Messages Counter"
-msgstr ""
-
 #. module: auto_backup
 #: model_terms:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
 msgid ""
diff --git a/auto_backup/i18n/sv.po b/auto_backup/i18n/sv.po
index a7c3a1ce6c2..68f3e2b1efb 100644
--- a/auto_backup/i18n/sv.po
+++ b/auto_backup/i18n/sv.po
@@ -62,7 +62,6 @@ msgstr ""
 #. module: auto_backup
 #: model:ir.actions.server,name:auto_backup.ir_cron_backup_scheduler_0_ir_actions_server
 #: model:ir.cron,cron_name:auto_backup.ir_cron_backup_scheduler_0
-#: model:ir.cron,name:auto_backup.ir_cron_backup_scheduler_0
 msgid "Backup Scheduler"
 msgstr ""
 
@@ -109,23 +108,31 @@ msgid "Choose the storage method for this backup."
 msgstr ""
 
 #. module: auto_backup
+#. odoo-python
 #: code:addons/auto_backup/models/db_backup.py:0
 #, python-format
 msgid "Cleanup of old database backups failed."
 msgstr ""
 
 #. module: auto_backup
+#. odoo-python
 #: code:addons/auto_backup/models/db_backup.py:0
 #, python-format
 msgid "Connection Test Failed!"
 msgstr ""
 
 #. module: auto_backup
+#. odoo-python
 #: code:addons/auto_backup/models/db_backup.py:0
 #, python-format
 msgid "Connection Test Succeeded!"
 msgstr ""
 
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__count_changesets
+msgid "Count Changesets"
+msgstr ""
+
 #. module: auto_backup
 #: model:ir.model.fields,field_description:auto_backup.field_db_backup__count_pending_changeset_changes
 msgid "Count Pending Changeset Changes"
@@ -152,6 +159,7 @@ msgid "Database Backup"
 msgstr ""
 
 #. module: auto_backup
+#. odoo-python
 #: code:addons/auto_backup/models/db_backup.py:0
 #: model:mail.message.subtype,description:auto_backup.mail_message_subtype_failure
 #, python-format
@@ -159,6 +167,7 @@ msgid "Database backup failed."
 msgstr ""
 
 #. module: auto_backup
+#. odoo-python
 #: code:addons/auto_backup/models/db_backup.py:0
 #: model:mail.message.subtype,description:auto_backup.mail_message_subtype_success
 #, python-format
@@ -176,6 +185,7 @@ msgid "Display Name"
 msgstr "Visa namn"
 
 #. module: auto_backup
+#. odoo-python
 #: code:addons/auto_backup/models/db_backup.py:0
 #, python-format
 msgid ""
@@ -234,7 +244,6 @@ msgstr "ID"
 
 #. module: auto_backup
 #: model:ir.model.fields,help:auto_backup.field_db_backup__message_needaction
-#: model:ir.model.fields,help:auto_backup.field_db_backup__message_unread
 msgid "If checked, new messages require your attention."
 msgstr ""
 
@@ -306,7 +315,7 @@ msgstr ""
 
 #. module: auto_backup
 #: model:ir.model.fields,help:auto_backup.field_db_backup__message_needaction_counter
-msgid "Number of messages which requires an action"
+msgid "Number of messages requiring action"
 msgstr ""
 
 #. module: auto_backup
@@ -314,11 +323,6 @@ msgstr ""
 msgid "Number of messages with delivery error"
 msgstr ""
 
-#. module: auto_backup
-#: model:ir.model.fields,help:auto_backup.field_db_backup__message_unread_counter
-msgid "Number of unread messages"
-msgstr ""
-
 #. module: auto_backup
 #: model:ir.model.fields,help:auto_backup.field_db_backup__sftp_private_key
 msgid ""
@@ -372,6 +376,11 @@ msgid ""
 "Set the scheduler to active and fill in how often you want backups generated."
 msgstr ""
 
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__smart_search
+msgid "Smart Search"
+msgstr ""
+
 #. module: auto_backup
 #: model:ir.model.fields,help:auto_backup.field_db_backup__name
 msgid "Summary of this backup process"
@@ -388,6 +397,21 @@ msgid ""
 "The host name or IP address from your remote server. For example 192.168.0.1"
 msgstr ""
 
+#. module: auto_backup
+#: model:ir.model.fields,help:auto_backup.field_db_backup__count_pending_changeset_changes
+msgid "The number of pending changes of this record"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,help:auto_backup.field_db_backup__count_pending_changesets
+msgid "The number of pending changesets of this record"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,help:auto_backup.field_db_backup__count_changesets
+msgid "The overall number of changesets of this record"
+msgstr ""
+
 #. module: auto_backup
 #: model:ir.model.fields,help:auto_backup.field_db_backup__sftp_password
 msgid ""
@@ -407,16 +431,6 @@ msgid ""
 "on the external server."
 msgstr ""
 
-#. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup__message_unread
-msgid "Unread Messages"
-msgstr ""
-
-#. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup__message_unread_counter
-msgid "Unread Messages Counter"
-msgstr ""
-
 #. module: auto_backup
 #: model_terms:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
 msgid ""
diff --git a/auto_backup/i18n/th.po b/auto_backup/i18n/th.po
index 7a321bf3300..e80b3ec64d4 100644
--- a/auto_backup/i18n/th.po
+++ b/auto_backup/i18n/th.po
@@ -62,7 +62,6 @@ msgstr ""
 #. module: auto_backup
 #: model:ir.actions.server,name:auto_backup.ir_cron_backup_scheduler_0_ir_actions_server
 #: model:ir.cron,cron_name:auto_backup.ir_cron_backup_scheduler_0
-#: model:ir.cron,name:auto_backup.ir_cron_backup_scheduler_0
 msgid "Backup Scheduler"
 msgstr ""
 
@@ -109,23 +108,31 @@ msgid "Choose the storage method for this backup."
 msgstr ""
 
 #. module: auto_backup
+#. odoo-python
 #: code:addons/auto_backup/models/db_backup.py:0
 #, python-format
 msgid "Cleanup of old database backups failed."
 msgstr ""
 
 #. module: auto_backup
+#. odoo-python
 #: code:addons/auto_backup/models/db_backup.py:0
 #, python-format
 msgid "Connection Test Failed!"
 msgstr ""
 
 #. module: auto_backup
+#. odoo-python
 #: code:addons/auto_backup/models/db_backup.py:0
 #, python-format
 msgid "Connection Test Succeeded!"
 msgstr ""
 
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__count_changesets
+msgid "Count Changesets"
+msgstr ""
+
 #. module: auto_backup
 #: model:ir.model.fields,field_description:auto_backup.field_db_backup__count_pending_changeset_changes
 msgid "Count Pending Changeset Changes"
@@ -152,6 +159,7 @@ msgid "Database Backup"
 msgstr ""
 
 #. module: auto_backup
+#. odoo-python
 #: code:addons/auto_backup/models/db_backup.py:0
 #: model:mail.message.subtype,description:auto_backup.mail_message_subtype_failure
 #, python-format
@@ -159,6 +167,7 @@ msgid "Database backup failed."
 msgstr ""
 
 #. module: auto_backup
+#. odoo-python
 #: code:addons/auto_backup/models/db_backup.py:0
 #: model:mail.message.subtype,description:auto_backup.mail_message_subtype_success
 #, python-format
@@ -176,6 +185,7 @@ msgid "Display Name"
 msgstr "ชื่อที่ใช้แสดง"
 
 #. module: auto_backup
+#. odoo-python
 #: code:addons/auto_backup/models/db_backup.py:0
 #, python-format
 msgid ""
@@ -234,7 +244,6 @@ msgstr "รหัส"
 
 #. module: auto_backup
 #: model:ir.model.fields,help:auto_backup.field_db_backup__message_needaction
-#: model:ir.model.fields,help:auto_backup.field_db_backup__message_unread
 msgid "If checked, new messages require your attention."
 msgstr ""
 
@@ -306,7 +315,7 @@ msgstr ""
 
 #. module: auto_backup
 #: model:ir.model.fields,help:auto_backup.field_db_backup__message_needaction_counter
-msgid "Number of messages which requires an action"
+msgid "Number of messages requiring action"
 msgstr ""
 
 #. module: auto_backup
@@ -314,11 +323,6 @@ msgstr ""
 msgid "Number of messages with delivery error"
 msgstr ""
 
-#. module: auto_backup
-#: model:ir.model.fields,help:auto_backup.field_db_backup__message_unread_counter
-msgid "Number of unread messages"
-msgstr ""
-
 #. module: auto_backup
 #: model:ir.model.fields,help:auto_backup.field_db_backup__sftp_private_key
 msgid ""
@@ -372,6 +376,11 @@ msgid ""
 "Set the scheduler to active and fill in how often you want backups generated."
 msgstr ""
 
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__smart_search
+msgid "Smart Search"
+msgstr ""
+
 #. module: auto_backup
 #: model:ir.model.fields,help:auto_backup.field_db_backup__name
 msgid "Summary of this backup process"
@@ -388,6 +397,21 @@ msgid ""
 "The host name or IP address from your remote server. For example 192.168.0.1"
 msgstr ""
 
+#. module: auto_backup
+#: model:ir.model.fields,help:auto_backup.field_db_backup__count_pending_changeset_changes
+msgid "The number of pending changes of this record"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,help:auto_backup.field_db_backup__count_pending_changesets
+msgid "The number of pending changesets of this record"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,help:auto_backup.field_db_backup__count_changesets
+msgid "The overall number of changesets of this record"
+msgstr ""
+
 #. module: auto_backup
 #: model:ir.model.fields,help:auto_backup.field_db_backup__sftp_password
 msgid ""
@@ -407,16 +431,6 @@ msgid ""
 "on the external server."
 msgstr ""
 
-#. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup__message_unread
-msgid "Unread Messages"
-msgstr ""
-
-#. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup__message_unread_counter
-msgid "Unread Messages Counter"
-msgstr ""
-
 #. module: auto_backup
 #: model_terms:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
 msgid ""
diff --git a/auto_backup/i18n/tr.po b/auto_backup/i18n/tr.po
index da424319f10..16e9e17dc26 100644
--- a/auto_backup/i18n/tr.po
+++ b/auto_backup/i18n/tr.po
@@ -62,7 +62,6 @@ msgstr ""
 #. module: auto_backup
 #: model:ir.actions.server,name:auto_backup.ir_cron_backup_scheduler_0_ir_actions_server
 #: model:ir.cron,cron_name:auto_backup.ir_cron_backup_scheduler_0
-#: model:ir.cron,name:auto_backup.ir_cron_backup_scheduler_0
 msgid "Backup Scheduler"
 msgstr ""
 
@@ -109,23 +108,31 @@ msgid "Choose the storage method for this backup."
 msgstr ""
 
 #. module: auto_backup
+#. odoo-python
 #: code:addons/auto_backup/models/db_backup.py:0
 #, python-format
 msgid "Cleanup of old database backups failed."
 msgstr ""
 
 #. module: auto_backup
+#. odoo-python
 #: code:addons/auto_backup/models/db_backup.py:0
 #, python-format
 msgid "Connection Test Failed!"
 msgstr ""
 
 #. module: auto_backup
+#. odoo-python
 #: code:addons/auto_backup/models/db_backup.py:0
 #, python-format
 msgid "Connection Test Succeeded!"
 msgstr ""
 
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__count_changesets
+msgid "Count Changesets"
+msgstr ""
+
 #. module: auto_backup
 #: model:ir.model.fields,field_description:auto_backup.field_db_backup__count_pending_changeset_changes
 msgid "Count Pending Changeset Changes"
@@ -152,6 +159,7 @@ msgid "Database Backup"
 msgstr ""
 
 #. module: auto_backup
+#. odoo-python
 #: code:addons/auto_backup/models/db_backup.py:0
 #: model:mail.message.subtype,description:auto_backup.mail_message_subtype_failure
 #, python-format
@@ -159,6 +167,7 @@ msgid "Database backup failed."
 msgstr ""
 
 #. module: auto_backup
+#. odoo-python
 #: code:addons/auto_backup/models/db_backup.py:0
 #: model:mail.message.subtype,description:auto_backup.mail_message_subtype_success
 #, python-format
@@ -176,6 +185,7 @@ msgid "Display Name"
 msgstr "Görünen İsim"
 
 #. module: auto_backup
+#. odoo-python
 #: code:addons/auto_backup/models/db_backup.py:0
 #, python-format
 msgid ""
@@ -234,7 +244,6 @@ msgstr "ID"
 
 #. module: auto_backup
 #: model:ir.model.fields,help:auto_backup.field_db_backup__message_needaction
-#: model:ir.model.fields,help:auto_backup.field_db_backup__message_unread
 msgid "If checked, new messages require your attention."
 msgstr ""
 
@@ -306,7 +315,7 @@ msgstr ""
 
 #. module: auto_backup
 #: model:ir.model.fields,help:auto_backup.field_db_backup__message_needaction_counter
-msgid "Number of messages which requires an action"
+msgid "Number of messages requiring action"
 msgstr ""
 
 #. module: auto_backup
@@ -314,11 +323,6 @@ msgstr ""
 msgid "Number of messages with delivery error"
 msgstr ""
 
-#. module: auto_backup
-#: model:ir.model.fields,help:auto_backup.field_db_backup__message_unread_counter
-msgid "Number of unread messages"
-msgstr ""
-
 #. module: auto_backup
 #: model:ir.model.fields,help:auto_backup.field_db_backup__sftp_private_key
 msgid ""
@@ -372,6 +376,11 @@ msgid ""
 "Set the scheduler to active and fill in how often you want backups generated."
 msgstr ""
 
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__smart_search
+msgid "Smart Search"
+msgstr ""
+
 #. module: auto_backup
 #: model:ir.model.fields,help:auto_backup.field_db_backup__name
 msgid "Summary of this backup process"
@@ -388,6 +397,21 @@ msgid ""
 "The host name or IP address from your remote server. For example 192.168.0.1"
 msgstr ""
 
+#. module: auto_backup
+#: model:ir.model.fields,help:auto_backup.field_db_backup__count_pending_changeset_changes
+msgid "The number of pending changes of this record"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,help:auto_backup.field_db_backup__count_pending_changesets
+msgid "The number of pending changesets of this record"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,help:auto_backup.field_db_backup__count_changesets
+msgid "The overall number of changesets of this record"
+msgstr ""
+
 #. module: auto_backup
 #: model:ir.model.fields,help:auto_backup.field_db_backup__sftp_password
 msgid ""
@@ -407,16 +431,6 @@ msgid ""
 "on the external server."
 msgstr ""
 
-#. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup__message_unread
-msgid "Unread Messages"
-msgstr ""
-
-#. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup__message_unread_counter
-msgid "Unread Messages Counter"
-msgstr ""
-
 #. module: auto_backup
 #: model_terms:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
 msgid ""
diff --git a/auto_backup/i18n/tr_TR.po b/auto_backup/i18n/tr_TR.po
index ec992a9edad..3ddca80eb06 100644
--- a/auto_backup/i18n/tr_TR.po
+++ b/auto_backup/i18n/tr_TR.po
@@ -63,7 +63,6 @@ msgstr ""
 #. module: auto_backup
 #: model:ir.actions.server,name:auto_backup.ir_cron_backup_scheduler_0_ir_actions_server
 #: model:ir.cron,cron_name:auto_backup.ir_cron_backup_scheduler_0
-#: model:ir.cron,name:auto_backup.ir_cron_backup_scheduler_0
 msgid "Backup Scheduler"
 msgstr ""
 
@@ -110,23 +109,31 @@ msgid "Choose the storage method for this backup."
 msgstr ""
 
 #. module: auto_backup
+#. odoo-python
 #: code:addons/auto_backup/models/db_backup.py:0
 #, python-format
 msgid "Cleanup of old database backups failed."
 msgstr ""
 
 #. module: auto_backup
+#. odoo-python
 #: code:addons/auto_backup/models/db_backup.py:0
 #, python-format
 msgid "Connection Test Failed!"
 msgstr ""
 
 #. module: auto_backup
+#. odoo-python
 #: code:addons/auto_backup/models/db_backup.py:0
 #, python-format
 msgid "Connection Test Succeeded!"
 msgstr ""
 
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__count_changesets
+msgid "Count Changesets"
+msgstr ""
+
 #. module: auto_backup
 #: model:ir.model.fields,field_description:auto_backup.field_db_backup__count_pending_changeset_changes
 msgid "Count Pending Changeset Changes"
@@ -153,6 +160,7 @@ msgid "Database Backup"
 msgstr ""
 
 #. module: auto_backup
+#. odoo-python
 #: code:addons/auto_backup/models/db_backup.py:0
 #: model:mail.message.subtype,description:auto_backup.mail_message_subtype_failure
 #, python-format
@@ -160,6 +168,7 @@ msgid "Database backup failed."
 msgstr ""
 
 #. module: auto_backup
+#. odoo-python
 #: code:addons/auto_backup/models/db_backup.py:0
 #: model:mail.message.subtype,description:auto_backup.mail_message_subtype_success
 #, python-format
@@ -177,6 +186,7 @@ msgid "Display Name"
 msgstr "Görünen ad"
 
 #. module: auto_backup
+#. odoo-python
 #: code:addons/auto_backup/models/db_backup.py:0
 #, python-format
 msgid ""
@@ -235,7 +245,6 @@ msgstr "Kimlik"
 
 #. module: auto_backup
 #: model:ir.model.fields,help:auto_backup.field_db_backup__message_needaction
-#: model:ir.model.fields,help:auto_backup.field_db_backup__message_unread
 msgid "If checked, new messages require your attention."
 msgstr ""
 
@@ -307,7 +316,7 @@ msgstr ""
 
 #. module: auto_backup
 #: model:ir.model.fields,help:auto_backup.field_db_backup__message_needaction_counter
-msgid "Number of messages which requires an action"
+msgid "Number of messages requiring action"
 msgstr ""
 
 #. module: auto_backup
@@ -315,11 +324,6 @@ msgstr ""
 msgid "Number of messages with delivery error"
 msgstr ""
 
-#. module: auto_backup
-#: model:ir.model.fields,help:auto_backup.field_db_backup__message_unread_counter
-msgid "Number of unread messages"
-msgstr ""
-
 #. module: auto_backup
 #: model:ir.model.fields,help:auto_backup.field_db_backup__sftp_private_key
 msgid ""
@@ -373,6 +377,11 @@ msgid ""
 "Set the scheduler to active and fill in how often you want backups generated."
 msgstr ""
 
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__smart_search
+msgid "Smart Search"
+msgstr ""
+
 #. module: auto_backup
 #: model:ir.model.fields,help:auto_backup.field_db_backup__name
 msgid "Summary of this backup process"
@@ -389,6 +398,21 @@ msgid ""
 "The host name or IP address from your remote server. For example 192.168.0.1"
 msgstr ""
 
+#. module: auto_backup
+#: model:ir.model.fields,help:auto_backup.field_db_backup__count_pending_changeset_changes
+msgid "The number of pending changes of this record"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,help:auto_backup.field_db_backup__count_pending_changesets
+msgid "The number of pending changesets of this record"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,help:auto_backup.field_db_backup__count_changesets
+msgid "The overall number of changesets of this record"
+msgstr ""
+
 #. module: auto_backup
 #: model:ir.model.fields,help:auto_backup.field_db_backup__sftp_password
 msgid ""
@@ -408,16 +432,6 @@ msgid ""
 "on the external server."
 msgstr ""
 
-#. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup__message_unread
-msgid "Unread Messages"
-msgstr ""
-
-#. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup__message_unread_counter
-msgid "Unread Messages Counter"
-msgstr ""
-
 #. module: auto_backup
 #: model_terms:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
 msgid ""
diff --git a/auto_backup/i18n/uk.po b/auto_backup/i18n/uk.po
index 4bdfd6ae6a0..4aa30ce1a4c 100644
--- a/auto_backup/i18n/uk.po
+++ b/auto_backup/i18n/uk.po
@@ -63,7 +63,6 @@ msgstr ""
 #. module: auto_backup
 #: model:ir.actions.server,name:auto_backup.ir_cron_backup_scheduler_0_ir_actions_server
 #: model:ir.cron,cron_name:auto_backup.ir_cron_backup_scheduler_0
-#: model:ir.cron,name:auto_backup.ir_cron_backup_scheduler_0
 msgid "Backup Scheduler"
 msgstr ""
 
@@ -110,23 +109,31 @@ msgid "Choose the storage method for this backup."
 msgstr ""
 
 #. module: auto_backup
+#. odoo-python
 #: code:addons/auto_backup/models/db_backup.py:0
 #, python-format
 msgid "Cleanup of old database backups failed."
 msgstr ""
 
 #. module: auto_backup
+#. odoo-python
 #: code:addons/auto_backup/models/db_backup.py:0
 #, python-format
 msgid "Connection Test Failed!"
 msgstr ""
 
 #. module: auto_backup
+#. odoo-python
 #: code:addons/auto_backup/models/db_backup.py:0
 #, python-format
 msgid "Connection Test Succeeded!"
 msgstr ""
 
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__count_changesets
+msgid "Count Changesets"
+msgstr ""
+
 #. module: auto_backup
 #: model:ir.model.fields,field_description:auto_backup.field_db_backup__count_pending_changeset_changes
 msgid "Count Pending Changeset Changes"
@@ -153,6 +160,7 @@ msgid "Database Backup"
 msgstr ""
 
 #. module: auto_backup
+#. odoo-python
 #: code:addons/auto_backup/models/db_backup.py:0
 #: model:mail.message.subtype,description:auto_backup.mail_message_subtype_failure
 #, python-format
@@ -160,6 +168,7 @@ msgid "Database backup failed."
 msgstr ""
 
 #. module: auto_backup
+#. odoo-python
 #: code:addons/auto_backup/models/db_backup.py:0
 #: model:mail.message.subtype,description:auto_backup.mail_message_subtype_success
 #, python-format
@@ -177,6 +186,7 @@ msgid "Display Name"
 msgstr "Назва для відображення"
 
 #. module: auto_backup
+#. odoo-python
 #: code:addons/auto_backup/models/db_backup.py:0
 #, python-format
 msgid ""
@@ -235,7 +245,6 @@ msgstr "ID"
 
 #. module: auto_backup
 #: model:ir.model.fields,help:auto_backup.field_db_backup__message_needaction
-#: model:ir.model.fields,help:auto_backup.field_db_backup__message_unread
 msgid "If checked, new messages require your attention."
 msgstr ""
 
@@ -307,7 +316,7 @@ msgstr ""
 
 #. module: auto_backup
 #: model:ir.model.fields,help:auto_backup.field_db_backup__message_needaction_counter
-msgid "Number of messages which requires an action"
+msgid "Number of messages requiring action"
 msgstr ""
 
 #. module: auto_backup
@@ -315,11 +324,6 @@ msgstr ""
 msgid "Number of messages with delivery error"
 msgstr ""
 
-#. module: auto_backup
-#: model:ir.model.fields,help:auto_backup.field_db_backup__message_unread_counter
-msgid "Number of unread messages"
-msgstr ""
-
 #. module: auto_backup
 #: model:ir.model.fields,help:auto_backup.field_db_backup__sftp_private_key
 msgid ""
@@ -373,6 +377,11 @@ msgid ""
 "Set the scheduler to active and fill in how often you want backups generated."
 msgstr ""
 
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__smart_search
+msgid "Smart Search"
+msgstr ""
+
 #. module: auto_backup
 #: model:ir.model.fields,help:auto_backup.field_db_backup__name
 msgid "Summary of this backup process"
@@ -389,6 +398,21 @@ msgid ""
 "The host name or IP address from your remote server. For example 192.168.0.1"
 msgstr ""
 
+#. module: auto_backup
+#: model:ir.model.fields,help:auto_backup.field_db_backup__count_pending_changeset_changes
+msgid "The number of pending changes of this record"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,help:auto_backup.field_db_backup__count_pending_changesets
+msgid "The number of pending changesets of this record"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,help:auto_backup.field_db_backup__count_changesets
+msgid "The overall number of changesets of this record"
+msgstr ""
+
 #. module: auto_backup
 #: model:ir.model.fields,help:auto_backup.field_db_backup__sftp_password
 msgid ""
@@ -408,16 +432,6 @@ msgid ""
 "on the external server."
 msgstr ""
 
-#. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup__message_unread
-msgid "Unread Messages"
-msgstr ""
-
-#. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup__message_unread_counter
-msgid "Unread Messages Counter"
-msgstr ""
-
 #. module: auto_backup
 #: model_terms:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
 msgid ""
diff --git a/auto_backup/i18n/vi.po b/auto_backup/i18n/vi.po
index cc3d38ce67e..a5674c14d8f 100644
--- a/auto_backup/i18n/vi.po
+++ b/auto_backup/i18n/vi.po
@@ -62,7 +62,6 @@ msgstr ""
 #. module: auto_backup
 #: model:ir.actions.server,name:auto_backup.ir_cron_backup_scheduler_0_ir_actions_server
 #: model:ir.cron,cron_name:auto_backup.ir_cron_backup_scheduler_0
-#: model:ir.cron,name:auto_backup.ir_cron_backup_scheduler_0
 msgid "Backup Scheduler"
 msgstr ""
 
@@ -109,23 +108,31 @@ msgid "Choose the storage method for this backup."
 msgstr ""
 
 #. module: auto_backup
+#. odoo-python
 #: code:addons/auto_backup/models/db_backup.py:0
 #, python-format
 msgid "Cleanup of old database backups failed."
 msgstr ""
 
 #. module: auto_backup
+#. odoo-python
 #: code:addons/auto_backup/models/db_backup.py:0
 #, python-format
 msgid "Connection Test Failed!"
 msgstr ""
 
 #. module: auto_backup
+#. odoo-python
 #: code:addons/auto_backup/models/db_backup.py:0
 #, python-format
 msgid "Connection Test Succeeded!"
 msgstr ""
 
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__count_changesets
+msgid "Count Changesets"
+msgstr ""
+
 #. module: auto_backup
 #: model:ir.model.fields,field_description:auto_backup.field_db_backup__count_pending_changeset_changes
 msgid "Count Pending Changeset Changes"
@@ -152,6 +159,7 @@ msgid "Database Backup"
 msgstr ""
 
 #. module: auto_backup
+#. odoo-python
 #: code:addons/auto_backup/models/db_backup.py:0
 #: model:mail.message.subtype,description:auto_backup.mail_message_subtype_failure
 #, python-format
@@ -159,6 +167,7 @@ msgid "Database backup failed."
 msgstr ""
 
 #. module: auto_backup
+#. odoo-python
 #: code:addons/auto_backup/models/db_backup.py:0
 #: model:mail.message.subtype,description:auto_backup.mail_message_subtype_success
 #, python-format
@@ -176,6 +185,7 @@ msgid "Display Name"
 msgstr "Tên hiển thị"
 
 #. module: auto_backup
+#. odoo-python
 #: code:addons/auto_backup/models/db_backup.py:0
 #, python-format
 msgid ""
@@ -234,7 +244,6 @@ msgstr "ID"
 
 #. module: auto_backup
 #: model:ir.model.fields,help:auto_backup.field_db_backup__message_needaction
-#: model:ir.model.fields,help:auto_backup.field_db_backup__message_unread
 msgid "If checked, new messages require your attention."
 msgstr ""
 
@@ -306,7 +315,7 @@ msgstr ""
 
 #. module: auto_backup
 #: model:ir.model.fields,help:auto_backup.field_db_backup__message_needaction_counter
-msgid "Number of messages which requires an action"
+msgid "Number of messages requiring action"
 msgstr ""
 
 #. module: auto_backup
@@ -314,11 +323,6 @@ msgstr ""
 msgid "Number of messages with delivery error"
 msgstr ""
 
-#. module: auto_backup
-#: model:ir.model.fields,help:auto_backup.field_db_backup__message_unread_counter
-msgid "Number of unread messages"
-msgstr ""
-
 #. module: auto_backup
 #: model:ir.model.fields,help:auto_backup.field_db_backup__sftp_private_key
 msgid ""
@@ -372,6 +376,11 @@ msgid ""
 "Set the scheduler to active and fill in how often you want backups generated."
 msgstr ""
 
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__smart_search
+msgid "Smart Search"
+msgstr ""
+
 #. module: auto_backup
 #: model:ir.model.fields,help:auto_backup.field_db_backup__name
 msgid "Summary of this backup process"
@@ -388,6 +397,21 @@ msgid ""
 "The host name or IP address from your remote server. For example 192.168.0.1"
 msgstr ""
 
+#. module: auto_backup
+#: model:ir.model.fields,help:auto_backup.field_db_backup__count_pending_changeset_changes
+msgid "The number of pending changes of this record"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,help:auto_backup.field_db_backup__count_pending_changesets
+msgid "The number of pending changesets of this record"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,help:auto_backup.field_db_backup__count_changesets
+msgid "The overall number of changesets of this record"
+msgstr ""
+
 #. module: auto_backup
 #: model:ir.model.fields,help:auto_backup.field_db_backup__sftp_password
 msgid ""
@@ -407,16 +431,6 @@ msgid ""
 "on the external server."
 msgstr ""
 
-#. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup__message_unread
-msgid "Unread Messages"
-msgstr ""
-
-#. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup__message_unread_counter
-msgid "Unread Messages Counter"
-msgstr ""
-
 #. module: auto_backup
 #: model_terms:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
 msgid ""
diff --git a/auto_backup/i18n/vi_VN.po b/auto_backup/i18n/vi_VN.po
index e62cd5d34a5..eb4e251c3bd 100644
--- a/auto_backup/i18n/vi_VN.po
+++ b/auto_backup/i18n/vi_VN.po
@@ -63,7 +63,6 @@ msgstr ""
 #. module: auto_backup
 #: model:ir.actions.server,name:auto_backup.ir_cron_backup_scheduler_0_ir_actions_server
 #: model:ir.cron,cron_name:auto_backup.ir_cron_backup_scheduler_0
-#: model:ir.cron,name:auto_backup.ir_cron_backup_scheduler_0
 msgid "Backup Scheduler"
 msgstr ""
 
@@ -110,23 +109,31 @@ msgid "Choose the storage method for this backup."
 msgstr ""
 
 #. module: auto_backup
+#. odoo-python
 #: code:addons/auto_backup/models/db_backup.py:0
 #, python-format
 msgid "Cleanup of old database backups failed."
 msgstr ""
 
 #. module: auto_backup
+#. odoo-python
 #: code:addons/auto_backup/models/db_backup.py:0
 #, python-format
 msgid "Connection Test Failed!"
 msgstr ""
 
 #. module: auto_backup
+#. odoo-python
 #: code:addons/auto_backup/models/db_backup.py:0
 #, python-format
 msgid "Connection Test Succeeded!"
 msgstr ""
 
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__count_changesets
+msgid "Count Changesets"
+msgstr ""
+
 #. module: auto_backup
 #: model:ir.model.fields,field_description:auto_backup.field_db_backup__count_pending_changeset_changes
 msgid "Count Pending Changeset Changes"
@@ -153,6 +160,7 @@ msgid "Database Backup"
 msgstr ""
 
 #. module: auto_backup
+#. odoo-python
 #: code:addons/auto_backup/models/db_backup.py:0
 #: model:mail.message.subtype,description:auto_backup.mail_message_subtype_failure
 #, python-format
@@ -160,6 +168,7 @@ msgid "Database backup failed."
 msgstr ""
 
 #. module: auto_backup
+#. odoo-python
 #: code:addons/auto_backup/models/db_backup.py:0
 #: model:mail.message.subtype,description:auto_backup.mail_message_subtype_success
 #, python-format
@@ -177,6 +186,7 @@ msgid "Display Name"
 msgstr ""
 
 #. module: auto_backup
+#. odoo-python
 #: code:addons/auto_backup/models/db_backup.py:0
 #, python-format
 msgid ""
@@ -235,7 +245,6 @@ msgstr "ID"
 
 #. module: auto_backup
 #: model:ir.model.fields,help:auto_backup.field_db_backup__message_needaction
-#: model:ir.model.fields,help:auto_backup.field_db_backup__message_unread
 msgid "If checked, new messages require your attention."
 msgstr ""
 
@@ -307,7 +316,7 @@ msgstr ""
 
 #. module: auto_backup
 #: model:ir.model.fields,help:auto_backup.field_db_backup__message_needaction_counter
-msgid "Number of messages which requires an action"
+msgid "Number of messages requiring action"
 msgstr ""
 
 #. module: auto_backup
@@ -315,11 +324,6 @@ msgstr ""
 msgid "Number of messages with delivery error"
 msgstr ""
 
-#. module: auto_backup
-#: model:ir.model.fields,help:auto_backup.field_db_backup__message_unread_counter
-msgid "Number of unread messages"
-msgstr ""
-
 #. module: auto_backup
 #: model:ir.model.fields,help:auto_backup.field_db_backup__sftp_private_key
 msgid ""
@@ -373,6 +377,11 @@ msgid ""
 "Set the scheduler to active and fill in how often you want backups generated."
 msgstr ""
 
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__smart_search
+msgid "Smart Search"
+msgstr ""
+
 #. module: auto_backup
 #: model:ir.model.fields,help:auto_backup.field_db_backup__name
 msgid "Summary of this backup process"
@@ -389,6 +398,21 @@ msgid ""
 "The host name or IP address from your remote server. For example 192.168.0.1"
 msgstr ""
 
+#. module: auto_backup
+#: model:ir.model.fields,help:auto_backup.field_db_backup__count_pending_changeset_changes
+msgid "The number of pending changes of this record"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,help:auto_backup.field_db_backup__count_pending_changesets
+msgid "The number of pending changesets of this record"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,help:auto_backup.field_db_backup__count_changesets
+msgid "The overall number of changesets of this record"
+msgstr ""
+
 #. module: auto_backup
 #: model:ir.model.fields,help:auto_backup.field_db_backup__sftp_password
 msgid ""
@@ -408,16 +432,6 @@ msgid ""
 "on the external server."
 msgstr ""
 
-#. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup__message_unread
-msgid "Unread Messages"
-msgstr ""
-
-#. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup__message_unread_counter
-msgid "Unread Messages Counter"
-msgstr ""
-
 #. module: auto_backup
 #: model_terms:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
 msgid ""
diff --git a/auto_backup/i18n/zh_CN.po b/auto_backup/i18n/zh_CN.po
index cdb7b1c6987..55f11c1370d 100644
--- a/auto_backup/i18n/zh_CN.po
+++ b/auto_backup/i18n/zh_CN.po
@@ -64,7 +64,6 @@ msgstr "备份格式"
 #. module: auto_backup
 #: model:ir.actions.server,name:auto_backup.ir_cron_backup_scheduler_0_ir_actions_server
 #: model:ir.cron,cron_name:auto_backup.ir_cron_backup_scheduler_0
-#: model:ir.cron,name:auto_backup.ir_cron_backup_scheduler_0
 msgid "Backup Scheduler"
 msgstr "备份计划"
 
@@ -111,23 +110,31 @@ msgid "Choose the storage method for this backup."
 msgstr "选择这个备份的存储方法."
 
 #. module: auto_backup
+#. odoo-python
 #: code:addons/auto_backup/models/db_backup.py:0
 #, python-format
 msgid "Cleanup of old database backups failed."
 msgstr "清除旧数据库备份失败."
 
 #. module: auto_backup
+#. odoo-python
 #: code:addons/auto_backup/models/db_backup.py:0
 #, python-format
 msgid "Connection Test Failed!"
 msgstr "连接测试失败!"
 
 #. module: auto_backup
+#. odoo-python
 #: code:addons/auto_backup/models/db_backup.py:0
 #, python-format
 msgid "Connection Test Succeeded!"
 msgstr "连接测试成功!"
 
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__count_changesets
+msgid "Count Changesets"
+msgstr ""
+
 #. module: auto_backup
 #: model:ir.model.fields,field_description:auto_backup.field_db_backup__count_pending_changeset_changes
 msgid "Count Pending Changeset Changes"
@@ -154,6 +161,7 @@ msgid "Database Backup"
 msgstr "数据库备份"
 
 #. module: auto_backup
+#. odoo-python
 #: code:addons/auto_backup/models/db_backup.py:0
 #: model:mail.message.subtype,description:auto_backup.mail_message_subtype_failure
 #, python-format
@@ -161,6 +169,7 @@ msgid "Database backup failed."
 msgstr "数据库备份失败。"
 
 #. module: auto_backup
+#. odoo-python
 #: code:addons/auto_backup/models/db_backup.py:0
 #: model:mail.message.subtype,description:auto_backup.mail_message_subtype_success
 #, python-format
@@ -178,6 +187,7 @@ msgid "Display Name"
 msgstr "显示名称"
 
 #. module: auto_backup
+#. odoo-python
 #: code:addons/auto_backup/models/db_backup.py:0
 #, python-format
 msgid ""
@@ -236,7 +246,6 @@ msgstr "ID"
 
 #. module: auto_backup
 #: model:ir.model.fields,help:auto_backup.field_db_backup__message_needaction
-#: model:ir.model.fields,help:auto_backup.field_db_backup__message_unread
 msgid "If checked, new messages require your attention."
 msgstr "如果勾选此项,则需要注意新消息。"
 
@@ -308,19 +317,14 @@ msgstr ""
 
 #. module: auto_backup
 #: model:ir.model.fields,help:auto_backup.field_db_backup__message_needaction_counter
-msgid "Number of messages which requires an action"
-msgstr "需要操作的消息数量"
+msgid "Number of messages requiring action"
+msgstr ""
 
 #. module: auto_backup
 #: model:ir.model.fields,help:auto_backup.field_db_backup__message_has_error_counter
 msgid "Number of messages with delivery error"
 msgstr "发送错误的消息数量"
 
-#. module: auto_backup
-#: model:ir.model.fields,help:auto_backup.field_db_backup__message_unread_counter
-msgid "Number of unread messages"
-msgstr "未读消息的数量"
-
 #. module: auto_backup
 #: model:ir.model.fields,help:auto_backup.field_db_backup__sftp_private_key
 msgid ""
@@ -376,6 +380,11 @@ msgstr ""
 "将安排的动作设置为活动状态,并填写备份间隔时间,间隔时间单位,间隔次数,执行"
 "时间等数据库具体备份方案。"
 
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__smart_search
+msgid "Smart Search"
+msgstr ""
+
 #. module: auto_backup
 #: model:ir.model.fields,help:auto_backup.field_db_backup__name
 msgid "Summary of this backup process"
@@ -392,6 +401,21 @@ msgid ""
 "The host name or IP address from your remote server. For example 192.168.0.1"
 msgstr "远程服务器的主机名或IP地址。例如192.168.0.1"
 
+#. module: auto_backup
+#: model:ir.model.fields,help:auto_backup.field_db_backup__count_pending_changeset_changes
+msgid "The number of pending changes of this record"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,help:auto_backup.field_db_backup__count_pending_changesets
+msgid "The number of pending changesets of this record"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,help:auto_backup.field_db_backup__count_changesets
+msgid "The overall number of changesets of this record"
+msgstr ""
+
 #. module: auto_backup
 #: model:ir.model.fields,help:auto_backup.field_db_backup__sftp_password
 msgid ""
@@ -411,16 +435,6 @@ msgid ""
 "on the external server."
 msgstr "SFTP 连接使用该用户名。这是在SFTP服务器上的用户。"
 
-#. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup__message_unread
-msgid "Unread Messages"
-msgstr "未读消息"
-
-#. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup__message_unread_counter
-msgid "Unread Messages Counter"
-msgstr "未读消息计数器"
-
 #. module: auto_backup
 #: model_terms:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
 msgid ""
@@ -475,6 +489,18 @@ msgstr "sftp.example.com"
 msgid "zip (includes filestore)"
 msgstr "zip(包括文件存储)"
 
+#~ msgid "Number of messages which requires an action"
+#~ msgstr "需要操作的消息数量"
+
+#~ msgid "Number of unread messages"
+#~ msgstr "未读消息的数量"
+
+#~ msgid "Unread Messages"
+#~ msgstr "未读消息"
+
+#~ msgid "Unread Messages Counter"
+#~ msgstr "未读消息计数器"
+
 #~ msgid "Followers (Channels)"
 #~ msgstr "关注者(频道)"
 
diff --git a/auto_backup/i18n/zh_TW.po b/auto_backup/i18n/zh_TW.po
index 450ccfe3c6b..2ffada65d14 100644
--- a/auto_backup/i18n/zh_TW.po
+++ b/auto_backup/i18n/zh_TW.po
@@ -63,7 +63,6 @@ msgstr ""
 #. module: auto_backup
 #: model:ir.actions.server,name:auto_backup.ir_cron_backup_scheduler_0_ir_actions_server
 #: model:ir.cron,cron_name:auto_backup.ir_cron_backup_scheduler_0
-#: model:ir.cron,name:auto_backup.ir_cron_backup_scheduler_0
 msgid "Backup Scheduler"
 msgstr ""
 
@@ -110,23 +109,31 @@ msgid "Choose the storage method for this backup."
 msgstr ""
 
 #. module: auto_backup
+#. odoo-python
 #: code:addons/auto_backup/models/db_backup.py:0
 #, python-format
 msgid "Cleanup of old database backups failed."
 msgstr ""
 
 #. module: auto_backup
+#. odoo-python
 #: code:addons/auto_backup/models/db_backup.py:0
 #, python-format
 msgid "Connection Test Failed!"
 msgstr ""
 
 #. module: auto_backup
+#. odoo-python
 #: code:addons/auto_backup/models/db_backup.py:0
 #, python-format
 msgid "Connection Test Succeeded!"
 msgstr ""
 
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__count_changesets
+msgid "Count Changesets"
+msgstr ""
+
 #. module: auto_backup
 #: model:ir.model.fields,field_description:auto_backup.field_db_backup__count_pending_changeset_changes
 msgid "Count Pending Changeset Changes"
@@ -153,6 +160,7 @@ msgid "Database Backup"
 msgstr ""
 
 #. module: auto_backup
+#. odoo-python
 #: code:addons/auto_backup/models/db_backup.py:0
 #: model:mail.message.subtype,description:auto_backup.mail_message_subtype_failure
 #, python-format
@@ -160,6 +168,7 @@ msgid "Database backup failed."
 msgstr ""
 
 #. module: auto_backup
+#. odoo-python
 #: code:addons/auto_backup/models/db_backup.py:0
 #: model:mail.message.subtype,description:auto_backup.mail_message_subtype_success
 #, python-format
@@ -177,6 +186,7 @@ msgid "Display Name"
 msgstr "顯示名稱"
 
 #. module: auto_backup
+#. odoo-python
 #: code:addons/auto_backup/models/db_backup.py:0
 #, python-format
 msgid ""
@@ -235,7 +245,6 @@ msgstr "ID"
 
 #. module: auto_backup
 #: model:ir.model.fields,help:auto_backup.field_db_backup__message_needaction
-#: model:ir.model.fields,help:auto_backup.field_db_backup__message_unread
 msgid "If checked, new messages require your attention."
 msgstr ""
 
@@ -307,7 +316,7 @@ msgstr ""
 
 #. module: auto_backup
 #: model:ir.model.fields,help:auto_backup.field_db_backup__message_needaction_counter
-msgid "Number of messages which requires an action"
+msgid "Number of messages requiring action"
 msgstr ""
 
 #. module: auto_backup
@@ -315,11 +324,6 @@ msgstr ""
 msgid "Number of messages with delivery error"
 msgstr ""
 
-#. module: auto_backup
-#: model:ir.model.fields,help:auto_backup.field_db_backup__message_unread_counter
-msgid "Number of unread messages"
-msgstr ""
-
 #. module: auto_backup
 #: model:ir.model.fields,help:auto_backup.field_db_backup__sftp_private_key
 msgid ""
@@ -373,6 +377,11 @@ msgid ""
 "Set the scheduler to active and fill in how often you want backups generated."
 msgstr ""
 
+#. module: auto_backup
+#: model:ir.model.fields,field_description:auto_backup.field_db_backup__smart_search
+msgid "Smart Search"
+msgstr ""
+
 #. module: auto_backup
 #: model:ir.model.fields,help:auto_backup.field_db_backup__name
 msgid "Summary of this backup process"
@@ -389,6 +398,21 @@ msgid ""
 "The host name or IP address from your remote server. For example 192.168.0.1"
 msgstr ""
 
+#. module: auto_backup
+#: model:ir.model.fields,help:auto_backup.field_db_backup__count_pending_changeset_changes
+msgid "The number of pending changes of this record"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,help:auto_backup.field_db_backup__count_pending_changesets
+msgid "The number of pending changesets of this record"
+msgstr ""
+
+#. module: auto_backup
+#: model:ir.model.fields,help:auto_backup.field_db_backup__count_changesets
+msgid "The overall number of changesets of this record"
+msgstr ""
+
 #. module: auto_backup
 #: model:ir.model.fields,help:auto_backup.field_db_backup__sftp_password
 msgid ""
@@ -408,16 +432,6 @@ msgid ""
 "on the external server."
 msgstr ""
 
-#. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup__message_unread
-msgid "Unread Messages"
-msgstr ""
-
-#. module: auto_backup
-#: model:ir.model.fields,field_description:auto_backup.field_db_backup__message_unread_counter
-msgid "Unread Messages Counter"
-msgstr ""
-
 #. module: auto_backup
 #: model_terms:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
 msgid ""

From 798ad05e86807e000ecd83e1a26d7ee9ad8f9d5d Mon Sep 17 00:00:00 2001
From: mymage <stefano.consolaro@mymage.it>
Date: Tue, 28 May 2024 07:19:54 +0000
Subject: [PATCH 49/52] Translated using Weblate (Italian)

Currently translated at 100.0% (87 of 87 strings)

Translation: server-tools-16.0/server-tools-16.0-auto_backup
Translate-URL: https://translation.odoo-community.org/projects/server-tools-16-0/server-tools-16-0-auto_backup/it/
---
 auto_backup/i18n/it.po | 14 +++++++-------
 1 file changed, 7 insertions(+), 7 deletions(-)

diff --git a/auto_backup/i18n/it.po b/auto_backup/i18n/it.po
index d4367cd35ff..4abe907b915 100644
--- a/auto_backup/i18n/it.po
+++ b/auto_backup/i18n/it.po
@@ -9,7 +9,7 @@ msgstr ""
 "Project-Id-Version: Odoo Server 11.0\n"
 "Report-Msgid-Bugs-To: \n"
 "POT-Creation-Date: 2018-03-03 10:08+0000\n"
-"PO-Revision-Date: 2024-01-22 10:42+0000\n"
+"PO-Revision-Date: 2024-05-28 09:34+0000\n"
 "Last-Translator: mymage <stefano.consolaro@mymage.it>\n"
 "Language-Team: Italian (https://www.transifex.com/oca/teams/23907/it/)\n"
 "Language: it\n"
@@ -134,7 +134,7 @@ msgstr "Test connessione avvenuto con successo!"
 #. module: auto_backup
 #: model:ir.model.fields,field_description:auto_backup.field_db_backup__count_changesets
 msgid "Count Changesets"
-msgstr ""
+msgstr "Conteggio insieme di modifiche"
 
 #. module: auto_backup
 #: model:ir.model.fields,field_description:auto_backup.field_db_backup__count_pending_changeset_changes
@@ -323,7 +323,7 @@ msgstr "Numero di errori"
 #. module: auto_backup
 #: model:ir.model.fields,help:auto_backup.field_db_backup__message_needaction_counter
 msgid "Number of messages requiring action"
-msgstr ""
+msgstr "Numero di messaggi che richiedono un'azione"
 
 #. module: auto_backup
 #: model:ir.model.fields,help:auto_backup.field_db_backup__message_has_error_counter
@@ -411,17 +411,17 @@ msgstr "Nome host o indirizzo IP del server remoto. Per esempio 192.168.0.1"
 #. module: auto_backup
 #: model:ir.model.fields,help:auto_backup.field_db_backup__count_pending_changeset_changes
 msgid "The number of pending changes of this record"
-msgstr ""
+msgstr "Numero di modifiche di questo record in attesa"
 
 #. module: auto_backup
 #: model:ir.model.fields,help:auto_backup.field_db_backup__count_pending_changesets
 msgid "The number of pending changesets of this record"
-msgstr ""
+msgstr "Numero di insieme di modifiche di questo record in attesa"
 
 #. module: auto_backup
 #: model:ir.model.fields,help:auto_backup.field_db_backup__count_changesets
 msgid "The overall number of changesets of this record"
-msgstr ""
+msgstr "Il numero totale di insieme di modifiche di questo record"
 
 #. module: auto_backup
 #: model:ir.model.fields,help:auto_backup.field_db_backup__sftp_password
@@ -458,7 +458,7 @@ msgstr ""
 #. module: auto_backup
 #: model:ir.model.fields,field_description:auto_backup.field_db_backup__user_can_see_changeset
 msgid "User Can See Changeset"
-msgstr "L'utente pò vedere l'insieme delle modifiche"
+msgstr "L'utente può vedere l'insieme delle modifiche"
 
 #. module: auto_backup
 #: model:ir.model.fields,field_description:auto_backup.field_db_backup__sftp_user

From 5d01d2fc95693c3cbfac5045914b7d88eeec3631 Mon Sep 17 00:00:00 2001
From: Rodrigo Macedo
 <sottomaiormacedotec@users.noreply.translation.odoo-community.org>
Date: Wed, 29 May 2024 14:12:47 +0000
Subject: [PATCH 50/52] Translated using Weblate (Portuguese (Brazil))

Currently translated at 20.6% (18 of 87 strings)

Translation: server-tools-16.0/server-tools-16.0-auto_backup
Translate-URL: https://translation.odoo-community.org/projects/server-tools-16-0/server-tools-16-0-auto_backup/pt_BR/
---
 auto_backup/i18n/pt_BR.po | 20 ++++++++++----------
 1 file changed, 10 insertions(+), 10 deletions(-)

diff --git a/auto_backup/i18n/pt_BR.po b/auto_backup/i18n/pt_BR.po
index 23d441f84c8..955fbfaac23 100644
--- a/auto_backup/i18n/pt_BR.po
+++ b/auto_backup/i18n/pt_BR.po
@@ -9,16 +9,17 @@ msgstr ""
 "Project-Id-Version: Odoo Server 10.0\n"
 "Report-Msgid-Bugs-To: \n"
 "POT-Creation-Date: 2016-12-08 03:36+0000\n"
-"PO-Revision-Date: 2019-08-30 17:04+0000\n"
-"Last-Translator: Rodrigo Macedo <rmsolucoeseminformatic4@gmail.com>\n"
-"Language-Team: Portuguese (Brazil) (https://www.transifex.com/oca/"
-"teams/23907/pt_BR/)\n"
+"PO-Revision-Date: 2024-05-29 16:35+0000\n"
+"Last-Translator: Rodrigo Macedo <sottomaiormacedotec@users.noreply."
+"translation.odoo-community.org>\n"
+"Language-Team: Portuguese (Brazil) (https://www.transifex.com/oca/teams/"
+"23907/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"
-"X-Generator: Weblate 3.8\n"
+"X-Generator: Weblate 4.17\n"
 
 #. module: auto_backup
 #: model_terms:ir.ui.view,arch_db:auto_backup.view_backup_conf_form
@@ -92,18 +93,17 @@ msgstr ""
 #. module: auto_backup
 #: model:ir.model.fields,field_description:auto_backup.field_db_backup__changeset_change_ids
 msgid "Changeset Changes"
-msgstr ""
+msgstr "Mudanças no conjunto de alterações"
 
 #. module: auto_backup
 #: model:ir.model.fields,field_description:auto_backup.field_db_backup__changeset_ids
 msgid "Changesets"
-msgstr ""
+msgstr "Conjunto de alterações"
 
 #. module: auto_backup
 #: model:ir.model.fields,help:auto_backup.field_db_backup__backup_format
-#, fuzzy
 msgid "Choose the format for this backup."
-msgstr "Caminho absoluto para armazenar os backups"
+msgstr "Caminho absoluto para armazenar os backups."
 
 #. module: auto_backup
 #: model:ir.model.fields,help:auto_backup.field_db_backup__method
@@ -414,7 +414,7 @@ msgstr ""
 #. module: auto_backup
 #: model:ir.model.fields,help:auto_backup.field_db_backup__count_changesets
 msgid "The overall number of changesets of this record"
-msgstr ""
+msgstr "O número total de conjuntos de alterações deste registro"
 
 #. module: auto_backup
 #: model:ir.model.fields,help:auto_backup.field_db_backup__sftp_password

From 829983ab282661c39ae972eaf88ebd5080f5e9d8 Mon Sep 17 00:00:00 2001
From: rpinset <12782314+rpinset@users.noreply.github.com>
Date: Fri, 28 Jun 2024 09:47:16 +0200
Subject: [PATCH 51/52] [IMP] auto_backup: pre-commit auto fixes

---
 auto_backup/README.rst                        | 82 ++++++++++---------
 auto_backup/models/db_backup.py               |  3 +-
 auto_backup/pyproject.toml                    |  3 +
 auto_backup/readme/CONFIGURE.md               |  2 +
 auto_backup/readme/CONFIGURE.rst              |  3 -
 auto_backup/readme/CONTRIBUTORS.md            |  9 ++
 auto_backup/readme/CONTRIBUTORS.rst           |  9 --
 .../{DESCRIPTION.rst => DESCRIPTION.md}       |  0
 auto_backup/readme/INSTALL.md                 |  3 +
 auto_backup/readme/INSTALL.rst                |  3 -
 auto_backup/readme/ROADMAP.md                 |  6 ++
 auto_backup/readme/ROADMAP.rst                |  6 --
 auto_backup/readme/USAGE.md                   | 37 +++++++++
 auto_backup/readme/USAGE.rst                  | 46 -----------
 auto_backup/static/description/index.html     | 38 +++++----
 requirements.txt                              |  2 +
 16 files changed, 125 insertions(+), 127 deletions(-)
 create mode 100644 auto_backup/pyproject.toml
 create mode 100644 auto_backup/readme/CONFIGURE.md
 delete mode 100644 auto_backup/readme/CONFIGURE.rst
 create mode 100644 auto_backup/readme/CONTRIBUTORS.md
 delete mode 100644 auto_backup/readme/CONTRIBUTORS.rst
 rename auto_backup/readme/{DESCRIPTION.rst => DESCRIPTION.md} (100%)
 create mode 100644 auto_backup/readme/INSTALL.md
 delete mode 100644 auto_backup/readme/INSTALL.rst
 create mode 100644 auto_backup/readme/ROADMAP.md
 delete mode 100644 auto_backup/readme/ROADMAP.rst
 create mode 100644 auto_backup/readme/USAGE.md
 delete mode 100644 auto_backup/readme/USAGE.rst

diff --git a/auto_backup/README.rst b/auto_backup/README.rst
index 686e843f0e2..1d54f9efe4c 100644
--- a/auto_backup/README.rst
+++ b/auto_backup/README.rst
@@ -17,13 +17,13 @@ Database Auto-Backup
     :target: http://www.gnu.org/licenses/agpl-3.0-standalone.html
     :alt: License: AGPL-3
 .. |badge3| image:: https://img.shields.io/badge/github-OCA%2Fserver--tools-lightgray.png?logo=github
-    :target: https://github.com/OCA/server-tools/tree/16.0/auto_backup
+    :target: https://github.com/OCA/server-tools/tree/17.0/auto_backup
     :alt: OCA/server-tools
 .. |badge4| image:: https://img.shields.io/badge/weblate-Translate%20me-F47D42.png
-    :target: https://translation.odoo-community.org/projects/server-tools-16-0/server-tools-16-0-auto_backup
+    :target: https://translation.odoo-community.org/projects/server-tools-17-0/server-tools-17-0-auto_backup
     :alt: Translate me on Weblate
 .. |badge5| image:: https://img.shields.io/badge/runboat-Try%20me-875A7B.png
-    :target: https://runboat.odoo-community.org/builds?repo=OCA/server-tools&target_branch=16.0
+    :target: https://runboat.odoo-community.org/builds?repo=OCA/server-tools&target_branch=17.0
     :alt: Try me on Runboat
 
 |badge1| |badge2| |badge3| |badge4| |badge5|
@@ -38,16 +38,17 @@ A tool for all your back-ups, internal and external!
 Installation
 ============
 
-Before installing this module, you need to execute::
+Before installing this module, you need to execute:
 
-    pip3 install pysftp==0.2.9
+::
+
+   pip3 install pysftp==0.2.9
 
 Configuration
 =============
 
-Go to *Settings -> Database Structure -> Automated Backup* to
-create your configurations for each database that you needed
-to backups.
+Go to *Settings -> Database Structure -> Automated Backup* to create
+your configurations for each database that you needed to backups.
 
 Usage
 =====
@@ -58,10 +59,10 @@ through an encrypted tunnel. You can even specify how long local backups
 and external backups should be kept, automatically!
 
 Connect with an FTP Server
-~~~~~~~~~~~~~~~~~~~~~~~~~~
+--------------------------
 
 Keep your data safe, through an SSH tunnel!
--------------------------------------------
+~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
 
 Want to go even further and write your backups to an external server?
 You can with this module! Specify the credentials to the server, specify
@@ -70,10 +71,10 @@ through an SSH (encrypted) tunnel, thanks to pysftp, so your data is
 safe!
 
 Test connection
-~~~~~~~~~~~~~~~
+---------------
 
 Checks your credentials in one click
-------------------------------------
+~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
 
 Want to make sure if the connection details are correct and if Odoo can
 automatically write them to the remote server? Simply click on the ‘Test
@@ -81,33 +82,34 @@ SFTP Connection’ button and you will get message telling you if
 everything is OK, or what is wrong!
 
 E-mail on backup failure
-~~~~~~~~~~~~~~~~~~~~~~~~
+------------------------
 
 Stay informed of problems, automatically!
------------------------------------------
+~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
 
-Do you want to know if the database backup succeeded or failed? Subscribe to
-the corresponding backup setting notification type.
+Do you want to know if the database backup succeeded or failed?
+Subscribe to the corresponding backup setting notification type.
 
 Run backups when you want
-~~~~~~~~~~~~~~~~~~~~~~~~~
+-------------------------
 
 From the backups configuration list, press *More > Execute backup(s)* to
 manually execute the selected processes.
 
-.. image:: https://odoo-community.org/website/image/ir.attachment/5784_f2813bd/datas
-   :alt: Try me on Runbot
+|Try me on Runbot|
+
+.. |Try me on Runbot| image:: https://odoo-community.org/website/image/ir.attachment/5784_f2813bd/datas
    :target: https://runbot.odoo-community.org/runbot/149/11.0
 
 Known issues / Roadmap
 ======================
 
-* On larger databases, it is possible that backups will die due to Odoo server
-  settings. In order to circumvent this without frivolously changing settings,
-  you need to run the backup from outside of the main Odoo instance. How to do
-  this is outlined in `this blog post
-  <https://blog.laslabs.com/2016/10/running-python-scripts-within-odoos-environment/>`_.
-* Backups won't work if list_db=False is configured in the instance.
+- On larger databases, it is possible that backups will die due to Odoo
+  server settings. In order to circumvent this without frivolously
+  changing settings, you need to run the backup from outside of the main
+  Odoo instance. How to do this is outlined in `this blog
+  post <https://blog.laslabs.com/2016/10/running-python-scripts-within-odoos-environment/>`__.
+- Backups won't work if list_db=False is configured in the instance.
 
 Bug Tracker
 ===========
@@ -115,7 +117,7 @@ Bug Tracker
 Bugs are tracked on `GitHub Issues <https://github.com/OCA/server-tools/issues>`_.
 In case of trouble, please check there if your issue has already been reported.
 If you spotted it first, help us to smash it by providing a detailed and welcomed
-`feedback <https://github.com/OCA/server-tools/issues/new?body=module:%20auto_backup%0Aversion:%2016.0%0A%0A**Steps%20to%20reproduce**%0A-%20...%0A%0A**Current%20behavior**%0A%0A**Expected%20behavior**>`_.
+`feedback <https://github.com/OCA/server-tools/issues/new?body=module:%20auto_backup%0Aversion:%2017.0%0A%0A**Steps%20to%20reproduce**%0A-%20...%0A%0A**Current%20behavior**%0A%0A**Expected%20behavior**>`_.
 
 Do not contact contributors directly about support or help with technical issues.
 
@@ -123,7 +125,7 @@ Credits
 =======
 
 Authors
-~~~~~~~
+-------
 
 * Yenthe Van Ginneken
 * Agile Business Group
@@ -132,20 +134,20 @@ Authors
 * AdaptiveCity
 
 Contributors
-~~~~~~~~~~~~
-
-* Yenthe Van Ginneken <yenthe.vanginneken@vanroey.be>
-* Alessio Gerace <alessio.gerace@agilebg.com>
-* Jairo Llopis <yajo.sk8@gmail.com>
-* Dave Lasley <dave@laslabs.com>
-* Andrea Stirpe <a.stirpe@onestein.nl>
-* Aitor Bouzas <aitor.bouzas@adaptivecity.com>
-* Simone Vanin <simone.vanin@agilebg.com>
-* Vu Nguyen Anh <vuna2004@gmail.com>
-* Alex Comba <alex.comba@agilebg.com>
+------------
+
+- Yenthe Van Ginneken <yenthe.vanginneken@vanroey.be>
+- Alessio Gerace <alessio.gerace@agilebg.com>
+- Jairo Llopis <yajo.sk8@gmail.com>
+- Dave Lasley <dave@laslabs.com>
+- Andrea Stirpe <a.stirpe@onestein.nl>
+- Aitor Bouzas <aitor.bouzas@adaptivecity.com>
+- Simone Vanin <simone.vanin@agilebg.com>
+- Vu Nguyen Anh <vuna2004@gmail.com>
+- Alex Comba <alex.comba@agilebg.com>
 
 Maintainers
-~~~~~~~~~~~
+-----------
 
 This module is maintained by the OCA.
 
@@ -157,6 +159,6 @@ OCA, or the Odoo Community Association, is a nonprofit organization whose
 mission is to support the collaborative development of Odoo features and
 promote its widespread use.
 
-This module is part of the `OCA/server-tools <https://github.com/OCA/server-tools/tree/16.0/auto_backup>`_ project on GitHub.
+This module is part of the `OCA/server-tools <https://github.com/OCA/server-tools/tree/17.0/auto_backup>`_ project on GitHub.
 
 You are welcome to contribute. To learn how please visit https://odoo-community.org/page/Contribute.
diff --git a/auto_backup/models/db_backup.py b/auto_backup/models/db_backup.py
index b8625ceb323..18b7857a04a 100644
--- a/auto_backup/models/db_backup.py
+++ b/auto_backup/models/db_backup.py
@@ -177,7 +177,6 @@ def action_backup(self):
             for rec in sftp:
                 filename = self.filename(datetime.now(), ext=rec.backup_format)
                 with rec.backup_log():
-
                     cached = db.dump_db(
                         self.env.cr.dbname, None, backup_format=rec.backup_format
                     )
@@ -250,7 +249,7 @@ def cleanup(self):
                                 name.endswith(".%s" % file_extension)
                                 and os.path.basename(name) < oldest
                             ):
-                                remote.unlink("{}/{}".format(rec.folder, name))
+                                remote.unlink(f"{rec.folder}/{name}")
 
     @contextmanager
     def cleanup_log(self):
diff --git a/auto_backup/pyproject.toml b/auto_backup/pyproject.toml
new file mode 100644
index 00000000000..4231d0cccb3
--- /dev/null
+++ b/auto_backup/pyproject.toml
@@ -0,0 +1,3 @@
+[build-system]
+requires = ["whool"]
+build-backend = "whool.buildapi"
diff --git a/auto_backup/readme/CONFIGURE.md b/auto_backup/readme/CONFIGURE.md
new file mode 100644
index 00000000000..d8d33311203
--- /dev/null
+++ b/auto_backup/readme/CONFIGURE.md
@@ -0,0 +1,2 @@
+Go to *Settings -\> Database Structure -\> Automated Backup* to create
+your configurations for each database that you needed to backups.
diff --git a/auto_backup/readme/CONFIGURE.rst b/auto_backup/readme/CONFIGURE.rst
deleted file mode 100644
index 406e814877b..00000000000
--- a/auto_backup/readme/CONFIGURE.rst
+++ /dev/null
@@ -1,3 +0,0 @@
-Go to *Settings -> Database Structure -> Automated Backup* to
-create your configurations for each database that you needed
-to backups.
diff --git a/auto_backup/readme/CONTRIBUTORS.md b/auto_backup/readme/CONTRIBUTORS.md
new file mode 100644
index 00000000000..09b20557dd3
--- /dev/null
+++ b/auto_backup/readme/CONTRIBUTORS.md
@@ -0,0 +1,9 @@
+- Yenthe Van Ginneken \<<yenthe.vanginneken@vanroey.be>\>
+- Alessio Gerace \<<alessio.gerace@agilebg.com>\>
+- Jairo Llopis \<<yajo.sk8@gmail.com>\>
+- Dave Lasley \<<dave@laslabs.com>\>
+- Andrea Stirpe \<<a.stirpe@onestein.nl>\>
+- Aitor Bouzas \<<aitor.bouzas@adaptivecity.com>\>
+- Simone Vanin \<<simone.vanin@agilebg.com>\>
+- Vu Nguyen Anh \<<vuna2004@gmail.com>\>
+- Alex Comba \<<alex.comba@agilebg.com>\>
diff --git a/auto_backup/readme/CONTRIBUTORS.rst b/auto_backup/readme/CONTRIBUTORS.rst
deleted file mode 100644
index bac3ca7b129..00000000000
--- a/auto_backup/readme/CONTRIBUTORS.rst
+++ /dev/null
@@ -1,9 +0,0 @@
-* Yenthe Van Ginneken <yenthe.vanginneken@vanroey.be>
-* Alessio Gerace <alessio.gerace@agilebg.com>
-* Jairo Llopis <yajo.sk8@gmail.com>
-* Dave Lasley <dave@laslabs.com>
-* Andrea Stirpe <a.stirpe@onestein.nl>
-* Aitor Bouzas <aitor.bouzas@adaptivecity.com>
-* Simone Vanin <simone.vanin@agilebg.com>
-* Vu Nguyen Anh <vuna2004@gmail.com>
-* Alex Comba <alex.comba@agilebg.com>
diff --git a/auto_backup/readme/DESCRIPTION.rst b/auto_backup/readme/DESCRIPTION.md
similarity index 100%
rename from auto_backup/readme/DESCRIPTION.rst
rename to auto_backup/readme/DESCRIPTION.md
diff --git a/auto_backup/readme/INSTALL.md b/auto_backup/readme/INSTALL.md
new file mode 100644
index 00000000000..39c51f6db89
--- /dev/null
+++ b/auto_backup/readme/INSTALL.md
@@ -0,0 +1,3 @@
+Before installing this module, you need to execute:
+
+    pip3 install pysftp==0.2.9
diff --git a/auto_backup/readme/INSTALL.rst b/auto_backup/readme/INSTALL.rst
deleted file mode 100644
index 3093fb989f2..00000000000
--- a/auto_backup/readme/INSTALL.rst
+++ /dev/null
@@ -1,3 +0,0 @@
-Before installing this module, you need to execute::
-
-    pip3 install pysftp==0.2.9
diff --git a/auto_backup/readme/ROADMAP.md b/auto_backup/readme/ROADMAP.md
new file mode 100644
index 00000000000..93e7ad75415
--- /dev/null
+++ b/auto_backup/readme/ROADMAP.md
@@ -0,0 +1,6 @@
+- On larger databases, it is possible that backups will die due to Odoo
+  server settings. In order to circumvent this without frivolously
+  changing settings, you need to run the backup from outside of the main
+  Odoo instance. How to do this is outlined in [this blog
+  post](https://blog.laslabs.com/2016/10/running-python-scripts-within-odoos-environment/).
+- Backups won't work if list_db=False is configured in the instance.
diff --git a/auto_backup/readme/ROADMAP.rst b/auto_backup/readme/ROADMAP.rst
deleted file mode 100644
index e96ef407e25..00000000000
--- a/auto_backup/readme/ROADMAP.rst
+++ /dev/null
@@ -1,6 +0,0 @@
-* On larger databases, it is possible that backups will die due to Odoo server
-  settings. In order to circumvent this without frivolously changing settings,
-  you need to run the backup from outside of the main Odoo instance. How to do
-  this is outlined in `this blog post
-  <https://blog.laslabs.com/2016/10/running-python-scripts-within-odoos-environment/>`_.
-* Backups won't work if list_db=False is configured in the instance.
diff --git a/auto_backup/readme/USAGE.md b/auto_backup/readme/USAGE.md
new file mode 100644
index 00000000000..c314fad9b85
--- /dev/null
+++ b/auto_backup/readme/USAGE.md
@@ -0,0 +1,37 @@
+Keep your Odoo data safe with this module. Take automated back-ups,
+remove them automatically and even write them to an external server
+through an encrypted tunnel. You can even specify how long local backups
+and external backups should be kept, automatically!
+
+## Connect with an FTP Server
+
+### Keep your data safe, through an SSH tunnel!
+
+Want to go even further and write your backups to an external server?
+You can with this module! Specify the credentials to the server, specify
+a path and everything will be backed up automatically. This is done
+through an SSH (encrypted) tunnel, thanks to pysftp, so your data is
+safe!
+
+## Test connection
+
+### Checks your credentials in one click
+
+Want to make sure if the connection details are correct and if Odoo can
+automatically write them to the remote server? Simply click on the ‘Test
+SFTP Connection’ button and you will get message telling you if
+everything is OK, or what is wrong!
+
+## E-mail on backup failure
+
+### Stay informed of problems, automatically!
+
+Do you want to know if the database backup succeeded or failed?
+Subscribe to the corresponding backup setting notification type.
+
+## Run backups when you want
+
+From the backups configuration list, press *More \> Execute backup(s)*
+to manually execute the selected processes.
+
+[![Try me on Runbot](https://odoo-community.org/website/image/ir.attachment/5784_f2813bd/datas)](https://runbot.odoo-community.org/runbot/149/11.0)
diff --git a/auto_backup/readme/USAGE.rst b/auto_backup/readme/USAGE.rst
deleted file mode 100644
index bc3607e22a4..00000000000
--- a/auto_backup/readme/USAGE.rst
+++ /dev/null
@@ -1,46 +0,0 @@
-Keep your Odoo data safe with this module. Take automated back-ups,
-remove them automatically and even write them to an external server
-through an encrypted tunnel. You can even specify how long local backups
-and external backups should be kept, automatically!
-
-Connect with an FTP Server
-~~~~~~~~~~~~~~~~~~~~~~~~~~
-
-Keep your data safe, through an SSH tunnel!
--------------------------------------------
-
-Want to go even further and write your backups to an external server?
-You can with this module! Specify the credentials to the server, specify
-a path and everything will be backed up automatically. This is done
-through an SSH (encrypted) tunnel, thanks to pysftp, so your data is
-safe!
-
-Test connection
-~~~~~~~~~~~~~~~
-
-Checks your credentials in one click
-------------------------------------
-
-Want to make sure if the connection details are correct and if Odoo can
-automatically write them to the remote server? Simply click on the ‘Test
-SFTP Connection’ button and you will get message telling you if
-everything is OK, or what is wrong!
-
-E-mail on backup failure
-~~~~~~~~~~~~~~~~~~~~~~~~
-
-Stay informed of problems, automatically!
------------------------------------------
-
-Do you want to know if the database backup succeeded or failed? Subscribe to
-the corresponding backup setting notification type.
-
-Run backups when you want
-~~~~~~~~~~~~~~~~~~~~~~~~~
-
-From the backups configuration list, press *More > Execute backup(s)* to
-manually execute the selected processes.
-
-.. image:: https://odoo-community.org/website/image/ir.attachment/5784_f2813bd/datas
-   :alt: Try me on Runbot
-   :target: https://runbot.odoo-community.org/runbot/149/11.0
diff --git a/auto_backup/static/description/index.html b/auto_backup/static/description/index.html
index 4e790a8c450..bf9d72b1cc0 100644
--- a/auto_backup/static/description/index.html
+++ b/auto_backup/static/description/index.html
@@ -1,4 +1,3 @@
-<?xml version="1.0" encoding="utf-8"?>
 <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
 <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
 <head>
@@ -9,10 +8,11 @@
 
 /*
 :Author: David Goodger (goodger@python.org)
-:Id: $Id: html4css1.css 8954 2022-01-20 10:10:25Z milde $
+:Id: $Id: html4css1.css 9511 2024-01-13 09:50:07Z milde $
 :Copyright: This stylesheet has been placed in the public domain.
 
 Default cascading style sheet for the HTML output of Docutils.
+Despite the name, some widely supported CSS2 features are used.
 
 See https://docutils.sourceforge.io/docs/howto/html-stylesheets.html for how to
 customize this style sheet.
@@ -275,7 +275,7 @@
   margin-left: 2em ;
   margin-right: 2em }
 
-pre.code .ln { color: grey; } /* line numbers */
+pre.code .ln { color: gray; } /* line numbers */
 pre.code, code { background-color: #eeeeee }
 pre.code .comment, code .comment { color: #5C6576 }
 pre.code .keyword, code .keyword { color: #3B0D06; font-weight: bold }
@@ -301,7 +301,7 @@
 span.pre {
   white-space: pre }
 
-span.problematic {
+span.problematic, pre.problematic {
   color: red }
 
 span.section-subtitle {
@@ -369,7 +369,7 @@ <h1 class="title">Database Auto-Backup</h1>
 !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
 !! source digest: sha256:163fe86803c25bd1647c8a149b89b15db756b9f3551c73e29bc93c5d1d31a2ee
 !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! -->
-<p><a class="reference external image-reference" href="https://odoo-community.org/page/development-status"><img alt="Beta" src="https://img.shields.io/badge/maturity-Beta-yellow.png" /></a> <a class="reference external image-reference" href="http://www.gnu.org/licenses/agpl-3.0-standalone.html"><img alt="License: AGPL-3" src="https://img.shields.io/badge/licence-AGPL--3-blue.png" /></a> <a class="reference external image-reference" href="https://github.com/OCA/server-tools/tree/16.0/auto_backup"><img alt="OCA/server-tools" src="https://img.shields.io/badge/github-OCA%2Fserver--tools-lightgray.png?logo=github" /></a> <a class="reference external image-reference" href="https://translation.odoo-community.org/projects/server-tools-16-0/server-tools-16-0-auto_backup"><img alt="Translate me on Weblate" src="https://img.shields.io/badge/weblate-Translate%20me-F47D42.png" /></a> <a class="reference external image-reference" href="https://runboat.odoo-community.org/builds?repo=OCA/server-tools&amp;target_branch=16.0"><img alt="Try me on Runboat" src="https://img.shields.io/badge/runboat-Try%20me-875A7B.png" /></a></p>
+<p><a class="reference external image-reference" href="https://odoo-community.org/page/development-status"><img alt="Beta" src="https://img.shields.io/badge/maturity-Beta-yellow.png" /></a> <a class="reference external image-reference" href="http://www.gnu.org/licenses/agpl-3.0-standalone.html"><img alt="License: AGPL-3" src="https://img.shields.io/badge/licence-AGPL--3-blue.png" /></a> <a class="reference external image-reference" href="https://github.com/OCA/server-tools/tree/17.0/auto_backup"><img alt="OCA/server-tools" src="https://img.shields.io/badge/github-OCA%2Fserver--tools-lightgray.png?logo=github" /></a> <a class="reference external image-reference" href="https://translation.odoo-community.org/projects/server-tools-17-0/server-tools-17-0-auto_backup"><img alt="Translate me on Weblate" src="https://img.shields.io/badge/weblate-Translate%20me-F47D42.png" /></a> <a class="reference external image-reference" href="https://runboat.odoo-community.org/builds?repo=OCA/server-tools&amp;target_branch=17.0"><img alt="Try me on Runboat" src="https://img.shields.io/badge/runboat-Try%20me-875A7B.png" /></a></p>
 <p>A tool for all your back-ups, internal and external!</p>
 <p><strong>Table of contents</strong></p>
 <div class="contents local topic" id="contents">
@@ -411,9 +411,8 @@ <h1><a class="toc-backref" href="#toc-entry-1">Installation</a></h1>
 </div>
 <div class="section" id="configuration">
 <h1><a class="toc-backref" href="#toc-entry-2">Configuration</a></h1>
-<p>Go to <em>Settings -&gt; Database Structure -&gt; Automated Backup</em> to
-create your configurations for each database that you needed
-to backups.</p>
+<p>Go to <em>Settings -&gt; Database Structure -&gt; Automated Backup</em> to create
+your configurations for each database that you needed to backups.</p>
 </div>
 <div class="section" id="usage">
 <h1><a class="toc-backref" href="#toc-entry-3">Usage</a></h1>
@@ -446,24 +445,25 @@ <h3><a class="toc-backref" href="#toc-entry-7">Checks your credentials in one cl
 <h2><a class="toc-backref" href="#toc-entry-8">E-mail on backup failure</a></h2>
 <div class="section" id="stay-informed-of-problems-automatically">
 <h3><a class="toc-backref" href="#toc-entry-9">Stay informed of problems, automatically!</a></h3>
-<p>Do you want to know if the database backup succeeded or failed? Subscribe to
-the corresponding backup setting notification type.</p>
+<p>Do you want to know if the database backup succeeded or failed?
+Subscribe to the corresponding backup setting notification type.</p>
 </div>
 </div>
 <div class="section" id="run-backups-when-you-want">
 <h2><a class="toc-backref" href="#toc-entry-10">Run backups when you want</a></h2>
 <p>From the backups configuration list, press <em>More &gt; Execute backup(s)</em> to
 manually execute the selected processes.</p>
-<a class="reference external image-reference" href="https://runbot.odoo-community.org/runbot/149/11.0"><img alt="Try me on Runbot" src="https://odoo-community.org/website/image/ir.attachment/5784_f2813bd/datas" /></a>
+<p><a class="reference external image-reference" href="https://runbot.odoo-community.org/runbot/149/11.0"><img alt="Try me on Runbot" src="https://odoo-community.org/website/image/ir.attachment/5784_f2813bd/datas" /></a></p>
 </div>
 </div>
 <div class="section" id="known-issues-roadmap">
 <h1><a class="toc-backref" href="#toc-entry-11">Known issues / Roadmap</a></h1>
 <ul class="simple">
-<li>On larger databases, it is possible that backups will die due to Odoo server
-settings. In order to circumvent this without frivolously changing settings,
-you need to run the backup from outside of the main Odoo instance. How to do
-this is outlined in <a class="reference external" href="https://blog.laslabs.com/2016/10/running-python-scripts-within-odoos-environment/">this blog post</a>.</li>
+<li>On larger databases, it is possible that backups will die due to Odoo
+server settings. In order to circumvent this without frivolously
+changing settings, you need to run the backup from outside of the main
+Odoo instance. How to do this is outlined in <a class="reference external" href="https://blog.laslabs.com/2016/10/running-python-scripts-within-odoos-environment/">this blog
+post</a>.</li>
 <li>Backups won’t work if list_db=False is configured in the instance.</li>
 </ul>
 </div>
@@ -472,7 +472,7 @@ <h1><a class="toc-backref" href="#toc-entry-12">Bug Tracker</a></h1>
 <p>Bugs are tracked on <a class="reference external" href="https://github.com/OCA/server-tools/issues">GitHub Issues</a>.
 In case of trouble, please check there if your issue has already been reported.
 If you spotted it first, help us to smash it by providing a detailed and welcomed
-<a class="reference external" href="https://github.com/OCA/server-tools/issues/new?body=module:%20auto_backup%0Aversion:%2016.0%0A%0A**Steps%20to%20reproduce**%0A-%20...%0A%0A**Current%20behavior**%0A%0A**Expected%20behavior**">feedback</a>.</p>
+<a class="reference external" href="https://github.com/OCA/server-tools/issues/new?body=module:%20auto_backup%0Aversion:%2017.0%0A%0A**Steps%20to%20reproduce**%0A-%20...%0A%0A**Current%20behavior**%0A%0A**Expected%20behavior**">feedback</a>.</p>
 <p>Do not contact contributors directly about support or help with technical issues.</p>
 </div>
 <div class="section" id="credits">
@@ -504,11 +504,13 @@ <h2><a class="toc-backref" href="#toc-entry-15">Contributors</a></h2>
 <div class="section" id="maintainers">
 <h2><a class="toc-backref" href="#toc-entry-16">Maintainers</a></h2>
 <p>This module is maintained by the OCA.</p>
-<a class="reference external image-reference" href="https://odoo-community.org"><img alt="Odoo Community Association" src="https://odoo-community.org/logo.png" /></a>
+<a class="reference external image-reference" href="https://odoo-community.org">
+<img alt="Odoo Community Association" src="https://odoo-community.org/logo.png" />
+</a>
 <p>OCA, or the Odoo Community Association, is a nonprofit organization whose
 mission is to support the collaborative development of Odoo features and
 promote its widespread use.</p>
-<p>This module is part of the <a class="reference external" href="https://github.com/OCA/server-tools/tree/16.0/auto_backup">OCA/server-tools</a> project on GitHub.</p>
+<p>This module is part of the <a class="reference external" href="https://github.com/OCA/server-tools/tree/17.0/auto_backup">OCA/server-tools</a> project on GitHub.</p>
 <p>You are welcome to contribute. To learn how please visit <a class="reference external" href="https://odoo-community.org/page/Contribute">https://odoo-community.org/page/Contribute</a>.</p>
 </div>
 </div>
diff --git a/requirements.txt b/requirements.txt
index 31e37e516f1..5e27deea7e6 100644
--- a/requirements.txt
+++ b/requirements.txt
@@ -1,8 +1,10 @@
 # generated from manifests external_dependencies
 astor
+cryptography
 dataclasses
 mako
 odoorpc
 openupgradelib
 pygount
+pysftp
 sentry_sdk<=1.9.0

From b21cd768fb2a6daebc29a332839528294768dfbe Mon Sep 17 00:00:00 2001
From: rpinset <12782314+rpinset@users.noreply.github.com>
Date: Fri, 28 Jun 2024 10:06:42 +0200
Subject: [PATCH 52/52] [MIG] auto_backup: Migration to 17.0

---
 auto_backup/README.rst                    |  5 +-
 auto_backup/__manifest__.py               |  2 +-
 auto_backup/models/db_backup.py           |  7 +-
 auto_backup/readme/ROADMAP.md             |  4 +-
 auto_backup/static/description/index.html |  3 +-
 auto_backup/tests/test_db_backup.py       | 22 +++---
 auto_backup/view/db_backup_view.xml       | 89 ++++++++++++-----------
 7 files changed, 68 insertions(+), 64 deletions(-)

diff --git a/auto_backup/README.rst b/auto_backup/README.rst
index 1d54f9efe4c..f02f62bf7df 100644
--- a/auto_backup/README.rst
+++ b/auto_backup/README.rst
@@ -107,8 +107,9 @@ Known issues / Roadmap
 - On larger databases, it is possible that backups will die due to Odoo
   server settings. In order to circumvent this without frivolously
   changing settings, you need to run the backup from outside of the main
-  Odoo instance. How to do this is outlined in `this blog
-  post <https://blog.laslabs.com/2016/10/running-python-scripts-within-odoos-environment/>`__.
+  Odoo instance. How to do this (for version 9.0) was outlined in `this
+  blog
+  post <https://web.archive.org/web/20240805225230/https://blog.laslabs.com/2016/10/running-python-scripts-within-odoos-environment/>`__.
 - Backups won't work if list_db=False is configured in the instance.
 
 Bug Tracker
diff --git a/auto_backup/__manifest__.py b/auto_backup/__manifest__.py
index 8c731aa7f81..8bcb2d5cc97 100644
--- a/auto_backup/__manifest__.py
+++ b/auto_backup/__manifest__.py
@@ -6,7 +6,7 @@
 {
     "name": "Database Auto-Backup",
     "summary": "Backups database",
-    "version": "16.0.1.0.0",
+    "version": "17.0.1.0.0",
     "author": "Yenthe Van Ginneken, "
     "Agile Business Group, "
     "Grupo ESOC Ingenieria de Servicios, "
diff --git a/auto_backup/models/db_backup.py b/auto_backup/models/db_backup.py
index 18b7857a04a..13e7bdc5693 100644
--- a/auto_backup/models/db_backup.py
+++ b/auto_backup/models/db_backup.py
@@ -216,8 +216,7 @@ def backup_log(self):
             _logger.exception("Database backup failed: %s", self.name)
             escaped_tb = tools.html_escape(traceback.format_exc())
             self.message_post(  # pylint: disable=translation-required
-                body="<p>%s</p><pre>%s</pre>"
-                % (_("Database backup failed."), escaped_tb),
+                body=f"<p>{_('Database backup failed.')}</p><pre>{escaped_tb}</pre>",
                 subtype_id=self.env.ref("auto_backup.mail_message_subtype_failure").id,
             )
         else:
@@ -264,8 +263,8 @@ def cleanup_log(self):
             _logger.exception("Cleanup of old database backups failed: %s")
             escaped_tb = tools.html_escape(traceback.format_exc())
             self.message_post(  # pylint: disable=translation-required
-                body="<p>%s</p><pre>%s</pre>"
-                % (_("Cleanup of old database backups failed."), escaped_tb),
+                body=f"<p>{_('Cleanup of old database backups failed.')}</p>"
+                f"<pre>{escaped_tb}</pre>",
                 subtype_id=self.env.ref("auto_backup.failure").id,
             )
         else:
diff --git a/auto_backup/readme/ROADMAP.md b/auto_backup/readme/ROADMAP.md
index 93e7ad75415..10304e758c0 100644
--- a/auto_backup/readme/ROADMAP.md
+++ b/auto_backup/readme/ROADMAP.md
@@ -1,6 +1,6 @@
 - On larger databases, it is possible that backups will die due to Odoo
   server settings. In order to circumvent this without frivolously
   changing settings, you need to run the backup from outside of the main
-  Odoo instance. How to do this is outlined in [this blog
-  post](https://blog.laslabs.com/2016/10/running-python-scripts-within-odoos-environment/).
+  Odoo instance. How to do this (for version 9.0) was outlined in [this blog
+  post](https://web.archive.org/web/20240805225230/https://blog.laslabs.com/2016/10/running-python-scripts-within-odoos-environment/).
 - Backups won't work if list_db=False is configured in the instance.
diff --git a/auto_backup/static/description/index.html b/auto_backup/static/description/index.html
index bf9d72b1cc0..f69c95f7139 100644
--- a/auto_backup/static/description/index.html
+++ b/auto_backup/static/description/index.html
@@ -462,7 +462,8 @@ <h1><a class="toc-backref" href="#toc-entry-11">Known issues / Roadmap</a></h1>
 <li>On larger databases, it is possible that backups will die due to Odoo
 server settings. In order to circumvent this without frivolously
 changing settings, you need to run the backup from outside of the main
-Odoo instance. How to do this is outlined in <a class="reference external" href="https://blog.laslabs.com/2016/10/running-python-scripts-within-odoos-environment/">this blog
+Odoo instance. How to do this (for version 9.0) was outlined in <a class="reference external" href="https://web.archive.org/web/20240805225230/https://blog.laslabs.com/2016/10/running-python-scripts-within-odoos-environment/">this
+blog
 post</a>.</li>
 <li>Backups won’t work if list_db=False is configured in the instance.</li>
 </ul>
diff --git a/auto_backup/tests/test_db_backup.py b/auto_backup/tests/test_db_backup.py
index 5c77e725729..b9ebce29589 100644
--- a/auto_backup/tests/test_db_backup.py
+++ b/auto_backup/tests/test_db_backup.py
@@ -12,7 +12,8 @@
 
 from odoo import tools
 from odoo.exceptions import UserError
-from odoo.tests import common
+
+from odoo.addons.base.tests.common import BaseCommon
 
 _logger = logging.getLogger(__name__)
 try:
@@ -27,13 +28,14 @@
 
 class TestConnectionException(pysftp.ConnectionException):
     def __init__(self):
-        super(TestConnectionException, self).__init__("test", "test")
+        super().__init__("test", "test")
 
 
-class TestDbBackup(common.TransactionCase):
-    def setUp(self):
-        super(TestDbBackup, self).setUp()
-        self.Model = self.env["db.backup"]
+class TestDbBackup(BaseCommon):
+    @classmethod
+    def setUpClass(cls):
+        super().setUpClass()
+        cls.Model = cls.env["db.backup"]
 
     @contextmanager
     def mock_assets(self):
@@ -77,13 +79,7 @@ def test_compute_name_sftp(self):
         """It should create proper SFTP URI"""
         rec_id = self.new_record()
         self.assertEqual(
-            "sftp://%(user)s@%(host)s:%(port)s%(folder)s"
-            % {
-                "user": self.vals["sftp_user"],
-                "host": self.vals["sftp_host"],
-                "port": self.vals["sftp_port"],
-                "folder": self.vals["folder"],
-            },
+            f"sftp://{self.vals['sftp_user']}@{self.vals['sftp_host']}:{self.vals['sftp_port']}{self.vals['folder']}",
             rec_id.name,
         )
 
diff --git a/auto_backup/view/db_backup_view.xml b/auto_backup/view/db_backup_view.xml
index d4dc9a95168..6ca645ff118 100644
--- a/auto_backup/view/db_backup_view.xml
+++ b/auto_backup/view/db_backup_view.xml
@@ -12,49 +12,56 @@
                         class="oe_highlight"
                     />
                 </header>
-                <div class="oe_title">
-                    <h1>
-                        <field name="name" />
-                    </h1>
-                </div>
-                <group string="Basic backup configuration">
-                    <field name="folder" />
-                    <field name="days_to_keep" />
-                    <field name="method" />
-                    <field name="backup_format" />
-                </group>
-                <div attrs="{'invisible': [('method', '!=', 'sftp')]}">
-                    <div class="bg-warning">
-                        <h3>Warning:</h3>
-                        Use SFTP with caution! This writes files to external servers under the path you specify.
+                <sheet>
+                    <div class="oe_title">
+                        <h1>
+                            <field name="name" />
+                        </h1>
                     </div>
-                    <group string="SFTP Settings">
-                        <field name="sftp_host" placeholder="sftp.example.com" />
-                        <field name="sftp_port" />
-                        <field name="sftp_user" placeholder="john" />
-                        <field name="sftp_password" />
-                        <field
-                            name="sftp_private_key"
-                            placeholder="/home/odoo/.ssh/id_rsa"
-                        />
-                        <button
-                            name="action_sftp_test_connection"
-                            type="object"
-                            string="Test SFTP Connection"
-                            icon="fa-television"
-                        />
+                    <group string="Basic backup configuration">
+                        <field name="folder" />
+                        <field name="days_to_keep" />
+                        <field name="method" />
+                        <field name="backup_format" />
                     </group>
-                </div>
-                <separator string="Help" colspan="2" />
-                <div>
-                    Automatic backups of the database can be scheduled as follows:
-                    <ol>
-                        <li
-                        >Go to Settings / Technical / Automation / Scheduled Actions.</li>
-                        <li>Search the action named 'Backup scheduler'.</li>
-                        <li
-                        >Set the scheduler to active and fill in how often you want backups generated.</li>
-                    </ol>
+                    <div invisible="method != 'sftp'">
+                        <div class="bg-warning">
+                            <h3>Warning:</h3>
+                            Use SFTP with caution! This writes files to external servers under the path you specify.
+                        </div>
+                        <group string="SFTP Settings">
+                            <field name="sftp_host" placeholder="sftp.example.com" />
+                            <field name="sftp_port" />
+                            <field name="sftp_user" placeholder="john" />
+                            <field name="sftp_password" />
+                            <field
+                                name="sftp_private_key"
+                                placeholder="/home/odoo/.ssh/id_rsa"
+                            />
+                            <button
+                                name="action_sftp_test_connection"
+                                type="object"
+                                string="Test SFTP Connection"
+                                icon="fa-television"
+                            />
+                        </group>
+                    </div>
+                    <separator string="Help" colspan="2" />
+                    <div>
+                        Automatic backups of the database can be scheduled as follows:
+                        <ol>
+                            <li
+                            >Go to Settings / Technical / Automation / Scheduled Actions.</li>
+                            <li>Search the action named 'Backup scheduler'.</li>
+                            <li
+                            >Set the scheduler to active and fill in how often you want backups generated.</li>
+                        </ol>
+                    </div>
+                </sheet>
+                <!-- Chatter -->
+                <div class="oe_chatter">
+                    <field name="message_follower_ids" groups="base.group_user" />
+                    <field name="message_ids" />
                 </div>
             </form>
         </field>