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
@@ -26,9 +26,8 @@ msgstr "adja meg a felhasználónevet"
26
26
  msgid "specify the server hostname:port"
27
27
  msgstr "adja meg a kiszolgálónév:portot"
28
28
 
29
- #, fuzzy, python-format
30
- msgid "Unable to write config file %s."
31
- msgstr "Nem lehet a következő konfigurációs fájlba írni: „%s”"
29
+ msgid "disable thread usage"
30
+ msgstr ""
32
31
 
33
32
  #, python-format
34
33
  msgid "Unable to set locale %s"
@@ -67,12 +66,6 @@ msgstr "OK"
67
66
  msgid "Your selection:"
68
67
  msgstr "Kiválasztva"
69
68
 
70
- msgid "Select"
71
- msgstr "Kiválaszt"
72
-
73
- msgid "Save"
74
- msgstr "Mentés"
75
-
76
69
  msgid "Save As..."
77
70
  msgstr "Mentés másként…"
78
71
 
@@ -205,6 +198,10 @@ msgstr "Sablon"
205
198
  msgid "Edit..."
206
199
  msgstr "Módosítás…"
207
200
 
201
+ #, fuzzy
202
+ msgid "View Logs..."
203
+ msgstr "Nap_ló megtekintése…"
204
+
208
205
  msgid "Attachments..."
209
206
  msgstr "Mellékletek..."
210
207
 
@@ -601,6 +598,9 @@ msgstr "Mind kijelölése"
601
598
  msgid "Remove File"
602
599
  msgstr "Fájl eltávolítása"
603
600
 
601
+ msgid "Select"
602
+ msgstr "Kiválaszt"
603
+
604
604
  msgid "Add..."
605
605
  msgstr "Hozzáadás..."
606
606
 
@@ -624,24 +624,6 @@ msgstr "Jegyzet (%d/%d)"
624
624
  msgid "You have to select one record."
625
625
  msgstr "Ki kell választania egy rekordot."
626
626
 
627
- msgid "ID:"
628
- msgstr "ID:"
629
-
630
- msgid "Created by:"
631
- msgstr "Létrehozta:"
632
-
633
- msgid "Created at:"
634
- msgstr "Létrehozás dátuma:"
635
-
636
- msgid "Edited by:"
637
- msgstr "Módosította:"
638
-
639
- msgid "Edited at:"
640
- msgstr "Módosítás dátuma:"
641
-
642
- msgid "Model:"
643
- msgstr "Elem:"
644
-
645
627
  msgid "Are you sure to remove this record?"
646
628
  msgstr "Biztos törölni szeretné?"
647
629
 
@@ -706,6 +688,30 @@ msgstr "Keresett rekordok számának korlátozása"
706
688
  msgid "Limit:"
707
689
  msgstr "Korlát:"
708
690
 
691
+ #, python-format
692
+ msgid "Logs (%s)"
693
+ msgstr ""
694
+
695
+ msgid "Model:"
696
+ msgstr "Elem:"
697
+
698
+ msgid "ID:"
699
+ msgstr "ID:"
700
+
701
+ msgid "Created by:"
702
+ msgstr "Létrehozta:"
703
+
704
+ msgid "Created at:"
705
+ msgstr "Létrehozás dátuma:"
706
+
707
+ #, fuzzy
708
+ msgid "Last Modified by:"
709
+ msgstr "Utolsó módosítás"
710
+
711
+ #, fuzzy
712
+ msgid "Last Modified at:"
713
+ msgstr "Módosítás dátuma "
714
+
709
715
  #, python-format
710
716
  msgid "Notes (%s)"
711
717
  msgstr ""
@@ -873,6 +879,9 @@ msgstr "Név"
873
879
  msgid "Open"
874
880
  msgstr "Megnyitás"
875
881
 
882
+ msgid "Save"
883
+ msgstr "Mentés"
884
+
876
885
  msgid "Listed Records"
877
886
  msgstr "A listán szereplő összes rekordot"
878
887
 
@@ -1096,18 +1105,16 @@ msgstr ""
1096
1105
  msgid "next year"
1097
1106
  msgstr ""
1098
1107
 
1099
- msgid "Day View"
1108
+ msgid "Day"
1100
1109
  msgstr ""
1101
1110
 
1102
- msgid "Week View"
1103
- msgstr "Heti nézet"
1104
-
1105
- msgid "Month View"
1106
- msgstr "Havi nézet"
1107
-
1108
1111
  msgid "Week"
1109
1112
  msgstr "Hét"
1110
1113
 
1114
+ #, fuzzy
1115
+ msgid "Month"
1116
+ msgstr "Havi nézet"
1117
+
1111
1118
  msgid "Select..."
1112
1119
  msgstr ""
1113
1120
 
@@ -1173,5 +1180,8 @@ msgstr "El kell menteni a rekordot mielőtt hozzáadja a fordítást."
1173
1180
  msgid "No other language available."
1174
1181
  msgstr "Másik nyelv nem elérhető."
1175
1182
 
1183
+ msgid "#ERROR"
1184
+ msgstr ""
1185
+
1176
1186
  msgid "Translate view"
1177
1187
  msgstr "Nézet lefordítása"
Binary file
@@ -23,9 +23,8 @@ msgstr "tentukan user login"
23
23
  msgid "specify the server hostname:port"
24
24
  msgstr "tentukan nama host server:port"
25
25
 
26
- #, python-format
27
- msgid "Unable to write config file %s."
28
- msgstr "Tidak dapat menulis file konfigurasi %s."
26
+ msgid "disable thread usage"
27
+ msgstr ""
29
28
 
30
29
  #, python-format
31
30
  msgid "Unable to set locale %s"
@@ -62,12 +61,6 @@ msgstr "OK"
62
61
  msgid "Your selection:"
63
62
  msgstr "Pilihan Anda:"
64
63
 
65
- msgid "Select"
66
- msgstr "Pilih"
67
-
68
- msgid "Save"
69
- msgstr "Simpan"
70
-
71
64
  msgid "Save As..."
72
65
  msgstr "Simpan Sebagai..."
73
66
 
@@ -197,6 +190,9 @@ msgstr "Templat"
197
190
  msgid "Edit..."
198
191
  msgstr "Sunting..."
199
192
 
193
+ msgid "View Logs..."
194
+ msgstr ""
195
+
200
196
  msgid "Attachments..."
201
197
  msgstr ""
202
198
 
@@ -590,6 +586,9 @@ msgstr "Pilih Berkas"
590
586
  msgid "Remove File"
591
587
  msgstr "Hapus Berkas"
592
588
 
589
+ msgid "Select"
590
+ msgstr "Pilih"
591
+
593
592
  msgid "Add..."
594
593
  msgstr ""
595
594
 
@@ -613,24 +612,6 @@ msgstr "Catatan (%d/%d)"
613
612
  msgid "You have to select one record."
614
613
  msgstr ""
615
614
 
616
- msgid "ID:"
617
- msgstr "ID:"
618
-
619
- msgid "Created by:"
620
- msgstr "Dibuat oleh:"
621
-
622
- msgid "Created at:"
623
- msgstr "Dibuat pada:"
624
-
625
- msgid "Edited by:"
626
- msgstr "Disunting oleh:"
627
-
628
- msgid "Edited at:"
629
- msgstr "Disunting pada:"
630
-
631
- msgid "Model:"
632
- msgstr "Model:"
633
-
634
615
  msgid "Are you sure to remove this record?"
635
616
  msgstr ""
636
617
 
@@ -693,6 +674,28 @@ msgstr ""
693
674
  msgid "Limit:"
694
675
  msgstr ""
695
676
 
677
+ #, python-format
678
+ msgid "Logs (%s)"
679
+ msgstr "Log (%s)"
680
+
681
+ msgid "Model:"
682
+ msgstr "Model:"
683
+
684
+ msgid "ID:"
685
+ msgstr "ID:"
686
+
687
+ msgid "Created by:"
688
+ msgstr "Dibuat oleh:"
689
+
690
+ msgid "Created at:"
691
+ msgstr "Dibuat pada:"
692
+
693
+ msgid "Last Modified by:"
694
+ msgstr ""
695
+
696
+ msgid "Last Modified at:"
697
+ msgstr ""
698
+
696
699
  #, python-format
697
700
  msgid "Notes (%s)"
698
701
  msgstr ""
@@ -860,6 +863,9 @@ msgstr "Nama"
860
863
  msgid "Open"
861
864
  msgstr "Buka"
862
865
 
866
+ msgid "Save"
867
+ msgstr "Simpan"
868
+
863
869
  msgid "Listed Records"
864
870
  msgstr ""
865
871
 
@@ -1082,18 +1088,15 @@ msgstr "tahun sebelumnya"
1082
1088
  msgid "next year"
1083
1089
  msgstr "tahun berikutnya"
1084
1090
 
1085
- msgid "Day View"
1086
- msgstr ""
1087
-
1088
- msgid "Week View"
1089
- msgstr ""
1090
-
1091
- msgid "Month View"
1091
+ msgid "Day"
1092
1092
  msgstr ""
1093
1093
 
1094
1094
  msgid "Week"
1095
1095
  msgstr "Pekan"
1096
1096
 
1097
+ msgid "Month"
1098
+ msgstr ""
1099
+
1097
1100
  msgid "Select..."
1098
1101
  msgstr "Pilih..."
1099
1102
 
@@ -1159,5 +1162,8 @@ msgstr ""
1159
1162
  msgid "No other language available."
1160
1163
  msgstr "Tidak ada bahasa lain yang tersedia."
1161
1164
 
1165
+ msgid "#ERROR"
1166
+ msgstr ""
1167
+
1162
1168
  msgid "Translate view"
1163
1169
  msgstr ""
Binary file
@@ -27,9 +27,8 @@ msgstr "specifica l'utente di accesso"
27
27
  msgid "specify the server hostname:port"
28
28
  msgstr "specifica hostname:porta del server"
29
29
 
30
- #, python-format
31
- msgid "Unable to write config file %s."
32
- msgstr "Impossibile scrivere il file di configurazione %s."
30
+ msgid "disable thread usage"
31
+ msgstr ""
33
32
 
34
33
  #, python-format
35
34
  msgid "Unable to set locale %s"
@@ -66,12 +65,6 @@ msgstr "OK"
66
65
  msgid "Your selection:"
67
66
  msgstr "La tua selezione:"
68
67
 
69
- msgid "Select"
70
- msgstr "Seleziona"
71
-
72
- msgid "Save"
73
- msgstr "Salva"
74
-
75
68
  msgid "Save As..."
76
69
  msgstr "Salva come..."
77
70
 
@@ -204,6 +197,10 @@ msgstr "Collegato"
204
197
  msgid "Edit..."
205
198
  msgstr "Modifica..."
206
199
 
200
+ #, fuzzy
201
+ msgid "View Logs..."
202
+ msgstr "Visualizza_Log..."
203
+
207
204
  msgid "Attachments..."
208
205
  msgstr "Allegati..."
209
206
 
@@ -602,6 +599,9 @@ msgstr "Seleziona tutto"
602
599
  msgid "Remove File"
603
600
  msgstr "_Rimuovi"
604
601
 
602
+ msgid "Select"
603
+ msgstr "Seleziona"
604
+
605
605
  msgid "Add..."
606
606
  msgstr "Inserisci..."
607
607
 
@@ -626,24 +626,6 @@ msgstr "Appunto (%d/%d)"
626
626
  msgid "You have to select one record."
627
627
  msgstr "Devi selezionare un record."
628
628
 
629
- msgid "ID:"
630
- msgstr "ID:"
631
-
632
- msgid "Created by:"
633
- msgstr "Creato da:"
634
-
635
- msgid "Created at:"
636
- msgstr "Creato il:"
637
-
638
- msgid "Edited by:"
639
- msgstr "Modificato da:"
640
-
641
- msgid "Edited at:"
642
- msgstr "Modifica il:"
643
-
644
- msgid "Model:"
645
- msgstr "Modello:"
646
-
647
629
  msgid "Are you sure to remove this record?"
648
630
  msgstr "Sei sicuro di rimuovere questo record?"
649
631
 
@@ -708,6 +690,30 @@ msgstr "Impostazione dei limiti di ricerca"
708
690
  msgid "Limit:"
709
691
  msgstr "Limite:"
710
692
 
693
+ #, python-format
694
+ msgid "Logs (%s)"
695
+ msgstr "Registri (%s)"
696
+
697
+ msgid "Model:"
698
+ msgstr "Modello:"
699
+
700
+ msgid "ID:"
701
+ msgstr "ID:"
702
+
703
+ msgid "Created by:"
704
+ msgstr "Creato da:"
705
+
706
+ msgid "Created at:"
707
+ msgstr "Creato il:"
708
+
709
+ #, fuzzy
710
+ msgid "Last Modified by:"
711
+ msgstr "Ultima modifica a:"
712
+
713
+ #, fuzzy
714
+ msgid "Last Modified at:"
715
+ msgstr "Ultima data di modifica:"
716
+
711
717
  #, python-format
712
718
  msgid "Notes (%s)"
713
719
  msgstr "Appunti (%s)"
@@ -877,6 +883,9 @@ msgstr "Nome"
877
883
  msgid "Open"
878
884
  msgstr "Apri"
879
885
 
886
+ msgid "Save"
887
+ msgstr "Salva"
888
+
880
889
  msgid "Listed Records"
881
890
  msgstr "Record elencati"
882
891
 
@@ -1104,18 +1113,16 @@ msgstr ""
1104
1113
  msgid "next year"
1105
1114
  msgstr ""
1106
1115
 
1107
- msgid "Day View"
1116
+ msgid "Day"
1108
1117
  msgstr ""
1109
1118
 
1110
- msgid "Week View"
1111
- msgstr "Vista settimanale"
1112
-
1113
- msgid "Month View"
1114
- msgstr "Vista mensile"
1115
-
1116
1119
  msgid "Week"
1117
1120
  msgstr "Settimana"
1118
1121
 
1122
+ #, fuzzy
1123
+ msgid "Month"
1124
+ msgstr "Vista mensile"
1125
+
1119
1126
  msgid "Select..."
1120
1127
  msgstr "Seleziona..."
1121
1128
 
@@ -1184,5 +1191,8 @@ msgstr "È necessario salvare il record prima di aggiungere le traduzioni."
1184
1191
  msgid "No other language available."
1185
1192
  msgstr "Nessun altra lingua è disponibile."
1186
1193
 
1194
+ msgid "#ERROR"
1195
+ msgstr ""
1196
+
1187
1197
  msgid "Translate view"
1188
1198
  msgstr "Traduci vista"
Binary file
@@ -28,9 +28,8 @@ msgstr "ລະບຸ ຜູ້ເຂົ້າໃຊ້ງານ"
28
28
  msgid "specify the server hostname:port"
29
29
  msgstr "ລະບຸ ທີ່ຢູ່ ຂອງ ເຄື່ອງແມ່ຂ່າຍ"
30
30
 
31
- #, python-format
32
- msgid "Unable to write config file %s."
33
- msgstr "ບໍ່ສາມາດ ຂຽນ ຟາຍລ໌ ຕັ້ງຄ່າ (config file) %s ນີ້ໄດ້."
31
+ msgid "disable thread usage"
32
+ msgstr ""
34
33
 
35
34
  #, python-format
36
35
  msgid "Unable to set locale %s"
@@ -68,12 +67,6 @@ msgstr ""
68
67
  msgid "Your selection:"
69
68
  msgstr "ການເລືອກຂອງທ່ານ:"
70
69
 
71
- msgid "Select"
72
- msgstr "ເລືອກ..."
73
-
74
- msgid "Save"
75
- msgstr "ບັນທຶກ"
76
-
77
70
  msgid "Save As..."
78
71
  msgstr "ບັນທຶກເປັນ..."
79
72
 
@@ -207,6 +200,10 @@ msgstr "ທີ່ກ່ຽວພັນ"
207
200
  msgid "Edit..."
208
201
  msgstr "ແກ້ໄຂ..."
209
202
 
203
+ #, fuzzy
204
+ msgid "View Logs..."
205
+ msgstr "ເບິ່ງ_ບັນທຶກ..."
206
+
210
207
  msgid "Attachments..."
211
208
  msgstr "ຄັດຕິດ..."
212
209
 
@@ -626,6 +623,9 @@ msgstr "ເລືອກທັງໝົດ"
626
623
  msgid "Remove File"
627
624
  msgstr "ເອົາອອກ"
628
625
 
626
+ msgid "Select"
627
+ msgstr "ເລືອກ..."
628
+
629
629
  msgid "Add..."
630
630
  msgstr ""
631
631
 
@@ -650,28 +650,6 @@ msgstr ""
650
650
  msgid "You have to select one record."
651
651
  msgstr "ທ່ານຕ້ອງໄດ້ເລືອກ ໜຶ່ງແຖວຂໍ້ມູນ."
652
652
 
653
- msgid "ID:"
654
- msgstr "ເລກລໍາດັບ:"
655
-
656
- #, fuzzy
657
- msgid "Created by:"
658
- msgstr "ວັນທີສ້າງ"
659
-
660
- #, fuzzy
661
- msgid "Created at:"
662
- msgstr "ວັນທີສ້າງ"
663
-
664
- #, fuzzy
665
- msgid "Edited by:"
666
- msgstr "ແກ້ໄຂ"
667
-
668
- #, fuzzy
669
- msgid "Edited at:"
670
- msgstr "ແກ້ໄຂ"
671
-
672
- msgid "Model:"
673
- msgstr "ແບບ:"
674
-
675
653
  msgid "Are you sure to remove this record?"
676
654
  msgstr "ທ່ານແນ່ໃຈບໍ່ທີ່ຈະລຶບແຖວຂໍ້ມູນນີ້?"
677
655
 
@@ -734,6 +712,32 @@ msgstr "ການຕັ້ງຄ່າຂີດຈຳກັດການຊອກ
734
712
  msgid "Limit:"
735
713
  msgstr "ຂີດຈຳກັດ:"
736
714
 
715
+ #, python-format
716
+ msgid "Logs (%s)"
717
+ msgstr "ໄມ້ທ່ອນ (%s)"
718
+
719
+ msgid "Model:"
720
+ msgstr "ແບບ:"
721
+
722
+ msgid "ID:"
723
+ msgstr "ເລກລໍາດັບ:"
724
+
725
+ #, fuzzy
726
+ msgid "Created by:"
727
+ msgstr "ວັນທີສ້າງ"
728
+
729
+ #, fuzzy
730
+ msgid "Created at:"
731
+ msgstr "ວັນທີສ້າງ"
732
+
733
+ #, fuzzy
734
+ msgid "Last Modified by:"
735
+ msgstr "ປັບປ່ຽນລ້າສຸດ ໂດຍ:"
736
+
737
+ #, fuzzy
738
+ msgid "Last Modified at:"
739
+ msgstr "ວັນທີປັບປ່ຽນລ້າສຸດ:"
740
+
737
741
  #, python-format
738
742
  msgid "Notes (%s)"
739
743
  msgstr "ບັນທຶກ (%s)"
@@ -905,6 +909,9 @@ msgstr "ຊື່"
905
909
  msgid "Open"
906
910
  msgstr "ໄຂ"
907
911
 
912
+ msgid "Save"
913
+ msgstr "ບັນທຶກ"
914
+
908
915
  #, fuzzy
909
916
  msgid "Listed Records"
910
917
  msgstr "ແກ້ໄຂ ແຖວຂໍ້ມູນ ທີ່ເລືອກ <F2>"
@@ -1133,18 +1140,16 @@ msgstr "ປີກ່ອນ"
1133
1140
  msgid "next year"
1134
1141
  msgstr "ປີຕໍ່ໄປ"
1135
1142
 
1136
- msgid "Day View"
1143
+ msgid "Day"
1137
1144
  msgstr ""
1138
1145
 
1139
- msgid "Week View"
1140
- msgstr "ເບິ່ງເປັນລາຍອາທິດ"
1141
-
1142
- msgid "Month View"
1143
- msgstr "ເບິ່ງເປັນເດືອນ"
1144
-
1145
1146
  msgid "Week"
1146
1147
  msgstr "ອາທິດ"
1147
1148
 
1149
+ #, fuzzy
1150
+ msgid "Month"
1151
+ msgstr "ເບິ່ງເປັນເດືອນ"
1152
+
1148
1153
  msgid "Select..."
1149
1154
  msgstr "ເລືອກ..."
1150
1155
 
@@ -1213,5 +1218,8 @@ msgstr "ທ່ານຕ້ອງບັນທຶກຂໍ້ມູນໄວ້ກ
1213
1218
  msgid "No other language available."
1214
1219
  msgstr "ບໍ່ມີພາສາອື່ນໃຫ້ໃຊ້."
1215
1220
 
1221
+ msgid "#ERROR"
1222
+ msgstr ""
1223
+
1216
1224
  msgid "Translate view"
1217
1225
  msgstr "ມູມມອງການແປ"
Binary file