Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | 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 | -47/+55 |
| | |||||
* | 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 | -550/+639 |
| | |||||
* | 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 | -254/+159 |
| |\ | | | | | | | 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 | -254/+157 |
|/ | |||||
* | Merge pull request #6 from mvo5/feature/xgettext | José Carlos | 2016-02-07 | 2 | -0/+855 |
|\ | | | | | Add native go xgettext | ||||
| * | Add native go xgettext | Michael Vogt | 2016-01-25 | 2 | -0/+855 |
|/ | | | | | | | Upstream xgettext does not provide support for the go raw_string_lit (backtick) multi-line strings. Thanks to the excellent go/ast package its easy to build a native xgettext in go itself. | ||||
* | Merge pull request #2 from sqp/nil_string | José Carlos | 2016-01-09 | 2 | -4/+45 |
|\ | | | | | Fix translations with DGettext (and other D... func) when the domain name is empty. | ||||
| * | Fix translations with DGettext (and other D... func) when the domain name is ↵ | SQP | 2015-06-08 | 2 | -4/+45 |
|/ | | | | | | | | empty. According to the doc, NULL allow to use the current domain as fallback: http://www.gnu.org/software/libc/manual/html_node/Translation-with-gettext.html If the domainname parameter is the null pointer the dgettext function is exactly equivalent to gettext since the default value for the domain name is used. | ||||
* | Styling typos. | José Carlos Nieto | 2013-02-21 | 1 | -11/+12 |
| | |||||
* | Typo | José Carlos Nieto | 2013-02-19 | 1 | -1/+1 |
| | |||||
* | Updating code (fixing leaks) and docs. | José Carlos Nieto | 2013-02-19 | 3 | -31/+115 |
| | |||||
* | Typo. | José Carlos Nieto | 2012-10-06 | 1 | -6/+6 |
| | |||||
* | Additional data on xgettext. | José Carlos Nieto | 2012-10-06 | 2 | -1/+25 |
| | |||||
* | Typos. | José Carlos Nieto | 2012-10-06 | 1 | -3/+6 |
| | |||||
* | Adding README file. | José Carlos Nieto | 2012-10-06 | 1 | -0/+63 |
| | |||||
* | Adding Deutsch and Español examples. | José Carlos Nieto | 2012-10-06 | 7 | -0/+255 |
| | |||||
* | Initial commit. | José Carlos Nieto | 2012-10-06 | 2 | -0/+126 |