Plugin Directory

Changeset 1466179


Ignore:
Timestamp:
08/02/2016 01:46:44 PM (10 years ago)
Author:
katz515
Message:

Stable tag to 3.0.0 (fixing the misuse of _e() and ())

Location:
ustream-status
Files:
4 edited

Legend:

Unmodified
Added
Removed
  • ustream-status/tags/3.0.0/readme.txt

    r1466175 r1466179  
    102102= How can I check if Ustream server is working or not? =
    103103
    104 In order to check if Ustream service itself is working or not, you could directly ping their server by going to
    105 
    106 http://api.ustream.tv/php/channel/XXXX/getValueOf/status
    107 
    108 Replace the last "XXXX" to your account ID (e.g., YokosoNews) when you're live. You should be able to see like `s:4:"live";`, in your browser.
    109 
    110104If you're still having problem getting the status, you can think of the following situation
    111105
    112 - You mistyped your Ustream channel ID
     106- You mistyped your Ustream channel
    113107- You mistyped the wrong URL of images
    114108- Ustream Server may be having some problem.
  • ustream-status/tags/3.0.0/ustreamstatus.php

    r1466167 r1466179  
    143143                break;
    144144                default:
    145                     echo _e('Error occured. We could not retrieve the data from Ustream.');
     145                    _e('Error occured. We could not retrieve the data from Ustream.');
    146146                break;
    147147            }
     
    210210            break;
    211211        default:
    212             $output = _e('Error occured. We could not retrieve the data from Ustream.');
     212            $output = __('Error occured. We could not retrieve the data from Ustream.');
    213213        break;
    214214        }
  • ustream-status/trunk/readme.txt

    r1466175 r1466179  
    102102= How can I check if Ustream server is working or not? =
    103103
    104 In order to check if Ustream service itself is working or not, you could directly ping their server by going to
    105 
    106 http://api.ustream.tv/php/channel/XXXX/getValueOf/status
    107 
    108 Replace the last "XXXX" to your account ID (e.g., YokosoNews) when you're live. You should be able to see like `s:4:"live";`, in your browser.
    109 
    110104If you're still having problem getting the status, you can think of the following situation
    111105
    112 - You mistyped your Ustream channel ID
     106- You mistyped your Ustream channel
    113107- You mistyped the wrong URL of images
    114108- Ustream Server may be having some problem.
  • ustream-status/trunk/ustreamstatus.php

    r1466167 r1466179  
    143143                break;
    144144                default:
    145                     echo _e('Error occured. We could not retrieve the data from Ustream.');
     145                    _e('Error occured. We could not retrieve the data from Ustream.');
    146146                break;
    147147            }
     
    210210            break;
    211211        default:
    212             $output = _e('Error occured. We could not retrieve the data from Ustream.');
     212            $output = __('Error occured. We could not retrieve the data from Ustream.');
    213213        break;
    214214        }
Note: See TracChangeset for help on using the changeset viewer.