forked from translate/virtaal
-
Notifications
You must be signed in to change notification settings - Fork 0
/
ChangeLog
3208 lines (2089 loc) · 90 KB
/
ChangeLog
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
2008-10-16 08:22 dupuy
* .: svn:ignore of various links and directories for cleaner svn
status output
2008-10-16 07:57 friedelwolff
* share/icons/virtaal.ico, share/icons/virtaal.png: New icons
2008-10-16 07:18 dupuy
* po/es.po: add Julen (whose Spanish is much better than mine) to
user-visible credits
2008-10-16 07:09 dupuy
* po/es.po: correct a few missing accents
2008-10-15 21:01 murgilduta
* po/es.po: Corrections in the Spanish translation.
2008-10-15 20:55 dupuy
* po/es.po: add my e-mail to credit
2008-10-15 17:04 dupuy
* po/es.po: plausible Spanish translation; not fully tested
2008-10-15 09:45 walter_l
* virtaal/mode_selector.py: Added mode_user_names dictionary
(similar to mode_names) to the ModeSelector class. This basically
changed the behavior of the select_mode_by_name() method to
search on a mode's mode_name and not
user_name.
Before this change calling select_mode_by_name() with a
hard-coded mode_name would result in an
unknown mode if the mode_name and user_name is not the same (eg.
when translated).
2008-10-15 06:51 friedelwolff
* po/nl.po: Updated Dutch (nl) translation
2008-10-15 05:57 friedelwolff
* po/nl.po: New Dutch (nl) translation
2008-10-15 05:54 friedelwolff
* po/af.po: Updated Afrikaans (af) translation
2008-10-15 05:38 friedelwolff
* po/fr.po: New French (fr) translation
2008-10-14 16:43 murgilduta
* po/eu.po: Update Basque translation to reflect changes from bug
559.
2008-10-14 15:57 friedelwolff
* po/eu.po: Translation update from Julen Ruiz Aizpuru. See bug
547.
2008-10-14 15:17 walter_l
* setup.py: Fixed installed location of generated .mo files.
2008-10-14 14:04 walter_l
* virtaal/pan_app.py: Make sure that the configuration directory
exists when calculating its location.
2008-10-14 13:59 walter_l
* virtaal/main_window.py: Refined the last commit to send both
stdout and stderr to config_dir/virtaal_log.txt
2008-10-14 13:54 walter_l
* virtaal/main_window.py: Added handling of sys.stdout and
sys.stderr on windows systems to avoid error dialog.
This fixes bug 543.
2008-10-14 13:52 walter_l
* virtaal/pan_app.py: Changed configuration directory from
"~/.locamotion" to a more platform-appropriate
"~/.virtaal" (or "C:\Documents and Settings\User\Application
Data\Virtaal").
This fixes bug 535.
2008-10-14 13:32 friedelwolff
* po/virtaal.pot: New POT file with optparse strings added
(previously untranslatable). See bug 559. This also fixes a
string, so technically counts as a string freeze break.
2008-10-14 13:26 friedelwolff
* bin/virtaal: Replace the gettext function optparse._() so that we
can use our domain to get the --help text translateable. This
closes bug 559.
2008-10-14 13:23 friedelwolff
* virtaal/__version__.py: Version 0.2
2008-10-14 13:20 friedelwolff
* po/testlocalisations: Enable more reliable fallback. Use the new
executable name
2008-10-14 13:17 friedelwolff
* po/POTFILES.in, source_tree_infrastructure/optparse.py: Add an
internal copy of optparse to enable complete translation of
commandline options. This fixes bug 559.
2008-10-14 13:06 friedelwolff
* po/eu.po: First Basque translation (see bug 547)
2008-10-14 13:04 friedelwolff
* po/af.po: Updated translation for Afrikaans (af)
2008-10-14 12:59 friedelwolff
* README, virtaal/README: Move README outside of the source
directory
2008-10-14 12:58 friedelwolff
* README: Remove empty README file to prepare for file move from
virtaal/README
2008-10-13 16:22 friedelwolff
* bin/virtaal: Enable psyco if it is available
2008-10-13 11:02 dwaynebailey
* .: Ignore various files created by ./setup {build,sdist}
2008-10-13 08:47 walter_l
* setup.py: Create .mo files for each of po/*.po, before being
added as data files.
This fixes bug 544.
2008-10-09 14:12 walter_l
* virtaal/store_grid.py: Whenever the unit grid (gtk.TreeView)
gains focus, the editable area is recreated
by UnitGrid.on_configure_event(). From a comment in the method:
"# Horrible hack."
Maybe so, but it works.
This fixes bug 546.
2008-10-09 13:39 walter_l
* virtaal/unit_layout.py: Added 2-pixel margins at the left and
right edges of all text views.
2008-10-09 09:24 friedelwolff
* setup.py: Don't associate with .pot files on Windows so that we
don't highjack PowerPoint templates
2008-10-09 09:23 friedelwolff
* setup.py: Some improvements to py2app options
2008-10-08 11:11 dwaynebailey
* po/gtk20-lite.pot: Add two missing strings
2008-10-07 15:36 dupuy
* .cvsignore: ignore generated files
2008-10-06 18:13 friedelwolff
* bin/virtaal: Improve and clarify translatable strings
2008-10-04 13:14 friedelwolff
* virtaal/pan_app.py: Install the gettext domain as unicode. This
fixes alignment problems with --help text on the command line
2008-10-03 23:01 friedelwolff
* virtaal/formats.py: Translate the name retrieved from the storage
classes. This needs to be aligned with the
virtaal-mimetypes.xml.in file to have them translated.
2008-10-03 14:13 walter_l
* setup.py: Minor fix in finding the path the the Gtk+ libraries on
Windows.
2008-10-03 11:47 walter_l
* setup.py: Added "C:\Program Files\GTK2-Runtime", because that's
where the new Windows installer installs to.
2008-10-03 08:46 friedelwolff
* setup.py: Skip associating with all .txt files on Windows, since
we can't rely on mime types or magic. This fixes bug 541.
2008-10-02 13:47 dwaynebailey
* virtaal/main_window.py: Close dictionary
2008-10-02 13:38 friedelwolff
* po/virtaal.pot: New POT file for version 0.2
2008-10-02 13:37 friedelwolff
* virtaal/main_window.py: Rather use %(error_message)s than %s
2008-10-02 13:34 friedelwolff
* virtaal/about.py: Translator comment about translator-credits
2008-10-02 13:32 walter_l
* setup.py: Add po directory to dist tarballs, even though they
will not be installed.
2008-10-02 13:31 friedelwolff
* virtaal/modes.py: Don't mark the empty string for translation -
this ends up as the header of the POT file.
2008-10-02 13:22 friedelwolff
* po/POTFILES.in: Update to reflect new locations of .desktop.in
and -mimetype.xml.in files
2008-10-02 13:20 walter_l
* setup.py: Fixed the program name in setup.py to be "virtaal", but
have Windows still use "Virtaal".
2008-10-02 13:20 walter_l
* setup.py: Add LICENSES and maketranslations to dist tarballs,
although it will not be installed.
2008-10-02 13:19 walter_l
* setup.py: Fix collection of MO files.
2008-10-02 13:18 walter_l
* setup.py: Install MO files from the po/ directory to the correct
location.
2008-10-02 13:16 friedelwolff
* virtaal/pan_app.py: Specify the default font size as 9, to avoid
issues with some pango classes thinking no size means 0. This is
ugly and needs to be improved in future.
2008-10-02 13:09 friedelwolff
* share/virtaal/autocorr/acor_vi-VN.dat: Fix some XML problems in
the Vietnamese (vi-VN) file
2008-10-02 12:54 friedelwolff
* share/applications/virtaal.desktop.in: Associate Virtaal with .ts
and .qph files
2008-10-02 12:48 friedelwolff
* setup.py: Remove indents that were spacing descriptions in the
RPM incorrectly
2008-10-02 10:46 friedelwolff
* virtaal/pan_app.py: Remove debugging
2008-10-02 10:43 friedelwolff
* virtaal/about.py: Some rewordings of the program description.
Update the last bit of the GPL notice.
2008-10-02 10:33 friedelwolff
* setup.py: Remove .desktop and -mimetype.xml files from the
generic datafiles section. Add icons to the datafiles.
2008-10-02 10:18 friedelwolff
* share/icons/virtaal.png, share/virtaal/virtaal.png: Move the PNG
icon to icons/ as well
2008-10-02 09:30 friedelwolff
* virtaal/about.py, virtaal/main_window.py: Adapt loading of data
files to new layouts and API
2008-10-02 09:26 friedelwolff
* virtaal/pan_app.py: Adapt our datafile access to work with new
directories in share/
2008-10-02 09:25 friedelwolff
* setup.py: Update setup script to new locations of comments
2008-10-02 09:05 friedelwolff
* setup.py: Factor out datafiles that are only relevant on a Free
desktop. Also package PO files.
2008-10-02 09:02 friedelwolff
* share/icons, share/icons/virtaal.ico, share/virtaal/virtaal.ico:
Create share/icons and move the .ico file there
2008-10-02 08:11 friedelwolff
* setup.py: Add po files to the distribution
2008-10-02 08:06 friedelwolff
* maketranslations, share/mime, share/mime/packages,
share/mime/packages/virtaal-mimetype.xml.in,
share/virtaal/virtaal-mimetype.xml.in: Create share/mime/packages
and move the -mimetypes.xml.in file there
2008-10-02 07:59 friedelwolff
* maketranslations, share/applications,
share/applications/virtaal.desktop.in,
share/virtaal/virtaal.desktop.in: Create share/applications and
move the .desktop file there
2008-10-02 07:49 friedelwolff
* po/POTFILES.in: Update to reflect recent changes
2008-10-02 07:46 friedelwolff
* virtaal/tips.py: Mention moving in large steps. -outdated comment
2008-10-02 07:08 friedelwolff
* virtaal/pan_app.py: Use locale.getdefaultlocale() which seems
reliable on more platforms than locale.getlocale()
2008-10-01 20:52 friedelwolff
* virtaal/recent.py: Limit the recent files to 15
2008-10-01 16:29 friedelwolff
* setup.py: Fix a couple more thinkos after the py2app options were
added
2008-10-01 16:23 friedelwolff
* setup.py: Fix small type in plist specification
2008-10-01 14:39 walter_l
* virtaal/unit_editor.py, virtaal/unit_layout.py: For empty target
text views, use the source text to calculate the text view's
height.
2008-10-01 14:37 walter_l
* virtaal/unit_layout.py: Keep references to sources and targets
for use by other interested objects.
2008-10-01 14:16 friedelwolff
* virtaal/about.py: Add a logo to the about screen, and credit the
artist :-)
2008-10-01 14:14 friedelwolff
* share/virtaal/virtaal_logo.png, share/virtaal/virtaal_logo.svg:
Add a new logo
2008-10-01 13:51 friedelwolff
* setup.py: Make a prettier name by using proper capitalisation
(Virtaal)
2008-10-01 13:30 friedelwolff
* setup.py: Some small refactorings and initial (untested) support
for py2app
2008-10-01 10:56 walter_l
* setup.py: Fixed Windows icon path in setup.py.
2008-10-01 10:30 walter_l
* setup.py: Fixed tiny bug caused by my last commit.
2008-10-01 10:26 walter_l
* setup.py: Fixed Windows file associasions created by InnoSetup.
This bug was caused by differences between
translate.storage.factory.supported_files() and the hash that it
replaced.
2008-10-01 10:25 walter_l
* virtaal/markup.py, virtaal/store_model.py,
virtaal/widgets/label_expander.py: Fixed tooltip (unit notes)
markup and markup handling.
2008-10-01 10:23 walter_l
* virtaal/unit_renderer.py: Added row padding to unit renderes so
that consecutive multi-line (unselected) units are more easily
distinguishable even without rules hints.
2008-10-01 08:53 friedelwolff
* virtaal/main_window.py, virtaal/pan_app.py: Move
get_data_file_abs_name() from main_window to
get_abs_data_filename() in pan_app so that it can easily be used
from other places
2008-09-30 16:28 friedelwolff
* virtaal/unit_renderer.py: Use .create_pango_context() to ensure
we don't overwrite settings in the same context
2008-09-30 16:08 friedelwolff
* virtaal/unit_editor.py: Simplify the handling of pango layouts -
we don't need the GTK layouts
2008-09-30 15:52 friedelwolff
* virtaal/unit_layout.py: Use the proper font settings in the
editing area
2008-09-30 15:39 dwaynebailey
* bin/virtaal: s/VirTaal/Virtaal/g - missed this one
2008-09-30 15:30 walter_l
* gui_tests/common.py, gui_tests/test_open_and_close.py, setup.py,
virtaal/about.py, virtaal/document.py, virtaal/main_window.py,
virtaal/store_model.py, virtaal/support/memoize.py,
virtaal/terminology.py, virtaal/undo_buffer.py,
virtaal/unit_editor.py, virtaal/unit_renderer.py: Cosmetic
changes: Removed trailing spaces.
2008-09-30 15:11 walter_l
* virtaal/main_window.py: Fixed a URI-bug that makes the "Recent
Files" unusable under Windows.
2008-09-30 15:06 dwaynebailey
* po/Makevars, po/gtk20-lite.pot, po/virtaal.pot, setup.py,
share/virtaal/virtaal-mimetype.xml.in,
share/virtaal/virtaal.desktop.in, share/virtaal/virtaal.glade,
virtaal/README, virtaal/about.py, virtaal/main_window.py,
virtaal/mode_selector.py, virtaal/pan_app.py,
virtaal/store_grid.py, virtaal/unit_editor.py:
s/VirTaal/Virtaal/g
2008-09-30 13:45 friedelwolff
* virtaal/autocompletor.py: Don't barf on empty or None targets
2008-09-30 13:43 friedelwolff
* virtaal/main_window.py: Print a full traceback on all errors on
file open
2008-09-30 13:10 friedelwolff
* setup.py: Get the supported files from the toolkit factory (after
changes in revision 7791)
2008-09-30 08:59 walter_l
* virtaal/__version__.py: Updated version to 0.2-rc1
2008-09-30 08:41 walter_l
* virtaal/document.py, virtaal/main_window.py: Keep the mode
selector from being destroy()ed every time a new file is opened.
This fixes bug 530.
2008-09-30 06:04 friedelwolff
* virtaal/unit_editor.py: If punctranslate() changes something in
copy_original(), insert the unchanged version in the undo buffer
2008-09-29 21:36 dwaynebailey
* maketranslations: Fail with error if no translation directory
exists
2008-09-29 21:31 friedelwolff
* virtaal/document.py: Deal with incorrect stats if the PO file
doesn't have a header
2008-09-29 21:29 dwaynebailey
* virtaal/support/sorted_set.py: docstring: correct lists
2008-09-29 21:25 dwaynebailey
* po/af.po: Correct spacing
2008-09-29 20:34 friedelwolff
* share/virtaal/autocorr/acor_af-ZA.dat,
share/virtaal/autocorr/acor_cs-CZ.dat,
share/virtaal/autocorr/acor_da-DK.dat,
share/virtaal/autocorr/acor_de-DE.dat,
share/virtaal/autocorr/acor_en-GB.dat,
share/virtaal/autocorr/acor_en-US.dat,
share/virtaal/autocorr/acor_es-ES.dat,
share/virtaal/autocorr/acor_fi-FI.dat,
share/virtaal/autocorr/acor_fr-FR.dat,
share/virtaal/autocorr/acor_hu-HU.dat,
share/virtaal/autocorr/acor_it-IT.dat,
share/virtaal/autocorr/acor_nl-NL.dat,
share/virtaal/autocorr/acor_pl-PL.dat,
share/virtaal/autocorr/acor_pt-BR.dat,
share/virtaal/autocorr/acor_pt-PT.dat,
share/virtaal/autocorr/acor_ru-RU.dat,
share/virtaal/autocorr/acor_sv-SE.dat,
share/virtaal/autocorr/acor_vi-VN.dat: Updated autocorrect
dictionaries from OOo upstream
2008-09-29 19:11 friedelwolff
* virtaal/unit_renderer.py: Set the font and language from the
global settings to give Pango as much information as possible for
proper rendering
2008-09-29 19:10 friedelwolff
* virtaal/rendering.py: Some utility functions to help with
rendering
2008-09-29 19:01 friedelwolff
* virtaal/pan_app.py: Add entries for sourcefont, targetfont,
nplurals, and plural. Always add missing sections as part of
reading.
2008-09-29 16:34 walter_l
* virtaal/search_mode.py: Added mnemonics for case sensitivity and
regular expression check boxes in search mode.
This fixes bug 525.
2008-09-29 16:21 walter_l
* gui_tests/__init__.py, gui_tests/common.py,
gui_tests/test_open_and_close.py, setup.py,
source_tree_infrastructure/__init__.py,
source_tree_infrastructure/lsprofcalltree.py,
virtaal/__init__.py, virtaal/__version__.py, virtaal/about.py,
virtaal/autocompletor.py, virtaal/autocorrector.py,
virtaal/document.py, virtaal/formats.py, virtaal/main_window.py,
virtaal/markup.py, virtaal/mode_selector.py, virtaal/modes.py,
virtaal/pan_app.py, virtaal/recent.py, virtaal/search_mode.py,
virtaal/store_grid.py, virtaal/store_model.py,
virtaal/support/__init__.py, virtaal/support/bijection.py,
virtaal/support/memoize.py, virtaal/support/openmailto.py,
virtaal/support/partial.py, virtaal/support/set_enumerator.py,
virtaal/support/simplegeneric.py, virtaal/support/sorted_set.py,
virtaal/terminology.py, virtaal/tips.py, virtaal/undo_buffer.py,
virtaal/unit_editor.py, virtaal/unit_layout.py,
virtaal/unit_renderer.py, virtaal/widgets/__init__.py,
virtaal/widgets/entry_dialog.py,
virtaal/widgets/label_expander.py, virtaal/widgets/util.py:
Cosmetic changes, mostly fixing up of license blocks at the start
of all files.
2008-09-29 15:26 friedelwolff
* virtaal/main_window.py: Don't try to enter search mode if there
is no document
2008-09-29 14:43 walter_l
* virtaal/document.py, virtaal/search_mode.py,
virtaal/support/set_enumerator.py: If modes are switched and the
currently selected unit is further down in the
document than the last unit in the new mode, incorrect movement
behaviour was
observed. This has been fixed by having Cursor objects use the
default index
of 0 if the given index is beyond the range of its data set.
Search mode also handles the cursor itself (in stead of calling
document.refresh_cursor()), because it turns out that the Search
mode (which
is a UnionSetEnumerator) and a Search mode's Cursor's union_set
is the same
object.
2008-09-29 14:41 walter_l
* virtaal/autocompletor.py, virtaal/search_mode.py,
virtaal/support/set_enumerator.py: Cosmetic changes.
2008-09-29 13:21 friedelwolff
* virtaal/undo_buffer.py: Ignore zero length inserts
2008-09-29 13:19 friedelwolff
* virtaal/autocompletor.py: Only perform autocompletion on single
character insertions. This way we can ignore multi-character
paste events, for example.
2008-09-29 13:18 friedelwolff
* virtaal/autocompletor.py: Massively improve the interaction with
undo code.
A suggestion should never go into the undo buffer, but accepting
a suggestion should.
2008-09-29 13:15 friedelwolff
* virtaal/undo_buffer.py: Delete selection on undo event. This
improves interaction with the autocompletor.
2008-09-27 09:36 dwaynebailey
* virtaal/autocorrector.py: docstring: fix list indentation
2008-09-27 09:34 dwaynebailey
* virtaal/autocorrector.py: docstring: fix @rtype
2008-09-27 09:32 dwaynebailey
* virtaal/support/memoize.py: docstring: use literal block
2008-09-27 09:30 dwaynebailey
* virtaal/support/openmailto.py: docstring: convert list to @param
2008-09-27 09:27 dwaynebailey
* virtaal/support/partial.py: docstring: various code example
cleanups
2008-09-27 07:50 friedelwolff
* virtaal/undo_buffer.py: Rename incorrect 'self' to buf to relfect
that parameter is a gtk.TextBuffer
2008-09-27 07:49 friedelwolff
* virtaal/undo_buffer.py: Revert revision 8484 - confusion due to
bad variable names. Fix due in next commit.
2008-09-27 07:34 friedelwolff
* virtaal/undo_buffer.py: Keep the methods of BoundedQueue together
2008-09-26 15:28 friedelwolff
* virtaal/autocompletor.py: Improve docstring somewhat
2008-09-26 14:56 friedelwolff
* virtaal/main_window.py: Remove unused function .on_undo()
2008-09-26 14:47 walter_l
* virtaal/autocompletor.py: Fix the handling of
highlighted/selected auto-completion suggestions.
This fixes bug 521. This is not an easily summarizable bug, so
see the bug
report for more information.
2008-09-26 14:45 friedelwolff
* virtaal/main_window.py: Improve error handling on file open and
save. This should fix bug 514, 515 and 517.
2008-09-26 10:16 walter_l
* share/virtaal/virtaal.glade, virtaal/main_window.py,
virtaal/store_grid.py, virtaal/support/set_enumerator.py: - Added
status messages (returned from Cursor.move())
- Added a status bar (in main_window.py) to display these these
status messages.
- Added a delay when wrapping, just so that the user can see
something out of
the ordinary is happening.
2008-09-26 10:14 walter_l
* virtaal/support/set_enumerator.py: Modified Cursor.move() to wrap
around the end of a file to the beginning and vice versa.
2008-09-25 15:45 friedelwolff
* virtaal/autocorrector.py: Keep self.lang as None while
uninitialised. Return empty from load_dictionary() to ease using
it with gobject.idle_add().
2008-09-24 21:38 friedelwolff
* virtaal/tips.py: Update tip now that we use Alt+Down to copy
original to target (tips still unused at the moment)
2008-09-24 21:32 friedelwolff
* virtaal/widgets/entry_dialog.py: Grab the focus later - this
seems to work more reliably
2008-09-24 16:05 friedelwolff
* virtaal/unit_editor.py: Keep a Document reference for later use.
Do punctuation translation when copying original to target. The
punctuation translation needs more testing in several languages,
but should mostly do the right thing.
2008-09-24 16:02 friedelwolff
* virtaal/document.py: Add accessors to obtain the document's
source language and target language. This tries to obtain it from
the document, and falls back to the global application settings.
2008-09-24 16:01 friedelwolff
* virtaal/document.py: Correct wrong user prompt for plural
equation
2008-09-24 16:00 friedelwolff
* virtaal/document.py: Improve method of obtaining plurals
2008-09-24 07:12 friedelwolff
* virtaal/autocompletor.py, virtaal/autocorrector.py: Use the new
undo_buffer.merge_actions for autocorrection and autocompletion
2008-09-24 07:06 friedelwolff
* virtaal/unit_editor.py: Support 'copy to original' with Alt-Down
2008-09-24 07:05 friedelwolff
* virtaal/undo_buffer.py: +Helper function merge_actions() to merge
the last two undo actions into one
2008-09-24 06:26 friedelwolff
* virtaal/unit_editor.py: Remove dead code
2008-09-23 13:14 dwaynebailey
* gui_tests, source_tree_infrastructure: Ignore *.pyc files
2008-09-23 13:11 dwaynebailey
* share/virtaal/virtaal-mimetype.xml.in: Add .qph to the mimetypes
2008-09-20 23:48 dwaynebailey
* virtaal/document.py: Fixes to get plural entries working in
virtaal:
* Add list of languages and plural forms, include reference to
source. This might be better placed
in lang/data.py but since it is hard coded for all of Qt this is
probably a better spot.
* Implement getsource: this allows us to force the source into a
multistring, in .ts the source
will always be a single entry never multiple as in PO. With this
the generic hasplural will work
* Add decorators for source and target, seems we get the parent
ones if not added
* Add nplural fuction to find the language and return the number
of plural forms
* Retrieve the nplural value if we are editing a .ts store.
2008-09-20 19:33 friedelwolff
* virtaal/main_window.py: Only pass unicode strings to
autocompletor
2008-09-20 16:21 friedelwolff
* bin/virtaal, virtaal/pan_app.py: Always read the ini file on
instantiation of pan_app.Settings, otherwise we are adding
unnecessary empty duplicate sections in the ini file
2008-09-20 16:12 friedelwolff
* virtaal/unit_editor.py, virtaal/unit_layout.py: Show that file is
modified when an option (like fuzzy) is toggled. This closes bug
510.
2008-09-20 12:52 friedelwolff
* virtaal/search_mode.py: Use re.UNICODE instead of re.LOCALE which
fixes the problems experienced with case insensitive non-ASCII
searches
2008-09-20 09:30 dwaynebailey
* share/virtaal/virtaal.glade: Use Title Case, add accesskey
2008-09-19 21:29 friedelwolff
* virtaal/main_window.py, virtaal/recent.py: Limit ourselves to
local only recent files, and enable opening them from the menu.
2008-09-19 20:55 friedelwolff
* virtaal/main_window.py: Add files that we open successfully to
the recent files
2008-09-19 20:54 friedelwolff
* virtaal/recent.py: Improve applicdation names, instantiate the
default recent manager, show tips
2008-09-19 20:29 friedelwolff
* share/virtaal/virtaal.glade, virtaal/main_window.py,
virtaal/recent.py: Add support for recent files in the File menu.
We don't yet add our own ones to the recent files manager
2008-09-19 20:21 friedelwolff
* share/virtaal/virtaal.glade: Change the handler for File->Quit to
on_quit to handle unsaved files correctly
2008-09-19 19:58 friedelwolff
* virtaal/main_window.py: Translate logo as window icon
2008-09-19 19:56 friedelwolff
* virtaal/main_window.py: Return False from _confirm_unsaved() for
clarity
2008-09-19 19:54 friedelwolff
* virtaal/main_window.py: Properly handle File->Quit
2008-09-19 19:47 friedelwolff
* virtaal/main_window.py: Set a very low priority to restoring the
default cursor after loading the document. This way it even waits
for the editing widget to be fully activated before replacing the
busy (WATCH) cursor
2008-09-19 19:02 friedelwolff
* virtaal/main_window.py: Show a busy (WATCH) cursor while loading
a file
2008-09-18 20:48 friedelwolff
* virtaal/about.py: Credit Walter
2008-09-18 19:16 friedelwolff
* virtaal/search_mode.py: Correctly test if chk_regex is checked
2008-09-18 19:10 friedelwolff
* virtaal/search_mode.py: Work throughout with unicode strings in
searching, and always change to lower case to obtain case
insensitivity (it seems re.IGNORECASE doesn't handle non-ASCII
correctly). Removed unused self.re_flags.
2008-09-16 18:34 friedelwolff
* virtaal/search_mode.py: Fix logic for the use of re.IGNORECASE
(ignorecase for pogrep is correct)
2008-09-16 15:37 walter_l
* virtaal/mode_selector.py: Added mnemonic for mode selection
combo.
2008-09-16 15:36 walter_l
* virtaal/search_mode.py: Moved search functionality to
update_search() and added a search delay via
gobject.timeout_add().
2008-09-16 15:36 walter_l
* virtaal/search_mode.py: Force an updated when the Enter is
pressed in the search entry ("activate" event)
2008-09-16 15:35 walter_l
* virtaal/document.py: - Removed unused "mode-changed" signal
- Added cursor_changed() method that emits the "cursor-changed"
event
2008-09-15 16:43 walter_l
* virtaal/search_mode.py: Search mode now selects the first match
(in targets).
2008-09-15 16:42 walter_l
* virtaal/mode_selector.py: Fixed minor syntax error (trailing ":")
2008-09-15 16:41 walter_l
* virtaal/document.py, virtaal/main_window.py,
virtaal/mode_selector.py, virtaal/modes.py,
virtaal/search_mode.py, virtaal/store_grid.py,
virtaal/support/set_enumerator.py: Loads of changes to make
mode-related code more robust and organized:
- ModeSelector is now managed by Document in stead of the VirTaal
class
- A "cursor-changed" event has been added for the UnitGrid to
connect to
- The VirTaal class (main_window.py) has been cleaned up by
removing the
ModeSelector-stuff that Document now does itself
- BaseMode was added as base-class for all other mode classes
(not added to
virtaal.modes.MODES)
- Modes' handle_unit() -> unit_changed()
- Modes' refresh() was merged with selected(), seeing as they do
the same
- Modes got a new method: unselected()
- Search mode now correctly removes highlighting when the mode is
changed
2008-09-15 16:39 walter_l
* virtaal/search_mode.py: - Fixed search highlighting by using
gtk.TextTags in stead of pango markup.
- Changed make_filter() method to return the filter in stead of
directly
assigning it to self.filter.
- Renamed search_re to re_search (so that it's similar to
re_flags)
2008-09-15 16:37 walter_l
* virtaal/mode_selector.py: cmb_modes.set_active() reintroduced,
because otherwise the default mode is not selected
by cmb_modes at start-up.
2008-09-15 16:36 walter_l
* virtaal/unit_layout.py: Added _is_source attribute to source
TextViews.
2008-09-15 16:35 walter_l
* virtaal/search_mode.py: Busy fixing unhighlighting.
2008-09-15 16:34 walter_l
* virtaal/search_mode.py: Half-implemented highlighting. Some stuff
still needed:
- Currently, search strings are "highlighted" by surrounding it
with "|"
- Unhighlighting does not yet work correctly ("|"s stack with
each visit to a unit)
- "|" should be replaced with markup
2008-09-15 16:33 walter_l
* virtaal/mode_selector.py: Added current_mode attribute to
ModeSelector.