Changeset 3378802
- Timestamp:
- 10/15/2025 10:31:28 AM (6 months ago)
- Location:
- easytranslate
- Files:
-
- 4 edited
- 19 copied
-
tags/v5.6 (copied) (copied from easytranslate/trunk)
-
tags/v5.6/README.txt (copied) (copied from easytranslate/trunk/README.txt)
-
tags/v5.6/admin/class-easy-translate-admin.php (copied) (copied from easytranslate/trunk/admin/class-easy-translate-admin.php)
-
tags/v5.6/admin/class-easy-translate-api-integration.php (copied) (copied from easytranslate/trunk/admin/class-easy-translate-api-integration.php)
-
tags/v5.6/admin/class-easy-translate-api-laas.php (copied) (copied from easytranslate/trunk/admin/class-easy-translate-api-laas.php)
-
tags/v5.6/admin/class-easy-translate-api-service.php (copied) (copied from easytranslate/trunk/admin/class-easy-translate-api-service.php) (1 diff)
-
tags/v5.6/admin/class-easy-translate-api-string-library.php (modified) (2 diffs)
-
tags/v5.6/admin/class-easy-translate-post-translation-list.php (copied) (copied from easytranslate/trunk/admin/class-easy-translate-post-translation-list.php)
-
tags/v5.6/admin/class-easy-translate-projects.php (copied) (copied from easytranslate/trunk/admin/class-easy-translate-projects.php)
-
tags/v5.6/admin/class-easy-translate-string-translation-list.php (copied) (copied from easytranslate/trunk/admin/class-easy-translate-string-translation-list.php)
-
tags/v5.6/admin/class-easy-translate-translation-list.php (copied) (copied from easytranslate/trunk/admin/class-easy-translate-translation-list.php)
-
tags/v5.6/admin/class-easy-translate-translation-updater.php (copied) (copied from easytranslate/trunk/admin/class-easy-translate-translation-updater.php)
-
tags/v5.6/admin/class-easy-translate-translation.php (copied) (copied from easytranslate/trunk/admin/class-easy-translate-translation.php)
-
tags/v5.6/admin/functions.php (copied) (copied from easytranslate/trunk/admin/functions.php)
-
tags/v5.6/admin/js/easy-translate-admin.js (copied) (copied from easytranslate/trunk/admin/js/easy-translate-admin.js)
-
tags/v5.6/admin/partials/projects.php (copied) (copied from easytranslate/trunk/admin/partials/projects.php)
-
tags/v5.6/admin/partials/requirements.php (copied) (copied from easytranslate/trunk/admin/partials/requirements.php)
-
tags/v5.6/admin/partials/translation-options.php (copied) (copied from easytranslate/trunk/admin/partials/translation-options.php)
-
tags/v5.6/easy-translate.php (copied) (copied from easytranslate/trunk/easy-translate.php) (2 diffs)
-
tags/v5.6/includes/class-easy-translate.php (copied) (copied from easytranslate/trunk/includes/class-easy-translate.php)
-
trunk/admin/class-easy-translate-api-service.php (modified) (1 diff)
-
trunk/admin/class-easy-translate-api-string-library.php (modified) (2 diffs)
-
trunk/easy-translate.php (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
easytranslate/tags/v5.6/admin/class-easy-translate-api-service.php
r3247676 r3378802 253 253 * 254 254 * @param string $path 255 * @param string $version 255 256 * @return string 256 257 */ 257 protected function team_path(string $path ): string258 { 259 return $this->versioned_path("teams/{$this->team_identifier}/{$path}" );258 protected function team_path(string $path, string $version = self::API_VERSION): string 259 { 260 return $this->versioned_path("teams/{$this->team_identifier}/{$path}", $version); 260 261 } 261 262 -
easytranslate/tags/v5.6/admin/class-easy-translate-api-string-library.php
r2796556 r3378802 49 49 50 50 $response = $this->wp_remote_post( 51 $this->team_path("libraries/{$stringLibraryId}/sync" ),51 $this->team_path("libraries/{$stringLibraryId}/sync", 'v1'), 52 52 ['body' => $body, 'headers' => ['Content-Type' => 'application/json']] 53 53 ); … … 123 123 124 124 $response = $this->wp_remote_get( 125 "{$this->team_path("libraries/{$stringLibraryId}/bilingual" )}?{$queryString}"125 "{$this->team_path("libraries/{$stringLibraryId}/bilingual", 'v1')}?{$queryString}" 126 126 ); 127 127 $httpCode = wp_remote_retrieve_response_code($response); -
easytranslate/tags/v5.6/easy-translate.php
r3321004 r3378802 15 15 * Plugin URI: https://www.easytranslate.com/en/integrations/cms/wordpress-plugin/ 16 16 * Description: This is a short description of what the plugin does. It's displayed in the WordPress admin area. 17 * Version: 2.1. 017 * Version: 2.1.1 18 18 * Author: EasyTranslate 19 19 * Author URI: https://easytranslate.com … … 34 34 * Rename this for your plugin and update it as you release new versions. 35 35 */ 36 define('EASY_TRANSLATE_VERSION', '2.1. 0');36 define('EASY_TRANSLATE_VERSION', '2.1.1'); 37 37 38 38 /** -
easytranslate/trunk/admin/class-easy-translate-api-service.php
r3247676 r3378802 253 253 * 254 254 * @param string $path 255 * @param string $version 255 256 * @return string 256 257 */ 257 protected function team_path(string $path ): string258 { 259 return $this->versioned_path("teams/{$this->team_identifier}/{$path}" );258 protected function team_path(string $path, string $version = self::API_VERSION): string 259 { 260 return $this->versioned_path("teams/{$this->team_identifier}/{$path}", $version); 260 261 } 261 262 -
easytranslate/trunk/admin/class-easy-translate-api-string-library.php
r2796556 r3378802 49 49 50 50 $response = $this->wp_remote_post( 51 $this->team_path("libraries/{$stringLibraryId}/sync" ),51 $this->team_path("libraries/{$stringLibraryId}/sync", 'v1'), 52 52 ['body' => $body, 'headers' => ['Content-Type' => 'application/json']] 53 53 ); … … 123 123 124 124 $response = $this->wp_remote_get( 125 "{$this->team_path("libraries/{$stringLibraryId}/bilingual" )}?{$queryString}"125 "{$this->team_path("libraries/{$stringLibraryId}/bilingual", 'v1')}?{$queryString}" 126 126 ); 127 127 $httpCode = wp_remote_retrieve_response_code($response); -
easytranslate/trunk/easy-translate.php
r3321004 r3378802 15 15 * Plugin URI: https://www.easytranslate.com/en/integrations/cms/wordpress-plugin/ 16 16 * Description: This is a short description of what the plugin does. It's displayed in the WordPress admin area. 17 * Version: 2.1. 017 * Version: 2.1.1 18 18 * Author: EasyTranslate 19 19 * Author URI: https://easytranslate.com … … 34 34 * Rename this for your plugin and update it as you release new versions. 35 35 */ 36 define('EASY_TRANSLATE_VERSION', '2.1. 0');36 define('EASY_TRANSLATE_VERSION', '2.1.1'); 37 37 38 38 /**
Note: See TracChangeset
for help on using the changeset viewer.