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.
- tryton/__init__.py +1 -1
- tryton/action/main.py +32 -43
- tryton/bus.py +2 -0
- tryton/client.py +3 -0
- tryton/common/button.py +3 -1
- tryton/common/common.py +55 -43
- tryton/common/datetime_.py +14 -2
- tryton/common/domain_inversion.py +10 -10
- tryton/common/domain_parser.py +5 -2
- tryton/common/popup_menu.py +7 -0
- tryton/common/selection.py +3 -1
- tryton/config.py +22 -5
- tryton/data/locale/bg/LC_MESSAGES/tryton.mo +0 -0
- tryton/data/locale/bg/LC_MESSAGES/tryton.po +45 -39
- tryton/data/locale/ca/LC_MESSAGES/tryton.mo +0 -0
- tryton/data/locale/ca/LC_MESSAGES/tryton.po +41 -35
- tryton/data/locale/cs/LC_MESSAGES/tryton.mo +0 -0
- tryton/data/locale/cs/LC_MESSAGES/tryton.po +46 -39
- tryton/data/locale/de/LC_MESSAGES/tryton.mo +0 -0
- tryton/data/locale/de/LC_MESSAGES/tryton.po +41 -35
- tryton/data/locale/es/LC_MESSAGES/tryton.mo +0 -0
- tryton/data/locale/es/LC_MESSAGES/tryton.po +41 -35
- tryton/data/locale/es_419/LC_MESSAGES/tryton.mo +0 -0
- tryton/data/locale/es_419/LC_MESSAGES/tryton.po +171 -167
- tryton/data/locale/et/LC_MESSAGES/tryton.mo +0 -0
- tryton/data/locale/et/LC_MESSAGES/tryton.po +47 -39
- tryton/data/locale/fa/LC_MESSAGES/tryton.mo +0 -0
- tryton/data/locale/fa/LC_MESSAGES/tryton.po +46 -38
- tryton/data/locale/fi/LC_MESSAGES/tryton.mo +0 -0
- tryton/data/locale/fi/LC_MESSAGES/tryton.po +38 -32
- tryton/data/locale/fr/LC_MESSAGES/tryton.mo +0 -0
- tryton/data/locale/fr/LC_MESSAGES/tryton.po +42 -36
- tryton/data/locale/hu/LC_MESSAGES/tryton.mo +0 -0
- tryton/data/locale/hu/LC_MESSAGES/tryton.po +44 -34
- tryton/data/locale/id/LC_MESSAGES/tryton.mo +0 -0
- tryton/data/locale/id/LC_MESSAGES/tryton.po +40 -34
- tryton/data/locale/it/LC_MESSAGES/tryton.mo +0 -0
- tryton/data/locale/it/LC_MESSAGES/tryton.po +44 -34
- tryton/data/locale/ja_JP/LC_MESSAGES/tryton.mo +0 -0
- tryton/data/locale/lo/LC_MESSAGES/tryton.mo +0 -0
- tryton/data/locale/lo/LC_MESSAGES/tryton.po +46 -38
- tryton/data/locale/lt/LC_MESSAGES/tryton.mo +0 -0
- tryton/data/locale/lt/LC_MESSAGES/tryton.po +47 -37
- tryton/data/locale/nl/LC_MESSAGES/tryton.mo +0 -0
- tryton/data/locale/nl/LC_MESSAGES/tryton.po +41 -35
- tryton/data/locale/pl/LC_MESSAGES/tryton.mo +0 -0
- tryton/data/locale/pl/LC_MESSAGES/tryton.po +45 -35
- tryton/data/locale/pt/LC_MESSAGES/tryton.mo +0 -0
- tryton/data/locale/pt/LC_MESSAGES/tryton.po +46 -38
- tryton/data/locale/ro/LC_MESSAGES/tryton.mo +0 -0
- tryton/data/locale/ro/LC_MESSAGES/tryton.po +50 -48
- tryton/data/locale/ru/LC_MESSAGES/tryton.mo +0 -0
- tryton/data/locale/ru/LC_MESSAGES/tryton.po +45 -39
- tryton/data/locale/sl/LC_MESSAGES/tryton.mo +0 -0
- tryton/data/locale/sl/LC_MESSAGES/tryton.po +47 -38
- tryton/data/locale/tr/LC_MESSAGES/tryton.mo +0 -0
- tryton/data/locale/tr/LC_MESSAGES/tryton.po +39 -33
- tryton/data/locale/uk/LC_MESSAGES/tryton.mo +0 -0
- tryton/data/locale/uk/LC_MESSAGES/tryton.po +43 -35
- tryton/data/locale/zh_CN/LC_MESSAGES/tryton.mo +0 -0
- tryton/data/locale/zh_CN/LC_MESSAGES/tryton.po +45 -35
- tryton/data/pixmaps/tryton/tryton-icon.svg +1 -0
- tryton/gui/main.py +54 -61
- tryton/gui/window/dblogin.py +27 -10
- tryton/gui/window/form.py +21 -53
- tryton/gui/window/infobar.py +9 -4
- tryton/gui/window/log.py +95 -0
- tryton/gui/window/view_board/action.py +0 -4
- tryton/gui/window/view_form/model/field.py +36 -14
- tryton/gui/window/view_form/model/record.py +22 -9
- tryton/gui/window/view_form/screen/screen.py +45 -76
- tryton/gui/window/view_form/view/calendar_.py +24 -11
- tryton/gui/window/view_form/view/calendar_gtk/toolbar.py +6 -5
- tryton/gui/window/view_form/view/form.py +14 -5
- tryton/gui/window/view_form/view/form_gtk/many2many.py +10 -1
- tryton/gui/window/view_form/view/form_gtk/many2one.py +1 -0
- tryton/gui/window/view_form/view/form_gtk/one2many.py +7 -7
- tryton/gui/window/view_form/view/form_gtk/textbox.py +0 -2
- tryton/gui/window/view_form/view/form_gtk/widget.py +8 -10
- tryton/gui/window/view_form/view/list_form.py +61 -5
- tryton/gui/window/view_form/view/list_gtk/editabletree.py +13 -3
- tryton/gui/window/view_form/view/list_gtk/widget.py +97 -27
- tryton/gui/window/win_form.py +6 -5
- tryton/rpc.py +13 -15
- tryton/tests/test_common.py +46 -0
- tryton/tests/test_common_domain_parser.py +24 -24
- {tryton-6.6.8.dist-info → tryton-6.8.1.dist-info}/METADATA +6 -6
- {tryton-6.6.8.dist-info → tryton-6.8.1.dist-info}/RECORD +92 -89
- {tryton-6.6.8.data → tryton-6.8.1.data}/scripts/tryton +0 -0
- {tryton-6.6.8.dist-info → tryton-6.8.1.dist-info}/LICENSE +0 -0
- {tryton-6.6.8.dist-info → tryton-6.8.1.dist-info}/WHEEL +0 -0
- {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
|
-
|
|
35
|
-
|
|
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
|
|
1094
|
-
msgstr "
|
|
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"
|
|
Binary file
|