<stringname="rss_nosettings">You have not defined any RSS feeds yet to monitor. Torrent-specific RSS feeds keep you up to date with new releases and you are notified of new items.</string>
<stringname="rss_nosettings">You have not defined any RSS feeds yet to monitor. Torrent-specific RSS feeds keep you up to date with new releases and you are notified of new items.</string>
<stringname="rss_noselection">Select an RSS feed to view the new items</string>
<stringname="rss_empty">The RSS feed is not available or it contains no items</string>
<stringname="rss_empty">The RSS feed is not available or it contains no items</string>
<stringname="rss_notloaded">Sorry, please wait until the RSS feed is loaded</string>
<stringname="rss_error">Sorry, this RSS feed could not be loaded at this time</string>
<pluralsname="rss_itemsselected">
<pluralsname="rss_itemsselected">
<itemquantity="one">%1$d item selected</item>
<itemquantity="one">%1$d item selected</item>
<itemquantity="other">%1$d items selected</item>
<itemquantity="other">%1$d items selected</item>
@ -140,6 +143,8 @@
<stringname="pref_name_optional">Optional personal name</string>
<stringname="pref_name_optional">Optional personal name</string>
// If the upload succeeded, add the torrent file on the server
// If the upload succeeded, add the torrent file on the server
// For this we need the file name, which is now send as a JSON object like:
// For this we need the file name, which is now send as a JSON object like:
@ -477,7 +477,7 @@ public class DelugeAdapter implements IDaemonAdapter {
// Still no session cookie?
// Still no session cookie?
if(sessionCookie==null){
if(sessionCookie==null){
// Set error message and cancel the action that was requested
// Set error message and cancel the action that was requested
thrownewDaemonException(ExceptionType.AuthenticationFailure,"Password error? Server time difference? No (valid) cookie in response and JSON was: "+HttpHelper.ConvertStreamToString(instream));
thrownewDaemonException(ExceptionType.AuthenticationFailure,"Password error? Server time difference? No (valid) cookie in response and JSON was: "+HttpHelper.convertStreamToString(instream));
}
}
}
}
@ -509,7 +509,7 @@ public class DelugeAdapter implements IDaemonAdapter {
thrownewDaemonException(ExceptionType.AuthenticationFailure,"Response was '"+result.replace("\n","")+"' instead of a proper JSON object (and we used auth token '"+authtoken+"')");
thrownewDaemonException(ExceptionType.AuthenticationFailure,"Response was '"+result.replace("\n","")+"' instead of a proper JSON object (and we used auth token '"+authtoken+"')");
@ -341,7 +341,7 @@ public class UtorrentAdapter implements IDaemonAdapter {
thrownewDaemonException(ExceptionType.ConnectionError,"Not found (404); server doesn't exist or is inaccessible");
thrownewDaemonException(ExceptionType.ConnectionError,"Not found (404); server doesn't exist or is inaccessible");