diff options
author | Thomas Citharel <tcit@tcit.fr> | 2017-07-09 18:45:39 +0200 |
---|---|---|
committer | Thomas Citharel <tcit@tcit.fr> | 2017-07-09 18:45:39 +0200 |
commit | 1554eb0adac470151d9668d55ce1450c64f862d9 (patch) | |
tree | a373af783ba1d53329be9790a0f672f55cd961ec | |
parent | f04611c711715064cd7a23d4dc51bc703a8dbeef (diff) | |
download | wallabag-1554eb0adac470151d9668d55ce1450c64f862d9.tar.gz wallabag-1554eb0adac470151d9668d55ce1450c64f862d9.tar.zst wallabag-1554eb0adac470151d9668d55ce1450c64f862d9.zip |
Rebase & Rename all rss to feeds
Signed-off-by: Thomas Citharel <tcit@tcit.fr>
53 files changed, 326 insertions, 310 deletions
diff --git a/app/Resources/static/themes/baggy/css/article.scss b/app/Resources/static/themes/baggy/css/article.scss index 9094ad55..d203ce31 100644 --- a/app/Resources/static/themes/baggy/css/article.scss +++ b/app/Resources/static/themes/baggy/css/article.scss | |||
@@ -85,7 +85,7 @@ blockquote { | |||
85 | color: #999; | 85 | color: #999; |
86 | } | 86 | } |
87 | 87 | ||
88 | .icon-rss { | 88 | .icon-feed { |
89 | background-color: #000; | 89 | background-color: #000; |
90 | color: #fff; | 90 | color: #fff; |
91 | padding: 0.2em 0.5em; | 91 | padding: 0.2em 0.5em; |
@@ -101,8 +101,8 @@ blockquote { | |||
101 | margin-bottom: 0.5em; | 101 | margin-bottom: 0.5em; |
102 | } | 102 | } |
103 | 103 | ||
104 | .icon-rss:hover, | 104 | .icon-feed:hover, |
105 | .icon-rss:focus { | 105 | .icon-feed:focus { |
106 | background-color: #fff; | 106 | background-color: #fff; |
107 | color: #000; | 107 | color: #000; |
108 | text-decoration: none; | 108 | text-decoration: none; |
diff --git a/app/Resources/static/themes/baggy/css/pictos.scss b/app/Resources/static/themes/baggy/css/pictos.scss index 2ff01937..b6ebf311 100644 --- a/app/Resources/static/themes/baggy/css/pictos.scss +++ b/app/Resources/static/themes/baggy/css/pictos.scss | |||
@@ -136,7 +136,7 @@ | |||
136 | content: "\ea3a"; | 136 | content: "\ea3a"; |
137 | } | 137 | } |
138 | 138 | ||
139 | .icon-rss::before { | 139 | .icon-feed::before { |
140 | content: "\e808"; | 140 | content: "\e808"; |
141 | } | 141 | } |
142 | 142 | ||
diff --git a/src/Wallabag/CoreBundle/Controller/ConfigController.php b/src/Wallabag/CoreBundle/Controller/ConfigController.php index 7e39992d..48e0653d 100644 --- a/src/Wallabag/CoreBundle/Controller/ConfigController.php +++ b/src/Wallabag/CoreBundle/Controller/ConfigController.php | |||
@@ -12,7 +12,7 @@ use Wallabag\CoreBundle\Entity\Config; | |||
12 | use Wallabag\CoreBundle\Entity\TaggingRule; | 12 | use Wallabag\CoreBundle\Entity\TaggingRule; |
13 | use Wallabag\CoreBundle\Form\Type\ChangePasswordType; | 13 | use Wallabag\CoreBundle\Form\Type\ChangePasswordType; |
14 | use Wallabag\CoreBundle\Form\Type\ConfigType; | 14 | use Wallabag\CoreBundle\Form\Type\ConfigType; |
15 | use Wallabag\CoreBundle\Form\Type\RssType; | 15 | use Wallabag\CoreBundle\Form\Type\FeedType; |
16 | use Wallabag\CoreBundle\Form\Type\TaggingRuleType; | 16 | use Wallabag\CoreBundle\Form\Type\TaggingRuleType; |
17 | use Wallabag\CoreBundle\Form\Type\UserInformationType; | 17 | use Wallabag\CoreBundle\Form\Type\UserInformationType; |
18 | use Wallabag\CoreBundle\Tools\Utils; | 18 | use Wallabag\CoreBundle\Tools\Utils; |
@@ -90,17 +90,17 @@ class ConfigController extends Controller | |||
90 | return $this->redirect($this->generateUrl('config') . '#set3'); | 90 | return $this->redirect($this->generateUrl('config') . '#set3'); |
91 | } | 91 | } |
92 | 92 | ||
93 | // handle rss information | 93 | // handle feed information |
94 | $rssForm = $this->createForm(RssType::class, $config, ['action' => $this->generateUrl('config') . '#set2']); | 94 | $feedForm = $this->createForm(FeedType::class, $config, ['action' => $this->generateUrl('config') . '#set2']); |
95 | $rssForm->handleRequest($request); | 95 | $feedForm->handleRequest($request); |
96 | 96 | ||
97 | if ($rssForm->isSubmitted() && $rssForm->isValid()) { | 97 | if ($feedForm->isSubmitted() && $feedForm->isValid()) { |
98 | $em->persist($config); | 98 | $em->persist($config); |
99 | $em->flush(); | 99 | $em->flush(); |
100 | 100 | ||
101 | $this->get('session')->getFlashBag()->add( | 101 | $this->get('session')->getFlashBag()->add( |
102 | 'notice', | 102 | 'notice', |
103 | 'flashes.config.notice.rss_updated' | 103 | 'flashes.config.notice.feed_updated' |
104 | ); | 104 | ); |
105 | 105 | ||
106 | return $this->redirect($this->generateUrl('config') . '#set2'); | 106 | return $this->redirect($this->generateUrl('config') . '#set2'); |
@@ -141,14 +141,14 @@ class ConfigController extends Controller | |||
141 | return $this->render('WallabagCoreBundle:Config:index.html.twig', [ | 141 | return $this->render('WallabagCoreBundle:Config:index.html.twig', [ |
142 | 'form' => [ | 142 | 'form' => [ |
143 | 'config' => $configForm->createView(), | 143 | 'config' => $configForm->createView(), |
144 | 'rss' => $rssForm->createView(), | 144 | 'feed' => $feedForm->createView(), |
145 | 'pwd' => $pwdForm->createView(), | 145 | 'pwd' => $pwdForm->createView(), |
146 | 'user' => $userForm->createView(), | 146 | 'user' => $userForm->createView(), |
147 | 'new_tagging_rule' => $newTaggingRule->createView(), | 147 | 'new_tagging_rule' => $newTaggingRule->createView(), |
148 | ], | 148 | ], |
149 | 'rss' => [ | 149 | 'feed' => [ |
150 | 'username' => $user->getUsername(), | 150 | 'username' => $user->getUsername(), |
151 | 'token' => $config->getRssToken(), | 151 | 'token' => $config->getFeedToken(), |
152 | ], | 152 | ], |
153 | 'twofactor_auth' => $this->getParameter('twofactor_auth'), | 153 | 'twofactor_auth' => $this->getParameter('twofactor_auth'), |
154 | 'wallabag_url' => $this->getParameter('domain_name'), | 154 | 'wallabag_url' => $this->getParameter('domain_name'), |
@@ -167,19 +167,19 @@ class ConfigController extends Controller | |||
167 | public function generateTokenAction(Request $request) | 167 | public function generateTokenAction(Request $request) |
168 | { | 168 | { |
169 | $config = $this->getConfig(); | 169 | $config = $this->getConfig(); |
170 | $config->setRssToken(Utils::generateToken()); | 170 | $config->setFeedToken(Utils::generateToken()); |
171 | 171 | ||
172 | $em = $this->getDoctrine()->getManager(); | 172 | $em = $this->getDoctrine()->getManager(); |
173 | $em->persist($config); | 173 | $em->persist($config); |
174 | $em->flush(); | 174 | $em->flush(); |
175 | 175 | ||
176 | if ($request->isXmlHttpRequest()) { | 176 | if ($request->isXmlHttpRequest()) { |
177 | return new JsonResponse(['token' => $config->getRssToken()]); | 177 | return new JsonResponse(['token' => $config->getFeedToken()]); |
178 | } | 178 | } |
179 | 179 | ||
180 | $this->get('session')->getFlashBag()->add( | 180 | $this->get('session')->getFlashBag()->add( |
181 | 'notice', | 181 | 'notice', |
182 | 'flashes.config.notice.rss_token_updated' | 182 | 'flashes.config.notice.feed_token_updated' |
183 | ); | 183 | ); |
184 | 184 | ||
185 | return $this->redirect($this->generateUrl('config') . '#set2'); | 185 | return $this->redirect($this->generateUrl('config') . '#set2'); |
diff --git a/src/Wallabag/CoreBundle/Controller/RssController.php b/src/Wallabag/CoreBundle/Controller/FeedController.php index a2b29e72..ab1e61ad 100644 --- a/src/Wallabag/CoreBundle/Controller/RssController.php +++ b/src/Wallabag/CoreBundle/Controller/FeedController.php | |||
@@ -12,25 +12,24 @@ use Symfony\Bundle\FrameworkBundle\Controller\Controller; | |||
12 | use Symfony\Component\HttpFoundation\Request; | 12 | use Symfony\Component\HttpFoundation\Request; |
13 | use Symfony\Component\HttpFoundation\Response; | 13 | use Symfony\Component\HttpFoundation\Response; |
14 | use Symfony\Component\Routing\Generator\UrlGeneratorInterface; | 14 | use Symfony\Component\Routing\Generator\UrlGeneratorInterface; |
15 | use Wallabag\CoreBundle\Entity\Entry; | ||
16 | use Wallabag\CoreBundle\Entity\Tag; | 15 | use Wallabag\CoreBundle\Entity\Tag; |
17 | use Wallabag\UserBundle\Entity\User; | 16 | use Wallabag\UserBundle\Entity\User; |
18 | 17 | ||
19 | class RssController extends Controller | 18 | class FeedController extends Controller |
20 | { | 19 | { |
21 | /** | 20 | /** |
22 | * Shows unread entries for current user. | 21 | * Shows unread entries for current user. |
23 | * | 22 | * |
24 | * @Route("/feed/{username}/{token}/unread/{page}", name="unread_rss", defaults={"page": 1}) | 23 | * @Route("/feed/{username}/{token}/unread/{page}", name="unread_feed", defaults={"page": 1}) |
25 | * @Route("/{username}/{token}/unread.xml", defaults={"page": 1}) | 24 | * @Route("/{username}/{token}/unread.xml", defaults={"page": 1}) |
26 | * @ParamConverter("user", class="WallabagUserBundle:User", converter="username_rsstoken_converter") | 25 | * @ParamConverter("user", class="WallabagUserBundle:User", converter="username_feed_token_converter") |
27 | * | 26 | * |
28 | * @param User $user | 27 | * @param User $user |
29 | * @param $page | 28 | * @param $page |
30 | * | 29 | * |
31 | * @return \Symfony\Component\HttpFoundation\Response | 30 | * @return \Symfony\Component\HttpFoundation\Response |
32 | */ | 31 | */ |
33 | public function showUnreadRSSAction(User $user, $page) | 32 | public function showUnreadFeedAction(User $user, $page) |
34 | { | 33 | { |
35 | return $this->showEntries('unread', $user, $page); | 34 | return $this->showEntries('unread', $user, $page); |
36 | } | 35 | } |
@@ -38,16 +37,16 @@ class RssController extends Controller | |||
38 | /** | 37 | /** |
39 | * Shows read entries for current user. | 38 | * Shows read entries for current user. |
40 | * | 39 | * |
41 | * @Route("/feed/{username}/{token}/archive/{page}", name="archive_rss", defaults={"page": 1}) | 40 | * @Route("/feed/{username}/{token}/archive/{page}", name="archive_feed", defaults={"page": 1}) |
42 | * @Route("/{username}/{token}/archive.xml", defaults={"page": 1}) | 41 | * @Route("/{username}/{token}/archive.xml", defaults={"page": 1}) |
43 | * @ParamConverter("user", class="WallabagUserBundle:User", converter="username_rsstoken_converter") | 42 | * @ParamConverter("user", class="WallabagUserBundle:User", converter="username_feed_token_converter") |
44 | * | 43 | * |
45 | * @param User $user | 44 | * @param User $user |
46 | * @param $page | 45 | * @param $page |
47 | * | 46 | * |
48 | * @return \Symfony\Component\HttpFoundation\Response | 47 | * @return \Symfony\Component\HttpFoundation\Response |
49 | */ | 48 | */ |
50 | public function showArchiveRSSAction(User $user, $page) | 49 | public function showArchiveFeedAction(User $user, $page) |
51 | { | 50 | { |
52 | return $this->showEntries('archive', $user, $page); | 51 | return $this->showEntries('archive', $user, $page); |
53 | } | 52 | } |
@@ -55,16 +54,16 @@ class RssController extends Controller | |||
55 | /** | 54 | /** |
56 | * Shows starred entries for current user. | 55 | * Shows starred entries for current user. |
57 | * | 56 | * |
58 | * @Route("/feed/{username}/{token}/starred/{page}", name="starred_rss", defaults={"page": 1}) | 57 | * @Route("/feed/{username}/{token}/starred/{page}", name="starred_feed", defaults={"page": 1}) |
59 | * @Route("/{username}/{token}/starred.xml", defaults={"page": 1}) | 58 | * @Route("/{username}/{token}/starred.xml", defaults={"page": 1}) |
60 | * @ParamConverter("user", class="WallabagUserBundle:User", converter="username_rsstoken_converter") | 59 | * @ParamConverter("user", class="WallabagUserBundle:User", converter="username_feed_token_converter") |
61 | * | 60 | * |
62 | * @param User $user | 61 | * @param User $user |
63 | * @param $page | 62 | * @param $page |
64 | * | 63 | * |
65 | * @return \Symfony\Component\HttpFoundation\Response | 64 | * @return \Symfony\Component\HttpFoundation\Response |
66 | */ | 65 | */ |
67 | public function showStarredRSSAction(User $user, $page) | 66 | public function showStarredFeedAction(User $user, $page) |
68 | { | 67 | { |
69 | return $this->showEntries('starred', $user, $page); | 68 | return $this->showEntries('starred', $user, $page); |
70 | } | 69 | } |
@@ -72,12 +71,12 @@ class RssController extends Controller | |||
72 | /** | 71 | /** |
73 | * Shows all entries for current user. | 72 | * Shows all entries for current user. |
74 | * | 73 | * |
75 | * @Route("/{username}/{token}/all.xml", name="all_rss", defaults={"_format"="xml"}) | 74 | * @Route("/{username}/{token}/all.xml", name="all_feed", defaults={"_format"="xml"}) |
76 | * @ParamConverter("user", class="WallabagUserBundle:User", converter="username_rsstoken_converter") | 75 | * @ParamConverter("user", class="WallabagUserBundle:User", converter="username_feed_token_converter") |
77 | * | 76 | * |
78 | * @return \Symfony\Component\HttpFoundation\Response | 77 | * @return \Symfony\Component\HttpFoundation\Response |
79 | */ | 78 | */ |
80 | public function showAllRSSAction(Request $request, User $user) | 79 | public function showAllFeedAction(Request $request, User $user) |
81 | { | 80 | { |
82 | return $this->showEntries('all', $user, $request->query->get('page', 1)); | 81 | return $this->showEntries('all', $user, $request->query->get('page', 1)); |
83 | } | 82 | } |
@@ -85,21 +84,21 @@ class RssController extends Controller | |||
85 | /** | 84 | /** |
86 | * Shows entries associated to a tag for current user. | 85 | * Shows entries associated to a tag for current user. |
87 | * | 86 | * |
88 | * @Route("/{username}/{token}/tags/{slug}.xml", name="tag_rss", defaults={"_format"="xml"}) | 87 | * @Route("/{username}/{token}/tags/{slug}.xml", name="tag_feed", defaults={"_format"="xml"}) |
89 | * @ParamConverter("user", class="WallabagUserBundle:User", converter="username_rsstoken_converter") | 88 | * @ParamConverter("user", class="WallabagUserBundle:User", converter="username_feed_token_converter") |
90 | * @ParamConverter("tag", options={"mapping": {"slug": "slug"}}) | 89 | * @ParamConverter("tag", options={"mapping": {"slug": "slug"}}) |
91 | * | 90 | * |
92 | * @return \Symfony\Component\HttpFoundation\Response | 91 | * @return \Symfony\Component\HttpFoundation\Response |
93 | */ | 92 | */ |
94 | public function showTagsAction(Request $request, User $user, Tag $tag) | 93 | public function showTagsFeedAction(Request $request, User $user, Tag $tag) |
95 | { | 94 | { |
96 | $page = $request->query->get('page', 1); | 95 | $page = $request->query->get('page', 1); |
97 | 96 | ||
98 | $url = $this->generateUrl( | 97 | $url = $this->generateUrl( |
99 | 'tag_rss', | 98 | 'tag_feed', |
100 | [ | 99 | [ |
101 | 'username' => $user->getUsername(), | 100 | 'username' => $user->getUsername(), |
102 | 'token' => $user->getConfig()->getRssToken(), | 101 | 'token' => $user->getConfig()->getFeedToken(), |
103 | 'slug' => $tag->getSlug(), | 102 | 'slug' => $tag->getSlug(), |
104 | ], | 103 | ], |
105 | UrlGeneratorInterface::ABSOLUTE_URL | 104 | UrlGeneratorInterface::ABSOLUTE_URL |
@@ -132,12 +131,15 @@ class RssController extends Controller | |||
132 | return $this->render( | 131 | return $this->render( |
133 | '@WallabagCore/themes/common/Entry/entries.xml.twig', | 132 | '@WallabagCore/themes/common/Entry/entries.xml.twig', |
134 | [ | 133 | [ |
135 | 'url_html' => $this->generateUrl('tag_entries', ['slug' => $tag->getSlug()], UrlGeneratorInterface::ABSOLUTE_URL), | 134 | 'type' => 'tag', |
136 | 'type' => 'tag (' . $tag->getLabel() . ')', | ||
137 | 'url' => $url, | 135 | 'url' => $url, |
138 | 'entries' => $entries, | 136 | 'entries' => $entries, |
137 | 'user' => $user->getUsername(), | ||
138 | 'domainName' => $this->getParameter('domain_name'), | ||
139 | 'version' => $this->getParameter('wallabag_core.version'), | ||
140 | 'tag' => $tag->getSlug(), | ||
139 | ], | 141 | ], |
140 | new Response('', 200, ['Content-Type' => 'application/rss+xml']) | 142 | new Response('', 200, ['Content-Type' => 'application/atom+xml']) |
141 | ); | 143 | ); |
142 | } | 144 | } |
143 | 145 | ||
@@ -175,14 +177,14 @@ class RssController extends Controller | |||
175 | $pagerAdapter = new DoctrineORMAdapter($qb->getQuery(), true, false); | 177 | $pagerAdapter = new DoctrineORMAdapter($qb->getQuery(), true, false); |
176 | $entries = new Pagerfanta($pagerAdapter); | 178 | $entries = new Pagerfanta($pagerAdapter); |
177 | 179 | ||
178 | $perPage = $user->getConfig()->getRssLimit() ?: $this->getParameter('wallabag_core.rss_limit'); | 180 | $perPage = $user->getConfig()->getFeedLimit() ?: $this->getParameter('wallabag_core.Feed_limit'); |
179 | $entries->setMaxPerPage($perPage); | 181 | $entries->setMaxPerPage($perPage); |
180 | 182 | ||
181 | $url = $this->generateUrl( | 183 | $url = $this->generateUrl( |
182 | $type . '_rss', | 184 | $type . '_feed', |
183 | [ | 185 | [ |
184 | 'username' => $user->getUsername(), | 186 | 'username' => $user->getUsername(), |
185 | 'token' => $user->getConfig()->getRssToken(), | 187 | 'token' => $user->getConfig()->getFeedToken(), |
186 | ], | 188 | ], |
187 | UrlGeneratorInterface::ABSOLUTE_URL | 189 | UrlGeneratorInterface::ABSOLUTE_URL |
188 | ); | 190 | ); |
@@ -202,6 +204,8 @@ class RssController extends Controller | |||
202 | 'user' => $user->getUsername(), | 204 | 'user' => $user->getUsername(), |
203 | 'domainName' => $this->getParameter('domain_name'), | 205 | 'domainName' => $this->getParameter('domain_name'), |
204 | 'version' => $this->getParameter('wallabag_core.version'), | 206 | 'version' => $this->getParameter('wallabag_core.version'), |
205 | ]); | 207 | ], |
208 | new Response('', 200, ['Content-Type' => 'application/atom+xml']) | ||
209 | ); | ||
206 | } | 210 | } |
207 | } | 211 | } |
diff --git a/src/Wallabag/CoreBundle/DependencyInjection/WallabagCoreExtension.php b/src/Wallabag/CoreBundle/DependencyInjection/WallabagCoreExtension.php index a3ef2b53..e9a1e9e0 100644 --- a/src/Wallabag/CoreBundle/DependencyInjection/WallabagCoreExtension.php +++ b/src/Wallabag/CoreBundle/DependencyInjection/WallabagCoreExtension.php | |||
@@ -18,7 +18,7 @@ class WallabagCoreExtension extends Extension | |||
18 | $container->setParameter('wallabag_core.items_on_page', $config['items_on_page']); | 18 | $container->setParameter('wallabag_core.items_on_page', $config['items_on_page']); |
19 | $container->setParameter('wallabag_core.theme', $config['theme']); | 19 | $container->setParameter('wallabag_core.theme', $config['theme']); |
20 | $container->setParameter('wallabag_core.language', $config['language']); | 20 | $container->setParameter('wallabag_core.language', $config['language']); |
21 | $container->setParameter('wallabag_core.rss_limit', $config['rss_limit']); | 21 | $container->setParameter('wallabag_core.feed_limit', $config['rss_limit']); |
22 | $container->setParameter('wallabag_core.reading_speed', $config['reading_speed']); | 22 | $container->setParameter('wallabag_core.reading_speed', $config['reading_speed']); |
23 | $container->setParameter('wallabag_core.version', $config['version']); | 23 | $container->setParameter('wallabag_core.version', $config['version']); |
24 | $container->setParameter('wallabag_core.paypal_url', $config['paypal_url']); | 24 | $container->setParameter('wallabag_core.paypal_url', $config['paypal_url']); |
diff --git a/src/Wallabag/CoreBundle/Entity/Config.php b/src/Wallabag/CoreBundle/Entity/Config.php index b902ae2c..7458f757 100644 --- a/src/Wallabag/CoreBundle/Entity/Config.php +++ b/src/Wallabag/CoreBundle/Entity/Config.php | |||
@@ -62,7 +62,7 @@ class Config | |||
62 | * | 62 | * |
63 | * @ORM\Column(name="rss_token", type="string", nullable=true) | 63 | * @ORM\Column(name="rss_token", type="string", nullable=true) |
64 | */ | 64 | */ |
65 | private $rssToken; | 65 | private $feedToken; |
66 | 66 | ||
67 | /** | 67 | /** |
68 | * @var int | 68 | * @var int |
@@ -71,10 +71,10 @@ class Config | |||
71 | * @Assert\Range( | 71 | * @Assert\Range( |
72 | * min = 1, | 72 | * min = 1, |
73 | * max = 100000, | 73 | * max = 100000, |
74 | * maxMessage = "validator.rss_limit_too_high" | 74 | * maxMessage = "validator.feed_limit_too_high" |
75 | * ) | 75 | * ) |
76 | */ | 76 | */ |
77 | private $rssLimit; | 77 | private $feedLimit; |
78 | 78 | ||
79 | /** | 79 | /** |
80 | * @var float | 80 | * @var float |
@@ -231,51 +231,51 @@ class Config | |||
231 | } | 231 | } |
232 | 232 | ||
233 | /** | 233 | /** |
234 | * Set rssToken. | 234 | * Set feed Token. |
235 | * | 235 | * |
236 | * @param string $rssToken | 236 | * @param string $feedToken |
237 | * | 237 | * |
238 | * @return Config | 238 | * @return Config |
239 | */ | 239 | */ |
240 | public function setRssToken($rssToken) | 240 | public function setFeedToken($feedToken) |
241 | { | 241 | { |
242 | $this->rssToken = $rssToken; | 242 | $this->feedToken = $feedToken; |
243 | 243 | ||
244 | return $this; | 244 | return $this; |
245 | } | 245 | } |
246 | 246 | ||
247 | /** | 247 | /** |
248 | * Get rssToken. | 248 | * Get feedToken. |
249 | * | 249 | * |
250 | * @return string | 250 | * @return string |
251 | */ | 251 | */ |
252 | public function getRssToken() | 252 | public function getFeedToken() |
253 | { | 253 | { |
254 | return $this->rssToken; | 254 | return $this->feedToken; |
255 | } | 255 | } |
256 | 256 | ||
257 | /** | 257 | /** |
258 | * Set rssLimit. | 258 | * Set Feed Limit. |
259 | * | 259 | * |
260 | * @param int $rssLimit | 260 | * @param int $feedLimit |
261 | * | 261 | * |
262 | * @return Config | 262 | * @return Config |
263 | */ | 263 | */ |
264 | public function setRssLimit($rssLimit) | 264 | public function setFeedLimit($feedLimit) |
265 | { | 265 | { |
266 | $this->rssLimit = $rssLimit; | 266 | $this->feedLimit = $feedLimit; |
267 | 267 | ||
268 | return $this; | 268 | return $this; |
269 | } | 269 | } |
270 | 270 | ||
271 | /** | 271 | /** |
272 | * Get rssLimit. | 272 | * Get Feed Limit. |
273 | * | 273 | * |
274 | * @return int | 274 | * @return int |
275 | */ | 275 | */ |
276 | public function getRssLimit() | 276 | public function getFeedLimit() |
277 | { | 277 | { |
278 | return $this->rssLimit; | 278 | return $this->feedLimit; |
279 | } | 279 | } |
280 | 280 | ||
281 | /** | 281 | /** |
diff --git a/src/Wallabag/CoreBundle/Form/Type/RssType.php b/src/Wallabag/CoreBundle/Form/Type/FeedType.php index 49b31c1e..9b34daf4 100644 --- a/src/Wallabag/CoreBundle/Form/Type/RssType.php +++ b/src/Wallabag/CoreBundle/Form/Type/FeedType.php | |||
@@ -7,14 +7,14 @@ use Symfony\Component\Form\Extension\Core\Type\SubmitType; | |||
7 | use Symfony\Component\Form\FormBuilderInterface; | 7 | use Symfony\Component\Form\FormBuilderInterface; |
8 | use Symfony\Component\OptionsResolver\OptionsResolver; | 8 | use Symfony\Component\OptionsResolver\OptionsResolver; |
9 | 9 | ||
10 | class RssType extends AbstractType | 10 | class FeedType extends AbstractType |
11 | { | 11 | { |
12 | public function buildForm(FormBuilderInterface $builder, array $options) | 12 | public function buildForm(FormBuilderInterface $builder, array $options) |
13 | { | 13 | { |
14 | $builder | 14 | $builder |
15 | ->add('rss_limit', null, [ | 15 | ->add('feed_limit', null, [ |
16 | 'label' => 'config.form_rss.rss_limit', | 16 | 'label' => 'config.form_feed.feed_limit', |
17 | 'property_path' => 'rssLimit', | 17 | 'property_path' => 'feedLimit', |
18 | ]) | 18 | ]) |
19 | ->add('save', SubmitType::class, [ | 19 | ->add('save', SubmitType::class, [ |
20 | 'label' => 'config.form.save', | 20 | 'label' => 'config.form.save', |
@@ -31,6 +31,6 @@ class RssType extends AbstractType | |||
31 | 31 | ||
32 | public function getBlockPrefix() | 32 | public function getBlockPrefix() |
33 | { | 33 | { |
34 | return 'rss_config'; | 34 | return 'feed_config'; |
35 | } | 35 | } |
36 | } | 36 | } |
diff --git a/src/Wallabag/CoreBundle/Helper/PreparePagerForEntries.php b/src/Wallabag/CoreBundle/Helper/PreparePagerForEntries.php index 49c1ea41..29a969fa 100644 --- a/src/Wallabag/CoreBundle/Helper/PreparePagerForEntries.php +++ b/src/Wallabag/CoreBundle/Helper/PreparePagerForEntries.php | |||
@@ -21,7 +21,7 @@ class PreparePagerForEntries | |||
21 | 21 | ||
22 | /** | 22 | /** |
23 | * @param AdapterInterface $adapter | 23 | * @param AdapterInterface $adapter |
24 | * @param User $user If user isn't logged in, we can force it (like for rss) | 24 | * @param User $user If user isn't logged in, we can force it (like for feed) |
25 | * | 25 | * |
26 | * @return null|Pagerfanta | 26 | * @return null|Pagerfanta |
27 | */ | 27 | */ |
diff --git a/src/Wallabag/CoreBundle/ParamConverter/UsernameRssTokenConverter.php b/src/Wallabag/CoreBundle/ParamConverter/UsernameFeedTokenConverter.php index 40b5673d..5ac91df8 100644 --- a/src/Wallabag/CoreBundle/ParamConverter/UsernameRssTokenConverter.php +++ b/src/Wallabag/CoreBundle/ParamConverter/UsernameFeedTokenConverter.php | |||
@@ -10,12 +10,12 @@ use Symfony\Component\HttpKernel\Exception\NotFoundHttpException; | |||
10 | use Wallabag\UserBundle\Entity\User; | 10 | use Wallabag\UserBundle\Entity\User; |
11 | 11 | ||
12 | /** | 12 | /** |
13 | * ParamConverter used in the RSS controller to retrieve the right user according to | 13 | * ParamConverter used in the Feed controller to retrieve the right user according to |
14 | * username & token given in the url. | 14 | * username & token given in the url. |
15 | * | 15 | * |
16 | * @see http://stfalcon.com/en/blog/post/symfony2-custom-paramconverter | 16 | * @see http://stfalcon.com/en/blog/post/symfony2-custom-paramconverter |
17 | */ | 17 | */ |
18 | class UsernameRssTokenConverter implements ParamConverterInterface | 18 | class UsernameFeedTokenConverter implements ParamConverterInterface |
19 | { | 19 | { |
20 | private $registry; | 20 | private $registry; |
21 | 21 | ||
@@ -67,7 +67,7 @@ class UsernameRssTokenConverter implements ParamConverterInterface | |||
67 | public function apply(Request $request, ParamConverter $configuration) | 67 | public function apply(Request $request, ParamConverter $configuration) |
68 | { | 68 | { |
69 | $username = $request->attributes->get('username'); | 69 | $username = $request->attributes->get('username'); |
70 | $rssToken = $request->attributes->get('token'); | 70 | $feedToken = $request->attributes->get('token'); |
71 | 71 | ||
72 | if (!$request->attributes->has('username') || !$request->attributes->has('token')) { | 72 | if (!$request->attributes->has('username') || !$request->attributes->has('token')) { |
73 | return false; | 73 | return false; |
@@ -78,8 +78,8 @@ class UsernameRssTokenConverter implements ParamConverterInterface | |||
78 | 78 | ||
79 | $userRepository = $em->getRepository($configuration->getClass()); | 79 | $userRepository = $em->getRepository($configuration->getClass()); |
80 | 80 | ||
81 | // Try to find user by its username and config rss_token | 81 | // Try to find user by its username and config feed_token |
82 | $user = $userRepository->findOneByUsernameAndRsstoken($username, $rssToken); | 82 | $user = $userRepository->findOneByUsernameAndFeedtoken($username, $feedToken); |
83 | 83 | ||
84 | if (null === $user || !($user instanceof User)) { | 84 | if (null === $user || !($user instanceof User)) { |
85 | throw new NotFoundHttpException(sprintf('%s not found.', $configuration->getClass())); | 85 | throw new NotFoundHttpException(sprintf('%s not found.', $configuration->getClass())); |
diff --git a/src/Wallabag/CoreBundle/Resources/config/services.yml b/src/Wallabag/CoreBundle/Resources/config/services.yml index e09b0f18..8d4e39aa 100644 --- a/src/Wallabag/CoreBundle/Resources/config/services.yml +++ b/src/Wallabag/CoreBundle/Resources/config/services.yml | |||
@@ -22,10 +22,10 @@ services: | |||
22 | tags: | 22 | tags: |
23 | - { name: form.type } | 23 | - { name: form.type } |
24 | 24 | ||
25 | wallabag_core.param_converter.username_rsstoken_converter: | 25 | wallabag_core.param_converter.username_feed_token_converter: |
26 | class: Wallabag\CoreBundle\ParamConverter\UsernameRssTokenConverter | 26 | class: Wallabag\CoreBundle\ParamConverter\UsernameFeedTokenConverter |
27 | tags: | 27 | tags: |
28 | - { name: request.param_converter, converter: username_rsstoken_converter } | 28 | - { name: request.param_converter, converter: username_feed_token_converter } |
29 | arguments: | 29 | arguments: |
30 | - "@doctrine" | 30 | - "@doctrine" |
31 | 31 | ||
diff --git a/src/Wallabag/CoreBundle/Resources/translations/messages.da.yml b/src/Wallabag/CoreBundle/Resources/translations/messages.da.yml index 5229ac73..7a46450e 100644 --- a/src/Wallabag/CoreBundle/Resources/translations/messages.da.yml +++ b/src/Wallabag/CoreBundle/Resources/translations/messages.da.yml | |||
@@ -53,7 +53,7 @@ config: | |||
53 | page_title: 'Opsætning' | 53 | page_title: 'Opsætning' |
54 | tab_menu: | 54 | tab_menu: |
55 | settings: 'Indstillinger' | 55 | settings: 'Indstillinger' |
56 | rss: 'RSS' | 56 | feed: 'RSS' |
57 | user_info: 'Brugeroplysninger' | 57 | user_info: 'Brugeroplysninger' |
58 | password: 'Adgangskode' | 58 | password: 'Adgangskode' |
59 | # rules: 'Tagging rules' | 59 | # rules: 'Tagging rules' |
@@ -83,19 +83,19 @@ config: | |||
83 | # help_reading_speed: "wallabag calculates a reading time for each article. You can define here, thanks to this list, if you are a fast or a slow reader. wallabag will recalculate the reading time for each article." | 83 | # help_reading_speed: "wallabag calculates a reading time for each article. You can define here, thanks to this list, if you are a fast or a slow reader. wallabag will recalculate the reading time for each article." |
84 | # help_language: "You can change the language of wallabag interface." | 84 | # help_language: "You can change the language of wallabag interface." |
85 | # help_pocket_consumer_key: "Required for Pocket import. You can create it in your Pocket account." | 85 | # help_pocket_consumer_key: "Required for Pocket import. You can create it in your Pocket account." |
86 | form_rss: | 86 | form_feed: |
87 | description: 'RSS-feeds fra wallabag gør det muligt at læse de artikler, der gemmes i wallabag, med din RSS-læser. Det kræver, at du genererer et token først.' | 87 | description: 'RSS-feeds fra wallabag gør det muligt at læse de artikler, der gemmes i wallabag, med din RSS-læser. Det kræver, at du genererer et token først.' |
88 | token_label: 'RSS-Token' | 88 | token_label: 'RSS-Token' |
89 | no_token: 'Intet token' | 89 | no_token: 'Intet token' |
90 | token_create: 'Opret token' | 90 | token_create: 'Opret token' |
91 | token_reset: 'Nulstil token' | 91 | token_reset: 'Nulstil token' |
92 | rss_links: 'RSS-Links' | 92 | feed_links: 'RSS-Links' |
93 | rss_link: | 93 | feed_link: |
94 | unread: 'Ulæst' | 94 | unread: 'Ulæst' |
95 | starred: 'Favoritter' | 95 | starred: 'Favoritter' |
96 | archive: 'Arkiv' | 96 | archive: 'Arkiv' |
97 | # all: 'All' | 97 | # all: 'All' |
98 | # rss_limit: 'Number of items in the feed' | 98 | # feed_limit: 'Number of items in the feed' |
99 | form_user: | 99 | form_user: |
100 | # two_factor_description: "Enabling two factor authentication means you'll receive an email with a code on every new untrusted connexion" | 100 | # two_factor_description: "Enabling two factor authentication means you'll receive an email with a code on every new untrusted connexion" |
101 | name_label: 'Navn' | 101 | name_label: 'Navn' |
@@ -344,7 +344,7 @@ quickstart: | |||
344 | # title: 'Configure the application' | 344 | # title: 'Configure the application' |
345 | # description: 'In order to have an application which suits you, have a look into the configuration of wallabag.' | 345 | # description: 'In order to have an application which suits you, have a look into the configuration of wallabag.' |
346 | # language: 'Change language and design' | 346 | # language: 'Change language and design' |
347 | # rss: 'Enable RSS feeds' | 347 | # feed: 'Enable RSS feeds' |
348 | # tagging_rules: 'Write rules to automatically tag your articles' | 348 | # tagging_rules: 'Write rules to automatically tag your articles' |
349 | # admin: | 349 | # admin: |
350 | # title: 'Administration' | 350 | # title: 'Administration' |
@@ -554,10 +554,10 @@ flashes: | |||
554 | password_updated: 'Adgangskode opdateret' | 554 | password_updated: 'Adgangskode opdateret' |
555 | # password_not_updated_demo: "In demonstration mode, you can't change password for this user." | 555 | # password_not_updated_demo: "In demonstration mode, you can't change password for this user." |
556 | user_updated: 'Oplysninger opdateret' | 556 | user_updated: 'Oplysninger opdateret' |
557 | rss_updated: 'RSS-oplysninger opdateret' | 557 | feed_updated: 'RSS-oplysninger opdateret' |
558 | # tagging_rules_updated: 'Tagging rules updated' | 558 | # tagging_rules_updated: 'Tagging rules updated' |
559 | # tagging_rules_deleted: 'Tagging rule deleted' | 559 | # tagging_rules_deleted: 'Tagging rule deleted' |
560 | # rss_token_updated: 'RSS token updated' | 560 | # feed_token_updated: 'RSS token updated' |
561 | # annotations_reset: Annotations reset | 561 | # annotations_reset: Annotations reset |
562 | # tags_reset: Tags reset | 562 | # tags_reset: Tags reset |
563 | # entries_reset: Entries reset | 563 | # entries_reset: Entries reset |
diff --git a/src/Wallabag/CoreBundle/Resources/translations/messages.de.yml b/src/Wallabag/CoreBundle/Resources/translations/messages.de.yml index 996f173a..3b882ea5 100644 --- a/src/Wallabag/CoreBundle/Resources/translations/messages.de.yml +++ b/src/Wallabag/CoreBundle/Resources/translations/messages.de.yml | |||
@@ -53,7 +53,7 @@ config: | |||
53 | page_title: 'Einstellungen' | 53 | page_title: 'Einstellungen' |
54 | tab_menu: | 54 | tab_menu: |
55 | settings: 'Einstellungen' | 55 | settings: 'Einstellungen' |
56 | rss: 'RSS' | 56 | feed: 'RSS' |
57 | user_info: 'Benutzerinformation' | 57 | user_info: 'Benutzerinformation' |
58 | password: 'Kennwort' | 58 | password: 'Kennwort' |
59 | rules: 'Tagging-Regeln' | 59 | rules: 'Tagging-Regeln' |
@@ -83,19 +83,19 @@ config: | |||
83 | help_reading_speed: "wallabag berechnet eine Lesezeit pro Artikel. Hier kannst du definieren, ob du ein schneller oder langsamer Leser bist. wallabag wird die Lesezeiten danach neu berechnen." | 83 | help_reading_speed: "wallabag berechnet eine Lesezeit pro Artikel. Hier kannst du definieren, ob du ein schneller oder langsamer Leser bist. wallabag wird die Lesezeiten danach neu berechnen." |
84 | help_language: "Du kannst die Sprache der wallabag-Oberfläche ändern." | 84 | help_language: "Du kannst die Sprache der wallabag-Oberfläche ändern." |
85 | help_pocket_consumer_key: "Nötig für den Pocket-Import. Du kannst ihn in deinem Pocket account einrichten." | 85 | help_pocket_consumer_key: "Nötig für den Pocket-Import. Du kannst ihn in deinem Pocket account einrichten." |
86 | form_rss: | 86 | form_feed: |
87 | description: 'Die RSS-Feeds von wallabag erlauben es dir, deine gespeicherten Artikel mit deinem bevorzugten RSS-Reader zu lesen. Vorher musst du jedoch einen Token erstellen.' | 87 | description: 'Die RSS-Feeds von wallabag erlauben es dir, deine gespeicherten Artikel mit deinem bevorzugten RSS-Reader zu lesen. Vorher musst du jedoch einen Token erstellen.' |
88 | token_label: 'RSS-Token' | 88 | token_label: 'RSS-Token' |
89 | no_token: 'Kein Token' | 89 | no_token: 'Kein Token' |
90 | token_create: 'Token erstellen' | 90 | token_create: 'Token erstellen' |
91 | token_reset: 'Token zurücksetzen' | 91 | token_reset: 'Token zurücksetzen' |
92 | rss_links: 'RSS-Links' | 92 | feed_links: 'RSS-Links' |
93 | rss_link: | 93 | feed_link: |
94 | unread: 'Ungelesene' | 94 | unread: 'Ungelesene' |
95 | starred: 'Favoriten' | 95 | starred: 'Favoriten' |
96 | archive: 'Archivierte' | 96 | archive: 'Archivierte' |
97 | # all: 'All' | 97 | # all: 'All' |
98 | rss_limit: 'Anzahl der Einträge pro Feed' | 98 | feed_limit: 'Anzahl der Einträge pro Feed' |
99 | form_user: | 99 | form_user: |
100 | two_factor_description: "Wenn du die Zwei-Faktor-Authentifizierung aktivierst, erhältst du eine E-Mail mit einem Code bei jeder nicht vertrauenswürdigen Verbindung" | 100 | two_factor_description: "Wenn du die Zwei-Faktor-Authentifizierung aktivierst, erhältst du eine E-Mail mit einem Code bei jeder nicht vertrauenswürdigen Verbindung" |
101 | name_label: 'Name' | 101 | name_label: 'Name' |
@@ -344,7 +344,7 @@ quickstart: | |||
344 | title: 'Anwendung konfigurieren' | 344 | title: 'Anwendung konfigurieren' |
345 | description: 'Um die Applikation für dich anzupassen, schau in die Konfiguration von wallabag.' | 345 | description: 'Um die Applikation für dich anzupassen, schau in die Konfiguration von wallabag.' |
346 | language: 'Sprache und Design ändern' | 346 | language: 'Sprache und Design ändern' |
347 | rss: 'RSS-Feeds aktivieren' | 347 | feed: 'RSS-Feeds aktivieren' |
348 | tagging_rules: 'Schreibe Regeln, um deine Beiträge automatisch zu taggen (verschlagworten)' | 348 | tagging_rules: 'Schreibe Regeln, um deine Beiträge automatisch zu taggen (verschlagworten)' |
349 | admin: | 349 | admin: |
350 | title: 'Administration' | 350 | title: 'Administration' |
@@ -554,10 +554,10 @@ flashes: | |||
554 | password_updated: 'Kennwort aktualisiert' | 554 | password_updated: 'Kennwort aktualisiert' |
555 | password_not_updated_demo: "Im Testmodus kannst du das Kennwort nicht ändern." | 555 | password_not_updated_demo: "Im Testmodus kannst du das Kennwort nicht ändern." |
556 | user_updated: 'Information aktualisiert' | 556 | user_updated: 'Information aktualisiert' |
557 | rss_updated: 'RSS-Informationen aktualisiert' | 557 | feed_updated: 'RSS-Informationen aktualisiert' |
558 | tagging_rules_updated: 'Tagging-Regeln aktualisiert' | 558 | tagging_rules_updated: 'Tagging-Regeln aktualisiert' |
559 | tagging_rules_deleted: 'Tagging-Regel gelöscht' | 559 | tagging_rules_deleted: 'Tagging-Regel gelöscht' |
560 | rss_token_updated: 'RSS-Token aktualisiert' | 560 | feed_token_updated: 'RSS-Token aktualisiert' |
561 | annotations_reset: Anmerkungen zurücksetzen | 561 | annotations_reset: Anmerkungen zurücksetzen |
562 | tags_reset: Tags zurücksetzen | 562 | tags_reset: Tags zurücksetzen |
563 | entries_reset: Einträge zurücksetzen | 563 | entries_reset: Einträge zurücksetzen |
diff --git a/src/Wallabag/CoreBundle/Resources/translations/messages.en.yml b/src/Wallabag/CoreBundle/Resources/translations/messages.en.yml index aa1cd1a9..9491aee9 100644 --- a/src/Wallabag/CoreBundle/Resources/translations/messages.en.yml +++ b/src/Wallabag/CoreBundle/Resources/translations/messages.en.yml | |||
@@ -53,7 +53,7 @@ config: | |||
53 | page_title: 'Config' | 53 | page_title: 'Config' |
54 | tab_menu: | 54 | tab_menu: |
55 | settings: 'Settings' | 55 | settings: 'Settings' |
56 | rss: 'RSS' | 56 | feed: 'Feeds' |
57 | user_info: 'User information' | 57 | user_info: 'User information' |
58 | password: 'Password' | 58 | password: 'Password' |
59 | rules: 'Tagging rules' | 59 | rules: 'Tagging rules' |
@@ -83,19 +83,19 @@ config: | |||
83 | help_reading_speed: "wallabag calculates a reading time for each article. You can define here, thanks to this list, if you are a fast or a slow reader. wallabag will recalculate the reading time for each article." | 83 | help_reading_speed: "wallabag calculates a reading time for each article. You can define here, thanks to this list, if you are a fast or a slow reader. wallabag will recalculate the reading time for each article." |
84 | help_language: "You can change the language of wallabag interface." | 84 | help_language: "You can change the language of wallabag interface." |
85 | help_pocket_consumer_key: "Required for Pocket import. You can create it in your Pocket account." | 85 | help_pocket_consumer_key: "Required for Pocket import. You can create it in your Pocket account." |
86 | form_rss: | 86 | form_feed: |
87 | description: 'RSS feeds provided by wallabag allow you to read your saved articles with your favourite RSS reader. You need to generate a token first.' | 87 | description: 'Atom feeds provided by wallabag allow you to read your saved articles with your favourite Atom reader. You need to generate a token first.' |
88 | token_label: 'RSS token' | 88 | token_label: 'Feed token' |
89 | no_token: 'No token' | 89 | no_token: 'No token' |
90 | token_create: 'Create your token' | 90 | token_create: 'Create your token' |
91 | token_reset: 'Regenerate your token' | 91 | token_reset: 'Regenerate your token' |
92 | rss_links: 'RSS links' | 92 | feed_links: 'Feed links' |
93 | rss_link: | 93 | feed_link: |
94 | unread: 'Unread' | 94 | unread: 'Unread' |
95 | starred: 'Starred' | 95 | starred: 'Starred' |
96 | archive: 'Archived' | 96 | archive: 'Archived' |
97 | all: 'All' | 97 | all: 'All' |
98 | rss_limit: 'Number of items in the feed' | 98 | feed_limit: 'Number of items in the feed' |
99 | form_user: | 99 | form_user: |
100 | two_factor_description: "Enabling two factor authentication means you'll receive an email with a code on every new untrusted connection." | 100 | two_factor_description: "Enabling two factor authentication means you'll receive an email with a code on every new untrusted connection." |
101 | name_label: 'Name' | 101 | name_label: 'Name' |
@@ -344,7 +344,7 @@ quickstart: | |||
344 | title: 'Configure the application' | 344 | title: 'Configure the application' |
345 | description: 'In order to have an application which suits you, have a look into the configuration of wallabag.' | 345 | description: 'In order to have an application which suits you, have a look into the configuration of wallabag.' |
346 | language: 'Change language and design' | 346 | language: 'Change language and design' |
347 | rss: 'Enable RSS feeds' | 347 | feed: 'Enable feeds' |
348 | tagging_rules: 'Write rules to automatically tag your articles' | 348 | tagging_rules: 'Write rules to automatically tag your articles' |
349 | admin: | 349 | admin: |
350 | title: 'Administration' | 350 | title: 'Administration' |
@@ -554,10 +554,10 @@ flashes: | |||
554 | password_updated: 'Password updated' | 554 | password_updated: 'Password updated' |
555 | password_not_updated_demo: "In demonstration mode, you can't change password for this user." | 555 | password_not_updated_demo: "In demonstration mode, you can't change password for this user." |
556 | user_updated: 'Information updated' | 556 | user_updated: 'Information updated' |
557 | rss_updated: 'RSS information updated' | 557 | feed_updated: 'Feed information updated' |
558 | tagging_rules_updated: 'Tagging rules updated' | 558 | tagging_rules_updated: 'Tagging rules updated' |
559 | tagging_rules_deleted: 'Tagging rule deleted' | 559 | tagging_rules_deleted: 'Tagging rule deleted' |
560 | rss_token_updated: 'RSS token updated' | 560 | feed_token_updated: 'Feed token updated' |
561 | annotations_reset: Annotations reset | 561 | annotations_reset: Annotations reset |
562 | tags_reset: Tags reset | 562 | tags_reset: Tags reset |
563 | entries_reset: Entries reset | 563 | entries_reset: Entries reset |
diff --git a/src/Wallabag/CoreBundle/Resources/translations/messages.es.yml b/src/Wallabag/CoreBundle/Resources/translations/messages.es.yml index 96998f53..027cb187 100644 --- a/src/Wallabag/CoreBundle/Resources/translations/messages.es.yml +++ b/src/Wallabag/CoreBundle/Resources/translations/messages.es.yml | |||
@@ -53,7 +53,7 @@ config: | |||
53 | page_title: 'Configuración' | 53 | page_title: 'Configuración' |
54 | tab_menu: | 54 | tab_menu: |
55 | settings: 'Configuración' | 55 | settings: 'Configuración' |
56 | rss: 'RSS' | 56 | feed: 'RSS' |
57 | user_info: 'Información de usuario' | 57 | user_info: 'Información de usuario' |
58 | password: 'Contraseña' | 58 | password: 'Contraseña' |
59 | rules: 'Reglas de etiquetado automáticas' | 59 | rules: 'Reglas de etiquetado automáticas' |
@@ -83,19 +83,19 @@ config: | |||
83 | help_reading_speed: "wallabag calcula un tiempo de lectura para cada artículo. Puedes definir aquí, gracias a esta lista, si eres un lector rápido o lento. wallabag recalculará el tiempo de lectura para cada artículo." | 83 | help_reading_speed: "wallabag calcula un tiempo de lectura para cada artículo. Puedes definir aquí, gracias a esta lista, si eres un lector rápido o lento. wallabag recalculará el tiempo de lectura para cada artículo." |
84 | help_language: "Puedes cambiar el idioma de la interfaz de wallabag." | 84 | help_language: "Puedes cambiar el idioma de la interfaz de wallabag." |
85 | help_pocket_consumer_key: "Requerido para la importación desde Pocket. Puedes crearla en tu cuenta de Pocket." | 85 | help_pocket_consumer_key: "Requerido para la importación desde Pocket. Puedes crearla en tu cuenta de Pocket." |
86 | form_rss: | 86 | form_feed: |
87 | description: 'Los feeds RSS de wallabag permiten leer los artículos guardados con su lector RSS favorito. Primero necesitas generar un token.' | 87 | description: 'Los feeds RSS de wallabag permiten leer los artículos guardados con su lector RSS favorito. Primero necesitas generar un token.' |
88 | token_label: 'Token RSS' | 88 | token_label: 'Token RSS' |
89 | no_token: 'Sin token' | 89 | no_token: 'Sin token' |
90 | token_create: 'Crear token' | 90 | token_create: 'Crear token' |
91 | token_reset: 'Reiniciar token' | 91 | token_reset: 'Reiniciar token' |
92 | rss_links: 'URLs de feeds RSS' | 92 | feed_links: 'URLs de feeds RSS' |
93 | rss_link: | 93 | feed_link: |
94 | unread: 'sin leer' | 94 | unread: 'sin leer' |
95 | starred: 'favoritos' | 95 | starred: 'favoritos' |
96 | archive: 'archivados' | 96 | archive: 'archivados' |
97 | # all: 'All' | 97 | # all: 'All' |
98 | rss_limit: 'Límite de artículos en feed RSS' | 98 | feed_limit: 'Límite de artículos en feed RSS' |
99 | form_user: | 99 | form_user: |
100 | two_factor_description: "Con la autenticación en dos pasos recibirá código por e-mail en cada nueva conexión que no sea de confianza." | 100 | two_factor_description: "Con la autenticación en dos pasos recibirá código por e-mail en cada nueva conexión que no sea de confianza." |
101 | name_label: 'Nombre' | 101 | name_label: 'Nombre' |
@@ -344,7 +344,7 @@ quickstart: | |||
344 | title: 'Configure la aplicación' | 344 | title: 'Configure la aplicación' |
345 | description: 'Para que la aplicación se ajuste a tus necesidades, echa un vistazo a la configuración de wallabag.' | 345 | description: 'Para que la aplicación se ajuste a tus necesidades, echa un vistazo a la configuración de wallabag.' |
346 | language: 'Cambie el idioma y el diseño' | 346 | language: 'Cambie el idioma y el diseño' |
347 | rss: 'Activar los feeds RSS' | 347 | feed: 'Activar los feeds RSS' |
348 | tagging_rules: 'Escribe reglas para etiquetar automáticamente tus artículos' | 348 | tagging_rules: 'Escribe reglas para etiquetar automáticamente tus artículos' |
349 | admin: | 349 | admin: |
350 | title: 'Administración' | 350 | title: 'Administración' |
@@ -554,10 +554,10 @@ flashes: | |||
554 | password_updated: 'Contraseña actualizada' | 554 | password_updated: 'Contraseña actualizada' |
555 | password_not_updated_demo: "En el modo demo, no puede cambiar la contraseña del usuario." | 555 | password_not_updated_demo: "En el modo demo, no puede cambiar la contraseña del usuario." |
556 | user_updated: 'Información actualizada' | 556 | user_updated: 'Información actualizada' |
557 | rss_updated: 'Configuración RSS actualizada' | 557 | feed_updated: 'Configuración RSS actualizada' |
558 | tagging_rules_updated: 'Regla de etiquetado actualizada' | 558 | tagging_rules_updated: 'Regla de etiquetado actualizada' |
559 | tagging_rules_deleted: 'Regla de etiquetado eliminada' | 559 | tagging_rules_deleted: 'Regla de etiquetado eliminada' |
560 | rss_token_updated: 'Token RSS actualizado' | 560 | feed_token_updated: 'Token RSS actualizado' |
561 | annotations_reset: Anotaciones reiniciadas | 561 | annotations_reset: Anotaciones reiniciadas |
562 | tags_reset: Etiquetas reiniciadas | 562 | tags_reset: Etiquetas reiniciadas |
563 | entries_reset: Artículos reiniciados | 563 | entries_reset: Artículos reiniciados |
diff --git a/src/Wallabag/CoreBundle/Resources/translations/messages.fa.yml b/src/Wallabag/CoreBundle/Resources/translations/messages.fa.yml index 57e6c029..9400b125 100644 --- a/src/Wallabag/CoreBundle/Resources/translations/messages.fa.yml +++ b/src/Wallabag/CoreBundle/Resources/translations/messages.fa.yml | |||
@@ -53,7 +53,7 @@ config: | |||
53 | page_title: 'پیکربندی' | 53 | page_title: 'پیکربندی' |
54 | tab_menu: | 54 | tab_menu: |
55 | settings: 'تنظیمات' | 55 | settings: 'تنظیمات' |
56 | rss: 'آر-اس-اس' | 56 | feed: 'آر-اس-اس' |
57 | user_info: 'اطلاعات کاربر' | 57 | user_info: 'اطلاعات کاربر' |
58 | password: 'رمز' | 58 | password: 'رمز' |
59 | rules: 'برچسبگذاری خودکار' | 59 | rules: 'برچسبگذاری خودکار' |
@@ -83,19 +83,19 @@ config: | |||
83 | # help_reading_speed: "wallabag calculates a reading time for each article. You can define here, thanks to this list, if you are a fast or a slow reader. wallabag will recalculate the reading time for each article." | 83 | # help_reading_speed: "wallabag calculates a reading time for each article. You can define here, thanks to this list, if you are a fast or a slow reader. wallabag will recalculate the reading time for each article." |
84 | # help_language: "You can change the language of wallabag interface." | 84 | # help_language: "You can change the language of wallabag interface." |
85 | # help_pocket_consumer_key: "Required for Pocket import. You can create it in your Pocket account." | 85 | # help_pocket_consumer_key: "Required for Pocket import. You can create it in your Pocket account." |
86 | form_rss: | 86 | form_feed: |
87 | description: 'با خوراک آر-اس-اس که wallabag در اختیارتان میگذارد، میتوانید مقالههای ذخیرهشده را در نرمافزار آر-اس-اس دلخواه خود بخوانید. برای این کار نخست باید یک کد بسازید.' | 87 | description: 'با خوراک آر-اس-اس که wallabag در اختیارتان میگذارد، میتوانید مقالههای ذخیرهشده را در نرمافزار آر-اس-اس دلخواه خود بخوانید. برای این کار نخست باید یک کد بسازید.' |
88 | token_label: 'کد آر-اس-اس' | 88 | token_label: 'کد آر-اس-اس' |
89 | no_token: 'بدون کد' | 89 | no_token: 'بدون کد' |
90 | token_create: 'کد خود را بسازید' | 90 | token_create: 'کد خود را بسازید' |
91 | token_reset: 'بازنشانی کد' | 91 | token_reset: 'بازنشانی کد' |
92 | rss_links: 'پیوند آر-اس-اس' | 92 | feed_links: 'پیوند آر-اس-اس' |
93 | rss_link: | 93 | feed_link: |
94 | unread: 'خواندهنشده' | 94 | unread: 'خواندهنشده' |
95 | starred: 'برگزیده' | 95 | starred: 'برگزیده' |
96 | archive: 'بایگانی' | 96 | archive: 'بایگانی' |
97 | # all: 'All' | 97 | # all: 'All' |
98 | rss_limit: 'محدودیت آر-اس-اس' | 98 | feed_limit: 'محدودیت آر-اس-اس' |
99 | form_user: | 99 | form_user: |
100 | two_factor_description: "با فعالکردن تأیید ۲مرحلهای هر بار که اتصال تأییدنشدهای برقرار شد، به شما یک کد از راه ایمیل فرستاده میشود" | 100 | two_factor_description: "با فعالکردن تأیید ۲مرحلهای هر بار که اتصال تأییدنشدهای برقرار شد، به شما یک کد از راه ایمیل فرستاده میشود" |
101 | name_label: 'نام' | 101 | name_label: 'نام' |
@@ -344,7 +344,7 @@ quickstart: | |||
344 | title: 'برنامه را تنظیم کنید' | 344 | title: 'برنامه را تنظیم کنید' |
345 | # description: 'In order to have an application which suits you, have a look into the configuration of wallabag.' | 345 | # description: 'In order to have an application which suits you, have a look into the configuration of wallabag.' |
346 | language: 'زبان و نمای برنامه را تغییر دهید' | 346 | language: 'زبان و نمای برنامه را تغییر دهید' |
347 | rss: 'خوراک آر-اس-اس را فعال کنید' | 347 | feed: 'خوراک آر-اس-اس را فعال کنید' |
348 | tagging_rules: 'قانونهای برچسبگذاری خودکار مقالههایتان را تعریف کنید' | 348 | tagging_rules: 'قانونهای برچسبگذاری خودکار مقالههایتان را تعریف کنید' |
349 | admin: | 349 | admin: |
350 | title: 'مدیریت' | 350 | title: 'مدیریت' |
@@ -554,10 +554,10 @@ flashes: | |||
554 | password_updated: 'رمز بهروز شد' | 554 | password_updated: 'رمز بهروز شد' |
555 | password_not_updated_demo: "در حالت نمایشی نمیتوانید رمز کاربر را عوض کنید." | 555 | password_not_updated_demo: "در حالت نمایشی نمیتوانید رمز کاربر را عوض کنید." |
556 | user_updated: 'اطلاعات بهروز شد' | 556 | user_updated: 'اطلاعات بهروز شد' |
557 | rss_updated: 'اطلاعات آر-اس-اس بهروز شد' | 557 | feed_updated: 'اطلاعات آر-اس-اس بهروز شد' |
558 | tagging_rules_updated: 'برچسبگذاری خودکار بهروز شد' | 558 | tagging_rules_updated: 'برچسبگذاری خودکار بهروز شد' |
559 | tagging_rules_deleted: 'قانون برچسبگذاری پاک شد' | 559 | tagging_rules_deleted: 'قانون برچسبگذاری پاک شد' |
560 | rss_token_updated: 'کد آر-اس-اس بهروز شد' | 560 | feed_token_updated: 'کد آر-اس-اس بهروز شد' |
561 | # annotations_reset: Annotations reset | 561 | # annotations_reset: Annotations reset |
562 | # tags_reset: Tags reset | 562 | # tags_reset: Tags reset |
563 | # entries_reset: Entries reset | 563 | # entries_reset: Entries reset |
diff --git a/src/Wallabag/CoreBundle/Resources/translations/messages.fr.yml b/src/Wallabag/CoreBundle/Resources/translations/messages.fr.yml index 6eac4c36..c67677fd 100644 --- a/src/Wallabag/CoreBundle/Resources/translations/messages.fr.yml +++ b/src/Wallabag/CoreBundle/Resources/translations/messages.fr.yml | |||
@@ -53,7 +53,7 @@ config: | |||
53 | page_title: "Configuration" | 53 | page_title: "Configuration" |
54 | tab_menu: | 54 | tab_menu: |
55 | settings: "Paramètres" | 55 | settings: "Paramètres" |
56 | rss: "RSS" | 56 | feed: "Flux" |
57 | user_info: "Mon compte" | 57 | user_info: "Mon compte" |
58 | password: "Mot de passe" | 58 | password: "Mot de passe" |
59 | rules: "Règles de tag automatiques" | 59 | rules: "Règles de tag automatiques" |
@@ -83,19 +83,19 @@ config: | |||
83 | help_reading_speed: "wallabag calcule une durée de lecture pour chaque article. Vous pouvez définir ici, grâce à cette liste déroulante, si vous lisez plus ou moins vite. wallabag recalculera la durée de lecture de chaque article." | 83 | help_reading_speed: "wallabag calcule une durée de lecture pour chaque article. Vous pouvez définir ici, grâce à cette liste déroulante, si vous lisez plus ou moins vite. wallabag recalculera la durée de lecture de chaque article." |
84 | help_language: "Vous pouvez définir la langue de l’interface de wallabag." | 84 | help_language: "Vous pouvez définir la langue de l’interface de wallabag." |
85 | help_pocket_consumer_key: "Nécessaire pour l’import depuis Pocket. Vous pouvez le créer depuis votre compte Pocket." | 85 | help_pocket_consumer_key: "Nécessaire pour l’import depuis Pocket. Vous pouvez le créer depuis votre compte Pocket." |
86 | form_rss: | 86 | form_feed: |
87 | description: "Les flux RSS fournis par wallabag vous permettent de lire vos articles sauvegardés dans votre lecteur de flux préféré. Pour pouvoir les utiliser, vous devez d’abord créer un jeton." | 87 | description: "Les flux Atom fournis par wallabag vous permettent de lire vos articles sauvegardés dans votre lecteur de flux préféré. Pour pouvoir les utiliser, vous devez d’abord créer un jeton." |
88 | token_label: "Jeton RSS" | 88 | token_label: "Jeton de flux" |
89 | no_token: "Aucun jeton généré" | 89 | no_token: "Aucun jeton généré" |
90 | token_create: "Créez votre jeton" | 90 | token_create: "Créez votre jeton" |
91 | token_reset: "Réinitialisez votre jeton" | 91 | token_reset: "Réinitialisez votre jeton" |
92 | rss_links: "Adresses de vos flux RSS" | 92 | feed_links: "Adresses de vos flux" |
93 | rss_link: | 93 | feed_link: |
94 | unread: "Non lus" | 94 | unread: "Non lus" |
95 | starred: "Favoris" | 95 | starred: "Favoris" |
96 | archive: "Lus" | 96 | archive: "Lus" |
97 | all: "Tous" | 97 | all: "Tous" |
98 | rss_limit: "Nombre d’articles dans le flux" | 98 | feed_limit: "Nombre d’articles dans le flux" |
99 | form_user: | 99 | form_user: |
100 | two_factor_description: "Activer l’authentification double-facteur veut dire que vous allez recevoir un code par courriel à chaque nouvelle connexion non approuvée." | 100 | two_factor_description: "Activer l’authentification double-facteur veut dire que vous allez recevoir un code par courriel à chaque nouvelle connexion non approuvée." |
101 | name_label: "Nom" | 101 | name_label: "Nom" |
@@ -344,7 +344,7 @@ quickstart: | |||
344 | title: "Configurez l’application" | 344 | title: "Configurez l’application" |
345 | description: "Pour voir une application qui vous correspond, allez voir du côté de la configuration de wallabag." | 345 | description: "Pour voir une application qui vous correspond, allez voir du côté de la configuration de wallabag." |
346 | language: "Changez la langue et le design de l’application" | 346 | language: "Changez la langue et le design de l’application" |
347 | rss: "Activez les flux RSS" | 347 | feed: "Activez les flux Atom" |
348 | tagging_rules: "Écrivez des règles pour classer automatiquement vos articles" | 348 | tagging_rules: "Écrivez des règles pour classer automatiquement vos articles" |
349 | admin: | 349 | admin: |
350 | title: "Administration" | 350 | title: "Administration" |
@@ -554,10 +554,10 @@ flashes: | |||
554 | password_updated: "Votre mot de passe a bien été mis à jour" | 554 | password_updated: "Votre mot de passe a bien été mis à jour" |
555 | password_not_updated_demo: "En démo, vous ne pouvez pas changer le mot de passe de cet utilisateur." | 555 | password_not_updated_demo: "En démo, vous ne pouvez pas changer le mot de passe de cet utilisateur." |
556 | user_updated: "Vos informations personnelles ont bien été mises à jour" | 556 | user_updated: "Vos informations personnelles ont bien été mises à jour" |
557 | rss_updated: "La configuration des flux RSS a bien été mise à jour" | 557 | feed_updated: "La configuration des flux a bien été mise à jour" |
558 | tagging_rules_updated: "Règles mises à jour" | 558 | tagging_rules_updated: "Règles mises à jour" |
559 | tagging_rules_deleted: "Règle supprimée" | 559 | tagging_rules_deleted: "Règle supprimée" |
560 | rss_token_updated: "Jeton RSS mis à jour" | 560 | feed_token_updated: "Jeton des flux mis à jour" |
561 | annotations_reset: "Annotations supprimées" | 561 | annotations_reset: "Annotations supprimées" |
562 | tags_reset: "Tags supprimés" | 562 | tags_reset: "Tags supprimés" |
563 | entries_reset: "Articles supprimés" | 563 | entries_reset: "Articles supprimés" |
diff --git a/src/Wallabag/CoreBundle/Resources/translations/messages.it.yml b/src/Wallabag/CoreBundle/Resources/translations/messages.it.yml index fa7ae0b2..223b47c8 100644 --- a/src/Wallabag/CoreBundle/Resources/translations/messages.it.yml +++ b/src/Wallabag/CoreBundle/Resources/translations/messages.it.yml | |||
@@ -53,7 +53,7 @@ config: | |||
53 | page_title: 'Configurazione' | 53 | page_title: 'Configurazione' |
54 | tab_menu: | 54 | tab_menu: |
55 | settings: 'Impostazioni' | 55 | settings: 'Impostazioni' |
56 | rss: 'RSS' | 56 | feed: 'RSS' |
57 | user_info: 'Informazioni utente' | 57 | user_info: 'Informazioni utente' |
58 | password: 'Password' | 58 | password: 'Password' |
59 | rules: 'Regole di etichettatura' | 59 | rules: 'Regole di etichettatura' |
@@ -83,19 +83,19 @@ config: | |||
83 | help_reading_speed: "wallabag calcola un tempo di lettura per ogni articolo. Puoi definire qui, grazie a questa lista, se sei un lettore lento o veloce. wallabag ricalcolerà la velocità di lettura per ogni articolo." | 83 | help_reading_speed: "wallabag calcola un tempo di lettura per ogni articolo. Puoi definire qui, grazie a questa lista, se sei un lettore lento o veloce. wallabag ricalcolerà la velocità di lettura per ogni articolo." |
84 | help_language: "Puoi cambiare la lingua dell'interfaccia di wallabag." | 84 | help_language: "Puoi cambiare la lingua dell'interfaccia di wallabag." |
85 | help_pocket_consumer_key: "Richiesta per importare da Pocket. La puoi creare nel tuo account Pocket." | 85 | help_pocket_consumer_key: "Richiesta per importare da Pocket. La puoi creare nel tuo account Pocket." |
86 | form_rss: | 86 | form_feed: |
87 | description: 'I feed RSS generati da wallabag ti permettono di leggere i tuoi contenuti salvati con il tuo lettore di RSS preferito. Prima, devi generare un token.' | 87 | description: 'I feed RSS generati da wallabag ti permettono di leggere i tuoi contenuti salvati con il tuo lettore di RSS preferito. Prima, devi generare un token.' |
88 | token_label: 'Token RSS' | 88 | token_label: 'Token RSS' |
89 | no_token: 'Nessun token' | 89 | no_token: 'Nessun token' |
90 | token_create: 'Crea il tuo token' | 90 | token_create: 'Crea il tuo token' |
91 | token_reset: 'Rigenera il tuo token' | 91 | token_reset: 'Rigenera il tuo token' |
92 | rss_links: 'Collegamenti RSS' | 92 | feed_links: 'Collegamenti RSS' |
93 | rss_link: | 93 | feed_link: |
94 | unread: 'Non letti' | 94 | unread: 'Non letti' |
95 | starred: 'Preferiti' | 95 | starred: 'Preferiti' |
96 | archive: 'Archiviati' | 96 | archive: 'Archiviati' |
97 | # all: 'All' | 97 | # all: 'All' |
98 | rss_limit: 'Numero di elementi nel feed' | 98 | feed_limit: 'Numero di elementi nel feed' |
99 | form_user: | 99 | form_user: |
100 | two_factor_description: "Abilitando l'autenticazione a due fattori riceverai una e-mail con un codice per ogni nuova connesione non verificata" | 100 | two_factor_description: "Abilitando l'autenticazione a due fattori riceverai una e-mail con un codice per ogni nuova connesione non verificata" |
101 | name_label: 'Nome' | 101 | name_label: 'Nome' |
@@ -344,7 +344,7 @@ quickstart: | |||
344 | title: "Configura l'applicazione" | 344 | title: "Configura l'applicazione" |
345 | description: "Per avere un'applicazione che ti soddisfi, dai un'occhiata alla configurazione di wallabag." | 345 | description: "Per avere un'applicazione che ti soddisfi, dai un'occhiata alla configurazione di wallabag." |
346 | language: 'Cambia lingua e design' | 346 | language: 'Cambia lingua e design' |
347 | rss: 'Abilita i feed RSS' | 347 | feed: 'Abilita i feed RSS' |
348 | tagging_rules: 'Scrivi delle regole per taggare automaticamente i contenuti' | 348 | tagging_rules: 'Scrivi delle regole per taggare automaticamente i contenuti' |
349 | admin: | 349 | admin: |
350 | title: 'Amministrazione' | 350 | title: 'Amministrazione' |
@@ -554,10 +554,10 @@ flashes: | |||
554 | password_updated: 'Password aggiornata' | 554 | password_updated: 'Password aggiornata' |
555 | password_not_updated_demo: "In modalità demo, non puoi cambiare la password dell'utente." | 555 | password_not_updated_demo: "In modalità demo, non puoi cambiare la password dell'utente." |
556 | user_updated: 'Informazioni aggiornate' | 556 | user_updated: 'Informazioni aggiornate' |
557 | rss_updated: 'Informazioni RSS aggiornate' | 557 | feed_updated: 'Informazioni RSS aggiornate' |
558 | tagging_rules_updated: 'Regole di etichettatura aggiornate' | 558 | tagging_rules_updated: 'Regole di etichettatura aggiornate' |
559 | tagging_rules_deleted: 'Regola di etichettatura eliminate' | 559 | tagging_rules_deleted: 'Regola di etichettatura eliminate' |
560 | rss_token_updated: 'RSS token aggiornato' | 560 | feed_token_updated: 'RSS token aggiornato' |
561 | annotations_reset: Reset annotazioni | 561 | annotations_reset: Reset annotazioni |
562 | tags_reset: Reset etichette | 562 | tags_reset: Reset etichette |
563 | entries_reset: Reset articoli | 563 | entries_reset: Reset articoli |
diff --git a/src/Wallabag/CoreBundle/Resources/translations/messages.oc.yml b/src/Wallabag/CoreBundle/Resources/translations/messages.oc.yml index be57e903..5a52cf7b 100644 --- a/src/Wallabag/CoreBundle/Resources/translations/messages.oc.yml +++ b/src/Wallabag/CoreBundle/Resources/translations/messages.oc.yml | |||
@@ -53,7 +53,7 @@ config: | |||
53 | page_title: 'Configuracion' | 53 | page_title: 'Configuracion' |
54 | tab_menu: | 54 | tab_menu: |
55 | settings: 'Paramètres' | 55 | settings: 'Paramètres' |
56 | rss: 'RSS' | 56 | feed: 'RSS' |
57 | user_info: 'Mon compte' | 57 | user_info: 'Mon compte' |
58 | password: 'Senhal' | 58 | password: 'Senhal' |
59 | rules: "Règlas d'etiquetas automaticas" | 59 | rules: "Règlas d'etiquetas automaticas" |
@@ -83,19 +83,19 @@ config: | |||
83 | help_reading_speed: "wallabag calcula lo temps de lectura per cada article. Podètz lo definir aquí, gràcias a aquesta lista, se sètz un legeire rapid o lent. wallabag tornarà calcular lo temps de lectura per cada article." | 83 | help_reading_speed: "wallabag calcula lo temps de lectura per cada article. Podètz lo definir aquí, gràcias a aquesta lista, se sètz un legeire rapid o lent. wallabag tornarà calcular lo temps de lectura per cada article." |
84 | help_language: "Podètz cambiar la lenga de l'interfàcia de wallabag." | 84 | help_language: "Podètz cambiar la lenga de l'interfàcia de wallabag." |
85 | help_pocket_consumer_key: "Requesida per l'importacion de Pocket. Podètz la crear dins vòstre compte Pocket." | 85 | help_pocket_consumer_key: "Requesida per l'importacion de Pocket. Podètz la crear dins vòstre compte Pocket." |
86 | form_rss: | 86 | form_feed: |
87 | description: "Los fluxes RSS fornits per wallabag vos permeton de legir vòstres articles salvagardats dins vòstre lector de fluxes preferit. Per los poder emplegar, vos cal, d'en primièr crear un geton." | 87 | description: "Los fluxes RSS fornits per wallabag vos permeton de legir vòstres articles salvagardats dins vòstre lector de fluxes preferit. Per los poder emplegar, vos cal, d'en primièr crear un geton." |
88 | token_label: 'Geton RSS' | 88 | token_label: 'Geton RSS' |
89 | no_token: 'Pas cap de geton generat' | 89 | no_token: 'Pas cap de geton generat' |
90 | token_create: 'Creatz vòstre geton' | 90 | token_create: 'Creatz vòstre geton' |
91 | token_reset: 'Reïnicializatz vòstre geton' | 91 | token_reset: 'Reïnicializatz vòstre geton' |
92 | rss_links: 'URLs de vòstres fluxes RSS' | 92 | feed_links: 'URLs de vòstres fluxes RSS' |
93 | rss_link: | 93 | feed_link: |
94 | unread: 'Pas legits' | 94 | unread: 'Pas legits' |
95 | starred: 'Favorits' | 95 | starred: 'Favorits' |
96 | archive: 'Legits' | 96 | archive: 'Legits' |
97 | # all: 'All' | 97 | # all: 'All' |
98 | rss_limit: "Nombre d'articles dins un flux RSS" | 98 | feed_limit: "Nombre d'articles dins un flux RSS" |
99 | form_user: | 99 | form_user: |
100 | two_factor_description: "Activar l'autentificacion doble-factor vòl dire que recebretz un còdi per corrièl per cada novèla connexion pas aprovada." | 100 | two_factor_description: "Activar l'autentificacion doble-factor vòl dire que recebretz un còdi per corrièl per cada novèla connexion pas aprovada." |
101 | name_label: 'Nom' | 101 | name_label: 'Nom' |
@@ -344,7 +344,7 @@ quickstart: | |||
344 | title: "Configuratz l'aplicacion" | 344 | title: "Configuratz l'aplicacion" |
345 | description: "Per fin d'aver una aplicacion que vos va ben, anatz veire la configuracion de wallabag." | 345 | description: "Per fin d'aver una aplicacion que vos va ben, anatz veire la configuracion de wallabag." |
346 | language: "Cambiatz la lenga e l'estil de l'aplicacion" | 346 | language: "Cambiatz la lenga e l'estil de l'aplicacion" |
347 | rss: 'Activatz los fluxes RSS' | 347 | feed: 'Activatz los fluxes RSS' |
348 | tagging_rules: 'Escrivètz de règlas per classar automaticament vòstres articles' | 348 | tagging_rules: 'Escrivètz de règlas per classar automaticament vòstres articles' |
349 | admin: | 349 | admin: |
350 | title: 'Administracion' | 350 | title: 'Administracion' |
@@ -554,10 +554,10 @@ flashes: | |||
554 | password_updated: 'Vòstre senhal es ben estat mes a jorn' | 554 | password_updated: 'Vòstre senhal es ben estat mes a jorn' |
555 | password_not_updated_demo: "En demostration, podètz pas cambiar lo senhal d'aqueste utilizaire." | 555 | password_not_updated_demo: "En demostration, podètz pas cambiar lo senhal d'aqueste utilizaire." |
556 | user_updated: 'Vòstres informacions personnelas son ben estadas mesas a jorn' | 556 | user_updated: 'Vòstres informacions personnelas son ben estadas mesas a jorn' |
557 | rss_updated: 'La configuracion dels fluxes RSS es ben estada mesa a jorn' | 557 | feed_updated: 'La configuracion dels fluxes RSS es ben estada mesa a jorn' |
558 | tagging_rules_updated: 'Règlas misa a jorn' | 558 | tagging_rules_updated: 'Règlas misa a jorn' |
559 | tagging_rules_deleted: 'Règla suprimida' | 559 | tagging_rules_deleted: 'Règla suprimida' |
560 | rss_token_updated: 'Geton RSS mes a jorn' | 560 | feed_token_updated: 'Geton RSS mes a jorn' |
561 | annotations_reset: Anotacions levadas | 561 | annotations_reset: Anotacions levadas |
562 | tags_reset: Etiquetas levadas | 562 | tags_reset: Etiquetas levadas |
563 | entries_reset: Articles levats | 563 | entries_reset: Articles levats |
diff --git a/src/Wallabag/CoreBundle/Resources/translations/messages.pl.yml b/src/Wallabag/CoreBundle/Resources/translations/messages.pl.yml index 00c559ed..9f4a7900 100644 --- a/src/Wallabag/CoreBundle/Resources/translations/messages.pl.yml +++ b/src/Wallabag/CoreBundle/Resources/translations/messages.pl.yml | |||
@@ -53,7 +53,7 @@ config: | |||
53 | page_title: 'Konfiguracja' | 53 | page_title: 'Konfiguracja' |
54 | tab_menu: | 54 | tab_menu: |
55 | settings: 'Ustawienia' | 55 | settings: 'Ustawienia' |
56 | rss: 'Kanał RSS' | 56 | feed: 'Kanał RSS' |
57 | user_info: 'Informacje o użytkowniku' | 57 | user_info: 'Informacje o użytkowniku' |
58 | password: 'Hasło' | 58 | password: 'Hasło' |
59 | rules: 'Zasady tagowania' | 59 | rules: 'Zasady tagowania' |
@@ -83,19 +83,19 @@ config: | |||
83 | help_reading_speed: "wallabag oblicza czas czytania każdego artykułu. Dzięki tej liście możesz określić swoje tempo. Wallabag przeliczy ponownie czas potrzebny, na przeczytanie każdego z artykułów." | 83 | help_reading_speed: "wallabag oblicza czas czytania każdego artykułu. Dzięki tej liście możesz określić swoje tempo. Wallabag przeliczy ponownie czas potrzebny, na przeczytanie każdego z artykułów." |
84 | help_language: "Możesz zmienić język interfejsu wallabag." | 84 | help_language: "Możesz zmienić język interfejsu wallabag." |
85 | help_pocket_consumer_key: "Wymagane dla importu z Pocket. Możesz go stworzyć na swoim koncie Pocket." | 85 | help_pocket_consumer_key: "Wymagane dla importu z Pocket. Możesz go stworzyć na swoim koncie Pocket." |
86 | form_rss: | 86 | form_feed: |
87 | description: 'Kanały RSS prowadzone przez wallabag pozwalają Ci na czytanie twoich zapisanych artykułów w twoim ulubionym czytniku RSS. Musisz najpierw wynegenerować tokena.' | 87 | description: 'Kanały RSS prowadzone przez wallabag pozwalają Ci na czytanie twoich zapisanych artykułów w twoim ulubionym czytniku RSS. Musisz najpierw wynegenerować tokena.' |
88 | token_label: 'Token RSS' | 88 | token_label: 'Token RSS' |
89 | no_token: 'Brak tokena' | 89 | no_token: 'Brak tokena' |
90 | token_create: 'Stwórz tokena' | 90 | token_create: 'Stwórz tokena' |
91 | token_reset: 'Zresetuj swojego tokena' | 91 | token_reset: 'Zresetuj swojego tokena' |
92 | rss_links: 'RSS links' | 92 | feed_links: 'RSS links' |
93 | rss_link: | 93 | feed_link: |
94 | unread: 'Nieprzeczytane' | 94 | unread: 'Nieprzeczytane' |
95 | starred: 'Oznaczone gwiazdką' | 95 | starred: 'Oznaczone gwiazdką' |
96 | archive: 'Archiwum' | 96 | archive: 'Archiwum' |
97 | # all: 'All' | 97 | # all: 'All' |
98 | rss_limit: 'Link do RSS' | 98 | feed_limit: 'Link do RSS' |
99 | form_user: | 99 | form_user: |
100 | two_factor_description: "Włączenie autoryzacji dwuetapowej oznacza, że będziesz otrzymywał maile z kodem przy każdym nowym, niezaufanym połączeniu" | 100 | two_factor_description: "Włączenie autoryzacji dwuetapowej oznacza, że będziesz otrzymywał maile z kodem przy każdym nowym, niezaufanym połączeniu" |
101 | name_label: 'Nazwa' | 101 | name_label: 'Nazwa' |
@@ -344,7 +344,7 @@ quickstart: | |||
344 | title: 'Konfiguruj aplikację' | 344 | title: 'Konfiguruj aplikację' |
345 | description: 'W celu dopasowania aplikacji do swoich upodobań, zobacz konfigurację aplikacji' | 345 | description: 'W celu dopasowania aplikacji do swoich upodobań, zobacz konfigurację aplikacji' |
346 | language: 'Zmień język i wygląd' | 346 | language: 'Zmień język i wygląd' |
347 | rss: 'Włącz kanały RSS' | 347 | feed: 'Włącz kanały RSS' |
348 | tagging_rules: 'Napisz reguły pozwalające na automatyczne otagowanie twoich artykułów' | 348 | tagging_rules: 'Napisz reguły pozwalające na automatyczne otagowanie twoich artykułów' |
349 | admin: | 349 | admin: |
350 | title: 'Administracja' | 350 | title: 'Administracja' |
@@ -554,10 +554,10 @@ flashes: | |||
554 | password_updated: 'Hasło zaktualizowane' | 554 | password_updated: 'Hasło zaktualizowane' |
555 | password_not_updated_demo: "In demonstration mode, you can't change password for this user." | 555 | password_not_updated_demo: "In demonstration mode, you can't change password for this user." |
556 | user_updated: 'Informacje zaktualizowane' | 556 | user_updated: 'Informacje zaktualizowane' |
557 | rss_updated: 'Informacje RSS zaktualizowane' | 557 | feed_updated: 'Informacje RSS zaktualizowane' |
558 | tagging_rules_updated: 'Reguły tagowania zaktualizowane' | 558 | tagging_rules_updated: 'Reguły tagowania zaktualizowane' |
559 | tagging_rules_deleted: 'Reguła tagowania usunięta' | 559 | tagging_rules_deleted: 'Reguła tagowania usunięta' |
560 | rss_token_updated: 'Token kanału RSS zaktualizowany' | 560 | feed_token_updated: 'Token kanału RSS zaktualizowany' |
561 | annotations_reset: Zresetuj adnotacje | 561 | annotations_reset: Zresetuj adnotacje |
562 | tags_reset: Zresetuj tagi | 562 | tags_reset: Zresetuj tagi |
563 | entries_reset: Zresetuj wpisy | 563 | entries_reset: Zresetuj wpisy |
diff --git a/src/Wallabag/CoreBundle/Resources/translations/messages.pt.yml b/src/Wallabag/CoreBundle/Resources/translations/messages.pt.yml index 4ab5f144..d4855596 100644 --- a/src/Wallabag/CoreBundle/Resources/translations/messages.pt.yml +++ b/src/Wallabag/CoreBundle/Resources/translations/messages.pt.yml | |||
@@ -53,7 +53,7 @@ config: | |||
53 | page_title: 'Config' | 53 | page_title: 'Config' |
54 | tab_menu: | 54 | tab_menu: |
55 | settings: 'Configurações' | 55 | settings: 'Configurações' |
56 | rss: 'RSS' | 56 | feed: 'RSS' |
57 | user_info: 'Informação do Usuário' | 57 | user_info: 'Informação do Usuário' |
58 | password: 'Senha' | 58 | password: 'Senha' |
59 | rules: 'Regras de tags' | 59 | rules: 'Regras de tags' |
@@ -83,19 +83,19 @@ config: | |||
83 | # help_reading_speed: "wallabag calculates a reading time for each article. You can define here, thanks to this list, if you are a fast or a slow reader. wallabag will recalculate the reading time for each article." | 83 | # help_reading_speed: "wallabag calculates a reading time for each article. You can define here, thanks to this list, if you are a fast or a slow reader. wallabag will recalculate the reading time for each article." |
84 | # help_language: "You can change the language of wallabag interface." | 84 | # help_language: "You can change the language of wallabag interface." |
85 | # help_pocket_consumer_key: "Required for Pocket import. You can create it in your Pocket account." | 85 | # help_pocket_consumer_key: "Required for Pocket import. You can create it in your Pocket account." |
86 | form_rss: | 86 | form_feed: |
87 | description: 'Feeds RSS providos pelo wallabag permitem que você leia seus artigos salvos em seu leitor de RSS favorito. Você precisa gerar um token primeiro.' | 87 | description: 'Feeds RSS providos pelo wallabag permitem que você leia seus artigos salvos em seu leitor de RSS favorito. Você precisa gerar um token primeiro.' |
88 | token_label: 'Token RSS' | 88 | token_label: 'Token RSS' |
89 | no_token: 'Nenhum Token' | 89 | no_token: 'Nenhum Token' |
90 | token_create: 'Criar seu token' | 90 | token_create: 'Criar seu token' |
91 | token_reset: 'Gerar novamente seu token' | 91 | token_reset: 'Gerar novamente seu token' |
92 | rss_links: 'Links RSS' | 92 | feed_links: 'Links RSS' |
93 | rss_link: | 93 | feed_link: |
94 | unread: 'Não lido' | 94 | unread: 'Não lido' |
95 | starred: 'Destacado' | 95 | starred: 'Destacado' |
96 | archive: 'Arquivado' | 96 | archive: 'Arquivado' |
97 | # all: 'All' | 97 | # all: 'All' |
98 | rss_limit: 'Número de itens no feed' | 98 | feed_limit: 'Número de itens no feed' |
99 | form_user: | 99 | form_user: |
100 | two_factor_description: 'Habilitar autenticação de dois passos significa que você receberá um e-mail com um código a cada nova conexão desconhecida.' | 100 | two_factor_description: 'Habilitar autenticação de dois passos significa que você receberá um e-mail com um código a cada nova conexão desconhecida.' |
101 | name_label: 'Nome' | 101 | name_label: 'Nome' |
@@ -344,7 +344,7 @@ quickstart: | |||
344 | title: 'Configurar a aplicação' | 344 | title: 'Configurar a aplicação' |
345 | description: 'Para ter uma aplicação que atende você, dê uma olhada na configuração do wallabag.' | 345 | description: 'Para ter uma aplicação que atende você, dê uma olhada na configuração do wallabag.' |
346 | language: 'Alterar idioma e design' | 346 | language: 'Alterar idioma e design' |
347 | rss: 'Habilitar feeds RSS' | 347 | feed: 'Habilitar feeds RSS' |
348 | tagging_rules: 'Escrever regras para acrescentar tags automaticamente em seus artigos' | 348 | tagging_rules: 'Escrever regras para acrescentar tags automaticamente em seus artigos' |
349 | admin: | 349 | admin: |
350 | title: 'Administração' | 350 | title: 'Administração' |
@@ -554,10 +554,10 @@ flashes: | |||
554 | password_updated: 'Senha atualizada' | 554 | password_updated: 'Senha atualizada' |
555 | password_not_updated_demo: 'Em modo de demonstração, você não pode alterar a senha deste usuário.' | 555 | password_not_updated_demo: 'Em modo de demonstração, você não pode alterar a senha deste usuário.' |
556 | # user_updated: 'Information updated' | 556 | # user_updated: 'Information updated' |
557 | rss_updated: 'Informação de RSS atualizada' | 557 | feed_updated: 'Informação de RSS atualizada' |
558 | tagging_rules_updated: 'Regras de tags atualizadas' | 558 | tagging_rules_updated: 'Regras de tags atualizadas' |
559 | tagging_rules_deleted: 'Regra de tag apagada' | 559 | tagging_rules_deleted: 'Regra de tag apagada' |
560 | rss_token_updated: 'Token RSS atualizado' | 560 | feed_token_updated: 'Token RSS atualizado' |
561 | # annotations_reset: Annotations reset | 561 | # annotations_reset: Annotations reset |
562 | # tags_reset: Tags reset | 562 | # tags_reset: Tags reset |
563 | # entries_reset: Entries reset | 563 | # entries_reset: Entries reset |
diff --git a/src/Wallabag/CoreBundle/Resources/translations/messages.ro.yml b/src/Wallabag/CoreBundle/Resources/translations/messages.ro.yml index f16504ed..cb808007 100644 --- a/src/Wallabag/CoreBundle/Resources/translations/messages.ro.yml +++ b/src/Wallabag/CoreBundle/Resources/translations/messages.ro.yml | |||
@@ -53,7 +53,7 @@ config: | |||
53 | page_title: 'Configurație' | 53 | page_title: 'Configurație' |
54 | tab_menu: | 54 | tab_menu: |
55 | settings: 'Setări' | 55 | settings: 'Setări' |
56 | rss: 'RSS' | 56 | feed: 'RSS' |
57 | user_info: 'Informații despre utilizator' | 57 | user_info: 'Informații despre utilizator' |
58 | password: 'Parolă' | 58 | password: 'Parolă' |
59 | # rules: 'Tagging rules' | 59 | # rules: 'Tagging rules' |
@@ -83,19 +83,19 @@ config: | |||
83 | # help_reading_speed: "wallabag calculates a reading time for each article. You can define here, thanks to this list, if you are a fast or a slow reader. wallabag will recalculate the reading time for each article." | 83 | # help_reading_speed: "wallabag calculates a reading time for each article. You can define here, thanks to this list, if you are a fast or a slow reader. wallabag will recalculate the reading time for each article." |
84 | # help_language: "You can change the language of wallabag interface." | 84 | # help_language: "You can change the language of wallabag interface." |
85 | # help_pocket_consumer_key: "Required for Pocket import. You can create it in your Pocket account." | 85 | # help_pocket_consumer_key: "Required for Pocket import. You can create it in your Pocket account." |
86 | form_rss: | 86 | form_feed: |
87 | description: 'Feed-urile RSS oferite de wallabag îți permit să-ți citești articolele salvate în reader-ul tău preferat RSS.' | 87 | description: 'Feed-urile RSS oferite de wallabag îți permit să-ți citești articolele salvate în reader-ul tău preferat RSS.' |
88 | token_label: 'RSS-Token' | 88 | token_label: 'RSS-Token' |
89 | no_token: 'Fără token' | 89 | no_token: 'Fără token' |
90 | token_create: 'Crează-ți token' | 90 | token_create: 'Crează-ți token' |
91 | token_reset: 'Resetează-ți token-ul' | 91 | token_reset: 'Resetează-ți token-ul' |
92 | rss_links: 'Link-uri RSS' | 92 | feed_links: 'Link-uri RSS' |
93 | rss_link: | 93 | feed_link: |
94 | unread: 'Unread' | 94 | unread: 'Unread' |
95 | starred: 'Starred' | 95 | starred: 'Starred' |
96 | archive: 'Archived' | 96 | archive: 'Archived' |
97 | # all: 'All' | 97 | # all: 'All' |
98 | rss_limit: 'Limită RSS' | 98 | feed_limit: 'Limită RSS' |
99 | form_user: | 99 | form_user: |
100 | # two_factor_description: "Enabling two factor authentication means you'll receive an email with a code on every new untrusted connexion" | 100 | # two_factor_description: "Enabling two factor authentication means you'll receive an email with a code on every new untrusted connexion" |
101 | name_label: 'Nume' | 101 | name_label: 'Nume' |
@@ -344,7 +344,7 @@ quickstart: | |||
344 | # title: 'Configure the application' | 344 | # title: 'Configure the application' |
345 | # description: 'In order to have an application which suits you, have a look into the configuration of wallabag.' | 345 | # description: 'In order to have an application which suits you, have a look into the configuration of wallabag.' |
346 | # language: 'Change language and design' | 346 | # language: 'Change language and design' |
347 | # rss: 'Enable RSS feeds' | 347 | # feed: 'Enable RSS feeds' |
348 | # tagging_rules: 'Write rules to automatically tag your articles' | 348 | # tagging_rules: 'Write rules to automatically tag your articles' |
349 | # admin: | 349 | # admin: |
350 | # title: 'Administration' | 350 | # title: 'Administration' |
@@ -554,10 +554,10 @@ flashes: | |||
554 | password_updated: 'Parolă actualizată' | 554 | password_updated: 'Parolă actualizată' |
555 | password_not_updated_demo: "In demonstration mode, you can't change password for this user." | 555 | password_not_updated_demo: "In demonstration mode, you can't change password for this user." |
556 | user_updated: 'Informație actualizată' | 556 | user_updated: 'Informație actualizată' |
557 | rss_updated: 'Informație RSS actualizată' | 557 | feed_updated: 'Informație RSS actualizată' |
558 | # tagging_rules_updated: 'Tagging rules updated' | 558 | # tagging_rules_updated: 'Tagging rules updated' |
559 | # tagging_rules_deleted: 'Tagging rule deleted' | 559 | # tagging_rules_deleted: 'Tagging rule deleted' |
560 | # rss_token_updated: 'RSS token updated' | 560 | # feed_token_updated: 'RSS token updated' |
561 | # annotations_reset: Annotations reset | 561 | # annotations_reset: Annotations reset |
562 | # tags_reset: Tags reset | 562 | # tags_reset: Tags reset |
563 | # entries_reset: Entries reset | 563 | # entries_reset: Entries reset |
diff --git a/src/Wallabag/CoreBundle/Resources/translations/messages.tr.yml b/src/Wallabag/CoreBundle/Resources/translations/messages.tr.yml index 90a140cd..7d2cf231 100644 --- a/src/Wallabag/CoreBundle/Resources/translations/messages.tr.yml +++ b/src/Wallabag/CoreBundle/Resources/translations/messages.tr.yml | |||
@@ -53,7 +53,7 @@ config: | |||
53 | page_title: 'Yapılandırma' | 53 | page_title: 'Yapılandırma' |
54 | tab_menu: | 54 | tab_menu: |
55 | settings: 'Ayarlar' | 55 | settings: 'Ayarlar' |
56 | rss: 'RSS' | 56 | feed: 'RSS' |
57 | user_info: 'Kullanıcı bilgileri' | 57 | user_info: 'Kullanıcı bilgileri' |
58 | password: 'Şifre' | 58 | password: 'Şifre' |
59 | rules: 'Etiketleme kuralları' | 59 | rules: 'Etiketleme kuralları' |
@@ -83,19 +83,19 @@ config: | |||
83 | # help_reading_speed: "wallabag calculates a reading time for each article. You can define here, thanks to this list, if you are a fast or a slow reader. wallabag will recalculate the reading time for each article." | 83 | # help_reading_speed: "wallabag calculates a reading time for each article. You can define here, thanks to this list, if you are a fast or a slow reader. wallabag will recalculate the reading time for each article." |
84 | # help_language: "You can change the language of wallabag interface." | 84 | # help_language: "You can change the language of wallabag interface." |
85 | # help_pocket_consumer_key: "Required for Pocket import. You can create it in your Pocket account." | 85 | # help_pocket_consumer_key: "Required for Pocket import. You can create it in your Pocket account." |
86 | form_rss: | 86 | form_feed: |
87 | description: 'wallabag RSS akışı kaydetmiş olduğunuz makalelerini favori RSS okuyucunuzda görüntülemenizi sağlar. Bunu yapabilmek için öncelikle belirteç (token) oluşturmalısınız.' | 87 | description: 'wallabag RSS akışı kaydetmiş olduğunuz makalelerini favori RSS okuyucunuzda görüntülemenizi sağlar. Bunu yapabilmek için öncelikle belirteç (token) oluşturmalısınız.' |
88 | token_label: 'RSS belirteci (token)' | 88 | token_label: 'RSS belirteci (token)' |
89 | no_token: 'Belirteç (token) yok' | 89 | no_token: 'Belirteç (token) yok' |
90 | token_create: 'Yeni belirteç (token) oluştur' | 90 | token_create: 'Yeni belirteç (token) oluştur' |
91 | token_reset: 'Belirteci (token) sıfırla' | 91 | token_reset: 'Belirteci (token) sıfırla' |
92 | rss_links: 'RSS akış bağlantıları' | 92 | feed_links: 'RSS akış bağlantıları' |
93 | rss_link: | 93 | feed_link: |
94 | unread: 'Okunmayan' | 94 | unread: 'Okunmayan' |
95 | starred: 'Favoriler' | 95 | starred: 'Favoriler' |
96 | archive: 'Arşiv' | 96 | archive: 'Arşiv' |
97 | # all: 'All' | 97 | # all: 'All' |
98 | rss_limit: 'RSS içeriğinden talep edilecek makale limiti' | 98 | feed_limit: 'RSS içeriğinden talep edilecek makale limiti' |
99 | form_user: | 99 | form_user: |
100 | two_factor_description: "İki adımlı doğrulamayı aktifleştirdiğinizde, her yeni güvenilmeyen bağlantılarda size e-posta ile bir kod alacaksınız." | 100 | two_factor_description: "İki adımlı doğrulamayı aktifleştirdiğinizde, her yeni güvenilmeyen bağlantılarda size e-posta ile bir kod alacaksınız." |
101 | name_label: 'İsim' | 101 | name_label: 'İsim' |
@@ -342,7 +342,7 @@ quickstart: | |||
342 | title: 'Uygulamayı Yapılandırma' | 342 | title: 'Uygulamayı Yapılandırma' |
343 | # description: 'In order to have an application which suits you, have a look into the configuration of wallabag.' | 343 | # description: 'In order to have an application which suits you, have a look into the configuration of wallabag.' |
344 | language: 'Dili ve tasarımı değiştirme' | 344 | language: 'Dili ve tasarımı değiştirme' |
345 | rss: 'RSS akışını aktifleştirme' | 345 | feed: 'RSS akışını aktifleştirme' |
346 | # tagging_rules: 'Write rules to automatically tag your articles' | 346 | # tagging_rules: 'Write rules to automatically tag your articles' |
347 | admin: | 347 | admin: |
348 | # title: 'Administration' | 348 | # title: 'Administration' |
@@ -532,10 +532,10 @@ flashes: | |||
532 | password_updated: 'Şifre güncellendi' | 532 | password_updated: 'Şifre güncellendi' |
533 | password_not_updated_demo: "In demonstration mode, you can't change password for this user." | 533 | password_not_updated_demo: "In demonstration mode, you can't change password for this user." |
534 | user_updated: 'Bilgiler güncellendi' | 534 | user_updated: 'Bilgiler güncellendi' |
535 | rss_updated: 'RSS bilgiler güncellendi' | 535 | feed_updated: 'RSS bilgiler güncellendi' |
536 | tagging_rules_updated: 'Tagging rules updated' | 536 | tagging_rules_updated: 'Tagging rules updated' |
537 | tagging_rules_deleted: 'Tagging rule deleted' | 537 | tagging_rules_deleted: 'Tagging rule deleted' |
538 | rss_token_updated: 'RSS token updated' | 538 | feed_token_updated: 'RSS token updated' |
539 | # annotations_reset: Annotations reset | 539 | # annotations_reset: Annotations reset |
540 | # tags_reset: Tags reset | 540 | # tags_reset: Tags reset |
541 | # entries_reset: Entries reset | 541 | # entries_reset: Entries reset |
diff --git a/src/Wallabag/CoreBundle/Resources/translations/validators.da.yml b/src/Wallabag/CoreBundle/Resources/translations/validators.da.yml index c6a84209..c0438978 100644 --- a/src/Wallabag/CoreBundle/Resources/translations/validators.da.yml +++ b/src/Wallabag/CoreBundle/Resources/translations/validators.da.yml | |||
@@ -3,5 +3,5 @@ validator: | |||
3 | password_too_short: 'Adgangskoden skal være mindst 8 tegn' | 3 | password_too_short: 'Adgangskoden skal være mindst 8 tegn' |
4 | # password_wrong_value: 'Wrong value for your current password' | 4 | # password_wrong_value: 'Wrong value for your current password' |
5 | # item_per_page_too_high: 'This will certainly kill the app' | 5 | # item_per_page_too_high: 'This will certainly kill the app' |
6 | # rss_limit_too_high: 'This will certainly kill the app' | 6 | # feed_limit_too_high: 'This will certainly kill the app' |
7 | # quote_length_too_high: 'The quote is too long. It should have {{ limit }} characters or less.' | 7 | # quote_length_too_high: 'The quote is too long. It should have {{ limit }} characters or less.' |
diff --git a/src/Wallabag/CoreBundle/Resources/translations/validators.de.yml b/src/Wallabag/CoreBundle/Resources/translations/validators.de.yml index c74c00ca..608f16c9 100644 --- a/src/Wallabag/CoreBundle/Resources/translations/validators.de.yml +++ b/src/Wallabag/CoreBundle/Resources/translations/validators.de.yml | |||
@@ -3,5 +3,5 @@ validator: | |||
3 | password_too_short: 'Kennwort-Mindestlänge von acht Zeichen nicht erfüllt' | 3 | password_too_short: 'Kennwort-Mindestlänge von acht Zeichen nicht erfüllt' |
4 | password_wrong_value: 'Falscher Wert für dein aktuelles Kennwort' | 4 | password_wrong_value: 'Falscher Wert für dein aktuelles Kennwort' |
5 | item_per_page_too_high: 'Dies wird die Anwendung möglicherweise beenden' | 5 | item_per_page_too_high: 'Dies wird die Anwendung möglicherweise beenden' |
6 | rss_limit_too_high: 'Dies wird die Anwendung möglicherweise beenden' | 6 | feed_limit_too_high: 'Dies wird die Anwendung möglicherweise beenden' |
7 | # quote_length_too_high: 'The quote is too long. It should have {{ limit }} characters or less.' | 7 | # quote_length_too_high: 'The quote is too long. It should have {{ limit }} characters or less.' |
diff --git a/src/Wallabag/CoreBundle/Resources/translations/validators.en.yml b/src/Wallabag/CoreBundle/Resources/translations/validators.en.yml index 8cc117fe..89d4c68a 100644 --- a/src/Wallabag/CoreBundle/Resources/translations/validators.en.yml +++ b/src/Wallabag/CoreBundle/Resources/translations/validators.en.yml | |||
@@ -3,5 +3,5 @@ validator: | |||
3 | password_too_short: 'Password should by at least 8 chars long' | 3 | password_too_short: 'Password should by at least 8 chars long' |
4 | password_wrong_value: 'Wrong value for your current password' | 4 | password_wrong_value: 'Wrong value for your current password' |
5 | item_per_page_too_high: 'This will certainly kill the app' | 5 | item_per_page_too_high: 'This will certainly kill the app' |
6 | rss_limit_too_high: 'This will certainly kill the app' | 6 | feed_limit_too_high: 'This will certainly kill the app' |
7 | quote_length_too_high: 'The quote is too long. It should have {{ limit }} characters or less.' | 7 | quote_length_too_high: 'The quote is too long. It should have {{ limit }} characters or less.' |
diff --git a/src/Wallabag/CoreBundle/Resources/translations/validators.es.yml b/src/Wallabag/CoreBundle/Resources/translations/validators.es.yml index 97a8edfa..ba34ee76 100644 --- a/src/Wallabag/CoreBundle/Resources/translations/validators.es.yml +++ b/src/Wallabag/CoreBundle/Resources/translations/validators.es.yml | |||
@@ -3,5 +3,5 @@ validator: | |||
3 | password_too_short: 'La contraseña debe tener al menos 8 carácteres' | 3 | password_too_short: 'La contraseña debe tener al menos 8 carácteres' |
4 | password_wrong_value: 'Entrada equivocada para su contraseña actual' | 4 | password_wrong_value: 'Entrada equivocada para su contraseña actual' |
5 | item_per_page_too_high: 'Esto matará la aplicación' | 5 | item_per_page_too_high: 'Esto matará la aplicación' |
6 | rss_limit_too_high: 'Esto matará la aplicación' | 6 | feed_limit_too_high: 'Esto matará la aplicación' |
7 | # quote_length_too_high: 'The quote is too long. It should have {{ limit }} characters or less.' | 7 | # quote_length_too_high: 'The quote is too long. It should have {{ limit }} characters or less.' |
diff --git a/src/Wallabag/CoreBundle/Resources/translations/validators.fa.yml b/src/Wallabag/CoreBundle/Resources/translations/validators.fa.yml index ef677525..9b1a4af2 100644 --- a/src/Wallabag/CoreBundle/Resources/translations/validators.fa.yml +++ b/src/Wallabag/CoreBundle/Resources/translations/validators.fa.yml | |||
@@ -3,5 +3,5 @@ validator: | |||
3 | password_too_short: 'رمز شما باید ۸ حرف یا بیشتر باشد' | 3 | password_too_short: 'رمز شما باید ۸ حرف یا بیشتر باشد' |
4 | password_wrong_value: 'رمز فعلی را اشتباه وارد کردهاید' | 4 | password_wrong_value: 'رمز فعلی را اشتباه وارد کردهاید' |
5 | item_per_page_too_high: 'با این تعداد برنامه به فنا میرود' | 5 | item_per_page_too_high: 'با این تعداد برنامه به فنا میرود' |
6 | rss_limit_too_high: 'با این تعداد برنامه به فنا میرود' | 6 | feed_limit_too_high: 'با این تعداد برنامه به فنا میرود' |
7 | # quote_length_too_high: 'The quote is too long. It should have {{ limit }} characters or less.' | 7 | # quote_length_too_high: 'The quote is too long. It should have {{ limit }} characters or less.' |
diff --git a/src/Wallabag/CoreBundle/Resources/translations/validators.fr.yml b/src/Wallabag/CoreBundle/Resources/translations/validators.fr.yml index f31b4ed2..92f69aa0 100644 --- a/src/Wallabag/CoreBundle/Resources/translations/validators.fr.yml +++ b/src/Wallabag/CoreBundle/Resources/translations/validators.fr.yml | |||
@@ -3,5 +3,5 @@ validator: | |||
3 | password_too_short: "Le mot de passe doit contenir au moins 8 caractères" | 3 | password_too_short: "Le mot de passe doit contenir au moins 8 caractères" |
4 | password_wrong_value: "Votre mot de passe actuel est faux" | 4 | password_wrong_value: "Votre mot de passe actuel est faux" |
5 | item_per_page_too_high: "Ça ne va pas plaire à l’application" | 5 | item_per_page_too_high: "Ça ne va pas plaire à l’application" |
6 | rss_limit_too_high: "Ça ne va pas plaire à l’application" | 6 | feed_limit_too_high: "Ça ne va pas plaire à l’application" |
7 | quote_length_too_high: "La citation est trop longue. Elle doit avoir au maximum {{ limit }} caractères." | 7 | quote_length_too_high: "La citation est trop longue. Elle doit avoir au maximum {{ limit }} caractères." |
diff --git a/src/Wallabag/CoreBundle/Resources/translations/validators.it.yml b/src/Wallabag/CoreBundle/Resources/translations/validators.it.yml index d949cc3b..b20d6f51 100644 --- a/src/Wallabag/CoreBundle/Resources/translations/validators.it.yml +++ b/src/Wallabag/CoreBundle/Resources/translations/validators.it.yml | |||
@@ -3,5 +3,5 @@ validator: | |||
3 | password_too_short: 'La password deve essere lunga almeno 8 caratteri' | 3 | password_too_short: 'La password deve essere lunga almeno 8 caratteri' |
4 | password_wrong_value: 'Valore inserito per la password corrente errato' | 4 | password_wrong_value: 'Valore inserito per la password corrente errato' |
5 | item_per_page_too_high: 'Questo valore è troppo alto' | 5 | item_per_page_too_high: 'Questo valore è troppo alto' |
6 | rss_limit_too_high: 'Questo valore è troppo alto' | 6 | feed_limit_too_high: 'Questo valore è troppo alto' |
7 | # quote_length_too_high: 'The quote is too long. It should have {{ limit }} characters or less.' | 7 | # quote_length_too_high: 'The quote is too long. It should have {{ limit }} characters or less.' |
diff --git a/src/Wallabag/CoreBundle/Resources/translations/validators.oc.yml b/src/Wallabag/CoreBundle/Resources/translations/validators.oc.yml index fb4aa592..3856ca69 100644 --- a/src/Wallabag/CoreBundle/Resources/translations/validators.oc.yml +++ b/src/Wallabag/CoreBundle/Resources/translations/validators.oc.yml | |||
@@ -3,5 +3,5 @@ validator: | |||
3 | password_too_short: 'Lo senhal deu aver almens 8 caractèrs' | 3 | password_too_short: 'Lo senhal deu aver almens 8 caractèrs' |
4 | password_wrong_value: 'Vòstre senhal actual es pas bon' | 4 | password_wrong_value: 'Vòstre senhal actual es pas bon' |
5 | item_per_page_too_high: "Aquò li agradarà pas a l'aplicacion" | 5 | item_per_page_too_high: "Aquò li agradarà pas a l'aplicacion" |
6 | rss_limit_too_high: "Aquò li agradarà pas a l'aplicacion" | 6 | feed_limit_too_high: "Aquò li agradarà pas a l'aplicacion" |
7 | # quote_length_too_high: 'The quote is too long. It should have {{ limit }} characters or less.' | 7 | # quote_length_too_high: 'The quote is too long. It should have {{ limit }} characters or less.' |
diff --git a/src/Wallabag/CoreBundle/Resources/translations/validators.pl.yml b/src/Wallabag/CoreBundle/Resources/translations/validators.pl.yml index e4165c14..94757cc5 100644 --- a/src/Wallabag/CoreBundle/Resources/translations/validators.pl.yml +++ b/src/Wallabag/CoreBundle/Resources/translations/validators.pl.yml | |||
@@ -3,5 +3,5 @@ validator: | |||
3 | password_too_short: 'Hasło powinno mieć minimum 8 znaków długości' | 3 | password_too_short: 'Hasło powinno mieć minimum 8 znaków długości' |
4 | password_wrong_value: 'Twoje obecne hasło jest błędne' | 4 | password_wrong_value: 'Twoje obecne hasło jest błędne' |
5 | item_per_page_too_high: 'To może spowodować problemy z aplikacją' | 5 | item_per_page_too_high: 'To może spowodować problemy z aplikacją' |
6 | rss_limit_too_high: 'To może spowodować problemy z aplikacją' | 6 | feed_limit_too_high: 'To może spowodować problemy z aplikacją' |
7 | quote_length_too_high: 'Cytat jest zbyt długi. powinien mieć {{ limit }} znaków lub mniej.' | 7 | quote_length_too_high: 'Cytat jest zbyt długi. powinien mieć {{ limit }} znaków lub mniej.' |
diff --git a/src/Wallabag/CoreBundle/Resources/translations/validators.pt.yml b/src/Wallabag/CoreBundle/Resources/translations/validators.pt.yml index a8c1f9de..df2f3f35 100644 --- a/src/Wallabag/CoreBundle/Resources/translations/validators.pt.yml +++ b/src/Wallabag/CoreBundle/Resources/translations/validators.pt.yml | |||
@@ -3,5 +3,5 @@ validator: | |||
3 | password_too_short: 'A senha deve ter pelo menos 8 caracteres' | 3 | password_too_short: 'A senha deve ter pelo menos 8 caracteres' |
4 | password_wrong_value: 'A senha atual informada está errada' | 4 | password_wrong_value: 'A senha atual informada está errada' |
5 | item_per_page_too_high: 'Certamente isso pode matar a aplicação' | 5 | item_per_page_too_high: 'Certamente isso pode matar a aplicação' |
6 | rss_limit_too_high: 'Certamente isso pode matar a aplicação' | 6 | feed_limit_too_high: 'Certamente isso pode matar a aplicação' |
7 | # quote_length_too_high: 'The quote is too long. It should have {{ limit }} characters or less.' | 7 | # quote_length_too_high: 'The quote is too long. It should have {{ limit }} characters or less.' |
diff --git a/src/Wallabag/CoreBundle/Resources/translations/validators.ro.yml b/src/Wallabag/CoreBundle/Resources/translations/validators.ro.yml index 6840cf11..e5c8a72f 100644 --- a/src/Wallabag/CoreBundle/Resources/translations/validators.ro.yml +++ b/src/Wallabag/CoreBundle/Resources/translations/validators.ro.yml | |||
@@ -3,5 +3,5 @@ validator: | |||
3 | password_too_short: 'Parola ar trebui să conțină cel puțin 8 caractere' | 3 | password_too_short: 'Parola ar trebui să conțină cel puțin 8 caractere' |
4 | # password_wrong_value: 'Wrong value for your current password' | 4 | # password_wrong_value: 'Wrong value for your current password' |
5 | # item_per_page_too_high: 'This will certainly kill the app' | 5 | # item_per_page_too_high: 'This will certainly kill the app' |
6 | # rss_limit_too_high: 'This will certainly kill the app' | 6 | # feed_limit_too_high: 'This will certainly kill the app' |
7 | # quote_length_too_high: 'The quote is too long. It should have {{ limit }} characters or less.' | 7 | # quote_length_too_high: 'The quote is too long. It should have {{ limit }} characters or less.' |
diff --git a/src/Wallabag/CoreBundle/Resources/translations/validators.tr.yml b/src/Wallabag/CoreBundle/Resources/translations/validators.tr.yml index e1e7317f..881ffd3b 100644 --- a/src/Wallabag/CoreBundle/Resources/translations/validators.tr.yml +++ b/src/Wallabag/CoreBundle/Resources/translations/validators.tr.yml | |||
@@ -3,5 +3,5 @@ validator: | |||
3 | # password_too_short: 'Password should by at least 8 chars long' | 3 | # password_too_short: 'Password should by at least 8 chars long' |
4 | # password_wrong_value: 'Wrong value for your current password' | 4 | # password_wrong_value: 'Wrong value for your current password' |
5 | # item_per_page_too_high: 'This will certainly kill the app' | 5 | # item_per_page_too_high: 'This will certainly kill the app' |
6 | # rss_limit_too_high: 'This will certainly kill the app' | 6 | # feed_limit_too_high: 'This will certainly kill the app' |
7 | # quote_length_too_high: 'The quote is too long. It should have {{ limit }} characters or less.' | 7 | # quote_length_too_high: 'The quote is too long. It should have {{ limit }} characters or less.' |
diff --git a/src/Wallabag/CoreBundle/Resources/views/themes/baggy/Config/index.html.twig b/src/Wallabag/CoreBundle/Resources/views/themes/baggy/Config/index.html.twig index bcc57dac..8fc42b0d 100644 --- a/src/Wallabag/CoreBundle/Resources/views/themes/baggy/Config/index.html.twig +++ b/src/Wallabag/CoreBundle/Resources/views/themes/baggy/Config/index.html.twig | |||
@@ -95,43 +95,43 @@ | |||
95 | {{ form_rest(form.config) }} | 95 | {{ form_rest(form.config) }} |
96 | </form> | 96 | </form> |
97 | 97 | ||
98 | <h2>{{ 'config.tab_menu.rss'|trans }}</h2> | 98 | <h2>{{ 'config.tab_menu.feed'|trans }}</h2> |
99 | 99 | ||
100 | {{ form_start(form.rss) }} | 100 | {{ form_start(form.feed) }} |
101 | {{ form_errors(form.rss) }} | 101 | {{ form_errors(form.feed) }} |
102 | 102 | ||
103 | <div class="row"> | 103 | <div class="row"> |
104 | {{ 'config.form_rss.description'|trans }} | 104 | {{ 'config.form_feed.description'|trans }} |
105 | </div> | 105 | </div> |
106 | 106 | ||
107 | <fieldset class="w500p inline"> | 107 | <fieldset class="w500p inline"> |
108 | <div class="row"> | 108 | <div class="row"> |
109 | <label>{{ 'config.form_rss.token_label'|trans }}</label> | 109 | <label>{{ 'config.form_feed.token_label'|trans }}</label> |
110 | {% if rss.token %} | 110 | {% if feed.token %} |
111 | {{ rss.token }} | 111 | {{ feed.token }} |
112 | {% else %} | 112 | {% else %} |
113 | <em>{{ 'config.form_rss.no_token'|trans }}</em> | 113 | <em>{{ 'config.form_feed.no_token'|trans }}</em> |
114 | {% endif %} | 114 | {% endif %} |
115 | – | 115 | – |
116 | <a href="{{ path('generate_token') }}"> | 116 | <a href="{{ path('generate_token') }}"> |
117 | {% if rss.token %} | 117 | {% if feed.token %} |
118 | {{ 'config.form_rss.token_reset'|trans }} | 118 | {{ 'config.form_feed.token_reset'|trans }} |
119 | {% else %} | 119 | {% else %} |
120 | {{ 'config.form_rss.token_create'|trans }} | 120 | {{ 'config.form_feed.token_create'|trans }} |
121 | {% endif %} | 121 | {% endif %} |
122 | </a> | 122 | </a> |
123 | </div> | 123 | </div> |
124 | </fieldset> | 124 | </fieldset> |
125 | 125 | ||
126 | {% if rss.token %} | 126 | {% if feed.token %} |
127 | <fieldset class="w500p inline"> | 127 | <fieldset class="w500p inline"> |
128 | <div class="row"> | 128 | <div class="row"> |
129 | <label>{{ 'config.form_rss.rss_links'|trans }}</label> | 129 | <label>{{ 'config.form_feed.feed_links'|trans }}</label> |
130 | <ul> | 130 | <ul> |
131 | <li><a href="{{ path('unread_rss', {'username': rss.username, 'token': rss.token}) }}">{{ 'config.form_rss.rss_link.unread'|trans }}</a></li> | 131 | <li><a href="{{ path('unread_feed', {'username': feed.username, 'token': feed.token}) }}">{{ 'config.form_feed.feed_link.unread'|trans }}</a></li> |
132 | <li><a href="{{ path('starred_rss', {'username': rss.username, 'token': rss.token}) }}">{{ 'config.form_rss.rss_link.starred'|trans }}</a></li> | 132 | <li><a href="{{ path('starred_feed', {'username': feed.username, 'token': feed.token}) }}">{{ 'config.form_feed.feed_link.starred'|trans }}</a></li> |
133 | <li><a href="{{ path('archive_rss', {'username': rss.username, 'token': rss.token}) }}">{{ 'config.form_rss.rss_link.archive'|trans }}</a></li> | 133 | <li><a href="{{ path('archive_feed', {'username': feed.username, 'token': feed.token}) }}">{{ 'config.form_feed.feed_link.archive'|trans }}</a></li> |
134 | <li><a href="{{ path('all_rss', {'username': rss.username, 'token': rss.token}) }}">{{ 'config.form_rss.rss_link.all'|trans }}</a></li> | 134 | <li><a href="{{ path('all_feed', {'username': feed.username, 'token': feed.token}) }}">{{ 'config.form_feed.feed_link.all'|trans }}</a></li> |
135 | </ul> | 135 | </ul> |
136 | </div> | 136 | </div> |
137 | </fieldset> | 137 | </fieldset> |
@@ -139,13 +139,13 @@ | |||
139 | 139 | ||
140 | <fieldset class="w500p inline"> | 140 | <fieldset class="w500p inline"> |
141 | <div class="row"> | 141 | <div class="row"> |
142 | {{ form_label(form.rss.rss_limit) }} | 142 | {{ form_label(form.feed.feed_limit) }} |
143 | {{ form_errors(form.rss.rss_limit) }} | 143 | {{ form_errors(form.feed.feed_limit) }} |
144 | {{ form_widget(form.rss.rss_limit) }} | 144 | {{ form_widget(form.feed.feed_limit) }} |
145 | </div> | 145 | </div> |
146 | </fieldset> | 146 | </fieldset> |
147 | 147 | ||
148 | {{ form_rest(form.rss) }} | 148 | {{ form_rest(form.feed) }} |
149 | </form> | 149 | </form> |
150 | 150 | ||
151 | <h2>{{ 'config.tab_menu.user_info'|trans }}</h2> | 151 | <h2>{{ 'config.tab_menu.user_info'|trans }}</h2> |
diff --git a/src/Wallabag/CoreBundle/Resources/views/themes/baggy/Entry/entries.html.twig b/src/Wallabag/CoreBundle/Resources/views/themes/baggy/Entry/entries.html.twig index 6424df8d..61eeb021 100644 --- a/src/Wallabag/CoreBundle/Resources/views/themes/baggy/Entry/entries.html.twig +++ b/src/Wallabag/CoreBundle/Resources/views/themes/baggy/Entry/entries.html.twig | |||
@@ -2,8 +2,8 @@ | |||
2 | 2 | ||
3 | {% block head %} | 3 | {% block head %} |
4 | {{ parent() }} | 4 | {{ parent() }} |
5 | {% if tag is defined and app.user.config.rssToken %} | 5 | {% if tag is defined and app.user.config.feedToken %} |
6 | <link rel="alternate" type="application/rss+xml" href="{{ path('tag_rss', {'username': app.user.username, 'token': app.user.config.rssToken, 'slug': tag.slug}) }}" /> | 6 | <link rel="alternate" type="application/atom+xml" href="{{ path('tag_feed', {'username': app.user.username, 'token': app.user.config.feedToken, 'slug': tag.slug}) }}" /> |
7 | {% endif %} | 7 | {% endif %} |
8 | {% endblock %} | 8 | {% endblock %} |
9 | 9 | ||
@@ -25,8 +25,8 @@ | |||
25 | <div class="nb-results">{{ 'entry.list.number_on_the_page'|transchoice(entries.count) }}</div> | 25 | <div class="nb-results">{{ 'entry.list.number_on_the_page'|transchoice(entries.count) }}</div> |
26 | <div class="pagination"> | 26 | <div class="pagination"> |
27 | <a href="{{ path('switch_view_mode') }}"><i class="listMode-btn material-icons md-24">{% if listMode == 0 %}list{% else %}view_module{% endif %}</i></a> | 27 | <a href="{{ path('switch_view_mode') }}"><i class="listMode-btn material-icons md-24">{% if listMode == 0 %}list{% else %}view_module{% endif %}</i></a> |
28 | {% if app.user.config.rssToken %} | 28 | {% if app.user.config.feedToken %} |
29 | {% include "@WallabagCore/themes/common/Entry/_rss_link.html.twig" %} | 29 | {% include "@WallabagCore/themes/common/Entry/_feed_link.html.twig" %} |
30 | {% endif %} | 30 | {% endif %} |
31 | <i class="btn-clickable download-btn material-icons md-24 js-export-action">file_download</i> | 31 | <i class="btn-clickable download-btn material-icons md-24 js-export-action">file_download</i> |
32 | <i class="btn-clickable filter-btn material-icons md-24 js-filters-action">filter_list</i> | 32 | <i class="btn-clickable filter-btn material-icons md-24 js-filters-action">filter_list</i> |
diff --git a/src/Wallabag/CoreBundle/Resources/views/themes/baggy/Tag/tags.html.twig b/src/Wallabag/CoreBundle/Resources/views/themes/baggy/Tag/tags.html.twig index 070d5629..dd2915d3 100644 --- a/src/Wallabag/CoreBundle/Resources/views/themes/baggy/Tag/tags.html.twig +++ b/src/Wallabag/CoreBundle/Resources/views/themes/baggy/Tag/tags.html.twig | |||
@@ -11,7 +11,7 @@ | |||
11 | {% for tag in tags %} | 11 | {% for tag in tags %} |
12 | <li id="tag-{{ tag.id|e }}"> | 12 | <li id="tag-{{ tag.id|e }}"> |
13 | <a href="{{ path('tag_entries', {'slug': tag.slug}) }}">{{tag.label}} ({{ tag.nbEntries }})</a> | 13 | <a href="{{ path('tag_entries', {'slug': tag.slug}) }}">{{tag.label}} ({{ tag.nbEntries }})</a> |
14 | <a rel="alternate" type="application/rss+xml" href="{{ path('tag_rss', {'username': app.user.username, 'token': app.user.config.rssToken, 'slug': tag.slug}) }}" class="right"> | 14 | <a rel="alternate" type="application/atom+xml" href="{{ path('tag_feed', {'username': app.user.username, 'token': app.user.config.feedToken, 'slug': tag.slug}) }}" class="right"> |
15 | <i class="material-icons md-24">rss_feed</i> | 15 | <i class="material-icons md-24">rss_feed</i> |
16 | </a> | 16 | </a> |
17 | </li> | 17 | </li> |
diff --git a/src/Wallabag/CoreBundle/Resources/views/themes/common/Entry/_feed_link.html.twig b/src/Wallabag/CoreBundle/Resources/views/themes/common/Entry/_feed_link.html.twig new file mode 100644 index 00000000..bbe9c89d --- /dev/null +++ b/src/Wallabag/CoreBundle/Resources/views/themes/common/Entry/_feed_link.html.twig | |||
@@ -0,0 +1,6 @@ | |||
1 | {% if tag is defined %} | ||
2 | <a rel="alternate" type="application/atom+xml" href="{{ path('tag_feed', {'username': app.user.username, 'token': app.user.config.feedToken, 'slug': tag.slug}) }}" class="right"><i class="material-icons md-24">rss_feed</i></a> | ||
3 | {% elseif currentRoute in ['unread', 'starred', 'archive', 'all'] %} | ||
4 | <a rel="alternate" type="application/atom+xml" href="{{ path(currentRoute ~ '_rss', {'username': app.user.username, 'token': app.user.config.feedToken}) }}" class="right"><i class="material-icons">rss_feed</i></a> | ||
5 | {% endif %} | ||
6 | |||
diff --git a/src/Wallabag/CoreBundle/Resources/views/themes/common/Entry/_rss_link.html.twig b/src/Wallabag/CoreBundle/Resources/views/themes/common/Entry/_rss_link.html.twig deleted file mode 100644 index 2bf9b2bd..00000000 --- a/src/Wallabag/CoreBundle/Resources/views/themes/common/Entry/_rss_link.html.twig +++ /dev/null | |||
@@ -1,6 +0,0 @@ | |||
1 | {% if tag is defined %} | ||
2 | <a rel="alternate" type="application/rss+xml" href="{{ path('tag_rss', {'username': app.user.username, 'token': app.user.config.rssToken, 'slug': tag.slug}) }}" class="right"><i class="material-icons md-24">rss_feed</i></a> | ||
3 | {% elseif currentRoute in ['unread', 'starred', 'archive', 'all'] %} | ||
4 | <a rel="alternate" type="application/rss+xml" href="{{ path(currentRoute ~ '_rss', {'username': app.user.username, 'token': app.user.config.rssToken}) }}" class="right"><i class="material-icons">rss_feed</i></a> | ||
5 | {% endif %} | ||
6 | |||
diff --git a/src/Wallabag/CoreBundle/Resources/views/themes/common/Entry/entries.xml.twig b/src/Wallabag/CoreBundle/Resources/views/themes/common/Entry/entries.xml.twig index 0a0131cd..f5b84355 100644 --- a/src/Wallabag/CoreBundle/Resources/views/themes/common/Entry/entries.xml.twig +++ b/src/Wallabag/CoreBundle/Resources/views/themes/common/Entry/entries.xml.twig | |||
@@ -1,12 +1,19 @@ | |||
1 | <?xml version="1.0" encoding="utf-8"?> | 1 | <?xml version="1.0" encoding="utf-8"?> |
2 | <feed xmlns="http://www.w3.org/2005/Atom"> | 2 | <feed xmlns="http://www.w3.org/2005/Atom"> |
3 | <title>wallabag — {{type}} feed</title> | 3 | {% if type != 'tag' %} |
4 | <subtitle type="html">RSS feed for {{ type }} entries</subtitle> | 4 | <title>wallabag — {{type}} feed</title> |
5 | <subtitle type="html">Atom feed for {{ type }} entries</subtitle> | ||
6 | <id>wallabag:{{ domainName | removeScheme | removeWww }}:{{ user }}:{{ type }}</id> | ||
7 | <link rel="alternate" type="text/html" href="{{ url(type) }}"/> | ||
8 | {% else %} | ||
9 | <id>wallabag:{{ domainName | removeScheme | removeWww }}:{{ user }}:{{ type }}:{{ tag }}</id> | ||
10 | <link rel="alternate" type="text/html" href="{{ url('tag_entries', {'slug': tag}) }}"/> | ||
11 | <title>wallabag — {{type}} {{ tag }} feed</title> | ||
12 | <subtitle type="html">Atom feed for entries tagged with {{ tag }}</subtitle> | ||
13 | {% endif %} | ||
5 | {% if entries | length > 0 %} | 14 | {% if entries | length > 0 %} |
6 | <updated>{{ (entries | first).createdAt | date('c') }}</updated> {# Indicates the last time the feed was modified in a significant way. #} | 15 | <updated>{{ (entries | first).createdAt | date('c') }}</updated> {# Indicates the last time the feed was modified in a significant way. #} |
7 | {% endif %} | 16 | {% endif %} |
8 | <id>wallabag:{{ domainName | removeScheme | removeWww }}:{{ user }}:{{ type }}</id> | ||
9 | <link rel="alternate" type="text/html" href="{{ url(type) }}"/> | ||
10 | <link rel="self" type="application/atom+xml" href="{{ app.request.uri }}"/> | 17 | <link rel="self" type="application/atom+xml" href="{{ app.request.uri }}"/> |
11 | {% if entries.hasPreviousPage %} | 18 | {% if entries.hasPreviousPage %} |
12 | <link rel="previous" href="{{ url }}/{{ entries.previousPage }}"/> | 19 | <link rel="previous" href="{{ url }}/{{ entries.previousPage }}"/> |
diff --git a/src/Wallabag/CoreBundle/Resources/views/themes/common/Static/quickstart.html.twig b/src/Wallabag/CoreBundle/Resources/views/themes/common/Static/quickstart.html.twig index 4580813c..521b3eea 100644 --- a/src/Wallabag/CoreBundle/Resources/views/themes/common/Static/quickstart.html.twig +++ b/src/Wallabag/CoreBundle/Resources/views/themes/common/Static/quickstart.html.twig | |||
@@ -21,7 +21,7 @@ | |||
21 | <div class="card-action"> | 21 | <div class="card-action"> |
22 | <ul> | 22 | <ul> |
23 | <li><a href="{{ path('config') }}">{{ 'quickstart.configure.language'|trans }}</a></li> | 23 | <li><a href="{{ path('config') }}">{{ 'quickstart.configure.language'|trans }}</a></li> |
24 | <li><a href="{{ path('config') }}#set2">{{ 'quickstart.configure.rss'|trans }}</a></li> | 24 | <li><a href="{{ path('config') }}#set2">{{ 'quickstart.configure.feed'|trans }}</a></li> |
25 | <li><a href="{{ path('config') }}#set5">{{ 'quickstart.more'|trans }}</a></li> | 25 | <li><a href="{{ path('config') }}#set5">{{ 'quickstart.more'|trans }}</a></li> |
26 | </ul> | 26 | </ul> |
27 | </div> | 27 | </div> |
diff --git a/src/Wallabag/CoreBundle/Resources/views/themes/material/Config/index.html.twig b/src/Wallabag/CoreBundle/Resources/views/themes/material/Config/index.html.twig index a8143315..7b9b4f58 100644 --- a/src/Wallabag/CoreBundle/Resources/views/themes/material/Config/index.html.twig +++ b/src/Wallabag/CoreBundle/Resources/views/themes/material/Config/index.html.twig | |||
@@ -12,7 +12,7 @@ | |||
12 | <div class="div_tabs col s12"> | 12 | <div class="div_tabs col s12"> |
13 | <ul class="tabs"> | 13 | <ul class="tabs"> |
14 | <li class="tab col s12 m6 l3"><a class="active" href="#set1">{{ 'config.tab_menu.settings'|trans }}</a></li> | 14 | <li class="tab col s12 m6 l3"><a class="active" href="#set1">{{ 'config.tab_menu.settings'|trans }}</a></li> |
15 | <li class="tab col s12 m6 l3"><a href="#set2">{{ 'config.tab_menu.rss'|trans }}</a></li> | 15 | <li class="tab col s12 m6 l3"><a href="#set2">{{ 'config.tab_menu.feed'|trans }}</a></li> |
16 | <li class="tab col s12 m6 l3"><a href="#set3">{{ 'config.tab_menu.user_info'|trans }}</a></li> | 16 | <li class="tab col s12 m6 l3"><a href="#set3">{{ 'config.tab_menu.user_info'|trans }}</a></li> |
17 | <li class="tab col s12 m6 l3"><a href="#set4">{{ 'config.tab_menu.password'|trans }}</a></li> | 17 | <li class="tab col s12 m6 l3"><a href="#set4">{{ 'config.tab_menu.password'|trans }}</a></li> |
18 | <li class="tab col s12 m6 l3"><a href="#set5">{{ 'config.tab_menu.rules'|trans }}</a></li> | 18 | <li class="tab col s12 m6 l3"><a href="#set5">{{ 'config.tab_menu.rules'|trans }}</a></li> |
@@ -122,42 +122,42 @@ | |||
122 | </div> | 122 | </div> |
123 | 123 | ||
124 | <div id="set2" class="col s12"> | 124 | <div id="set2" class="col s12"> |
125 | {{ form_start(form.rss) }} | 125 | {{ form_start(form.feed) }} |
126 | {{ form_errors(form.rss) }} | 126 | {{ form_errors(form.feed) }} |
127 | 127 | ||
128 | <div class="row"> | 128 | <div class="row"> |
129 | <div class="input-field col s12"> | 129 | <div class="input-field col s12"> |
130 | {{ 'config.form_rss.description'|trans }} | 130 | {{ 'config.form_feed.description'|trans }} |
131 | </div> | 131 | </div> |
132 | </div> | 132 | </div> |
133 | 133 | ||
134 | <div class="row"> | 134 | <div class="row"> |
135 | <div class="col s12"> | 135 | <div class="col s12"> |
136 | <h6 class="grey-text">{{ 'config.form_rss.token_label'|trans }}</h6> | 136 | <h6 class="grey-text">{{ 'config.form_feed.token_label'|trans }}</h6> |
137 | <div> | 137 | <div> |
138 | {% if rss.token %} | 138 | {% if feed.token %} |
139 | {{ rss.token }} | 139 | {{ feed.token }} |
140 | {% else %} | 140 | {% else %} |
141 | <em>{{ 'config.form_rss.no_token'|trans }}</em> | 141 | <em>{{ 'config.form_feed.no_token'|trans }}</em> |
142 | {% endif %} | 142 | {% endif %} |
143 | – <a href="{{ path('generate_token') }}"> | 143 | – <a href="{{ path('generate_token') }}"> |
144 | {% if rss.token %} | 144 | {% if feed.token %} |
145 | {{ 'config.form_rss.token_reset'|trans }} | 145 | {{ 'config.form_feed.token_reset'|trans }} |
146 | {% else %} | 146 | {% else %} |
147 | {{ 'config.form_rss.token_create'|trans }} | 147 | {{ 'config.form_feed.token_create'|trans }} |
148 | {% endif %}</a> | 148 | {% endif %}</a> |
149 | </div> | 149 | </div> |
150 | </div> | 150 | </div> |
151 | </div> | 151 | </div> |
152 | {% if rss.token %} | 152 | {% if feed.token %} |
153 | <div class="row"> | 153 | <div class="row"> |
154 | <div class="col s12"> | 154 | <div class="col s12"> |
155 | <h6 class="grey-text">{{ 'config.form_rss.rss_links'|trans }}</h6> | 155 | <h6 class="grey-text">{{ 'config.form_feed.feed_links'|trans }}</h6> |
156 | <ul> | 156 | <ul> |
157 | <li><a href="{{ path('unread_rss', {'username': rss.username, 'token': rss.token}) }}">{{ 'config.form_rss.rss_link.unread'|trans }}</a></li> | 157 | <li><a href="{{ path('unread_feed', {'username': feed.username, 'token': feed.token}) }}">{{ 'config.form_feed.feed_link.unread'|trans }}</a></li> |
158 | <li><a href="{{ path('starred_rss', {'username': rss.username, 'token': rss.token}) }}">{{ 'config.form_rss.rss_link.starred'|trans }}</a></li> | 158 | <li><a href="{{ path('starred_feed', {'username': feed.username, 'token': feed.token}) }}">{{ 'config.form_feed.feed_link.starred'|trans }}</a></li> |
159 | <li><a href="{{ path('archive_rss', {'username': rss.username, 'token': rss.token}) }}">{{ 'config.form_rss.rss_link.archive'|trans }}</a></li> | 159 | <li><a href="{{ path('archive_feed', {'username': feed.username, 'token': feed.token}) }}">{{ 'config.form_feed.feed_link.archive'|trans }}</a></li> |
160 | <li><a href="{{ path('all_rss', {'username': rss.username, 'token': rss.token}) }}">{{ 'config.form_rss.rss_link.all'|trans }}</a></li> | 160 | <li><a href="{{ path('all_feed', {'username': feed.username, 'token': feed.token}) }}">{{ 'config.form_feed.feed_link.all'|trans }}</a></li> |
161 | </ul> | 161 | </ul> |
162 | </div> | 162 | </div> |
163 | </div> | 163 | </div> |
@@ -165,14 +165,14 @@ | |||
165 | 165 | ||
166 | <div class="row"> | 166 | <div class="row"> |
167 | <div class="input-field col s12"> | 167 | <div class="input-field col s12"> |
168 | {{ form_label(form.rss.rss_limit) }} | 168 | {{ form_label(form.feed.feed_limit) }} |
169 | {{ form_errors(form.rss.rss_limit) }} | 169 | {{ form_errors(form.feed.feed_limit) }} |
170 | {{ form_widget(form.rss.rss_limit) }} | 170 | {{ form_widget(form.feed.feed_limit) }} |
171 | </div> | 171 | </div> |
172 | </div> | 172 | </div> |
173 | 173 | ||
174 | {{ form_widget(form.rss.save, {'attr': {'class': 'btn waves-effect waves-light'}}) }} | 174 | {{ form_widget(form.feed.save, {'attr': {'class': 'btn waves-effect waves-light'}}) }} |
175 | {{ form_rest(form.rss) }} | 175 | {{ form_rest(form.feed) }} |
176 | </form> | 176 | </form> |
177 | </div> | 177 | </div> |
178 | 178 | ||
diff --git a/src/Wallabag/CoreBundle/Resources/views/themes/material/Entry/entries.html.twig b/src/Wallabag/CoreBundle/Resources/views/themes/material/Entry/entries.html.twig index 0c4dc80b..dc0fca38 100644 --- a/src/Wallabag/CoreBundle/Resources/views/themes/material/Entry/entries.html.twig +++ b/src/Wallabag/CoreBundle/Resources/views/themes/material/Entry/entries.html.twig | |||
@@ -2,8 +2,8 @@ | |||
2 | 2 | ||
3 | {% block head %} | 3 | {% block head %} |
4 | {{ parent() }} | 4 | {{ parent() }} |
5 | {% if tag is defined and app.user.config.rssToken %} | 5 | {% if tag is defined and app.user.config.feedToken %} |
6 | <link rel="alternate" type="application/rss+xml" href="{{ path('tag_rss', {'username': app.user.username, 'token': app.user.config.rssToken, 'slug': tag.slug}) }}" /> | 6 | <link rel="alternate" type="application/atom+xml" href="{{ path('tag_feed', {'username': app.user.username, 'token': app.user.config.feedToken, 'slug': tag.slug}) }}" /> |
7 | {% endif %} | 7 | {% endif %} |
8 | {% endblock %} | 8 | {% endblock %} |
9 | 9 | ||
@@ -25,8 +25,8 @@ | |||
25 | <div class="nb-results left"> | 25 | <div class="nb-results left"> |
26 | {{ 'entry.list.number_on_the_page'|transchoice(entries.count) }} | 26 | {{ 'entry.list.number_on_the_page'|transchoice(entries.count) }} |
27 | <a href="{{ path('switch_view_mode') }}"><i class="material-icons">{% if listMode == 0 %}view_list{% else %}view_module{% endif %}</i></a> | 27 | <a href="{{ path('switch_view_mode') }}"><i class="material-icons">{% if listMode == 0 %}view_list{% else %}view_module{% endif %}</i></a> |
28 | {% if app.user.config.rssToken %} | 28 | {% if app.user.config.feedToken %} |
29 | {% include "@WallabagCore/themes/common/Entry/_rss_link.html.twig" %} | 29 | {% include "@WallabagCore/themes/common/Entry/_feed_link.html.twig" %} |
30 | {% endif %} | 30 | {% endif %} |
31 | </div> | 31 | </div> |
32 | {% if entries.getNbPages > 1 %} | 32 | {% if entries.getNbPages > 1 %} |
diff --git a/src/Wallabag/CoreBundle/Resources/views/themes/material/Tag/tags.html.twig b/src/Wallabag/CoreBundle/Resources/views/themes/material/Tag/tags.html.twig index 97ddedc9..8e93bdc8 100644 --- a/src/Wallabag/CoreBundle/Resources/views/themes/material/Tag/tags.html.twig +++ b/src/Wallabag/CoreBundle/Resources/views/themes/material/Tag/tags.html.twig | |||
@@ -14,8 +14,8 @@ | |||
14 | {% for tag in tags %} | 14 | {% for tag in tags %} |
15 | <li title="{{tag.label}} ({{ tag.nbEntries }})" id="tag-{{ tag.id }}" class="col l2 m2 s5"> | 15 | <li title="{{tag.label}} ({{ tag.nbEntries }})" id="tag-{{ tag.id }}" class="col l2 m2 s5"> |
16 | <a href="{{ path('tag_entries', {'slug': tag.slug}) }}">{{tag.label}} ({{ tag.nbEntries }})</a> | 16 | <a href="{{ path('tag_entries', {'slug': tag.slug}) }}">{{tag.label}} ({{ tag.nbEntries }})</a> |
17 | {% if app.user.config.rssToken %} | 17 | {% if app.user.config.feedToken %} |
18 | <a rel="alternate" type="application/rss+xml" href="{{ path('tag_rss', {'username': app.user.username, 'token': app.user.config.rssToken, 'slug': tag.slug}) }}" class="right"><i class="material-icons">rss_feed</i></a> | 18 | <a rel="alternate" type="application/atom+xml" href="{{ path('tag_feed', {'username': app.user.username, 'token': app.user.config.feedToken, 'slug': tag.slug}) }}" class="right"><i class="material-icons">rss_feed</i></a> |
19 | {% endif %} | 19 | {% endif %} |
20 | </li> | 20 | </li> |
21 | {% endfor %} | 21 | {% endfor %} |
diff --git a/src/Wallabag/CoreBundle/Tools/Utils.php b/src/Wallabag/CoreBundle/Tools/Utils.php index eba21c02..8e1c48b4 100644 --- a/src/Wallabag/CoreBundle/Tools/Utils.php +++ b/src/Wallabag/CoreBundle/Tools/Utils.php | |||
@@ -5,7 +5,7 @@ namespace Wallabag\CoreBundle\Tools; | |||
5 | class Utils | 5 | class Utils |
6 | { | 6 | { |
7 | /** | 7 | /** |
8 | * Generate a token used for RSS. | 8 | * Generate a token used for Feeds. |
9 | * | 9 | * |
10 | * @param int $length Length of the token | 10 | * @param int $length Length of the token |
11 | * | 11 | * |
diff --git a/src/Wallabag/UserBundle/EventListener/CreateConfigListener.php b/src/Wallabag/UserBundle/EventListener/CreateConfigListener.php index e4d55c19..449f1020 100644 --- a/src/Wallabag/UserBundle/EventListener/CreateConfigListener.php +++ b/src/Wallabag/UserBundle/EventListener/CreateConfigListener.php | |||
@@ -17,18 +17,18 @@ class CreateConfigListener implements EventSubscriberInterface | |||
17 | private $em; | 17 | private $em; |
18 | private $theme; | 18 | private $theme; |
19 | private $itemsOnPage; | 19 | private $itemsOnPage; |
20 | private $rssLimit; | 20 | private $feedLimit; |
21 | private $language; | 21 | private $language; |
22 | private $readingSpeed; | 22 | private $readingSpeed; |
23 | private $actionMarkAsRead; | 23 | private $actionMarkAsRead; |
24 | private $listMode; | 24 | private $listMode; |
25 | 25 | ||
26 | public function __construct(EntityManager $em, $theme, $itemsOnPage, $rssLimit, $language, $readingSpeed, $actionMarkAsRead, $listMode) | 26 | public function __construct(EntityManager $em, $theme, $itemsOnPage, $feedLimit, $language, $readingSpeed, $actionMarkAsRead, $listMode) |
27 | { | 27 | { |
28 | $this->em = $em; | 28 | $this->em = $em; |
29 | $this->theme = $theme; | 29 | $this->theme = $theme; |
30 | $this->itemsOnPage = $itemsOnPage; | 30 | $this->itemsOnPage = $itemsOnPage; |
31 | $this->rssLimit = $rssLimit; | 31 | $this->feedLimit = $feedLimit; |
32 | $this->language = $language; | 32 | $this->language = $language; |
33 | $this->readingSpeed = $readingSpeed; | 33 | $this->readingSpeed = $readingSpeed; |
34 | $this->actionMarkAsRead = $actionMarkAsRead; | 34 | $this->actionMarkAsRead = $actionMarkAsRead; |
@@ -51,7 +51,7 @@ class CreateConfigListener implements EventSubscriberInterface | |||
51 | $config = new Config($event->getUser()); | 51 | $config = new Config($event->getUser()); |
52 | $config->setTheme($this->theme); | 52 | $config->setTheme($this->theme); |
53 | $config->setItemsPerPage($this->itemsOnPage); | 53 | $config->setItemsPerPage($this->itemsOnPage); |
54 | $config->setRssLimit($this->rssLimit); | 54 | $config->setFeedLimit($this->feedLimit); |
55 | $config->setLanguage($this->language); | 55 | $config->setLanguage($this->language); |
56 | $config->setReadingSpeed($this->readingSpeed); | 56 | $config->setReadingSpeed($this->readingSpeed); |
57 | $config->setActionMarkAsRead($this->actionMarkAsRead); | 57 | $config->setActionMarkAsRead($this->actionMarkAsRead); |
diff --git a/src/Wallabag/UserBundle/Repository/UserRepository.php b/src/Wallabag/UserBundle/Repository/UserRepository.php index b1d753d2..e2bc76c3 100644 --- a/src/Wallabag/UserBundle/Repository/UserRepository.php +++ b/src/Wallabag/UserBundle/Repository/UserRepository.php | |||
@@ -7,18 +7,18 @@ use Doctrine\ORM\EntityRepository; | |||
7 | class UserRepository extends EntityRepository | 7 | class UserRepository extends EntityRepository |
8 | { | 8 | { |
9 | /** | 9 | /** |
10 | * Find a user by its username and rss roken. | 10 | * Find a user by its username and Feed token. |
11 | * | 11 | * |
12 | * @param string $username | 12 | * @param string $username |
13 | * @param string $rssToken | 13 | * @param string $feedToken |
14 | * @return null|User | ||
14 | * | 15 | * |
15 | * @return User|null | ||
16 | */ | 16 | */ |
17 | public function findOneByUsernameAndRsstoken($username, $rssToken) | 17 | public function findOneByUsernameAndFeedtoken($username, $feedToken) |
18 | { | 18 | { |
19 | return $this->createQueryBuilder('u') | 19 | return $this->createQueryBuilder('u') |
20 | ->leftJoin('u.config', 'c') | 20 | ->leftJoin('u.config', 'c') |
21 | ->where('c.rssToken = :rss_token')->setParameter('rss_token', $rssToken) | 21 | ->where('c.feedToken = :feed_token')->setParameter('feed_token', $feedToken) |
22 | ->andWhere('u.username = :username')->setParameter('username', $username) | 22 | ->andWhere('u.username = :username')->setParameter('username', $username) |
23 | ->getQuery() | 23 | ->getQuery() |
24 | ->getOneOrNullResult(); | 24 | ->getOneOrNullResult(); |
diff --git a/src/Wallabag/UserBundle/Resources/config/services.yml b/src/Wallabag/UserBundle/Resources/config/services.yml index d3925de3..06bd9e3f 100644 --- a/src/Wallabag/UserBundle/Resources/config/services.yml +++ b/src/Wallabag/UserBundle/Resources/config/services.yml | |||
@@ -28,7 +28,7 @@ services: | |||
28 | - "@doctrine.orm.entity_manager" | 28 | - "@doctrine.orm.entity_manager" |
29 | - "%wallabag_core.theme%" | 29 | - "%wallabag_core.theme%" |
30 | - "%wallabag_core.items_on_page%" | 30 | - "%wallabag_core.items_on_page%" |
31 | - "%wallabag_core.rss_limit%" | 31 | - "%wallabag_core.feed_limit%" |
32 | - "%wallabag_core.language%" | 32 | - "%wallabag_core.language%" |
33 | - "%wallabag_core.reading_speed%" | 33 | - "%wallabag_core.reading_speed%" |
34 | - "%wallabag_core.action_mark_as_read%" | 34 | - "%wallabag_core.action_mark_as_read%" |
diff --git a/tests/Wallabag/CoreBundle/Controller/ConfigControllerTest.php b/tests/Wallabag/CoreBundle/Controller/ConfigControllerTest.php index e4bf0998..2df317b8 100644 --- a/tests/Wallabag/CoreBundle/Controller/ConfigControllerTest.php +++ b/tests/Wallabag/CoreBundle/Controller/ConfigControllerTest.php | |||
@@ -33,7 +33,7 @@ class ConfigControllerTest extends WallabagCoreTestCase | |||
33 | $this->assertCount(1, $crawler->filter('button[id=config_save]')); | 33 | $this->assertCount(1, $crawler->filter('button[id=config_save]')); |
34 | $this->assertCount(1, $crawler->filter('button[id=change_passwd_save]')); | 34 | $this->assertCount(1, $crawler->filter('button[id=change_passwd_save]')); |
35 | $this->assertCount(1, $crawler->filter('button[id=update_user_save]')); | 35 | $this->assertCount(1, $crawler->filter('button[id=update_user_save]')); |
36 | $this->assertCount(1, $crawler->filter('button[id=rss_config_save]')); | 36 | $this->assertCount(1, $crawler->filter('button[id=feed_config_save]')); |
37 | } | 37 | } |
38 | 38 | ||
39 | public function testUpdate() | 39 | public function testUpdate() |
@@ -297,7 +297,7 @@ class ConfigControllerTest extends WallabagCoreTestCase | |||
297 | $this->assertContains('flashes.config.notice.user_updated', $alert[0]); | 297 | $this->assertContains('flashes.config.notice.user_updated', $alert[0]); |
298 | } | 298 | } |
299 | 299 | ||
300 | public function testRssUpdateResetToken() | 300 | public function testFeedUpdateResetToken() |
301 | { | 301 | { |
302 | $this->logInAs('admin'); | 302 | $this->logInAs('admin'); |
303 | $client = $this->getClient(); | 303 | $client = $this->getClient(); |
@@ -313,7 +313,7 @@ class ConfigControllerTest extends WallabagCoreTestCase | |||
313 | } | 313 | } |
314 | 314 | ||
315 | $config = $user->getConfig(); | 315 | $config = $user->getConfig(); |
316 | $config->setRssToken(null); | 316 | $config->setFeedToken(null); |
317 | $em->persist($config); | 317 | $em->persist($config); |
318 | $em->flush(); | 318 | $em->flush(); |
319 | 319 | ||
@@ -322,7 +322,7 @@ class ConfigControllerTest extends WallabagCoreTestCase | |||
322 | $this->assertSame(200, $client->getResponse()->getStatusCode()); | 322 | $this->assertSame(200, $client->getResponse()->getStatusCode()); |
323 | 323 | ||
324 | $this->assertGreaterThan(1, $body = $crawler->filter('body')->extract(['_text'])); | 324 | $this->assertGreaterThan(1, $body = $crawler->filter('body')->extract(['_text'])); |
325 | $this->assertContains('config.form_rss.no_token', $body[0]); | 325 | $this->assertContains('config.form_feed.no_token', $body[0]); |
326 | 326 | ||
327 | $client->request('GET', '/generate-token'); | 327 | $client->request('GET', '/generate-token'); |
328 | $this->assertSame(302, $client->getResponse()->getStatusCode()); | 328 | $this->assertSame(302, $client->getResponse()->getStatusCode()); |
@@ -330,7 +330,7 @@ class ConfigControllerTest extends WallabagCoreTestCase | |||
330 | $crawler = $client->followRedirect(); | 330 | $crawler = $client->followRedirect(); |
331 | 331 | ||
332 | $this->assertGreaterThan(1, $body = $crawler->filter('body')->extract(['_text'])); | 332 | $this->assertGreaterThan(1, $body = $crawler->filter('body')->extract(['_text'])); |
333 | $this->assertNotContains('config.form_rss.no_token', $body[0]); | 333 | $this->assertNotContains('config.form_feed.no_token', $body[0]); |
334 | } | 334 | } |
335 | 335 | ||
336 | public function testGenerateTokenAjax() | 336 | public function testGenerateTokenAjax() |
@@ -351,7 +351,7 @@ class ConfigControllerTest extends WallabagCoreTestCase | |||
351 | $this->assertArrayHasKey('token', $content); | 351 | $this->assertArrayHasKey('token', $content); |
352 | } | 352 | } |
353 | 353 | ||
354 | public function testRssUpdate() | 354 | public function testFeedUpdate() |
355 | { | 355 | { |
356 | $this->logInAs('admin'); | 356 | $this->logInAs('admin'); |
357 | $client = $this->getClient(); | 357 | $client = $this->getClient(); |
@@ -360,10 +360,10 @@ class ConfigControllerTest extends WallabagCoreTestCase | |||
360 | 360 | ||
361 | $this->assertSame(200, $client->getResponse()->getStatusCode()); | 361 | $this->assertSame(200, $client->getResponse()->getStatusCode()); |
362 | 362 | ||
363 | $form = $crawler->filter('button[id=rss_config_save]')->form(); | 363 | $form = $crawler->filter('button[id=feed_config_save]')->form(); |
364 | 364 | ||
365 | $data = [ | 365 | $data = [ |
366 | 'rss_config[rss_limit]' => 12, | 366 | 'feed_config[feed_limit]' => 12, |
367 | ]; | 367 | ]; |
368 | 368 | ||
369 | $client->submit($form, $data); | 369 | $client->submit($form, $data); |
@@ -372,31 +372,31 @@ class ConfigControllerTest extends WallabagCoreTestCase | |||
372 | 372 | ||
373 | $crawler = $client->followRedirect(); | 373 | $crawler = $client->followRedirect(); |
374 | 374 | ||
375 | $this->assertContains('flashes.config.notice.rss_updated', $crawler->filter('body')->extract(['_text'])[0]); | 375 | $this->assertContains('flashes.config.notice.feed_updated', $crawler->filter('body')->extract(['_text'])[0]); |
376 | } | 376 | } |
377 | 377 | ||
378 | public function dataForRssFailed() | 378 | public function dataForFeedFailed() |
379 | { | 379 | { |
380 | return [ | 380 | return [ |
381 | [ | 381 | [ |
382 | [ | 382 | [ |
383 | 'rss_config[rss_limit]' => 0, | 383 | 'feed_config[feed_limit]' => 0, |
384 | ], | 384 | ], |
385 | 'This value should be 1 or more.', | 385 | 'This value should be 1 or more.', |
386 | ], | 386 | ], |
387 | [ | 387 | [ |
388 | [ | 388 | [ |
389 | 'rss_config[rss_limit]' => 1000000000000, | 389 | 'feed_config[feed_limit]' => 1000000000000, |
390 | ], | 390 | ], |
391 | 'validator.rss_limit_too_high', | 391 | 'validator.feed_limit_too_high', |
392 | ], | 392 | ], |
393 | ]; | 393 | ]; |
394 | } | 394 | } |
395 | 395 | ||
396 | /** | 396 | /** |
397 | * @dataProvider dataForRssFailed | 397 | * @dataProvider dataForFeedFailed |
398 | */ | 398 | */ |
399 | public function testRssFailed($data, $expectedMessage) | 399 | public function testFeedFailed($data, $expectedMessage) |
400 | { | 400 | { |
401 | $this->logInAs('admin'); | 401 | $this->logInAs('admin'); |
402 | $client = $this->getClient(); | 402 | $client = $this->getClient(); |
@@ -405,7 +405,7 @@ class ConfigControllerTest extends WallabagCoreTestCase | |||
405 | 405 | ||
406 | $this->assertSame(200, $client->getResponse()->getStatusCode()); | 406 | $this->assertSame(200, $client->getResponse()->getStatusCode()); |
407 | 407 | ||
408 | $form = $crawler->filter('button[id=rss_config_save]')->form(); | 408 | $form = $crawler->filter('button[id=feed_config_save]')->form(); |
409 | 409 | ||
410 | $crawler = $client->submit($form, $data); | 410 | $crawler = $client->submit($form, $data); |
411 | 411 | ||
diff --git a/tests/Wallabag/CoreBundle/Controller/RssControllerTest.php b/tests/Wallabag/CoreBundle/Controller/FeedControllerTest.php index 0e4a5afa..3bc7f951 100644 --- a/tests/Wallabag/CoreBundle/Controller/RssControllerTest.php +++ b/tests/Wallabag/CoreBundle/Controller/FeedControllerTest.php | |||
@@ -4,9 +4,9 @@ namespace Tests\Wallabag\CoreBundle\Controller; | |||
4 | 4 | ||
5 | use Tests\Wallabag\CoreBundle\WallabagCoreTestCase; | 5 | use Tests\Wallabag\CoreBundle\WallabagCoreTestCase; |
6 | 6 | ||
7 | class RssControllerTest extends WallabagCoreTestCase | 7 | class FeedControllerTest extends WallabagCoreTestCase |
8 | { | 8 | { |
9 | public function validateDom($xml, $type, $urlPagination, $nb = null) | 9 | public function validateDom($xml, $type, $nb = null, $tagValue = null) |
10 | { | 10 | { |
11 | $doc = new \DOMDocument(); | 11 | $doc = new \DOMDocument(); |
12 | $doc->loadXML($xml); | 12 | $doc->loadXML($xml); |
@@ -23,7 +23,6 @@ class RssControllerTest extends WallabagCoreTestCase | |||
23 | $this->assertEquals(1, $xpath->query('/a:feed')->length); | 23 | $this->assertEquals(1, $xpath->query('/a:feed')->length); |
24 | 24 | ||
25 | $this->assertEquals(1, $xpath->query('/a:feed/a:title')->length); | 25 | $this->assertEquals(1, $xpath->query('/a:feed/a:title')->length); |
26 | $this->assertEquals('wallabag — '.$type.' feed', $xpath->query('/a:feed/a:title')->item(0)->nodeValue); | ||
27 | 26 | ||
28 | $this->assertEquals(1, $xpath->query('/a:feed/a:updated')->length); | 27 | $this->assertEquals(1, $xpath->query('/a:feed/a:updated')->length); |
29 | 28 | ||
@@ -31,7 +30,13 @@ class RssControllerTest extends WallabagCoreTestCase | |||
31 | $this->assertEquals('wallabag', $xpath->query('/a:feed/a:generator')->item(0)->nodeValue); | 30 | $this->assertEquals('wallabag', $xpath->query('/a:feed/a:generator')->item(0)->nodeValue); |
32 | 31 | ||
33 | $this->assertEquals(1, $xpath->query('/a:feed/a:subtitle')->length); | 32 | $this->assertEquals(1, $xpath->query('/a:feed/a:subtitle')->length); |
34 | $this->assertEquals('RSS feed for '.$type.' entries', $xpath->query('/a:feed/a:subtitle')->item(0)->nodeValue); | 33 | if (null !== $tagValue && 0 === strpos($type, 'tag')) { |
34 | $this->assertEquals('wallabag — '.$type.' '.$tagValue.' feed', $xpath->query('/a:feed/a:title')->item(0)->nodeValue); | ||
35 | $this->assertEquals('Atom feed for entries tagged with ' . $tagValue, $xpath->query('/a:feed/a:subtitle')->item(0)->nodeValue); | ||
36 | } else { | ||
37 | $this->assertEquals('wallabag — '.$type.' feed', $xpath->query('/a:feed/a:title')->item(0)->nodeValue); | ||
38 | $this->assertEquals('Atom feed for ' . $type . ' entries', $xpath->query('/a:feed/a:subtitle')->item(0)->nodeValue); | ||
39 | } | ||
35 | 40 | ||
36 | $this->assertEquals(1, $xpath->query('/a:feed/a:link[@rel="self"]')->length); | 41 | $this->assertEquals(1, $xpath->query('/a:feed/a:link[@rel="self"]')->length); |
37 | $this->assertContains($type, $xpath->query('/a:feed/a:link[@rel="self"]')->item(0)->getAttribute('href')); | 42 | $this->assertContains($type, $xpath->query('/a:feed/a:link[@rel="self"]')->item(0)->getAttribute('href')); |
@@ -84,8 +89,8 @@ class RssControllerTest extends WallabagCoreTestCase | |||
84 | ->findOneByUsername('admin'); | 89 | ->findOneByUsername('admin'); |
85 | 90 | ||
86 | $config = $user->getConfig(); | 91 | $config = $user->getConfig(); |
87 | $config->setRssToken('SUPERTOKEN'); | 92 | $config->setFeedToken('SUPERTOKEN'); |
88 | $config->setRssLimit(2); | 93 | $config->setFeedLimit(2); |
89 | $em->persist($config); | 94 | $em->persist($config); |
90 | $em->flush(); | 95 | $em->flush(); |
91 | 96 | ||
@@ -93,7 +98,7 @@ class RssControllerTest extends WallabagCoreTestCase | |||
93 | 98 | ||
94 | $this->assertSame(200, $client->getResponse()->getStatusCode()); | 99 | $this->assertSame(200, $client->getResponse()->getStatusCode()); |
95 | 100 | ||
96 | $this->validateDom($client->getResponse()->getContent(), 'unread', 'unread', 2); | 101 | $this->validateDom($client->getResponse()->getContent(), 'unread', 2); |
97 | } | 102 | } |
98 | 103 | ||
99 | public function testStarred() | 104 | public function testStarred() |
@@ -105,8 +110,8 @@ class RssControllerTest extends WallabagCoreTestCase | |||
105 | ->findOneByUsername('admin'); | 110 | ->findOneByUsername('admin'); |
106 | 111 | ||
107 | $config = $user->getConfig(); | 112 | $config = $user->getConfig(); |
108 | $config->setRssToken('SUPERTOKEN'); | 113 | $config->setFeedToken('SUPERTOKEN'); |
109 | $config->setRssLimit(1); | 114 | $config->setFeedLimit(1); |
110 | $em->persist($config); | 115 | $em->persist($config); |
111 | $em->flush(); | 116 | $em->flush(); |
112 | 117 | ||
@@ -115,7 +120,7 @@ class RssControllerTest extends WallabagCoreTestCase | |||
115 | 120 | ||
116 | $this->assertSame(200, $client->getResponse()->getStatusCode(), 1); | 121 | $this->assertSame(200, $client->getResponse()->getStatusCode(), 1); |
117 | 122 | ||
118 | $this->validateDom($client->getResponse()->getContent(), 'starred', 'starred'); | 123 | $this->validateDom($client->getResponse()->getContent(), 'starred'); |
119 | } | 124 | } |
120 | 125 | ||
121 | public function testArchives() | 126 | public function testArchives() |
@@ -127,8 +132,8 @@ class RssControllerTest extends WallabagCoreTestCase | |||
127 | ->findOneByUsername('admin'); | 132 | ->findOneByUsername('admin'); |
128 | 133 | ||
129 | $config = $user->getConfig(); | 134 | $config = $user->getConfig(); |
130 | $config->setRssToken('SUPERTOKEN'); | 135 | $config->setFeedToken('SUPERTOKEN'); |
131 | $config->setRssLimit(null); | 136 | $config->setFeedLimit(null); |
132 | $em->persist($config); | 137 | $em->persist($config); |
133 | $em->flush(); | 138 | $em->flush(); |
134 | 139 | ||
@@ -137,7 +142,7 @@ class RssControllerTest extends WallabagCoreTestCase | |||
137 | 142 | ||
138 | $this->assertSame(200, $client->getResponse()->getStatusCode()); | 143 | $this->assertSame(200, $client->getResponse()->getStatusCode()); |
139 | 144 | ||
140 | $this->validateDom($client->getResponse()->getContent(), 'archive', 'archive'); | 145 | $this->validateDom($client->getResponse()->getContent(), 'archive'); |
141 | } | 146 | } |
142 | 147 | ||
143 | public function testPagination() | 148 | public function testPagination() |
@@ -149,8 +154,8 @@ class RssControllerTest extends WallabagCoreTestCase | |||
149 | ->findOneByUsername('admin'); | 154 | ->findOneByUsername('admin'); |
150 | 155 | ||
151 | $config = $user->getConfig(); | 156 | $config = $user->getConfig(); |
152 | $config->setRssToken('SUPERTOKEN'); | 157 | $config->setFeedToken('SUPERTOKEN'); |
153 | $config->setRssLimit(1); | 158 | $config->setFeedLimit(1); |
154 | $em->persist($config); | 159 | $em->persist($config); |
155 | $em->flush(); | 160 | $em->flush(); |
156 | 161 | ||
@@ -177,8 +182,8 @@ class RssControllerTest extends WallabagCoreTestCase | |||
177 | ->findOneByUsername('admin'); | 182 | ->findOneByUsername('admin'); |
178 | 183 | ||
179 | $config = $user->getConfig(); | 184 | $config = $user->getConfig(); |
180 | $config->setRssToken('SUPERTOKEN'); | 185 | $config->setFeedToken('SUPERTOKEN'); |
181 | $config->setRssLimit(null); | 186 | $config->setFeedLimit(null); |
182 | $em->persist($config); | 187 | $em->persist($config); |
183 | $em->flush(); | 188 | $em->flush(); |
184 | 189 | ||
@@ -187,7 +192,7 @@ class RssControllerTest extends WallabagCoreTestCase | |||
187 | 192 | ||
188 | $this->assertSame(200, $client->getResponse()->getStatusCode()); | 193 | $this->assertSame(200, $client->getResponse()->getStatusCode()); |
189 | 194 | ||
190 | $this->validateDom($client->getResponse()->getContent(), 'tag (foo bar)', 'tags/foo-bar'); | 195 | $this->validateDom($client->getResponse()->getContent(), 'tag', 2, 'foo-bar'); |
191 | 196 | ||
192 | $client->request('GET', '/admin/SUPERTOKEN/tags/foo-bar.xml?page=3000'); | 197 | $client->request('GET', '/admin/SUPERTOKEN/tags/foo-bar.xml?page=3000'); |
193 | $this->assertSame(302, $client->getResponse()->getStatusCode()); | 198 | $this->assertSame(302, $client->getResponse()->getStatusCode()); |
diff --git a/tests/Wallabag/CoreBundle/Controller/SecurityControllerTest.php b/tests/Wallabag/CoreBundle/Controller/SecurityControllerTest.php index 2cf596d4..fe2fbdee 100644 --- a/tests/Wallabag/CoreBundle/Controller/SecurityControllerTest.php +++ b/tests/Wallabag/CoreBundle/Controller/SecurityControllerTest.php | |||
@@ -13,7 +13,7 @@ class SecurityControllerTest extends WallabagCoreTestCase | |||
13 | $client->followRedirects(); | 13 | $client->followRedirects(); |
14 | 14 | ||
15 | $crawler = $client->request('GET', '/config'); | 15 | $crawler = $client->request('GET', '/config'); |
16 | $this->assertContains('config.form_rss.description', $crawler->filter('body')->extract(['_text'])[0]); | 16 | $this->assertContains('config.form_feed.description', $crawler->filter('body')->extract(['_text'])[0]); |
17 | } | 17 | } |
18 | 18 | ||
19 | public function testLoginWith2Factor() | 19 | public function testLoginWith2Factor() |
diff --git a/tests/Wallabag/CoreBundle/ParamConverter/UsernameRssTokenConverterTest.php b/tests/Wallabag/CoreBundle/ParamConverter/UsernameFeedTokenConverterTest.php index 74c645ef..f48bf3cc 100644 --- a/tests/Wallabag/CoreBundle/ParamConverter/UsernameRssTokenConverterTest.php +++ b/tests/Wallabag/CoreBundle/ParamConverter/UsernameFeedTokenConverterTest.php | |||
@@ -4,15 +4,15 @@ namespace Tests\Wallabag\CoreBundle\Command; | |||
4 | 4 | ||
5 | use Sensio\Bundle\FrameworkExtraBundle\Configuration\ParamConverter; | 5 | use Sensio\Bundle\FrameworkExtraBundle\Configuration\ParamConverter; |
6 | use Symfony\Component\HttpFoundation\Request; | 6 | use Symfony\Component\HttpFoundation\Request; |
7 | use Wallabag\CoreBundle\ParamConverter\UsernameRssTokenConverter; | 7 | use Wallabag\CoreBundle\ParamConverter\UsernameFeedTokenConverter; |
8 | use Wallabag\UserBundle\Entity\User; | 8 | use Wallabag\UserBundle\Entity\User; |
9 | 9 | ||
10 | class UsernameRssTokenConverterTest extends \PHPUnit_Framework_TestCase | 10 | class UsernameFeedTokenConverterTest extends \PHPUnit_Framework_TestCase |
11 | { | 11 | { |
12 | public function testSupportsWithNoRegistry() | 12 | public function testSupportsWithNoRegistry() |
13 | { | 13 | { |
14 | $params = new ParamConverter([]); | 14 | $params = new ParamConverter([]); |
15 | $converter = new UsernameRssTokenConverter(); | 15 | $converter = new UsernameFeedTokenConverter(); |
16 | 16 | ||
17 | $this->assertFalse($converter->supports($params)); | 17 | $this->assertFalse($converter->supports($params)); |
18 | } | 18 | } |
@@ -28,7 +28,7 @@ class UsernameRssTokenConverterTest extends \PHPUnit_Framework_TestCase | |||
28 | ->will($this->returnValue([])); | 28 | ->will($this->returnValue([])); |
29 | 29 | ||
30 | $params = new ParamConverter([]); | 30 | $params = new ParamConverter([]); |
31 | $converter = new UsernameRssTokenConverter($registry); | 31 | $converter = new UsernameFeedTokenConverter($registry); |
32 | 32 | ||
33 | $this->assertFalse($converter->supports($params)); | 33 | $this->assertFalse($converter->supports($params)); |
34 | } | 34 | } |
@@ -44,7 +44,7 @@ class UsernameRssTokenConverterTest extends \PHPUnit_Framework_TestCase | |||
44 | ->will($this->returnValue(['default' => null])); | 44 | ->will($this->returnValue(['default' => null])); |
45 | 45 | ||
46 | $params = new ParamConverter([]); | 46 | $params = new ParamConverter([]); |
47 | $converter = new UsernameRssTokenConverter($registry); | 47 | $converter = new UsernameFeedTokenConverter($registry); |
48 | 48 | ||
49 | $this->assertFalse($converter->supports($params)); | 49 | $this->assertFalse($converter->supports($params)); |
50 | } | 50 | } |
@@ -82,7 +82,7 @@ class UsernameRssTokenConverterTest extends \PHPUnit_Framework_TestCase | |||
82 | ->will($this->returnValue($em)); | 82 | ->will($this->returnValue($em)); |
83 | 83 | ||
84 | $params = new ParamConverter(['class' => 'superclass']); | 84 | $params = new ParamConverter(['class' => 'superclass']); |
85 | $converter = new UsernameRssTokenConverter($registry); | 85 | $converter = new UsernameFeedTokenConverter($registry); |
86 | 86 | ||
87 | $this->assertFalse($converter->supports($params)); | 87 | $this->assertFalse($converter->supports($params)); |
88 | } | 88 | } |
@@ -120,7 +120,7 @@ class UsernameRssTokenConverterTest extends \PHPUnit_Framework_TestCase | |||
120 | ->will($this->returnValue($em)); | 120 | ->will($this->returnValue($em)); |
121 | 121 | ||
122 | $params = new ParamConverter(['class' => 'WallabagUserBundle:User']); | 122 | $params = new ParamConverter(['class' => 'WallabagUserBundle:User']); |
123 | $converter = new UsernameRssTokenConverter($registry); | 123 | $converter = new UsernameFeedTokenConverter($registry); |
124 | 124 | ||
125 | $this->assertTrue($converter->supports($params)); | 125 | $this->assertTrue($converter->supports($params)); |
126 | } | 126 | } |
@@ -128,7 +128,7 @@ class UsernameRssTokenConverterTest extends \PHPUnit_Framework_TestCase | |||
128 | public function testApplyEmptyRequest() | 128 | public function testApplyEmptyRequest() |
129 | { | 129 | { |
130 | $params = new ParamConverter([]); | 130 | $params = new ParamConverter([]); |
131 | $converter = new UsernameRssTokenConverter(); | 131 | $converter = new UsernameFeedTokenConverter(); |
132 | 132 | ||
133 | $res = $converter->apply(new Request(), $params); | 133 | $res = $converter->apply(new Request(), $params); |
134 | 134 | ||
@@ -146,7 +146,7 @@ class UsernameRssTokenConverterTest extends \PHPUnit_Framework_TestCase | |||
146 | ->getMock(); | 146 | ->getMock(); |
147 | 147 | ||
148 | $repo->expects($this->once()) | 148 | $repo->expects($this->once()) |
149 | ->method('findOneByUsernameAndRsstoken') | 149 | ->method('findOneByUsernameAndFeedToken') |
150 | ->with('test', 'test') | 150 | ->with('test', 'test') |
151 | ->will($this->returnValue(null)); | 151 | ->will($this->returnValue(null)); |
152 | 152 | ||
@@ -169,7 +169,7 @@ class UsernameRssTokenConverterTest extends \PHPUnit_Framework_TestCase | |||
169 | ->will($this->returnValue($em)); | 169 | ->will($this->returnValue($em)); |
170 | 170 | ||
171 | $params = new ParamConverter(['class' => 'WallabagUserBundle:User']); | 171 | $params = new ParamConverter(['class' => 'WallabagUserBundle:User']); |
172 | $converter = new UsernameRssTokenConverter($registry); | 172 | $converter = new UsernameFeedTokenConverter($registry); |
173 | $request = new Request([], [], ['username' => 'test', 'token' => 'test']); | 173 | $request = new Request([], [], ['username' => 'test', 'token' => 'test']); |
174 | 174 | ||
175 | $converter->apply($request, $params); | 175 | $converter->apply($request, $params); |
@@ -184,7 +184,7 @@ class UsernameRssTokenConverterTest extends \PHPUnit_Framework_TestCase | |||
184 | ->getMock(); | 184 | ->getMock(); |
185 | 185 | ||
186 | $repo->expects($this->once()) | 186 | $repo->expects($this->once()) |
187 | ->method('findOneByUsernameAndRsstoken') | 187 | ->method('findOneByUsernameAndFeedtoken') |
188 | ->with('test', 'test') | 188 | ->with('test', 'test') |
189 | ->will($this->returnValue($user)); | 189 | ->will($this->returnValue($user)); |
190 | 190 | ||
@@ -207,7 +207,7 @@ class UsernameRssTokenConverterTest extends \PHPUnit_Framework_TestCase | |||
207 | ->will($this->returnValue($em)); | 207 | ->will($this->returnValue($em)); |
208 | 208 | ||
209 | $params = new ParamConverter(['class' => 'WallabagUserBundle:User', 'name' => 'user']); | 209 | $params = new ParamConverter(['class' => 'WallabagUserBundle:User', 'name' => 'user']); |
210 | $converter = new UsernameRssTokenConverter($registry); | 210 | $converter = new UsernameFeedTokenConverter($registry); |
211 | $request = new Request([], [], ['username' => 'test', 'token' => 'test']); | 211 | $request = new Request([], [], ['username' => 'test', 'token' => 'test']); |
212 | 212 | ||
213 | $converter->apply($request, $params); | 213 | $converter->apply($request, $params); |
diff --git a/tests/Wallabag/UserBundle/EventListener/CreateConfigListenerTest.php b/tests/Wallabag/UserBundle/EventListener/CreateConfigListenerTest.php index e5a145b8..6d8558e9 100644 --- a/tests/Wallabag/UserBundle/EventListener/CreateConfigListenerTest.php +++ b/tests/Wallabag/UserBundle/EventListener/CreateConfigListenerTest.php | |||
@@ -57,7 +57,7 @@ class CreateConfigListenerTest extends \PHPUnit_Framework_TestCase | |||
57 | $config = new Config($user); | 57 | $config = new Config($user); |
58 | $config->setTheme('baggy'); | 58 | $config->setTheme('baggy'); |
59 | $config->setItemsPerPage(20); | 59 | $config->setItemsPerPage(20); |
60 | $config->setRssLimit(50); | 60 | $config->setFeedLimit(50); |
61 | $config->setLanguage('fr'); | 61 | $config->setLanguage('fr'); |
62 | $config->setReadingSpeed(1); | 62 | $config->setReadingSpeed(1); |
63 | 63 | ||