Activity for Gabix

  • Gabix Gabix posted a comment on ticket #45

    В загрузках файл с похоже битым расширением (ср. размер 5,3 МиБ для 3.5.1 и 4,4 МиБ для 3.5.2).

  • Gabix Gabix created ticket #45

    Add Kazakh tenge sign

  • Gabix Gabix modified a comment on ticket #1594

    So, here is one more report. DSL supports a variety of colors for the [c] tag. However, OmegaT shows only the following: aqua blue fuchsia gray green lime maroon navy olive orange purple red silver teal white yellow All other colors turn into black (tested with the binaries of 22 and 25 September from this thread). To reproduce, open the attached project and see the dictionary tab (if you fetch the dictionary to GoldenDict, you’ll see the whole palette). The question is: where is the limitation?...

  • Gabix Gabix posted a comment on ticket #1594

    So, here is one more report. DSL supports a variety of colors for the [c] tag. However, OmegaT shows only the following: aqua blue fuchsia gray green lime maroon navy olive orange purple red silver teal white yellow All other colors turn into black (tested with the binaries of 22 and 25 September from this thread). To reproduce, open the attached project and see the dictionary tab (if you fetch the dictionary to GoldenDict, you’ll see the whole palette).

  • Gabix Gabix posted a comment on ticket #1594

    I am Dmitri Gabinski. Thanks for adding me :)

  • Gabix Gabix posted a comment on ticket #1065

    Unfortunately, trying to download the compiled JAR, I get an incomplete file of just 4.5 MiB.

  • Gabix Gabix posted a comment on ticket #1065

    Unfortunately, this build does not load my test dictionary (the previous one does, although ignoring multimedia items). Attaching a modified test case.

  • Gabix Gabix posted a comment on ticket #1065

    At least, GoldenDict renders PNG files correctly when they are referenced to in [s] tags. Unfortunately, I do not have ABBYY Lingvo at hand to test.

  • Gabix Gabix posted a comment on ticket #1065

    Looks like worth trying. I’d also suggest: reList.add(new RE("\\[s\\](.+?\\.tif)\\[/s\\]", "<img src=\"file://$1\"/>")); reList.add(new RE("\\[s\\](.+?\\.tiff)\\[/s\\]", "<img src=\"file://$1\"/>")); reList.add(new RE("\\[s\\](.+?\\.png)\\[/s\\]", "<img src=\"file://$1\"/>"));

  • Gabix Gabix posted a comment on ticket #1065

    The brackets are fixed now, great! Now, I can see a minor issue: some colors are reproduced when specified as the values of the c tag, some are not. In the above test case: a) red, blue, fuchsia, gray, purple, green are fine; b) darkviolet, midnightblue, indigo, darkred turn into black. As far as I understand, the DSL markup uses standard HTML color names. I will test further.

  • Gabix Gabix modified a comment on ticket #1065

    Yes, the contents can be ignored, unless you (or someone else) undertakes to implement a viewer for images. The same applies to preview and video tags. But, as I see, you already suggest a solution for images.

  • Gabix Gabix posted a comment on ticket #1065

    I upvoted that suggestion.

  • Gabix Gabix posted a comment on ticket #1065

    Yes, the contents can be ignored, unless you (or someone else) undertakes to implement a viewer for images. The same applies to preview and video tags.

  • Gabix Gabix posted a comment on ticket #1065

    Oops, my suggestion does not work. The &lbrack; and &rbrack; codes show up literally, not converted to brackets (attaching a screenshot). Perhaps, using &#91; and &#93;, as per your suggestion, would work better.

  • Gabix Gabix posted a comment on ticket #1065

    Maybe, \[ as &lbrack; and \] as &rbrack;?

  • Gabix Gabix modified a comment on ticket #1065

    本当にクールですよ! I’ve tested the binary with a couple of dictionaries and find it excellent. Dictionary articles appear fine. I will test further, but so far I can’t see anything that would need an immediate correction, except for one thing: in some dictionaries, square brackets are escaped as \[ and \]. Escaping works similarly to bracket duplication. Now, they appear as \[ and \] respectively instead of just [ and ]. Attaching a test case. P. S. Sorry, I did not report it earlier. I guess, I missed it...

  • Gabix Gabix posted a comment on ticket #1065

    本当にクールですよ! I’ve tested the binary with a couple of dictionaries and find it excellent. Dictionary articles appear fine. I will test further, but so far I can’t see anything that would need an immediate correction, except for one thing: in some dictionaries, square brackets are escaped as \[ and \]. Escaping works similarly to bracket duplication. Now, they appear as [ and ] respectively instead of just [ and ]. Attaching a test case. P. S. Sorry, I did not report it earlier. I guess, I missed it...

  • Gabix Gabix posted a comment on ticket #1065

    I’d suggest no indent for m0, single indent for m and m1, double indent for m2, triple for the rest, as follows: RE_MAP.add(new RegMap("\\[m0\\](.+?)\\[/m0\\]", "<p>$1</p>")); RE_MAP.add(new RegMap("\\[m\\](.+?)\\[/m\\]", "<p style="text-indent: 30px">$1</p>")); RE_MAP.add(new RegMap("\\[m1\\](.+?)\\[/m1\\]", "<p style="text-indent: 30px">$1</p>")); RE_MAP.add(new RegMap("\\[m2\\](.+?)\\[/m2\\]", "<p style="text-indent: 60px">$1</p>")); RE_MAP.add(new RegMap("\\[m3\\](.+?)\\[/m3\\]", "<p style="text-indent:...

  • Gabix Gabix modified a comment on ticket #1065

    Yes, these rules are correct. However, since OmegaT shows dictionary articles as single lines anyway, processing the mX tags seems excessive, so I suggested omitting them in the above piece of code in the following part: + RE_MAP.add(new RegMap("\\[m\\]", "")); + RE_MAP.add(new RegMap("\\[/m\\]", "")); + RE_MAP.add(new RegMap("\\[m1\\]", "")); + RE_MAP.add(new RegMap("\\[/m1\\]", "")); + RE_MAP.add(new RegMap("\\[m2\\]", "")); + RE_MAP.add(new RegMap("\\[/m2\\]", "")); + RE_MAP.add(new RegMap("\\[m3\\]",...

  • Gabix Gabix modified a comment on ticket #1065

    Yes, these rules are correct. However, since OmegaT shows dictionary articles as single lines anyway, processing the mX tags seems excessive, so I suggested omitting them in the above piece of code in the following part: + RE_MAP.add(new RegMap("\\[m\\]", "")); + RE_MAP.add(new RegMap("\\[/m\\]", "")); + RE_MAP.add(new RegMap("\\[m1\\]", "")); + RE_MAP.add(new RegMap("\\[/m1\\]", "")); + RE_MAP.add(new RegMap("\\[m2\\]", "")); + RE_MAP.add(new RegMap("\\[/m2\\]", "")); + RE_MAP.add(new RegMap("\\[m3\\]",...

  • Gabix Gabix posted a comment on ticket #1065

    Yes, these rules are correct. However, since OmegaT shows dictionary articles as single lines anyway, processing the mX tags seems excessive, so I suggested omitting them in the above piece of code in the following part: + RE_MAP.add(new RegMap("\\[m\\]", "")); + RE_MAP.add(new RegMap("\\[/m\\]", "")); + RE_MAP.add(new RegMap("\\[m1\\]", "")); + RE_MAP.add(new RegMap("\\[/m1\\]", "")); + RE_MAP.add(new RegMap("\\[m2\\]", "")); + RE_MAP.add(new RegMap("\\[/m2\\]", "")); + RE_MAP.add(new RegMap("\\[m3\\]",...

  • Gabix Gabix posted a comment on ticket #1065

    I have added more tag replacements as follows (I commented some cases when tags are not just dropped: static { RE_MAP.add(new RegMap("\\[b\\](.+?)\\[/b\\]", "<strong>$1</strong>")); RE_MAP.add(new RegMap("\\[i\\](.+?)\\[/i\\]", "<span style='font-style: italic'>$1</span>")); RE_MAP.add(new RegMap("\\[trn\\]", "")); RE_MAP.add(new RegMap("\\[/trn\\]", "")); RE_MAP.add(new RegMap("\\[t\\]", "")); RE_MAP.add(new RegMap("\\[/t\\]", "")); + RE_MAP.add(new RegMap("\\[br\\]", "<br/>")); + //The following...

  • Gabix Gabix posted a comment on ticket #1065

    As far as I understand this code, it is a sort of ‘kill-em-all’ approach. I downloaded the 5.5.0 source code, opened in NetBeans 8.0.2 and tried to modify the code to specifically list DSL tags as follows (it won’t be a good solution, though): protected static final Pattern RE_SKIP = Pattern.compile("\\[[b|/b|i|/i|u|/u|c|/c|sup|/sup|sub|/sub|m|/m|m1|/m1|m2|/m2|m3|/m3|'|/'|br|p|/p|t|/t|\\*|/\\*|ex|/ex|com|/com|trn|/trn|trn1|/trn1|\\!trs|/\\!trs|lang|/lang|s|/s|video|/video|ref|/ref|url|/url]\\]");...

  • Gabix Gabix created ticket #1065

    DSL dictionaries: brackets processed incorrectly

  • Gabix Gabix posted a comment on ticket #182

    Done: https://sourceforge.net/p/omegat/feature-requests/1393/

  • Gabix Gabix created ticket #1393

    Extract Text Content script to xport to UTF-8

  • Gabix Gabix posted a comment on ticket #182

    Is it possible to modify the script to force output in UTF-8? It exports (tested the script as included into the OmegaT 4.1.5 package) to the system default encoding which may be bad for many language pairs. For example, the output for a FR→RU project on Windows/Russian locale results in lost French characters with diacritics (question marks placed instead) as this locale uses cp1251 where the mentioned chars are missing.

  • Gabix Gabix created ticket #352

    PDF files section in FilesToTranslate

  • Gabix Gabix created ticket #1321

    Character count for separate lines in segment

  • Gabix Gabix created ticket #346

    Several issues in user manual

  • Gabix Gabix created ticket #343

    Incorrect shortcut in Chapter 5 of user manual

  • Gabix Gabix posted a comment on ticket #598

    Thanks for the pointer. Indeed, changing the tokenizer to Hunspell fixed the problem....

  • Gabix Gabix posted a comment on ticket #598

    I am afraid, I see nothing to add to the original report. Anyway, find attached a...

  • Gabix Gabix posted a comment on ticket #598

    Please, re-open this ticket. The problem is back in 3.6.0, at least in the snapshot,...

  • Gabix Gabix posted a comment on ticket #598

    Thanks! Seems fine to me (as built from source downloaded today). Belarusian words...

  • Gabix Gabix posted a comment on ticket #18

    Под Windows не бывает 64-битных сборок, по крайней мере, с офсайта. «С разными документами»...

  • Gabix Gabix created ticket #18

    2.31: аварийное завершение при выборе Text Formatting

1