Changeset 1285789
- Timestamp:
- 11/13/2015 06:03:22 PM (10 years ago)
- Location:
- motaword
- Files:
-
- 3 edited
- 6 copied
-
tags/1.1.5 (copied) (copied from motaword/trunk)
-
tags/1.1.5/README.txt (copied) (copied from motaword/trunk/README.txt) (2 diffs)
-
tags/1.1.5/admin/class-motaword-admin.php (copied) (copied from motaword/trunk/admin/class-motaword-admin.php) (1 diff)
-
tags/1.1.5/admin/js/motaword-admin.js (copied) (copied from motaword/trunk/admin/js/motaword-admin.js)
-
tags/1.1.5/motaword.php (copied) (copied from motaword/trunk/motaword.php) (1 diff)
-
tags/1.1.5/public/class-motaword-public.php (copied) (copied from motaword/trunk/public/class-motaword-public.php)
-
trunk/README.txt (modified) (2 diffs)
-
trunk/admin/class-motaword-admin.php (modified) (1 diff)
-
trunk/motaword.php (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
motaword/tags/1.1.5/README.txt
r1285783 r1285789 5 5 Requires at least: 3.0.1 6 6 Tested up to: 4.3.1 7 Stable tag: 1.1. 47 Stable tag: 1.1.5 8 8 License: GPLv2 or later 9 9 License URI: http://www.gnu.org/licenses/gpl-2.0.html … … 65 65 == Changelog == 66 66 67 = 1.1.5 = 68 * Enable fetching manual translations even when a post is already marked as "completed". 69 67 70 = 1.1.4 = 68 71 * Ability to finalize projects manually, without waiting for callbacks from MotaWord's API. This allows project completions behind firewalls as the API can't really call these servers behind a firewall or in a VPN. -
motaword/tags/1.1.5/admin/class-motaword-admin.php
r1285783 r1285789 514 514 </p>'; 515 515 516 if ( $project->status === 'completed' ) { 517 $htmlProgress .= '<div class="mwProgress">' . __( 'Completed.', 'motaword' ) . '</div>'; 516 if ( $project->status === 'completed' || true) { 517 $htmlProgress .= '<div class="mwProgress">' . 518 '<p>' . __( 'Completed.', 'motaword' ) . '</p>' . 519 '<p style="text-align: center;"><a href="' . $this->getEndpointUrl() . '" data-project="' . $project->mw_project_id . '" class="button button-small manualFetchTranslation">Fetch translations again</a></p>'. 520 '</div>'; 518 521 } else { 519 522 if ( (int) $projectProgress->translation < 100 ) { -
motaword/tags/1.1.5/motaword.php
r1285783 r1285789 16 16 * Plugin URI: https://www.motaword.com/developer 17 17 * Description: MotaWord plugin allows you to seamlessly submit your posts for translation to MotaWord. 18 * Version: 1.1. 418 * Version: 1.1.5 19 19 * Author: Oytun Tez <[email protected]> 20 20 * Author URI: https://www.motaword.com/developer -
motaword/trunk/README.txt
r1285783 r1285789 5 5 Requires at least: 3.0.1 6 6 Tested up to: 4.3.1 7 Stable tag: 1.1. 47 Stable tag: 1.1.5 8 8 License: GPLv2 or later 9 9 License URI: http://www.gnu.org/licenses/gpl-2.0.html … … 65 65 == Changelog == 66 66 67 = 1.1.5 = 68 * Enable fetching manual translations even when a post is already marked as "completed". 69 67 70 = 1.1.4 = 68 71 * Ability to finalize projects manually, without waiting for callbacks from MotaWord's API. This allows project completions behind firewalls as the API can't really call these servers behind a firewall or in a VPN. -
motaword/trunk/admin/class-motaword-admin.php
r1285783 r1285789 514 514 </p>'; 515 515 516 if ( $project->status === 'completed' ) { 517 $htmlProgress .= '<div class="mwProgress">' . __( 'Completed.', 'motaword' ) . '</div>'; 516 if ( $project->status === 'completed' || true) { 517 $htmlProgress .= '<div class="mwProgress">' . 518 '<p>' . __( 'Completed.', 'motaword' ) . '</p>' . 519 '<p style="text-align: center;"><a href="' . $this->getEndpointUrl() . '" data-project="' . $project->mw_project_id . '" class="button button-small manualFetchTranslation">Fetch translations again</a></p>'. 520 '</div>'; 518 521 } else { 519 522 if ( (int) $projectProgress->translation < 100 ) { -
motaword/trunk/motaword.php
r1285783 r1285789 16 16 * Plugin URI: https://www.motaword.com/developer 17 17 * Description: MotaWord plugin allows you to seamlessly submit your posts for translation to MotaWord. 18 * Version: 1.1. 418 * Version: 1.1.5 19 19 * Author: Oytun Tez <[email protected]> 20 20 * Author URI: https://www.motaword.com/developer
Note: See TracChangeset
for help on using the changeset viewer.