1
0
Fork 0
mirror of https://github.com/wallabag/wallabag.git synced 2025-08-01 17:38:38 +00:00

more translations

This commit is contained in:
tcit 2014-07-26 13:04:12 +02:00
parent 8492f37323
commit ab86a5124a
5 changed files with 121 additions and 6 deletions

View file

@ -55,7 +55,7 @@ class WallabagEBooks
case 'category':
$category = filter_var($this->value, FILTER_SANITIZE_STRING);
$this->entries = $this->wallabag->store->getEntriesByView($category, $this->wallabag->user->getId());
$this->bookTitle = sprintf(_('All articles in category %s'), $category);
$this->bookTitle = sprintf(_('Articles in category %s'), $category);
$this->bookFileName = substr(sprintf(_('Category %s'), $category), 0, 200);
Tools::logm('Producing ebook from category ' . $category);
break;
@ -63,7 +63,7 @@ class WallabagEBooks
$search = filter_var($this->value, FILTER_SANITIZE_STRING);
Tools::logm($search);
$this->entries = $this->wallabag->store->search($search, $this->wallabag->user->getId());
$this->bookTitle = sprintf(_('All articles for search %s'), $search);
$this->bookTitle = sprintf(_('Articles for search %s'), $search);
$this->bookFileName = substr(sprintf(_('Search %s'), $search), 0, 200);
Tools::logm('Producing ebook from search ' . $search);
break;
@ -207,7 +207,7 @@ class WallabagMobi extends WallabagEBooks
$error = FALSE;
# testing Mail function
if (!function_exists('mail')) {
$error = _('Mail function is unavailable');
$error = _("Mail function is disabled. You can't send emails from your server");
}
$char_in = array('/', '.', ',', ':', '|'); # we sanitize filename to avoid conflicts with special characters (for instance, / goes for a directory)
@ -244,7 +244,7 @@ class WallabagMobi extends WallabagEBooks
# trying to get the kindle email adress
if (!$this->wallabag->user->getConfigValue('kindleemail'))
{
$error = _('You didn\'t set your kindle\'s email adress !');
$error = _("You didn't set your kindle's email adress !");
}
if (!$error) {
mail($this->wallabag->user->getConfigValue('kindleemail'), '[wallabag] ' . $this->bookTitle, "", $header );