Plugin Directory

Changeset 1285789


Ignore:
Timestamp:
11/13/2015 06:03:22 PM (10 years ago)
Author:
motaword
Message:

v1.1.5 - allow fetching translation even when completed

Location:
motaword
Files:
3 edited
6 copied

Legend:

Unmodified
Added
Removed
  • motaword/tags/1.1.5/README.txt

    r1285783 r1285789  
    55Requires at least: 3.0.1
    66Tested up to: 4.3.1
    7 Stable tag: 1.1.4
     7Stable tag: 1.1.5
    88License: GPLv2 or later
    99License URI: http://www.gnu.org/licenses/gpl-2.0.html
     
    6565== Changelog ==
    6666
     67= 1.1.5 =
     68* Enable fetching manual translations even when a post is already marked as "completed".
     69
    6770= 1.1.4 =
    6871* 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  
    514514                </p>';
    515515
    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>';
    518521            } else {
    519522                if ( (int) $projectProgress->translation < 100 ) {
  • motaword/tags/1.1.5/motaword.php

    r1285783 r1285789  
    1616 * Plugin URI:        https://www.motaword.com/developer
    1717 * Description:       MotaWord plugin allows you to seamlessly submit your posts for translation to MotaWord.
    18  * Version:           1.1.4
     18 * Version:           1.1.5
    1919 * Author:            Oytun Tez <[email protected]>
    2020 * Author URI:        https://www.motaword.com/developer
  • motaword/trunk/README.txt

    r1285783 r1285789  
    55Requires at least: 3.0.1
    66Tested up to: 4.3.1
    7 Stable tag: 1.1.4
     7Stable tag: 1.1.5
    88License: GPLv2 or later
    99License URI: http://www.gnu.org/licenses/gpl-2.0.html
     
    6565== Changelog ==
    6666
     67= 1.1.5 =
     68* Enable fetching manual translations even when a post is already marked as "completed".
     69
    6770= 1.1.4 =
    6871* 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  
    514514                </p>';
    515515
    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>';
    518521            } else {
    519522                if ( (int) $projectProgress->translation < 100 ) {
  • motaword/trunk/motaword.php

    r1285783 r1285789  
    1616 * Plugin URI:        https://www.motaword.com/developer
    1717 * Description:       MotaWord plugin allows you to seamlessly submit your posts for translation to MotaWord.
    18  * Version:           1.1.4
     18 * Version:           1.1.5
    1919 * Author:            Oytun Tez <[email protected]>
    2020 * Author URI:        https://www.motaword.com/developer
Note: See TracChangeset for help on using the changeset viewer.