Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Makefile: Add switch for picking number of parallel fuzz workersHEADmain | EuAndreh | 2025-05-26 | 1 | -1/+2 |
| | |||||
* | meta.capim: Add with :dependencies key | EuAndreh | 2025-05-23 | 1 | -0/+7 |
| | |||||
* | src/gotext.go: Fix bad exit of Main() | EuAndreh | 2025-05-15 | 1 | -1/+1 |
| | |||||
* | Remove "MIME-Version" extra header | EuAndreh | 2025-05-15 | 17 | -26/+0 |
| | |||||
* | Use LC_MESSAGES for tests | EuAndreh | 2025-05-15 | 1 | -6/+3 |
| | |||||
* | Remove "Content-Transfer-Encoding" "header" from files and strings | EuAndreh | 2025-05-15 | 17 | -26/+0 |
| | |||||
* | Makefile: Fix dependency of tests/functional/api-usage/main.bin-check target | EuAndreh | 2025-05-15 | 1 | -1/+3 |
| | |||||
* | Do not install po/tests/*.mo files | EuAndreh | 2025-05-15 | 3 | -4/+7 |
| | |||||
* | src/gotext.go: Stop panicking on unknown AST type | EuAndreh | 2025-05-15 | 1 | -1/+1 |
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | It seems that it is panicking on indentantion nodes. I didn't take time to investigate, I only glanced at the error message below and removed the panic(): $ make i18n po4a po/doc/po4a.cfg gotext -k 'Gettext' src/gotext.go > po/gotext/gotext.pot val: &ast.SelectorExpr{X:(*ast.Ident)(0xc00007ed00), Sel:(*ast.Ident)(0xc00007ed20)} panic: unknown type: &{e err} goroutine 1 [running]: gotext.constructValue({0x58c900, 0xc000012240}) /home/andreh/src/gotext/src/gotext.go:158 +0x474 gotext.inspectNodeForTranslations({{0xc000016100, 0x4, 0x4}, {0xc000016130, 0x1, 0x1}, {0x5a7750, 0xb}, {0x7ffc031638af, 0x7}, ...}, ...) /home/andreh/src/gotext/src/gotext.go:206 +0x9a5 gotext.processSingleGoSource.func1({0x5d4648, 0xc000016dc0}) /home/andreh/src/gotext/src/gotext.go:296 +0xbe go/ast.inspector.Visit(0xc0000d2d00, {0x5d4648?, 0xc000016dc0?}) /gnu/store/4viyda7sf79xf14zj9fgjavq45wpm4dd-go-full-1.23.5/lib/go/src/go/ast/walk.go:361 +0x2b go/ast.Walk({0x5d4348?, 0xc0000d2d00?}, {0x5d4648, 0xc000016dc0}) /gnu/store/4viyda7sf79xf14zj9fgjavq45wpm4dd-go-full-1.23.5/lib/go/src/go/ast/walk.go:34 +0x4c go/ast.walkList[...](...) /gnu/store/4viyda7sf79xf14zj9fgjavq45wpm4dd-go-full-1.23.5/lib/go/src/go/ast/walk.go:21 go/ast.Walk({0x5d4348?, 0xc0000d2d00?}, {0x5d4d50, 0xc00007ed40}) /gnu/store/4viyda7sf79xf14zj9fgjavq45wpm4dd-go-full-1.23.5/lib/go/src/go/ast/walk.go:203 +0x179e go/ast.walkList[...](...) /gnu/store/4viyda7sf79xf14zj9fgjavq45wpm4dd-go-full-1.23.5/lib/go/src/go/ast/walk.go:21 go/ast.Walk({0x5d4348?, 0xc0000d2d00?}, {0x5d4918, 0xc0000b6720}) /gnu/store/4viyda7sf79xf14zj9fgjavq45wpm4dd-go-full-1.23.5/lib/go/src/go/ast/walk.go:211 +0x30ad go/ast.Walk({0x5d4348?, 0xc0000d2d00?}, {0x5d4fa8, 0xc0000b6750}) /gnu/store/4viyda7sf79xf14zj9fgjavq45wpm4dd-go-full-1.23.5/lib/go/src/go/ast/walk.go:332 +0xf7c go/ast.walkList[...](...) /gnu/store/4viyda7sf79xf14zj9fgjavq45wpm4dd-go-full-1.23.5/lib/go/src/go/ast/walk.go:21 go/ast.Walk({0x5d4348?, 0xc0000d2d00?}, {0x5d4620, 0xc000182000}) /gnu/store/4viyda7sf79xf14zj9fgjavq45wpm4dd-go-full-1.23.5/lib/go/src/go/ast/walk.go:341 +0x3585 go/ast.Inspect(...) /gnu/store/4viyda7sf79xf14zj9fgjavq45wpm4dd-go-full-1.23.5/lib/go/src/go/ast/walk.go:372 gotext.processSingleGoSource({{0xc000016100, 0x4, 0x4}, {0xc000016130, 0x1, 0x1}, {0x5a7750, 0xb}, {0x7ffc031638a f, 0x7}, ...}, ...) /home/andreh/src/gotext/src/gotext.go:295 +0x456 gotext.processFiles({{0xc000016100, 0x4, 0x4}, {0xc000016130, 0x1, 0x1}, {0x5a7750, 0xb}, {0x7ffc031638af, 0x7}, ...}) /home/andreh/src/gotext/src/gotext.go:269 +0x19b gotext.run({{{0xc000016100, 0x4, 0x4}, {0xc000016130, 0x1, 0x1}, {0x5a7750, 0xb}, {0x7ffc031638af, 0x7}, ...}, ...}) /home/andreh/src/gotext/src/gotext.go:413 +0x5b gotext.Main() /home/andreh/src/gotext/src/gotext.go:580 +0x1f8 main.main() /home/andreh/src/gotext/src/main.go:6 +0xf make: *** [Makefile:207: i18n-code] Error 2 make: *** Attente des tâches non terminées.... | ||||
* | Add po/gotext/ | EuAndreh | 2025-05-15 | 9 | -5/+167 |
| | |||||
* | Makefile: Replace mandir(1) with instool(1) | EuAndreh | 2025-05-15 | 1 | -2/+2 |
| | |||||
* | mkdeps.sh: Better name of varlists | EuAndreh | 2025-05-15 | 3 | -23/+24 |
| | |||||
* | doc/: No longer commit into the repository the generated files | EuAndreh | 2025-05-14 | 9 | -35/+25 |
| | |||||
* | po/: Cleanup garbage generated headers | EuAndreh | 2025-05-14 | 9 | -161/+67 |
| | |||||
* | Remove gobang as a dependency | EuAndreh | 2025-05-14 | 3 | -275/+365 |
| | |||||
* | src/gotext.go: Add translatableErrorT | EuAndreh | 2025-05-14 | 1 | -0/+8 |
| | |||||
* | src/gotext.go: Move Main() to the end of the file | EuAndreh | 2025-05-14 | 1 | -21/+14 |
| | |||||
* | src/gotext.go: Rename msgID -> msgIDT | EuAndreh | 2025-05-14 | 2 | -31/+31 |
| | |||||
* | src/gotext.go: Cleanup LC_* comments and make them consts | EuAndreh | 2025-05-14 | 1 | -26/+10 |
| | |||||
* | Remove global `msgIDs` shared variable | EuAndreh | 2025-05-14 | 2 | -40/+56 |
| | |||||
* | src/gotext.go: Group together type definitions | EuAndreh | 2025-05-14 | 1 | -16/+11 |
| | |||||
* | src/gotext.go: Fix usage of `var` | EuAndreh | 2025-05-14 | 1 | -48/+56 |
| | |||||
* | src/gotext.go: Remove global `opts` shared variable | EuAndreh | 2025-05-14 | 2 | -30/+48 |
| | |||||
* | src/gotext.go: Do away with most of the CLI options | EuAndreh | 2025-05-14 | 2 | -133/+24 |
| | |||||
* | rm LICENSE .travis.yml | EuAndreh | 2025-05-14 | 2 | -27/+0 |
| | |||||
* | rm _examples/gettext.go | EuAndreh | 2025-05-14 | 1 | -21/+0 |
| | |||||
* | Absorb go-xgettext/main_test.go | EuAndreh | 2025-05-14 | 9 | -551/+640 |
| | |||||
* | Absorb gettext_test.go | EuAndreh | 2025-05-12 | 15 | -178/+257 |
| | |||||
* | mv po/* po/doc/ | EuAndreh | 2025-05-12 | 9 | -2/+2 |
| | |||||
* | Absorb gettext.go | EuAndreh | 2025-05-12 | 2 | -222/+190 |
| | |||||
* | Absorb go-xgettext/main.go: Hackly do away with ad-hoc go-flags package | EuAndreh | 2025-05-10 | 2 | -357/+426 |
| | |||||
* | Setup manpage i18n | EuAndreh | 2025-05-10 | 18 | -2/+274 |
| | |||||
* | Setup Go skeleton | EuAndreh | 2025-05-10 | 16 | -1/+362 |
| | |||||
* | Merge pull request #11 from mvo5/bugfix/fix-tests-on-linux | José Carlos | 2016-08-30 | 1 | -7/+12 |
|\ | | | | | Bugfix/fix tests on linux | ||||
| * | fix tests on ubuntu | Michael Vogt | 2016-03-09 | 1 | -7/+12 |
| | | |||||
* | | Merge pull request #10 from mvo5/feature/travis | José Carlos | 2016-06-02 | 2 | -0/+12 |
|\| | | | | | add travis.yml | ||||
| * | add travis.yml | Michael Vogt | 2016-03-09 | 2 | -0/+12 |
|/ | |||||
* | Fixing example with go-xgettext. | José Carlos Nieto | 2016-02-20 | 3 | -1/+1 |
| | |||||
* | Adding old LC_* style constants for backward compatibility. | José Carlos Nieto | 2016-02-20 | 1 | -2/+13 |
| | |||||
* | Merge branch 'master' of github.com:gosexy/gettext | José Carlos Nieto | 2016-02-20 | 0 | -0/+0 |
|\ | |||||
| * | Merge pull request #9 from gosexy/issue-5 | José Carlos | 2016-02-20 | 10 | -255/+160 |
| |\ | | | | | | | Code cleaning. | ||||
* | | | Updating example. | José Carlos Nieto | 2016-02-20 | 2 | -19/+11 |
| | | | |||||
* | | | Adding a note on #1. | José Carlos Nieto | 2016-02-20 | 1 | -0/+2 |
| |/ |/| | |||||
* | | Code cleaning. | José Carlos Nieto | 2016-02-20 | 2 | -60/+84 |
|\| | |||||
| * | Merge branch 'master' of github.com:gosexy/gettext | José Carlos Nieto | 2016-02-07 | 1 | -40/+65 |
| |\ | |||||
| | * | Merge pull request #8 from gosexy/issue-7 | José Carlos | 2016-02-07 | 1 | -40/+65 |
| | |\ | | | | | | | | | Closes #7 | ||||
| | | * | Closes #7 | José Carlos Nieto | 2016-02-07 | 1 | -40/+65 |
| | |/ | |||||
| * / | Updating readme. | José Carlos Nieto | 2016-02-07 | 1 | -22/+19 |
| |/ | |||||
* / | Code cleaning. | José Carlos Nieto | 2016-02-20 | 10 | -255/+158 |
|/ | |||||
* | Merge pull request #6 from mvo5/feature/xgettext | José Carlos | 2016-02-07 | 2 | -0/+855 |
|\ | | | | | Add native go xgettext |