tryton 7.0.7__py3-none-any.whl → 7.4.4__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 (105) hide show
  1. tryton/__init__.py +1 -1
  2. tryton/cache.py +34 -0
  3. tryton/common/common.py +149 -73
  4. tryton/common/completion.py +2 -2
  5. tryton/common/datetime_.py +3 -1
  6. tryton/common/domain_inversion.py +2 -1
  7. tryton/common/domain_parser.py +22 -11
  8. tryton/common/popup_menu.py +1 -1
  9. tryton/common/selection.py +6 -3
  10. tryton/common/tempfile.py +34 -0
  11. tryton/config.py +4 -5
  12. tryton/data/locale/bg/LC_MESSAGES/tryton.mo +0 -0
  13. tryton/data/locale/bg/LC_MESSAGES/tryton.po +69 -20
  14. tryton/data/locale/ca/LC_MESSAGES/tryton.mo +0 -0
  15. tryton/data/locale/ca/LC_MESSAGES/tryton.po +70 -25
  16. tryton/data/locale/cs/LC_MESSAGES/tryton.mo +0 -0
  17. tryton/data/locale/cs/LC_MESSAGES/tryton.po +68 -21
  18. tryton/data/locale/de/LC_MESSAGES/tryton.mo +0 -0
  19. tryton/data/locale/de/LC_MESSAGES/tryton.po +71 -26
  20. tryton/data/locale/es/LC_MESSAGES/tryton.mo +0 -0
  21. tryton/data/locale/es/LC_MESSAGES/tryton.po +68 -23
  22. tryton/data/locale/es_419/LC_MESSAGES/tryton.mo +0 -0
  23. tryton/data/locale/es_419/LC_MESSAGES/tryton.po +72 -22
  24. tryton/data/locale/et/LC_MESSAGES/tryton.mo +0 -0
  25. tryton/data/locale/et/LC_MESSAGES/tryton.po +73 -23
  26. tryton/data/locale/fa/LC_MESSAGES/tryton.mo +0 -0
  27. tryton/data/locale/fa/LC_MESSAGES/tryton.po +74 -25
  28. tryton/data/locale/fi/LC_MESSAGES/tryton.mo +0 -0
  29. tryton/data/locale/fi/LC_MESSAGES/tryton.po +63 -20
  30. tryton/data/locale/fr/LC_MESSAGES/tryton.mo +0 -0
  31. tryton/data/locale/fr/LC_MESSAGES/tryton.po +73 -28
  32. tryton/data/locale/hu/LC_MESSAGES/tryton.mo +0 -0
  33. tryton/data/locale/hu/LC_MESSAGES/tryton.po +75 -23
  34. tryton/data/locale/id/LC_MESSAGES/tryton.mo +0 -0
  35. tryton/data/locale/id/LC_MESSAGES/tryton.po +72 -23
  36. tryton/data/locale/it/LC_MESSAGES/tryton.mo +0 -0
  37. tryton/data/locale/it/LC_MESSAGES/tryton.po +73 -24
  38. tryton/data/locale/ja_JP/LC_MESSAGES/tryton.mo +0 -0
  39. tryton/data/locale/lo/LC_MESSAGES/tryton.mo +0 -0
  40. tryton/data/locale/lo/LC_MESSAGES/tryton.po +74 -25
  41. tryton/data/locale/lt/LC_MESSAGES/tryton.mo +0 -0
  42. tryton/data/locale/lt/LC_MESSAGES/tryton.po +73 -23
  43. tryton/data/locale/nl/LC_MESSAGES/tryton.mo +0 -0
  44. tryton/data/locale/nl/LC_MESSAGES/tryton.po +72 -27
  45. tryton/data/locale/pl/LC_MESSAGES/tryton.mo +0 -0
  46. tryton/data/locale/pl/LC_MESSAGES/tryton.po +113 -78
  47. tryton/data/locale/pt/LC_MESSAGES/tryton.mo +0 -0
  48. tryton/data/locale/pt/LC_MESSAGES/tryton.po +73 -24
  49. tryton/data/locale/ro/LC_MESSAGES/tryton.mo +0 -0
  50. tryton/data/locale/ro/LC_MESSAGES/tryton.po +87 -36
  51. tryton/data/locale/ru/LC_MESSAGES/tryton.mo +0 -0
  52. tryton/data/locale/ru/LC_MESSAGES/tryton.po +72 -25
  53. tryton/data/locale/sl/LC_MESSAGES/tryton.mo +0 -0
  54. tryton/data/locale/sl/LC_MESSAGES/tryton.po +77 -26
  55. tryton/data/locale/tr/LC_MESSAGES/tryton.mo +0 -0
  56. tryton/data/locale/tr/LC_MESSAGES/tryton.po +64 -20
  57. tryton/data/locale/uk/LC_MESSAGES/tryton.mo +0 -0
  58. tryton/data/locale/uk/LC_MESSAGES/tryton.po +75 -23
  59. tryton/data/locale/zh_CN/LC_MESSAGES/tryton.mo +0 -0
  60. tryton/data/locale/zh_CN/LC_MESSAGES/tryton.po +76 -24
  61. tryton/device_cookie.py +1 -1
  62. tryton/gui/main.py +14 -12
  63. tryton/gui/window/about.py +1 -1
  64. tryton/gui/window/dblogin.py +2 -2
  65. tryton/gui/window/email_.py +2 -2
  66. tryton/gui/window/form.py +10 -5
  67. tryton/gui/window/log.py +24 -2
  68. tryton/gui/window/tabcontent.py +2 -2
  69. tryton/gui/window/view_form/model/field.py +84 -34
  70. tryton/gui/window/view_form/model/group.py +7 -2
  71. tryton/gui/window/view_form/model/record.py +70 -31
  72. tryton/gui/window/view_form/screen/screen.py +98 -47
  73. tryton/gui/window/view_form/view/calendar_gtk/calendar_.py +15 -9
  74. tryton/gui/window/view_form/view/form.py +6 -12
  75. tryton/gui/window/view_form/view/form_gtk/char.py +5 -6
  76. tryton/gui/window/view_form/view/form_gtk/dictionary.py +49 -29
  77. tryton/gui/window/view_form/view/form_gtk/document.py +15 -10
  78. tryton/gui/window/view_form/view/form_gtk/many2many.py +49 -7
  79. tryton/gui/window/view_form/view/form_gtk/many2one.py +21 -13
  80. tryton/gui/window/view_form/view/form_gtk/multiselection.py +15 -5
  81. tryton/gui/window/view_form/view/form_gtk/one2many.py +42 -10
  82. tryton/gui/window/view_form/view/form_gtk/state_widget.py +6 -2
  83. tryton/gui/window/view_form/view/form_gtk/url.py +8 -4
  84. tryton/gui/window/view_form/view/graph_gtk/graph.py +3 -1
  85. tryton/gui/window/view_form/view/list.py +116 -48
  86. tryton/gui/window/view_form/view/list_gtk/editabletree.py +2 -1
  87. tryton/gui/window/view_form/view/list_gtk/widget.py +58 -23
  88. tryton/gui/window/view_form/view/screen_container.py +3 -5
  89. tryton/gui/window/win_csv.py +6 -12
  90. tryton/gui/window/win_export.py +49 -26
  91. tryton/gui/window/win_form.py +9 -7
  92. tryton/gui/window/win_import.py +45 -15
  93. tryton/gui/window/wizard.py +13 -10
  94. tryton/jsonrpc.py +75 -34
  95. tryton/plugins/__init__.py +5 -3
  96. tryton/pyson.py +57 -6
  97. tryton/rpc.py +18 -0
  98. tryton/tests/test_common_domain_parser.py +31 -2
  99. tryton/translate.py +5 -2
  100. {tryton-7.0.7.data → tryton-7.4.4.data}/scripts/tryton +8 -7
  101. {tryton-7.0.7.dist-info → tryton-7.4.4.dist-info}/METADATA +6 -6
  102. {tryton-7.0.7.dist-info → tryton-7.4.4.dist-info}/RECORD +105 -103
  103. {tryton-7.0.7.dist-info → tryton-7.4.4.dist-info}/WHEEL +1 -1
  104. {tryton-7.0.7.dist-info → tryton-7.4.4.dist-info}/LICENSE +0 -0
  105. {tryton-7.0.7.dist-info → tryton-7.4.4.dist-info}/top_level.txt +0 -0
@@ -30,6 +30,10 @@ msgstr "specificeer de hostnaam:poort"
30
30
  msgid "disable thread usage"
31
31
  msgstr "schakel gebruik van threads uit"
32
32
 
33
+ #, python-format
34
+ msgid "Invalid response id (%s) expected %s"
35
+ msgstr "Ongeldige reactie id (%s) verwacht werd %s"
36
+
33
37
  #, python-format
34
38
  msgid "Unable to set locale %s"
35
39
  msgstr "Kan omgeving %s niet instellen"
@@ -80,8 +84,8 @@ msgstr "Nee"
80
84
  msgid "Yes"
81
85
  msgstr "Ja"
82
86
 
83
- msgid "Concurrency Exception"
84
- msgstr "Simultaan gebruik error"
87
+ msgid "Concurrency Warning"
88
+ msgstr "Simultaan gebruik waarschuwing"
85
89
 
86
90
  msgid "This record has been modified while you were editing it."
87
91
  msgstr "Dit record werd gewijzigd terwijl u het aan het bewerken was."
@@ -111,6 +115,9 @@ msgstr "Sluiten"
111
115
  msgid "Application Error"
112
116
  msgstr "Applicatiefout"
113
117
 
118
+ msgid "Details"
119
+ msgstr "Details"
120
+
114
121
  msgid "Report Bug"
115
122
  msgstr "Programmafout melden"
116
123
 
@@ -127,18 +134,35 @@ msgstr "Er is een nieuwe versie beschikbaar!"
127
134
  msgid "Download"
128
135
  msgstr "Download"
129
136
 
137
+ msgid "Concurrency Exception"
138
+ msgstr "Simultaan gebruik error"
139
+
130
140
  msgid "Could not get a session."
131
141
  msgstr "Kan geen sessie krijgen."
132
142
 
143
+ #, python-format
144
+ msgid "Error: \"%s\". Try again later."
145
+ msgstr "Error: \"%s\". Probeer het later nog eens."
146
+
133
147
  msgid "Too many requests. Try again later."
134
148
  msgstr "Te veel verzoeken. Probeer het later nog eens."
135
149
 
136
- msgid "Not found."
137
- msgstr "Niet gevonden."
138
-
139
150
  msgid "Not Found."
140
151
  msgstr "Niet gevonden."
141
152
 
153
+ msgid "Reset forgotten password"
154
+ msgstr "Reset vergeten wachtwoord"
155
+
156
+ msgid "Send you an email to reset your password."
157
+ msgstr "Stuurt u een email om het wachtwoord te resetten."
158
+
159
+ msgid ""
160
+ "A request to reset your password has been sent.\n"
161
+ "Please check your mailbox."
162
+ msgstr ""
163
+ "Een verzoek om uw wachtwoord te resetten is verstuurd.\n"
164
+ "Controller uw mailbox."
165
+
142
166
  msgid "..."
143
167
  msgstr "..."
144
168
 
@@ -218,8 +242,8 @@ msgstr "Rapport..."
218
242
  msgid "Print..."
219
243
  msgstr "Afdrukken..."
220
244
 
221
- msgid "E-Mail..."
222
- msgstr "E-mail..."
245
+ msgid "Email..."
246
+ msgstr "Email..."
223
247
 
224
248
  msgid "Bold"
225
249
  msgstr "Vet"
@@ -329,12 +353,6 @@ msgstr "Help"
329
353
  msgid "No result found."
330
354
  msgstr "Geen resultaat gevonden."
331
355
 
332
- msgid "Favorites"
333
- msgstr "Favorieten"
334
-
335
- msgid "Manage..."
336
- msgstr "Beheren..."
337
-
338
356
  msgid "Action"
339
357
  msgstr "Actie"
340
358
 
@@ -565,6 +583,9 @@ msgstr "Verbind met Tryton server"
565
583
  msgid "Profile:"
566
584
  msgstr "Profiel:"
567
585
 
586
+ msgid "Manage..."
587
+ msgstr "Beheren..."
588
+
568
589
  msgid "Host / Database information"
569
590
  msgstr "Hostnaam / database informatie"
570
591
 
@@ -575,8 +596,8 @@ msgid "Unable to complete email entry"
575
596
  msgstr "E-mailinvoer kan niet worden voltooid"
576
597
 
577
598
  #, python-format
578
- msgid "E-mail %s"
579
- msgstr "E-mail %s"
599
+ msgid "Email %s"
600
+ msgstr "Email %s"
580
601
 
581
602
  msgid "To:"
582
603
  msgstr "Aan:"
@@ -711,6 +732,12 @@ msgstr "Model:"
711
732
  msgid "ID:"
712
733
  msgstr "ID:"
713
734
 
735
+ msgid "Module:"
736
+ msgstr "Module:"
737
+
738
+ msgid "XML ID:"
739
+ msgstr "XML id:"
740
+
714
741
  msgid "Created by:"
715
742
  msgstr "Aangemaakt door:"
716
743
 
@@ -817,11 +844,11 @@ msgstr "_Rapport..."
817
844
  msgid "_Print..."
818
845
  msgstr "_Afdrukken..."
819
846
 
820
- msgid "_E-Mail..."
821
- msgstr "_E-mail..."
847
+ msgid "_Email..."
848
+ msgstr "_Email..."
822
849
 
823
- msgid "Send an e-mail using the record"
824
- msgstr "Stuur een e-mail met behulp van het record"
850
+ msgid "Send an email using the record"
851
+ msgstr "Stuur een email met behulp van het record"
825
852
 
826
853
  msgid "_Export Data..."
827
854
  msgstr "_Exporteer gegevens..."
@@ -872,6 +899,9 @@ msgstr "Veldnaam"
872
899
  msgid "CSV Export: %s"
873
900
  msgstr "Exporteer CSV: %s"
874
901
 
902
+ msgid "Open"
903
+ msgstr "Openen"
904
+
875
905
  msgid "_Save Export"
876
906
  msgstr "_Exportgegevens opslaan"
877
907
 
@@ -887,12 +917,6 @@ msgstr "<b>Voorgedefinieerde exportinstellingen</b>"
887
917
  msgid "Name"
888
918
  msgstr "Naam"
889
919
 
890
- msgid "Open"
891
- msgstr "Openen"
892
-
893
- msgid "Save"
894
- msgstr "Opslaan"
895
-
896
920
  msgid "Listed Records"
897
921
  msgstr "Weergegeven records"
898
922
 
@@ -950,6 +974,9 @@ msgstr "Opslaan en nieuw"
950
974
  msgid "Add and New"
951
975
  msgstr "Toevoegen en nieuw"
952
976
 
977
+ msgid "Save"
978
+ msgstr "Opslaan"
979
+
953
980
  msgid "Add"
954
981
  msgstr "Toevoegen"
955
982
 
@@ -975,6 +1002,9 @@ msgstr "Verwijderen van geselecteerde record <Ins> ongedaan maken"
975
1002
  msgid "CSV Import: %s"
976
1003
  msgstr "Importeer CSV: %s"
977
1004
 
1005
+ msgid "Import"
1006
+ msgstr "Importeer"
1007
+
978
1008
  msgid "_Auto-Detect"
979
1009
  msgstr "_Automatische detectie"
980
1010
 
@@ -1084,8 +1114,17 @@ msgstr "Afbeelding te groot."
1084
1114
  msgid "Copy"
1085
1115
  msgstr "Kopieer"
1086
1116
 
1087
- msgid "Paste"
1088
- msgstr "Plakken"
1117
+ msgid "Copy Row"
1118
+ msgstr "Kopieer regel"
1119
+
1120
+ msgid "Copy Rows"
1121
+ msgstr "Kopieer regels"
1122
+
1123
+ msgid "Copy Column"
1124
+ msgstr "Kopieer kolom"
1125
+
1126
+ msgid "Paste Rows"
1127
+ msgstr "Plak regels"
1089
1128
 
1090
1129
  msgid ".."
1091
1130
  msgstr ".."
@@ -1166,6 +1205,9 @@ msgstr "Bestaand record toevoegen"
1166
1205
  msgid "Remove selected record"
1167
1206
  msgstr "Geselecteerd record verwijderen"
1168
1207
 
1208
+ msgid "Restore selected record"
1209
+ msgstr "Geselecteerd record herstellen"
1210
+
1169
1211
  msgid "Open the record <F2>"
1170
1212
  msgstr "Open het record <F2>"
1171
1213
 
@@ -1181,6 +1223,9 @@ msgstr "Bewerk geselecteerde record"
1181
1223
  msgid "Delete selected record"
1182
1224
  msgstr "Geselecteerde record verwijderen"
1183
1225
 
1226
+ msgid "Undelete selected record"
1227
+ msgstr "Geselecteerd record ongedaan maken"
1228
+
1184
1229
  #, python-format
1185
1230
  msgid "%s%%"
1186
1231
  msgstr "%s%%"
Binary file