├── .gitignore ├── .jc ├── .version ├── CODEOWNERS ├── LICENSE ├── Makefile ├── README.md ├── branches.go ├── cli ├── Makefile ├── README.md ├── action.go ├── action_test.go ├── argument.go ├── basic_example_test.go ├── cli2.go ├── errors.go ├── example │ └── main.go ├── handlers.go ├── handlers_test.go ├── option.go ├── option_test.go ├── pointer_type_test.go ├── router.go ├── runner.go ├── short_notation_example_test.go ├── short_notation_test.go ├── stderr.go ├── table.go ├── utils.go ├── utils_test.go └── writer.go ├── client.go ├── config ├── license-decisions.yml └── license_finder.yml ├── go.mod ├── go.sum ├── info_command.go ├── init.go ├── internal ├── paths │ ├── glob.go │ ├── glob_test.go │ ├── paths.go │ └── paths_test.go ├── placeholders │ ├── placeholders.go │ └── placeholders_test.go ├── print │ └── print.go ├── prompt │ └── prompt.go ├── shared │ └── urls.go ├── spinner │ └── spinner.go ├── stringz │ └── strings.go └── updatechecker │ ├── update_checker.go │ └── update_checker_test.go ├── locale_file.go ├── main.go ├── main_test.go ├── non_rest_routes.go ├── pull.go ├── pull_target.go ├── pull_target_test.go ├── pull_test.go ├── push.go ├── push_source.go ├── push_test.go ├── router.go ├── shared.go ├── tagparse ├── tagparse.go └── tagparse_test.go ├── testdata └── en.yml ├── upload_cleanup.go ├── vendor ├── github.com │ ├── bgentry │ │ └── speakeasy │ │ │ ├── .gitignore │ │ │ ├── LICENSE │ │ │ ├── LICENSE_WINDOWS │ │ │ ├── Readme.md │ │ │ ├── speakeasy.go │ │ │ ├── speakeasy_unix.go │ │ │ └── speakeasy_windows.go │ ├── coreos │ │ └── go-semver │ │ │ ├── LICENSE │ │ │ └── semver │ │ │ ├── semver.go │ │ │ └── sort.go │ ├── daviddengcn │ │ └── go-colortext │ │ │ ├── .gitignore │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── ct.go │ │ │ ├── ct_ansi.go │ │ │ └── ct_win.go │ ├── google │ │ └── btree │ │ │ ├── .travis.yml │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ └── btree.go │ ├── gopherjs │ │ └── gopherjs │ │ │ ├── LICENSE │ │ │ └── js │ │ │ └── js.go │ ├── jpillora │ │ └── backoff │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ └── backoff.go │ ├── jtolds │ │ └── gls │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── context.go │ │ │ ├── gen_sym.go │ │ │ ├── gid.go │ │ │ ├── id_pool.go │ │ │ ├── stack_tags.go │ │ │ ├── stack_tags_js.go │ │ │ └── stack_tags_main.go │ ├── peterbourgon │ │ └── diskv │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── compression.go │ │ │ ├── diskv.go │ │ │ └── index.go │ ├── phrase │ │ └── phraseapp-go │ │ │ ├── LICENSE │ │ │ └── phraseapp │ │ │ ├── Makefile │ │ │ ├── client.go │ │ │ ├── config.go │ │ │ ├── config_unix.go │ │ │ ├── config_windows.go │ │ │ ├── error.go │ │ │ ├── http_cache.go │ │ │ ├── lib.go │ │ │ ├── response.go │ │ │ └── version.go │ └── smartystreets │ │ ├── assertions │ │ ├── .gitignore │ │ ├── .travis.yml │ │ ├── CONTRIBUTING.md │ │ ├── LICENSE.md │ │ ├── README.md │ │ ├── collections.go │ │ ├── doc.go │ │ ├── equal_method.go │ │ ├── equality.go │ │ ├── filter.go │ │ ├── internal │ │ │ ├── go-render │ │ │ │ ├── LICENSE │ │ │ │ └── render │ │ │ │ │ ├── render.go │ │ │ │ │ └── render_time.go │ │ │ └── oglematchers │ │ │ │ ├── .gitignore │ │ │ │ ├── .travis.yml │ │ │ │ ├── LICENSE │ │ │ │ ├── README.md │ │ │ │ ├── any_of.go │ │ │ │ ├── contains.go │ │ │ │ ├── deep_equals.go │ │ │ │ ├── equals.go │ │ │ │ ├── greater_or_equal.go │ │ │ │ ├── greater_than.go │ │ │ │ ├── less_or_equal.go │ │ │ │ ├── less_than.go │ │ │ │ ├── matcher.go │ │ │ │ ├── not.go │ │ │ │ └── transform_description.go │ │ ├── messages.go │ │ ├── panic.go │ │ ├── quantity.go │ │ ├── serializer.go │ │ ├── strings.go │ │ ├── time.go │ │ └── type.go │ │ └── goconvey │ │ ├── LICENSE.md │ │ └── convey │ │ ├── assertions.go │ │ ├── context.go │ │ ├── convey.goconvey │ │ ├── discovery.go │ │ ├── doc.go │ │ ├── gotest │ │ └── utils.go │ │ ├── init.go │ │ ├── nilReporter.go │ │ └── reporting │ │ ├── console.go │ │ ├── doc.go │ │ ├── dot.go │ │ ├── gotest.go │ │ ├── init.go │ │ ├── json.go │ │ ├── printer.go │ │ ├── problems.go │ │ ├── reporter.go │ │ ├── reporting.goconvey │ │ ├── reports.go │ │ ├── statistics.go │ │ └── story.go ├── gopkg.in │ └── yaml.v2 │ │ ├── .travis.yml │ │ ├── LICENSE │ │ ├── LICENSE.libyaml │ │ ├── NOTICE │ │ ├── README.md │ │ ├── apic.go │ │ ├── decode.go │ │ ├── emitterc.go │ │ ├── encode.go │ │ ├── go.mod │ │ ├── parserc.go │ │ ├── readerc.go │ │ ├── resolve.go │ │ ├── scannerc.go │ │ ├── sorter.go │ │ ├── writerc.go │ │ ├── yaml.go │ │ ├── yamlh.go │ │ └── yamlprivateh.go └── modules.txt └── vendoring_test.go /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phrase/phraseapp-client/HEAD/.gitignore -------------------------------------------------------------------------------- /.jc: -------------------------------------------------------------------------------- 1 | url = "http://172.31.5.189" 2 | job_name = "phraseapp-client" 3 | -------------------------------------------------------------------------------- /.version: -------------------------------------------------------------------------------- 1 | 1.17.1 2 | -------------------------------------------------------------------------------- /CODEOWNERS: -------------------------------------------------------------------------------- 1 | * @theSoenke 2 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phrase/phraseapp-client/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phrase/phraseapp-client/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phrase/phraseapp-client/HEAD/README.md -------------------------------------------------------------------------------- /branches.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phrase/phraseapp-client/HEAD/branches.go -------------------------------------------------------------------------------- /cli/Makefile: -------------------------------------------------------------------------------- 1 | test: 2 | go test -v 3 | -------------------------------------------------------------------------------- /cli/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phrase/phraseapp-client/HEAD/cli/README.md -------------------------------------------------------------------------------- /cli/action.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phrase/phraseapp-client/HEAD/cli/action.go -------------------------------------------------------------------------------- /cli/action_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phrase/phraseapp-client/HEAD/cli/action_test.go -------------------------------------------------------------------------------- /cli/argument.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phrase/phraseapp-client/HEAD/cli/argument.go -------------------------------------------------------------------------------- /cli/basic_example_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phrase/phraseapp-client/HEAD/cli/basic_example_test.go -------------------------------------------------------------------------------- /cli/cli2.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phrase/phraseapp-client/HEAD/cli/cli2.go -------------------------------------------------------------------------------- /cli/errors.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phrase/phraseapp-client/HEAD/cli/errors.go -------------------------------------------------------------------------------- /cli/example/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phrase/phraseapp-client/HEAD/cli/example/main.go -------------------------------------------------------------------------------- /cli/handlers.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phrase/phraseapp-client/HEAD/cli/handlers.go -------------------------------------------------------------------------------- /cli/handlers_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phrase/phraseapp-client/HEAD/cli/handlers_test.go -------------------------------------------------------------------------------- /cli/option.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phrase/phraseapp-client/HEAD/cli/option.go -------------------------------------------------------------------------------- /cli/option_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phrase/phraseapp-client/HEAD/cli/option_test.go -------------------------------------------------------------------------------- /cli/pointer_type_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phrase/phraseapp-client/HEAD/cli/pointer_type_test.go -------------------------------------------------------------------------------- /cli/router.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phrase/phraseapp-client/HEAD/cli/router.go -------------------------------------------------------------------------------- /cli/runner.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phrase/phraseapp-client/HEAD/cli/runner.go -------------------------------------------------------------------------------- /cli/short_notation_example_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phrase/phraseapp-client/HEAD/cli/short_notation_example_test.go -------------------------------------------------------------------------------- /cli/short_notation_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phrase/phraseapp-client/HEAD/cli/short_notation_test.go -------------------------------------------------------------------------------- /cli/stderr.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phrase/phraseapp-client/HEAD/cli/stderr.go -------------------------------------------------------------------------------- /cli/table.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phrase/phraseapp-client/HEAD/cli/table.go -------------------------------------------------------------------------------- /cli/utils.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phrase/phraseapp-client/HEAD/cli/utils.go -------------------------------------------------------------------------------- /cli/utils_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phrase/phraseapp-client/HEAD/cli/utils_test.go -------------------------------------------------------------------------------- /cli/writer.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phrase/phraseapp-client/HEAD/cli/writer.go -------------------------------------------------------------------------------- /client.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phrase/phraseapp-client/HEAD/client.go -------------------------------------------------------------------------------- /config/license-decisions.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phrase/phraseapp-client/HEAD/config/license-decisions.yml -------------------------------------------------------------------------------- /config/license_finder.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phrase/phraseapp-client/HEAD/config/license_finder.yml -------------------------------------------------------------------------------- /go.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phrase/phraseapp-client/HEAD/go.mod -------------------------------------------------------------------------------- /go.sum: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phrase/phraseapp-client/HEAD/go.sum -------------------------------------------------------------------------------- /info_command.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phrase/phraseapp-client/HEAD/info_command.go -------------------------------------------------------------------------------- /init.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phrase/phraseapp-client/HEAD/init.go -------------------------------------------------------------------------------- /internal/paths/glob.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phrase/phraseapp-client/HEAD/internal/paths/glob.go -------------------------------------------------------------------------------- /internal/paths/glob_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phrase/phraseapp-client/HEAD/internal/paths/glob_test.go -------------------------------------------------------------------------------- /internal/paths/paths.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phrase/phraseapp-client/HEAD/internal/paths/paths.go -------------------------------------------------------------------------------- /internal/paths/paths_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phrase/phraseapp-client/HEAD/internal/paths/paths_test.go -------------------------------------------------------------------------------- /internal/placeholders/placeholders.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phrase/phraseapp-client/HEAD/internal/placeholders/placeholders.go -------------------------------------------------------------------------------- /internal/placeholders/placeholders_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phrase/phraseapp-client/HEAD/internal/placeholders/placeholders_test.go -------------------------------------------------------------------------------- /internal/print/print.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phrase/phraseapp-client/HEAD/internal/print/print.go -------------------------------------------------------------------------------- /internal/prompt/prompt.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phrase/phraseapp-client/HEAD/internal/prompt/prompt.go -------------------------------------------------------------------------------- /internal/shared/urls.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phrase/phraseapp-client/HEAD/internal/shared/urls.go -------------------------------------------------------------------------------- /internal/spinner/spinner.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phrase/phraseapp-client/HEAD/internal/spinner/spinner.go -------------------------------------------------------------------------------- /internal/stringz/strings.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phrase/phraseapp-client/HEAD/internal/stringz/strings.go -------------------------------------------------------------------------------- /internal/updatechecker/update_checker.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phrase/phraseapp-client/HEAD/internal/updatechecker/update_checker.go -------------------------------------------------------------------------------- /internal/updatechecker/update_checker_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phrase/phraseapp-client/HEAD/internal/updatechecker/update_checker_test.go -------------------------------------------------------------------------------- /locale_file.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phrase/phraseapp-client/HEAD/locale_file.go -------------------------------------------------------------------------------- /main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phrase/phraseapp-client/HEAD/main.go -------------------------------------------------------------------------------- /main_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phrase/phraseapp-client/HEAD/main_test.go -------------------------------------------------------------------------------- /non_rest_routes.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phrase/phraseapp-client/HEAD/non_rest_routes.go -------------------------------------------------------------------------------- /pull.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phrase/phraseapp-client/HEAD/pull.go -------------------------------------------------------------------------------- /pull_target.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phrase/phraseapp-client/HEAD/pull_target.go -------------------------------------------------------------------------------- /pull_target_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phrase/phraseapp-client/HEAD/pull_target_test.go -------------------------------------------------------------------------------- /pull_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phrase/phraseapp-client/HEAD/pull_test.go -------------------------------------------------------------------------------- /push.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phrase/phraseapp-client/HEAD/push.go -------------------------------------------------------------------------------- /push_source.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phrase/phraseapp-client/HEAD/push_source.go -------------------------------------------------------------------------------- /push_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phrase/phraseapp-client/HEAD/push_test.go -------------------------------------------------------------------------------- /router.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phrase/phraseapp-client/HEAD/router.go -------------------------------------------------------------------------------- /shared.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phrase/phraseapp-client/HEAD/shared.go -------------------------------------------------------------------------------- /tagparse/tagparse.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phrase/phraseapp-client/HEAD/tagparse/tagparse.go -------------------------------------------------------------------------------- /tagparse/tagparse_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phrase/phraseapp-client/HEAD/tagparse/tagparse_test.go -------------------------------------------------------------------------------- /testdata/en.yml: -------------------------------------------------------------------------------- 1 | en: 2 | abc: hey -------------------------------------------------------------------------------- /upload_cleanup.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phrase/phraseapp-client/HEAD/upload_cleanup.go -------------------------------------------------------------------------------- /vendor/github.com/bgentry/speakeasy/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phrase/phraseapp-client/HEAD/vendor/github.com/bgentry/speakeasy/.gitignore -------------------------------------------------------------------------------- /vendor/github.com/bgentry/speakeasy/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phrase/phraseapp-client/HEAD/vendor/github.com/bgentry/speakeasy/LICENSE -------------------------------------------------------------------------------- /vendor/github.com/bgentry/speakeasy/LICENSE_WINDOWS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phrase/phraseapp-client/HEAD/vendor/github.com/bgentry/speakeasy/LICENSE_WINDOWS -------------------------------------------------------------------------------- /vendor/github.com/bgentry/speakeasy/Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phrase/phraseapp-client/HEAD/vendor/github.com/bgentry/speakeasy/Readme.md -------------------------------------------------------------------------------- /vendor/github.com/bgentry/speakeasy/speakeasy.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phrase/phraseapp-client/HEAD/vendor/github.com/bgentry/speakeasy/speakeasy.go -------------------------------------------------------------------------------- /vendor/github.com/bgentry/speakeasy/speakeasy_unix.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phrase/phraseapp-client/HEAD/vendor/github.com/bgentry/speakeasy/speakeasy_unix.go -------------------------------------------------------------------------------- /vendor/github.com/bgentry/speakeasy/speakeasy_windows.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phrase/phraseapp-client/HEAD/vendor/github.com/bgentry/speakeasy/speakeasy_windows.go -------------------------------------------------------------------------------- /vendor/github.com/coreos/go-semver/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phrase/phraseapp-client/HEAD/vendor/github.com/coreos/go-semver/LICENSE -------------------------------------------------------------------------------- /vendor/github.com/coreos/go-semver/semver/semver.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phrase/phraseapp-client/HEAD/vendor/github.com/coreos/go-semver/semver/semver.go -------------------------------------------------------------------------------- /vendor/github.com/coreos/go-semver/semver/sort.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phrase/phraseapp-client/HEAD/vendor/github.com/coreos/go-semver/semver/sort.go -------------------------------------------------------------------------------- /vendor/github.com/daviddengcn/go-colortext/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phrase/phraseapp-client/HEAD/vendor/github.com/daviddengcn/go-colortext/.gitignore -------------------------------------------------------------------------------- /vendor/github.com/daviddengcn/go-colortext/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phrase/phraseapp-client/HEAD/vendor/github.com/daviddengcn/go-colortext/LICENSE -------------------------------------------------------------------------------- /vendor/github.com/daviddengcn/go-colortext/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phrase/phraseapp-client/HEAD/vendor/github.com/daviddengcn/go-colortext/README.md -------------------------------------------------------------------------------- /vendor/github.com/daviddengcn/go-colortext/ct.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phrase/phraseapp-client/HEAD/vendor/github.com/daviddengcn/go-colortext/ct.go -------------------------------------------------------------------------------- /vendor/github.com/daviddengcn/go-colortext/ct_ansi.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phrase/phraseapp-client/HEAD/vendor/github.com/daviddengcn/go-colortext/ct_ansi.go -------------------------------------------------------------------------------- /vendor/github.com/daviddengcn/go-colortext/ct_win.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phrase/phraseapp-client/HEAD/vendor/github.com/daviddengcn/go-colortext/ct_win.go -------------------------------------------------------------------------------- /vendor/github.com/google/btree/.travis.yml: -------------------------------------------------------------------------------- 1 | language: go 2 | -------------------------------------------------------------------------------- /vendor/github.com/google/btree/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phrase/phraseapp-client/HEAD/vendor/github.com/google/btree/LICENSE -------------------------------------------------------------------------------- /vendor/github.com/google/btree/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phrase/phraseapp-client/HEAD/vendor/github.com/google/btree/README.md -------------------------------------------------------------------------------- /vendor/github.com/google/btree/btree.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phrase/phraseapp-client/HEAD/vendor/github.com/google/btree/btree.go -------------------------------------------------------------------------------- /vendor/github.com/gopherjs/gopherjs/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phrase/phraseapp-client/HEAD/vendor/github.com/gopherjs/gopherjs/LICENSE -------------------------------------------------------------------------------- /vendor/github.com/gopherjs/gopherjs/js/js.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phrase/phraseapp-client/HEAD/vendor/github.com/gopherjs/gopherjs/js/js.go -------------------------------------------------------------------------------- /vendor/github.com/jpillora/backoff/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phrase/phraseapp-client/HEAD/vendor/github.com/jpillora/backoff/LICENSE -------------------------------------------------------------------------------- /vendor/github.com/jpillora/backoff/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phrase/phraseapp-client/HEAD/vendor/github.com/jpillora/backoff/README.md -------------------------------------------------------------------------------- /vendor/github.com/jpillora/backoff/backoff.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phrase/phraseapp-client/HEAD/vendor/github.com/jpillora/backoff/backoff.go -------------------------------------------------------------------------------- /vendor/github.com/jtolds/gls/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phrase/phraseapp-client/HEAD/vendor/github.com/jtolds/gls/LICENSE -------------------------------------------------------------------------------- /vendor/github.com/jtolds/gls/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phrase/phraseapp-client/HEAD/vendor/github.com/jtolds/gls/README.md -------------------------------------------------------------------------------- /vendor/github.com/jtolds/gls/context.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phrase/phraseapp-client/HEAD/vendor/github.com/jtolds/gls/context.go -------------------------------------------------------------------------------- /vendor/github.com/jtolds/gls/gen_sym.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phrase/phraseapp-client/HEAD/vendor/github.com/jtolds/gls/gen_sym.go -------------------------------------------------------------------------------- /vendor/github.com/jtolds/gls/gid.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phrase/phraseapp-client/HEAD/vendor/github.com/jtolds/gls/gid.go -------------------------------------------------------------------------------- /vendor/github.com/jtolds/gls/id_pool.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phrase/phraseapp-client/HEAD/vendor/github.com/jtolds/gls/id_pool.go -------------------------------------------------------------------------------- /vendor/github.com/jtolds/gls/stack_tags.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phrase/phraseapp-client/HEAD/vendor/github.com/jtolds/gls/stack_tags.go -------------------------------------------------------------------------------- /vendor/github.com/jtolds/gls/stack_tags_js.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phrase/phraseapp-client/HEAD/vendor/github.com/jtolds/gls/stack_tags_js.go -------------------------------------------------------------------------------- /vendor/github.com/jtolds/gls/stack_tags_main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phrase/phraseapp-client/HEAD/vendor/github.com/jtolds/gls/stack_tags_main.go -------------------------------------------------------------------------------- /vendor/github.com/peterbourgon/diskv/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phrase/phraseapp-client/HEAD/vendor/github.com/peterbourgon/diskv/LICENSE -------------------------------------------------------------------------------- /vendor/github.com/peterbourgon/diskv/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phrase/phraseapp-client/HEAD/vendor/github.com/peterbourgon/diskv/README.md -------------------------------------------------------------------------------- /vendor/github.com/peterbourgon/diskv/compression.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phrase/phraseapp-client/HEAD/vendor/github.com/peterbourgon/diskv/compression.go -------------------------------------------------------------------------------- /vendor/github.com/peterbourgon/diskv/diskv.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phrase/phraseapp-client/HEAD/vendor/github.com/peterbourgon/diskv/diskv.go -------------------------------------------------------------------------------- /vendor/github.com/peterbourgon/diskv/index.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phrase/phraseapp-client/HEAD/vendor/github.com/peterbourgon/diskv/index.go -------------------------------------------------------------------------------- /vendor/github.com/phrase/phraseapp-go/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phrase/phraseapp-client/HEAD/vendor/github.com/phrase/phraseapp-go/LICENSE -------------------------------------------------------------------------------- /vendor/github.com/phrase/phraseapp-go/phraseapp/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phrase/phraseapp-client/HEAD/vendor/github.com/phrase/phraseapp-go/phraseapp/Makefile -------------------------------------------------------------------------------- /vendor/github.com/phrase/phraseapp-go/phraseapp/client.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phrase/phraseapp-client/HEAD/vendor/github.com/phrase/phraseapp-go/phraseapp/client.go -------------------------------------------------------------------------------- /vendor/github.com/phrase/phraseapp-go/phraseapp/config.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phrase/phraseapp-client/HEAD/vendor/github.com/phrase/phraseapp-go/phraseapp/config.go -------------------------------------------------------------------------------- /vendor/github.com/phrase/phraseapp-go/phraseapp/config_unix.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phrase/phraseapp-client/HEAD/vendor/github.com/phrase/phraseapp-go/phraseapp/config_unix.go -------------------------------------------------------------------------------- /vendor/github.com/phrase/phraseapp-go/phraseapp/config_windows.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phrase/phraseapp-client/HEAD/vendor/github.com/phrase/phraseapp-go/phraseapp/config_windows.go -------------------------------------------------------------------------------- /vendor/github.com/phrase/phraseapp-go/phraseapp/error.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phrase/phraseapp-client/HEAD/vendor/github.com/phrase/phraseapp-go/phraseapp/error.go -------------------------------------------------------------------------------- /vendor/github.com/phrase/phraseapp-go/phraseapp/http_cache.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phrase/phraseapp-client/HEAD/vendor/github.com/phrase/phraseapp-go/phraseapp/http_cache.go -------------------------------------------------------------------------------- /vendor/github.com/phrase/phraseapp-go/phraseapp/lib.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phrase/phraseapp-client/HEAD/vendor/github.com/phrase/phraseapp-go/phraseapp/lib.go -------------------------------------------------------------------------------- /vendor/github.com/phrase/phraseapp-go/phraseapp/response.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phrase/phraseapp-client/HEAD/vendor/github.com/phrase/phraseapp-go/phraseapp/response.go -------------------------------------------------------------------------------- /vendor/github.com/phrase/phraseapp-go/phraseapp/version.go: -------------------------------------------------------------------------------- 1 | package phraseapp 2 | 3 | var ClientVersion string = "DEV" 4 | -------------------------------------------------------------------------------- /vendor/github.com/smartystreets/assertions/.gitignore: -------------------------------------------------------------------------------- 1 | .DS_Store 2 | Thumbs.db 3 | *.iml 4 | /.idea 5 | coverage.out 6 | -------------------------------------------------------------------------------- /vendor/github.com/smartystreets/assertions/.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phrase/phraseapp-client/HEAD/vendor/github.com/smartystreets/assertions/.travis.yml -------------------------------------------------------------------------------- /vendor/github.com/smartystreets/assertions/CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phrase/phraseapp-client/HEAD/vendor/github.com/smartystreets/assertions/CONTRIBUTING.md -------------------------------------------------------------------------------- /vendor/github.com/smartystreets/assertions/LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phrase/phraseapp-client/HEAD/vendor/github.com/smartystreets/assertions/LICENSE.md -------------------------------------------------------------------------------- /vendor/github.com/smartystreets/assertions/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phrase/phraseapp-client/HEAD/vendor/github.com/smartystreets/assertions/README.md -------------------------------------------------------------------------------- /vendor/github.com/smartystreets/assertions/collections.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phrase/phraseapp-client/HEAD/vendor/github.com/smartystreets/assertions/collections.go -------------------------------------------------------------------------------- /vendor/github.com/smartystreets/assertions/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phrase/phraseapp-client/HEAD/vendor/github.com/smartystreets/assertions/doc.go -------------------------------------------------------------------------------- /vendor/github.com/smartystreets/assertions/equal_method.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phrase/phraseapp-client/HEAD/vendor/github.com/smartystreets/assertions/equal_method.go -------------------------------------------------------------------------------- /vendor/github.com/smartystreets/assertions/equality.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phrase/phraseapp-client/HEAD/vendor/github.com/smartystreets/assertions/equality.go -------------------------------------------------------------------------------- /vendor/github.com/smartystreets/assertions/filter.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phrase/phraseapp-client/HEAD/vendor/github.com/smartystreets/assertions/filter.go -------------------------------------------------------------------------------- /vendor/github.com/smartystreets/assertions/internal/go-render/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phrase/phraseapp-client/HEAD/vendor/github.com/smartystreets/assertions/internal/go-render/LICENSE -------------------------------------------------------------------------------- /vendor/github.com/smartystreets/assertions/internal/go-render/render/render.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phrase/phraseapp-client/HEAD/vendor/github.com/smartystreets/assertions/internal/go-render/render/render.go -------------------------------------------------------------------------------- /vendor/github.com/smartystreets/assertions/internal/go-render/render/render_time.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phrase/phraseapp-client/HEAD/vendor/github.com/smartystreets/assertions/internal/go-render/render/render_time.go -------------------------------------------------------------------------------- /vendor/github.com/smartystreets/assertions/internal/oglematchers/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phrase/phraseapp-client/HEAD/vendor/github.com/smartystreets/assertions/internal/oglematchers/.gitignore -------------------------------------------------------------------------------- /vendor/github.com/smartystreets/assertions/internal/oglematchers/.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phrase/phraseapp-client/HEAD/vendor/github.com/smartystreets/assertions/internal/oglematchers/.travis.yml -------------------------------------------------------------------------------- /vendor/github.com/smartystreets/assertions/internal/oglematchers/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phrase/phraseapp-client/HEAD/vendor/github.com/smartystreets/assertions/internal/oglematchers/LICENSE -------------------------------------------------------------------------------- /vendor/github.com/smartystreets/assertions/internal/oglematchers/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phrase/phraseapp-client/HEAD/vendor/github.com/smartystreets/assertions/internal/oglematchers/README.md -------------------------------------------------------------------------------- /vendor/github.com/smartystreets/assertions/internal/oglematchers/any_of.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phrase/phraseapp-client/HEAD/vendor/github.com/smartystreets/assertions/internal/oglematchers/any_of.go -------------------------------------------------------------------------------- /vendor/github.com/smartystreets/assertions/internal/oglematchers/contains.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phrase/phraseapp-client/HEAD/vendor/github.com/smartystreets/assertions/internal/oglematchers/contains.go -------------------------------------------------------------------------------- /vendor/github.com/smartystreets/assertions/internal/oglematchers/deep_equals.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phrase/phraseapp-client/HEAD/vendor/github.com/smartystreets/assertions/internal/oglematchers/deep_equals.go -------------------------------------------------------------------------------- /vendor/github.com/smartystreets/assertions/internal/oglematchers/equals.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phrase/phraseapp-client/HEAD/vendor/github.com/smartystreets/assertions/internal/oglematchers/equals.go -------------------------------------------------------------------------------- /vendor/github.com/smartystreets/assertions/internal/oglematchers/greater_or_equal.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phrase/phraseapp-client/HEAD/vendor/github.com/smartystreets/assertions/internal/oglematchers/greater_or_equal.go -------------------------------------------------------------------------------- /vendor/github.com/smartystreets/assertions/internal/oglematchers/greater_than.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phrase/phraseapp-client/HEAD/vendor/github.com/smartystreets/assertions/internal/oglematchers/greater_than.go -------------------------------------------------------------------------------- /vendor/github.com/smartystreets/assertions/internal/oglematchers/less_or_equal.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phrase/phraseapp-client/HEAD/vendor/github.com/smartystreets/assertions/internal/oglematchers/less_or_equal.go -------------------------------------------------------------------------------- /vendor/github.com/smartystreets/assertions/internal/oglematchers/less_than.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phrase/phraseapp-client/HEAD/vendor/github.com/smartystreets/assertions/internal/oglematchers/less_than.go -------------------------------------------------------------------------------- /vendor/github.com/smartystreets/assertions/internal/oglematchers/matcher.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phrase/phraseapp-client/HEAD/vendor/github.com/smartystreets/assertions/internal/oglematchers/matcher.go -------------------------------------------------------------------------------- /vendor/github.com/smartystreets/assertions/internal/oglematchers/not.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phrase/phraseapp-client/HEAD/vendor/github.com/smartystreets/assertions/internal/oglematchers/not.go -------------------------------------------------------------------------------- /vendor/github.com/smartystreets/assertions/internal/oglematchers/transform_description.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phrase/phraseapp-client/HEAD/vendor/github.com/smartystreets/assertions/internal/oglematchers/transform_description.go -------------------------------------------------------------------------------- /vendor/github.com/smartystreets/assertions/messages.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phrase/phraseapp-client/HEAD/vendor/github.com/smartystreets/assertions/messages.go -------------------------------------------------------------------------------- /vendor/github.com/smartystreets/assertions/panic.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phrase/phraseapp-client/HEAD/vendor/github.com/smartystreets/assertions/panic.go -------------------------------------------------------------------------------- /vendor/github.com/smartystreets/assertions/quantity.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phrase/phraseapp-client/HEAD/vendor/github.com/smartystreets/assertions/quantity.go -------------------------------------------------------------------------------- /vendor/github.com/smartystreets/assertions/serializer.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phrase/phraseapp-client/HEAD/vendor/github.com/smartystreets/assertions/serializer.go -------------------------------------------------------------------------------- /vendor/github.com/smartystreets/assertions/strings.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phrase/phraseapp-client/HEAD/vendor/github.com/smartystreets/assertions/strings.go -------------------------------------------------------------------------------- /vendor/github.com/smartystreets/assertions/time.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phrase/phraseapp-client/HEAD/vendor/github.com/smartystreets/assertions/time.go -------------------------------------------------------------------------------- /vendor/github.com/smartystreets/assertions/type.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phrase/phraseapp-client/HEAD/vendor/github.com/smartystreets/assertions/type.go -------------------------------------------------------------------------------- /vendor/github.com/smartystreets/goconvey/LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phrase/phraseapp-client/HEAD/vendor/github.com/smartystreets/goconvey/LICENSE.md -------------------------------------------------------------------------------- /vendor/github.com/smartystreets/goconvey/convey/assertions.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phrase/phraseapp-client/HEAD/vendor/github.com/smartystreets/goconvey/convey/assertions.go -------------------------------------------------------------------------------- /vendor/github.com/smartystreets/goconvey/convey/context.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phrase/phraseapp-client/HEAD/vendor/github.com/smartystreets/goconvey/convey/context.go -------------------------------------------------------------------------------- /vendor/github.com/smartystreets/goconvey/convey/convey.goconvey: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phrase/phraseapp-client/HEAD/vendor/github.com/smartystreets/goconvey/convey/convey.goconvey -------------------------------------------------------------------------------- /vendor/github.com/smartystreets/goconvey/convey/discovery.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phrase/phraseapp-client/HEAD/vendor/github.com/smartystreets/goconvey/convey/discovery.go -------------------------------------------------------------------------------- /vendor/github.com/smartystreets/goconvey/convey/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phrase/phraseapp-client/HEAD/vendor/github.com/smartystreets/goconvey/convey/doc.go -------------------------------------------------------------------------------- /vendor/github.com/smartystreets/goconvey/convey/gotest/utils.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phrase/phraseapp-client/HEAD/vendor/github.com/smartystreets/goconvey/convey/gotest/utils.go -------------------------------------------------------------------------------- /vendor/github.com/smartystreets/goconvey/convey/init.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phrase/phraseapp-client/HEAD/vendor/github.com/smartystreets/goconvey/convey/init.go -------------------------------------------------------------------------------- /vendor/github.com/smartystreets/goconvey/convey/nilReporter.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phrase/phraseapp-client/HEAD/vendor/github.com/smartystreets/goconvey/convey/nilReporter.go -------------------------------------------------------------------------------- /vendor/github.com/smartystreets/goconvey/convey/reporting/console.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phrase/phraseapp-client/HEAD/vendor/github.com/smartystreets/goconvey/convey/reporting/console.go -------------------------------------------------------------------------------- /vendor/github.com/smartystreets/goconvey/convey/reporting/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phrase/phraseapp-client/HEAD/vendor/github.com/smartystreets/goconvey/convey/reporting/doc.go -------------------------------------------------------------------------------- /vendor/github.com/smartystreets/goconvey/convey/reporting/dot.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phrase/phraseapp-client/HEAD/vendor/github.com/smartystreets/goconvey/convey/reporting/dot.go -------------------------------------------------------------------------------- /vendor/github.com/smartystreets/goconvey/convey/reporting/gotest.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phrase/phraseapp-client/HEAD/vendor/github.com/smartystreets/goconvey/convey/reporting/gotest.go -------------------------------------------------------------------------------- /vendor/github.com/smartystreets/goconvey/convey/reporting/init.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phrase/phraseapp-client/HEAD/vendor/github.com/smartystreets/goconvey/convey/reporting/init.go -------------------------------------------------------------------------------- /vendor/github.com/smartystreets/goconvey/convey/reporting/json.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phrase/phraseapp-client/HEAD/vendor/github.com/smartystreets/goconvey/convey/reporting/json.go -------------------------------------------------------------------------------- /vendor/github.com/smartystreets/goconvey/convey/reporting/printer.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phrase/phraseapp-client/HEAD/vendor/github.com/smartystreets/goconvey/convey/reporting/printer.go -------------------------------------------------------------------------------- /vendor/github.com/smartystreets/goconvey/convey/reporting/problems.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phrase/phraseapp-client/HEAD/vendor/github.com/smartystreets/goconvey/convey/reporting/problems.go -------------------------------------------------------------------------------- /vendor/github.com/smartystreets/goconvey/convey/reporting/reporter.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phrase/phraseapp-client/HEAD/vendor/github.com/smartystreets/goconvey/convey/reporting/reporter.go -------------------------------------------------------------------------------- /vendor/github.com/smartystreets/goconvey/convey/reporting/reporting.goconvey: -------------------------------------------------------------------------------- 1 | #ignore 2 | -timeout=1s 3 | -------------------------------------------------------------------------------- /vendor/github.com/smartystreets/goconvey/convey/reporting/reports.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phrase/phraseapp-client/HEAD/vendor/github.com/smartystreets/goconvey/convey/reporting/reports.go -------------------------------------------------------------------------------- /vendor/github.com/smartystreets/goconvey/convey/reporting/statistics.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phrase/phraseapp-client/HEAD/vendor/github.com/smartystreets/goconvey/convey/reporting/statistics.go -------------------------------------------------------------------------------- /vendor/github.com/smartystreets/goconvey/convey/reporting/story.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phrase/phraseapp-client/HEAD/vendor/github.com/smartystreets/goconvey/convey/reporting/story.go -------------------------------------------------------------------------------- /vendor/gopkg.in/yaml.v2/.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phrase/phraseapp-client/HEAD/vendor/gopkg.in/yaml.v2/.travis.yml -------------------------------------------------------------------------------- /vendor/gopkg.in/yaml.v2/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phrase/phraseapp-client/HEAD/vendor/gopkg.in/yaml.v2/LICENSE -------------------------------------------------------------------------------- /vendor/gopkg.in/yaml.v2/LICENSE.libyaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phrase/phraseapp-client/HEAD/vendor/gopkg.in/yaml.v2/LICENSE.libyaml -------------------------------------------------------------------------------- /vendor/gopkg.in/yaml.v2/NOTICE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phrase/phraseapp-client/HEAD/vendor/gopkg.in/yaml.v2/NOTICE -------------------------------------------------------------------------------- /vendor/gopkg.in/yaml.v2/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phrase/phraseapp-client/HEAD/vendor/gopkg.in/yaml.v2/README.md -------------------------------------------------------------------------------- /vendor/gopkg.in/yaml.v2/apic.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phrase/phraseapp-client/HEAD/vendor/gopkg.in/yaml.v2/apic.go -------------------------------------------------------------------------------- /vendor/gopkg.in/yaml.v2/decode.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phrase/phraseapp-client/HEAD/vendor/gopkg.in/yaml.v2/decode.go -------------------------------------------------------------------------------- /vendor/gopkg.in/yaml.v2/emitterc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phrase/phraseapp-client/HEAD/vendor/gopkg.in/yaml.v2/emitterc.go -------------------------------------------------------------------------------- /vendor/gopkg.in/yaml.v2/encode.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phrase/phraseapp-client/HEAD/vendor/gopkg.in/yaml.v2/encode.go -------------------------------------------------------------------------------- /vendor/gopkg.in/yaml.v2/go.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phrase/phraseapp-client/HEAD/vendor/gopkg.in/yaml.v2/go.mod -------------------------------------------------------------------------------- /vendor/gopkg.in/yaml.v2/parserc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phrase/phraseapp-client/HEAD/vendor/gopkg.in/yaml.v2/parserc.go -------------------------------------------------------------------------------- /vendor/gopkg.in/yaml.v2/readerc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phrase/phraseapp-client/HEAD/vendor/gopkg.in/yaml.v2/readerc.go -------------------------------------------------------------------------------- /vendor/gopkg.in/yaml.v2/resolve.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phrase/phraseapp-client/HEAD/vendor/gopkg.in/yaml.v2/resolve.go -------------------------------------------------------------------------------- /vendor/gopkg.in/yaml.v2/scannerc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phrase/phraseapp-client/HEAD/vendor/gopkg.in/yaml.v2/scannerc.go -------------------------------------------------------------------------------- /vendor/gopkg.in/yaml.v2/sorter.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phrase/phraseapp-client/HEAD/vendor/gopkg.in/yaml.v2/sorter.go -------------------------------------------------------------------------------- /vendor/gopkg.in/yaml.v2/writerc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phrase/phraseapp-client/HEAD/vendor/gopkg.in/yaml.v2/writerc.go -------------------------------------------------------------------------------- /vendor/gopkg.in/yaml.v2/yaml.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phrase/phraseapp-client/HEAD/vendor/gopkg.in/yaml.v2/yaml.go -------------------------------------------------------------------------------- /vendor/gopkg.in/yaml.v2/yamlh.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phrase/phraseapp-client/HEAD/vendor/gopkg.in/yaml.v2/yamlh.go -------------------------------------------------------------------------------- /vendor/gopkg.in/yaml.v2/yamlprivateh.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phrase/phraseapp-client/HEAD/vendor/gopkg.in/yaml.v2/yamlprivateh.go -------------------------------------------------------------------------------- /vendor/modules.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phrase/phraseapp-client/HEAD/vendor/modules.txt -------------------------------------------------------------------------------- /vendoring_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phrase/phraseapp-client/HEAD/vendoring_test.go --------------------------------------------------------------------------------