Skip to content

Commit 5bc035e

Browse files
committedMar 29, 2021
CLOUD-488: use EverlongProject fork
Create a go.mod file and rewrite all the imports accordingly.
1 parent 670cbac commit 5bc035e

File tree

256 files changed

+256
-33872
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

256 files changed

+256
-33872
lines changed
 

‎README.md

+21-21
Original file line numberDiff line numberDiff line change
@@ -1,15 +1,15 @@
1-
i18n Tooling for the Go Language [![Build Status](https://travis-ci.org/maximilien/i18n4go.svg?branch=master)](https://travis-ci.org/maximilien/i18n4go#)
1+
i18n Tooling for the Go Language [![Build Status](https://travis-ci.org/EverlongProject/i18n4go.svg?branch=master)](https://travis-ci.org/EverlongProject/i18n4go#)
22
==============================
33

4-
[![Join the chat at https://gitter.im/maximilien/i18n4go](https://badges.gitter.im/Join%20Chat.svg)](https://gitter.im/maximilien/i18n4go?utm_source=badge&utm_medium=badge&utm_campaign=pr-badge&utm_content=badge) [![dWOpen Slack](https://raw.githubusercontent.com/maximilien/i18n4go/master/slack/slack.png)](https://dwopen.slack.com/messages/i18n4go/)
4+
[![Join the chat at https://gitter.im/EverlongProject/i18n4go](https://badges.gitter.im/Join%20Chat.svg)](https://gitter.im/EverlongProject/i18n4go?utm_source=badge&utm_medium=badge&utm_campaign=pr-badge&utm_content=badge) [![dWOpen Slack](https://raw.githubusercontent.com/EverlongProject/i18n4go/master/slack/slack.png)](https://dwopen.slack.com/messages/i18n4go/)
55

66
This is a general purpose internationalization (i18n) tooling for Go language (Golang) programs. It allows you to prepare Go language code for internationalization and localization (l10n). You can also use it to help maintain the resulting i18n-enabled Golang code so that it remains internationalized. This tool was extracted while we worked on enabling the [Cloud Foundry CLI](https://github.com/cloudfoundry/cli) with i18n support.
77

8-
This tool is licensed under the [Apache 2.0 OSS license](https://github.com/maximilien/i18n4go/blob/master/LICENSE). We'd love to hear from you if you are using, attempting to use, or planning to use this tool.
8+
This tool is licensed under the [Apache 2.0 OSS license](https://github.com/EverlongProject/i18n4go/blob/master/LICENSE). We'd love to hear from you if you are using, attempting to use, or planning to use this tool.
99

1010
Two additional ways, besides Gitter or Slack chat above, to contact us:
1111

12-
1. Feel free to [open an issue (good or bad)](https://github.com/maximilien/i18n4go/issues) here on Github.
12+
1. Feel free to [open an issue (good or bad)](https://github.com/EverlongProject/i18n4go/issues) here on Github.
1313
2. Send email to `i18n4go` at the Gmail domain.
1414

1515
## Getting Started
@@ -18,7 +18,7 @@ Two additional ways, besides Gitter or Slack chat above, to contact us:
1818
### Overview Presentations, Talks, Blogs
1919
----------------------------------------
2020

21-
* Talk at [GoSF Meetup](http://www.meetup.com/golangsf/events/220603955/) on April, 2015. Slides ([PDF](https://github.com/maximilien/presentations/blob/master/2015/i18n4go-gosf-meetup/releases/i18n4go-v0.4.1.pdf) and [PPTX](https://github.com/maximilien/presentations/blob/master/2015/i18n4go-gosf-meetup/releases/i18n4go-v0.4.1.pptx)), [demo](https://github.com/maximilien/i18n4go/tree/master/examples/demo1)
21+
* Talk at [GoSF Meetup](http://www.meetup.com/golangsf/events/220603955/) on April, 2015. Slides ([PDF](https://github.com/EverlongProject/presentations/blob/master/2015/i18n4go-gosf-meetup/releases/i18n4go-v0.4.1.pdf) and [PPTX](https://github.com/EverlongProject/presentations/blob/master/2015/i18n4go-gosf-meetup/releases/i18n4go-v0.4.1.pptx)), [demo](https://github.com/EverlongProject/i18n4go/tree/master/examples/demo1)
2222

2323
* Blog post on July, 2015 at IBM's developerWorks: [i18n4go: Taking your Golang Projects Global for Fun or Profits](https://developer.ibm.com/open/2015/07/18/i18n4go-taking-golang-projects-global-fun-profits/)
2424

@@ -28,7 +28,7 @@ Two additional ways, besides Gitter or Slack chat above, to contact us:
2828
Assuming you have a valid [Golang 1.4.2](https://golang.org/dl/) or [later](https://golang.org/dl/) installed for your system, you can quickly get the latest `i18n4go` executable by running the following `go` command:
2929

3030
```
31-
$ go get github.com/maximilien/i18n4go/i18n4go
31+
$ go get github.com/EverlongProject/i18n4go/i18n4go
3232
```
3333

3434
This will build and place the `i18n4go` executable built for your operating system in your `$GOPATH/bin` directory.
@@ -39,10 +39,10 @@ This will build and place the `i18n4go` executable built for your operating syst
3939
Clone this repo and build it. Using the following commands on a Linux or Mac OS X system:
4040

4141
```
42-
$ mkdir -p i18n4go/src/github.com/maximilien
42+
$ mkdir -p i18n4go/src/github.com/EverlongProject
4343
$ export GOPATH=$(pwd)/i18n4go:$GOPATH
44-
$ cd i18n4go/src/github.com/maximilien
45-
$ git clone https://github.com/maximilien/i18n4go.git
44+
$ cd i18n4go/src/github.com/EverlongProject
45+
$ git clone https://github.com/EverlongProject/i18n4go.git
4646
$ cd i18n4go
4747
$ ./bin/build
4848
```
@@ -68,15 +68,15 @@ $ bin/test
6868
Formatting packages...
6969
7070
Integration Testing packages:
71-
ok github.com/maximilien/i18n4go/integration/checkup 1.571s
72-
ok github.com/maximilien/i18n4go/integration/create_translations 1.542s
73-
ok github.com/maximilien/i18n4go/integration/extract_strings 1.694s
74-
ok github.com/maximilien/i18n4go/integration/fixup 1.657s
75-
ok github.com/maximilien/i18n4go/integration/merge_strings 1.645s
76-
ok github.com/maximilien/i18n4go/integration/rewrite_package 1.853s
77-
ok github.com/maximilien/i18n4go/integration/show_missing_strings 1.590s
78-
? github.com/maximilien/i18n4go/integration/test_helpers [no test files]
79-
ok github.com/maximilien/i18n4go/integration/verify_strings 1.701s
71+
ok github.com/EverlongProject/i18n4go/integration/checkup 1.571s
72+
ok github.com/EverlongProject/i18n4go/integration/create_translations 1.542s
73+
ok github.com/EverlongProject/i18n4go/integration/extract_strings 1.694s
74+
ok github.com/EverlongProject/i18n4go/integration/fixup 1.657s
75+
ok github.com/EverlongProject/i18n4go/integration/merge_strings 1.645s
76+
ok github.com/EverlongProject/i18n4go/integration/rewrite_package 1.853s
77+
ok github.com/EverlongProject/i18n4go/integration/show_missing_strings 1.590s
78+
? github.com/EverlongProject/i18n4go/integration/test_helpers [no test files]
79+
ok github.com/EverlongProject/i18n4go/integration/verify_strings 1.701s
8080
8181
Vetting packages for potential issues...
8282
@@ -109,7 +109,7 @@ For instance to create `fr_FR` file(s) for French and every other locale_Languag
109109

110110
### Typical Workflow Diagram
111111

112-
![Typical i18n4go workflow diagram](https://github.com/maximilien/i18n4go/blob/master/docs/images/typical-workflow.png)
112+
![Typical i18n4go workflow diagram](https://github.com/EverlongProject/i18n4go/blob/master/docs/images/typical-workflow.png)
113113

114114
### Help
115115
--------
@@ -474,7 +474,7 @@ The `fixup` command interactively lets users add, update, or remove translations
474474

475475
The exclude.json file can be used to manage which strings should not be extract with the `extracting-strings` command. In the `excluded.json` file,
476476
you can specifie string literals to ignore as well as classes of strings using a Perl-style regular expression. We have provided an example file
477-
[exclude](https://github.com/maximilien/i18n4go/blob/master/example/excluded.json) to demonstrate the string and regexp cases.
477+
[exclude](https://github.com/EverlongProject/i18n4go/blob/master/example/excluded.json) to demonstrate the string and regexp cases.
478478

479479
### string literals
480480

@@ -574,7 +574,7 @@ Optionally, you can use `bin/run` to compile and run the executable in one step.
574574
## Contributing
575575
---------------
576576

577-
* We gratefully acknowledge and thank the [current contributors](https://github.com/maximilien/i18n4go/graphs/contributors)
577+
* We gratefully acknowledge and thank the [current contributors](https://github.com/EverlongProject/i18n4go/graphs/contributors)
578578
* We welcome any and all contributions as Pull Requests (PR)
579579
* We also welcome issues and bug report and new feature request. We will address as time permits
580580
* Follow the steps above in Developing to get your system setup correctly

‎cmds/checkup.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ import (
1212
"go/parser"
1313
"go/token"
1414

15-
"github.com/Liam-Williams/i18n4go/common"
15+
"github.com/EverlongProject/i18n4go/common"
1616
)
1717

1818
type Checkup struct {

0 commit comments

Comments
 (0)
Please sign in to comment.