tryton 7.4.8__py3-none-any.whl → 7.6.0__py3-none-any.whl

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.

Potentially problematic release.


This version of tryton might be problematic. Click here for more details.

Files changed (122) hide show
  1. tryton/__init__.py +1 -1
  2. tryton/bus.py +113 -69
  3. tryton/chat.py +179 -0
  4. tryton/client.py +7 -0
  5. tryton/common/__init__.py +15 -11
  6. tryton/common/button.py +1 -1
  7. tryton/common/cellrendererfloat.py +1 -1
  8. tryton/common/cellrenderertext.py +2 -2
  9. tryton/common/common.py +91 -19
  10. tryton/common/domain_parser.py +8 -6
  11. tryton/common/environment.py +2 -2
  12. tryton/common/number_entry.py +12 -6
  13. tryton/common/selection.py +1 -1
  14. tryton/data/locale/bg/LC_MESSAGES/tryton.mo +0 -0
  15. tryton/data/locale/bg/LC_MESSAGES/tryton.po +26 -16
  16. tryton/data/locale/ca/LC_MESSAGES/tryton.mo +0 -0
  17. tryton/data/locale/ca/LC_MESSAGES/tryton.po +29 -18
  18. tryton/data/locale/cs/LC_MESSAGES/tryton.mo +0 -0
  19. tryton/data/locale/cs/LC_MESSAGES/tryton.po +28 -16
  20. tryton/data/locale/de/LC_MESSAGES/tryton.mo +0 -0
  21. tryton/data/locale/de/LC_MESSAGES/tryton.po +27 -18
  22. tryton/data/locale/es/LC_MESSAGES/tryton.mo +0 -0
  23. tryton/data/locale/es/LC_MESSAGES/tryton.po +25 -16
  24. tryton/data/locale/es_419/LC_MESSAGES/tryton.mo +0 -0
  25. tryton/data/locale/es_419/LC_MESSAGES/tryton.po +26 -16
  26. tryton/data/locale/et/LC_MESSAGES/tryton.mo +0 -0
  27. tryton/data/locale/et/LC_MESSAGES/tryton.po +28 -18
  28. tryton/data/locale/fa/LC_MESSAGES/tryton.mo +0 -0
  29. tryton/data/locale/fa/LC_MESSAGES/tryton.po +28 -18
  30. tryton/data/locale/fi/LC_MESSAGES/tryton.mo +0 -0
  31. tryton/data/locale/fi/LC_MESSAGES/tryton.po +25 -16
  32. tryton/data/locale/fr/LC_MESSAGES/tryton.mo +0 -0
  33. tryton/data/locale/fr/LC_MESSAGES/tryton.po +25 -16
  34. tryton/data/locale/hu/LC_MESSAGES/tryton.mo +0 -0
  35. tryton/data/locale/hu/LC_MESSAGES/tryton.po +28 -18
  36. tryton/data/locale/id/LC_MESSAGES/tryton.mo +0 -0
  37. tryton/data/locale/id/LC_MESSAGES/tryton.po +23 -16
  38. tryton/data/locale/it/LC_MESSAGES/tryton.mo +0 -0
  39. tryton/data/locale/it/LC_MESSAGES/tryton.po +29 -18
  40. tryton/data/locale/ja_JP/LC_MESSAGES/tryton.mo +0 -0
  41. tryton/data/locale/lo/LC_MESSAGES/tryton.mo +0 -0
  42. tryton/data/locale/lo/LC_MESSAGES/tryton.po +26 -18
  43. tryton/data/locale/lt/LC_MESSAGES/tryton.mo +0 -0
  44. tryton/data/locale/lt/LC_MESSAGES/tryton.po +30 -18
  45. tryton/data/locale/nl/LC_MESSAGES/tryton.mo +0 -0
  46. tryton/data/locale/nl/LC_MESSAGES/tryton.po +25 -16
  47. tryton/data/locale/pl/LC_MESSAGES/tryton.mo +0 -0
  48. tryton/data/locale/pl/LC_MESSAGES/tryton.po +31 -18
  49. tryton/data/locale/pt/LC_MESSAGES/tryton.mo +0 -0
  50. tryton/data/locale/pt/LC_MESSAGES/tryton.po +148 -177
  51. tryton/data/locale/ro/LC_MESSAGES/tryton.mo +0 -0
  52. tryton/data/locale/ro/LC_MESSAGES/tryton.po +32 -19
  53. tryton/data/locale/ru/LC_MESSAGES/tryton.mo +0 -0
  54. tryton/data/locale/ru/LC_MESSAGES/tryton.po +28 -16
  55. tryton/data/locale/sl/LC_MESSAGES/tryton.mo +0 -0
  56. tryton/data/locale/sl/LC_MESSAGES/tryton.po +33 -18
  57. tryton/data/locale/tr/LC_MESSAGES/tryton.mo +0 -0
  58. tryton/data/locale/tr/LC_MESSAGES/tryton.po +25 -16
  59. tryton/data/locale/uk/LC_MESSAGES/tryton.mo +0 -0
  60. tryton/data/locale/uk/LC_MESSAGES/tryton.po +31 -18
  61. tryton/data/locale/zh_CN/LC_MESSAGES/tryton.mo +0 -0
  62. tryton/data/locale/zh_CN/LC_MESSAGES/tryton.po +27 -18
  63. tryton/data/pixmaps/tryton/tryton-chat.svg +1 -0
  64. tryton/data/pixmaps/tryton/tryton-note.svg +1 -4
  65. tryton/gui/window/attachment.py +2 -2
  66. tryton/gui/window/board.py +1 -1
  67. tryton/gui/window/form.py +57 -10
  68. tryton/gui/window/note.py +2 -2
  69. tryton/gui/window/tabcontent.py +8 -1
  70. tryton/gui/window/view_board/action.py +1 -1
  71. tryton/gui/window/view_form/model/field.py +38 -29
  72. tryton/gui/window/view_form/model/group.py +4 -4
  73. tryton/gui/window/view_form/model/record.py +17 -4
  74. tryton/gui/window/view_form/screen/screen.py +24 -6
  75. tryton/gui/window/view_form/view/calendar_gtk/calendar_.py +1 -1
  76. tryton/gui/window/view_form/view/calendar_gtk/toolbar.py +1 -1
  77. tryton/gui/window/view_form/view/form.py +2 -1
  78. tryton/gui/window/view_form/view/form_gtk/binary.py +3 -3
  79. tryton/gui/window/view_form/view/form_gtk/calendar_.py +4 -4
  80. tryton/gui/window/view_form/view/form_gtk/char.py +42 -5
  81. tryton/gui/window/view_form/view/form_gtk/checkbox.py +3 -3
  82. tryton/gui/window/view_form/view/form_gtk/dictionary.py +53 -15
  83. tryton/gui/window/view_form/view/form_gtk/float.py +3 -7
  84. tryton/gui/window/view_form/view/form_gtk/image.py +4 -4
  85. tryton/gui/window/view_form/view/form_gtk/integer.py +1 -1
  86. tryton/gui/window/view_form/view/form_gtk/many2many.py +3 -4
  87. tryton/gui/window/view_form/view/form_gtk/many2one.py +2 -2
  88. tryton/gui/window/view_form/view/form_gtk/multiselection.py +3 -3
  89. tryton/gui/window/view_form/view/form_gtk/one2many.py +11 -8
  90. tryton/gui/window/view_form/view/form_gtk/progressbar.py +2 -2
  91. tryton/gui/window/view_form/view/form_gtk/pyson.py +3 -3
  92. tryton/gui/window/view_form/view/form_gtk/reference.py +4 -4
  93. tryton/gui/window/view_form/view/form_gtk/richtextbox.py +5 -5
  94. tryton/gui/window/view_form/view/form_gtk/selection.py +3 -3
  95. tryton/gui/window/view_form/view/form_gtk/state_widget.py +8 -6
  96. tryton/gui/window/view_form/view/form_gtk/textbox.py +4 -4
  97. tryton/gui/window/view_form/view/form_gtk/timedelta.py +3 -3
  98. tryton/gui/window/view_form/view/form_gtk/url.py +2 -2
  99. tryton/gui/window/view_form/view/form_gtk/widget.py +1 -1
  100. tryton/gui/window/view_form/view/graph_gtk/bar.py +7 -7
  101. tryton/gui/window/view_form/view/graph_gtk/graph.py +2 -2
  102. tryton/gui/window/view_form/view/graph_gtk/line.py +5 -5
  103. tryton/gui/window/view_form/view/graph_gtk/pie.py +2 -2
  104. tryton/gui/window/view_form/view/list.py +110 -52
  105. tryton/gui/window/view_form/view/list_gtk/editabletree.py +2 -2
  106. tryton/gui/window/view_form/view/list_gtk/widget.py +22 -20
  107. tryton/gui/window/view_form/view/screen_container.py +13 -1
  108. tryton/gui/window/win_csv.py +2 -2
  109. tryton/gui/window/win_export.py +9 -7
  110. tryton/gui/window/win_form.py +73 -39
  111. tryton/gui/window/win_import.py +5 -6
  112. tryton/gui/window/wizard.py +11 -11
  113. tryton/jsonrpc.py +2 -2
  114. tryton/plugins/__init__.py +0 -1
  115. tryton/pyson.py +18 -18
  116. tryton/rpc.py +7 -5
  117. {tryton-7.4.8.dist-info → tryton-7.6.0.dist-info}/METADATA +6 -6
  118. {tryton-7.4.8.dist-info → tryton-7.6.0.dist-info}/RECORD +122 -120
  119. {tryton-7.4.8.data → tryton-7.6.0.data}/scripts/tryton +0 -0
  120. {tryton-7.4.8.dist-info → tryton-7.6.0.dist-info}/WHEEL +0 -0
  121. {tryton-7.4.8.dist-info → tryton-7.6.0.dist-info}/licenses/LICENSE +0 -0
  122. {tryton-7.4.8.dist-info → tryton-7.6.0.dist-info}/top_level.txt +0 -0
@@ -5,6 +5,12 @@
5
5
  msgid ""
6
6
  msgstr "Content-Type: text/plain; charset=utf-8\n"
7
7
 
8
+ msgid "Make this an _internal message"
9
+ msgstr "Maak dit een _intern bericht"
10
+
11
+ msgid "Send"
12
+ msgstr "Verzenden"
13
+
8
14
  msgid "specify alternate config file"
9
15
  msgstr "specificeer een alternatief configuratiebestand"
10
16
 
@@ -128,9 +134,6 @@ msgstr "Controleer URL: %s"
128
134
  msgid "Unable to check for new version."
129
135
  msgstr "Kon niet controleren op nieuwe versie."
130
136
 
131
- msgid "A new version is available!"
132
- msgstr "Er is een nieuwe versie beschikbaar!"
133
-
134
137
  msgid "Download"
135
138
  msgstr "Download"
136
139
 
@@ -623,9 +626,6 @@ msgstr "Bijlagen"
623
626
  msgid "Files"
624
627
  msgstr "Bestanden"
625
628
 
626
- msgid "Send"
627
- msgstr "Verzenden"
628
-
629
629
  msgid "Select File"
630
630
  msgstr "Selecteer bestand"
631
631
 
@@ -832,6 +832,12 @@ msgstr "_Notities ..."
832
832
  msgid "Add a note to the record"
833
833
  msgstr "Voeg een notitie toe aan het record"
834
834
 
835
+ msgid "C_hat"
836
+ msgstr "C_hat"
837
+
838
+ msgid "Chat on the record"
839
+ msgstr "Chat op de record"
840
+
835
841
  msgid "_Actions..."
836
842
  msgstr "_Acties..."
837
843
 
@@ -950,11 +956,9 @@ msgstr "Vervang '%s' definitie?"
950
956
 
951
957
  #, python-format
952
958
  msgid "%d record saved."
953
- msgstr "%d record opgeslagen."
954
-
955
- #, python-format
956
- msgid "%d records saved."
957
- msgstr "%d records opgeslagen."
959
+ msgid_plural "%d records saved."
960
+ msgstr[0] "%d record opgeslagen."
961
+ msgstr[1] "%d records opgeslagen."
958
962
 
959
963
  msgid "Export failed"
960
964
  msgstr "Exporteren mislukt"
@@ -1035,11 +1039,9 @@ msgstr "Importeren faalde"
1035
1039
 
1036
1040
  #, python-format
1037
1041
  msgid "%d record imported."
1038
- msgstr "%d record geïmporteerd."
1039
-
1040
- #, python-format
1041
- msgid "%d records imported."
1042
- msgstr "%d record geïmporteerd."
1042
+ msgid_plural "%d records imported."
1043
+ msgstr[0] "%d record geïmporteerd."
1044
+ msgstr[1] "%d records geïmporteerd."
1043
1045
 
1044
1046
  msgid "Search"
1045
1047
  msgstr "Zoeken"
@@ -1111,6 +1113,9 @@ msgstr "Opslaan als"
1111
1113
  msgid "Image size too large."
1112
1114
  msgstr "Afbeelding te groot."
1113
1115
 
1116
+ msgid "Reset Column Widths"
1117
+ msgstr "Reset kolombreedtes"
1118
+
1114
1119
  msgid "Copy"
1115
1120
  msgstr "Kopieer"
1116
1121
 
@@ -1189,6 +1194,10 @@ msgstr "Alle bestanden"
1189
1194
  msgid "Show plain text"
1190
1195
  msgstr "Laat platte tekst zien"
1191
1196
 
1197
+ #, python-format
1198
+ msgid "Select a color for \"%s\""
1199
+ msgstr "Selecteer een kleur voor \"%s\""
1200
+
1192
1201
  msgid "Add value"
1193
1202
  msgstr "Waarde toevoegen"
1194
1203
 
Binary file
@@ -5,6 +5,12 @@
5
5
  msgid ""
6
6
  msgstr "Content-Type: text/plain; charset=utf-8\n"
7
7
 
8
+ msgid "Make this an _internal message"
9
+ msgstr ""
10
+
11
+ msgid "Send"
12
+ msgstr "Wyślij"
13
+
8
14
  msgid "specify alternate config file"
9
15
  msgstr "podaj alternatywny plik konfiguracji"
10
16
 
@@ -127,9 +133,6 @@ msgstr "Sprawdź URL: %s"
127
133
  msgid "Unable to check for new version."
128
134
  msgstr "Nie można sprawdzić dostępności nowej wersji."
129
135
 
130
- msgid "A new version is available!"
131
- msgstr "Nowa wersja jest dostępna!"
132
-
133
136
  msgid "Download"
134
137
  msgstr "Pobierz"
135
138
 
@@ -622,9 +625,6 @@ msgstr "Załączniki"
622
625
  msgid "Files"
623
626
  msgstr "Pliki"
624
627
 
625
- msgid "Send"
626
- msgstr "Wyślij"
627
-
628
628
  msgid "Select File"
629
629
  msgstr "Wybierz plik"
630
630
 
@@ -831,6 +831,13 @@ msgstr "Notatki..."
831
831
  msgid "Add a note to the record"
832
832
  msgstr "Dodaj notatkę do rekordu"
833
833
 
834
+ msgid "C_hat"
835
+ msgstr ""
836
+
837
+ #, fuzzy
838
+ msgid "Chat on the record"
839
+ msgstr "Dodaj notatkę do rekordu"
840
+
834
841
  msgid "_Actions..."
835
842
  msgstr "Akcje..."
836
843
 
@@ -949,13 +956,12 @@ msgstr "Jaka jest nazwa tego eksportu?"
949
956
  msgid "Override '%s' definition?"
950
957
  msgstr "Czy nadpisać definicję '%s'?"
951
958
 
952
- #, python-format
959
+ #, fuzzy, python-format
953
960
  msgid "%d record saved."
954
- msgstr "%d rekord został zapisany."
955
-
956
- #, python-format
957
- msgid "%d records saved."
958
- msgstr "%d rekordy zostały zapisane."
961
+ msgid_plural "%d records saved."
962
+ msgstr[0] "%d rekord został zapisany."
963
+ msgstr[1] "%d rekord został zapisany."
964
+ msgstr[2] "%d rekord został zapisany."
959
965
 
960
966
  msgid "Export failed"
961
967
  msgstr "Eksport nie powiódł się"
@@ -1035,13 +1041,12 @@ msgstr "Błąd"
1035
1041
  msgid "Import failed"
1036
1042
  msgstr "Import nie powiódł się"
1037
1043
 
1038
- #, python-format
1044
+ #, fuzzy, python-format
1039
1045
  msgid "%d record imported."
1040
- msgstr "Rekord %d został zaimportowany."
1041
-
1042
- #, python-format
1043
- msgid "%d records imported."
1044
- msgstr "Rekordy %d zostały zaimportowane."
1046
+ msgid_plural "%d records imported."
1047
+ msgstr[0] "Rekord %d został zaimportowany."
1048
+ msgstr[1] "Rekord %d został zaimportowany."
1049
+ msgstr[2] "Rekord %d został zaimportowany."
1045
1050
 
1046
1051
  msgid "Search"
1047
1052
  msgstr "Szukaj"
@@ -1113,6 +1118,10 @@ msgstr "Zapisz jako"
1113
1118
  msgid "Image size too large."
1114
1119
  msgstr "Za duży rozmiar obrazka."
1115
1120
 
1121
+ #, fuzzy
1122
+ msgid "Reset Column Widths"
1123
+ msgstr "Zapisz szerokość kolumny"
1124
+
1116
1125
  msgid "Copy"
1117
1126
  msgstr "Kopiuj"
1118
1127
 
@@ -1191,6 +1200,10 @@ msgstr "Wszystkie pliki"
1191
1200
  msgid "Show plain text"
1192
1201
  msgstr "Pokaż tekst"
1193
1202
 
1203
+ #, fuzzy, python-format
1204
+ msgid "Select a color for \"%s\""
1205
+ msgstr "Wybierz kolor"
1206
+
1194
1207
  msgid "Add value"
1195
1208
  msgstr "Dodaj wartość"
1196
1209
 
Binary file