diff --git a/clients/translate/README.md b/clients/translate/README.md index 2845bebc44..00b6947b54 100644 --- a/clients/translate/README.md +++ b/clients/translate/README.md @@ -1,9 +1,8 @@ # GoogleApi.Translate -Google Cloud Translation API client library. +Cloud Translation API client library. -The Google Cloud Translation API lets websites and programs integrate with - Google Translate programmatically. +Integrates text translation into your website or application. ## Installation @@ -12,13 +11,13 @@ Install this package from [Hex](https://hex.pm) by adding ```elixir def deps do - [{:google_api_translate, "~> 0.17"}] + [{:google_api_translate, "~> 0.18"}] end ``` ## For more information -Product documentation is available at [https://code.google.com/apis/language/translate/v2/getting_started.html](https://code.google.com/apis/language/translate/v2/getting_started.html). +Product documentation is available at [https://cloud.google.com/translate/docs/quickstarts](https://cloud.google.com/translate/docs/quickstarts). Library reference documentation is published on Hexdocs at [https://hexdocs.pm/google_api_translate](https://hexdocs.pm/google_api_translate). diff --git a/clients/translate/mix.exs b/clients/translate/mix.exs index 7313edb0b1..a03bd41b17 100644 --- a/clients/translate/mix.exs +++ b/clients/translate/mix.exs @@ -18,7 +18,7 @@ defmodule GoogleApi.Translate.Mixfile do use Mix.Project - @version "0.17.0" + @version "0.18.0" def project() do [ @@ -48,8 +48,7 @@ defmodule GoogleApi.Translate.Mixfile do defp description() do """ - Google Cloud Translation API client library. The Google Cloud Translation API lets websites and programs integrate with - Google Translate programmatically. + Cloud Translation API client library. Integrates text translation into your website or application. """ end @@ -60,7 +59,7 @@ defmodule GoogleApi.Translate.Mixfile do licenses: ["Apache 2.0"], links: %{ "GitHub" => "https://github.com/googleapis/elixir-google-api/tree/master/clients/translate", - "Homepage" => "https://code.google.com/apis/language/translate/v2/getting_started.html" + "Homepage" => "https://cloud.google.com/translate/docs/quickstarts" } ] end