tryton 6.6.8__py3-none-any.whl → 6.8.1__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 (92) hide show
  1. tryton/__init__.py +1 -1
  2. tryton/action/main.py +32 -43
  3. tryton/bus.py +2 -0
  4. tryton/client.py +3 -0
  5. tryton/common/button.py +3 -1
  6. tryton/common/common.py +55 -43
  7. tryton/common/datetime_.py +14 -2
  8. tryton/common/domain_inversion.py +10 -10
  9. tryton/common/domain_parser.py +5 -2
  10. tryton/common/popup_menu.py +7 -0
  11. tryton/common/selection.py +3 -1
  12. tryton/config.py +22 -5
  13. tryton/data/locale/bg/LC_MESSAGES/tryton.mo +0 -0
  14. tryton/data/locale/bg/LC_MESSAGES/tryton.po +45 -39
  15. tryton/data/locale/ca/LC_MESSAGES/tryton.mo +0 -0
  16. tryton/data/locale/ca/LC_MESSAGES/tryton.po +41 -35
  17. tryton/data/locale/cs/LC_MESSAGES/tryton.mo +0 -0
  18. tryton/data/locale/cs/LC_MESSAGES/tryton.po +46 -39
  19. tryton/data/locale/de/LC_MESSAGES/tryton.mo +0 -0
  20. tryton/data/locale/de/LC_MESSAGES/tryton.po +41 -35
  21. tryton/data/locale/es/LC_MESSAGES/tryton.mo +0 -0
  22. tryton/data/locale/es/LC_MESSAGES/tryton.po +41 -35
  23. tryton/data/locale/es_419/LC_MESSAGES/tryton.mo +0 -0
  24. tryton/data/locale/es_419/LC_MESSAGES/tryton.po +171 -167
  25. tryton/data/locale/et/LC_MESSAGES/tryton.mo +0 -0
  26. tryton/data/locale/et/LC_MESSAGES/tryton.po +47 -39
  27. tryton/data/locale/fa/LC_MESSAGES/tryton.mo +0 -0
  28. tryton/data/locale/fa/LC_MESSAGES/tryton.po +46 -38
  29. tryton/data/locale/fi/LC_MESSAGES/tryton.mo +0 -0
  30. tryton/data/locale/fi/LC_MESSAGES/tryton.po +38 -32
  31. tryton/data/locale/fr/LC_MESSAGES/tryton.mo +0 -0
  32. tryton/data/locale/fr/LC_MESSAGES/tryton.po +42 -36
  33. tryton/data/locale/hu/LC_MESSAGES/tryton.mo +0 -0
  34. tryton/data/locale/hu/LC_MESSAGES/tryton.po +44 -34
  35. tryton/data/locale/id/LC_MESSAGES/tryton.mo +0 -0
  36. tryton/data/locale/id/LC_MESSAGES/tryton.po +40 -34
  37. tryton/data/locale/it/LC_MESSAGES/tryton.mo +0 -0
  38. tryton/data/locale/it/LC_MESSAGES/tryton.po +44 -34
  39. tryton/data/locale/ja_JP/LC_MESSAGES/tryton.mo +0 -0
  40. tryton/data/locale/lo/LC_MESSAGES/tryton.mo +0 -0
  41. tryton/data/locale/lo/LC_MESSAGES/tryton.po +46 -38
  42. tryton/data/locale/lt/LC_MESSAGES/tryton.mo +0 -0
  43. tryton/data/locale/lt/LC_MESSAGES/tryton.po +47 -37
  44. tryton/data/locale/nl/LC_MESSAGES/tryton.mo +0 -0
  45. tryton/data/locale/nl/LC_MESSAGES/tryton.po +41 -35
  46. tryton/data/locale/pl/LC_MESSAGES/tryton.mo +0 -0
  47. tryton/data/locale/pl/LC_MESSAGES/tryton.po +45 -35
  48. tryton/data/locale/pt/LC_MESSAGES/tryton.mo +0 -0
  49. tryton/data/locale/pt/LC_MESSAGES/tryton.po +46 -38
  50. tryton/data/locale/ro/LC_MESSAGES/tryton.mo +0 -0
  51. tryton/data/locale/ro/LC_MESSAGES/tryton.po +50 -48
  52. tryton/data/locale/ru/LC_MESSAGES/tryton.mo +0 -0
  53. tryton/data/locale/ru/LC_MESSAGES/tryton.po +45 -39
  54. tryton/data/locale/sl/LC_MESSAGES/tryton.mo +0 -0
  55. tryton/data/locale/sl/LC_MESSAGES/tryton.po +47 -38
  56. tryton/data/locale/tr/LC_MESSAGES/tryton.mo +0 -0
  57. tryton/data/locale/tr/LC_MESSAGES/tryton.po +39 -33
  58. tryton/data/locale/uk/LC_MESSAGES/tryton.mo +0 -0
  59. tryton/data/locale/uk/LC_MESSAGES/tryton.po +43 -35
  60. tryton/data/locale/zh_CN/LC_MESSAGES/tryton.mo +0 -0
  61. tryton/data/locale/zh_CN/LC_MESSAGES/tryton.po +45 -35
  62. tryton/data/pixmaps/tryton/tryton-icon.svg +1 -0
  63. tryton/gui/main.py +54 -61
  64. tryton/gui/window/dblogin.py +27 -10
  65. tryton/gui/window/form.py +21 -53
  66. tryton/gui/window/infobar.py +9 -4
  67. tryton/gui/window/log.py +95 -0
  68. tryton/gui/window/view_board/action.py +0 -4
  69. tryton/gui/window/view_form/model/field.py +36 -14
  70. tryton/gui/window/view_form/model/record.py +22 -9
  71. tryton/gui/window/view_form/screen/screen.py +45 -76
  72. tryton/gui/window/view_form/view/calendar_.py +24 -11
  73. tryton/gui/window/view_form/view/calendar_gtk/toolbar.py +6 -5
  74. tryton/gui/window/view_form/view/form.py +14 -5
  75. tryton/gui/window/view_form/view/form_gtk/many2many.py +10 -1
  76. tryton/gui/window/view_form/view/form_gtk/many2one.py +1 -0
  77. tryton/gui/window/view_form/view/form_gtk/one2many.py +7 -7
  78. tryton/gui/window/view_form/view/form_gtk/textbox.py +0 -2
  79. tryton/gui/window/view_form/view/form_gtk/widget.py +8 -10
  80. tryton/gui/window/view_form/view/list_form.py +61 -5
  81. tryton/gui/window/view_form/view/list_gtk/editabletree.py +13 -3
  82. tryton/gui/window/view_form/view/list_gtk/widget.py +97 -27
  83. tryton/gui/window/win_form.py +6 -5
  84. tryton/rpc.py +13 -15
  85. tryton/tests/test_common.py +46 -0
  86. tryton/tests/test_common_domain_parser.py +24 -24
  87. {tryton-6.6.8.dist-info → tryton-6.8.1.dist-info}/METADATA +6 -6
  88. {tryton-6.6.8.dist-info → tryton-6.8.1.dist-info}/RECORD +92 -89
  89. {tryton-6.6.8.data → tryton-6.8.1.data}/scripts/tryton +0 -0
  90. {tryton-6.6.8.dist-info → tryton-6.8.1.dist-info}/LICENSE +0 -0
  91. {tryton-6.6.8.dist-info → tryton-6.8.1.dist-info}/WHEEL +0 -0
  92. {tryton-6.6.8.dist-info → tryton-6.8.1.dist-info}/top_level.txt +0 -0
@@ -31,9 +31,8 @@ msgstr "Indica el usuario"
31
31
  msgid "specify the server hostname:port"
32
32
  msgstr "Indica el nombre:puerto del servidor"
33
33
 
34
- #, python-format
35
- msgid "Unable to write config file %s."
36
- msgstr "No se ha podido escribir el archivo de configuración %s."
34
+ msgid "disable thread usage"
35
+ msgstr "desactivar el uso de hilos"
37
36
 
38
37
  #, python-format
39
38
  msgid "Unable to set locale %s"
@@ -70,12 +69,6 @@ msgstr "Aceptar"
70
69
  msgid "Your selection:"
71
70
  msgstr "Su selección:"
72
71
 
73
- msgid "Select"
74
- msgstr "Seleccionar"
75
-
76
- msgid "Save"
77
- msgstr "Guardar"
78
-
79
72
  msgid "Save As..."
80
73
  msgstr "Guardar como..."
81
74
 
@@ -204,6 +197,9 @@ msgstr "Plantilla"
204
197
  msgid "Edit..."
205
198
  msgstr "Editar..."
206
199
 
200
+ msgid "View Logs..."
201
+ msgstr "Ver registros..."
202
+
207
203
  msgid "Attachments..."
208
204
  msgstr "Adjuntos..."
209
205
 
@@ -597,6 +593,9 @@ msgstr "Seleccionar un archivo"
597
593
  msgid "Remove File"
598
594
  msgstr "Eliminar archivo"
599
595
 
596
+ msgid "Select"
597
+ msgstr "Seleccionar"
598
+
600
599
  msgid "Add..."
601
600
  msgstr "Añadir..."
602
601
 
@@ -620,24 +619,6 @@ msgstr "Nota (%d/%d)"
620
619
  msgid "You have to select one record."
621
620
  msgstr "Debe elegir un registro."
622
621
 
623
- msgid "ID:"
624
- msgstr "ID:"
625
-
626
- msgid "Created by:"
627
- msgstr "Creado por:"
628
-
629
- msgid "Created at:"
630
- msgstr "Creado el:"
631
-
632
- msgid "Edited by:"
633
- msgstr "Editado por:"
634
-
635
- msgid "Edited at:"
636
- msgstr "Editado el:"
637
-
638
- msgid "Model:"
639
- msgstr "Modelo:"
640
-
641
622
  msgid "Are you sure to remove this record?"
642
623
  msgstr "¿Está seguro que quiere eliminar este registro?"
643
624
 
@@ -702,6 +683,28 @@ msgstr "Preferencias del límite de búsqueda"
702
683
  msgid "Limit:"
703
684
  msgstr "Límite:"
704
685
 
686
+ #, python-format
687
+ msgid "Logs (%s)"
688
+ msgstr "Registros (%s)"
689
+
690
+ msgid "Model:"
691
+ msgstr "Modelo:"
692
+
693
+ msgid "ID:"
694
+ msgstr "ID:"
695
+
696
+ msgid "Created by:"
697
+ msgstr "Creado por:"
698
+
699
+ msgid "Created at:"
700
+ msgstr "Creado el:"
701
+
702
+ msgid "Last Modified by:"
703
+ msgstr "Última modificación por:"
704
+
705
+ msgid "Last Modified at:"
706
+ msgstr "Última modificación el:"
707
+
705
708
  #, python-format
706
709
  msgid "Notes (%s)"
707
710
  msgstr "Notas (%s)"
@@ -869,6 +872,9 @@ msgstr "Nombre"
869
872
  msgid "Open"
870
873
  msgstr "Abrir"
871
874
 
875
+ msgid "Save"
876
+ msgstr "Guardar"
877
+
872
878
  msgid "Listed Records"
873
879
  msgstr "Registros listados"
874
880
 
@@ -1090,18 +1096,15 @@ msgstr "año anterior"
1090
1096
  msgid "next year"
1091
1097
  msgstr "año próximo"
1092
1098
 
1093
- msgid "Day View"
1094
- msgstr "Vista de día"
1095
-
1096
- msgid "Week View"
1097
- msgstr "Vista semanal"
1098
-
1099
- msgid "Month View"
1100
- msgstr "Vista mensual"
1099
+ msgid "Day"
1100
+ msgstr "Día"
1101
1101
 
1102
1102
  msgid "Week"
1103
1103
  msgstr "Semana"
1104
1104
 
1105
+ msgid "Month"
1106
+ msgstr "Mes"
1107
+
1105
1108
  msgid "Select..."
1106
1109
  msgstr "Seleccionar…"
1107
1110
 
@@ -1167,5 +1170,8 @@ msgstr "Debe guardar el registro antes de añadir traducciones."
1167
1170
  msgid "No other language available."
1168
1171
  msgstr "No hay otro idioma disponible."
1169
1172
 
1173
+ msgid "#ERROR"
1174
+ msgstr "#ERROR"
1175
+
1170
1176
  msgid "Translate view"
1171
1177
  msgstr "Traducir vista"