Convert english translation file

- convert english translation to translate key
- remove baggy template for login (never used since user isn't logged in and it'll use the default theme: material)
- fix tests about text in response (now checking translation key instead of translated text)
- remove all ugly `<div class="hidden">{{ form_rest(form) }}</div>`
This commit is contained in:
Jeremy Benoist
2016-03-09 08:59:08 +01:00
parent d2b4f01d74
commit 0d42217e4e
80 changed files with 1145 additions and 868 deletions

View File

@ -60,7 +60,7 @@ class PocketImport implements ImportInterface
*/
public function getDescription()
{
return 'This importer will import all your Pocket data. Pocket doesn\'t allow us to retrieve content from their service, so the readable content of each article will be re-fetched by wallabag.';
return 'import.pocket.description';
}
/**
@ -139,7 +139,7 @@ class PocketImport implements ImportInterface
/**
* Get whether articles must be all marked as read.
*/
public function getRead()
public function getMarkAsRead()
{
return $this->markAsRead;
}