Commit graph

2592 commits

Author SHA1 Message Date
Kevin Decherf
19802d8bd5 Improve performance of REST exists call
I've noticed that the endpoint `/api/entries/exists` used by the "Sweep
articles" feature on the Android app failed almost all the time on my
instance.

After checking the corresponding method I found that
`EntryRestController::getEntriesExistsAction()` could be improved.

Here is the former way the method worked:

```
for id in [list of ids]
  get full entry by id
  if null
    get full entry by given id

return array of ids or array of hashes
```

With this behavior on my instance I could expect up to 13k SQL requests
when sweeping articles from the Android app. Morever the repository
fetches all fields (content included) while the method only returns ids
or hashes.

The new behavior is described as follow:

```
get ids, hashes by [list of ids]
merge with provided [list of ids] // this part will complete the final
                                  // array with not found ids

return array of ids or array of hashes
```

In my case this change reduces the number of SQL requests to only 135
(_considering one request for 50 articles_)

Signed-off-by: Kevin Decherf <kevin@kdecherf.com>
2021-08-05 23:19:08 +02:00
Kevin Decherf
9a4ff85cf5 Update phpunit dep for phpstan
Signed-off-by: Kevin Decherf <kevin@kdecherf.com>
2021-08-05 22:51:23 +02:00
Nikita Epifanov
851e4225c2
Translated using Weblate (Russian)
Currently translated at 100.0% (569 of 569 strings)
2021-08-05 19:55:57 +02:00
gnu-ewm
c914aef2e9
Translated using Weblate (Polish)
Currently translated at 88.9% (506 of 569 strings)
2021-08-04 17:34:32 +02:00
Nicolas Lœuillet
f664af752d Fixed search on homepage 2021-08-03 11:54:36 +02:00
Nicolas Lœuillet
ebb806496f Fixed timeout when assigning tags to entry
Fix #4998
2021-08-03 08:14:13 +02:00
Xosé M
0c68b9b4f3
Translated using Weblate (Galician)
Currently translated at 100.0% (569 of 569 strings)
2021-08-03 08:10:26 +02:00
Dmytro Prokhorenkov
2dc3ff561c
Translated using Weblate (Ukrainian)
Currently translated at 67.8% (386 of 569 strings)
2021-08-03 08:10:26 +02:00
Tim Lee
518f44f4f7
Translated using Weblate (Korean)
Currently translated at 100.0% (6 of 6 strings)
2021-08-03 08:10:26 +02:00
Tim Lee
d568336d85
Translated using Weblate (Korean)
Currently translated at 100.0% (7 of 7 strings)
2021-08-03 08:10:26 +02:00
Tim Lee
b0c6dcd9ea
Translated using Weblate (Korean)
Currently translated at 100.0% (569 of 569 strings)
2021-08-03 08:10:26 +02:00
Marek
efbc47e7ce
Translated using Weblate (Czech)
Currently translated at 100.0% (569 of 569 strings)
2021-08-03 08:10:25 +02:00
ssantos
cbb6272ae3
Translated using Weblate (Portuguese)
Currently translated at 61.8% (352 of 569 strings)
2021-08-03 08:10:25 +02:00
ssantos
f8075510ca
Translated using Weblate (Portuguese)
Currently translated at 100.0% (7 of 7 strings)
2021-08-03 08:10:25 +02:00
Marek
ea9712245d
Translated using Weblate (Czech)
Currently translated at 77.8% (443 of 569 strings)
2021-08-03 08:10:25 +02:00
Marek
e53a22d409
Translated using Weblate (Czech)
Currently translated at 68.3% (389 of 569 strings)
2021-08-03 08:10:25 +02:00
Marek
f7ed2a3554
Translated using Weblate (Czech)
Currently translated at 52.0% (296 of 569 strings)
2021-08-03 08:10:25 +02:00
Marek
a103b60c74
Translated using Weblate (Czech)
Currently translated at 100.0% (7 of 7 strings)
2021-08-03 08:10:25 +02:00
Marek
eed243ff45
Translated using Weblate (Czech)
Currently translated at 100.0% (6 of 6 strings)
2021-08-03 08:10:25 +02:00
K. Herbert
236099129c
Translated using Weblate (German)
Currently translated at 100.0% (7 of 7 strings)
2021-08-03 08:10:25 +02:00
J. Lavoie
be2db47d39
Translated using Weblate (Croatian)
Currently translated at 100.0% (569 of 569 strings)
2021-08-03 08:10:25 +02:00
Henne Vogelsang
23de687696
Make RSS feed entry links valid and accessible
According to the ATOM spec link elements must have a href:
https://validator.w3.org/feed/docs/atom.html

Also most feed readers (TinyTiny, Feedly, Thunderbird) prefer link elements in
this order:

- plain
- with attribute rel=alternate
- with attribute rel=via

As the content is work of the entry author, link to it by default. Not to the
wallabag instance entry.

This also makes it possible to share links with people who don't have access to
the wallabag instance via the RSS feed.
2021-07-08 22:36:50 +02:00
Kevin Decherf
1ba4d40e82 Tag view: order tags by label
Signed-off-by: Kevin Decherf <kevin@kdecherf.com>
2021-05-20 13:09:27 +02:00
Panos Alevropoulos
655edbf7aa
Translated using Weblate (Greek)
Currently translated at 100.0% (569 of 569 strings)
2021-03-08 19:03:17 +01:00
Panos Alevropoulos
3c85d0b0d4
Translated using Weblate (Greek)
Currently translated at 100.0% (6 of 6 strings)
2021-03-08 19:02:54 +01:00
Panos Alevropoulos
173e35283f
Translated using Weblate (Greek)
Currently translated at 100.0% (7 of 7 strings)
2021-03-08 19:02:53 +01:00
Panos Alevropoulos
889792349a
Translated using Weblate (French)
Currently translated at 100.0% (569 of 569 strings)
2021-03-08 19:02:53 +01:00
Jérémy Benoist
6725dd0d28
Merge pull request #5110 from weblate/weblate-wallabag-messages 2021-03-08 10:42:19 +01:00
Jérémy Benoist
41e1d97c96
Merge pull request #5113 from mx-psi/mx-psi/fix-link 2021-03-08 10:41:36 +01:00
Pablo Baeyens
8070b8ddb1
Update link to Wallabag hosted one 2021-03-08 10:15:16 +01:00
Pablo Baeyens
9599d6f289
Fix myreadspeed links
myreadspeed.com is no longer available, see craigmayhew/myreadspeed@9e7786c
2021-03-07 17:04:02 +01:00
Kevin Decherf
7acd207054 Convert tag label to lowercase in RuleBasedTagger
Fixes #4266

Signed-off-by: Kevin Decherf <kevin@kdecherf.com>
2021-03-06 19:46:24 +01:00
Weblate
e61825a620
Added translation using Weblate (Greek) 2021-03-06 19:36:57 +01:00
Weblate
17315e51bd
Added translation using Weblate (Aragonese) 2021-03-06 19:36:57 +01:00
Weblate
0060a65152
Added translation using Weblate (Basque) 2021-03-06 19:36:41 +01:00
Weblate
87680f6ebf
Added translation using Weblate (Greek) 2021-03-06 19:36:32 +01:00
Weblate
c356146ddf
Added translation using Weblate (Basque) 2021-03-06 19:36:32 +01:00
Weblate
5fed2aece3
Added translation using Weblate (Greek) 2021-03-06 19:36:30 +01:00
Weblate
5d1c7dff4f
Added translation using Weblate (Basque) 2021-03-06 19:36:30 +01:00
Weblate
1fed05d936
Added translation using Weblate (Aragonese) 2021-03-06 19:36:26 +01:00
Weblate
e10636b962
Added translation using Weblate (Aragonese) 2021-03-06 19:36:23 +01:00
ayiniho
a39522e58f
Translated using Weblate (French)
Currently translated at 100.0% (569 of 569 strings)
2021-03-05 22:50:37 +01:00
Alvaro
b933c7a85d
Translated using Weblate (Spanish)
Currently translated at 92.7% (528 of 569 strings)
2021-03-01 23:50:33 +01:00
naofum
5c172c7f17
Translated using Weblate (Japanese)
Currently translated at 100.0% (569 of 569 strings)
2021-02-28 05:50:35 +01:00
Xosé M
4fd5cf38c9
Translated using Weblate (Galician)
Currently translated at 100.0% (569 of 569 strings)
2021-02-26 07:50:33 +01:00
leschek
ee90510af0
Translated using Weblate (Czech)
Currently translated at 21.9% (125 of 569 strings)
2021-02-15 12:50:48 +01:00
Jeremy Benoist
52cd346617
"below button" -> "button below" 2021-02-09 09:33:59 +01:00
Jeremy Benoist
dd9d6a4c64
Add Delicious import
Since 2021, you can export again your data \o/

Also fix indentation in json fixtures files.
2021-02-08 09:47:56 +01:00
Nicolas Lœuillet
890c7d0bfa
Added button to show entries with the same domain 2021-02-08 09:45:38 +01:00
T. E. Kalaycı
d3262da307 Translated using Weblate (Turkish)
Currently translated at 100.0% (569 of 569 strings)
2021-02-08 09:17:36 +01:00
Milo Ivir
5a38865c70
Translated using Weblate (German)
Currently translated at 100.0% (569 of 569 strings)
2021-01-27 21:32:13 +01:00
Jérémy Benoist
8869c7a153
Merge pull request #4971 from wallabag/fix/footer-date-translation
Fix translation of date in the footer using IntlDateFormatter
2021-01-25 09:33:57 +01:00
Jérémy Benoist
b50cd2564c
Merge pull request #4972 from wallabag/fix/2533-filter-active-menu
Preselect currently active section in the filter menu
2021-01-25 09:30:03 +01:00
Milo Ivir
54cd1ac73d Translated using Weblate (Croatian)
Currently translated at 100.0% (569 of 569 strings)
2021-01-25 08:53:06 +01:00
Kevin Decherf
8e89b3ad76 Preselect currently active section in the filter menu
Fixes #2533

Signed-off-by: Kevin Decherf <kevin@kdecherf.com>
2021-01-24 02:16:43 +01:00
Kevin Decherf
ebda18636c Fix translation of date in the footer using IntlDateFormatter
Fixes #2476
Fixes #2870

Signed-off-by: Kevin Decherf <kevin@kdecherf.com>
2021-01-23 21:16:00 +01:00
Xosé M
d608caa0ad
Translated using Weblate (Galician)
Currently translated at 99.8% (568 of 569 strings)
2021-01-22 07:32:18 +01:00
Eric
b9c0b2c465
Translated using Weblate (Chinese (Simplified))
Currently translated at 100.0% (569 of 569 strings)
2021-01-22 07:32:12 +01:00
Yann Kozon
a8db5b3782
Fix accessibility problem with the 2FA QR code (#4915)
* Add alt to qr code

* Add alt to qr code

* Fix contrast for api key link

* Add translate qrcode alt

* Add translatation for QR code alternative

* Fix extra space

* Add translation for qrcode image alternative
2021-01-18 11:11:13 +01:00
Xosé M
0fb77636d2 Translated using Weblate (Galician)
Currently translated at 73.7% (419 of 568 strings)
2021-01-18 11:01:52 +01:00
Xosé M
fceeae6499 Translated using Weblate (Galician)
Currently translated at 100.0% (6 of 6 strings)
2021-01-18 11:01:52 +01:00
Xosé M
1bdedfe65d Translated using Weblate (Galician)
Currently translated at 100.0% (7 of 7 strings)
2021-01-18 11:01:52 +01:00
Xosé M
5654c3aaf3 Translated using Weblate (Galician)
Currently translated at 70.5% (401 of 568 strings)
2021-01-18 11:01:52 +01:00
Jeremy Benoist
381f9681b5
Fix CS 2021-01-18 10:38:56 +01:00
Arda Kilicdagi
146fe1411d
Translated using Weblate (Turkish)
Currently translated at 100.0% (568 of 568 strings)
2021-01-13 11:32:09 +01:00
Xosé M
4020b8ef7e
Translated using Weblate (Galician)
Currently translated at 56.1% (319 of 568 strings)
2021-01-11 16:32:36 +01:00
Milo Ivir
81dbb1ff61
Translated using Weblate (Croatian)
Currently translated at 100.0% (568 of 568 strings)
2021-01-11 16:32:23 +01:00
fenuks
ac9ae46fc4
Translated using Weblate (Polish)
Currently translated at 88.9% (505 of 568 strings)
2021-01-11 16:32:22 +01:00
Milo Ivir
444f88a42e
Translated using Weblate (German)
Currently translated at 100.0% (568 of 568 strings)
2021-01-11 16:32:22 +01:00
Weblate
96ff96b879
Added translation using Weblate (Galician) 2021-01-08 07:11:31 +01:00
Weblate
db4c80a8b2
Added translation using Weblate (Galician) 2021-01-08 07:11:20 +01:00
Xosé M
d588ef82ef
Added translation using Weblate (Galician) 2021-01-08 07:11:08 +01:00
Weblate
f44e826212
Added translation using Weblate (Arabic) 2021-01-07 09:12:09 +01:00
Weblate
51e7cbac5c
Added translation using Weblate (Arabic) 2021-01-07 09:11:54 +01:00
Jad Madi
8c65f36b2d
Added translation using Weblate (Arabic) 2021-01-07 09:11:43 +01:00
Eric
cc76bd5f5a Translated using Weblate (Chinese (Simplified))
Currently translated at 100.0% (568 of 568 strings)
2021-01-07 07:45:40 +01:00
Bernd Schwendinger
717d3821bb Translated using Weblate (German)
Currently translated at 100.0% (6 of 6 strings)
2021-01-07 07:45:40 +01:00
Quentin PAGÈS
4ab0601645 Translated using Weblate (Occitan)
Currently translated at 85.0% (483 of 568 strings)
2021-01-07 07:45:40 +01:00
Jérémy
4c58787b87
Translated using Weblate (Dutch)
Currently translated at 99.8% (567 of 568 strings)
2021-01-04 09:15:49 +01:00
Jérémy
2b357d4e42
Translated using Weblate (Norwegian Bokmål)
Currently translated at 82.2% (467 of 568 strings)
2021-01-04 09:15:47 +01:00
Jérémy
bdba7caf8a
Translated using Weblate (English)
Currently translated at 100.0% (6 of 6 strings)
2021-01-04 09:15:46 +01:00
Jérémy
94c68bf65f
Translated using Weblate (Turkish)
Currently translated at 98.5% (560 of 568 strings)
2021-01-04 09:15:45 +01:00
Jérémy
f1aeafc076
Translated using Weblate (Polish)
Currently translated at 88.0% (500 of 568 strings)
2021-01-04 09:15:45 +01:00
Jérémy
35ae211266
Translated using Weblate (English)
Currently translated at 100.0% (568 of 568 strings)
2021-01-04 09:15:44 +01:00
Jérémy
9dc71c431d
Translated using Weblate (Danish)
Currently translated at 23.7% (135 of 568 strings)
2021-01-04 09:15:43 +01:00
Eric
ddff6274a2 Translated using Weblate (Chinese (Simplified))
Currently translated at 100.0% (568 of 568 strings)
2021-01-04 06:51:28 +01:00
Jérémy Benoist
0140b0c262
Merge pull request #4878 from wallabag/fix-hash-query 2021-01-04 06:51:12 +01:00
Kevin Decherf
71680cdb61 views: fix corrupted qrcode image for 2FA
Signed-off-by: Kevin Decherf <kevin@kdecherf.com>
2020-12-31 18:09:32 +01:00
Jérémy Benoist
1697076575
Merge pull request #4894 from wallabag/improvement/tags-title 2020-12-31 06:11:41 +01:00
Kevin Decherf
dc5fbff644 views: add title to tag li elements, for consistency
Signed-off-by: Kevin Decherf <kevin@kdecherf.com>
2020-12-31 02:47:56 +01:00
Kevin Decherf
36ba1d48ad otp: show backup codes in monospace style
Signed-off-by: Kevin Decherf <kevin@kdecherf.com>
2020-12-30 20:16:31 +01:00
Kevin Decherf
41271bc153 otp: show secret as plaintext if a user can't scan qrcode
Fixes #4818

Signed-off-by: Kevin Decherf <kevin@kdecherf.com>
2020-12-30 20:16:31 +01:00
Nicolas Lœuillet
5857031262 Fixed query to fetch URL to hash 2020-12-22 14:58:07 +01:00
Nicolas Lœuillet
68060f545a Added a query to parse only non-hashed URL
Fixed #4864
2020-12-20 09:23:59 +01:00
Jeremy Benoist
fb4d1fd10b
Compare full list to full list 2020-12-16 17:45:28 +01:00
Jeremy Benoist
5437f0e3da
Build images list outside of clean 2020-12-16 17:26:13 +01:00
Jeremy Benoist
478c20d3a4
Remove username argument and add a dry-run option 2020-12-16 16:54:17 +01:00
Jeremy Benoist
c7a8800794
Fix phpDoc 2020-12-15 10:06:35 +01:00
Jeremy Benoist
9743058f7d
Add a command to clean downloaded images
There were a bug in versions prior to 2.4.0 where images weren't properly removed (mostly when coming from the API).
With that command, we'll be able to remove images which aren't associated to any entries.

Like other command you can pass a username to only clean one user.
2020-12-14 22:19:19 +01:00
Blip Blop
b0907c15ff Translated using Weblate (Dutch)
Currently translated at 100.0% (567 of 567 strings)
2020-12-14 09:48:33 +01:00
Strubbl
71efdeb055 Translated using Weblate (German)
Currently translated at 100.0% (567 of 567 strings)
2020-12-14 09:48:33 +01:00
Quentin PAGÈS
d5360a7b7e Translated using Weblate (Occitan)
Currently translated at 100.0% (6 of 6 strings)
2020-12-11 22:42:16 +01:00
ssantos
ee3db8ad86 Translated using Weblate (Portuguese)
Currently translated at 62.2% (353 of 567 strings)
2020-12-11 22:42:16 +01:00
Quentin PAGÈS
a9cf250f93 Translated using Weblate (Occitan)
Currently translated at 85.1% (483 of 567 strings)
2020-12-11 22:42:16 +01:00
minob
e76563be6e Translated using Weblate (Japanese)
Currently translated at 100.0% (567 of 567 strings)
2020-12-07 06:35:57 +01:00
J. Lavoie
a961d37099 Translated using Weblate (Italian)
Currently translated at 84.6% (480 of 567 strings)
2020-12-07 06:35:57 +01:00
J. Lavoie
5d43fd4a79 Translated using Weblate (French)
Currently translated at 100.0% (567 of 567 strings)
2020-12-07 06:35:57 +01:00
J. Lavoie
205c8a3d70 Translated using Weblate (Spanish)
Currently translated at 93.1% (528 of 567 strings)
2020-12-07 06:35:57 +01:00
Alexey Laskin
0ca1fbff98
Translated using Weblate (Russian)
Currently translated at 100.0% (567 of 567 strings)
2020-12-03 11:29:04 +01:00
Allan Nordhøy
662b873e8c Translated using Weblate (Norwegian Bokmål)
Currently translated at 75.3% (427 of 567 strings)
2020-12-02 10:18:13 +01:00
Eric
01dc905358
Translated using Weblate (Chinese (Simplified))
Currently translated at 100.0% (567 of 567 strings)
2020-11-28 14:29:58 +01:00
Milo Ivir
5698079b91
Translated using Weblate (Croatian)
Currently translated at 100.0% (567 of 567 strings)
2020-11-28 14:29:57 +01:00
Allan Nordhøy
8e97f1027e
Translated using Weblate (Norwegian Bokmål)
Currently translated at 71.4% (405 of 567 strings)
2020-11-28 14:29:33 +01:00
Allan Nordhøy
1fcc3b447a
Translated using Weblate (English)
Currently translated at 100.0% (567 of 567 strings)
2020-11-28 14:29:19 +01:00
Milo Ivir
3d3de929b3
Translated using Weblate (German)
Currently translated at 100.0% (567 of 567 strings)
2020-11-28 14:29:18 +01:00
Allan Nordhøy
6e7ad469ae
Translated using Weblate (Danish)
Currently translated at 23.2% (132 of 567 strings)
2020-11-28 14:29:17 +01:00
Simounet
53a04b6af1
Global assets files moved to web/img 2020-11-27 15:24:35 +01:00
Eric
ef04b9e941
Translated using Weblate (Chinese (Simplified))
Currently translated at 100.0% (567 of 567 strings)
2020-11-25 10:29:00 +01:00
Jérémy Benoist
1443bb1998
Merge pull request #4725 from wallabag/feat/dark-theme
Dark theme
2020-11-23 07:53:10 +01:00
Alvaro
3fcf57cd2f Translated using Weblate (Spanish)
Currently translated at 93.7% (525 of 560 strings)
2020-11-23 06:07:29 +01:00
Simounet
66d5042af5
Theme picker 2020-11-19 15:45:58 +01:00
Simounet
a562f6b943
Basic dark theme handling 2020-11-19 14:58:48 +01:00
Jérémy
acff563906
Translated using Weblate (Polish)
Currently translated at 89.4% (501 of 560 strings)
2020-11-14 22:28:53 +01:00
mv87
cb6a54f791 Translated using Weblate (German)
Currently translated at 100.0% (560 of 560 strings)
2020-11-11 18:12:17 +01:00
Simounet
7f7d0d79e1
Revert "Fix icons not showing aside nav forms"
This reverts commit 07dab0dbc9.
2020-11-11 14:52:20 +01:00
Jérémy
643e1f3f08
Translated using Weblate (Ukrainian)
Currently translated at 69.6% (390 of 560 strings)
2020-11-03 08:53:19 +01:00
Jérémy
36018731db
Translated using Weblate (Danish)
Currently translated at 24.1% (135 of 560 strings)
2020-11-03 08:53:17 +01:00
Igor Benek-Lins
96c2c09dad Translated using Weblate (Portuguese)
Currently translated at 100.0% (7 of 7 strings)
2020-11-03 08:47:22 +01:00
lazerleif
dcf7708160 Translated using Weblate (Swedish)
Currently translated at 42.8% (3 of 7 strings)
2020-11-03 08:47:22 +01:00
Weblate
d19f238df0 Added translation using Weblate (Swedish) 2020-11-03 08:47:22 +01:00
Weblate
b2af3dbe9d Added translation using Weblate (Swedish) 2020-11-03 08:47:22 +01:00
Weblate
67de6fc09c Added translation using Weblate (Swedish) 2020-11-03 08:47:22 +01:00
Oğuz Ersen
d024b911f6
Translated using Weblate (Turkish)
Currently translated at 100.0% (560 of 560 strings)
2020-10-18 19:26:50 +02:00
J. Lavoie
cd16be35bc
Translated using Weblate (Italian)
Currently translated at 84.1% (471 of 560 strings)
2020-10-18 19:26:48 +02:00
J. Lavoie
1a2a12cfa3
Translated using Weblate (French)
Currently translated at 100.0% (560 of 560 strings)
2020-10-18 19:26:46 +02:00
J. Lavoie
5118e0b1c4
Translated using Weblate (German)
Currently translated at 98.2% (550 of 560 strings)
2020-10-18 19:26:45 +02:00
Milo Ivir
0840650b0f
Translated using Weblate (German)
Currently translated at 98.2% (550 of 560 strings)
2020-10-18 19:26:43 +02:00
Jérémy
ce4b40d85d Translated using Weblate (Ukrainian)
Currently translated at 100.0% (7 of 7 strings)
2020-10-15 08:47:45 +02:00
Eric
fffeb18a22 Translated using Weblate (Chinese (Simplified))
Currently translated at 100.0% (560 of 560 strings)
2020-10-15 08:47:45 +02:00
minob
5f1c1bccce Translated using Weblate (Japanese)
Currently translated at 100.0% (560 of 560 strings)
2020-10-15 08:47:45 +02:00
Jérémy
c8506c4af7 Translated using Weblate (Persian)
Currently translated at 44.8% (251 of 560 strings)
2020-10-15 08:47:45 +02:00
Jérémy
5710db34ae Translated using Weblate (Chinese (Simplified))
Currently translated at 99.8% (559 of 560 strings)
2020-10-15 08:47:45 +02:00
Milo Ivir
fadac49d01
Translated using Weblate (Croatian)
Currently translated at 100.0% (560 of 560 strings)
2020-10-13 16:26:45 +02:00
minob
d17edc2cdc
Translated using Weblate (Japanese)
Currently translated at 98.9% (554 of 560 strings)
2020-10-13 16:26:44 +02:00
ssantos
6aa515a325
Translated using Weblate (Portuguese)
Currently translated at 63.7% (357 of 560 strings)
2020-10-13 16:26:43 +02:00
Jérémy
a188cb5de8 Translated using Weblate (Korean)
Currently translated at 100.0% (7 of 7 strings)
2020-10-12 05:41:41 +02:00
Jérémy
9da80b0532 Translated using Weblate (Korean)
Currently translated at 1.7% (10 of 560 strings)
2020-10-12 05:41:41 +02:00
Jérémy
a5bc729326 Translated using Weblate (Japanese)
Currently translated at 98.9% (554 of 560 strings)
2020-10-12 05:41:41 +02:00
Jérémy
f100388a27 Translated using Weblate (Japanese)
Currently translated at 100.0% (6 of 6 strings)
2020-10-12 05:41:41 +02:00
Jérémy
6484b932b1 Translated using Weblate (Thai)
Currently translated at 82.8% (464 of 560 strings)
2020-10-12 05:41:41 +02:00
Alexis
177f965ba1 Translated using Weblate (French)
Currently translated at 100.0% (6 of 6 strings)
2020-10-12 05:41:41 +02:00
Jérémy
9e5977f3f7 Translated using Weblate (Romanian)
Currently translated at 24.2% (136 of 560 strings)
2020-10-12 05:41:41 +02:00
Jérémy
21b40cc704 Translated using Weblate (Portuguese)
Currently translated at 63.7% (357 of 560 strings)
2020-10-12 05:41:41 +02:00
Jérémy
c3b9b81953 Translated using Weblate (Polish)
Currently translated at 83.5% (468 of 560 strings)
2020-10-12 05:41:41 +02:00
Jérémy
64e95f9ec3 Translated using Weblate (Occitan)
Currently translated at 81.9% (459 of 560 strings)
2020-10-12 05:41:41 +02:00
Jérémy
ae95ab6517 Translated using Weblate (Italian)
Currently translated at 83.0% (465 of 560 strings)
2020-10-12 05:41:41 +02:00
Yuichi MITA
bfa3ddbb65 Translated using Weblate (Japanese)
Currently translated at 98.9% (554 of 560 strings)
2020-10-12 05:41:41 +02:00
Yuichi MITA
5c75c58aaa Translated using Weblate (Japanese)
Currently translated at 98.9% (554 of 560 strings)
2020-10-12 05:41:41 +02:00
Jérémy
7d2efa286d Translated using Weblate (Japanese)
Currently translated at 98.9% (554 of 560 strings)
2020-10-12 05:41:41 +02:00
Yuichi MITA
8901d959ff Translated using Weblate (Japanese)
Currently translated at 98.9% (554 of 560 strings)
2020-10-12 05:41:41 +02:00
Eric
06ffde2892 Translated using Weblate (Chinese (Simplified))
Currently translated at 100.0% (560 of 560 strings)
2020-10-12 05:41:41 +02:00
Blip Blop
bf975cda3b Translated using Weblate (Dutch)
Currently translated at 100.0% (560 of 560 strings)
2020-10-12 05:41:41 +02:00
minob
8586280698 Translated using Weblate (Japanese)
Currently translated at 90.0% (504 of 560 strings)
2020-10-12 05:41:41 +02:00
minob
7379908e8d
Translated using Weblate (Japanese)
Currently translated at 83.7% (469 of 560 strings)
2020-10-09 11:26:44 +02:00
Niel Hirjee
b334444799
Added translation using Weblate (Hindi) 2020-10-09 11:13:11 +02:00
Weblate
1d675a15d6
Added translation using Weblate (Hindi) 2020-10-09 11:13:09 +02:00
Weblate
10cc1f66cc
Added translation using Weblate (Hindi) 2020-10-09 11:12:58 +02:00
Jérémy
3f9333c536
Translated using Weblate (Ukrainian)
Currently translated at 68.9% (386 of 560 strings)
2020-10-09 09:48:09 +02:00
Jérémy
ff1572eae4
Translated using Weblate (Chinese (Simplified))
Currently translated at 100.0% (6 of 6 strings)
2020-10-09 09:48:08 +02:00
Jérémy
7345f2787b
Translated using Weblate (Chinese (Simplified))
Currently translated at 96.0% (538 of 560 strings)
2020-10-09 09:48:07 +02:00
Blip Blop
1c50b05bb2
Translated using Weblate (Dutch)
Currently translated at 99.8% (559 of 560 strings)
2020-10-09 09:48:06 +02:00
Jérémy
664f14cb6a
Translated using Weblate (Hungarian)
Currently translated at 57.5% (322 of 560 strings)
2020-10-09 09:48:03 +02:00
Jérémy
ab10f4c7cb
Translated using Weblate (Japanese)
Currently translated at 80.0% (448 of 560 strings)
2020-10-09 09:48:03 +02:00
Jérémy
76dc86ef1f
Translated using Weblate (Thai)
Currently translated at 82.5% (462 of 560 strings)
2020-10-09 09:48:02 +02:00
Jérémy
3b8bf7c98f
Translated using Weblate (Occitan)
Currently translated at 100.0% (7 of 7 strings)
2020-10-09 09:48:00 +02:00
Jérémy
4391a41fa6
Translated using Weblate (Romanian)
Currently translated at 33.3% (2 of 6 strings)
2020-10-09 09:47:57 +02:00
Jérémy
cfb69a2961
Translated using Weblate (Occitan)
Currently translated at 83.3% (5 of 6 strings)
2020-10-09 09:47:57 +02:00
Jérémy
a57d20260f
Translated using Weblate (Danish)
Currently translated at 33.3% (2 of 6 strings)
2020-10-09 09:47:57 +02:00
Jérémy
20bacf9ee9
Translated using Weblate (Romanian)
Currently translated at 24.4% (137 of 560 strings)
2020-10-09 09:47:57 +02:00
Jérémy
921c2e97a2
Translated using Weblate (Polish)
Currently translated at 82.3% (461 of 560 strings)
2020-10-09 09:47:56 +02:00
Jérémy
6a2b7fdcb3
Translated using Weblate (Occitan)
Currently translated at 80.8% (453 of 560 strings)
2020-10-09 09:47:56 +02:00
Jérémy
5c00473ae3
Translated using Weblate (Persian)
Currently translated at 44.6% (250 of 560 strings)
2020-10-09 09:47:55 +02:00
Jérémy
ac6a786383
Translated using Weblate (Spanish)
Currently translated at 92.5% (518 of 560 strings)
2020-10-09 09:47:54 +02:00
Jérémy
1b267d2198
Translated using Weblate (English)
Currently translated at 100.0% (560 of 560 strings)
2020-10-09 09:47:52 +02:00
Jérémy
617df80289
Translated using Weblate (German)
Currently translated at 88.2% (494 of 560 strings)
2020-10-09 09:47:51 +02:00
Jérémy
4164813360
Translated using Weblate (Danish)
Currently translated at 23.7% (133 of 560 strings)
2020-10-09 09:47:49 +02:00
Dmitriy Bogdanov
81f3c26fa8
Translated using Weblate (Ukrainian)
Currently translated at 85.7% (6 of 7 strings)
2020-10-09 08:40:19 +02:00
Dmitriy Bogdanov
52666a58c3
Translated using Weblate (Ukrainian)
Currently translated at 68.7% (385 of 560 strings)
2020-10-09 08:40:19 +02:00
Dmitriy Bogdanov
1a752fc200
Translated using Weblate (Chinese (Simplified))
Currently translated at 91.0% (510 of 560 strings)
2020-10-09 08:40:18 +02:00
Milo Ivir
2701737303
Translated using Weblate (Croatian)
Currently translated at 99.4% (557 of 560 strings)
2020-10-09 08:40:17 +02:00
Blip Blop
98e5b38b12
Translated using Weblate (Dutch)
Currently translated at 95.8% (537 of 560 strings)
2020-10-09 08:40:12 +02:00
minob
11ee78047e
Translated using Weblate (Japanese)
Currently translated at 80.1% (449 of 560 strings)
2020-10-09 08:40:07 +02:00
Dmitriy Bogdanov
da4f0c8050
Translated using Weblate (Thai)
Currently translated at 82.8% (464 of 560 strings)
2020-10-09 08:40:05 +02:00
Dmitriy Bogdanov
b539a8d995
Translated using Weblate (Russian)
Currently translated at 100.0% (6 of 6 strings)
2020-10-09 08:40:04 +02:00
Dmitriy Bogdanov
a425ca0a91
Translated using Weblate (Russian)
Currently translated at 85.7% (6 of 7 strings)
2020-10-09 08:40:04 +02:00
Nikita Epifanov
db0341c235
Translated using Weblate (Russian)
Currently translated at 100.0% (560 of 560 strings)
2020-10-09 08:40:03 +02:00
Dmitriy Bogdanov
829bbbce41
Translated using Weblate (Russian)
Currently translated at 100.0% (560 of 560 strings)
2020-10-09 08:40:02 +02:00
Oğuz Ersen
a71aba567f
Translated using Weblate (Turkish)
Currently translated at 95.7% (536 of 560 strings)
2020-10-09 08:39:56 +02:00
Dmitriy Bogdanov
dedd938372
Translated using Weblate (Portuguese)
Currently translated at 64.4% (361 of 560 strings)
2020-10-09 08:39:55 +02:00
Dmitriy Bogdanov
7a31db2ef4
Translated using Weblate (Polish)
Currently translated at 82.1% (460 of 560 strings)
2020-10-09 08:39:55 +02:00
Dmitriy Bogdanov
92b637957a
Translated using Weblate (Occitan)
Currently translated at 81.0% (454 of 560 strings)
2020-10-09 08:39:54 +02:00
Dmitriy Bogdanov
ebf7e5429a
Translated using Weblate (Italian)
Currently translated at 82.5% (462 of 560 strings)
2020-10-09 08:39:53 +02:00
Jérémy
524769c411
Translated using Weblate (French)
Currently translated at 100.0% (560 of 560 strings)
2020-10-09 08:39:53 +02:00
Dmitriy Bogdanov
af87215b52
Translated using Weblate (English)
Currently translated at 100.0% (560 of 560 strings)
2020-10-09 08:39:51 +02:00
Dmitriy Bogdanov
cad5c750e8
Translated using Weblate (German)
Currently translated at 82.3% (461 of 560 strings)
2020-10-09 08:39:50 +02:00
Dmitriy Bogdanov
749367f7fe
Translated using Weblate (Japanese)
Currently translated at 77.1% (432 of 560 strings)
2020-10-08 18:27:37 +02:00
minob
e6041b0a80
Translated using Weblate (Japanese)
Currently translated at 77.1% (432 of 560 strings)
2020-10-08 18:27:37 +02:00
Oğuz Ersen
6c1ee9283d
Translated using Weblate (Turkish)
Currently translated at 95.3% (534 of 560 strings)
2020-10-08 18:16:29 +02:00
Jérémy
e30fbb9431
Translated using Weblate (English)
Currently translated at 100.0% (560 of 560 strings)
2020-10-08 17:53:02 +02:00
Dmitriy Bogdanov
e6a011ce0b
Translated using Weblate (English)
Currently translated at 100.0% (560 of 560 strings)
2020-10-08 17:53:02 +02:00
Jeremy Benoist
672ff04a5c
Looks like when merging stuff from Weblate we lost translations
The big PR removed some translations.
I hope I added them back.
2020-10-08 09:59:34 +02:00
Blip Blop
b0f991b05d Translated using Weblate (Dutch)
Currently translated at 100.0% (483 of 483 strings)
2020-10-08 08:31:53 +02:00
Blip Blop
27dd7cc0db Translated using Weblate (Dutch)
Currently translated at 17.1% (83 of 483 strings)
2020-10-08 08:31:53 +02:00
leschek
e16217500b Translated using Weblate (Czech)
Currently translated at 27.1% (131 of 483 strings)
2020-10-08 08:31:53 +02:00
Blip Blop
a0016cb4da Translated using Weblate (Dutch)
Currently translated at 100.0% (6 of 6 strings)
2020-10-08 08:31:53 +02:00
Blip Blop
04275737bf Translated using Weblate (Dutch)
Currently translated at 100.0% (7 of 7 strings)
2020-10-08 08:31:53 +02:00
Blip Blop
c97c08f6f1 Translated using Weblate (Dutch)
Currently translated at 12.2% (59 of 483 strings)
2020-10-08 08:31:53 +02:00
minob
fda24d2125
Translated using Weblate (Japanese)
Currently translated at 85.7% (414 of 483 strings)
2020-10-05 14:12:48 +02:00
ssantos
d925124433
Translated using Weblate (Portuguese)
Currently translated at 78.4% (379 of 483 strings)
2020-10-05 14:12:46 +02:00
minob
6ecf47fcba
Translated using Weblate (Japanese)
Currently translated at 78.2% (378 of 483 strings)
2020-10-03 18:29:21 +02:00
leschek
6de467571c
Translated using Weblate (Czech)
Currently translated at 23.8% (115 of 483 strings)
2020-10-02 22:41:11 +02:00
Mostafa Ahangarha
be22b8b37b
Translated using Weblate (Persian)
Currently translated at 100.0% (7 of 7 strings)
2020-10-02 22:41:10 +02:00
Mostafa Ahangarha
a5ab4b5de6
Translated using Weblate (Persian)
Currently translated at 100.0% (6 of 6 strings)
2020-10-02 22:41:09 +02:00
ssantos
d2d798717e
Translated using Weblate (Portuguese)
Currently translated at 78.4% (379 of 483 strings)
2020-10-02 22:41:09 +02:00
Mostafa Ahangarha
1aee7356d4
Translated using Weblate (Persian)
Currently translated at 55.4% (268 of 483 strings)
2020-10-02 22:41:08 +02:00
leschek
b545f4e210 Translated using Weblate (Czech)
Currently translated at 22.9% (111 of 483 strings)
2020-09-30 06:21:14 +02:00
ssantos
1e0cf505be Translated using Weblate (Portuguese)
Currently translated at 78.4% (379 of 483 strings)
2020-09-30 06:21:14 +02:00
leschek
ecd98f1eec Translated using Weblate (Czech)
Currently translated at 18.4% (89 of 483 strings)
2020-09-30 06:21:14 +02:00
leschek
4859a24acd Translated using Weblate (Czech)
Currently translated at 50.0% (3 of 6 strings)
2020-09-30 06:21:14 +02:00
Weblate
b41219c883 Added translation using Weblate (Czech) 2020-09-30 06:21:14 +02:00
Weblate
d4f9f5dd06 Added translation using Weblate (Czech) 2020-09-30 06:21:14 +02:00
leschek
da528f2fcd Added translation using Weblate (Czech) 2020-09-30 06:21:14 +02:00
Artem
e7f2ffd921
Translated using Weblate (Russian)
Currently translated at 100.0% (483 of 483 strings)
2020-09-23 17:41:07 +02:00
J. Lavoie
59a81f1d63
Translated using Weblate (French)
Currently translated at 100.0% (7 of 7 strings)
2020-09-21 02:39:52 +02:00
J. Lavoie
40bfd776b5
Translated using Weblate (Italian)
Currently translated at 100.0% (483 of 483 strings)
2020-09-21 02:39:52 +02:00
Eric
c31b7bd797 Translated using Weblate (Chinese (Simplified))
Currently translated at 100.0% (483 of 483 strings)
2020-08-31 06:19:27 +02:00
Nikita Epifanov
a8150c1f8d Translated using Weblate (Russian)
Currently translated at 100.0% (483 of 483 strings)
2020-08-31 06:19:27 +02:00
Jérémy
fda8384488 Translated using Weblate (English)
Currently translated at 99.7% (482 of 483 strings)
2020-08-31 06:19:27 +02:00
Thomas Citharel
07dab0dbc9
Fix icons not showing aside nav forms
Signed-off-by: Thomas Citharel <tcit@tcit.fr>
2020-08-25 13:54:27 +02:00
Milo Ivir
d719df913d
Translated using Weblate (Croatian)
Currently translated at 100.0% (483 of 483 strings)
2020-08-21 14:36:20 +02:00
Milo Ivir
0e3c5cfa27
Translated using Weblate (Croatian)
Currently translated at 100.0% (6 of 6 strings)
2020-08-21 14:36:08 +02:00
Milo Ivir
c09509d12e
Translated using Weblate (Croatian)
Currently translated at 100.0% (6 of 6 strings)
2020-08-18 14:32:53 +02:00
Milo Ivir
eefb62d0e2
Translated using Weblate (Croatian)
Currently translated at 100.0% (7 of 7 strings)
2020-08-18 14:32:52 +02:00
Nikita Epifanov
5022bcd882
Translated using Weblate (Russian)
Currently translated at 100.0% (6 of 6 strings)
2020-08-18 14:32:52 +02:00
Nikita Epifanov
59bbb09055
Translated using Weblate (Russian)
Currently translated at 100.0% (483 of 483 strings)
2020-08-18 14:32:51 +02:00
Oğuz Ersen
55c8684bd6
Translated using Weblate (Turkish)
Currently translated at 100.0% (483 of 483 strings)
2020-08-08 07:32:53 +02:00
Volodymyr Fedyk
acf264be8f
Translated using Weblate (Ukrainian)
Currently translated at 97.1% (469 of 483 strings)
2020-08-04 20:33:17 +02:00
Jérémy Benoist
3af522a770
Merge pull request #4489 from VFedyk/master
Add Ukrainian translation
2020-07-30 13:55:29 +02:00
Jeremy Benoist
c10b79e82f
Update PagerFanta deprecation 2020-07-29 06:36:43 +02:00
Volodymyr Fedyk
488f01f50e Add Ukrainian translation 2020-07-26 21:23:56 +03:00
transjjj
61b67b32b3
Translated using Weblate (Japanese)
Currently translated at 61.4% (297 of 483 strings)
2020-07-22 13:41:56 +02:00
Jérémy Benoist
3e4fe7cf1b
Merge pull request #4472 from wallabag/5e62ea5f
Reduce opacity of archived entries on tag view
2020-07-16 05:48:35 +02:00
Jérémy Benoist
2aae96299c
Merge pull request #4471 from wallabag/7533fb02
material: restore missing export and filter buttons on tags view
2020-07-16 05:47:52 +02:00
Kevin Decherf
f4a1401de0 Reduce opacity of archived entries on tag view
Fixes #4466

Signed-off-by: Kevin Decherf <kevin@kdecherf.com>
2020-07-13 18:53:39 +02:00
Kevin Decherf
1abcfe8c98 material: restore missing export and filter buttons on tags view
The commit d9a68f6ced introduced a change
in the way export and filter buttons are showed. It ended in hidding
them on the tag-related pages, preventing users to export entries for a
given tag.

Signed-off-by: Kevin Decherf <kevin@kdecherf.com>
2020-07-13 14:34:34 +02:00
Jérémy Benoist
11fa4ac4f0
Merge pull request #4463 from wallabag/update-deps
Update deps
2020-07-08 09:41:40 +02:00
Jeremy Benoist
33d245b7da
Remove deprecated methods 2020-07-08 07:25:44 +02:00
Eric
351e00dcc4
Translated using Weblate (Chinese (Simplified))
Currently translated at 100.0% (483 of 483 strings)
2020-07-06 09:41:51 +02:00
Diego Heras
511957eabf Translated using Weblate (Spanish)
Currently translated at 100.0% (483 of 483 strings)
2020-06-22 05:29:30 +02:00
Eric
f4c1d70ead
Translated using Weblate (Chinese (Simplified))
Currently translated at 100.0% (6 of 6 strings)
2020-06-18 06:41:44 +02:00
Eric
70fb345837
Translated using Weblate (Chinese (Simplified))
Currently translated at 100.0% (483 of 483 strings)
2020-06-18 06:41:44 +02:00
Jérémy Benoist
142d03354d
Merge pull request #4441 from wallabag/feature/drop-php-7.1
Jump to PHP 7.2+
2020-06-16 10:30:02 +02:00
Thomas Citharel
7c4fd31962
Translated using Weblate (French)
Currently translated at 100.0% (483 of 483 strings)
2020-06-16 09:43:37 +02:00
Jeremy Benoist
07a45b8172
Fix ES translation 2020-06-15 17:48:21 +02:00
Jeremy Benoist
870b5f5cbb
Fix indentations & remove comments
Mostly because weblate doesn't handle them.
2020-06-15 16:14:25 +02:00
Jeremy Benoist
b8c7862c1b
Merge remote-tracking branch 'weblate/master' into weblate 2020-06-15 16:00:28 +02:00
Jeremy Benoist
7332d1f4e5
Remove support for PHP < 7.2
Updating deps

  - Removing electrolinux/php-html5lib (0.1.0)
  - Updating doctrine/inflector (1.3.1 => 1.4.3)
  - Updating doctrine/lexer (1.0.2 => 1.2.1)
  - Installing symfony/polyfill-php80 (v1.17.0)
  - Updating symfony/service-contracts (v1.1.8 => v2.1.2)
  - Installing symfony/deprecation-contracts (v2.1.2)
  - Updating symfony/mime (v4.4.8 => v5.1.1)
  - Updating friendsofsymfony/rest-bundle (2.7.4 => 2.8.0)
  - Updating doctrine/instantiator (1.3.0 => 1.3.1)
  - Updating ocramius/proxy-manager (2.1.1 => 2.2.3)
  - Updating php-http/discovery (1.7.4 => 1.8.0)
  - Updating symfony/http-client-contracts (v1.1.8 => v2.1.2)
  - Updating symfony/http-client (v4.4.8 => v5.1.1)
  - Updating php-http/httplug-bundle (1.16.0 => 1.18.0)
  - Updating symfony/phpunit-bridge (v4.3.11 => v5.1.1)
  - Updating doctrine/data-fixtures (1.3.3 => 1.4.3)
  - Updating composer/xdebug-handler (1.4.1 => 1.4.2)
  - Updating masterminds/html5 (2.7.0 => 2.7.1)
  - Updating j0k3r/php-readability (1.2.4 => 1.2.5)
  - Updating phpoption/phpoption (1.7.3 => 1.7.4)
  - Updating nikic/php-parser (v4.4.0 => v4.5.0)
  - Installing thecodingmachine/safe (v1.1.1)
  - Updating spomky-labs/otphp (v9.1.4 => v10.0.1)
  - Updating pagerfanta/pagerfanta (v2.1.3 => v2.3.0)

Package white-october/pagerfanta-bundle is abandoned, you should avoid using it. Use babdev/pagerfanta-bundle instead.

  - Removing white-october/pagerfanta-bundle (v1.3.2)
  - Installing babdev/pagerfanta-bundle (v2.4.2)

Upgrading PHPStan to 0.12 and use extension installer

  - Removing phpstan/phpdoc-parser (0.3.5)
  - Removing nette/utils (v3.1.2)
  - Removing nette/schema (v1.0.2)
  - Removing nette/robot-loader (v3.2.3)
  - Removing nette/php-generator (v3.4.0)
  - Removing nette/neon (v3.1.2)
  - Removing nette/finder (v2.5.2)
  - Removing nette/di (v3.0.4)
  - Removing nette/bootstrap (v3.0.2)
  - Updating phpstan/phpstan (0.11.19 => 0.12.29)
  - Updating phpstan/phpstan-doctrine (0.11.6 => 0.12.16)
  - Updating phpstan/phpstan-phpunit (0.11.2 => 0.12.11)
  - Updating phpstan/phpstan-symfony (0.11.6 => 0.12.6)
  - Installing phpstan/extension-installer (1.0.4)

Upgrading jms/serializer-bundle to version 3 (and willdurand/hateoas-bundle to version 2)

  - Removing phpoption/phpoption (1.7.4)
  - Removing phpcollection/phpcollection (0.5.0)
  - Removing jms/parser-lib (1.0.0)
  - Updating jms/metadata (1.7.0 => 2.3.0)
  - Updating jms/serializer (1.14.1 => 3.7.0)
  - Updating jms/serializer-bundle (2.4.4 => 3.6.0)
  - Updating willdurand/hateoas (2.12.0 => 3.6.0)
  - Updating willdurand/hateoas-bundle (1.4.0 => 2.1.0)

Upgrading dama/doctrine-test-bundle to version 6

  - Updating dama/doctrine-test-bundle (v5.0.3 => v6.2.0)
2020-06-15 08:25:59 +02:00
Oğuz Ersen
23721744fd
Translated using Weblate (Turkish)
Currently translated at 100.0% (483 of 483 strings)
2020-06-14 13:41:42 +02:00
Weblate
1becec5625
Added translation using Weblate (Croatian) 2020-05-22 14:38:01 +02:00
Weblate
d1be69a7fd
Added translation using Weblate (Croatian) 2020-05-22 14:37:48 +02:00
Weblate
1c0c5ca54c
Added translation using Weblate (Croatian) 2020-05-22 14:37:47 +02:00
Diego Heras
f1de79b0d8
Translated using Weblate (Spanish)
Currently translated at 100.0% (7 of 7 strings)
2020-05-10 13:13:02 +02:00
Diego Heras
dc8f1f95d9
Translated using Weblate (Spanish)
Currently translated at 100.0% (6 of 6 strings)
2020-05-10 13:13:01 +02:00
Diego Heras
ba06d3c900
Translated using Weblate (Spanish)
Currently translated at 100.0% (483 of 483 strings)
2020-05-10 13:13:01 +02:00
Nicolas Lœuillet
557e810c1f
Merge pull request #4363 from wallabag/piwik-to-matomo
Upgrade Piwik Twig Extension to Matomo
2020-04-30 09:14:52 +02:00
Nicolas Lœuillet
9717d01298
Upgrade Piwik Twig Extension to Matomo 2020-04-29 14:19:31 +02:00
AKKED
438a05c3c8
Update Japanese translation (messages.ja.yml) 2020-04-29 15:53:37 +09:00
Jérémy Benoist
d50c93f055
Merge pull request #4358 from JeanGauthier/master
Update messages.oc.yml
2020-04-28 09:21:54 +02:00
Profile moved
b33226c3a2
Update messages.oc.yml 2020-04-27 11:49:02 +02:00
Nicolas Lœuillet
e247450ade
Added confirmation before mass deleting articles 2020-04-27 11:42:41 +02:00
Profile moved
61007d58dd
Update messages.oc.yml 2020-04-27 11:17:57 +02:00
Nicolas Lœuillet
34fe51454a
Merge pull request #4309 from wallabag/fix/php-7.4
Replace wallabag's fork of tcpdf with the original one, PHP 7.4 support
2020-04-27 08:59:56 +02:00
Profile moved
a08b0bf828
Update messages.oc.yml 2020-04-26 22:56:18 +02:00
Nicolas Lœuillet
d9a68f6ced
Enhanced navigation menu in material theme 2020-04-26 21:08:22 +02:00
Kevin Decherf
7f88c7423f Replace wallabag's fork of tcpdf with the original one, fix notices for PHP 7.4
Signed-off-by: Kevin Decherf <kevin@kdecherf.com>
2020-04-26 18:29:34 +02:00
Jeannette L
d9154b2d1a
Translated using Weblate (German)
Currently translated at 100.0% (7 of 7 strings)
2020-04-26 03:11:17 +02:00
Jeannette L
c2df6c6dda
Translated using Weblate (Italian)
Currently translated at 100.0% (483 of 483 strings)
2020-04-26 03:11:16 +02:00
Jeannette L
a591343c05
Translated using Weblate (French)
Currently translated at 100.0% (483 of 483 strings)
2020-04-26 03:11:16 +02:00
Kevin Decherf
25c754f62f views: Add doc and translations on ignore origin rules forms
Signed-off-by: Kevin Decherf <kevin@kdecherf.com>
2020-04-25 15:59:23 +02:00
Kevin Decherf
7408a6cb68 Add controller, views and translations for ignore origin instance rules
Signed-off-by: Kevin Decherf <kevin@kdecherf.com>
2020-04-25 15:59:23 +02:00
Kevin Decherf
b22eb27623 ContentProxy: replace ignoreUrl with new RuleBasedIgnoreOriginProcessor
Signed-off-by: Kevin Decherf <kevin@kdecherf.com>
2020-04-25 15:59:23 +02:00
Kevin Decherf
2495b19761 Add default system-wide ignore origin rules with install support
Signed-off-by: Kevin Decherf <kevin@kdecherf.com>
2020-04-25 15:59:23 +02:00
Kevin Decherf
f39c5a2a70 Add new Helper to process Ignore Origin rules and RulerZ operator
This commits adds a new helper like RuleBasedTagger for processing
ignore origin rules. It also adds a new custom RulerZ operator for the
'~' pattern matching rule.

Renames 'pattern' with '_all' in IgnoreOriginRule entity.

Signed-off-by: Kevin Decherf <kevin@kdecherf.com>
2020-04-25 15:59:23 +02:00
Kevin Decherf
24230a5130 Add new Ignore Origin rules tab, update ConfigController
Signed-off-by: Kevin Decherf <kevin@kdecherf.com>
2020-04-25 15:59:23 +02:00
Kevin Decherf
c675bd11c6 Add IgnoreOriginRule-related entities, db migration, update config
Add IgnoreOriginUserRule for user-defined rules and
IgnoreOriginInstanceRule for system-wide rules. Add an interface for
these two new entities.

Signed-off-by: Kevin Decherf <kevin@kdecherf.com>
2020-04-25 15:59:23 +02:00
Artem
5687f81153
Translated using Weblate (Russian)
Currently translated at 91.0% (440 of 483 strings)
2020-04-24 22:11:16 +02:00
Nicolas Lœuillet
467327771a
Added mass actions for Material design in list view 2020-04-24 09:12:57 +02:00
Nicolas Lœuillet
a6b5b8f7a9
Changed visibility for article stats 2020-04-22 14:58:24 +02:00
Kevin Decherf
2ca2ed39fd
Merge pull request #4310 from wallabag/fix/4216
TagController: fix duplicated tags when renaming them
2020-04-20 18:02:31 +02:00
Nicolas Lœuillet
5434577883
Improved tags list for material view 2020-04-20 11:39:35 +02:00