[tryton-debian-vcs] tryton-client branch debian updated. debian/4.6.0-1-2-ge0fb03d

Mathias Behrle tryton-debian-vcs at alioth.debian.org
Wed Dec 13 10:34:46 UTC 2017


The following commit has been merged in the debian branch:
https://alioth.debian.org/plugins/scmgit/cgi-bin/gitweb.cgi/?p=tryton/tryton-client.git;a=commitdiff;h=debian/4.6.0-1-2-ge0fb03d

commit e0fb03d8cffd30b92065be0b2b3f9634bdfdabe0
Author: Mathias Behrle <mathiasb at m9s.biz>
Date:   Tue Dec 12 19:03:12 2017 +0100

    Releasing debian version 4.6.1-1.
    
    Signed-off-by: Mathias Behrle <mathiasb at m9s.biz>

diff --git a/debian/changelog b/debian/changelog
index f8c51e8..2e7659c 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -1,3 +1,9 @@
+tryton-client (4.6.1-1) unstable; urgency=medium
+
+  * Merging upstream version 4.6.1.
+
+ -- Mathias Behrle <mathiasb at m9s.biz>  Tue, 12 Dec 2017 19:03:12 +0100
+
 tryton-client (4.6.0-1) unstable; urgency=medium
 
   * Bump the Standards-Version to 4.1.1, no changes needed.
commit d1c5f7b47d250fb62692ac275bbd46f120f2ce8a
Author: Mathias Behrle <mathiasb at m9s.biz>
Date:   Tue Dec 12 19:03:12 2017 +0100

    Merging upstream version 4.6.1.

diff --git a/CHANGELOG b/CHANGELOG
index 83f381d..2236e47 100644
--- a/CHANGELOG
+++ b/CHANGELOG
@@ -1,3 +1,6 @@
+Version 4.6.1 - 2017-12-04
+* Bug fixes (see mercurial logs for details)
+
 Version 4.6.0 - 2017-10-30
 * Bug fixes (see mercurial logs for details)
 * Allow to export model and record name of Reference fields
diff --git a/PKG-INFO b/PKG-INFO
index 9041852..ea5a7b1 100644
--- a/PKG-INFO
+++ b/PKG-INFO
@@ -1,6 +1,6 @@
 Metadata-Version: 1.1
 Name: tryton
-Version: 4.6.0
+Version: 4.6.1
 Summary: Tryton client
 Home-page: http://www.tryton.org/
 Author: Tryton
diff --git a/bin/tryton b/bin/tryton
index 02f319d..b74168b 100755
--- a/bin/tryton
+++ b/bin/tryton
@@ -23,10 +23,19 @@ if hasattr(sys, 'frozen'):
             etc, 'gtk-2.0', 'gdk-pixbuf.loaders')
     os.environ['GTK_IM_MODULE_FILE'] = os.path.join(
             etc, 'gtk-2.0', 'gtk.immodules')
-    os.environ.setdefault('SSL_CERT_FILE',
-        os.path.join(etc, 'ssl', 'cert.pem'))
-    os.environ.setdefault('SSL_CERT_DIR',
-        os.path.join(etc, 'ssl', 'certs'))
+    if sys.platform == 'win32':
+        # cx_freeze >= 5 put python modules under lib directory
+        sys.path.append(os.path.join(prefix, 'lib'))
+        os.environ.setdefault('SSL_CERT_FILE',
+            os.path.join(etc, 'ssl', 'cert.pem'))
+        os.environ.setdefault('SSL_CERT_DIR',
+            os.path.join(etc, 'ssl', 'certs'))
+
+    # On first launch the MacOSX app launcher may append an extra unique
+    # argument starting with -psn_. This must be filtered to not crash the
+    # option parser.
+    if sys.platform == 'darwin':
+        sys.argv = [a for a in sys.argv if not a.startswith('-psn_')]
 
 
 # Disable dbusmenu to show second menu in tabs
diff --git a/darwin/gtk-2.0/gtk.immodules b/darwin/gtk-2.0/gtk.immodules
index e010446..a37ca90 100644
--- a/darwin/gtk-2.0/gtk.immodules
+++ b/darwin/gtk-2.0/gtk.immodules
@@ -2,7 +2,7 @@
 # Automatically generated file, do not edit
 # Created by gtk-query-immodules-2.0 from gtk+-2.24.30
 #
-# ModulesPath = /Users/ced/.gtk-2.0/2.10.0/x86_64-apple-darwin15.5.0/immodules:/Users/ced/.gtk-2.0/2.10.0/immodules:/Users/ced/.gtk-2.0/x86_64-apple-darwin15.5.0/immodules:/Users/ced/.gtk-2.0/immodules:@executable_path/lib/gtk-2.0/2.10.0/x86_64-apple-darwin15.5.0/immodules:/Users/ced/gtk/inst/lib/gtk-2.0/2.10.0/immodules:/Users/ced/gtk/inst/lib/gtk-2.0/x86_64-apple-darwin15.5.0/immodules:/Users/ced/gtk/inst/lib/gtk-2.0/immodules
+# ModulesPath = @executable_path/lib/gtk-2.0/immodules
 #
 "@executable_path/lib/gtk-2.0/2.10.0/immodules/im-am-et.so" 
 "am_et" "Amharic (EZ+)" "gtk20" "@executable_path/share/locale" "am" 
diff --git a/make-darwin-installer.sh b/make-darwin-installer.sh
index 995ac93..46d7653 100644
--- a/make-darwin-installer.sh
+++ b/make-darwin-installer.sh
@@ -1,5 +1,5 @@
 #!/bin/sh
-
+set -e
 version=`python setup.py --version`
 python setup.py compile_catalog
 python setup-freeze.py bdist_mac
diff --git a/make-win32-installer.sh b/make-win32-installer.sh
index 3c16d69..ff4fe0b 100644
--- a/make-win32-installer.sh
+++ b/make-win32-installer.sh
@@ -1,5 +1,5 @@
 #!/bin/sh
-
+set -e
 version=`python setup.py --version`
 python setup.py compile_catalog
 python setup-freeze.py install_exe -d dist
diff --git a/setup-freeze.py b/setup-freeze.py
index efcbc73..27ba40d 100644
--- a/setup-freeze.py
+++ b/setup-freeze.py
@@ -1,5 +1,6 @@
 import os
 import sys
+import user
 from subprocess import Popen, PIPE
 
 from cx_Freeze import setup, Executable
@@ -52,12 +53,10 @@ setup(name='tryton',
     version=version,
     options={
         'build_exe': {
-            'compressed': False,
+            'no_compress': True,
             'include_files': include_files,
             'silent': True,
             'packages': ['gtk'],
-            'icon': os.path.join(
-                'tryton', 'data', 'pixmaps', 'tryton', 'tryton.ico'),
             'include_msvcr': True,
             },
         'bdist_mac': {
@@ -68,4 +67,7 @@ setup(name='tryton',
         },
     executables=[Executable(
             'bin/tryton',
-            base='Win32GUI' if sys.platform == 'win32' else None)])
+            base='Win32GUI' if sys.platform == 'win32' else None,
+            icon=os.path.join(
+                'tryton', 'data', 'pixmaps', 'tryton', 'tryton.ico'),
+            )])
diff --git a/tryton.egg-info/PKG-INFO b/tryton.egg-info/PKG-INFO
index 9041852..ea5a7b1 100644
--- a/tryton.egg-info/PKG-INFO
+++ b/tryton.egg-info/PKG-INFO
@@ -1,6 +1,6 @@
 Metadata-Version: 1.1
 Name: tryton
-Version: 4.6.0
+Version: 4.6.1
 Summary: Tryton client
 Home-page: http://www.tryton.org/
 Author: Tryton
diff --git a/tryton.egg-info/SOURCES.txt b/tryton.egg-info/SOURCES.txt
index a665bbf..2084c59 100644
--- a/tryton.egg-info/SOURCES.txt
+++ b/tryton.egg-info/SOURCES.txt
@@ -1,4 +1,3 @@
-.hgtags
 CHANGELOG
 COPYRIGHT
 INSTALL
@@ -79,7 +78,6 @@ tryton/common/selection.py
 tryton/common/timedelta.py
 tryton/common/treeviewcontrol.py
 tryton/common/widget_style.py
-tryton/data/locale/tryton.pot
 tryton/data/locale/bg/LC_MESSAGES/tryton.mo
 tryton/data/locale/bg/LC_MESSAGES/tryton.po
 tryton/data/locale/ca/LC_MESSAGES/tryton.mo
@@ -171,8 +169,6 @@ tryton/data/pixmaps/tryton/tryton-text-markup.svg
 tryton/data/pixmaps/tryton/tryton-undo.svg
 tryton/data/pixmaps/tryton/tryton-unstar.svg
 tryton/data/pixmaps/tryton/tryton-web-browser.svg
-tryton/data/pixmaps/tryton/tryton.icns
-tryton/data/pixmaps/tryton/tryton.ico
 tryton/data/pixmaps/tryton/tryton.png
 tryton/gui/__init__.py
 tryton/gui/main.py
diff --git a/tryton/__init__.py b/tryton/__init__.py
index b98ed33..9f32948 100644
--- a/tryton/__init__.py
+++ b/tryton/__init__.py
@@ -1,3 +1,3 @@
 # This file is part of Tryton.  The COPYRIGHT file at the top level of
 # this repository contains the full copyright notices and license terms.
-__version__ = "4.6.0"
+__version__ = "4.6.1"
diff --git a/tryton/common/common.py b/tryton/common/common.py
index 94284cd..9654d62 100644
--- a/tryton/common/common.py
+++ b/tryton/common/common.py
@@ -1054,6 +1054,10 @@ def process_exception(exception, *args, **kwargs):
                 except TrytonServerError, exception:
                     return process_exception(exception, *args,
                         rpc_execute=rpc_execute)
+        else:
+            error(exception.faultCode, exception.faultString)
+    else:
+        error(str(exception), traceback.format_exc())
     raise RPCException(exception)
 
 
@@ -1187,17 +1191,15 @@ class RPCProgress(object):
     def process(self):
         if self.parent and self.parent.get_window():
             self.parent.get_window().set_cursor(None)
-        if self.exception:
-            if self.process_exception_p:
-                def rpc_execute(*args):
-                    return RPCProgress('execute',
-                        args).run(self.process_exception_p, self.callback)
-                return process_exception(self.exception, *self.args,
-                    rpc_execute=rpc_execute)
 
         def return_():
             if self.exception:
-                raise self.exception
+                if self.process_exception_p:
+                    def rpc_execute(*args):
+                        return RPCProgress('execute',
+                            args).run(self.process_exception_p, self.callback)
+                    return process_exception(self.exception, *self.args,
+                        rpc_execute=rpc_execute)
             else:
                 return self.res
 
diff --git a/tryton/data/locale/bg/LC_MESSAGES/tryton.mo b/tryton/data/locale/bg/LC_MESSAGES/tryton.mo
index f76ba64..0d95280 100644
Binary files a/tryton/data/locale/bg/LC_MESSAGES/tryton.mo and b/tryton/data/locale/bg/LC_MESSAGES/tryton.mo differ
diff --git a/tryton/data/locale/ca/LC_MESSAGES/tryton.mo b/tryton/data/locale/ca/LC_MESSAGES/tryton.mo
index 2d6f2ce..77578c9 100644
Binary files a/tryton/data/locale/ca/LC_MESSAGES/tryton.mo and b/tryton/data/locale/ca/LC_MESSAGES/tryton.mo differ
diff --git a/tryton/data/locale/cs/LC_MESSAGES/tryton.mo b/tryton/data/locale/cs/LC_MESSAGES/tryton.mo
index 9d446ab..2d32022 100644
Binary files a/tryton/data/locale/cs/LC_MESSAGES/tryton.mo and b/tryton/data/locale/cs/LC_MESSAGES/tryton.mo differ
diff --git a/tryton/data/locale/de/LC_MESSAGES/tryton.mo b/tryton/data/locale/de/LC_MESSAGES/tryton.mo
index 562ac5f..7b44d27 100644
Binary files a/tryton/data/locale/de/LC_MESSAGES/tryton.mo and b/tryton/data/locale/de/LC_MESSAGES/tryton.mo differ
diff --git a/tryton/data/locale/es/LC_MESSAGES/tryton.mo b/tryton/data/locale/es/LC_MESSAGES/tryton.mo
index 8414e77..93238b5 100644
Binary files a/tryton/data/locale/es/LC_MESSAGES/tryton.mo and b/tryton/data/locale/es/LC_MESSAGES/tryton.mo differ
diff --git a/tryton/data/locale/es_419/LC_MESSAGES/tryton.mo b/tryton/data/locale/es_419/LC_MESSAGES/tryton.mo
index 0db171f..27cecf1 100644
Binary files a/tryton/data/locale/es_419/LC_MESSAGES/tryton.mo and b/tryton/data/locale/es_419/LC_MESSAGES/tryton.mo differ
diff --git a/tryton/data/locale/fr/LC_MESSAGES/tryton.mo b/tryton/data/locale/fr/LC_MESSAGES/tryton.mo
index d0684c5..ed77c68 100644
Binary files a/tryton/data/locale/fr/LC_MESSAGES/tryton.mo and b/tryton/data/locale/fr/LC_MESSAGES/tryton.mo differ
diff --git a/tryton/data/locale/hu_HU/LC_MESSAGES/tryton.mo b/tryton/data/locale/hu_HU/LC_MESSAGES/tryton.mo
index ebbdf94..49bbad2 100644
Binary files a/tryton/data/locale/hu_HU/LC_MESSAGES/tryton.mo and b/tryton/data/locale/hu_HU/LC_MESSAGES/tryton.mo differ
diff --git a/tryton/data/locale/it_IT/LC_MESSAGES/tryton.mo b/tryton/data/locale/it_IT/LC_MESSAGES/tryton.mo
index c1a465d..1a08894 100644
Binary files a/tryton/data/locale/it_IT/LC_MESSAGES/tryton.mo and b/tryton/data/locale/it_IT/LC_MESSAGES/tryton.mo differ
diff --git a/tryton/data/locale/ja_JP/LC_MESSAGES/tryton.mo b/tryton/data/locale/ja_JP/LC_MESSAGES/tryton.mo
index 8725bcd..6418953 100644
Binary files a/tryton/data/locale/ja_JP/LC_MESSAGES/tryton.mo and b/tryton/data/locale/ja_JP/LC_MESSAGES/tryton.mo differ
diff --git a/tryton/data/locale/lo/LC_MESSAGES/tryton.mo b/tryton/data/locale/lo/LC_MESSAGES/tryton.mo
index 768a1c9..7e8756b 100644
Binary files a/tryton/data/locale/lo/LC_MESSAGES/tryton.mo and b/tryton/data/locale/lo/LC_MESSAGES/tryton.mo differ
diff --git a/tryton/data/locale/lt/LC_MESSAGES/tryton.mo b/tryton/data/locale/lt/LC_MESSAGES/tryton.mo
index b5fa584..83c3d57 100644
Binary files a/tryton/data/locale/lt/LC_MESSAGES/tryton.mo and b/tryton/data/locale/lt/LC_MESSAGES/tryton.mo differ
diff --git a/tryton/data/locale/nl/LC_MESSAGES/tryton.mo b/tryton/data/locale/nl/LC_MESSAGES/tryton.mo
index 02e3450..7c56c89 100644
Binary files a/tryton/data/locale/nl/LC_MESSAGES/tryton.mo and b/tryton/data/locale/nl/LC_MESSAGES/tryton.mo differ
diff --git a/tryton/data/locale/pl/LC_MESSAGES/tryton.mo b/tryton/data/locale/pl/LC_MESSAGES/tryton.mo
index 43a720b..06e01eb 100644
Binary files a/tryton/data/locale/pl/LC_MESSAGES/tryton.mo and b/tryton/data/locale/pl/LC_MESSAGES/tryton.mo differ
diff --git a/tryton/data/locale/pt_BR/LC_MESSAGES/tryton.mo b/tryton/data/locale/pt_BR/LC_MESSAGES/tryton.mo
index 448cd77..597810b 100644
Binary files a/tryton/data/locale/pt_BR/LC_MESSAGES/tryton.mo and b/tryton/data/locale/pt_BR/LC_MESSAGES/tryton.mo differ
diff --git a/tryton/data/locale/ru/LC_MESSAGES/tryton.mo b/tryton/data/locale/ru/LC_MESSAGES/tryton.mo
index fafd2fa..03377c4 100644
Binary files a/tryton/data/locale/ru/LC_MESSAGES/tryton.mo and b/tryton/data/locale/ru/LC_MESSAGES/tryton.mo differ
diff --git a/tryton/data/locale/sl/LC_MESSAGES/tryton.mo b/tryton/data/locale/sl/LC_MESSAGES/tryton.mo
index e80ab3a..c4b9b4f 100644
Binary files a/tryton/data/locale/sl/LC_MESSAGES/tryton.mo and b/tryton/data/locale/sl/LC_MESSAGES/tryton.mo differ
diff --git a/tryton/data/locale/tryton.pot b/tryton/data/locale/tryton.pot
deleted file mode 100644
index aabd692..0000000
--- a/tryton/data/locale/tryton.pot
+++ /dev/null
@@ -1,1528 +0,0 @@
-# Translations template for tryton.
-# Copyright (C) 2017 Tryton
-# This file is distributed under the same license as the tryton project.
-# FIRST AUTHOR <EMAIL at ADDRESS>, 2017.
-#
-#, fuzzy
-msgid ""
-msgstr ""
-"Project-Id-Version: tryton 4.5.dev0\n"
-"Report-Msgid-Bugs-To: issue_tracker at tryton.org\n"
-"POT-Creation-Date: 2017-10-09 19:30+0200\n"
-"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
-"Last-Translator: FULL NAME <EMAIL at ADDRESS>\n"
-"Language-Team: LANGUAGE <LL at li.org>\n"
-"MIME-Version: 1.0\n"
-"Content-Type: text/plain; charset=utf-8\n"
-"Content-Transfer-Encoding: 8bit\n"
-"Generated-By: Babel 2.5.0\n"
-
-#: tryton/config.py:70
-msgid "specify alternate config file"
-msgstr ""
-
-#: tryton/config.py:73
-msgid "development mode"
-msgstr ""
-
-#: tryton/config.py:76
-msgid "logging everything at INFO level"
-msgstr ""
-
-#: tryton/config.py:78
-msgid "specify the log level: DEBUG, INFO, WARNING, ERROR, CRITICAL"
-msgstr ""
-
-#: tryton/config.py:81
-msgid "specify the login user"
-msgstr ""
-
-#: tryton/config.py:83
-msgid "specify the server hostname:port"
-msgstr ""
-
-#: tryton/config.py:87
-msgid "Too much arguments"
-msgstr ""
-
-#: tryton/config.py:90
-#, python-format
-msgid "File \"%s\" not found"
-msgstr ""
-
-#: tryton/config.py:128
-#, python-format
-msgid "Unable to write config file %s."
-msgstr ""
-
-#: tryton/translate.py:185
-#, python-format
-msgid "Unable to set locale %s"
-msgstr ""
-
-#: tryton/action/main.py:93 tryton/common/button.py:56
-msgid ", "
-msgstr ""
-
-#: tryton/action/main.py:95
-msgid ",…"
-msgstr ""
-
-#: tryton/action/main.py:96
-#, python-format
-msgid "%s (%s)"
-msgstr ""
-
-#: tryton/action/main.py:191
-msgid "Select your action"
-msgstr ""
-
-#: tryton/action/main.py:197
-msgid "No action defined."
-msgstr ""
-
-#: tryton/common/button.py:56
-msgid "By: "
-msgstr ""
-
-#: tryton/common/common.py:240
-msgid "Tryton Connection"
-msgstr ""
-
-#: tryton/common/common.py:250
-msgid "Server:"
-msgstr ""
-
-#: tryton/common/common.py:268
-msgid "Port:"
-msgstr ""
-
-#: tryton/common/common.py:340 tryton/gui/window/shortcuts.py:56
-msgid "Selection"
-msgstr ""
-
-#: tryton/common/common.py:348
-msgid "Your selection:"
-msgstr ""
-
-#: tryton/common/common.py:471
-#: tryton/gui/window/view_form/view/form_gtk/binary.py:35
-#: tryton/gui/window/view_form/view/form_gtk/binary.py:121
-#: tryton/gui/window/view_form/view/graph.py:159
-#: tryton/gui/window/view_form/view/list_gtk/widget.py:497
-#: tryton/gui/window/win_export.py:305
-msgid "Save As..."
-msgstr ""
-
-#: tryton/common/common.py:618
-msgid "Always ignore this warning."
-msgstr ""
-
-#: tryton/common/common.py:623
-msgid "Do you want to proceed?"
-msgstr ""
-
-#: tryton/common/common.py:642
-msgid "Confirmation"
-msgstr ""
-
-#: tryton/common/common.py:744 tryton/common/common.py:1051
-msgid "Concurrency Exception"
-msgstr ""
-
-#: tryton/common/common.py:757
-msgid ""
-"<b>Write Concurrency Warning:</b>\n"
-"\n"
-"This record has been modified while you were editing it.\n"
-" Choose:\n"
-"    - \"Cancel\" to cancel saving;\n"
-"    - \"Compare\" to see the modified version;\n"
-"    - \"Write Anyway\" to save your current version."
-msgstr ""
-
-#: tryton/common/common.py:766
-msgid "Compare"
-msgstr ""
-
-#: tryton/common/common.py:771
-msgid "Write Anyway"
-msgstr ""
-
-#: tryton/common/common.py:799 tryton/gui/window/win_export.py:337
-#: tryton/gui/window/win_import.py:113 tryton/gui/window/win_import.py:142
-msgid "Error"
-msgstr ""
-
-#: tryton/common/common.py:802
-msgid "Report Bug"
-msgstr ""
-
-#: tryton/common/common.py:809
-msgid "Application Error."
-msgstr ""
-
-#: tryton/common/common.py:832
-msgid "Error: "
-msgstr ""
-
-#: tryton/common/common.py:852
-#, python-format
-msgid "To report bugs you must have an account on <u>%s</u>"
-msgstr ""
-
-#: tryton/common/common.py:882
-msgid "Bug Tracker"
-msgstr ""
-
-#: tryton/common/common.py:899
-msgid "User:"
-msgstr ""
-
-#: tryton/common/common.py:907
-msgid "Password:"
-msgstr ""
-
-#: tryton/common/common.py:962
-msgid ""
-"The same bug was already reported by another user.\n"
-"To keep you informed your username is added to the nosy-list of this issue"
-msgstr ""
-
-#: tryton/common/common.py:973
-msgid "Created new bug with ID "
-msgstr ""
-
-#: tryton/common/common.py:981
-msgid ""
-"Connection error.\n"
-"Bad username or password."
-msgstr ""
-
-#: tryton/common/common.py:986
-msgid "Exception:"
-msgstr ""
-
-#: tryton/common/common.py:1003
-msgid ""
-"The server fingerprint has changed since last connection.\n"
-"The application will stop connecting to this server until its fingerprint"
-" is fixed."
-msgstr ""
-
-#: tryton/common/common.py:1005
-msgid "Security risk."
-msgstr ""
-
-#: tryton/common/common.py:1010
-msgid ""
-"Connection error.\n"
-"Unable to connect to the server."
-msgstr ""
-
-#: tryton/common/common.py:1077
-msgid "Network Error."
-msgstr ""
-
-#: tryton/common/common.py:1410
-msgid "..."
-msgstr ""
-
-#: tryton/common/completion.py:25
-msgid "<i>Search...</i>"
-msgstr ""
-
-#: tryton/common/completion.py:27
-msgid "<i>Create...</i>"
-msgstr ""
-
-#: tryton/common/completion.py:69
-#, python-format
-msgid "Unable to search for completion of %s"
-msgstr ""
-
-#: tryton/common/datetime_.py:35 tryton/common/datetime_.py:235
-#: tryton/common/datetime_.py:385
-msgid "Value"
-msgstr ""
-
-#: tryton/common/datetime_.py:36 tryton/common/datetime_.py:236
-#: tryton/common/datetime_.py:386
-msgid "Displayed value"
-msgstr ""
-
-#: tryton/common/datetime_.py:40 tryton/common/datetime_.py:193
-#: tryton/common/datetime_.py:239 tryton/common/datetime_.py:342
-msgid "Format"
-msgstr ""
-
-#: tryton/common/datetime_.py:41 tryton/common/datetime_.py:194
-#: tryton/common/datetime_.py:240 tryton/common/datetime_.py:343
-msgid "Display format"
-msgstr ""
-
-#: tryton/common/datetime_.py:63
-msgid "Open the calendar"
-msgstr ""
-
-#: tryton/common/datetime_.py:390 tryton/common/datetime_.py:395
-msgid "Date Format"
-msgstr ""
-
-#: tryton/common/datetime_.py:391 tryton/common/datetime_.py:396
-msgid "Displayed date format"
-msgstr ""
-
-#: tryton/common/domain_parser.py:236
-msgid "y"
-msgstr ""
-
-#: tryton/common/domain_parser.py:236
-msgid "Yes"
-msgstr ""
-
-#: tryton/common/domain_parser.py:236 tryton/common/domain_parser.py:461
-#: tryton/gui/window/view_form/view/screen_container.py:551
-msgid "True"
-msgstr ""
-
-#: tryton/common/domain_parser.py:236
-msgid "t"
-msgstr ""
-
-#: tryton/common/domain_parser.py:461
-#: tryton/gui/window/view_form/view/screen_container.py:551
-msgid "False"
-msgstr ""
-
-#: tryton/common/popup_menu.py:84
-msgid "Edit..."
-msgstr ""
-
-#: tryton/common/popup_menu.py:89
-msgid "Attachments..."
-msgstr ""
-
-#: tryton/common/popup_menu.py:96
-msgid "Notes..."
-msgstr ""
-
-#: tryton/common/popup_menu.py:109
-msgid "Actions..."
-msgstr ""
-
-#: tryton/common/popup_menu.py:110
-msgid "Relate..."
-msgstr ""
-
-#: tryton/common/popup_menu.py:111
-msgid "Report..."
-msgstr ""
-
-#: tryton/common/popup_menu.py:112
-msgid "E-Mail..."
-msgstr ""
-
-#: tryton/common/popup_menu.py:113
-msgid "Print..."
-msgstr ""
-
-#: tryton/common/timedelta.py:26
-msgid "Y"
-msgstr ""
-
-#: tryton/common/timedelta.py:27
-msgid "M"
-msgstr ""
-
-#: tryton/common/timedelta.py:28
-msgid "w"
-msgstr ""
-
-#: tryton/common/timedelta.py:29
-msgid "d"
-msgstr ""
-
-#: tryton/common/timedelta.py:30
-msgid "h"
-msgstr ""
-
-#: tryton/common/timedelta.py:31
-msgid "m"
-msgstr ""
-
-#: tryton/common/timedelta.py:32
-msgid "s"
-msgstr ""
-
-#: tryton/gui/main.py:214
-msgid "_Connection"
-msgstr ""
-
-#: tryton/gui/main.py:222
-msgid "_User"
-msgstr ""
-
-#: tryton/gui/main.py:236
-msgid "_Options"
-msgstr ""
-
-#: tryton/gui/main.py:244
-msgid "Fa_vorites"
-msgstr ""
-
-#: tryton/gui/main.py:260
-msgid "_Help"
-msgstr ""
-
-#: tryton/gui/main.py:282 tryton/gui/main.py:844
-#: tryton/gui/window/view_form/view/form_gtk/dictionary.py:341
-#: tryton/gui/window/view_form/view/form_gtk/many2many.py:46
-#: tryton/gui/window/view_form/view/form_gtk/one2many.py:89
-#: tryton/gui/window/view_form/view/screen_container.py:144
-#: tryton/gui/window/win_search.py:32
-msgid "Search"
-msgstr ""
-
-#: tryton/gui/main.py:372
-msgid "No result found."
-msgstr ""
-
-#: tryton/gui/main.py:412
-msgid "_Connect..."
-msgstr ""
-
-#: tryton/gui/main.py:422
-msgid "_Disconnect"
-msgstr ""
-
-#: tryton/gui/main.py:432
-msgid "_Quit..."
-msgstr ""
-
-#: tryton/gui/main.py:448
-msgid "_Preferences..."
-msgstr ""
-
-#: tryton/gui/main.py:460
-msgid "_Menu Reload"
-msgstr ""
-
-#: tryton/gui/main.py:470
-msgid "_Menu Toggle"
-msgstr ""
-
-#: tryton/gui/main.py:478
-msgid "_Global Search"
-msgstr ""
-
-#: tryton/gui/main.py:494
-msgid "_Toolbar"
-msgstr ""
-
-#: tryton/gui/main.py:502
-msgid "_Default"
-msgstr ""
-
-#: tryton/gui/main.py:513
-msgid "_Text and Icons"
-msgstr ""
-
-#: tryton/gui/main.py:523
-msgid "_Icons"
-msgstr ""
-
-#: tryton/gui/main.py:532
-msgid "_Text"
-msgstr ""
-
-#: tryton/gui/main.py:541
-msgid "_Menubar"
-msgstr ""
-
-#: tryton/gui/main.py:549
-msgid "Change Accelerators"
-msgstr ""
-
-#: tryton/gui/main.py:558
-msgid "_Mode"
-msgstr ""
-
-#: tryton/gui/main.py:566
-msgid "_Normal"
-msgstr ""
-
-#: tryton/gui/main.py:575
-msgid "_PDA"
-msgstr ""
-
-#: tryton/gui/main.py:582
-msgid "_Form"
-msgstr ""
-
-#: tryton/gui/main.py:591
-msgid "Save Width/Height"
-msgstr ""
-
-#: tryton/gui/main.py:602
-msgid "Save Tree State"
-msgstr ""
-
-#: tryton/gui/main.py:614
-msgid "Fast Tabbing"
-msgstr ""
-
-#: tryton/gui/main.py:624
-msgid "Spell Checking"
-msgstr ""
-
-#: tryton/gui/main.py:635
-msgid "_Previous Tab"
-msgstr ""
-
-#: tryton/gui/main.py:642
-msgid "_Next Tab"
-msgstr ""
-
-#: tryton/gui/main.py:649
-msgid "Search Limit..."
-msgstr ""
-
-#: tryton/gui/main.py:655
-msgid "_Email..."
-msgstr ""
-
-#: tryton/gui/main.py:663
-msgid "_Save Options"
-msgstr ""
-
-#: tryton/gui/main.py:677
-msgid "_Keyboard Shortcuts..."
-msgstr ""
-
-#: tryton/gui/main.py:687
-msgid "_About..."
-msgstr ""
-
-#: tryton/gui/main.py:723 tryton/gui/main.py:745
-msgid "Manage Favorites"
-msgstr ""
-
-#: tryton/gui/main.py:898
-msgid ""
-"The following action requires to close all tabs.\n"
-"Do you want to continue?"
-msgstr ""
-
-#: tryton/gui/main.py:1143
-msgid "Close Tab"
-msgstr ""
-
-#: tryton/gui/window/attachment.py:22
-#, python-format
-msgid "Attachments (%s)"
-msgstr ""
-
-#: tryton/gui/window/dblogin.py:31
-msgid "Profile Editor"
-msgstr ""
-
-#: tryton/gui/window/dblogin.py:45
-msgid "Profile"
-msgstr ""
-
-#: tryton/gui/window/dblogin.py:51 tryton/gui/window/win_csv.py:68
-msgid "_Add"
-msgstr ""
-
-#: tryton/gui/window/dblogin.py:56 tryton/gui/window/win_csv.py:77
-msgid "_Remove"
-msgstr ""
-
-#: tryton/gui/window/dblogin.py:69 tryton/gui/window/dblogin.py:446
-msgid "Host:"
-msgstr ""
-
-#: tryton/gui/window/dblogin.py:79 tryton/gui/window/dblogin.py:457
-msgid "Database:"
-msgstr ""
-
-#: tryton/gui/window/dblogin.py:98
-msgid "Fetching databases list"
-msgstr ""
-
-#: tryton/gui/window/dblogin.py:114
-msgid "Username:"
-msgstr ""
-
-#: tryton/gui/window/dblogin.py:300 tryton/gui/window/dblogin.py:613
-msgid "Incompatible version of the server"
-msgstr ""
-
-#: tryton/gui/window/dblogin.py:302 tryton/gui/window/dblogin.py:616
-msgid "Could not connect to the server"
-msgstr ""
-
-#: tryton/gui/window/dblogin.py:381
-msgid "Login"
-msgstr ""
-
-#: tryton/gui/window/dblogin.py:387
-msgid "_Cancel"
-msgstr ""
-
-#: tryton/gui/window/dblogin.py:392
-msgid "Cancel connection to the Tryton server"
-msgstr ""
-
-#: tryton/gui/window/dblogin.py:394
-msgid "C_onnect"
-msgstr ""
-
-#: tryton/gui/window/dblogin.py:399
-msgid "Connect the Tryton server"
-msgstr ""
-
-#: tryton/gui/window/dblogin.py:427
-msgid "Profile:"
-msgstr ""
-
-#: tryton/gui/window/dblogin.py:431
-msgid "_Manage profiles"
-msgstr ""
-
-#: tryton/gui/window/dblogin.py:443
-msgid "Host / Database information"
-msgstr ""
-
-#: tryton/gui/window/dblogin.py:472
-msgid "User name:"
-msgstr ""
-
-#: tryton/gui/window/email.py:16
-msgid "Email"
-msgstr ""
-
-#: tryton/gui/window/email.py:24
-msgid "Email Program Settings"
-msgstr ""
-
-#: tryton/gui/window/email.py:27
-msgid "Command Line:"
-msgstr ""
-
-#: tryton/gui/window/email.py:37
-msgid "Legend of Available Placeholders:"
-msgstr ""
-
-#: tryton/gui/window/email.py:44
-msgid "To:"
-msgstr ""
-
-#: tryton/gui/window/email.py:48
-msgid "CC:"
-msgstr ""
-
-#: tryton/gui/window/email.py:52
-msgid "Subject:"
-msgstr ""
-
-#: tryton/gui/window/email.py:56
-msgid "Body:"
-msgstr ""
-
-#: tryton/gui/window/email.py:60
-msgid "Attachment:"
-msgstr ""
-
-#: tryton/gui/window/form.py:118
-#, python-format
-msgid "Attachment(%d)"
-msgstr ""
-
-#: tryton/gui/window/form.py:144
-#, python-format
-msgid "Note(%d)"
-msgstr ""
-
-#: tryton/gui/window/form.py:166
-msgid "You have to select one record."
-msgstr ""
-
-#: tryton/gui/window/form.py:170
-msgid "ID:"
-msgstr ""
-
-#: tryton/gui/window/form.py:171
-msgid "Creation User:"
-msgstr ""
-
-#: tryton/gui/window/form.py:172
-msgid "Creation Date:"
-msgstr ""
-
-#: tryton/gui/window/form.py:173
-msgid "Latest Modification by:"
-msgstr ""
-
-#: tryton/gui/window/form.py:174
-msgid "Latest Modification Date:"
-msgstr ""
-
-#: tryton/gui/window/form.py:193
-msgid "Model:"
-msgstr ""
-
-#: tryton/gui/window/form.py:265
-msgid "Are you sure to remove this record?"
-msgstr ""
-
-#: tryton/gui/window/form.py:267
-msgid "Are you sure to remove those records?"
-msgstr ""
-
-#: tryton/gui/window/form.py:270
-msgid "Records not removed."
-msgstr ""
-
-#: tryton/gui/window/form.py:272
-msgid "Records removed."
-msgstr ""
-
-#: tryton/gui/window/form.py:301
-msgid "Working now on the duplicated record(s)."
-msgstr ""
-
-#: tryton/gui/window/form.py:313
-msgid "Record saved."
-msgstr ""
-
-#: tryton/gui/window/form.py:423
-msgid " of "
-msgstr ""
-
-#: tryton/gui/window/form.py:443
-msgid ""
-"This record has been modified\n"
-"do you want to save it?"
-msgstr ""
-
-#: tryton/gui/window/form.py:497
-msgid "Action"
-msgstr ""
-
-#: tryton/gui/window/form.py:497
-msgid "Launch action"
-msgstr ""
-
-#: tryton/gui/window/form.py:498
-msgid "Relate"
-msgstr ""
-
-#: tryton/gui/window/form.py:498
-msgid "Open related records"
-msgstr ""
-
-#: tryton/gui/window/form.py:500
-msgid "Report"
-msgstr ""
-
-#: tryton/gui/window/form.py:500
-msgid "Open report"
-msgstr ""
-
-#: tryton/gui/window/form.py:501
-msgid "E-Mail"
-msgstr ""
-
-#: tryton/gui/window/form.py:501
-msgid "E-Mail report"
-msgstr ""
-
-#: tryton/gui/window/form.py:502
-msgid "Print"
-msgstr ""
-
-#: tryton/gui/window/form.py:502
-msgid "Print report"
-msgstr ""
-
-#: tryton/gui/window/form.py:522
-msgid "_Copy URL"
-msgstr ""
-
-#: tryton/gui/window/form.py:525
-msgid "Copy URL into clipboard"
-msgstr ""
-
-#: tryton/gui/window/form.py:585
-#: tryton/gui/window/view_form/view/list_gtk/widget.py:888
-msgid "Unknown"
-msgstr ""
-
-#: tryton/gui/window/limit.py:17
-msgid "Limit"
-msgstr ""
-
-#: tryton/gui/window/limit.py:25
-msgid "Search Limit Settings"
-msgstr ""
-
-#: tryton/gui/window/limit.py:28
-msgid "Limit:"
-msgstr ""
-
-#: tryton/gui/window/note.py:17
-#, python-format
-msgid "Notes (%s)"
-msgstr ""
-
-#: tryton/gui/window/preference.py:23
-msgid "Preferences"
-msgstr ""
-
-#: tryton/gui/window/preference.py:48
-msgid "Edit User Preferences"
-msgstr ""
-
-#: tryton/gui/window/preference.py:75
-msgid "Preference"
-msgstr ""
-
-#: tryton/gui/window/revision.py:19
-msgid "Revision"
-msgstr ""
-
-#: tryton/gui/window/revision.py:27
-msgid "Select a revision"
-msgstr ""
-
-#: tryton/gui/window/revision.py:30
-msgid "Revision:"
-msgstr ""
-
-#: tryton/gui/window/shortcuts.py:17
-msgid "Keyboard Shortcuts"
-msgstr ""
-
-#: tryton/gui/window/shortcuts.py:27
-msgid "Text Entries Shortcuts"
-msgstr ""
-
-#: tryton/gui/window/shortcuts.py:28
-msgid "Cut selected text"
-msgstr ""
-
-#: tryton/gui/window/shortcuts.py:29
-msgid "Copy selected text"
-msgstr ""
-
-#: tryton/gui/window/shortcuts.py:30
-msgid "Paste copied text"
-msgstr ""
-
-#: tryton/gui/window/shortcuts.py:31
-msgid "Next widget"
-msgstr ""
-
-#: tryton/gui/window/shortcuts.py:32
-msgid "Previous widget"
-msgstr ""
-
-#: tryton/gui/window/shortcuts.py:33
-msgid "Relation Entries Shortcuts"
-msgstr ""
-
-#: tryton/gui/window/shortcuts.py:34
-msgid "Create new relation"
-msgstr ""
-
-#: tryton/gui/window/shortcuts.py:35
-msgid "Open/Search relation"
-msgstr ""
-
-#: tryton/gui/window/shortcuts.py:36
-msgid "List Entries Shortcuts"
-msgstr ""
-
-#: tryton/gui/window/shortcuts.py:37
-msgid "Create new line"
-msgstr ""
-
-#: tryton/gui/window/shortcuts.py:38
-msgid "Open relation"
-msgstr ""
-
-#: tryton/gui/window/shortcuts.py:39
-msgid "Mark line for deletion"
-msgstr ""
-
-#: tryton/gui/window/shortcuts.py:40
-msgid "Unmark line for deletion"
-msgstr ""
-
-#: tryton/gui/window/shortcuts.py:43
-msgid "Edition Widgets"
-msgstr ""
-
-#: tryton/gui/window/shortcuts.py:46
-msgid "Move Cursor"
-msgstr ""
-
-#: tryton/gui/window/shortcuts.py:47
-msgid "Move to right"
-msgstr ""
-
-#: tryton/gui/window/shortcuts.py:48
-msgid "Move to left"
-msgstr ""
-
-#: tryton/gui/window/shortcuts.py:49
-msgid "Move up"
-msgstr ""
-
-#: tryton/gui/window/shortcuts.py:50
-msgid "Move down"
-msgstr ""
-
-#: tryton/gui/window/shortcuts.py:51
-msgid "Move up of one page"
-msgstr ""
-
-#: tryton/gui/window/shortcuts.py:52
-msgid "Move down of one page"
-msgstr ""
-
-#: tryton/gui/window/shortcuts.py:53
-msgid "Move to top"
-msgstr ""
-
-#: tryton/gui/window/shortcuts.py:54
-msgid "Move to bottom"
-msgstr ""
-
-#: tryton/gui/window/shortcuts.py:55
-msgid "Move to parent"
-msgstr ""
-
-#: tryton/gui/window/shortcuts.py:57 tryton/gui/window/shortcuts.py:58
-msgid "Select all"
-msgstr ""
-
-#: tryton/gui/window/shortcuts.py:59 tryton/gui/window/shortcuts.py:60
-msgid "Unselect all"
-msgstr ""
-
-#: tryton/gui/window/shortcuts.py:61
-msgid "Select parent"
-msgstr ""
-
-#: tryton/gui/window/shortcuts.py:62 tryton/gui/window/shortcuts.py:63
-#: tryton/gui/window/shortcuts.py:64 tryton/gui/window/shortcuts.py:65
-msgid "Select/Activate current row"
-msgstr ""
-
-#: tryton/gui/window/shortcuts.py:66
-msgid "Toggle selection"
-msgstr ""
-
-#: tryton/gui/window/shortcuts.py:67
-msgid "Expand/Collapse"
-msgstr ""
-
-#: tryton/gui/window/shortcuts.py:68
-msgid "Expand row"
-msgstr ""
-
-#: tryton/gui/window/shortcuts.py:69
-msgid "Collapse row"
-msgstr ""
-
-#: tryton/gui/window/shortcuts.py:70
-msgid "Toggle row"
-msgstr ""
-
-#: tryton/gui/window/shortcuts.py:71
-msgid "Collapse all rows"
-msgstr ""
-
-#: tryton/gui/window/shortcuts.py:72
-msgid "Expand all rows"
-msgstr ""
-
-#: tryton/gui/window/shortcuts.py:75
-msgid "Tree view"
-msgstr ""
-
-#: tryton/gui/window/tabcontent.py:41
-msgid "_Switch View"
-msgstr ""
-
-#: tryton/gui/window/tabcontent.py:42
-msgid "Switch View"
-msgstr ""
-
-#: tryton/gui/window/tabcontent.py:47
-msgid "_Previous"
-msgstr ""
-
-#: tryton/gui/window/tabcontent.py:48
-msgid "Previous Record"
-msgstr ""
-
-#: tryton/gui/window/tabcontent.py:53
-msgid "_Next"
-msgstr ""
-
-#: tryton/gui/window/tabcontent.py:54
-msgid "Next Record"
-msgstr ""
-
-#: tryton/gui/window/tabcontent.py:59
-msgid "_Search"
-msgstr ""
-
-#: tryton/gui/window/tabcontent.py:65
-msgid "_New"
-msgstr ""
-
-#: tryton/gui/window/tabcontent.py:66
-msgid "Create a new record"
-msgstr ""
-
-#: tryton/gui/window/tabcontent.py:71 tryton/gui/window/win_form.py:68
-msgid "_Save"
-msgstr ""
-
-#: tryton/gui/window/tabcontent.py:72
-msgid "Save this record"
-msgstr ""
-
-#: tryton/gui/window/tabcontent.py:77
-msgid "_Reload/Undo"
-msgstr ""
-
-#: tryton/gui/window/tabcontent.py:78
-msgid "Reload/Undo"
-msgstr ""
-
-#: tryton/gui/window/tabcontent.py:83
-msgid "_Duplicate"
-msgstr ""
-
-#: tryton/gui/window/tabcontent.py:88
-msgid "_Delete..."
-msgstr ""
-
-#: tryton/gui/window/tabcontent.py:94
-msgid "View _Logs..."
-msgstr ""
-
-#: tryton/gui/window/tabcontent.py:97
-msgid "Show revisions..."
-msgstr ""
-
-#: tryton/gui/window/tabcontent.py:102
-msgid "A_ttachments..."
-msgstr ""
-
-#: tryton/gui/window/tabcontent.py:103
-msgid "Add an attachment to the record"
-msgstr ""
-
-#: tryton/gui/window/tabcontent.py:108
-msgid "_Notes..."
-msgstr ""
-
-#: tryton/gui/window/tabcontent.py:109
-msgid "Add a note to the record"
-msgstr ""
-
-#: tryton/gui/window/tabcontent.py:114
-msgid "_Actions..."
-msgstr ""
-
-#: tryton/gui/window/tabcontent.py:119
-msgid "_Relate..."
-msgstr ""
-
-#: tryton/gui/window/tabcontent.py:125
-msgid "_Report..."
-msgstr ""
-
-#: tryton/gui/window/tabcontent.py:130
-msgid "_E-Mail..."
-msgstr ""
-
-#: tryton/gui/window/tabcontent.py:135
-msgid "_Print..."
-msgstr ""
-
-#: tryton/gui/window/tabcontent.py:141
-msgid "_Export Data..."
-msgstr ""
-
-#: tryton/gui/window/tabcontent.py:146
-msgid "_Import Data..."
-msgstr ""
-
-#: tryton/gui/window/tabcontent.py:150
-msgid "Copy _URL..."
-msgstr ""
-
-#: tryton/gui/window/tabcontent.py:156
-msgid "_Close Tab"
-msgstr ""
-
-#: tryton/gui/window/win_csv.py:59
-msgid "<b>All fields</b>"
-msgstr ""
-
-#: tryton/gui/window/win_csv.py:86
-msgid "_Clear"
-msgstr ""
-
-#: tryton/gui/window/win_csv.py:107
-msgid "<b>Fields selected</b>"
-msgstr ""
-
-#: tryton/gui/window/win_csv.py:126
-msgid "CSV Parameters"
-msgstr ""
-
-#: tryton/gui/window/win_csv.py:134
-msgid "Delimiter:"
-msgstr ""
-
-#: tryton/gui/window/win_csv.py:148
-msgid "Quote char:"
-msgstr ""
-
-#: tryton/gui/window/win_csv.py:157
-msgid "Encoding:"
-msgstr ""
-
-#: tryton/gui/window/win_csv.py:193 tryton/gui/window/win_csv.py:197
-msgid "Field name"
-msgstr ""
-
-#: tryton/gui/window/win_export.py:28
-msgid "Export to CSV"
-msgstr ""
-
-#: tryton/gui/window/win_export.py:39
-msgid "<b>Predefined exports</b>"
-msgstr ""
-
-#: tryton/gui/window/win_export.py:46
-msgid "Name"
-msgstr ""
-
-#: tryton/gui/window/win_export.py:60
-msgid "_Save Export"
-msgstr ""
-
-#: tryton/gui/window/win_export.py:69
-msgid "_Delete Export"
-msgstr ""
-
-#: tryton/gui/window/win_export.py:85
-msgid "Open"
-msgstr ""
-
-#: tryton/gui/window/win_export.py:86
-msgid "Save"
-msgstr ""
-
-#: tryton/gui/window/win_export.py:90
-msgid "Add _field names"
-msgstr ""
-
-#: tryton/gui/window/win_export.py:104
-#, python-format
-msgid "%s (string)"
-msgstr ""
-
-#: tryton/gui/window/win_export.py:107
-#, python-format
-msgid "%s (model name)"
-msgstr ""
-
-#: tryton/gui/window/win_export.py:109
-#, python-format
-msgid "%s (record name)"
-msgstr ""
-
-#: tryton/gui/window/win_export.py:208
-msgid "What is the name of this export?"
-msgstr ""
-
-#: tryton/gui/window/win_export.py:214
-#, python-format
-msgid "Override '%s' definition?"
-msgstr ""
-
-#: tryton/gui/window/win_export.py:331
-#, python-format
-msgid "%d record saved."
-msgstr ""
-
-#: tryton/gui/window/win_export.py:333
-#, python-format
-msgid "%d records saved."
-msgstr ""
-
-#: tryton/gui/window/win_export.py:336
-#, python-format
-msgid ""
-"Operation failed.\n"
-"Error message:\n"
-"%s"
-msgstr ""
-
-#: tryton/gui/window/win_form.py:37
-msgid "Link"
-msgstr ""
-
-#: tryton/gui/window/win_form.py:125
-msgid "Add"
-msgstr ""
-
-#: tryton/gui/window/win_form.py:138
-msgid "Remove <Del>"
-msgstr ""
-
-#: tryton/gui/window/view_form/view/form_gtk/one2many.py:133
-#: tryton/gui/window/win_form.py:153
-msgid "Create a new record <F3>"
-msgstr ""
-
-#: tryton/gui/window/view_form/view/form_gtk/one2many.py:153
-#: tryton/gui/window/win_form.py:165
-msgid "Delete selected record <Del>"
-msgstr ""
-
-#: tryton/gui/window/view_form/view/form_gtk/one2many.py:163
-#: tryton/gui/window/win_form.py:179
-msgid "Undelete selected record <Ins>"
-msgstr ""
-
-#: tryton/gui/window/view_form/view/form_gtk/one2many.py:59
-#: tryton/gui/window/view_form/view/screen_container.py:213
-#: tryton/gui/window/win_form.py:194
-msgid "Previous"
-msgstr ""
-
-#: tryton/gui/window/view_form/view/form_gtk/one2many.py:73
-#: tryton/gui/window/view_form/view/screen_container.py:225
-#: tryton/gui/window/win_form.py:208
-msgid "Next"
-msgstr ""
-
-#: tryton/gui/window/view_form/view/form_gtk/one2many.py:48
-#: tryton/gui/window/win_form.py:221
-msgid "Switch"
-msgstr ""
-
-#: tryton/gui/window/win_import.py:25
-msgid "Import from CSV"
-msgstr ""
-
-#: tryton/gui/window/win_import.py:32
-msgid "_Auto-Detect"
-msgstr ""
-
-#: tryton/gui/window/win_import.py:43
-msgid "File to Import:"
-msgstr ""
-
-#: tryton/gui/window/view_form/view/form_gtk/binary.py:209
-#: tryton/gui/window/view_form/view/list_gtk/widget.py:462
-#: tryton/gui/window/win_import.py:45
-msgid "Open..."
-msgstr ""
-
-#: tryton/gui/window/win_import.py:50
-msgid "Lines to Skip:"
-msgstr ""
-
-#: tryton/gui/window/win_import.py:103
-msgid "You must select an import file first."
-msgstr ""
-
-#: tryton/gui/window/win_import.py:113
-msgid "Error opening CSV file"
-msgstr ""
-
-#: tryton/gui/window/win_import.py:141
-#, python-format
-msgid "Error processing the file at field %s."
-msgstr ""
-
-#: tryton/gui/window/win_import.py:201
-#, python-format
-msgid "%d record imported."
-msgstr ""
-
-#: tryton/gui/window/win_import.py:203
-#, python-format
-msgid "%d records imported."
-msgstr ""
-
-#: tryton/gui/window/win_search.py:68
-#, python-format
-msgid "Search %s"
-msgstr ""
-
-#: tryton/gui/window/wizard.py:143
-#, python-format
-msgid "Unable to delete wizard %s"
-msgstr ""
-
-#: tryton/gui/window/wizard.py:297
-msgid "Wizard"
-msgstr ""
-
-#: tryton/gui/window/view_form/screen/screen.py:194
-msgid "ID"
-msgstr ""
-
-#: tryton/gui/window/view_form/screen/screen.py:195
-msgid "Creation User"
-msgstr ""
-
-#: tryton/gui/window/view_form/screen/screen.py:196
-msgid "Creation Date"
-msgstr ""
-
-#: tryton/gui/window/view_form/screen/screen.py:197
-msgid "Modification User"
-msgstr ""
-
-#: tryton/gui/window/view_form/screen/screen.py:198
-msgid "Modification Date"
-msgstr ""
-
-#: tryton/gui/window/view_form/screen/screen.py:765
-#, python-format
-msgid "Unable to get view tree state for %s"
-msgstr ""
-
-#: tryton/gui/window/view_form/screen/screen.py:826
-msgid "Unable to set view tree state"
-msgstr ""
-
-#: tryton/gui/window/view_form/screen/screen.py:1003
-#, python-format
-msgid "\"%s\" is not valid according to its domain"
-msgstr ""
-
-#: tryton/gui/window/view_form/screen/screen.py:1010
-#, python-format
-msgid "\"%s\" is required"
-msgstr ""
-
-#: tryton/gui/window/view_form/screen/screen.py:1014
-#, python-format
-msgid "The values of \"%s\" are not valid"
-msgstr ""
-
-#: tryton/gui/window/view_form/screen/screen.py:1063
-msgid "Pre-validation"
-msgstr ""
-
-#: tryton/gui/window/view_form/view/form.py:207
-#: tryton/gui/window/view_form/view/form.py:209
-#: tryton/gui/window/view_form/view/form_gtk/dictionary.py:478
-#: tryton/gui/window/view_form/view/form_gtk/dictionary.py:480
-#: tryton/gui/window/view_form/view/form_gtk/widget.py:150
-#: tryton/gui/window/view_form/view/form_gtk/widget.py:152
-#: tryton/gui/window/view_form/view/list.py:534
-#: tryton/gui/window/view_form/view/list.py:536
-msgid ":"
-msgstr ""
-
-#: tryton/gui/window/view_form/view/graph.py:100
-msgid "Image Size"
-msgstr ""
-
-#: tryton/gui/window/view_form/view/graph.py:110
-msgid "Width:"
-msgstr ""
-
-#: tryton/gui/window/view_form/view/graph.py:118
-msgid "Height:"
-msgstr ""
-
-#: tryton/gui/window/view_form/view/graph.py:128
-msgid "PNG image (*.png)"
-msgstr ""
-
-#: tryton/gui/window/view_form/view/graph.py:137
-msgid "Save As"
-msgstr ""
-
-#: tryton/gui/window/view_form/view/graph.py:149
-msgid "Image size too large."
-msgstr ""
-
-#: tryton/gui/window/view_form/view/screen_container.py:23
-msgid ".."
-msgstr ""
-
-#: tryton/gui/window/view_form/view/screen_container.py:149
-msgid "Open filters"
-msgstr ""
-
-#: tryton/gui/window/view_form/view/screen_container.py:197
-msgid "Show bookmarks of filters"
-msgstr ""
-
-#: tryton/gui/window/view_form/view/screen_container.py:368
-msgid "Remove this bookmark"
-msgstr ""
-
-#: tryton/gui/window/view_form/view/screen_container.py:375
-msgid "Bookmark this filter"
-msgstr ""
-
-#: tryton/gui/window/view_form/view/screen_container.py:463
-msgid "Bookmark Name:"
-msgstr ""
-
-#: tryton/gui/window/view_form/view/screen_container.py:582
-msgid "Find"
-msgstr ""
-
-#: tryton/gui/window/view_form/view/calendar_gtk/toolbar.py:22
-msgid "Today"
-msgstr ""
-
-#: tryton/gui/window/view_form/view/calendar_gtk/toolbar.py:32
-msgid "go back"
-msgstr ""
-
-#: tryton/gui/window/view_form/view/calendar_gtk/toolbar.py:73
-msgid "go forward"
-msgstr ""
-
-#: tryton/gui/window/view_form/view/calendar_gtk/toolbar.py:82
-msgid "previous year"
-msgstr ""
-
-#: tryton/gui/window/view_form/view/calendar_gtk/toolbar.py:96
-msgid "next year"
-msgstr ""
-
-#: tryton/gui/window/view_form/view/calendar_gtk/toolbar.py:107
-msgid "Week View"
-msgstr ""
-
-#: tryton/gui/window/view_form/view/calendar_gtk/toolbar.py:117
-msgid "Month View"
-msgstr ""
-
-#: tryton/gui/window/view_form/view/calendar_gtk/toolbar.py:142
-msgid "Week"
-msgstr ""
-
-#: tryton/gui/window/view_form/view/form_gtk/binary.py:44
-msgid "Select..."
-msgstr ""
-
-#: tryton/gui/window/view_form/view/form_gtk/binary.py:53
-msgid "Clear"
-msgstr ""
-
-#: tryton/gui/window/view_form/view/form_gtk/binary.py:66
-msgid "All files"
-msgstr ""
-
-#: tryton/gui/window/view_form/view/form_gtk/binary.py:89
-msgid "Select"
-msgstr ""
-
-#: tryton/gui/window/view_form/view/form_gtk/char.py:165
-msgid "Show plain text"
-msgstr ""
-
-#: tryton/gui/window/view_form/view/form_gtk/dictionary.py:367
-msgid "Add value"
-msgstr ""
-
-#: tryton/gui/window/view_form/view/form_gtk/dictionary.py:491
-#, python-format
-msgid "Remove \"%s\""
-msgstr ""
-
-#: tryton/gui/window/view_form/view/form_gtk/image.py:49
-msgid "Images"
-msgstr ""
-
-#: tryton/gui/window/view_form/view/form_gtk/many2many.py:66
-#: tryton/gui/window/view_form/view/form_gtk/one2many.py:108
-msgid "Add existing record"
-msgstr ""
-
-#: tryton/gui/window/view_form/view/form_gtk/many2many.py:77
-msgid "Remove selected record <Del>"
-msgstr ""
-
-#: tryton/gui/window/view_form/view/form_gtk/many2one.py:305
-msgid "Open the record <F2>"
-msgstr ""
-
-#: tryton/gui/window/view_form/view/form_gtk/many2one.py:306
-msgid "Clear the record <Del>"
-msgstr ""
-
-#: tryton/gui/window/view_form/view/form_gtk/many2one.py:309
-msgid "Search a record <F2>"
-msgstr ""
-
-#: tryton/gui/window/view_form/view/form_gtk/one2many.py:120
-msgid "Remove selected record"
-msgstr ""
-
-#: tryton/gui/window/view_form/view/form_gtk/one2many.py:143
-msgid "Edit selected record <F2>"
-msgstr ""
-
-#: tryton/gui/window/view_form/view/form_gtk/progressbar.py:35
-#: tryton/gui/window/view_form/view/list_gtk/widget.py:864
-#, python-format
-msgid "%s%%"
-msgstr ""
-
-#: tryton/gui/window/view_form/view/form_gtk/richtextbox.py:99
-msgid "Foreground"
-msgstr ""
-
-#: tryton/gui/window/view_form/view/form_gtk/richtextbox.py:304
-msgid "Select a color"
-msgstr ""
-
-#: tryton/gui/window/view_form/view/form_gtk/widget.py:126
-msgid "Translation"
-msgstr ""
-
-#: tryton/gui/window/view_form/view/form_gtk/widget.py:187
-msgid "Edit"
-msgstr ""
-
-#: tryton/gui/window/view_form/view/form_gtk/widget.py:192
-msgid "Fuzzy"
-msgstr ""
-
-#: tryton/gui/window/view_form/view/form_gtk/widget.py:262
-msgid "You need to save the record before adding translations."
-msgstr ""
-
-#: tryton/gui/window/view_form/view/form_gtk/widget.py:273
-msgid "No other language available."
-msgstr ""
-
-#: tryton/plugins/translation/__init__.py:23
-msgid "Translate view"
-msgstr ""
-
diff --git a/tryton/data/locale/zh_CN/LC_MESSAGES/tryton.mo b/tryton/data/locale/zh_CN/LC_MESSAGES/tryton.mo
index e513ace..bc084b2 100644
Binary files a/tryton/data/locale/zh_CN/LC_MESSAGES/tryton.mo and b/tryton/data/locale/zh_CN/LC_MESSAGES/tryton.mo differ
diff --git a/tryton/data/pixmaps/tryton/tryton.icns b/tryton/data/pixmaps/tryton/tryton.icns
deleted file mode 100644
index b501666..0000000
Binary files a/tryton/data/pixmaps/tryton/tryton.icns and /dev/null differ
diff --git a/tryton/data/pixmaps/tryton/tryton.ico b/tryton/data/pixmaps/tryton/tryton.ico
deleted file mode 100644
index 96e06f8..0000000
Binary files a/tryton/data/pixmaps/tryton/tryton.ico and /dev/null differ
diff --git a/tryton/gui/window/view_form/view/form_gtk/widget.py b/tryton/gui/window/view_form/view/form_gtk/widget.py
index ef880f6..cf76f2f 100644
--- a/tryton/gui/window/view_form/view/form_gtk/widget.py
+++ b/tryton/gui/window/view_form/view/form_gtk/widget.py
@@ -177,7 +177,7 @@ class TranslateDialog(NoModal):
             label.set_mnemonic_widget(widget)
             self.widget.translate_widget_set(widget, fuzzy_value)
             self.widget.translate_widget_set_readonly(widget, True)
-            yopt = None
+            yopt = 0
             if self.widget.expand:
                 yopt = gtk.EXPAND | gtk.FILL
             table.attach(widget, 1, 2, i, i + 1, yoptions=yopt)
diff --git a/tryton/gui/window/view_form/view/list.py b/tryton/gui/window/view_form/view/list.py
index 37585df..e45f515 100644
--- a/tryton/gui/window/view_form/view/list.py
+++ b/tryton/gui/window/view_form/view/list.py
@@ -830,7 +830,7 @@ class ViewTree(View):
             return True
         if drop_info:
             path, position = drop_info
-            check_path = path
+            check_path = tuple(path)
             if position in (gtk.TREE_VIEW_DROP_BEFORE,
                     gtk.TREE_VIEW_DROP_AFTER):
                 check_path = path[:-1]
diff --git a/win32/gtk-2.0/gdk-pixbuf.loaders b/win32/gtk-2.0/gdk-pixbuf.loaders
index 4d13e1c..15d85d9 100644
--- a/win32/gtk-2.0/gdk-pixbuf.loaders
+++ b/win32/gtk-2.0/gdk-pixbuf.loaders
@@ -2,7 +2,7 @@
 # Automatically generated file, do not edit
 # Created by gdk-pixbuf-query-loaders.exe from gdk-pixbuf-2.35.4
 #
-# LoaderDir = C:\msys32\mingw32/lib/gdk-pixbuf-2.0/2.10.0/loaders
+# LoaderDir = lib/gdk-pixbuf-2.0/2.10.0/loaders
 #
 "lib/gdk-pixbuf-2.0/2.10.0/loaders/libpixbufloader-svg.dll"
 "svg" 6 "gdk-pixbuf" "Scalable Vector Graphics" "LGPL"
-- 
tryton-client



More information about the tryton-debian-vcs mailing list