Skip to content

Commit

Permalink
Add missing textdomain to translated strings
Browse files Browse the repository at this point in the history
  • Loading branch information
mjangda committed Sep 6, 2012
1 parent 0992fd1 commit 70b347a
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions liveblog.php
Expand Up @@ -219,7 +219,7 @@ public static function ajax_entries_between() {

// Bail if there is no end timestamp
if ( empty( $end_timestamp ) ) {
self::send_user_error( __( 'A timestamp is missing. Correct URL: <permalink>/liveblog/<from>/</to>/' ) );
self::send_user_error( __( 'A timestamp is missing. Correct URL: <permalink>/liveblog/<from>/</to>/', 'liveblog' ) );
}

// Do not cache if it's too soon
Expand Down Expand Up @@ -498,7 +498,7 @@ private static function add_default_plupload_settings() {
'url' => admin_url( 'admin-ajax.php', 'relative' ),
'flash_swf_url' => includes_url( 'js/plupload/plupload.flash.swf' ),
'silverlight_xap_url' => includes_url( 'js/plupload/plupload.silverlight.xap' ),
'filters' => array( array( 'title' => __( 'Allowed Files' ), 'extensions' => '*') ),
'filters' => array( array( 'title' => __( 'Allowed Files', 'liveblog' ), 'extensions' => '*') ),
'multipart' => true,
'urlstream_upload' => true,
'multipart_params' => array(
Expand Down

0 comments on commit 70b347a

Please sign in to comment.