Skip to content

Commit

Permalink
Merge pull request #39 from lologhi/download
Browse files Browse the repository at this point in the history
Switch to Crowdin new domain
  • Loading branch information
nidup authored Sep 19, 2016
2 parents ae4101c + b1cb767 commit 984c33b
Show file tree
Hide file tree
Showing 12 changed files with 12 additions and 12 deletions.
2 changes: 1 addition & 1 deletion src/Akeneo/Crowdin/Api/AddDirectory.php
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
* Add a directory to the Crowdin project.
*
* @author Julien Janvier <j.janvier@gmail.com>
* @see http://crowdin.net/page/api/add-directory
* @see https://crowdin.com/page/api/add-directory
*/
class AddDirectory extends AbstractApi
{
Expand Down
2 changes: 1 addition & 1 deletion src/Akeneo/Crowdin/Api/AddFile.php
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
* Adds a new file to a Crowdin project.
*
* @author Julien Janvier <j.janvier@gmail.com>
* @see https://crowdin.net/page/api/add-file
* @see https://crowdin.com/page/api/add-file
*/
class AddFile extends AbstractApi
{
Expand Down
2 changes: 1 addition & 1 deletion src/Akeneo/Crowdin/Api/DeleteDirectory.php
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
* Delete a directory from the Crowdin project. All nested files and directories will be deleted too.
*
* @author Julien Janvier <j.janvier@gmail.com>
* @see http://crowdin.net/page/api/delete-directory
* @see https://crowdin.com/page/api/delete-directory
*/
class DeleteDirectory extends AbstractApi
{
Expand Down
2 changes: 1 addition & 1 deletion src/Akeneo/Crowdin/Api/DeleteFile.php
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
* Deletes a file from a Crowdin project. All the translations will be lost without ability to restore them.
*
* @author Julien Janvier <j.janvier@gmail.com>
* @see http://crowdin.net/page/api/delete-file
* @see https://crowdin.com/page/api/delete-file
*/
class DeleteFile extends AbstractApi
{
Expand Down
2 changes: 1 addition & 1 deletion src/Akeneo/Crowdin/Api/Download.php
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
* Download ZIP file with translations (all or chosen language)
*
* @author Nicolas Dupont <nicolas@akeneo.com>
* @see http://crowdin.net/page/api/download
* @see https://crowdin.com/page/api/download
*/
class Download extends AbstractApi
{
Expand Down
2 changes: 1 addition & 1 deletion src/Akeneo/Crowdin/Api/Export.php
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
* Build ZIP archive with the latest translations. Can be invoked only once for 30 minutes.
*
* @author Nicolas Dupont <nicolas@akeneo.com>
* @see http://crowdin.net/page/api/export
* @see https://crowdin.com/page/api/export
*/
class Export extends AbstractApi
{
Expand Down
2 changes: 1 addition & 1 deletion src/Akeneo/Crowdin/Api/Info.php
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
* Get project details
*
* @author Nicolas Dupont <nicolas@akeneo.com>
* @see http://crowdin.net/page/api/info
* @see https://crowdin.com/page/api/info
*/
class Info extends AbstractApi
{
Expand Down
2 changes: 1 addition & 1 deletion src/Akeneo/Crowdin/Api/Status.php
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
* Project translation progress by language
*
* @author Nicolas Dupont <nicolas@akeneo.com>
* @see http://crowdin.net/page/api/status
* @see https://crowdin.com/page/api/status
*/
class Status extends AbstractApi
{
Expand Down
2 changes: 1 addition & 1 deletion src/Akeneo/Crowdin/Api/SupportedLanguages.php
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
* Get supported languages list
*
* @author Nicolas Dupont <nicolas@akeneo.com>
* @see http://crowdin.net/page/api/supported-languages
* @see https://crowdin.com/page/api/supported-languages
*/
class SupportedLanguages extends AbstractApi
{
Expand Down
2 changes: 1 addition & 1 deletion src/Akeneo/Crowdin/Api/UpdateFile.php
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
* Upload latest version of your localization file to Crowdin.
*
* @author Nicolas Dupont <nicolas@akeneo.com>
* @see http://crowdin.net/page/api/update-file
* @see https://crowdin.com/page/api/update-file
*/
class UpdateFile extends AbstractApi
{
Expand Down
2 changes: 1 addition & 1 deletion src/Akeneo/Crowdin/Api/UploadTranslation.php
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
* Upload existing translations to your Crowdin project.
*
* @author Julien Janvier <j.janvier@gmail.com>
* @see https://crowdin.net/page/api/upload-translation
* @see https://crowdin.com/page/api/upload-translation
*/
class UploadTranslation extends AbstractApi
{
Expand Down
2 changes: 1 addition & 1 deletion src/Akeneo/Crowdin/Client.php
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
class Client
{
/** @var string base url */
const BASE_URL = 'https://api.crowdin.net/api/';
const BASE_URL = 'https://api.crowdin.com/api/';

/** @var HttpClient */
protected $httpClient;
Expand Down

0 comments on commit 984c33b

Please sign in to comment.